@progress/kendo-vue-charts 5.3.0-dev.202409130647 → 5.3.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BaseChart.js +8 -0
- package/BaseChart.mjs +287 -0
- package/Chart.js +8 -0
- package/Chart.mjs +145 -0
- package/DonutCenter.js +8 -0
- package/DonutCenter.mjs +75 -0
- package/README.md +23 -34
- package/Sparkline.js +8 -0
- package/Sparkline.mjs +145 -0
- package/StockChart.js +8 -0
- package/StockChart.mjs +146 -0
- package/components/AxisDefaults.js +8 -0
- package/components/AxisDefaults.mjs +101 -0
- package/components/CategoryAxis.js +8 -0
- package/components/CategoryAxis.mjs +27 -0
- package/components/CategoryAxisItem.js +8 -0
- package/components/CategoryAxisItem.mjs +192 -0
- package/components/ChartArea.js +8 -0
- package/components/ChartArea.mjs +54 -0
- package/components/Legend.js +8 -0
- package/components/Legend.mjs +119 -0
- package/components/Navigator.js +8 -0
- package/components/Navigator.mjs +57 -0
- package/components/Pane.js +8 -0
- package/components/Pane.mjs +63 -0
- package/components/PaneDefaults.js +8 -0
- package/components/PaneDefaults.mjs +64 -0
- package/components/Panes.js +8 -0
- package/components/Panes.mjs +27 -0
- package/components/PlotArea.js +8 -0
- package/components/PlotArea.mjs +51 -0
- package/components/Series.js +8 -0
- package/components/Series.mjs +27 -0
- package/components/SeriesDefaults.js +8 -0
- package/components/SeriesDefaults.mjs +72 -0
- package/components/SeriesItem.js +8 -0
- package/components/SeriesItem.mjs +248 -0
- package/components/Title.js +8 -0
- package/components/Title.mjs +74 -0
- package/components/Tooltip.js +8 -0
- package/components/Tooltip.mjs +73 -0
- package/components/ValueAxis.js +8 -0
- package/components/ValueAxis.mjs +27 -0
- package/components/ValueAxisItem.js +8 -0
- package/components/ValueAxisItem.mjs +123 -0
- package/components/XAxis.js +8 -0
- package/components/XAxis.mjs +27 -0
- package/components/XAxisItem.js +8 -0
- package/components/XAxisItem.mjs +134 -0
- package/components/YAxis.js +8 -0
- package/components/YAxis.mjs +27 -0
- package/components/YAxisItem.js +8 -0
- package/components/YAxisItem.mjs +129 -0
- package/components/Zoomable.js +8 -0
- package/components/Zoomable.mjs +36 -0
- package/components/axis-defaults/Crosshair.js +8 -0
- package/components/axis-defaults/Crosshair.mjs +48 -0
- package/components/axis-defaults/CrosshairTooltip.js +8 -0
- package/components/axis-defaults/CrosshairTooltip.mjs +46 -0
- package/components/axis-defaults/Labels.js +8 -0
- package/components/axis-defaults/Labels.mjs +60 -0
- package/components/axis-defaults/Title.js +8 -0
- package/components/axis-defaults/Title.mjs +60 -0
- package/components/base/CollectionConfigurationComponent.js +8 -0
- package/components/base/CollectionConfigurationComponent.mjs +68 -0
- package/components/base/ConfigurationComponent.js +8 -0
- package/components/base/ConfigurationComponent.mjs +139 -0
- package/components/category-axis-item/Crosshair.js +8 -0
- package/components/category-axis-item/Crosshair.mjs +48 -0
- package/components/category-axis-item/CrosshairTooltip.js +8 -0
- package/components/category-axis-item/CrosshairTooltip.mjs +46 -0
- package/components/category-axis-item/Labels.js +8 -0
- package/components/category-axis-item/Labels.mjs +83 -0
- package/components/category-axis-item/Notes.js +8 -0
- package/components/category-axis-item/Notes.mjs +60 -0
- package/components/category-axis-item/NotesIcon.js +8 -0
- package/components/category-axis-item/NotesIcon.mjs +47 -0
- package/components/category-axis-item/NotesLabel.js +8 -0
- package/components/category-axis-item/NotesLabel.mjs +53 -0
- package/components/category-axis-item/RangeLabels.js +8 -0
- package/components/category-axis-item/RangeLabels.mjs +41 -0
- package/components/category-axis-item/Select.js +8 -0
- package/components/category-axis-item/Select.mjs +53 -0
- package/components/category-axis-item/Title.js +8 -0
- package/components/category-axis-item/Title.mjs +63 -0
- package/components/legend/InactiveItems.js +8 -0
- package/components/legend/InactiveItems.mjs +33 -0
- package/components/legend/Item.js +8 -0
- package/components/legend/Item.mjs +61 -0
- package/components/legend/Title.js +8 -0
- package/components/legend/Title.mjs +71 -0
- package/components/navigator/CategoryAxis.js +8 -0
- package/components/navigator/CategoryAxis.mjs +187 -0
- package/components/navigator/Hint.js +8 -0
- package/components/navigator/Hint.mjs +37 -0
- package/components/navigator/Pane.js +8 -0
- package/components/navigator/Pane.mjs +64 -0
- package/components/navigator/Select.js +8 -0
- package/components/navigator/Select.mjs +43 -0
- package/components/navigator/Series.js +8 -0
- package/components/navigator/Series.mjs +28 -0
- package/components/navigator/SeriesItem.js +8 -0
- package/components/navigator/SeriesItem.mjs +228 -0
- package/components/navigator/category-axis/Crosshair.js +8 -0
- package/components/navigator/category-axis/Crosshair.mjs +48 -0
- package/components/navigator/category-axis/CrosshairTooltip.js +8 -0
- package/components/navigator/category-axis/CrosshairTooltip.mjs +46 -0
- package/components/navigator/category-axis/Labels.js +8 -0
- package/components/navigator/category-axis/Labels.mjs +83 -0
- package/components/navigator/category-axis/Notes.js +8 -0
- package/components/navigator/category-axis/Notes.mjs +60 -0
- package/components/navigator/category-axis/NotesIcon.js +8 -0
- package/components/navigator/category-axis/NotesIcon.mjs +47 -0
- package/components/navigator/category-axis/NotesLabel.js +8 -0
- package/components/navigator/category-axis/NotesLabel.mjs +53 -0
- package/components/navigator/category-axis/Select.js +8 -0
- package/components/navigator/category-axis/Select.mjs +53 -0
- package/components/navigator/category-axis/Title.js +8 -0
- package/components/navigator/category-axis/Title.mjs +63 -0
- package/components/navigator/pane/Title.js +8 -0
- package/components/navigator/pane/Title.mjs +58 -0
- package/components/navigator/series-item/ErrorBars.js +8 -0
- package/components/navigator/series-item/ErrorBars.mjs +45 -0
- package/components/navigator/series-item/Extremes.js +8 -0
- package/components/navigator/series-item/Extremes.mjs +44 -0
- package/components/navigator/series-item/Highlight.js +8 -0
- package/components/navigator/series-item/Highlight.mjs +52 -0
- package/components/navigator/series-item/Labels.js +8 -0
- package/components/navigator/series-item/Labels.mjs +85 -0
- package/components/navigator/series-item/LabelsFrom.js +8 -0
- package/components/navigator/series-item/LabelsFrom.mjs +63 -0
- package/components/navigator/series-item/LabelsTo.js +8 -0
- package/components/navigator/series-item/LabelsTo.mjs +63 -0
- package/components/navigator/series-item/Markers.js +8 -0
- package/components/navigator/series-item/Markers.mjs +62 -0
- package/components/navigator/series-item/Notes.js +8 -0
- package/components/navigator/series-item/Notes.mjs +55 -0
- package/components/navigator/series-item/NotesIcon.js +8 -0
- package/components/navigator/series-item/NotesIcon.mjs +47 -0
- package/components/navigator/series-item/NotesLabel.js +8 -0
- package/components/navigator/series-item/NotesLabel.mjs +53 -0
- package/components/navigator/series-item/Outliers.js +8 -0
- package/components/navigator/series-item/Outliers.mjs +44 -0
- package/components/navigator/series-item/Tooltip.js +8 -0
- package/components/navigator/series-item/Tooltip.mjs +50 -0
- package/components/pane/Title.js +8 -0
- package/components/pane/Title.mjs +58 -0
- package/components/pane-defaults/Title.js +8 -0
- package/components/pane-defaults/Title.mjs +57 -0
- package/components/series-defaults/Labels.js +8 -0
- package/components/series-defaults/Labels.mjs +69 -0
- package/components/series-defaults/LabelsFrom.js +8 -0
- package/components/series-defaults/LabelsFrom.mjs +55 -0
- package/components/series-defaults/LabelsTo.js +8 -0
- package/components/series-defaults/LabelsTo.mjs +55 -0
- package/components/series-defaults/Notes.js +8 -0
- package/components/series-defaults/Notes.mjs +47 -0
- package/components/series-defaults/NotesIcon.js +8 -0
- package/components/series-defaults/NotesIcon.mjs +47 -0
- package/components/series-defaults/NotesLabel.js +8 -0
- package/components/series-defaults/NotesLabel.mjs +53 -0
- package/components/series-defaults/Tooltip.js +8 -0
- package/components/series-defaults/Tooltip.mjs +50 -0
- package/components/series-item/ErrorBars.js +8 -0
- package/components/series-item/ErrorBars.mjs +45 -0
- package/components/series-item/Extremes.js +8 -0
- package/components/series-item/Extremes.mjs +44 -0
- package/components/series-item/Highlight.js +8 -0
- package/components/series-item/Highlight.mjs +52 -0
- package/components/series-item/Labels.js +8 -0
- package/components/series-item/Labels.mjs +85 -0
- package/components/series-item/LabelsFrom.js +8 -0
- package/components/series-item/LabelsFrom.mjs +63 -0
- package/components/series-item/LabelsTo.js +8 -0
- package/components/series-item/LabelsTo.mjs +63 -0
- package/components/series-item/Markers.js +8 -0
- package/components/series-item/Markers.mjs +62 -0
- package/components/series-item/Notes.js +8 -0
- package/components/series-item/Notes.mjs +55 -0
- package/components/series-item/NotesIcon.js +8 -0
- package/components/series-item/NotesIcon.mjs +47 -0
- package/components/series-item/NotesLabel.js +8 -0
- package/components/series-item/NotesLabel.mjs +53 -0
- package/components/series-item/Outliers.js +8 -0
- package/components/series-item/Outliers.mjs +44 -0
- package/components/series-item/Tooltip.js +8 -0
- package/components/series-item/Tooltip.mjs +50 -0
- package/components/value-axis-item/Crosshair.js +8 -0
- package/components/value-axis-item/Crosshair.mjs +40 -0
- package/components/value-axis-item/CrosshairTooltip.js +8 -0
- package/components/value-axis-item/CrosshairTooltip.mjs +46 -0
- package/components/value-axis-item/Labels.js +8 -0
- package/components/value-axis-item/Labels.mjs +70 -0
- package/components/value-axis-item/Notes.js +8 -0
- package/components/value-axis-item/Notes.mjs +60 -0
- package/components/value-axis-item/NotesIcon.js +8 -0
- package/components/value-axis-item/NotesIcon.mjs +47 -0
- package/components/value-axis-item/NotesLabel.js +8 -0
- package/components/value-axis-item/NotesLabel.mjs +53 -0
- package/components/value-axis-item/Title.js +8 -0
- package/components/value-axis-item/Title.mjs +63 -0
- package/components/x-axis-item/Crosshair.js +8 -0
- package/components/x-axis-item/Crosshair.mjs +40 -0
- package/components/x-axis-item/CrosshairTooltip.js +8 -0
- package/components/x-axis-item/CrosshairTooltip.mjs +44 -0
- package/components/x-axis-item/Labels.js +8 -0
- package/components/x-axis-item/Labels.mjs +71 -0
- package/components/x-axis-item/Notes.js +8 -0
- package/components/x-axis-item/Notes.mjs +55 -0
- package/components/x-axis-item/NotesIcon.js +8 -0
- package/components/x-axis-item/NotesIcon.mjs +45 -0
- package/components/x-axis-item/NotesLabel.js +8 -0
- package/components/x-axis-item/NotesLabel.mjs +52 -0
- package/components/x-axis-item/Title.js +8 -0
- package/components/x-axis-item/Title.mjs +60 -0
- package/components/y-axis-item/Crosshair.js +8 -0
- package/components/y-axis-item/Crosshair.mjs +39 -0
- package/components/y-axis-item/CrosshairTooltip.js +8 -0
- package/components/y-axis-item/CrosshairTooltip.mjs +44 -0
- package/components/y-axis-item/Labels.js +8 -0
- package/components/y-axis-item/Labels.mjs +71 -0
- package/components/y-axis-item/Notes.js +8 -0
- package/components/y-axis-item/Notes.mjs +55 -0
- package/components/y-axis-item/NotesIcon.js +8 -0
- package/components/y-axis-item/NotesIcon.mjs +45 -0
- package/components/y-axis-item/NotesLabel.js +8 -0
- package/components/y-axis-item/NotesLabel.mjs +52 -0
- package/components/y-axis-item/Title.js +8 -0
- package/components/y-axis-item/Title.mjs +60 -0
- package/dist/cdn/js/kendo-vue-charts.js +8 -1
- package/events/axis-label-click-event.js +8 -0
- package/events/axis-label-click-event.mjs +19 -0
- package/events/base-event.js +8 -0
- package/events/base-event.mjs +18 -0
- package/events/chart-event-builder.js +8 -0
- package/events/chart-event-builder.mjs +58 -0
- package/events/dom-event.js +8 -0
- package/events/dom-event.mjs +22 -0
- package/events/drag-end-event.js +8 -0
- package/events/drag-end-event.mjs +19 -0
- package/events/drag-event.js +8 -0
- package/events/drag-event.mjs +19 -0
- package/events/drag-start-event.js +8 -0
- package/events/drag-start-event.mjs +19 -0
- package/events/legend-item-click-event.js +8 -0
- package/events/legend-item-click-event.mjs +25 -0
- package/events/legend-item-hover-event.js +8 -0
- package/events/legend-item-hover-event.mjs +25 -0
- package/events/legend-item-leave-event.js +8 -0
- package/events/legend-item-leave-event.mjs +25 -0
- package/events/navigator-filter-event.js +8 -0
- package/events/navigator-filter-event.mjs +19 -0
- package/events/note-click-event.js +8 -0
- package/events/note-click-event.mjs +19 -0
- package/events/note-hover-event.js +8 -0
- package/events/note-hover-event.mjs +19 -0
- package/events/plot-area-click-event.js +8 -0
- package/events/plot-area-click-event.mjs +19 -0
- package/events/plot-area-hover-event.js +8 -0
- package/events/plot-area-hover-event.mjs +19 -0
- package/events/preventable-event.js +8 -0
- package/events/preventable-event.mjs +31 -0
- package/events/render-event.js +8 -0
- package/events/render-event.mjs +19 -0
- package/events/select-end-event.js +8 -0
- package/events/select-end-event.mjs +19 -0
- package/events/select-event.js +8 -0
- package/events/select-event.mjs +19 -0
- package/events/select-start-event.js +8 -0
- package/events/select-start-event.mjs +19 -0
- package/events/series-click-event.js +8 -0
- package/events/series-click-event.mjs +20 -0
- package/events/series-hover-event.js +8 -0
- package/events/series-hover-event.mjs +19 -0
- package/events/zoom-end-event.js +8 -0
- package/events/zoom-end-event.mjs +20 -0
- package/events/zoom-event.js +8 -0
- package/events/zoom-event.mjs +20 -0
- package/events/zoom-start-event.js +8 -0
- package/events/zoom-start-event.mjs +20 -0
- package/index.d.mts +16007 -0
- package/index.d.ts +16007 -0
- package/index.js +8 -0
- package/index.mjs +280 -0
- package/methods/index.js +8 -0
- package/methods/index.mjs +26 -0
- package/package-metadata.js +8 -0
- package/package-metadata.mjs +18 -0
- package/package.json +23 -51
- package/sankey/Sankey.js +8 -0
- package/sankey/Sankey.mjs +213 -0
- package/sankey/messages.js +8 -0
- package/sankey/messages.mjs +14 -0
- package/sankey/theme-service.js +29 -0
- package/sankey/theme-service.mjs +99 -0
- package/sankey/tooltip.js +8 -0
- package/sankey/tooltip.mjs +191 -0
- package/sankey/utils.js +8 -0
- package/sankey/utils.mjs +12 -0
- package/store/reducer.js +8 -0
- package/store/reducer.mjs +71 -0
- package/store/store.js +8 -0
- package/store/store.mjs +19 -0
- package/theming/theme-service.js +51 -0
- package/theming/theme-service.mjs +121 -0
- package/tooltip/Crosshair.js +8 -0
- package/tooltip/Crosshair.mjs +101 -0
- package/tooltip/CrosshairContainer.js +8 -0
- package/tooltip/CrosshairContainer.mjs +59 -0
- package/tooltip/Point.js +8 -0
- package/tooltip/Point.mjs +21 -0
- package/tooltip/Popup.js +8 -0
- package/tooltip/Popup.mjs +107 -0
- package/tooltip/Series.js +8 -0
- package/tooltip/Series.mjs +156 -0
- package/tooltip/SharedTooltipContent.js +8 -0
- package/tooltip/SharedTooltipContent.mjs +51 -0
- package/utils/main.js +8 -0
- package/utils/main.mjs +25 -0
- package/dist/es/BaseChart.d.ts +0 -59
- package/dist/es/BaseChart.js +0 -461
- package/dist/es/BaseChartProps.d.ts +0 -183
- package/dist/es/BaseChartProps.js +0 -2
- package/dist/es/Chart.d.ts +0 -52
- package/dist/es/Chart.js +0 -214
- package/dist/es/ChartContext.d.ts +0 -14
- package/dist/es/ChartContext.js +0 -5
- package/dist/es/ChartProps.d.ts +0 -10
- package/dist/es/ChartProps.js +0 -1
- package/dist/es/DonutCenter.d.ts +0 -60
- package/dist/es/DonutCenter.js +0 -94
- package/dist/es/Sparkline.d.ts +0 -47
- package/dist/es/Sparkline.js +0 -193
- package/dist/es/SparklineProps.d.ts +0 -14
- package/dist/es/SparklineProps.js +0 -1
- package/dist/es/StockChart.d.ts +0 -47
- package/dist/es/StockChart.js +0 -202
- package/dist/es/StockChartProps.d.ts +0 -15
- package/dist/es/StockChartProps.js +0 -2
- package/dist/es/additionalTypes.ts +0 -21
- package/dist/es/api-types/axis-range.interface.d.ts +0 -13
- package/dist/es/api-types/axis-range.interface.js +0 -1
- package/dist/es/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/es/api-types/chart-axis.interface.js +0 -2
- package/dist/es/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/es/api-types/chart-pane.interface.js +0 -1
- package/dist/es/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/es/api-types/chart-plotarea.interface.js +0 -1
- package/dist/es/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/es/api-types/event-axis-options.interface.js +0 -1
- package/dist/es/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/es/api-types/event-series-options.interface.js +0 -1
- package/dist/es/api-types/series-point.interface.d.ts +0 -38
- package/dist/es/api-types/series-point.interface.js +0 -2
- package/dist/es/argument-types/axis-label-visual-args.interface.d.ts +0 -42
- package/dist/es/argument-types/axis-label-visual-args.interface.js +0 -1
- package/dist/es/argument-types/axis-note-visual-args.interface.d.ts +0 -26
- package/dist/es/argument-types/axis-note-visual-args.interface.js +0 -1
- package/dist/es/argument-types/error-bars-visual-args.interface.d.ts +0 -30
- package/dist/es/argument-types/error-bars-visual-args.interface.js +0 -1
- package/dist/es/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/es/argument-types/highlight-toggle-args.interface.js +0 -1
- package/dist/es/argument-types/highlight-visual-args.interface.d.ts +0 -50
- package/dist/es/argument-types/highlight-visual-args.interface.js +0 -1
- package/dist/es/argument-types/legend-item-visual-args.interface.d.ts +0 -26
- package/dist/es/argument-types/legend-item-visual-args.interface.js +0 -1
- package/dist/es/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/es/argument-types/legend-labels-content-args.interface.js +0 -2
- package/dist/es/argument-types/markers-visual-args.interface.d.ts +0 -38
- package/dist/es/argument-types/markers-visual-args.interface.js +0 -1
- package/dist/es/argument-types/plot-band-label-visual-args.interface.d.ts +0 -26
- package/dist/es/argument-types/plot-band-label-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-labels-visual-args.interface.d.ts +0 -26
- package/dist/es/argument-types/series-labels-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-note-visual-args.interface.d.ts +0 -42
- package/dist/es/argument-types/series-note-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-visual-args.interface.d.ts +0 -75
- package/dist/es/argument-types/series-visual-args.interface.js +0 -1
- package/dist/es/argument-types/title-visual-args.interface.d.ts +0 -26
- package/dist/es/argument-types/title-visual-args.interface.js +0 -1
- package/dist/es/common/api-types.d.ts +0 -7
- package/dist/es/common/api-types.js +0 -1
- package/dist/es/common/charts.d.ts +0 -5
- package/dist/es/common/charts.js +0 -1
- package/dist/es/common/events.d.ts +0 -20
- package/dist/es/common/events.js +0 -21
- package/dist/es/common/property-types.d.ts +0 -130
- package/dist/es/common/property-types.js +0 -1
- package/dist/es/components/AxisDefaults.d.ts +0 -20
- package/dist/es/components/AxisDefaults.js +0 -126
- package/dist/es/components/CategoryAxis.d.ts +0 -14
- package/dist/es/components/CategoryAxis.js +0 -40
- package/dist/es/components/CategoryAxisItem.d.ts +0 -20
- package/dist/es/components/CategoryAxisItem.js +0 -238
- package/dist/es/components/ChartArea.d.ts +0 -20
- package/dist/es/components/ChartArea.js +0 -72
- package/dist/es/components/Legend.d.ts +0 -20
- package/dist/es/components/Legend.js +0 -145
- package/dist/es/components/Navigator.d.ts +0 -20
- package/dist/es/components/Navigator.js +0 -78
- package/dist/es/components/Pane.d.ts +0 -20
- package/dist/es/components/Pane.js +0 -82
- package/dist/es/components/PaneDefaults.d.ts +0 -20
- package/dist/es/components/PaneDefaults.js +0 -84
- package/dist/es/components/Panes.d.ts +0 -14
- package/dist/es/components/Panes.js +0 -40
- package/dist/es/components/PlotArea.d.ts +0 -20
- package/dist/es/components/PlotArea.js +0 -70
- package/dist/es/components/Series.d.ts +0 -14
- package/dist/es/components/Series.js +0 -40
- package/dist/es/components/SeriesDefaults.d.ts +0 -20
- package/dist/es/components/SeriesDefaults.js +0 -95
- package/dist/es/components/SeriesItem.d.ts +0 -17
- package/dist/es/components/SeriesItem.js +0 -288
- package/dist/es/components/Title.d.ts +0 -20
- package/dist/es/components/Title.js +0 -100
- package/dist/es/components/Tooltip.d.ts +0 -21
- package/dist/es/components/Tooltip.js +0 -102
- package/dist/es/components/ValueAxis.d.ts +0 -14
- package/dist/es/components/ValueAxis.js +0 -40
- package/dist/es/components/ValueAxisItem.d.ts +0 -20
- package/dist/es/components/ValueAxisItem.js +0 -171
- package/dist/es/components/XAxis.d.ts +0 -14
- package/dist/es/components/XAxis.js +0 -40
- package/dist/es/components/XAxisItem.d.ts +0 -20
- package/dist/es/components/XAxisItem.js +0 -184
- package/dist/es/components/YAxis.d.ts +0 -14
- package/dist/es/components/YAxis.js +0 -40
- package/dist/es/components/YAxisItem.d.ts +0 -20
- package/dist/es/components/YAxisItem.js +0 -180
- package/dist/es/components/Zoomable.d.ts +0 -20
- package/dist/es/components/Zoomable.js +0 -56
- package/dist/es/components/axis-defaults/Crosshair.d.ts +0 -20
- package/dist/es/components/axis-defaults/Crosshair.js +0 -66
- package/dist/es/components/axis-defaults/CrosshairTooltip.d.ts +0 -20
- package/dist/es/components/axis-defaults/CrosshairTooltip.js +0 -64
- package/dist/es/components/axis-defaults/Labels.d.ts +0 -20
- package/dist/es/components/axis-defaults/Labels.js +0 -79
- package/dist/es/components/axis-defaults/Title.d.ts +0 -20
- package/dist/es/components/axis-defaults/Title.js +0 -82
- package/dist/es/components/axis-defaults/main.d.ts +0 -5
- package/dist/es/components/axis-defaults/main.js +0 -5
- package/dist/es/components/base/CollectionConfigurationComponent.d.ts +0 -53
- package/dist/es/components/base/CollectionConfigurationComponent.js +0 -81
- package/dist/es/components/base/ConfigurationComponent.d.ts +0 -55
- package/dist/es/components/base/ConfigurationComponent.js +0 -179
- package/dist/es/components/category-axis-item/Crosshair.d.ts +0 -20
- package/dist/es/components/category-axis-item/Crosshair.js +0 -66
- package/dist/es/components/category-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/es/components/category-axis-item/CrosshairTooltip.js +0 -64
- package/dist/es/components/category-axis-item/Labels.d.ts +0 -20
- package/dist/es/components/category-axis-item/Labels.js +0 -104
- package/dist/es/components/category-axis-item/Notes.d.ts +0 -20
- package/dist/es/components/category-axis-item/Notes.js +0 -81
- package/dist/es/components/category-axis-item/NotesIcon.d.ts +0 -20
- package/dist/es/components/category-axis-item/NotesIcon.js +0 -65
- package/dist/es/components/category-axis-item/NotesLabel.d.ts +0 -20
- package/dist/es/components/category-axis-item/NotesLabel.js +0 -70
- package/dist/es/components/category-axis-item/RangeLabels.d.ts +0 -20
- package/dist/es/components/category-axis-item/RangeLabels.js +0 -57
- package/dist/es/components/category-axis-item/Select.d.ts +0 -20
- package/dist/es/components/category-axis-item/Select.js +0 -74
- package/dist/es/components/category-axis-item/Title.d.ts +0 -20
- package/dist/es/components/category-axis-item/Title.js +0 -82
- package/dist/es/components/category-axis-item/main.d.ts +0 -10
- package/dist/es/components/category-axis-item/main.js +0 -10
- package/dist/es/components/legend/InactiveItems.d.ts +0 -20
- package/dist/es/components/legend/InactiveItems.js +0 -50
- package/dist/es/components/legend/Item.d.ts +0 -20
- package/dist/es/components/legend/Item.js +0 -82
- package/dist/es/components/legend/Title.d.ts +0 -20
- package/dist/es/components/legend/Title.js +0 -92
- package/dist/es/components/legend/main.d.ts +0 -4
- package/dist/es/components/legend/main.js +0 -4
- package/dist/es/components/main.d.ts +0 -34
- package/dist/es/components/main.js +0 -34
- package/dist/es/components/navigator/CategoryAxis.d.ts +0 -20
- package/dist/es/components/navigator/CategoryAxis.js +0 -228
- package/dist/es/components/navigator/Hint.d.ts +0 -20
- package/dist/es/components/navigator/Hint.js +0 -53
- package/dist/es/components/navigator/Pane.d.ts +0 -20
- package/dist/es/components/navigator/Pane.js +0 -84
- package/dist/es/components/navigator/Select.d.ts +0 -20
- package/dist/es/components/navigator/Select.js +0 -62
- package/dist/es/components/navigator/Series.d.ts +0 -14
- package/dist/es/components/navigator/Series.js +0 -42
- package/dist/es/components/navigator/SeriesItem.d.ts +0 -20
- package/dist/es/components/navigator/SeriesItem.js +0 -266
- package/dist/es/components/navigator/category-axis/Crosshair.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/Crosshair.js +0 -66
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.js +0 -64
- package/dist/es/components/navigator/category-axis/Labels.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/Labels.js +0 -104
- package/dist/es/components/navigator/category-axis/Notes.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/Notes.js +0 -81
- package/dist/es/components/navigator/category-axis/NotesIcon.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/NotesIcon.js +0 -65
- package/dist/es/components/navigator/category-axis/NotesLabel.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/NotesLabel.js +0 -70
- package/dist/es/components/navigator/category-axis/Select.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/Select.js +0 -74
- package/dist/es/components/navigator/category-axis/Title.d.ts +0 -20
- package/dist/es/components/navigator/category-axis/Title.js +0 -82
- package/dist/es/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/main.js +0 -9
- package/dist/es/components/navigator/main.d.ts +0 -10
- package/dist/es/components/navigator/main.js +0 -10
- package/dist/es/components/navigator/pane/Title.d.ts +0 -20
- package/dist/es/components/navigator/pane/Title.js +0 -77
- package/dist/es/components/navigator/pane/main.d.ts +0 -2
- package/dist/es/components/navigator/pane/main.js +0 -2
- package/dist/es/components/navigator/series-item/ErrorBars.d.ts +0 -20
- package/dist/es/components/navigator/series-item/ErrorBars.js +0 -62
- package/dist/es/components/navigator/series-item/Extremes.d.ts +0 -20
- package/dist/es/components/navigator/series-item/Extremes.js +0 -62
- package/dist/es/components/navigator/series-item/Highlight.d.ts +0 -20
- package/dist/es/components/navigator/series-item/Highlight.js +0 -70
- package/dist/es/components/navigator/series-item/Labels.d.ts +0 -20
- package/dist/es/components/navigator/series-item/Labels.js +0 -107
- package/dist/es/components/navigator/series-item/LabelsFrom.d.ts +0 -20
- package/dist/es/components/navigator/series-item/LabelsFrom.js +0 -83
- package/dist/es/components/navigator/series-item/LabelsTo.d.ts +0 -20
- package/dist/es/components/navigator/series-item/LabelsTo.js +0 -83
- package/dist/es/components/navigator/series-item/Markers.d.ts +0 -20
- package/dist/es/components/navigator/series-item/Markers.js +0 -82
- package/dist/es/components/navigator/series-item/Notes.d.ts +0 -20
- package/dist/es/components/navigator/series-item/Notes.js +0 -75
- package/dist/es/components/navigator/series-item/NotesIcon.d.ts +0 -20
- package/dist/es/components/navigator/series-item/NotesIcon.js +0 -65
- package/dist/es/components/navigator/series-item/NotesLabel.d.ts +0 -20
- package/dist/es/components/navigator/series-item/NotesLabel.js +0 -70
- package/dist/es/components/navigator/series-item/Outliers.d.ts +0 -20
- package/dist/es/components/navigator/series-item/Outliers.js +0 -62
- package/dist/es/components/navigator/series-item/Tooltip.d.ts +0 -21
- package/dist/es/components/navigator/series-item/Tooltip.js +0 -82
- package/dist/es/components/navigator/series-item/main.d.ts +0 -13
- package/dist/es/components/navigator/series-item/main.js +0 -13
- package/dist/es/components/pane/Title.d.ts +0 -20
- package/dist/es/components/pane/Title.js +0 -77
- package/dist/es/components/pane/main.d.ts +0 -2
- package/dist/es/components/pane/main.js +0 -2
- package/dist/es/components/pane-defaults/Title.d.ts +0 -20
- package/dist/es/components/pane-defaults/Title.js +0 -76
- package/dist/es/components/pane-defaults/main.d.ts +0 -2
- package/dist/es/components/pane-defaults/main.js +0 -2
- package/dist/es/components/series-defaults/Labels.d.ts +0 -20
- package/dist/es/components/series-defaults/Labels.js +0 -90
- package/dist/es/components/series-defaults/LabelsFrom.d.ts +0 -20
- package/dist/es/components/series-defaults/LabelsFrom.js +0 -74
- package/dist/es/components/series-defaults/LabelsTo.d.ts +0 -20
- package/dist/es/components/series-defaults/LabelsTo.js +0 -74
- package/dist/es/components/series-defaults/Notes.d.ts +0 -20
- package/dist/es/components/series-defaults/Notes.js +0 -66
- package/dist/es/components/series-defaults/NotesIcon.d.ts +0 -20
- package/dist/es/components/series-defaults/NotesIcon.js +0 -65
- package/dist/es/components/series-defaults/NotesLabel.d.ts +0 -20
- package/dist/es/components/series-defaults/NotesLabel.js +0 -70
- package/dist/es/components/series-defaults/Tooltip.d.ts +0 -21
- package/dist/es/components/series-defaults/Tooltip.js +0 -82
- package/dist/es/components/series-defaults/main.d.ts +0 -8
- package/dist/es/components/series-defaults/main.js +0 -8
- package/dist/es/components/series-item/ErrorBars.d.ts +0 -20
- package/dist/es/components/series-item/ErrorBars.js +0 -62
- package/dist/es/components/series-item/Extremes.d.ts +0 -20
- package/dist/es/components/series-item/Extremes.js +0 -62
- package/dist/es/components/series-item/Highlight.d.ts +0 -20
- package/dist/es/components/series-item/Highlight.js +0 -70
- package/dist/es/components/series-item/Labels.d.ts +0 -20
- package/dist/es/components/series-item/Labels.js +0 -107
- package/dist/es/components/series-item/LabelsFrom.d.ts +0 -20
- package/dist/es/components/series-item/LabelsFrom.js +0 -83
- package/dist/es/components/series-item/LabelsTo.d.ts +0 -20
- package/dist/es/components/series-item/LabelsTo.js +0 -83
- package/dist/es/components/series-item/Markers.d.ts +0 -20
- package/dist/es/components/series-item/Markers.js +0 -82
- package/dist/es/components/series-item/Notes.d.ts +0 -20
- package/dist/es/components/series-item/Notes.js +0 -75
- package/dist/es/components/series-item/NotesIcon.d.ts +0 -20
- package/dist/es/components/series-item/NotesIcon.js +0 -65
- package/dist/es/components/series-item/NotesLabel.d.ts +0 -20
- package/dist/es/components/series-item/NotesLabel.js +0 -70
- package/dist/es/components/series-item/Outliers.d.ts +0 -20
- package/dist/es/components/series-item/Outliers.js +0 -62
- package/dist/es/components/series-item/Tooltip.d.ts +0 -21
- package/dist/es/components/series-item/Tooltip.js +0 -82
- package/dist/es/components/series-item/main.d.ts +0 -13
- package/dist/es/components/series-item/main.js +0 -13
- package/dist/es/components/value-axis-item/Crosshair.d.ts +0 -20
- package/dist/es/components/value-axis-item/Crosshair.js +0 -57
- package/dist/es/components/value-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/es/components/value-axis-item/CrosshairTooltip.js +0 -64
- package/dist/es/components/value-axis-item/Labels.d.ts +0 -20
- package/dist/es/components/value-axis-item/Labels.js +0 -90
- package/dist/es/components/value-axis-item/Notes.d.ts +0 -20
- package/dist/es/components/value-axis-item/Notes.js +0 -81
- package/dist/es/components/value-axis-item/NotesIcon.d.ts +0 -20
- package/dist/es/components/value-axis-item/NotesIcon.js +0 -65
- package/dist/es/components/value-axis-item/NotesLabel.d.ts +0 -20
- package/dist/es/components/value-axis-item/NotesLabel.js +0 -70
- package/dist/es/components/value-axis-item/Title.d.ts +0 -20
- package/dist/es/components/value-axis-item/Title.js +0 -82
- package/dist/es/components/value-axis-item/main.d.ts +0 -8
- package/dist/es/components/value-axis-item/main.js +0 -8
- package/dist/es/components/x-axis-item/Crosshair.d.ts +0 -20
- package/dist/es/components/x-axis-item/Crosshair.js +0 -57
- package/dist/es/components/x-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/es/components/x-axis-item/CrosshairTooltip.js +0 -64
- package/dist/es/components/x-axis-item/Labels.d.ts +0 -20
- package/dist/es/components/x-axis-item/Labels.js +0 -97
- package/dist/es/components/x-axis-item/Notes.d.ts +0 -20
- package/dist/es/components/x-axis-item/Notes.js +0 -81
- package/dist/es/components/x-axis-item/NotesIcon.d.ts +0 -20
- package/dist/es/components/x-axis-item/NotesIcon.js +0 -65
- package/dist/es/components/x-axis-item/NotesLabel.d.ts +0 -20
- package/dist/es/components/x-axis-item/NotesLabel.js +0 -70
- package/dist/es/components/x-axis-item/Title.d.ts +0 -20
- package/dist/es/components/x-axis-item/Title.js +0 -82
- package/dist/es/components/x-axis-item/main.d.ts +0 -8
- package/dist/es/components/x-axis-item/main.js +0 -8
- package/dist/es/components/y-axis-item/Crosshair.d.ts +0 -20
- package/dist/es/components/y-axis-item/Crosshair.js +0 -57
- package/dist/es/components/y-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/es/components/y-axis-item/CrosshairTooltip.js +0 -64
- package/dist/es/components/y-axis-item/Labels.d.ts +0 -20
- package/dist/es/components/y-axis-item/Labels.js +0 -97
- package/dist/es/components/y-axis-item/Notes.d.ts +0 -20
- package/dist/es/components/y-axis-item/Notes.js +0 -81
- package/dist/es/components/y-axis-item/NotesIcon.d.ts +0 -20
- package/dist/es/components/y-axis-item/NotesIcon.js +0 -65
- package/dist/es/components/y-axis-item/NotesLabel.d.ts +0 -20
- package/dist/es/components/y-axis-item/NotesLabel.js +0 -70
- package/dist/es/components/y-axis-item/Title.d.ts +0 -20
- package/dist/es/components/y-axis-item/Title.js +0 -82
- package/dist/es/components/y-axis-item/main.d.ts +0 -8
- package/dist/es/components/y-axis-item/main.js +0 -8
- package/dist/es/defaults.d.ts +0 -1
- package/dist/es/defaults.js +0 -15
- package/dist/es/events/axis-label-click-event.d.ts +0 -32
- package/dist/es/events/axis-label-click-event.js +0 -38
- package/dist/es/events/base-event.d.ts +0 -14
- package/dist/es/events/base-event.js +0 -13
- package/dist/es/events/chart-event-builder.d.ts +0 -6
- package/dist/es/events/chart-event-builder.js +0 -53
- package/dist/es/events/dom-event.d.ts +0 -19
- package/dist/es/events/dom-event.js +0 -18
- package/dist/es/events/drag-end-event.d.ts +0 -22
- package/dist/es/events/drag-end-event.js +0 -35
- package/dist/es/events/drag-event.d.ts +0 -22
- package/dist/es/events/drag-event.js +0 -33
- package/dist/es/events/drag-start-event.d.ts +0 -22
- package/dist/es/events/drag-start-event.js +0 -33
- package/dist/es/events/legend-item-click-event.d.ts +0 -32
- package/dist/es/events/legend-item-click-event.js +0 -41
- package/dist/es/events/legend-item-hover-event.d.ts +0 -32
- package/dist/es/events/legend-item-hover-event.js +0 -41
- package/dist/es/events/legend-item-leave-event.d.ts +0 -32
- package/dist/es/events/legend-item-leave-event.js +0 -41
- package/dist/es/events/navigator-filter-event.d.ts +0 -19
- package/dist/es/events/navigator-filter-event.js +0 -33
- package/dist/es/events/note-click-event.d.ts +0 -32
- package/dist/es/events/note-click-event.js +0 -36
- package/dist/es/events/note-hover-event.d.ts +0 -32
- package/dist/es/events/note-hover-event.js +0 -36
- package/dist/es/events/plot-area-click-event.d.ts +0 -31
- package/dist/es/events/plot-area-click-event.js +0 -36
- package/dist/es/events/plot-area-hover-event.d.ts +0 -31
- package/dist/es/events/plot-area-hover-event.js +0 -36
- package/dist/es/events/preventable-event.d.ts +0 -18
- package/dist/es/events/preventable-event.js +0 -46
- package/dist/es/events/render-event.d.ts +0 -11
- package/dist/es/events/render-event.js +0 -30
- package/dist/es/events/select-end-event.d.ts +0 -24
- package/dist/es/events/select-end-event.js +0 -34
- package/dist/es/events/select-event.d.ts +0 -24
- package/dist/es/events/select-event.js +0 -34
- package/dist/es/events/select-start-event.d.ts +0 -24
- package/dist/es/events/select-start-event.js +0 -34
- package/dist/es/events/series-click-event.d.ts +0 -45
- package/dist/es/events/series-click-event.js +0 -41
- package/dist/es/events/series-hover-event.d.ts +0 -49
- package/dist/es/events/series-hover-event.js +0 -42
- package/dist/es/events/zoom-end-event.d.ts +0 -24
- package/dist/es/events/zoom-end-event.js +0 -35
- package/dist/es/events/zoom-event.d.ts +0 -28
- package/dist/es/events/zoom-event.js +0 -36
- package/dist/es/events/zoom-start-event.d.ts +0 -22
- package/dist/es/events/zoom-start-event.js +0 -35
- package/dist/es/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/es/field-types/auto-base-unit-steps.interface.js +0 -1
- package/dist/es/field-types/axis-labels-position.d.ts +0 -15
- package/dist/es/field-types/axis-labels-position.js +0 -1
- package/dist/es/field-types/axis-line.interface.d.ts +0 -22
- package/dist/es/field-types/axis-line.interface.js +0 -2
- package/dist/es/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/es/field-types/axis-ticks.interface.js +0 -2
- package/dist/es/field-types/axis-title-position.d.ts +0 -14
- package/dist/es/field-types/axis-title-position.js +0 -1
- package/dist/es/field-types/base-unit.d.ts +0 -16
- package/dist/es/field-types/base-unit.js +0 -1
- package/dist/es/field-types/border.interface.d.ts +0 -18
- package/dist/es/field-types/border.interface.js +0 -2
- package/dist/es/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/es/field-types/bullet-target-line.interface.js +0 -1
- package/dist/es/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/es/field-types/bullet-target.interface.js +0 -2
- package/dist/es/field-types/category-base-unit.d.ts +0 -47
- package/dist/es/field-types/category-base-unit.js +0 -1
- package/dist/es/field-types/dash-type.d.ts +0 -35
- package/dist/es/field-types/dash-type.js +0 -1
- package/dist/es/field-types/date-formats.interface.d.ts +0 -39
- package/dist/es/field-types/date-formats.interface.js +0 -2
- package/dist/es/field-types/drag-action.interface.d.ts +0 -15
- package/dist/es/field-types/drag-action.interface.js +0 -1
- package/dist/es/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/es/field-types/error-bar-line.interface.js +0 -1
- package/dist/es/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/es/field-types/grid-lines.interface.js +0 -2
- package/dist/es/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/es/field-types/highlight-line.interface.js +0 -2
- package/dist/es/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/es/field-types/label-connectors.interface.js +0 -1
- package/dist/es/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/es/field-types/label-rotation.interface.js +0 -2
- package/dist/es/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/es/field-types/legend-labels.interface.js +0 -2
- package/dist/es/field-types/line-style.d.ts +0 -35
- package/dist/es/field-types/line-style.js +0 -1
- package/dist/es/field-types/lock-axis.d.ts +0 -4
- package/dist/es/field-types/lock-axis.js +0 -1
- package/dist/es/field-types/margin.interface.d.ts +0 -21
- package/dist/es/field-types/margin.interface.js +0 -1
- package/dist/es/field-types/marker-type.d.ts +0 -36
- package/dist/es/field-types/marker-type.js +0 -1
- package/dist/es/field-types/modifier-key.d.ts +0 -4
- package/dist/es/field-types/modifier-key.js +0 -1
- package/dist/es/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/es/field-types/mousewheel-select.interface.js +0 -2
- package/dist/es/field-types/mousewheel-zoom.interface.d.ts +0 -10
- package/dist/es/field-types/mousewheel-zoom.interface.js +0 -1
- package/dist/es/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/es/field-types/negative-bubble-values.interface.js +0 -2
- package/dist/es/field-types/note-label-position.d.ts +0 -41
- package/dist/es/field-types/note-label-position.js +0 -1
- package/dist/es/field-types/note-line.interface.d.ts +0 -22
- package/dist/es/field-types/note-line.interface.js +0 -1
- package/dist/es/field-types/note-position.d.ts +0 -41
- package/dist/es/field-types/note-position.js +0 -1
- package/dist/es/field-types/overlay.interface.d.ts +0 -15
- package/dist/es/field-types/overlay.interface.js +0 -1
- package/dist/es/field-types/padding.interface.d.ts +0 -6
- package/dist/es/field-types/padding.interface.js +0 -1
- package/dist/es/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/es/field-types/plot-band-label.interface.js +0 -1
- package/dist/es/field-types/plot-band.interface.d.ts +0 -30
- package/dist/es/field-types/plot-band.interface.js +0 -1
- package/dist/es/field-types/series-labels-position.d.ts +0 -16
- package/dist/es/field-types/series-labels-position.js +0 -18
- package/dist/es/field-types/series-line.interface.d.ts +0 -28
- package/dist/es/field-types/series-line.interface.js +0 -2
- package/dist/es/field-types/series-stack.interface.d.ts +0 -17
- package/dist/es/field-types/series-stack.interface.js +0 -2
- package/dist/es/field-types/series-type.d.ts +0 -78
- package/dist/es/field-types/series-type.js +0 -1
- package/dist/es/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/es/field-types/trendline-forecast.interface.js +0 -1
- package/dist/es/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/es/field-types/week-start-day.enum.js +0 -34
- package/dist/es/main.d.ts +0 -14
- package/dist/es/main.js +0 -11
- package/dist/es/methods/main.d.ts +0 -36
- package/dist/es/methods/main.js +0 -50
- package/dist/es/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/es/option-types/axis-defaults/crosshair.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/es/option-types/axis-defaults/labels.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/es/option-types/axis-defaults/title.interface.js +0 -2
- package/dist/es/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/es/option-types/axis-defaults.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/es/option-types/category-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/es/option-types/category-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/category-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/category-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/category-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/es/option-types/category-axis-item/range-labels.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/es/option-types/category-axis-item/select.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/es/option-types/category-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/es/option-types/category-axis-item.interface.js +0 -2
- package/dist/es/option-types/chart-area.interface.d.ts +0 -30
- package/dist/es/option-types/chart-area.interface.js +0 -1
- package/dist/es/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/es/option-types/legend/inactive-items.interface.js +0 -1
- package/dist/es/option-types/legend/item.interface.d.ts +0 -117
- package/dist/es/option-types/legend/item.interface.js +0 -1
- package/dist/es/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/es/option-types/legend/legend-title.interface.js +0 -1
- package/dist/es/option-types/legend.interface.d.ts +0 -98
- package/dist/es/option-types/legend.interface.js +0 -2
- package/dist/es/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/es/option-types/navigator/hint.interface.js +0 -1
- package/dist/es/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/es/option-types/navigator/select.interface.js +0 -1
- package/dist/es/option-types/navigator.interface.d.ts +0 -32
- package/dist/es/option-types/navigator.interface.js +0 -2
- package/dist/es/option-types/pane/title.interface.d.ts +0 -56
- package/dist/es/option-types/pane/title.interface.js +0 -2
- package/dist/es/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/es/option-types/pane-defaults/title.interface.js +0 -2
- package/dist/es/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/es/option-types/pane-defaults.interface.js +0 -2
- package/dist/es/option-types/pane.interface.d.ts +0 -39
- package/dist/es/option-types/pane.interface.js +0 -2
- package/dist/es/option-types/plot-area.interface.d.ts +0 -26
- package/dist/es/option-types/plot-area.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/es/option-types/series-defaults/labels.from.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/es/option-types/series-defaults/labels.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/es/option-types/series-defaults/labels.to.interface.js +0 -2
- package/dist/es/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/series-defaults/notes.icon.interface.js +0 -1
- package/dist/es/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/es/option-types/series-defaults/notes.interface.js +0 -1
- package/dist/es/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/series-defaults/notes.label.interface.js +0 -2
- package/dist/es/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/es/option-types/series-defaults/tooltip.interface.js +0 -2
- package/dist/es/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/es/option-types/series-defaults.interface.js +0 -2
- package/dist/es/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/es/option-types/series-item/error-bars.interface.js +0 -2
- package/dist/es/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/extremes.interface.js +0 -1
- package/dist/es/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/es/option-types/series-item/highlight.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/es/option-types/series-item/labels.from.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/es/option-types/series-item/labels.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/es/option-types/series-item/labels.to.interface.js +0 -2
- package/dist/es/option-types/series-item/markers.interface.d.ts +0 -59
- package/dist/es/option-types/series-item/markers.interface.js +0 -2
- package/dist/es/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/es/option-types/series-item/notes.interface.js +0 -1
- package/dist/es/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/series-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/outliers.interface.js +0 -1
- package/dist/es/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/es/option-types/series-item/tooltip.interface.js +0 -2
- package/dist/es/option-types/series-item/trendline.interface.d.ts +0 -30
- package/dist/es/option-types/series-item/trendline.interface.js +0 -1
- package/dist/es/option-types/series-item.interface.d.ts +0 -466
- package/dist/es/option-types/series-item.interface.js +0 -2
- package/dist/es/option-types/title.interface.d.ts +0 -55
- package/dist/es/option-types/title.interface.js +0 -2
- package/dist/es/option-types/tooltip.interface.d.ts +0 -48
- package/dist/es/option-types/tooltip.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/value-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/es/option-types/value-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/value-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/value-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/value-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/es/option-types/value-axis-item/title.interface.js +0 -1
- package/dist/es/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/es/option-types/value-axis-item.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/x-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/es/option-types/x-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/x-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/es/option-types/x-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/x-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/es/option-types/x-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/x-axis-item.interface.d.ts +0 -131
- package/dist/es/option-types/x-axis-item.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/y-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/es/option-types/y-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/y-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/y-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/y-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/es/option-types/y-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/y-axis-item.interface.d.ts +0 -127
- package/dist/es/option-types/y-axis-item.interface.js +0 -2
- package/dist/es/option-types/zoomable.interface.d.ts +0 -14
- package/dist/es/option-types/zoomable.interface.js +0 -1
- package/dist/es/package-metadata.d.ts +0 -5
- package/dist/es/package-metadata.js +0 -11
- package/dist/es/sankey/Sankey.d.ts +0 -62
- package/dist/es/sankey/Sankey.js +0 -263
- package/dist/es/sankey/main.d.ts +0 -4
- package/dist/es/sankey/main.js +0 -3
- package/dist/es/sankey/messages.d.ts +0 -10
- package/dist/es/sankey/messages.js +0 -11
- package/dist/es/sankey/theme-service.d.ts +0 -5
- package/dist/es/sankey/theme-service.js +0 -105
- package/dist/es/sankey/tooltip.d.ts +0 -61
- package/dist/es/sankey/tooltip.js +0 -324
- package/dist/es/sankey/types.d.ts +0 -175
- package/dist/es/sankey/types.js +0 -1
- package/dist/es/sankey/utils.d.ts +0 -5
- package/dist/es/sankey/utils.js +0 -5
- package/dist/es/store/reducer.d.ts +0 -14
- package/dist/es/store/reducer.js +0 -135
- package/dist/es/store/store.d.ts +0 -26
- package/dist/es/store/store.js +0 -28
- package/dist/es/theming/theme-service.d.ts +0 -3
- package/dist/es/theming/theme-service.js +0 -147
- package/dist/es/tooltip/Context.d.ts +0 -11
- package/dist/es/tooltip/Context.js +0 -1
- package/dist/es/tooltip/Crosshair.d.ts +0 -56
- package/dist/es/tooltip/Crosshair.js +0 -138
- package/dist/es/tooltip/CrosshairContainer.d.ts +0 -61
- package/dist/es/tooltip/CrosshairContainer.js +0 -78
- package/dist/es/tooltip/Point.d.ts +0 -68
- package/dist/es/tooltip/Point.js +0 -35
- package/dist/es/tooltip/Popup.d.ts +0 -54
- package/dist/es/tooltip/Popup.js +0 -160
- package/dist/es/tooltip/Series.d.ts +0 -51
- package/dist/es/tooltip/Series.js +0 -232
- package/dist/es/tooltip/SharedTooltipContent.d.ts +0 -42
- package/dist/es/tooltip/SharedTooltipContent.js +0 -68
- package/dist/es/tooltip/main.d.ts +0 -3
- package/dist/es/tooltip/main.js +0 -2
- package/dist/es/utils/main.d.ts +0 -17
- package/dist/es/utils/main.js +0 -63
- package/dist/esm/BaseChart.d.ts +0 -59
- package/dist/esm/BaseChart.js +0 -461
- package/dist/esm/BaseChartProps.d.ts +0 -183
- package/dist/esm/BaseChartProps.js +0 -2
- package/dist/esm/Chart.d.ts +0 -52
- package/dist/esm/Chart.js +0 -214
- package/dist/esm/ChartContext.d.ts +0 -14
- package/dist/esm/ChartContext.js +0 -5
- package/dist/esm/ChartProps.d.ts +0 -10
- package/dist/esm/ChartProps.js +0 -1
- package/dist/esm/DonutCenter.d.ts +0 -60
- package/dist/esm/DonutCenter.js +0 -94
- package/dist/esm/Sparkline.d.ts +0 -47
- package/dist/esm/Sparkline.js +0 -193
- package/dist/esm/SparklineProps.d.ts +0 -14
- package/dist/esm/SparklineProps.js +0 -1
- package/dist/esm/StockChart.d.ts +0 -47
- package/dist/esm/StockChart.js +0 -202
- package/dist/esm/StockChartProps.d.ts +0 -15
- package/dist/esm/StockChartProps.js +0 -2
- package/dist/esm/additionalTypes.ts +0 -21
- package/dist/esm/api-types/axis-range.interface.d.ts +0 -13
- package/dist/esm/api-types/axis-range.interface.js +0 -1
- package/dist/esm/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/esm/api-types/chart-axis.interface.js +0 -2
- package/dist/esm/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/esm/api-types/chart-pane.interface.js +0 -1
- package/dist/esm/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/esm/api-types/chart-plotarea.interface.js +0 -1
- package/dist/esm/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/esm/api-types/event-axis-options.interface.js +0 -1
- package/dist/esm/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/esm/api-types/event-series-options.interface.js +0 -1
- package/dist/esm/api-types/series-point.interface.d.ts +0 -38
- package/dist/esm/api-types/series-point.interface.js +0 -2
- package/dist/esm/argument-types/axis-label-visual-args.interface.d.ts +0 -42
- package/dist/esm/argument-types/axis-label-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/axis-note-visual-args.interface.d.ts +0 -26
- package/dist/esm/argument-types/axis-note-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/error-bars-visual-args.interface.d.ts +0 -30
- package/dist/esm/argument-types/error-bars-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/esm/argument-types/highlight-toggle-args.interface.js +0 -1
- package/dist/esm/argument-types/highlight-visual-args.interface.d.ts +0 -50
- package/dist/esm/argument-types/highlight-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/legend-item-visual-args.interface.d.ts +0 -26
- package/dist/esm/argument-types/legend-item-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/esm/argument-types/legend-labels-content-args.interface.js +0 -2
- package/dist/esm/argument-types/markers-visual-args.interface.d.ts +0 -38
- package/dist/esm/argument-types/markers-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/plot-band-label-visual-args.interface.d.ts +0 -26
- package/dist/esm/argument-types/plot-band-label-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/series-labels-visual-args.interface.d.ts +0 -26
- package/dist/esm/argument-types/series-labels-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/series-note-visual-args.interface.d.ts +0 -42
- package/dist/esm/argument-types/series-note-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/series-visual-args.interface.d.ts +0 -75
- package/dist/esm/argument-types/series-visual-args.interface.js +0 -1
- package/dist/esm/argument-types/title-visual-args.interface.d.ts +0 -26
- package/dist/esm/argument-types/title-visual-args.interface.js +0 -1
- package/dist/esm/common/api-types.d.ts +0 -7
- package/dist/esm/common/api-types.js +0 -1
- package/dist/esm/common/charts.d.ts +0 -5
- package/dist/esm/common/charts.js +0 -1
- package/dist/esm/common/events.d.ts +0 -20
- package/dist/esm/common/events.js +0 -21
- package/dist/esm/common/property-types.d.ts +0 -130
- package/dist/esm/common/property-types.js +0 -1
- package/dist/esm/components/AxisDefaults.d.ts +0 -20
- package/dist/esm/components/AxisDefaults.js +0 -126
- package/dist/esm/components/CategoryAxis.d.ts +0 -14
- package/dist/esm/components/CategoryAxis.js +0 -40
- package/dist/esm/components/CategoryAxisItem.d.ts +0 -20
- package/dist/esm/components/CategoryAxisItem.js +0 -238
- package/dist/esm/components/ChartArea.d.ts +0 -20
- package/dist/esm/components/ChartArea.js +0 -72
- package/dist/esm/components/Legend.d.ts +0 -20
- package/dist/esm/components/Legend.js +0 -145
- package/dist/esm/components/Navigator.d.ts +0 -20
- package/dist/esm/components/Navigator.js +0 -78
- package/dist/esm/components/Pane.d.ts +0 -20
- package/dist/esm/components/Pane.js +0 -82
- package/dist/esm/components/PaneDefaults.d.ts +0 -20
- package/dist/esm/components/PaneDefaults.js +0 -84
- package/dist/esm/components/Panes.d.ts +0 -14
- package/dist/esm/components/Panes.js +0 -40
- package/dist/esm/components/PlotArea.d.ts +0 -20
- package/dist/esm/components/PlotArea.js +0 -70
- package/dist/esm/components/Series.d.ts +0 -14
- package/dist/esm/components/Series.js +0 -40
- package/dist/esm/components/SeriesDefaults.d.ts +0 -20
- package/dist/esm/components/SeriesDefaults.js +0 -95
- package/dist/esm/components/SeriesItem.d.ts +0 -17
- package/dist/esm/components/SeriesItem.js +0 -288
- package/dist/esm/components/Title.d.ts +0 -20
- package/dist/esm/components/Title.js +0 -100
- package/dist/esm/components/Tooltip.d.ts +0 -21
- package/dist/esm/components/Tooltip.js +0 -102
- package/dist/esm/components/ValueAxis.d.ts +0 -14
- package/dist/esm/components/ValueAxis.js +0 -40
- package/dist/esm/components/ValueAxisItem.d.ts +0 -20
- package/dist/esm/components/ValueAxisItem.js +0 -171
- package/dist/esm/components/XAxis.d.ts +0 -14
- package/dist/esm/components/XAxis.js +0 -40
- package/dist/esm/components/XAxisItem.d.ts +0 -20
- package/dist/esm/components/XAxisItem.js +0 -184
- package/dist/esm/components/YAxis.d.ts +0 -14
- package/dist/esm/components/YAxis.js +0 -40
- package/dist/esm/components/YAxisItem.d.ts +0 -20
- package/dist/esm/components/YAxisItem.js +0 -180
- package/dist/esm/components/Zoomable.d.ts +0 -20
- package/dist/esm/components/Zoomable.js +0 -56
- package/dist/esm/components/axis-defaults/Crosshair.d.ts +0 -20
- package/dist/esm/components/axis-defaults/Crosshair.js +0 -66
- package/dist/esm/components/axis-defaults/CrosshairTooltip.d.ts +0 -20
- package/dist/esm/components/axis-defaults/CrosshairTooltip.js +0 -64
- package/dist/esm/components/axis-defaults/Labels.d.ts +0 -20
- package/dist/esm/components/axis-defaults/Labels.js +0 -79
- package/dist/esm/components/axis-defaults/Title.d.ts +0 -20
- package/dist/esm/components/axis-defaults/Title.js +0 -82
- package/dist/esm/components/axis-defaults/main.d.ts +0 -5
- package/dist/esm/components/axis-defaults/main.js +0 -5
- package/dist/esm/components/base/CollectionConfigurationComponent.d.ts +0 -53
- package/dist/esm/components/base/CollectionConfigurationComponent.js +0 -81
- package/dist/esm/components/base/ConfigurationComponent.d.ts +0 -55
- package/dist/esm/components/base/ConfigurationComponent.js +0 -179
- package/dist/esm/components/category-axis-item/Crosshair.d.ts +0 -20
- package/dist/esm/components/category-axis-item/Crosshair.js +0 -66
- package/dist/esm/components/category-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/esm/components/category-axis-item/CrosshairTooltip.js +0 -64
- package/dist/esm/components/category-axis-item/Labels.d.ts +0 -20
- package/dist/esm/components/category-axis-item/Labels.js +0 -104
- package/dist/esm/components/category-axis-item/Notes.d.ts +0 -20
- package/dist/esm/components/category-axis-item/Notes.js +0 -81
- package/dist/esm/components/category-axis-item/NotesIcon.d.ts +0 -20
- package/dist/esm/components/category-axis-item/NotesIcon.js +0 -65
- package/dist/esm/components/category-axis-item/NotesLabel.d.ts +0 -20
- package/dist/esm/components/category-axis-item/NotesLabel.js +0 -70
- package/dist/esm/components/category-axis-item/RangeLabels.d.ts +0 -20
- package/dist/esm/components/category-axis-item/RangeLabels.js +0 -57
- package/dist/esm/components/category-axis-item/Select.d.ts +0 -20
- package/dist/esm/components/category-axis-item/Select.js +0 -74
- package/dist/esm/components/category-axis-item/Title.d.ts +0 -20
- package/dist/esm/components/category-axis-item/Title.js +0 -82
- package/dist/esm/components/category-axis-item/main.d.ts +0 -10
- package/dist/esm/components/category-axis-item/main.js +0 -10
- package/dist/esm/components/legend/InactiveItems.d.ts +0 -20
- package/dist/esm/components/legend/InactiveItems.js +0 -50
- package/dist/esm/components/legend/Item.d.ts +0 -20
- package/dist/esm/components/legend/Item.js +0 -82
- package/dist/esm/components/legend/Title.d.ts +0 -20
- package/dist/esm/components/legend/Title.js +0 -92
- package/dist/esm/components/legend/main.d.ts +0 -4
- package/dist/esm/components/legend/main.js +0 -4
- package/dist/esm/components/main.d.ts +0 -34
- package/dist/esm/components/main.js +0 -34
- package/dist/esm/components/navigator/CategoryAxis.d.ts +0 -20
- package/dist/esm/components/navigator/CategoryAxis.js +0 -228
- package/dist/esm/components/navigator/Hint.d.ts +0 -20
- package/dist/esm/components/navigator/Hint.js +0 -53
- package/dist/esm/components/navigator/Pane.d.ts +0 -20
- package/dist/esm/components/navigator/Pane.js +0 -84
- package/dist/esm/components/navigator/Select.d.ts +0 -20
- package/dist/esm/components/navigator/Select.js +0 -62
- package/dist/esm/components/navigator/Series.d.ts +0 -14
- package/dist/esm/components/navigator/Series.js +0 -42
- package/dist/esm/components/navigator/SeriesItem.d.ts +0 -20
- package/dist/esm/components/navigator/SeriesItem.js +0 -266
- package/dist/esm/components/navigator/category-axis/Crosshair.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/Crosshair.js +0 -66
- package/dist/esm/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/CrosshairTooltip.js +0 -64
- package/dist/esm/components/navigator/category-axis/Labels.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/Labels.js +0 -104
- package/dist/esm/components/navigator/category-axis/Notes.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/Notes.js +0 -81
- package/dist/esm/components/navigator/category-axis/NotesIcon.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/NotesIcon.js +0 -65
- package/dist/esm/components/navigator/category-axis/NotesLabel.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/NotesLabel.js +0 -70
- package/dist/esm/components/navigator/category-axis/Select.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/Select.js +0 -74
- package/dist/esm/components/navigator/category-axis/Title.d.ts +0 -20
- package/dist/esm/components/navigator/category-axis/Title.js +0 -82
- package/dist/esm/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/esm/components/navigator/category-axis/main.js +0 -9
- package/dist/esm/components/navigator/main.d.ts +0 -10
- package/dist/esm/components/navigator/main.js +0 -10
- package/dist/esm/components/navigator/pane/Title.d.ts +0 -20
- package/dist/esm/components/navigator/pane/Title.js +0 -77
- package/dist/esm/components/navigator/pane/main.d.ts +0 -2
- package/dist/esm/components/navigator/pane/main.js +0 -2
- package/dist/esm/components/navigator/series-item/ErrorBars.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/ErrorBars.js +0 -62
- package/dist/esm/components/navigator/series-item/Extremes.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/Extremes.js +0 -62
- package/dist/esm/components/navigator/series-item/Highlight.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/Highlight.js +0 -70
- package/dist/esm/components/navigator/series-item/Labels.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/Labels.js +0 -107
- package/dist/esm/components/navigator/series-item/LabelsFrom.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/LabelsFrom.js +0 -83
- package/dist/esm/components/navigator/series-item/LabelsTo.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/LabelsTo.js +0 -83
- package/dist/esm/components/navigator/series-item/Markers.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/Markers.js +0 -82
- package/dist/esm/components/navigator/series-item/Notes.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/Notes.js +0 -75
- package/dist/esm/components/navigator/series-item/NotesIcon.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/NotesIcon.js +0 -65
- package/dist/esm/components/navigator/series-item/NotesLabel.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/NotesLabel.js +0 -70
- package/dist/esm/components/navigator/series-item/Outliers.d.ts +0 -20
- package/dist/esm/components/navigator/series-item/Outliers.js +0 -62
- package/dist/esm/components/navigator/series-item/Tooltip.d.ts +0 -21
- package/dist/esm/components/navigator/series-item/Tooltip.js +0 -82
- package/dist/esm/components/navigator/series-item/main.d.ts +0 -13
- package/dist/esm/components/navigator/series-item/main.js +0 -13
- package/dist/esm/components/pane/Title.d.ts +0 -20
- package/dist/esm/components/pane/Title.js +0 -77
- package/dist/esm/components/pane/main.d.ts +0 -2
- package/dist/esm/components/pane/main.js +0 -2
- package/dist/esm/components/pane-defaults/Title.d.ts +0 -20
- package/dist/esm/components/pane-defaults/Title.js +0 -76
- package/dist/esm/components/pane-defaults/main.d.ts +0 -2
- package/dist/esm/components/pane-defaults/main.js +0 -2
- package/dist/esm/components/series-defaults/Labels.d.ts +0 -20
- package/dist/esm/components/series-defaults/Labels.js +0 -90
- package/dist/esm/components/series-defaults/LabelsFrom.d.ts +0 -20
- package/dist/esm/components/series-defaults/LabelsFrom.js +0 -74
- package/dist/esm/components/series-defaults/LabelsTo.d.ts +0 -20
- package/dist/esm/components/series-defaults/LabelsTo.js +0 -74
- package/dist/esm/components/series-defaults/Notes.d.ts +0 -20
- package/dist/esm/components/series-defaults/Notes.js +0 -66
- package/dist/esm/components/series-defaults/NotesIcon.d.ts +0 -20
- package/dist/esm/components/series-defaults/NotesIcon.js +0 -65
- package/dist/esm/components/series-defaults/NotesLabel.d.ts +0 -20
- package/dist/esm/components/series-defaults/NotesLabel.js +0 -70
- package/dist/esm/components/series-defaults/Tooltip.d.ts +0 -21
- package/dist/esm/components/series-defaults/Tooltip.js +0 -82
- package/dist/esm/components/series-defaults/main.d.ts +0 -8
- package/dist/esm/components/series-defaults/main.js +0 -8
- package/dist/esm/components/series-item/ErrorBars.d.ts +0 -20
- package/dist/esm/components/series-item/ErrorBars.js +0 -62
- package/dist/esm/components/series-item/Extremes.d.ts +0 -20
- package/dist/esm/components/series-item/Extremes.js +0 -62
- package/dist/esm/components/series-item/Highlight.d.ts +0 -20
- package/dist/esm/components/series-item/Highlight.js +0 -70
- package/dist/esm/components/series-item/Labels.d.ts +0 -20
- package/dist/esm/components/series-item/Labels.js +0 -107
- package/dist/esm/components/series-item/LabelsFrom.d.ts +0 -20
- package/dist/esm/components/series-item/LabelsFrom.js +0 -83
- package/dist/esm/components/series-item/LabelsTo.d.ts +0 -20
- package/dist/esm/components/series-item/LabelsTo.js +0 -83
- package/dist/esm/components/series-item/Markers.d.ts +0 -20
- package/dist/esm/components/series-item/Markers.js +0 -82
- package/dist/esm/components/series-item/Notes.d.ts +0 -20
- package/dist/esm/components/series-item/Notes.js +0 -75
- package/dist/esm/components/series-item/NotesIcon.d.ts +0 -20
- package/dist/esm/components/series-item/NotesIcon.js +0 -65
- package/dist/esm/components/series-item/NotesLabel.d.ts +0 -20
- package/dist/esm/components/series-item/NotesLabel.js +0 -70
- package/dist/esm/components/series-item/Outliers.d.ts +0 -20
- package/dist/esm/components/series-item/Outliers.js +0 -62
- package/dist/esm/components/series-item/Tooltip.d.ts +0 -21
- package/dist/esm/components/series-item/Tooltip.js +0 -82
- package/dist/esm/components/series-item/main.d.ts +0 -13
- package/dist/esm/components/series-item/main.js +0 -13
- package/dist/esm/components/value-axis-item/Crosshair.d.ts +0 -20
- package/dist/esm/components/value-axis-item/Crosshair.js +0 -57
- package/dist/esm/components/value-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/esm/components/value-axis-item/CrosshairTooltip.js +0 -64
- package/dist/esm/components/value-axis-item/Labels.d.ts +0 -20
- package/dist/esm/components/value-axis-item/Labels.js +0 -90
- package/dist/esm/components/value-axis-item/Notes.d.ts +0 -20
- package/dist/esm/components/value-axis-item/Notes.js +0 -81
- package/dist/esm/components/value-axis-item/NotesIcon.d.ts +0 -20
- package/dist/esm/components/value-axis-item/NotesIcon.js +0 -65
- package/dist/esm/components/value-axis-item/NotesLabel.d.ts +0 -20
- package/dist/esm/components/value-axis-item/NotesLabel.js +0 -70
- package/dist/esm/components/value-axis-item/Title.d.ts +0 -20
- package/dist/esm/components/value-axis-item/Title.js +0 -82
- package/dist/esm/components/value-axis-item/main.d.ts +0 -8
- package/dist/esm/components/value-axis-item/main.js +0 -8
- package/dist/esm/components/x-axis-item/Crosshair.d.ts +0 -20
- package/dist/esm/components/x-axis-item/Crosshair.js +0 -57
- package/dist/esm/components/x-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/esm/components/x-axis-item/CrosshairTooltip.js +0 -64
- package/dist/esm/components/x-axis-item/Labels.d.ts +0 -20
- package/dist/esm/components/x-axis-item/Labels.js +0 -97
- package/dist/esm/components/x-axis-item/Notes.d.ts +0 -20
- package/dist/esm/components/x-axis-item/Notes.js +0 -81
- package/dist/esm/components/x-axis-item/NotesIcon.d.ts +0 -20
- package/dist/esm/components/x-axis-item/NotesIcon.js +0 -65
- package/dist/esm/components/x-axis-item/NotesLabel.d.ts +0 -20
- package/dist/esm/components/x-axis-item/NotesLabel.js +0 -70
- package/dist/esm/components/x-axis-item/Title.d.ts +0 -20
- package/dist/esm/components/x-axis-item/Title.js +0 -82
- package/dist/esm/components/x-axis-item/main.d.ts +0 -8
- package/dist/esm/components/x-axis-item/main.js +0 -8
- package/dist/esm/components/y-axis-item/Crosshair.d.ts +0 -20
- package/dist/esm/components/y-axis-item/Crosshair.js +0 -57
- package/dist/esm/components/y-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/esm/components/y-axis-item/CrosshairTooltip.js +0 -64
- package/dist/esm/components/y-axis-item/Labels.d.ts +0 -20
- package/dist/esm/components/y-axis-item/Labels.js +0 -97
- package/dist/esm/components/y-axis-item/Notes.d.ts +0 -20
- package/dist/esm/components/y-axis-item/Notes.js +0 -81
- package/dist/esm/components/y-axis-item/NotesIcon.d.ts +0 -20
- package/dist/esm/components/y-axis-item/NotesIcon.js +0 -65
- package/dist/esm/components/y-axis-item/NotesLabel.d.ts +0 -20
- package/dist/esm/components/y-axis-item/NotesLabel.js +0 -70
- package/dist/esm/components/y-axis-item/Title.d.ts +0 -20
- package/dist/esm/components/y-axis-item/Title.js +0 -82
- package/dist/esm/components/y-axis-item/main.d.ts +0 -8
- package/dist/esm/components/y-axis-item/main.js +0 -8
- package/dist/esm/defaults.d.ts +0 -1
- package/dist/esm/defaults.js +0 -15
- package/dist/esm/events/axis-label-click-event.d.ts +0 -32
- package/dist/esm/events/axis-label-click-event.js +0 -38
- package/dist/esm/events/base-event.d.ts +0 -14
- package/dist/esm/events/base-event.js +0 -13
- package/dist/esm/events/chart-event-builder.d.ts +0 -6
- package/dist/esm/events/chart-event-builder.js +0 -53
- package/dist/esm/events/dom-event.d.ts +0 -19
- package/dist/esm/events/dom-event.js +0 -18
- package/dist/esm/events/drag-end-event.d.ts +0 -22
- package/dist/esm/events/drag-end-event.js +0 -35
- package/dist/esm/events/drag-event.d.ts +0 -22
- package/dist/esm/events/drag-event.js +0 -33
- package/dist/esm/events/drag-start-event.d.ts +0 -22
- package/dist/esm/events/drag-start-event.js +0 -33
- package/dist/esm/events/legend-item-click-event.d.ts +0 -32
- package/dist/esm/events/legend-item-click-event.js +0 -41
- package/dist/esm/events/legend-item-hover-event.d.ts +0 -32
- package/dist/esm/events/legend-item-hover-event.js +0 -41
- package/dist/esm/events/legend-item-leave-event.d.ts +0 -32
- package/dist/esm/events/legend-item-leave-event.js +0 -41
- package/dist/esm/events/navigator-filter-event.d.ts +0 -19
- package/dist/esm/events/navigator-filter-event.js +0 -33
- package/dist/esm/events/note-click-event.d.ts +0 -32
- package/dist/esm/events/note-click-event.js +0 -36
- package/dist/esm/events/note-hover-event.d.ts +0 -32
- package/dist/esm/events/note-hover-event.js +0 -36
- package/dist/esm/events/plot-area-click-event.d.ts +0 -31
- package/dist/esm/events/plot-area-click-event.js +0 -36
- package/dist/esm/events/plot-area-hover-event.d.ts +0 -31
- package/dist/esm/events/plot-area-hover-event.js +0 -36
- package/dist/esm/events/preventable-event.d.ts +0 -18
- package/dist/esm/events/preventable-event.js +0 -46
- package/dist/esm/events/render-event.d.ts +0 -11
- package/dist/esm/events/render-event.js +0 -30
- package/dist/esm/events/select-end-event.d.ts +0 -24
- package/dist/esm/events/select-end-event.js +0 -34
- package/dist/esm/events/select-event.d.ts +0 -24
- package/dist/esm/events/select-event.js +0 -34
- package/dist/esm/events/select-start-event.d.ts +0 -24
- package/dist/esm/events/select-start-event.js +0 -34
- package/dist/esm/events/series-click-event.d.ts +0 -45
- package/dist/esm/events/series-click-event.js +0 -41
- package/dist/esm/events/series-hover-event.d.ts +0 -49
- package/dist/esm/events/series-hover-event.js +0 -42
- package/dist/esm/events/zoom-end-event.d.ts +0 -24
- package/dist/esm/events/zoom-end-event.js +0 -35
- package/dist/esm/events/zoom-event.d.ts +0 -28
- package/dist/esm/events/zoom-event.js +0 -36
- package/dist/esm/events/zoom-start-event.d.ts +0 -22
- package/dist/esm/events/zoom-start-event.js +0 -35
- package/dist/esm/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/esm/field-types/auto-base-unit-steps.interface.js +0 -1
- package/dist/esm/field-types/axis-labels-position.d.ts +0 -15
- package/dist/esm/field-types/axis-labels-position.js +0 -1
- package/dist/esm/field-types/axis-line.interface.d.ts +0 -22
- package/dist/esm/field-types/axis-line.interface.js +0 -2
- package/dist/esm/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/esm/field-types/axis-ticks.interface.js +0 -2
- package/dist/esm/field-types/axis-title-position.d.ts +0 -14
- package/dist/esm/field-types/axis-title-position.js +0 -1
- package/dist/esm/field-types/base-unit.d.ts +0 -16
- package/dist/esm/field-types/base-unit.js +0 -1
- package/dist/esm/field-types/border.interface.d.ts +0 -18
- package/dist/esm/field-types/border.interface.js +0 -2
- package/dist/esm/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/esm/field-types/bullet-target-line.interface.js +0 -1
- package/dist/esm/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/esm/field-types/bullet-target.interface.js +0 -2
- package/dist/esm/field-types/category-base-unit.d.ts +0 -47
- package/dist/esm/field-types/category-base-unit.js +0 -1
- package/dist/esm/field-types/dash-type.d.ts +0 -35
- package/dist/esm/field-types/dash-type.js +0 -1
- package/dist/esm/field-types/date-formats.interface.d.ts +0 -39
- package/dist/esm/field-types/date-formats.interface.js +0 -2
- package/dist/esm/field-types/drag-action.interface.d.ts +0 -15
- package/dist/esm/field-types/drag-action.interface.js +0 -1
- package/dist/esm/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/esm/field-types/error-bar-line.interface.js +0 -1
- package/dist/esm/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/esm/field-types/grid-lines.interface.js +0 -2
- package/dist/esm/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/esm/field-types/highlight-line.interface.js +0 -2
- package/dist/esm/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/esm/field-types/label-connectors.interface.js +0 -1
- package/dist/esm/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/esm/field-types/label-rotation.interface.js +0 -2
- package/dist/esm/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/esm/field-types/legend-labels.interface.js +0 -2
- package/dist/esm/field-types/line-style.d.ts +0 -35
- package/dist/esm/field-types/line-style.js +0 -1
- package/dist/esm/field-types/lock-axis.d.ts +0 -4
- package/dist/esm/field-types/lock-axis.js +0 -1
- package/dist/esm/field-types/margin.interface.d.ts +0 -21
- package/dist/esm/field-types/margin.interface.js +0 -1
- package/dist/esm/field-types/marker-type.d.ts +0 -36
- package/dist/esm/field-types/marker-type.js +0 -1
- package/dist/esm/field-types/modifier-key.d.ts +0 -4
- package/dist/esm/field-types/modifier-key.js +0 -1
- package/dist/esm/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/esm/field-types/mousewheel-select.interface.js +0 -2
- package/dist/esm/field-types/mousewheel-zoom.interface.d.ts +0 -10
- package/dist/esm/field-types/mousewheel-zoom.interface.js +0 -1
- package/dist/esm/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/esm/field-types/negative-bubble-values.interface.js +0 -2
- package/dist/esm/field-types/note-label-position.d.ts +0 -41
- package/dist/esm/field-types/note-label-position.js +0 -1
- package/dist/esm/field-types/note-line.interface.d.ts +0 -22
- package/dist/esm/field-types/note-line.interface.js +0 -1
- package/dist/esm/field-types/note-position.d.ts +0 -41
- package/dist/esm/field-types/note-position.js +0 -1
- package/dist/esm/field-types/overlay.interface.d.ts +0 -15
- package/dist/esm/field-types/overlay.interface.js +0 -1
- package/dist/esm/field-types/padding.interface.d.ts +0 -6
- package/dist/esm/field-types/padding.interface.js +0 -1
- package/dist/esm/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/esm/field-types/plot-band-label.interface.js +0 -1
- package/dist/esm/field-types/plot-band.interface.d.ts +0 -30
- package/dist/esm/field-types/plot-band.interface.js +0 -1
- package/dist/esm/field-types/series-labels-position.d.ts +0 -16
- package/dist/esm/field-types/series-labels-position.js +0 -18
- package/dist/esm/field-types/series-line.interface.d.ts +0 -28
- package/dist/esm/field-types/series-line.interface.js +0 -2
- package/dist/esm/field-types/series-stack.interface.d.ts +0 -17
- package/dist/esm/field-types/series-stack.interface.js +0 -2
- package/dist/esm/field-types/series-type.d.ts +0 -78
- package/dist/esm/field-types/series-type.js +0 -1
- package/dist/esm/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/esm/field-types/trendline-forecast.interface.js +0 -1
- package/dist/esm/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/esm/field-types/week-start-day.enum.js +0 -34
- package/dist/esm/main.d.ts +0 -14
- package/dist/esm/main.js +0 -11
- package/dist/esm/methods/main.d.ts +0 -36
- package/dist/esm/methods/main.js +0 -50
- package/dist/esm/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/esm/option-types/axis-defaults/crosshair.interface.js +0 -2
- package/dist/esm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/esm/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -2
- package/dist/esm/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/esm/option-types/axis-defaults/labels.interface.js +0 -2
- package/dist/esm/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/esm/option-types/axis-defaults/title.interface.js +0 -2
- package/dist/esm/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/esm/option-types/axis-defaults.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/esm/option-types/category-axis-item/crosshair.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/esm/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/esm/option-types/category-axis-item/labels.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/esm/option-types/category-axis-item/notes.icon.interface.js +0 -1
- package/dist/esm/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/esm/option-types/category-axis-item/notes.interface.js +0 -1
- package/dist/esm/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/esm/option-types/category-axis-item/notes.label.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/esm/option-types/category-axis-item/range-labels.interface.js +0 -1
- package/dist/esm/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/esm/option-types/category-axis-item/select.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/esm/option-types/category-axis-item/title.interface.js +0 -2
- package/dist/esm/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/esm/option-types/category-axis-item.interface.js +0 -2
- package/dist/esm/option-types/chart-area.interface.d.ts +0 -30
- package/dist/esm/option-types/chart-area.interface.js +0 -1
- package/dist/esm/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/esm/option-types/legend/inactive-items.interface.js +0 -1
- package/dist/esm/option-types/legend/item.interface.d.ts +0 -117
- package/dist/esm/option-types/legend/item.interface.js +0 -1
- package/dist/esm/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/esm/option-types/legend/legend-title.interface.js +0 -1
- package/dist/esm/option-types/legend.interface.d.ts +0 -98
- package/dist/esm/option-types/legend.interface.js +0 -2
- package/dist/esm/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/esm/option-types/navigator/hint.interface.js +0 -1
- package/dist/esm/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/esm/option-types/navigator/select.interface.js +0 -1
- package/dist/esm/option-types/navigator.interface.d.ts +0 -32
- package/dist/esm/option-types/navigator.interface.js +0 -2
- package/dist/esm/option-types/pane/title.interface.d.ts +0 -56
- package/dist/esm/option-types/pane/title.interface.js +0 -2
- package/dist/esm/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/esm/option-types/pane-defaults/title.interface.js +0 -2
- package/dist/esm/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/esm/option-types/pane-defaults.interface.js +0 -2
- package/dist/esm/option-types/pane.interface.d.ts +0 -39
- package/dist/esm/option-types/pane.interface.js +0 -2
- package/dist/esm/option-types/plot-area.interface.d.ts +0 -26
- package/dist/esm/option-types/plot-area.interface.js +0 -2
- package/dist/esm/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/esm/option-types/series-defaults/labels.from.interface.js +0 -2
- package/dist/esm/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/esm/option-types/series-defaults/labels.interface.js +0 -2
- package/dist/esm/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/esm/option-types/series-defaults/labels.to.interface.js +0 -2
- package/dist/esm/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/esm/option-types/series-defaults/notes.icon.interface.js +0 -1
- package/dist/esm/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/esm/option-types/series-defaults/notes.interface.js +0 -1
- package/dist/esm/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/esm/option-types/series-defaults/notes.label.interface.js +0 -2
- package/dist/esm/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/esm/option-types/series-defaults/tooltip.interface.js +0 -2
- package/dist/esm/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/esm/option-types/series-defaults.interface.js +0 -2
- package/dist/esm/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/esm/option-types/series-item/error-bars.interface.js +0 -2
- package/dist/esm/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/esm/option-types/series-item/extremes.interface.js +0 -1
- package/dist/esm/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/esm/option-types/series-item/highlight.interface.js +0 -2
- package/dist/esm/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/esm/option-types/series-item/labels.from.interface.js +0 -2
- package/dist/esm/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/esm/option-types/series-item/labels.interface.js +0 -2
- package/dist/esm/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/esm/option-types/series-item/labels.to.interface.js +0 -2
- package/dist/esm/option-types/series-item/markers.interface.d.ts +0 -59
- package/dist/esm/option-types/series-item/markers.interface.js +0 -2
- package/dist/esm/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/esm/option-types/series-item/notes.icon.interface.js +0 -1
- package/dist/esm/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/esm/option-types/series-item/notes.interface.js +0 -1
- package/dist/esm/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/esm/option-types/series-item/notes.label.interface.js +0 -2
- package/dist/esm/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/esm/option-types/series-item/outliers.interface.js +0 -1
- package/dist/esm/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/esm/option-types/series-item/tooltip.interface.js +0 -2
- package/dist/esm/option-types/series-item/trendline.interface.d.ts +0 -30
- package/dist/esm/option-types/series-item/trendline.interface.js +0 -1
- package/dist/esm/option-types/series-item.interface.d.ts +0 -466
- package/dist/esm/option-types/series-item.interface.js +0 -2
- package/dist/esm/option-types/title.interface.d.ts +0 -55
- package/dist/esm/option-types/title.interface.js +0 -2
- package/dist/esm/option-types/tooltip.interface.d.ts +0 -48
- package/dist/esm/option-types/tooltip.interface.js +0 -2
- package/dist/esm/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/esm/option-types/value-axis-item/crosshair.interface.js +0 -2
- package/dist/esm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/esm/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/esm/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/esm/option-types/value-axis-item/labels.interface.js +0 -2
- package/dist/esm/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/esm/option-types/value-axis-item/notes.icon.interface.js +0 -1
- package/dist/esm/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/esm/option-types/value-axis-item/notes.interface.js +0 -1
- package/dist/esm/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/esm/option-types/value-axis-item/notes.label.interface.js +0 -2
- package/dist/esm/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/esm/option-types/value-axis-item/title.interface.js +0 -1
- package/dist/esm/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/esm/option-types/value-axis-item.interface.js +0 -2
- package/dist/esm/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/esm/option-types/x-axis-item/crosshair.interface.js +0 -2
- package/dist/esm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/esm/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/esm/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/esm/option-types/x-axis-item/labels.interface.js +0 -2
- package/dist/esm/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/esm/option-types/x-axis-item/notes.icon.interface.js +0 -1
- package/dist/esm/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/esm/option-types/x-axis-item/notes.interface.js +0 -1
- package/dist/esm/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/esm/option-types/x-axis-item/notes.label.interface.js +0 -2
- package/dist/esm/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/esm/option-types/x-axis-item/title.interface.js +0 -2
- package/dist/esm/option-types/x-axis-item.interface.d.ts +0 -131
- package/dist/esm/option-types/x-axis-item.interface.js +0 -2
- package/dist/esm/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/esm/option-types/y-axis-item/crosshair.interface.js +0 -2
- package/dist/esm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/esm/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/esm/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/esm/option-types/y-axis-item/labels.interface.js +0 -2
- package/dist/esm/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/esm/option-types/y-axis-item/notes.icon.interface.js +0 -1
- package/dist/esm/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/esm/option-types/y-axis-item/notes.interface.js +0 -1
- package/dist/esm/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/esm/option-types/y-axis-item/notes.label.interface.js +0 -2
- package/dist/esm/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/esm/option-types/y-axis-item/title.interface.js +0 -2
- package/dist/esm/option-types/y-axis-item.interface.d.ts +0 -127
- package/dist/esm/option-types/y-axis-item.interface.js +0 -2
- package/dist/esm/option-types/zoomable.interface.d.ts +0 -14
- package/dist/esm/option-types/zoomable.interface.js +0 -1
- package/dist/esm/package-metadata.d.ts +0 -5
- package/dist/esm/package-metadata.js +0 -11
- package/dist/esm/package.json +0 -3
- package/dist/esm/sankey/Sankey.d.ts +0 -62
- package/dist/esm/sankey/Sankey.js +0 -263
- package/dist/esm/sankey/main.d.ts +0 -4
- package/dist/esm/sankey/main.js +0 -3
- package/dist/esm/sankey/messages.d.ts +0 -10
- package/dist/esm/sankey/messages.js +0 -11
- package/dist/esm/sankey/theme-service.d.ts +0 -5
- package/dist/esm/sankey/theme-service.js +0 -105
- package/dist/esm/sankey/tooltip.d.ts +0 -61
- package/dist/esm/sankey/tooltip.js +0 -324
- package/dist/esm/sankey/types.d.ts +0 -175
- package/dist/esm/sankey/types.js +0 -1
- package/dist/esm/sankey/utils.d.ts +0 -5
- package/dist/esm/sankey/utils.js +0 -5
- package/dist/esm/store/reducer.d.ts +0 -14
- package/dist/esm/store/reducer.js +0 -135
- package/dist/esm/store/store.d.ts +0 -26
- package/dist/esm/store/store.js +0 -28
- package/dist/esm/theming/theme-service.d.ts +0 -3
- package/dist/esm/theming/theme-service.js +0 -147
- package/dist/esm/tooltip/Context.d.ts +0 -11
- package/dist/esm/tooltip/Context.js +0 -1
- package/dist/esm/tooltip/Crosshair.d.ts +0 -56
- package/dist/esm/tooltip/Crosshair.js +0 -138
- package/dist/esm/tooltip/CrosshairContainer.d.ts +0 -61
- package/dist/esm/tooltip/CrosshairContainer.js +0 -78
- package/dist/esm/tooltip/Point.d.ts +0 -68
- package/dist/esm/tooltip/Point.js +0 -35
- package/dist/esm/tooltip/Popup.d.ts +0 -54
- package/dist/esm/tooltip/Popup.js +0 -160
- package/dist/esm/tooltip/Series.d.ts +0 -51
- package/dist/esm/tooltip/Series.js +0 -232
- package/dist/esm/tooltip/SharedTooltipContent.d.ts +0 -42
- package/dist/esm/tooltip/SharedTooltipContent.js +0 -68
- package/dist/esm/tooltip/main.d.ts +0 -3
- package/dist/esm/tooltip/main.js +0 -2
- package/dist/esm/utils/main.d.ts +0 -17
- package/dist/esm/utils/main.js +0 -63
- package/dist/npm/BaseChart.d.ts +0 -59
- package/dist/npm/BaseChart.js +0 -468
- package/dist/npm/BaseChartProps.d.ts +0 -183
- package/dist/npm/BaseChartProps.js +0 -3
- package/dist/npm/Chart.d.ts +0 -52
- package/dist/npm/Chart.js +0 -221
- package/dist/npm/ChartContext.d.ts +0 -14
- package/dist/npm/ChartContext.js +0 -8
- package/dist/npm/ChartProps.d.ts +0 -10
- package/dist/npm/ChartProps.js +0 -2
- package/dist/npm/DonutCenter.d.ts +0 -60
- package/dist/npm/DonutCenter.js +0 -101
- package/dist/npm/Sparkline.d.ts +0 -47
- package/dist/npm/Sparkline.js +0 -200
- package/dist/npm/SparklineProps.d.ts +0 -14
- package/dist/npm/SparklineProps.js +0 -2
- package/dist/npm/StockChart.d.ts +0 -47
- package/dist/npm/StockChart.js +0 -209
- package/dist/npm/StockChartProps.d.ts +0 -15
- package/dist/npm/StockChartProps.js +0 -3
- package/dist/npm/additionalTypes.ts +0 -21
- package/dist/npm/api-types/axis-range.interface.d.ts +0 -13
- package/dist/npm/api-types/axis-range.interface.js +0 -2
- package/dist/npm/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/npm/api-types/chart-axis.interface.js +0 -3
- package/dist/npm/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/npm/api-types/chart-pane.interface.js +0 -2
- package/dist/npm/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/npm/api-types/chart-plotarea.interface.js +0 -2
- package/dist/npm/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/npm/api-types/event-axis-options.interface.js +0 -2
- package/dist/npm/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/npm/api-types/event-series-options.interface.js +0 -2
- package/dist/npm/api-types/series-point.interface.d.ts +0 -38
- package/dist/npm/api-types/series-point.interface.js +0 -3
- package/dist/npm/argument-types/axis-label-visual-args.interface.d.ts +0 -42
- package/dist/npm/argument-types/axis-label-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/axis-note-visual-args.interface.d.ts +0 -26
- package/dist/npm/argument-types/axis-note-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/error-bars-visual-args.interface.d.ts +0 -30
- package/dist/npm/argument-types/error-bars-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/npm/argument-types/highlight-toggle-args.interface.js +0 -2
- package/dist/npm/argument-types/highlight-visual-args.interface.d.ts +0 -50
- package/dist/npm/argument-types/highlight-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/legend-item-visual-args.interface.d.ts +0 -26
- package/dist/npm/argument-types/legend-item-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/npm/argument-types/legend-labels-content-args.interface.js +0 -3
- package/dist/npm/argument-types/markers-visual-args.interface.d.ts +0 -38
- package/dist/npm/argument-types/markers-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.d.ts +0 -26
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-labels-visual-args.interface.d.ts +0 -26
- package/dist/npm/argument-types/series-labels-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-note-visual-args.interface.d.ts +0 -42
- package/dist/npm/argument-types/series-note-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-visual-args.interface.d.ts +0 -75
- package/dist/npm/argument-types/series-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/title-visual-args.interface.d.ts +0 -26
- package/dist/npm/argument-types/title-visual-args.interface.js +0 -2
- package/dist/npm/common/api-types.d.ts +0 -7
- package/dist/npm/common/api-types.js +0 -2
- package/dist/npm/common/charts.d.ts +0 -5
- package/dist/npm/common/charts.js +0 -2
- package/dist/npm/common/events.d.ts +0 -20
- package/dist/npm/common/events.js +0 -44
- package/dist/npm/common/property-types.d.ts +0 -130
- package/dist/npm/common/property-types.js +0 -5
- package/dist/npm/components/AxisDefaults.d.ts +0 -20
- package/dist/npm/components/AxisDefaults.js +0 -133
- package/dist/npm/components/CategoryAxis.d.ts +0 -14
- package/dist/npm/components/CategoryAxis.js +0 -47
- package/dist/npm/components/CategoryAxisItem.d.ts +0 -20
- package/dist/npm/components/CategoryAxisItem.js +0 -245
- package/dist/npm/components/ChartArea.d.ts +0 -20
- package/dist/npm/components/ChartArea.js +0 -79
- package/dist/npm/components/Legend.d.ts +0 -20
- package/dist/npm/components/Legend.js +0 -152
- package/dist/npm/components/Navigator.d.ts +0 -20
- package/dist/npm/components/Navigator.js +0 -85
- package/dist/npm/components/Pane.d.ts +0 -20
- package/dist/npm/components/Pane.js +0 -89
- package/dist/npm/components/PaneDefaults.d.ts +0 -20
- package/dist/npm/components/PaneDefaults.js +0 -91
- package/dist/npm/components/Panes.d.ts +0 -14
- package/dist/npm/components/Panes.js +0 -47
- package/dist/npm/components/PlotArea.d.ts +0 -20
- package/dist/npm/components/PlotArea.js +0 -77
- package/dist/npm/components/Series.d.ts +0 -14
- package/dist/npm/components/Series.js +0 -47
- package/dist/npm/components/SeriesDefaults.d.ts +0 -20
- package/dist/npm/components/SeriesDefaults.js +0 -102
- package/dist/npm/components/SeriesItem.d.ts +0 -17
- package/dist/npm/components/SeriesItem.js +0 -295
- package/dist/npm/components/Title.d.ts +0 -20
- package/dist/npm/components/Title.js +0 -107
- package/dist/npm/components/Tooltip.d.ts +0 -21
- package/dist/npm/components/Tooltip.js +0 -109
- package/dist/npm/components/ValueAxis.d.ts +0 -14
- package/dist/npm/components/ValueAxis.js +0 -47
- package/dist/npm/components/ValueAxisItem.d.ts +0 -20
- package/dist/npm/components/ValueAxisItem.js +0 -178
- package/dist/npm/components/XAxis.d.ts +0 -14
- package/dist/npm/components/XAxis.js +0 -47
- package/dist/npm/components/XAxisItem.d.ts +0 -20
- package/dist/npm/components/XAxisItem.js +0 -191
- package/dist/npm/components/YAxis.d.ts +0 -14
- package/dist/npm/components/YAxis.js +0 -47
- package/dist/npm/components/YAxisItem.d.ts +0 -20
- package/dist/npm/components/YAxisItem.js +0 -187
- package/dist/npm/components/Zoomable.d.ts +0 -20
- package/dist/npm/components/Zoomable.js +0 -63
- package/dist/npm/components/axis-defaults/Crosshair.d.ts +0 -20
- package/dist/npm/components/axis-defaults/Crosshair.js +0 -73
- package/dist/npm/components/axis-defaults/CrosshairTooltip.d.ts +0 -20
- package/dist/npm/components/axis-defaults/CrosshairTooltip.js +0 -71
- package/dist/npm/components/axis-defaults/Labels.d.ts +0 -20
- package/dist/npm/components/axis-defaults/Labels.js +0 -86
- package/dist/npm/components/axis-defaults/Title.d.ts +0 -20
- package/dist/npm/components/axis-defaults/Title.js +0 -89
- package/dist/npm/components/axis-defaults/main.d.ts +0 -5
- package/dist/npm/components/axis-defaults/main.js +0 -15
- package/dist/npm/components/base/CollectionConfigurationComponent.d.ts +0 -53
- package/dist/npm/components/base/CollectionConfigurationComponent.js +0 -88
- package/dist/npm/components/base/ConfigurationComponent.d.ts +0 -55
- package/dist/npm/components/base/ConfigurationComponent.js +0 -186
- package/dist/npm/components/category-axis-item/Crosshair.d.ts +0 -20
- package/dist/npm/components/category-axis-item/Crosshair.js +0 -73
- package/dist/npm/components/category-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/npm/components/category-axis-item/CrosshairTooltip.js +0 -71
- package/dist/npm/components/category-axis-item/Labels.d.ts +0 -20
- package/dist/npm/components/category-axis-item/Labels.js +0 -111
- package/dist/npm/components/category-axis-item/Notes.d.ts +0 -20
- package/dist/npm/components/category-axis-item/Notes.js +0 -88
- package/dist/npm/components/category-axis-item/NotesIcon.d.ts +0 -20
- package/dist/npm/components/category-axis-item/NotesIcon.js +0 -72
- package/dist/npm/components/category-axis-item/NotesLabel.d.ts +0 -20
- package/dist/npm/components/category-axis-item/NotesLabel.js +0 -77
- package/dist/npm/components/category-axis-item/RangeLabels.d.ts +0 -20
- package/dist/npm/components/category-axis-item/RangeLabels.js +0 -64
- package/dist/npm/components/category-axis-item/Select.d.ts +0 -20
- package/dist/npm/components/category-axis-item/Select.js +0 -81
- package/dist/npm/components/category-axis-item/Title.d.ts +0 -20
- package/dist/npm/components/category-axis-item/Title.js +0 -89
- package/dist/npm/components/category-axis-item/main.d.ts +0 -10
- package/dist/npm/components/category-axis-item/main.js +0 -30
- package/dist/npm/components/legend/InactiveItems.d.ts +0 -20
- package/dist/npm/components/legend/InactiveItems.js +0 -57
- package/dist/npm/components/legend/Item.d.ts +0 -20
- package/dist/npm/components/legend/Item.js +0 -89
- package/dist/npm/components/legend/Title.d.ts +0 -20
- package/dist/npm/components/legend/Title.js +0 -99
- package/dist/npm/components/legend/main.d.ts +0 -4
- package/dist/npm/components/legend/main.js +0 -12
- package/dist/npm/components/main.d.ts +0 -34
- package/dist/npm/components/main.js +0 -94
- package/dist/npm/components/navigator/CategoryAxis.d.ts +0 -20
- package/dist/npm/components/navigator/CategoryAxis.js +0 -235
- package/dist/npm/components/navigator/Hint.d.ts +0 -20
- package/dist/npm/components/navigator/Hint.js +0 -60
- package/dist/npm/components/navigator/Pane.d.ts +0 -20
- package/dist/npm/components/navigator/Pane.js +0 -91
- package/dist/npm/components/navigator/Select.d.ts +0 -20
- package/dist/npm/components/navigator/Select.js +0 -69
- package/dist/npm/components/navigator/Series.d.ts +0 -14
- package/dist/npm/components/navigator/Series.js +0 -49
- package/dist/npm/components/navigator/SeriesItem.d.ts +0 -20
- package/dist/npm/components/navigator/SeriesItem.js +0 -273
- package/dist/npm/components/navigator/category-axis/Crosshair.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/Crosshair.js +0 -73
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.js +0 -71
- package/dist/npm/components/navigator/category-axis/Labels.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/Labels.js +0 -111
- package/dist/npm/components/navigator/category-axis/Notes.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/Notes.js +0 -88
- package/dist/npm/components/navigator/category-axis/NotesIcon.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/NotesIcon.js +0 -72
- package/dist/npm/components/navigator/category-axis/NotesLabel.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/NotesLabel.js +0 -77
- package/dist/npm/components/navigator/category-axis/Select.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/Select.js +0 -81
- package/dist/npm/components/navigator/category-axis/Title.d.ts +0 -20
- package/dist/npm/components/navigator/category-axis/Title.js +0 -89
- package/dist/npm/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/main.js +0 -27
- package/dist/npm/components/navigator/main.d.ts +0 -10
- package/dist/npm/components/navigator/main.js +0 -38
- package/dist/npm/components/navigator/pane/Title.d.ts +0 -20
- package/dist/npm/components/navigator/pane/Title.js +0 -84
- package/dist/npm/components/navigator/pane/main.d.ts +0 -2
- package/dist/npm/components/navigator/pane/main.js +0 -6
- package/dist/npm/components/navigator/series-item/ErrorBars.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/ErrorBars.js +0 -69
- package/dist/npm/components/navigator/series-item/Extremes.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/Extremes.js +0 -69
- package/dist/npm/components/navigator/series-item/Highlight.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/Highlight.js +0 -77
- package/dist/npm/components/navigator/series-item/Labels.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/Labels.js +0 -114
- package/dist/npm/components/navigator/series-item/LabelsFrom.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/LabelsFrom.js +0 -90
- package/dist/npm/components/navigator/series-item/LabelsTo.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/LabelsTo.js +0 -90
- package/dist/npm/components/navigator/series-item/Markers.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/Markers.js +0 -89
- package/dist/npm/components/navigator/series-item/Notes.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/Notes.js +0 -82
- package/dist/npm/components/navigator/series-item/NotesIcon.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/NotesIcon.js +0 -72
- package/dist/npm/components/navigator/series-item/NotesLabel.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/NotesLabel.js +0 -77
- package/dist/npm/components/navigator/series-item/Outliers.d.ts +0 -20
- package/dist/npm/components/navigator/series-item/Outliers.js +0 -69
- package/dist/npm/components/navigator/series-item/Tooltip.d.ts +0 -21
- package/dist/npm/components/navigator/series-item/Tooltip.js +0 -89
- package/dist/npm/components/navigator/series-item/main.d.ts +0 -13
- package/dist/npm/components/navigator/series-item/main.js +0 -39
- package/dist/npm/components/pane/Title.d.ts +0 -20
- package/dist/npm/components/pane/Title.js +0 -84
- package/dist/npm/components/pane/main.d.ts +0 -2
- package/dist/npm/components/pane/main.js +0 -6
- package/dist/npm/components/pane-defaults/Title.d.ts +0 -20
- package/dist/npm/components/pane-defaults/Title.js +0 -83
- package/dist/npm/components/pane-defaults/main.d.ts +0 -2
- package/dist/npm/components/pane-defaults/main.js +0 -6
- package/dist/npm/components/series-defaults/Labels.d.ts +0 -20
- package/dist/npm/components/series-defaults/Labels.js +0 -97
- package/dist/npm/components/series-defaults/LabelsFrom.d.ts +0 -20
- package/dist/npm/components/series-defaults/LabelsFrom.js +0 -81
- package/dist/npm/components/series-defaults/LabelsTo.d.ts +0 -20
- package/dist/npm/components/series-defaults/LabelsTo.js +0 -81
- package/dist/npm/components/series-defaults/Notes.d.ts +0 -20
- package/dist/npm/components/series-defaults/Notes.js +0 -73
- package/dist/npm/components/series-defaults/NotesIcon.d.ts +0 -20
- package/dist/npm/components/series-defaults/NotesIcon.js +0 -72
- package/dist/npm/components/series-defaults/NotesLabel.d.ts +0 -20
- package/dist/npm/components/series-defaults/NotesLabel.js +0 -77
- package/dist/npm/components/series-defaults/Tooltip.d.ts +0 -21
- package/dist/npm/components/series-defaults/Tooltip.js +0 -89
- package/dist/npm/components/series-defaults/main.d.ts +0 -8
- package/dist/npm/components/series-defaults/main.js +0 -24
- package/dist/npm/components/series-item/ErrorBars.d.ts +0 -20
- package/dist/npm/components/series-item/ErrorBars.js +0 -69
- package/dist/npm/components/series-item/Extremes.d.ts +0 -20
- package/dist/npm/components/series-item/Extremes.js +0 -69
- package/dist/npm/components/series-item/Highlight.d.ts +0 -20
- package/dist/npm/components/series-item/Highlight.js +0 -77
- package/dist/npm/components/series-item/Labels.d.ts +0 -20
- package/dist/npm/components/series-item/Labels.js +0 -114
- package/dist/npm/components/series-item/LabelsFrom.d.ts +0 -20
- package/dist/npm/components/series-item/LabelsFrom.js +0 -90
- package/dist/npm/components/series-item/LabelsTo.d.ts +0 -20
- package/dist/npm/components/series-item/LabelsTo.js +0 -90
- package/dist/npm/components/series-item/Markers.d.ts +0 -20
- package/dist/npm/components/series-item/Markers.js +0 -89
- package/dist/npm/components/series-item/Notes.d.ts +0 -20
- package/dist/npm/components/series-item/Notes.js +0 -82
- package/dist/npm/components/series-item/NotesIcon.d.ts +0 -20
- package/dist/npm/components/series-item/NotesIcon.js +0 -72
- package/dist/npm/components/series-item/NotesLabel.d.ts +0 -20
- package/dist/npm/components/series-item/NotesLabel.js +0 -77
- package/dist/npm/components/series-item/Outliers.d.ts +0 -20
- package/dist/npm/components/series-item/Outliers.js +0 -69
- package/dist/npm/components/series-item/Tooltip.d.ts +0 -21
- package/dist/npm/components/series-item/Tooltip.js +0 -89
- package/dist/npm/components/series-item/main.d.ts +0 -13
- package/dist/npm/components/series-item/main.js +0 -39
- package/dist/npm/components/value-axis-item/Crosshair.d.ts +0 -20
- package/dist/npm/components/value-axis-item/Crosshair.js +0 -64
- package/dist/npm/components/value-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/npm/components/value-axis-item/CrosshairTooltip.js +0 -71
- package/dist/npm/components/value-axis-item/Labels.d.ts +0 -20
- package/dist/npm/components/value-axis-item/Labels.js +0 -97
- package/dist/npm/components/value-axis-item/Notes.d.ts +0 -20
- package/dist/npm/components/value-axis-item/Notes.js +0 -88
- package/dist/npm/components/value-axis-item/NotesIcon.d.ts +0 -20
- package/dist/npm/components/value-axis-item/NotesIcon.js +0 -72
- package/dist/npm/components/value-axis-item/NotesLabel.d.ts +0 -20
- package/dist/npm/components/value-axis-item/NotesLabel.js +0 -77
- package/dist/npm/components/value-axis-item/Title.d.ts +0 -20
- package/dist/npm/components/value-axis-item/Title.js +0 -89
- package/dist/npm/components/value-axis-item/main.d.ts +0 -8
- package/dist/npm/components/value-axis-item/main.js +0 -24
- package/dist/npm/components/x-axis-item/Crosshair.d.ts +0 -20
- package/dist/npm/components/x-axis-item/Crosshair.js +0 -64
- package/dist/npm/components/x-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/npm/components/x-axis-item/CrosshairTooltip.js +0 -71
- package/dist/npm/components/x-axis-item/Labels.d.ts +0 -20
- package/dist/npm/components/x-axis-item/Labels.js +0 -104
- package/dist/npm/components/x-axis-item/Notes.d.ts +0 -20
- package/dist/npm/components/x-axis-item/Notes.js +0 -88
- package/dist/npm/components/x-axis-item/NotesIcon.d.ts +0 -20
- package/dist/npm/components/x-axis-item/NotesIcon.js +0 -72
- package/dist/npm/components/x-axis-item/NotesLabel.d.ts +0 -20
- package/dist/npm/components/x-axis-item/NotesLabel.js +0 -77
- package/dist/npm/components/x-axis-item/Title.d.ts +0 -20
- package/dist/npm/components/x-axis-item/Title.js +0 -89
- package/dist/npm/components/x-axis-item/main.d.ts +0 -8
- package/dist/npm/components/x-axis-item/main.js +0 -24
- package/dist/npm/components/y-axis-item/Crosshair.d.ts +0 -20
- package/dist/npm/components/y-axis-item/Crosshair.js +0 -64
- package/dist/npm/components/y-axis-item/CrosshairTooltip.d.ts +0 -20
- package/dist/npm/components/y-axis-item/CrosshairTooltip.js +0 -71
- package/dist/npm/components/y-axis-item/Labels.d.ts +0 -20
- package/dist/npm/components/y-axis-item/Labels.js +0 -104
- package/dist/npm/components/y-axis-item/Notes.d.ts +0 -20
- package/dist/npm/components/y-axis-item/Notes.js +0 -88
- package/dist/npm/components/y-axis-item/NotesIcon.d.ts +0 -20
- package/dist/npm/components/y-axis-item/NotesIcon.js +0 -72
- package/dist/npm/components/y-axis-item/NotesLabel.d.ts +0 -20
- package/dist/npm/components/y-axis-item/NotesLabel.js +0 -77
- package/dist/npm/components/y-axis-item/Title.d.ts +0 -20
- package/dist/npm/components/y-axis-item/Title.js +0 -89
- package/dist/npm/components/y-axis-item/main.d.ts +0 -8
- package/dist/npm/components/y-axis-item/main.js +0 -24
- package/dist/npm/defaults.d.ts +0 -1
- package/dist/npm/defaults.js +0 -17
- package/dist/npm/events/axis-label-click-event.d.ts +0 -32
- package/dist/npm/events/axis-label-click-event.js +0 -41
- package/dist/npm/events/base-event.d.ts +0 -14
- package/dist/npm/events/base-event.js +0 -16
- package/dist/npm/events/chart-event-builder.d.ts +0 -6
- package/dist/npm/events/chart-event-builder.js +0 -56
- package/dist/npm/events/dom-event.d.ts +0 -19
- package/dist/npm/events/dom-event.js +0 -21
- package/dist/npm/events/drag-end-event.d.ts +0 -22
- package/dist/npm/events/drag-end-event.js +0 -38
- package/dist/npm/events/drag-event.d.ts +0 -22
- package/dist/npm/events/drag-event.js +0 -36
- package/dist/npm/events/drag-start-event.d.ts +0 -22
- package/dist/npm/events/drag-start-event.js +0 -36
- package/dist/npm/events/legend-item-click-event.d.ts +0 -32
- package/dist/npm/events/legend-item-click-event.js +0 -44
- package/dist/npm/events/legend-item-hover-event.d.ts +0 -32
- package/dist/npm/events/legend-item-hover-event.js +0 -44
- package/dist/npm/events/legend-item-leave-event.d.ts +0 -32
- package/dist/npm/events/legend-item-leave-event.js +0 -44
- package/dist/npm/events/navigator-filter-event.d.ts +0 -19
- package/dist/npm/events/navigator-filter-event.js +0 -36
- package/dist/npm/events/note-click-event.d.ts +0 -32
- package/dist/npm/events/note-click-event.js +0 -39
- package/dist/npm/events/note-hover-event.d.ts +0 -32
- package/dist/npm/events/note-hover-event.js +0 -39
- package/dist/npm/events/plot-area-click-event.d.ts +0 -31
- package/dist/npm/events/plot-area-click-event.js +0 -39
- package/dist/npm/events/plot-area-hover-event.d.ts +0 -31
- package/dist/npm/events/plot-area-hover-event.js +0 -39
- package/dist/npm/events/preventable-event.d.ts +0 -18
- package/dist/npm/events/preventable-event.js +0 -49
- package/dist/npm/events/render-event.d.ts +0 -11
- package/dist/npm/events/render-event.js +0 -33
- package/dist/npm/events/select-end-event.d.ts +0 -24
- package/dist/npm/events/select-end-event.js +0 -37
- package/dist/npm/events/select-event.d.ts +0 -24
- package/dist/npm/events/select-event.js +0 -37
- package/dist/npm/events/select-start-event.d.ts +0 -24
- package/dist/npm/events/select-start-event.js +0 -37
- package/dist/npm/events/series-click-event.d.ts +0 -45
- package/dist/npm/events/series-click-event.js +0 -44
- package/dist/npm/events/series-hover-event.d.ts +0 -49
- package/dist/npm/events/series-hover-event.js +0 -45
- package/dist/npm/events/zoom-end-event.d.ts +0 -24
- package/dist/npm/events/zoom-end-event.js +0 -38
- package/dist/npm/events/zoom-event.d.ts +0 -28
- package/dist/npm/events/zoom-event.js +0 -39
- package/dist/npm/events/zoom-start-event.d.ts +0 -22
- package/dist/npm/events/zoom-start-event.js +0 -38
- package/dist/npm/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/npm/field-types/auto-base-unit-steps.interface.js +0 -2
- package/dist/npm/field-types/axis-labels-position.d.ts +0 -15
- package/dist/npm/field-types/axis-labels-position.js +0 -2
- package/dist/npm/field-types/axis-line.interface.d.ts +0 -22
- package/dist/npm/field-types/axis-line.interface.js +0 -3
- package/dist/npm/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/npm/field-types/axis-ticks.interface.js +0 -3
- package/dist/npm/field-types/axis-title-position.d.ts +0 -14
- package/dist/npm/field-types/axis-title-position.js +0 -2
- package/dist/npm/field-types/base-unit.d.ts +0 -16
- package/dist/npm/field-types/base-unit.js +0 -2
- package/dist/npm/field-types/border.interface.d.ts +0 -18
- package/dist/npm/field-types/border.interface.js +0 -3
- package/dist/npm/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/npm/field-types/bullet-target-line.interface.js +0 -2
- package/dist/npm/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/npm/field-types/bullet-target.interface.js +0 -3
- package/dist/npm/field-types/category-base-unit.d.ts +0 -47
- package/dist/npm/field-types/category-base-unit.js +0 -2
- package/dist/npm/field-types/dash-type.d.ts +0 -35
- package/dist/npm/field-types/dash-type.js +0 -2
- package/dist/npm/field-types/date-formats.interface.d.ts +0 -39
- package/dist/npm/field-types/date-formats.interface.js +0 -3
- package/dist/npm/field-types/drag-action.interface.d.ts +0 -15
- package/dist/npm/field-types/drag-action.interface.js +0 -2
- package/dist/npm/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/npm/field-types/error-bar-line.interface.js +0 -2
- package/dist/npm/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/npm/field-types/grid-lines.interface.js +0 -3
- package/dist/npm/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/npm/field-types/highlight-line.interface.js +0 -3
- package/dist/npm/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/npm/field-types/label-connectors.interface.js +0 -2
- package/dist/npm/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/npm/field-types/label-rotation.interface.js +0 -3
- package/dist/npm/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/npm/field-types/legend-labels.interface.js +0 -3
- package/dist/npm/field-types/line-style.d.ts +0 -35
- package/dist/npm/field-types/line-style.js +0 -2
- package/dist/npm/field-types/lock-axis.d.ts +0 -4
- package/dist/npm/field-types/lock-axis.js +0 -2
- package/dist/npm/field-types/margin.interface.d.ts +0 -21
- package/dist/npm/field-types/margin.interface.js +0 -2
- package/dist/npm/field-types/marker-type.d.ts +0 -36
- package/dist/npm/field-types/marker-type.js +0 -2
- package/dist/npm/field-types/modifier-key.d.ts +0 -4
- package/dist/npm/field-types/modifier-key.js +0 -2
- package/dist/npm/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/npm/field-types/mousewheel-select.interface.js +0 -3
- package/dist/npm/field-types/mousewheel-zoom.interface.d.ts +0 -10
- package/dist/npm/field-types/mousewheel-zoom.interface.js +0 -2
- package/dist/npm/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/npm/field-types/negative-bubble-values.interface.js +0 -3
- package/dist/npm/field-types/note-label-position.d.ts +0 -41
- package/dist/npm/field-types/note-label-position.js +0 -2
- package/dist/npm/field-types/note-line.interface.d.ts +0 -22
- package/dist/npm/field-types/note-line.interface.js +0 -2
- package/dist/npm/field-types/note-position.d.ts +0 -41
- package/dist/npm/field-types/note-position.js +0 -2
- package/dist/npm/field-types/overlay.interface.d.ts +0 -15
- package/dist/npm/field-types/overlay.interface.js +0 -2
- package/dist/npm/field-types/padding.interface.d.ts +0 -6
- package/dist/npm/field-types/padding.interface.js +0 -2
- package/dist/npm/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/npm/field-types/plot-band-label.interface.js +0 -2
- package/dist/npm/field-types/plot-band.interface.d.ts +0 -30
- package/dist/npm/field-types/plot-band.interface.js +0 -2
- package/dist/npm/field-types/series-labels-position.d.ts +0 -16
- package/dist/npm/field-types/series-labels-position.js +0 -19
- package/dist/npm/field-types/series-line.interface.d.ts +0 -28
- package/dist/npm/field-types/series-line.interface.js +0 -3
- package/dist/npm/field-types/series-stack.interface.d.ts +0 -17
- package/dist/npm/field-types/series-stack.interface.js +0 -3
- package/dist/npm/field-types/series-type.d.ts +0 -78
- package/dist/npm/field-types/series-type.js +0 -2
- package/dist/npm/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/npm/field-types/trendline-forecast.interface.js +0 -2
- package/dist/npm/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/npm/field-types/week-start-day.enum.js +0 -37
- package/dist/npm/main.d.ts +0 -14
- package/dist/npm/main.js +0 -33
- package/dist/npm/methods/main.d.ts +0 -36
- package/dist/npm/methods/main.js +0 -56
- package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/npm/option-types/axis-defaults/crosshair.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/npm/option-types/axis-defaults/labels.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/npm/option-types/axis-defaults/title.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/npm/option-types/axis-defaults.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/npm/option-types/category-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/npm/option-types/category-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/category-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/category-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/npm/option-types/category-axis-item/range-labels.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/npm/option-types/category-axis-item/select.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/npm/option-types/category-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/npm/option-types/category-axis-item.interface.js +0 -3
- package/dist/npm/option-types/chart-area.interface.d.ts +0 -30
- package/dist/npm/option-types/chart-area.interface.js +0 -2
- package/dist/npm/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/npm/option-types/legend/inactive-items.interface.js +0 -2
- package/dist/npm/option-types/legend/item.interface.d.ts +0 -117
- package/dist/npm/option-types/legend/item.interface.js +0 -2
- package/dist/npm/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/npm/option-types/legend/legend-title.interface.js +0 -2
- package/dist/npm/option-types/legend.interface.d.ts +0 -98
- package/dist/npm/option-types/legend.interface.js +0 -3
- package/dist/npm/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/npm/option-types/navigator/hint.interface.js +0 -2
- package/dist/npm/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/npm/option-types/navigator/select.interface.js +0 -2
- package/dist/npm/option-types/navigator.interface.d.ts +0 -32
- package/dist/npm/option-types/navigator.interface.js +0 -3
- package/dist/npm/option-types/pane/title.interface.d.ts +0 -56
- package/dist/npm/option-types/pane/title.interface.js +0 -3
- package/dist/npm/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/npm/option-types/pane-defaults/title.interface.js +0 -3
- package/dist/npm/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/npm/option-types/pane-defaults.interface.js +0 -3
- package/dist/npm/option-types/pane.interface.d.ts +0 -39
- package/dist/npm/option-types/pane.interface.js +0 -3
- package/dist/npm/option-types/plot-area.interface.d.ts +0 -26
- package/dist/npm/option-types/plot-area.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/npm/option-types/series-defaults/labels.from.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/npm/option-types/series-defaults/labels.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/npm/option-types/series-defaults/labels.to.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/series-defaults/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/npm/option-types/series-defaults/notes.interface.js +0 -2
- package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/series-defaults/notes.label.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/npm/option-types/series-defaults/tooltip.interface.js +0 -3
- package/dist/npm/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/npm/option-types/series-defaults.interface.js +0 -3
- package/dist/npm/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/npm/option-types/series-item/error-bars.interface.js +0 -3
- package/dist/npm/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/extremes.interface.js +0 -2
- package/dist/npm/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/npm/option-types/series-item/highlight.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/npm/option-types/series-item/labels.from.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/npm/option-types/series-item/labels.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/npm/option-types/series-item/labels.to.interface.js +0 -3
- package/dist/npm/option-types/series-item/markers.interface.d.ts +0 -59
- package/dist/npm/option-types/series-item/markers.interface.js +0 -3
- package/dist/npm/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/npm/option-types/series-item/notes.interface.js +0 -2
- package/dist/npm/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/series-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/outliers.interface.js +0 -2
- package/dist/npm/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/npm/option-types/series-item/tooltip.interface.js +0 -3
- package/dist/npm/option-types/series-item/trendline.interface.d.ts +0 -30
- package/dist/npm/option-types/series-item/trendline.interface.js +0 -2
- package/dist/npm/option-types/series-item.interface.d.ts +0 -466
- package/dist/npm/option-types/series-item.interface.js +0 -3
- package/dist/npm/option-types/title.interface.d.ts +0 -55
- package/dist/npm/option-types/title.interface.js +0 -3
- package/dist/npm/option-types/tooltip.interface.d.ts +0 -48
- package/dist/npm/option-types/tooltip.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/value-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/npm/option-types/value-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/value-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/value-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/npm/option-types/value-axis-item/title.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/npm/option-types/value-axis-item.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/x-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/npm/option-types/x-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/npm/option-types/x-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/x-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/npm/option-types/x-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item.interface.d.ts +0 -131
- package/dist/npm/option-types/x-axis-item.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/y-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/npm/option-types/y-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/y-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/y-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/npm/option-types/y-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item.interface.d.ts +0 -127
- package/dist/npm/option-types/y-axis-item.interface.js +0 -3
- package/dist/npm/option-types/zoomable.interface.d.ts +0 -14
- package/dist/npm/option-types/zoomable.interface.js +0 -2
- package/dist/npm/package-metadata.d.ts +0 -5
- package/dist/npm/package-metadata.js +0 -14
- package/dist/npm/sankey/Sankey.d.ts +0 -62
- package/dist/npm/sankey/Sankey.js +0 -270
- package/dist/npm/sankey/main.d.ts +0 -4
- package/dist/npm/sankey/main.js +0 -7
- package/dist/npm/sankey/messages.d.ts +0 -10
- package/dist/npm/sankey/messages.js +0 -14
- package/dist/npm/sankey/theme-service.d.ts +0 -5
- package/dist/npm/sankey/theme-service.js +0 -109
- package/dist/npm/sankey/tooltip.d.ts +0 -61
- package/dist/npm/sankey/tooltip.js +0 -331
- package/dist/npm/sankey/types.d.ts +0 -175
- package/dist/npm/sankey/types.js +0 -2
- package/dist/npm/sankey/utils.d.ts +0 -5
- package/dist/npm/sankey/utils.js +0 -8
- package/dist/npm/store/reducer.d.ts +0 -14
- package/dist/npm/store/reducer.js +0 -140
- package/dist/npm/store/store.d.ts +0 -26
- package/dist/npm/store/store.js +0 -31
- package/dist/npm/theming/theme-service.d.ts +0 -3
- package/dist/npm/theming/theme-service.js +0 -150
- package/dist/npm/tooltip/Context.d.ts +0 -11
- package/dist/npm/tooltip/Context.js +0 -2
- package/dist/npm/tooltip/Crosshair.d.ts +0 -56
- package/dist/npm/tooltip/Crosshair.js +0 -145
- package/dist/npm/tooltip/CrosshairContainer.d.ts +0 -61
- package/dist/npm/tooltip/CrosshairContainer.js +0 -85
- package/dist/npm/tooltip/Point.d.ts +0 -68
- package/dist/npm/tooltip/Point.js +0 -38
- package/dist/npm/tooltip/Popup.d.ts +0 -54
- package/dist/npm/tooltip/Popup.js +0 -167
- package/dist/npm/tooltip/Series.d.ts +0 -51
- package/dist/npm/tooltip/Series.js +0 -239
- package/dist/npm/tooltip/SharedTooltipContent.d.ts +0 -42
- package/dist/npm/tooltip/SharedTooltipContent.js +0 -75
- package/dist/npm/tooltip/main.d.ts +0 -3
- package/dist/npm/tooltip/main.js +0 -5
- package/dist/npm/utils/main.d.ts +0 -17
- package/dist/npm/utils/main.js +0 -69
|
@@ -1 +1,8 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("vue"),require("@progress/kendo-vue-intl"),require("@progress/kendo-drawing"),require("@progress/kendo-licensing")):"function"==typeof define&&define.amd?define(["vue","@progress/kendo-vue-intl","@progress/kendo-drawing","@progress/kendo-licensing"],e):"object"==typeof exports?exports.KendoVueCharts=e(require("vue"),require("@progress/kendo-vue-intl"),require("@progress/kendo-drawing"),require("@progress/kendo-licensing")):t.KendoVueCharts=e(t.Vue,t.KendoVueIntl,t.KendoDrawing,t.KendoLicensing)}(self,(function(t,e,o,r){return(()=>{"use strict";var n={5379:(t,e,o)=>{o.r(e),o.d(e,{accessibilityIcon:()=>sr,aggregateFieldsIcon:()=>jl,alignBottomIcon:()=>ra,alignCenterIcon:()=>ia,alignItemsBaselineAltIcon:()=>yi,alignItemsBaselineIcon:()=>di,alignItemsCenterAltIcon:()=>fi,alignItemsCenterIcon:()=>hi,alignItemsEndAltIcon:()=>mi,alignItemsEndIcon:()=>ui,alignItemsStartAltIcon:()=>vi,alignItemsStartIcon:()=>li,alignItemsStretchAltIcon:()=>gi,alignItemsStretchIcon:()=>pi,alignJustifyIcon:()=>sa,alignLeftIcon:()=>na,alignMiddleIcon:()=>oa,alignRemoveIcon:()=>ca,alignRightIcon:()=>aa,alignSelfCenterAltIcon:()=>Hn,alignSelfCenterIcon:()=>An,alignSelfEndAltIcon:()=>In,alignSelfEndIcon:()=>jn,alignSelfStartAltIcon:()=>kn,alignSelfStartIcon:()=>Vn,alignSelfStretchAltIcon:()=>ci,alignSelfStretchIcon:()=>si,alignToGridIcon:()=>Un,alignTopIcon:()=>ea,allIcon:()=>Ri,anchorIcon:()=>Es,applyFormatIcon:()=>Cs,arrowDownIcon:()=>P,arrowLeftIcon:()=>V,arrowOverflowDownIcon:()=>w,arrowRightIcon:()=>M,arrowRotateCcwIcon:()=>Te,arrowRotateCcwSmallIcon:()=>Ne,arrowRotateCwIcon:()=>Ee,arrowRotateCwSmallIcon:()=>Re,arrowUpIcon:()=>z,arrowsAxesIcon:()=>I,arrowsLeftRightIcon:()=>ot,arrowsMoveIcon:()=>Xo,arrowsNoChangeIcon:()=>x,arrowsNoRepeatIcon:()=>De,arrowsSwapIcon:()=>B,arrowsTopBottomIcon:()=>rt,barcodeIcon:()=>lr,barcodeOutlineIcon:()=>cr,barcodeQrCodeScannerIcon:()=>vr,barcodeScannerIcon:()=>hr,behanceBoxIcon:()=>gl,behanceIcon:()=>ml,bellIcon:()=>Gr,binocularsIcon:()=>ds,bloggerBoxIcon:()=>Dc,bloggerIcon:()=>Ec,blurIcon:()=>wn,boldIcon:()=>Ai,bookIcon:()=>os,borderBottomIcon:()=>Ma,borderColorIcon:()=>Se,borderLeftIcon:()=>Pa,borderRadiusBottomLeftIcon:()=>nt,borderRadiusBottomRightIcon:()=>it,borderRadiusIcon:()=>ct,borderRadiusTopLeftIcon:()=>at,borderRadiusTopRightIcon:()=>st,borderRightIcon:()=>Va,borderStyleBottomIcon:()=>lt,borderStyleIcon:()=>dt,borderStyleLeftIcon:()=>ht,borderStyleRightIcon:()=>ut,borderStyleTopIcon:()=>pt,borderTopIcon:()=>za,borderTypeIcon:()=>ze,bordersAllIcon:()=>wa,bordersInsideHorizontalIcon:()=>Oa,bordersInsideIcon:()=>Ca,bordersInsideVerticalIcon:()=>Sa,bordersNoneIcon:()=>Aa,bordersOutsideIcon:()=>_a,bordersShowHideIcon:()=>ja,boxSizingIcon:()=>vt,brightnessContrastIcon:()=>mn,bringBackwardIcon:()=>Pn,bringForwardIcon:()=>Mn,bringToBackIcon:()=>zn,bringToFrontIcon:()=>Sn,brushIcon:()=>pn,buildingBlocksIcon:()=>ks,buttonIcon:()=>La,calculatorIcon:()=>Go,calendarDateIcon:()=>Ea,calendarIcon:()=>Ue,cameraIcon:()=>Qr,cancelCircleIcon:()=>no,cancelIcon:()=>oo,cancelOutlineIcon:()=>ro,caretAltDownIcon:()=>l,caretAltExpandIcon:()=>b,caretAltLeftIcon:()=>h,caretAltRightIcon:()=>c,caretAltToBottomIcon:()=>d,caretAltToLeftIcon:()=>v,caretAltToRightIcon:()=>p,caretAltToTopIcon:()=>u,caretAltUpIcon:()=>s,caretBlIcon:()=>i,caretBrIcon:()=>n,caretDoubleAltDownIcon:()=>g,caretDoubleAltLeftIcon:()=>y,caretDoubleAltRightIcon:()=>m,caretDoubleAltUpIcon:()=>f,caretTlIcon:()=>a,caretTrIcon:()=>r,cartIcon:()=>Yo,categorizeIcon:()=>T,cellSplitHorizontallyIcon:()=>ec,cellSplitVerticallyIcon:()=>oc,cellsMergeHorizontallyIcon:()=>Js,cellsMergeIcon:()=>Qs,cellsMergeVerticallyIcon:()=>tc,changeManuallyIcon:()=>Xa,chartAreaClusteredIcon:()=>au,chartAreaRangeIcon:()=>lu,chartAreaStacked100Icon:()=>cu,chartAreaStackedIcon:()=>su,chartBarClusteredIcon:()=>ou,chartBarRangeIcon:()=>iu,chartBarStacked100Icon:()=>nu,chartBarStackedIcon:()=>ru,chartBubbleIcon:()=>Cu,chartCandlestickIcon:()=>Ou,chartChoroplethIcon:()=>Au,chartColumnClusteredIcon:()=>Qh,chartColumnRangeIcon:()=>eu,chartColumnStacked100Icon:()=>tu,chartColumnStackedIcon:()=>Jh,chartDoughnutIcon:()=>gu,chartLineIcon:()=>hu,chartLineMarkersIcon:()=>du,chartLineStacked100Icon:()=>pu,chartLineStacked100MarkersIcon:()=>fu,chartLineStackedIcon:()=>uu,chartLineStackedMarkersIcon:()=>vu,chartOhlcIcon:()=>Su,chartPieIcon:()=>mu,chartRadarFilledIcon:()=>Pu,chartRadarIcon:()=>zu,chartRadarMarkersIcon:()=>Mu,chartRoseIcon:()=>Vu,chartScatterIcon:()=>yu,chartScatterSmoothLinesIcon:()=>xu,chartScatterSmoothLinesMarkersIcon:()=>bu,chartScatterStraightLinesIcon:()=>_u,chartScatterStraightLinesMarkersIcon:()=>wu,checkCircleIcon:()=>so,checkIcon:()=>io,checkOutlineIcon:()=>ao,checkboxCheckedIcon:()=>Fr,checkboxIcon:()=>Rr,checkboxIndeterminateIcon:()=>Ur,checkboxNullIcon:()=>Kr,chevronDoubleDownIcon:()=>ft,chevronDoubleLeftIcon:()=>mt,chevronDoubleRightIcon:()=>gt,chevronDoubleUpIcon:()=>yt,chevronDownIcon:()=>O,chevronLeftIcon:()=>S,chevronRightIcon:()=>C,chevronUpIcon:()=>_,circleIcon:()=>qr,clearCssIcon:()=>Os,clipboardCodeIcon:()=>gs,clipboardHtmlIcon:()=>xs,clipboardIcon:()=>ms,clipboardMarkdownIcon:()=>ws,clipboardTextIcon:()=>_s,clipboardWordAltIcon:()=>bs,clipboardWordIcon:()=>ys,clockArrowRotateIcon:()=>wr,clockIcon:()=>Fe,closedCaptionsIcon:()=>jr,cloudIcon:()=>ih,codeIcon:()=>Wl,codeSnippetIcon:()=>Ia,colResizeIcon:()=>H,columnFreezeIcon:()=>ac,columnsIcon:()=>G,commentIcon:()=>as,commentRemoveIcon:()=>ss,commentsRemoveIcon:()=>cs,connectorIcon:()=>Wo,convertLowercaseIcon:()=>Bi,convertUppercaseIcon:()=>Li,copyFormatIcon:()=>Ss,copyIcon:()=>vs,cropIcon:()=>nn,crosstabIcon:()=>Cc,crosstabWizardIcon:()=>Oc,csIcon:()=>oh,csprojIcon:()=>th,css3Icon:()=>Gl,cssIcon:()=>Zl,customFormatIcon:()=>gc,customIconIcon:()=>es,cutIcon:()=>fs,dataCsvIcon:()=>bh,dataIcon:()=>ch,dataJsonIcon:()=>xh,dataOdsIcon:()=>bt,dataRestIcon:()=>Fh,dataSdsIcon:()=>ae,dataSqlIcon:()=>wh,dataWebIcon:()=>_h,decimalDecreaseIcon:()=>bc,decimalIncreaseIcon:()=>yc,decreaseHorizontalSpacingIcon:()=>Wn,decreaseVerticalSpacingIcon:()=>ti,deliciousBoxIcon:()=>Rc,deliciousIcon:()=>Nc,detailSectionIcon:()=>fh,diggBoxIcon:()=>Uc,diggIcon:()=>Fc,dimensionsIcon:()=>ai,displayBlockIcon:()=>wt,displayFlexIcon:()=>_t,displayInlineBlockIcon:()=>le,displayInlineFlexIcon:()=>Ct,divIcon:()=>Ni,divideIcon:()=>ar,documentManagerIcon:()=>ts,dollarIcon:()=>fc,downloadIcon:()=>ko,downloadLightIcon:()=>se,dragAndDropIcon:()=>L,dribbbleBoxIcon:()=>bl,dribbbleIcon:()=>yl,dropletIcon:()=>vn,dropletSlashIcon:()=>Rn,dropletSliderIcon:()=>Ot,editToolsIcon:()=>qa,envelopBoxIcon:()=>qc,envelopIcon:()=>Kc,envelopLinkIcon:()=>Ts,envelopeBoxIcon:()=>de,envelopeIcon:()=>fe,envelopeLinkIcon:()=>ve,equalIcon:()=>or,exclamationCircleIcon:()=>Zr,exeIcon:()=>Jl,exportIcon:()=>Wh,eyeIcon:()=>Uo,eyeSlashIcon:()=>ce,eyedropperIcon:()=>oi,facebookBoxIcon:()=>Xc,facebookIcon:()=>$c,fileAddIcon:()=>Hl,fileAscxIcon:()=>Kl,fileAudioIcon:()=>kh,fileBacIcon:()=>ql,fileConfigIcon:()=>Ul,fileCsvIcon:()=>Bl,fileDataIcon:()=>Bh,fileDiscImageIcon:()=>Lh,fileErrorIcon:()=>Nh,fileExcelIcon:()=>Ll,fileFlashIcon:()=>Fl,fileFooterIcon:()=>hh,fileHeaderIcon:()=>lh,fileHorizontalIcon:()=>ah,fileIcon:()=>kl,fileImageIcon:()=>Hh,fileMdbIcon:()=>El,filePdfIcon:()=>Nl,filePptIcon:()=>Dl,filePresentationIcon:()=>Ih,fileProgrammingIcon:()=>Th,filePsdIcon:()=>Rl,fileReportIcon:()=>St,fileTxtIcon:()=>Il,fileTypescriptIcon:()=>Uh,fileVideoIcon:()=>jh,fileWordIcon:()=>Tl,fileWrenchIcon:()=>Vi,fileZipIcon:()=>$l,filesErrorIcon:()=>Rh,filmIcon:()=>Xl,filterAddExpressionIcon:()=>Po,filterAddGroupIcon:()=>Vo,filterClearIcon:()=>Oo,filterIcon:()=>Co,filterSmallIcon:()=>So,filterSortAscSmallIcon:()=>zo,filterSortDescSmallIcon:()=>Mo,flashManagerIcon:()=>ps,flipHorizontalIcon:()=>sn,flipVerticalIcon:()=>cn,folderAddIcon:()=>Pl,folderIcon:()=>zl,folderMoreIcon:()=>Al,folderOpenIcon:()=>Ml,folderUpIcon:()=>Vl,fontFamilyIcon:()=>Hi,fontGrowIcon:()=>be,fontShrinkIcon:()=>xe,fontSizeIcon:()=>xc,foregroundColorIcon:()=>Ii,formElementIcon:()=>Ha,formIcon:()=>ka,formatCodeBlockIcon:()=>js,formulaFxIcon:()=>pc,forwardIcon:()=>zr,fullscreenExitIcon:()=>Nn,fullscreenIcon:()=>Dn,gapColumnIcon:()=>zt,gapRowIcon:()=>Mt,gaugeLinearIcon:()=>ue,gaugeRadialIcon:()=>pe,gearIcon:()=>No,gearsIcon:()=>Ro,globeIcon:()=>Ac,globeLinkIcon:()=>Bs,globeOutlineIcon:()=>Vc,globeUnlinkIcon:()=>Ls,googleBoxIcon:()=>Yc,googleIcon:()=>Gc,googlePlusBoxIcon:()=>Zc,googlePlusIcon:()=>Wc,graphIcon:()=>Zh,grayscaleIcon:()=>xn,greaterOrEqualIcon:()=>ir,gridIcon:()=>E,gridLayoutIcon:()=>D,groupBoxIcon:()=>Da,groupCollectionIcon:()=>Ch,groupFooterSectionIcon:()=>ph,groupHeaderSectionIcon:()=>uh,groupIcon:()=>N,groupSectionIcon:()=>gh,h1Icon:()=>Fi,h2Icon:()=>Ui,h3Icon:()=>Ki,h4Icon:()=>qi,h5Icon:()=>$i,h6Icon:()=>Xi,handIcon:()=>mr,handleDragIcon:()=>F,handleResizeAltIcon:()=>Pt,handleResizeIcon:()=>Vt,hdIcon:()=>Ar,heartIcon:()=>Er,heartOutlineIcon:()=>Tr,homeIcon:()=>et,horizontalRuleIcon:()=>ha,html5Icon:()=>Yl,hyperlinkOpenIcon:()=>Io,hyperlinkOpenSmIcon:()=>Bo,imageAbsolutePositionIcon:()=>wc,imageAddIcon:()=>rs,imageEditIcon:()=>ns,imageExportIcon:()=>tn,imageIcon:()=>Jr,imageMapEditorIcon:()=>is,imageResizeIcon:()=>rn,imagesIcon:()=>At,importIcon:()=>Yh,inboxIcon:()=>Tc,increaseHorizontalSpacingIcon:()=>Yn,increaseVerticalSpacingIcon:()=>Jn,indentIcon:()=>Wi,infoCircleIcon:()=>Yr,infoSolidIcon:()=>ye,inheritedIcon:()=>Ah,insertBottomIcon:()=>ta,insertMiddleIcon:()=>Ji,insertTopIcon:()=>Qi,invertColorsIcon:()=>yn,italicIcon:()=>ji,jsIcon:()=>Ql,justifyContentAroundAltIcon:()=>Pi,justifyContentAroundIcon:()=>Ci,justifyContentBetweenAltIcon:()=>Mi,justifyContentBetweenIcon:()=>_i,justifyContentCenterAltIcon:()=>Si,justifyContentCenterIcon:()=>xi,justifyContentEndAltIcon:()=>zi,justifyContentEndIcon:()=>wi,justifyContentStartAltIcon:()=>Oi,justifyContentStartIcon:()=>bi,kpiStatusDenyIcon:()=>Jo,kpiStatusHoldIcon:()=>tr,kpiStatusOpenIcon:()=>er,launchIcon:()=>Lo,layout1By4Icon:()=>K,layout2By2Icon:()=>q,layoutIcon:()=>U,layoutSideBySideIcon:()=>$,layoutStackedIcon:()=>X,lessOrEqualIcon:()=>nr,letterSpaceIcon:()=>jt,levelDownIcon:()=>A,levelToTopIcon:()=>k,levelUpIcon:()=>j,lineHeightIcon:()=>kt,linkAddIcon:()=>Is,linkIcon:()=>We,linkVerticalIcon:()=>Qe,linkedinBoxIcon:()=>Jc,linkedinIcon:()=>Qc,listLatinBigIcon:()=>Ht,listLatinSmallIcon:()=>It,listOrderedIcon:()=>Gi,listRomanBigIcon:()=>Bt,listRomanLowerIcon:()=>Gh,listRomanSmallIcon:()=>Lt,listRomanUpperIcon:()=>Xh,listUnorderedIcon:()=>Yi,listUnorderedOutlineIcon:()=>Tt,listUnorderedSquareIcon:()=>Et,lockIcon:()=>to,loginIcon:()=>Ao,logoutIcon:()=>jo,makeHorizontalSpacingEqualIcon:()=>Gn,makeSameHeightIcon:()=>Xn,makeSameSizeIcon:()=>qn,makeSameWidthIcon:()=>$n,makeVerticalSpacingEqualIcon:()=>Qn,mapMarkerIcon:()=>jc,mapMarkerTargetIcon:()=>kc,maxHeightIcon:()=>Dt,maxWidthIcon:()=>Nt,mediaManagerIcon:()=>hs,menuIcon:()=>Z,minHeightIcon:()=>Rt,minWidthIcon:()=>Ft,minusCircleIcon:()=>go,minusIcon:()=>fo,minusOutlineIcon:()=>mo,minusSmIcon:()=>Qo,mirrorIcon:()=>an,moreHorizontalIcon:()=>J,moreVerticalIcon:()=>Q,musicNotesIcon:()=>Hr,myspaceBoxIcon:()=>el,myspaceIcon:()=>tl,nonRecurrenceIcon:()=>xt,notEqualIcon:()=>rr,outdentIcon:()=>Zi,outlineOffsetIcon:()=>Ut,outlineWidthIcon:()=>Kt,overlapIcon:()=>tt,paddingBottomIcon:()=>qt,paddingIcon:()=>Yt,paddingLeftIcon:()=>$t,paddingRightIcon:()=>Xt,paddingTopIcon:()=>Gt,pageFooterSectionIcon:()=>vh,pageHeaderSectionIcon:()=>dh,paletteIcon:()=>dn,paneFreezeIcon:()=>nc,paperPlaneIcon:()=>he,paperclipAltIcon:()=>Ye,paperclipIcon:()=>Ge,paragraphAddIcon:()=>Ka,paragraphHeightIcon:()=>He,paragraphMarkIcon:()=>ke,parameterBooleanIcon:()=>Oh,parameterDateTimeIcon:()=>Sh,parameterFloatIcon:()=>zh,parameterIntegerIcon:()=>Mh,parameterStringIcon:()=>Ph,parametersByteArrayIcon:()=>Eh,parametersIcon:()=>yh,parametersUnknownIcon:()=>Dh,passwordIcon:()=>Ua,pauseIcon:()=>Cr,pauseSmIcon:()=>Br,pencilIcon:()=>$e,percentIcon:()=>mc,photosIcon:()=>Fn,pinIcon:()=>Hc,pinterestBoxIcon:()=>rl,pinterestIcon:()=>ol,playIcon:()=>_r,playSmIcon:()=>Ir,playlistIcon:()=>kr,plusCircleIcon:()=>vo,plusIcon:()=>uo,plusOutlineIcon:()=>po,plusSmIcon:()=>Zo,pointerIcon:()=>gr,positionBottomIcon:()=>Wt,positionLeftIcon:()=>Zt,positionRightIcon:()=>Qt,positionTopIcon:()=>Jt,printIcon:()=>qe,puzzlePieceIcon:()=>Hs,qrCodeIcon:()=>pr,qrCodeOutlineIcon:()=>ur,qrCodeScannerIcon:()=>dr,questionCircleIcon:()=>Wr,radiobuttonCheckedIcon:()=>Xr,radiobuttonIcon:()=>$r,redditBoxIcon:()=>il,redditIcon:()=>nl,redoIcon:()=>Le,regularExpressionIcon:()=>te,removeHorizontalSpacingIcon:()=>Zn,removeVerticalSpacingIcon:()=>ei,reorderIcon:()=>W,replaceAllIcon:()=>ee,replaceSingleIcon:()=>oe,reportElementIcon:()=>re,rewindIcon:()=>Sr,rightDoubleQuotesIcon:()=>ne,rotateIcon:()=>ln,rotateLeftIcon:()=>un,rotateRightIcon:()=>hn,roundCornersIcon:()=>On,rowFreezeIcon:()=>ic,rowsIcon:()=>Y,rssBoxIcon:()=>wl,rssIcon:()=>xl,saveIcon:()=>Ke,searchIcon:()=>Ko,selectAllIcon:()=>Ba,selectBoxIcon:()=>Ta,setColumnPositionIcon:()=>xr,shapeLineIcon:()=>fn,shapesIcon:()=>Cn,shareIcon:()=>Bc,sharpenIcon:()=>_n,signatureIcon:()=>fr,silverlightIcon:()=>ls,sizeToGridIcon:()=>Kn,slidersIcon:()=>gn,slnIcon:()=>nh,snapGridIcon:()=>ri,snapToGridlinesIcon:()=>ni,snapToSnaplinesIcon:()=>ii,sortAscIcon:()=>yo,sortAscSmallIcon:()=>wo,sortClearIcon:()=>xo,sortDescIcon:()=>bo,sortDescSmallIcon:()=>_o,sparklesIcon:()=>je,spellCheckerIcon:()=>cc,starIcon:()=>Nr,starOutlineIcon:()=>Dr,stickIcon:()=>yr,stopIcon:()=>Or,stopSmIcon:()=>Lr,strikethroughIcon:()=>Ti,stripAllFormattingIcon:()=>zs,stripCssFormatIcon:()=>Ms,stripFontElementsIcon:()=>Ps,stripSpanElementsIcon:()=>Vs,stripWordFormattingIcon:()=>As,stumbleUponBoxIcon:()=>sl,stumbleUponIcon:()=>al,subreportIcon:()=>sh,subscriptIcon:()=>Ei,sumIcon:()=>dc,supscriptIcon:()=>Di,symbolIcon:()=>vc,tableAddIcon:()=>Ds,tableAlignBottomCenterIcon:()=>ya,tableAlignBottomLeftIcon:()=>ga,tableAlignBottomRightIcon:()=>ba,tableAlignMiddleCenterIcon:()=>fa,tableAlignMiddleLeftIcon:()=>va,tableAlignMiddleRightIcon:()=>ma,tableAlignRemoveIcon:()=>xa,tableAlignTopCenterIcon:()=>pa,tableAlignTopLeftIcon:()=>ua,tableAlignTopRightIcon:()=>da,tableBodyIcon:()=>Sc,tableCellDeleteIcon:()=>Ws,tableCellIcon:()=>Fs,tableCellPropertiesIcon:()=>Us,tableColumnDeleteIcon:()=>Gs,tableColumnGroupsIcon:()=>zc,tableColumnInsertLeftIcon:()=>Ks,tableColumnInsertRightIcon:()=>qs,tableCornerIcon:()=>Mc,tableDeleteIcon:()=>Zs,tableIcon:()=>Ns,tablePositionCenterIcon:()=>qh,tablePositionEndIcon:()=>$h,tablePositionStartIcon:()=>Kh,tablePropertiesIcon:()=>Rs,tableRowDeleteIcon:()=>Ys,tableRowGroupsIcon:()=>Pc,tableRowInsertAboveIcon:()=>$s,tableRowInsertBelowIcon:()=>Xs,tableUnmergeIcon:()=>rc,tableWizardIcon:()=>_c,tellAFriendBoxIcon:()=>ll,tellAFriendIcon:()=>cl,templateManagerIcon:()=>$a,textClipIcon:()=>Oe,textOverflowIcon:()=>we,textTruncateIcon:()=>Ce,textWrapArrowIcon:()=>_e,textWrapIcon:()=>la,textareaIcon:()=>Na,textboxHiddenIcon:()=>Fa,textboxIcon:()=>Ra,thumbDownIcon:()=>Pe,thumbDownOutlineIcon:()=>Me,thumbUpIcon:()=>Ae,thumbUpOutlineIcon:()=>Ve,thumbnailsDownIcon:()=>Tn,thumbnailsLeftIcon:()=>En,thumbnailsRightIcon:()=>Ln,thumbnailsUpIcon:()=>Bn,tocSectionIcon:()=>mh,tocSectionLevelIcon:()=>Vh,toggleFullScreenModeIcon:()=>uc,toolbarFloatIcon:()=>sc,trackChangesAcceptAllIcon:()=>Za,trackChangesAcceptIcon:()=>Wa,trackChangesEnableIcon:()=>Ya,trackChangesIcon:()=>Ga,trackChangesRejectAllIcon:()=>Ja,trackChangesRejectIcon:()=>Qa,transparencyIcon:()=>bn,trashIcon:()=>Xe,tumblrBoxIcon:()=>ul,tumblrIcon:()=>hl,twitterBoxIcon:()=>dl,twitterIcon:()=>pl,underlineIcon:()=>ki,undoIcon:()=>Be,ungroupIcon:()=>R,unlinkIcon:()=>Ze,unlinkVerticalIcon:()=>Je,unlockIcon:()=>eo,unpinIcon:()=>Ic,unstickIcon:()=>br,uploadIcon:()=>Ho,userIcon:()=>Lc,userOutlineIcon:()=>Ie,validationDataIcon:()=>hc,validationXhtmlIcon:()=>lc,vbIcon:()=>rh,vbprojIcon:()=>eh,videoExternalIcon:()=>us,vimeoBoxIcon:()=>Cl,vimeoIcon:()=>_l,volumeDownIcon:()=>Mr,volumeMuteIcon:()=>Vr,volumeUpIcon:()=>Pr,warningCircleIcon:()=>me,warningTriangleIcon:()=>ge,wholeWordIcon:()=>ie,windowIcon:()=>To,windowMinimizeIcon:()=>Do,windowRestoreIcon:()=>Eo,wrenchIcon:()=>Fo,xCircleIcon:()=>ho,xIcon:()=>co,xOutlineIcon:()=>lo,yammerBoxIcon:()=>fl,yammerIcon:()=>vl,youtubeBoxIcon:()=>Sl,youtubeIcon:()=>Ol,zoomActualSizeIcon:()=>en,zoomBestFitIcon:()=>on,zoomInIcon:()=>qo,zoomOutIcon:()=>$o});const r={name:"caret-tr",content:'<path d="M352 160v192L160 160z" />',viewBox:"0 0 512 512"},n={name:"caret-br",content:'<path d="M352 352H160l192-192z" />',viewBox:"0 0 512 512"},i={name:"caret-bl",content:'<path d="M160 352V160l192 192z" />',viewBox:"0 0 512 512"},a={name:"caret-tl",content:'<path d="M160 160h192L160 352z" />',viewBox:"0 0 512 512"},s={name:"caret-alt-up",content:'<path d="m256 160 128 192H128z" />',viewBox:"0 0 512 512"},c={name:"caret-alt-right",content:'<path d="M352 256 160 384V128z" />',viewBox:"0 0 512 512"},l={name:"caret-alt-down",content:'<path d="M256 352 128 160h256z" />',viewBox:"0 0 512 512"},h={name:"caret-alt-left",content:'<path d="m160 256 192-128v256z" />',viewBox:"0 0 512 512"},u={name:"caret-alt-to-top",content:'<path d="m128 352 128-192 128 192zm256-224H128v32h256z" />',viewBox:"0 0 512 512"},p={name:"caret-alt-to-right",content:'<path d="m128 128 192 128-192 128zm224 256V128h-32v256z" />',viewBox:"0 0 512 512"},d={name:"caret-alt-to-bottom",content:'<path d="M384 128 256 320 128 128zM128 352h256v-32H128z" />',viewBox:"0 0 512 512"},v={name:"caret-alt-to-left",content:'<path d="M352 384 160 256l192-128zM128 128v256h32V128z" />',viewBox:"0 0 512 512"},f={name:"caret-double-alt-up",content:'<path d="m128 448 128-192 128 192zM256 64 128 256h256z" />',viewBox:"0 0 512 512"},m={name:"caret-double-alt-right",content:'<path d="m64 128 192 128L64 384zm384 128L256 128v256z" />',viewBox:"0 0 512 512"},g={name:"caret-double-alt-down",content:'<path d="M384 64 256 256 128 64zM256 448l128-192-128 1H128z" />',viewBox:"0 0 512 512"},y={name:"caret-double-alt-left",content:'<path d="M448 384 256 256.001l192-128zM64 256.001 256 384V128z" />',viewBox:"0 0 512 512"},b={name:"caret-alt-expand",content:'<path d="M128 288h256L256 480zM256 32 128 224h256.001z" />',viewBox:"0 0 512 512"},x={name:"arrows-no-change",content:'<path d="M256 160 128 352 0 160zm96 0L224 352h256.001z" />',viewBox:"0 0 512 512"},w={name:"arrow-overflow-down",content:'<path d="M384 160 256 352 128 160zM128 96v32h256V96z" />',viewBox:"0 0 512 512"},_={name:"chevron-up",content:'<path d="m129.941 353.941 126.06-126.06 126.061 126.06L416 320 256.001 160 96 320z" />',viewBox:"0 0 512 512"},C={name:"chevron-right",content:'<path d="m158.059 129.941 126.06 126.06-126.06 126.061L192 416l160-159.999L192 96z" />',viewBox:"0 0 512 512"},O={name:"chevron-down",content:'<path d="m382.059 158.059-126.06 126.06-126.061-126.06L96 192l159.999 160L416 192z" />',viewBox:"0 0 512 512"},S={name:"chevron-left",content:'<path d="m353.941 382.059-126.06-126.06 126.06-126.061L320 96 160 255.999 320 416z" />',viewBox:"0 0 512 512"},z={name:"arrow-up",content:'<path d="M384 288h-96v128h-64l-.001-128H128L255.999 96z" />',viewBox:"0 0 512 512"},M={name:"arrow-right",content:'<path d="M224 384v-96H96v-64h128v-96l192 128z" />',viewBox:"0 0 512 512"},P={name:"arrow-down",content:'<path d="M128 224h96V96h64l.001 128H384L256.001 416z" />',viewBox:"0 0 512 512"},V={name:"arrow-left",content:'<path d="M288 128v96h128v64l-128 .001V384L96 256.001z" />',viewBox:"0 0 512 512"},A={name:"level-down",content:'<path d="M288 192v64h64l-80 128-80-128h64v-64H128v-32h288v32z" />',viewBox:"0 0 512 512"},j={name:"level-up",content:'<path d="m128 288 80-128 80 128h-64v64h192v32H192v-96z" />',viewBox:"0 0 512 512"},k={name:"level-to-top",content:'<path d="m128 288 80-128 80 128h-64v64h192v32H192v-96zm288-160H96v32h320z" />',viewBox:"0 0 512 512"},H={name:"col-resize",content:'<path d="M128 255h64v33h-64v64.6L0 271.9l128-80.7zm96 225h64V32h-64zm288-207.9-128-80.7V256h-64v33h64v63.9z" />',viewBox:"0 0 512 512"},I={name:"arrows-axes",content:'<path d="M352 480v-64H128v64H96v-64H32v-32h64V160H32l80-128 80 128h-64v224h224v-64l128 80z" />',viewBox:"0 0 512 512"},B={name:"arrows-swap",content:'<path d="M256 160h-64v224h-32V160H96l80-128zm96 192V128h-32v224h-64l80 128 80-128z" />',viewBox:"0 0 512 512"},L={name:"drag-and-drop",content:'<path d="m32 128 192 112L32 352zm224 96v32h224v-32z" />',viewBox:"0 0 512 512"},T={name:"categorize",content:'<path d="M32 32v192l160-96zm0 448V288l160 96zM192 64h288v32H192zm0 96h288v32H192zm0 160h288v32H192zm0 96h288v32H192z" />',viewBox:"0 0 512 512"},E={name:"grid",content:'<path d="M32 32h128v128H32zm160 448h128V352H192zm-160 0h128V352H32zm0-160h128V192H32zm160 0h128V192H192zM352 32v128h128V32zm0 288h128V192H352zM192 160h128V32H192zm160 320h128V352H352z" />',viewBox:"0 0 512 512"},D={name:"grid-layout",content:'<path d="M32 32h96v96H32zm128 0v96h320V32zM32 288h96v-96H32zm128 0h320v-96H160zM32 448h96v-96H32zm128 0h320v-96H160z" />',viewBox:"0 0 512 512"},N={name:"group",content:'<path d="M32 256h192v192H32zm0-32h192V32H32zm224 224h192V256H256zm0-416v192h192V32z" />',viewBox:"0 0 512 512"},R={name:"ungroup",content:'<path d="M32 256h192v192H32zm32-64h128V64H64zm224 224h128V288H288zM256 32v192h192V32z" />',viewBox:"0 0 512 512"},F={name:"handle-drag",content:'<path d="M160 64h64v384h-64zm96 0v384h64V64z" />',viewBox:"0 0 512 512"},U={name:"layout",content:'<path d="M192 416h256v64H192zm0-32h256v-64H192zM32 480h128V128H32zm160-288h256v-64H192zm0 96h256v-64H192zM32 0v96h416V0z" />',viewBox:"0 0 512 512"},K={name:"layout-1-by-4",content:'<path d="M32 0h192v480H32zm224 0v96h192V0zm0 224h192v-96H256zm0 128h192v-96H256zm0 128h192v-96H256z" />',viewBox:"0 0 512 512"},q={name:"layout-2-by-2",content:'<path d="M32 224h192V0H32zm224 0h192V0H256zM32 480h192V256H32zm224 0h192V256H256z" />',viewBox:"0 0 512 512"},$={name:"layout-side-by-side",content:'<path d="M32 384h416v96H32zm0-32h416v-96H32zm0-128h416v-96H32zM32 0v96h416V0z" />',viewBox:"0 0 512 512"},X={name:"layout-stacked",content:'<path d="M32 256h192v96H32zm0 224h192v-96H32zm224-128h192v-96H256zM32 0v224h416V0zm224 480h192v-96H256z" />',viewBox:"0 0 512 512"},G={name:"columns",content:'<path d="M64 32h96v448H64zm128 448h96V32h-96zM320 32v448h96V32z" />',viewBox:"0 0 512 512"},Y={name:"rows",content:'<path d="M480 64v96H32V64zM32 192v96h448v-96zm448 128H32v96h448z" />',viewBox:"0 0 512 512"},W={name:"reorder",content:'<path d="M480 128v64H32v-64zM32 224v64h448v-64zm448 96H32v64h448z" />',viewBox:"0 0 512 512"},Z={name:"menu",content:'<path d="M480 32v96H32V32zM32 192v96h448v-96zm448 160H32v96h448z" />',viewBox:"0 0 512 512"},Q={name:"more-vertical",content:'<path d="M240 128c26.4 0 48-21.6 48-48s-21.6-48-48-48-48 21.6-48 48 21.6 48 48 48m0 64c-26.4 0-48 21.6-48 48s21.6 48 48 48 48-21.6 48-48-21.6-48-48-48m0 160c-26.4 0-48 21.6-48 48s21.6 48 48 48 48-21.6 48-48-21.6-48-48-48" />',viewBox:"0 0 512 512"},J={name:"more-horizontal",content:'<path d="M128 240c0-26.4-21.6-48-48-48s-48 21.6-48 48 21.6 48 48 48 48-21.6 48-48m64 0c0 26.4 21.6 48 48 48s48-21.6 48-48-21.6-48-48-48-48 21.6-48 48m160 0c0 26.4 21.6 48 48 48s48-21.6 48-48-21.6-48-48-48-48 21.6-48 48" />',viewBox:"0 0 512 512"},tt={name:"overlap",content:'<path d="M320 320V64H64v256zM192 448h256V192h-96v160H192z" />',viewBox:"0 0 512 512"},et={name:"home",content:'<path d="M480 256c0 17.7-14.3 32-32 32-9.1 0-17.4-3.8-23.2-10l-8.8-8.7V416c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-96h-64v96c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32V268.6l-8.3 8.9C81.8 284 73.4 288 64 288c-17.7 0-32-14.3-32-32 0-8.5 3.3-16.1 8.6-21.9l.2-.2 1-1 191-191.3 1-1c5.8-5.5 13.6-8.9 22.2-8.9 9.1 0 17.3 3.8 23.1 9.9L470.3 233l.7.7.3.3c5.4 5.8 8.7 13.5 8.7 22" />',viewBox:"0 0 512 512"},ot={name:"arrows-left-right",content:'<path d="m512 240-128-80v64H128v-64L0 240l128 80v-64h256v64z" />',viewBox:"0 0 512 512"},rt={name:"arrows-top-bottom",content:'<path d="m240 512 80-128h-64V128h64L240 0l-80 128h64v256h-64z" />',viewBox:"0 0 512 512"},nt={name:"border-radius-bottom-left",content:'<path d="M384 368c0 8.8-7.2 16-16 16h-64c-97 0-176-79-176-176v-64c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 79.4 64.6 144 144 144h64c8.8 0 16 7.2 16 16" />',viewBox:"0 0 512 512"},it={name:"border-radius-bottom-right",content:'<path d="M368 128c8.8 0 16 7.2 16 16v64c0 97-79 176-176 176h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16h64c79.4 0 144-64.6 144-144v-64c0-8.8 7.2-16 16-16" />',viewBox:"0 0 512 512"},at={name:"border-radius-top-left",content:'<path d="M144 384c-8.8 0-16-7.2-16-16v-64c0-97 79-176 176-176h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-79.4 0-144 64.6-144 144v64c0 8.8-7.2 16-16 16" />',viewBox:"0 0 512 512"},st={name:"border-radius-top-right",content:'<path d="M128 144c0-8.8 7.2-16 16-16h64c97 0 176 79 176 176v64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-64c0-79.4-64.6-144-144-144h-64c-8.8 0-16-7.2-16-16" />',viewBox:"0 0 512 512"},ct={name:"border-radius",content:'<path d="M64 32h96v32H64v96H32V32zm384 416h-96v32h128V352h-32zM352 32v32h96v96h32V32zM64 352H32v128h128v-32H64z" />',viewBox:"0 0 512 512"},lt={name:"border-style-bottom",content:'<path d="M96 480v-64h320v64zm1-416h320V32H97zM64 416V96H32v320zm416 0V96h-32v320z" />',viewBox:"0 0 512 512"},ht={name:"border-style-left",content:'<path d="M32 96h64v320H32zm416 1v320h32V97zM96 64h320V32H96zm0 416h320v-32H96z" />',viewBox:"0 0 512 512"},ut={name:"border-style-right",content:'<path d="M480 416h-64V96h64zm-416-1V95H32v320zm352 33H96v32h320zm0-416H96v32h320z" />',viewBox:"0 0 512 512"},pt={name:"border-style-top",content:'<path d="M416 32v64H96V32zm-1 416H95v32h320zm33-352v320h32V96zM32 96v320h32V96z" />',viewBox:"0 0 512 512"},dt={name:"border-style",content:'<path d="M32 96h32v320H32zm416 1h32v320h-32zM96 32h320v32H96zm0 416h320v32H96z" />',viewBox:"0 0 512 512"},vt={name:"box-sizing",content:'<path d="M32 0H0v480h480V0zm416 448H32V32h416zm-96-320h-32V96h32zM96 192H64v-32h32zm0-64H64V96h32zm64 0h-32V96h32zm64 0h-32V96h32zm64 0h-32V96h32zM96 256H64v-32h32zm320-128h-32V96h32zm0 128h-32v-32h32zm0-64h-32v-32h32zM96 384H64v-32h32zm256 0h-32v-32h32zm-192 0h-32v-32h32zm64 0h-32v-32h32zm64 0h-32v-32h32zm128 0h-32v-32h32zM96 320H64v-32h32zm320 0h-32v-32h32z" />',viewBox:"0 0 512 512"},ft={name:"chevron-double-down",content:'<path d="M382.1 224 256 350.1 129.9 224 96 257.9l160 160 160-160zm0-128L256 222.1 129.9 96 96 129.9l160 160 160-160z" />',viewBox:"0 0 512 512"},mt={name:"chevron-double-left",content:'<path d="M289 383 162.9 257 289 130.9 255 97 95 257l160 160zm128 0L290.9 257 417 130.9 383 97 223 257l160 160z" />',viewBox:"0 0 512 512"},gt={name:"chevron-double-right",content:'<path d="M223 130.9 349.1 257 223 383l34 34 160-160L257 97zm-128 0L221.1 257 95 383l34 34 160-160L129 97z" />',viewBox:"0 0 512 512"},yt={name:"chevron-double-up",content:'<path d="m129.9 289.9 126.1-126L382.1 290l33.9-34L256 96 96 256zm0 128 126.1-126L382.1 418l33.9-34-160-160L96 384z" />',viewBox:"0 0 512 512"},bt={name:"data-ods",content:'<path d="M415.94 93.61v.33c-.53 33.88-86.26 61.29-191.93 61.29S32.6 127.82 32.07 93.94v-.33C32.06 59.59 118 32 224 32s191.94 27.59 191.94 61.61m-.06 46.39v.32c-.53 33.88-86.26 61.29-191.93 61.29S32.54 174.2 32 140.32V140l.12 86.81v.32c.53 33.88 86.26 61.29 191.93 61.29S415.46 261 416 227.13v-.32Zm.12 180-.07-52v.32c-.34 21.73-35.73 40.8-88.93 51.68Zm-256 6.11C85.73 317.69 32.43 295 32 268.32V268l.12 86.81v.32C32.55 381.8 85.8 404.47 160 412.9Zm73.5 123.55q-22.26 0-36.28-14.49t-14-37.76q0-24.57 14.24-39.74t37.72-15.18q22.18 0 35.88 14.53t13.69 38.3q0 24.42-14.2 39.38t-37.05 14.96m1-87.08q-12.28 0-19.51 9.22t-7.23 24.39q0 15.39 7.23 24.35a23.15 23.15 0 0 0 18.93 9q12.07 0 19.15-8.71t7.08-24.17q0-16.11-6.86-25.08t-18.78-9Zm68.9 85.28V344.23h36.71q55.22 0 55.21 50.51 0 24.21-15.06 38.66t-40.15 14.46Zm23.34-84.63v65.69h11.57q15.17 0 23.81-9.1t8.64-24.82q0-14.82-8.56-23.31t-24-8.49Zm82.49 80.65v-23.12a44.8 44.8 0 0 0 13.66 7.91 43.9 43.9 0 0 0 14.89 2.64 33 33 0 0 0 7.7-.8 18 18 0 0 0 5.49-2.2 9.7 9.7 0 0 0 3.29-3.33 8.3 8.3 0 0 0 1.08-4.15 9 9 0 0 0-1.73-5.42 18.8 18.8 0 0 0-4.74-4.41 49 49 0 0 0-7.12-3.9q-4.11-1.87-8.89-3.83-12.14-5.06-18.1-12.36a27 27 0 0 1-6-17.63 28.05 28.05 0 0 1 3.25-13.91 27.7 27.7 0 0 1 8.85-9.58 39.9 39.9 0 0 1 13-5.53 66.6 66.6 0 0 1 15.61-1.77 94 94 0 0 1 14.34 1 56.4 56.4 0 0 1 11.53 3v21.6a36 36 0 0 0-5.68-3.18 45 45 0 0 0-6.32-2.27 49 49 0 0 0-6.47-1.34 45.5 45.5 0 0 0-6.1-.43 31.7 31.7 0 0 0-7.23.76 18.2 18.2 0 0 0-5.49 2.13 10.5 10.5 0 0 0-3.47 3.29 7.77 7.77 0 0 0-1.23 4.3 8.27 8.27 0 0 0 1.37 4.66 15.9 15.9 0 0 0 3.91 3.9 41 41 0 0 0 6.14 3.61q3.61 1.77 8.16 3.65a91.6 91.6 0 0 1 11.17 5.53 39.9 39.9 0 0 1 8.49 6.61 25.8 25.8 0 0 1 5.42 8.42 29.8 29.8 0 0 1 1.88 11q0 8.67-3.29 14.56a26.7 26.7 0 0 1-8.92 9.54 38.6 38.6 0 0 1-13.12 5.24 76 76 0 0 1-15.79 1.59 88 88 0 0 1-16.22-1.44 49.2 49.2 0 0 1-13.31-4.34Z" />',viewBox:"0 0 512 512"},xt={name:"non-recurrence",content:'<path d="m321 434.2 47.5 47.5C335.5 501 297 512 256 512 132.3 512 32 411.7 32 288c0-41 11-79.5 30.3-112.6l47.5 47.5c-8.9 19.9-13.8 41.9-13.8 65 0 88.2 71.8 160 160 160 23.1.1 45.2-4.8 65-13.7m118.3-17.5c12.9-18.3 23.1-38.7 30.1-60.4 6.9-21.5 10.6-44.5 10.6-68.3 0-40.8-10.9-79.1-30-112l-55.5 32c13.6 23.5 21.5 50.9 21.5 80 0 4.8-.2 9.5-.6 14.2-2.2 24.8-10.1 47.9-22.3 68.2L173.6 150.9c20.3-12.2 43.4-20.1 68.2-22.3 4.7-.4 9.4-.6 14.2-.6v64l160-96L256 0v64c-23.8 0-46.7 3.7-68.3 10.6-21.8 7-42.1 17.2-60.4 30.1L22.6 0 0 22.6 489.4 512l22.6-22.6z" />',viewBox:"0 0 512 512"},wt={name:"display-block",content:'<path d="M32 32h448v32H32zm0 416h448v32H32zm0-64h448V128H32zm64-192h320v128H96z" />',viewBox:"0 0 512 512"},_t={name:"display-flex",content:'<path d="M32 32v448h448V32zm416 416H64V64h384zM128 128h96v256h-96zm160 0h96v256h-96z" />',viewBox:"0 0 512 512"},Ct={name:"display-inline-flex",content:'<path d="M96 416h320V96H96zm32-288h256v256H128zm32 32h64v192h-64zm128 0h64v192h-64zM32 32h32v448H32zm416 0h32v448h-32z" />',viewBox:"0 0 512 512"},Ot={name:"droplet-slider",content:'<path d="M192 384v32c-53 0-96-43-96-96h32c0 35.3 28.7 64 64 64m160-72c0 92.8-71.6 168-160 168S32 404.8 32 312C32 181.3 192 32 192 32s160 149.3 160 280m-32 0c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-47.8 64.3-73 122.8-73 169 0 75 57.4 136 128 136s128-61 128-136m128-88h-32v256h32zm0-192h-32v64h32zm-64 96v64h96v-64z" />',viewBox:"0 0 512 512"},St={name:"file-report",content:'<path d="M416 32H96a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32m0 416H96V64h320Zm-96-96-160 .14V384l160-.14Zm32-64-192 .17V320l192-.17ZM223.15 127.9a64 64 0 1 0 64 64h-64Zm32-32v64h64a64 64 0 0 0-63.99-64Z" />',viewBox:"0 0 512 512"},zt={name:"gap-column",content:'<path d="M32 32v448h448V32zm416 416H64V64h384zM96 96h96v320H96zm224 0h96v320h-96z" />',viewBox:"0 0 512 512"},Mt={name:"gap-row",content:'<path d="M480 32H32v448h448zM64 448V64h384v384zM96 96h320v96H96zm0 224h320v96H96z" />',viewBox:"0 0 512 512"},Pt={name:"handle-resize-alt",content:'<path d="M480 224v256H224v-64h192V224z" />',viewBox:"0 0 512 512"},Vt={name:"handle-resize",content:'<path d="m379.5 475.5-22.6-22.6 96-96 22.6 22.6zm79.7-208.2-22.6-22.6-191.9 191.9 22.6 22.6z" />',viewBox:"0 0 512 512"},At={name:"images",content:'<path d="M256 288c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m96-64v192c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32m-31.8 0q-.15-.15 0 0l-256.1-.1-.1.1v149.9l74.6-70 85.3 80 53.3-50 42.7 40zm63.8-96H128c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32m64-64H192c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32" />',viewBox:"0 0 512 512"},jt={name:"letter-space",content:'<path d="m310 336 26 80h48L280 96h-48L128 416h48l26-80zm-54-166.2L294.4 288h-76.8zM448 32h32v448h-32zM32 32h32v448H32z" />',viewBox:"0 0 512 512"},kt={name:"line-height",content:'<path d="m310 336 26 80h48L280 96h-48L128 416h48l26-80zm-54-166.2L294.4 288h-76.8zM32 32h448v32H32zm0 416h448v32H32z" />',viewBox:"0 0 512 512"},Ht={name:"list-latin-big",content:'<path d="M115.1 136H72.6l-7.4 24H32.1L79.3 31.5h29.1L155.9 160h-33.3zm-35-23.9h27.6L93.8 67.5zM42.1 320V191.5h46.2c16.5 0 29.1 3 37.7 9.1q12.9 9.15 12.9 26.4c0 6.6-1.5 12.3-4.6 17s-7.6 8.2-13.5 10.4c6.7 1.8 11.9 5.1 15.4 9.9q5.4 7.2 5.4 17.7c0 12.6-4 22.1-12 28.4s-19.8 9.5-35.4 9.7H42.1zm31-74.9h16.2c6.8-.1 11.6-1.3 14.5-3.7s4.3-6 4.3-10.7c0-5.4-1.6-9.3-4.7-11.7s-8.2-3.6-15.1-3.6H73.1zm0 20.3v30.8h20.3c5.6 0 9.9-1.3 12.9-3.8q4.5-3.9 4.5-10.8c0-10.7-5.3-16.1-16-16.2zm73 171.1q-.6 13.35-7.2 23.7t-18.6 15.9c-8 3.8-17.1 5.6-27.3 5.6q-25.35 0-39.9-16.5c-14.55-16.5-14.6-26.5-14.6-46.6v-6.4c0-12.6 2.2-23.6 6.6-33.1Q51.7 365 64 357.2c8.2-5.1 17.8-7.7 28.6-7.7 15.6 0 28.1 4.1 37.6 12.3q14.25 12.3 16.2 33.9h-30.9c-.2-7.8-2.2-13.4-5.9-16.9-3.7-3.4-9.4-5.1-16.9-5.1-7.7 0-13.4 2.9-16.9 8.6-3.6 5.8-5.5 15-5.6 27.6v9.1c0 13.7 1.7 23.5 5.2 29.4 3.4 5.9 9.4 8.8 17.8 8.8 7.1 0 12.6-1.7 16.3-5 3.8-3.4 5.8-8.7 6-16h30.6zM192 96h288v32H192zm0 160h288v32H192zm0 160h288v32H192z" />',viewBox:"0 0 512 512"},It={name:"list-latin-small",content:'<path d="M94.5 152c-1.1-1.9-2-4.8-2.8-8.6-5.5 6.9-13.1 10.3-22.9 10.3-9 0-16.7-2.7-22.9-8.2-6.3-5.4-9.4-12.3-9.4-20.5 0-10.4 3.8-18.2 11.5-23.5 7.6-5.3 18.8-7.9 33.4-7.9h9.2v-5.1q0-13.2-11.4-13.2c-7.1 0-10.6 3.5-10.6 10.5H38.7c0-9.2 3.9-16.7 11.8-22.5s17.9-8.6 30.1-8.6 21.8 3 28.9 8.9 10.7 14.1 10.9 24.4v42.3c.1 8.8 1.5 15.5 4.1 20.1v1.5zm-18.6-19.4c3.7 0 6.8-.8 9.2-2.4s4.2-3.4 5.3-5.4v-15.3h-8.6c-10.4 0-15.5 4.6-15.5 13.9q0 4.05 2.7 6.6c1.8 1.7 4.1 2.6 6.9 2.6M129.4 280c0 15.7-3.2 27.7-9.7 36.1s-15.6 12.6-27.4 12.6c-9.7 0-17.5-3.9-23.5-11.6l-1.2 9.8H41V191.4h29.7v47.7c5.5-6.3 12.7-9.4 21.4-9.4 11.9 0 21.1 4.3 27.5 12.8 6.5 8.5 9.7 20.5 9.7 36zm-29.8-1.9c0-9.2-1.2-15.7-3.7-19.6-2.4-3.9-6.2-5.9-11.3-5.9-6.7 0-11.4 2.6-13.9 7.7v37.9c2.5 5.1 7.2 7.6 14.1 7.6 7 0 11.4-3.4 13.3-10.2 1-3.4 1.5-9.2 1.5-17.5M81.1 452.8c4.2 0 7.4-1.1 9.7-3.4s3.4-5.4 3.4-9.5h27.9c0 10.5-3.8 19.1-11.3 25.8s-17.2 10.1-29 10.1c-13.9 0-24.8-4.4-32.8-13.1s-12-20.8-12-36.2v-1.2c0-9.6 1.8-18.2 5.3-25.6 3.6-7.4 8.7-13.1 15.4-17 6.7-4 14.7-6 23.8-6 12.4 0 22.3 3.4 29.6 10.3s10.9 16.2 10.9 28H94.2q0-7.35-3.6-11.4c-2.4-2.6-5.6-4-9.7-4q-11.55 0-13.5 14.7-.6 4.65-.6 12.9c0 9.6 1.1 16.2 3.4 19.9s5.9 5.7 10.9 5.7M192 96h288v32H192zm0 160h288v32H192zm0 160h288v32H192z" />',viewBox:"0 0 512 512"},Bt={name:"list-roman-big",content:'<path d="M32 32h32v128H32zm0 288h32V192H32zm64 0h32V192H96zM32 480h32V352H32zm64 0h32V352H96zm64 0h32V352h-32zM128 96h352v32H128zm64 160h288v32H192zm64 160h224v32H256zM96 152c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8" />',viewBox:"0 0 512 512"},Lt={name:"list-roman-small",content:'<path d="M32 64h16v96H32zm0 256h16v-96H32zm32 0h16v-96H64zM32 480h16v-96H32zm32 0h16v-96H64zm32 0h16v-96H96zM48 40c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 200c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 360c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M128 96h352v32H128zm32 160h320v32H160zm32 160h288v32H192z" />',viewBox:"0 0 512 512"},Tt={name:"list-unordered-outline",content:'<path d="M192 80h288v32H192zm0 160h288v32H192zm0 160h288v32H192zM80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 192c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 192c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},Et={name:"list-unordered-square",content:'<path d="M128 160H32V64h96zm0 64H32v96h96zm0 160H32v96h96zm64-256h288V96H192zm0 160h288v-32H192zm0 160h288v-32H192z" />',viewBox:"0 0 512 512"},Dt={name:"max-height",content:'<path d="M384 0H96v32h288zm0 479H240.6L320 352h-64V160h64L240 32l-80 128h64v192h-64l79.4 127H96v32h288z" />',viewBox:"0 0 512 512"},Nt={name:"max-width",content:'<path d="M0 96v288h32V96zm479 0v143.4L352 160v64H160v-64L32 240l128 80v-64h192v64l127-79.4V384h32V96z" />',viewBox:"0 0 512 512"},Rt={name:"min-height",content:'<path d="M240 192H96v32h288v-32zm144 96H96v32h288zM160 448h160l-80-128zm64 0h32v64h-32zm32-384V0h-32v64h-64l80 128 80-128z" />',viewBox:"0 0 512 512"},Ft={name:"min-width",content:'<path d="M192 240v144h32V96h-32zm96-144v288h32V96zm160 224V160l-128 80zm0-96h64v32h-64zm-384 0H0v32h64v64l128-80-128-80z" />',viewBox:"0 0 512 512"},Ut={name:"outline-offset",content:'<path d="M448 32H32v448h448V32zm0 416H64V64h384zM160 320v32h192V160H160zm32-128h128v128H192z" />',viewBox:"0 0 512 512"},Kt={name:"outline-width",content:'<path d="M416 32H32v448h448V32zm0 384H96V96h320zm-256-32h224V128H128v256zm0-224h192v192H160z" />',viewBox:"0 0 512 512"},qt={name:"padding-bottom",content:'<path d="M288.2 352H256v64h64v64H160v-64h64v-64h-32v-64h96.2zM160 32h64v96h-32.2v32H288v-32h-32V32h64V0H160zm192 192v-32.2h-32V288h32v-32h96v64h32V160h-32v64zm-224 32v32.2h32V192h-32v32H32v-64H0v160h32v-64z" />',viewBox:"0 0 512 512"},$t={name:"padding-left",content:'<path d="M128 288.2V256H64v64H0V160h64v64h64v-32h64v96.2zM448 160v64h-96v-32.2h-32V288h32v-32h96v64h32V160zM256 352h32.2v-32H192v32h32v96h-64v32h160v-32h-64zm-32-224h-32.2v32H288v-32h-32V32h64V0H160v32h64z" />',viewBox:"0 0 512 512"},Xt={name:"padding-right",content:'<path d="M352 191.8V224h64v-64h64v160h-64v-64h-64v32h-64v-96.2zM32 320v-64h96v32.2h32V192h-32v32H32v-64H0v160zm192-192h-32.2v32H288v-32h-32V32h64V0H160v32h64zm32 224h32.2v-32H192v32h32v96h-64v32h160v-32h-64z" />',viewBox:"0 0 512 512"},Gt={name:"padding-top",content:'<path d="M191.8 128H224V64h-64V0h160v64h-64v64h32v64h-96.2zM320 448h-64v-96h32.2v-32H192v32h32v96h-64v32h160zM128 256v32.2h32V192h-32v32H32v-64H0v160h32v-64zm224-32v-32.2h-32V288h32v-32h96v64h32V160h-32v64z" />',viewBox:"0 0 512 512"},Yt={name:"padding",content:'<path d="M128 288.2V256H32v64H0V160h32v64h96v-32h32v96.2zM448 160v64h-96v-32.2h-32V288h32v-32h96v64h32V160zM256 352h32.2v-32H192v32h32v96h-64v32h160v-32h-64zm-32-224h-32.2v32H288v-32h-32V32h64V0H160v32h64z" />',viewBox:"0 0 512 512"},Wt={name:"position-bottom",content:'<path d="M32 64v416h448V32H32zm416 0v384H64V64zM96 320h320v96H96z" />',viewBox:"0 0 512 512"},Zt={name:"position-left",content:'<path d="M448 32H32v448h448V32zm0 416H64V64h384zM96 96h96v320H96z" />',viewBox:"0 0 512 512"},Qt={name:"position-right",content:'<path d="M64 480h416V32H32v448zm0-416h384v384H64zm256 32h96v320h-96z" />',viewBox:"0 0 512 512"},Jt={name:"position-top",content:'<path d="M480 448V32H32v448h448zm-416 0V64h384v384zM96 96h320v96H96z" />',viewBox:"0 0 512 512"},te={name:"regular-expression",content:'<path d="M442.6 299.7 352 247.4V352h-64V247.4l-90.6 52.3-32-55.4L256 192l-90.6-52.3 32-55.4 90.6 52.3V32h64v104.6l90.6-52.3 32 55.4L384 192l90.6 52.3zM80 384c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},ee={name:"replace-all",content:'<path d="M288 288h192v192H288zm64-64H224V32h128zM320 64h-64v128h64zM160 352H96V160h96V96H96c-35.3 0-64 28.7-64 64v192c0 35.3 28.7 64 64 64h64v64l96-96-96-96zM448 32v192h32V32zm-32 0h-32v192h32z" />',viewBox:"0 0 512 512"},oe={name:"replace-single",content:'<path d="M288 288h192v192H288zM32 160v192c0 35.3 28.7 64 64 64h64v64l96-96-96-96v64H96V160h160V96H96c-35.3 0-64 28.7-64 64M480 32v192H288V32zm-32 32H320v128h128z" />',viewBox:"0 0 512 512"},re={name:"report-element",content:'<path d="M480 320V192H160v48H96v-80h256V32H32v128h32v320h32v-48h64v48h256V352H160v48H96V272h64v48ZM64 64h256v64H64Zm128 320h192v64H192z" />',viewBox:"0 0 512 512"},ne={name:"right-double-quotes",content:'<path d="M136 100.2c-57.4 0-104 46.6-104 104s46.6 104 104 104c20.1 0 38.9-5.7 54.8-15.6-14.2 30.5-37.4 55.2-69.2 73.7-44 25.6-89.1 29.6-89.6 29.6l1.3 15.9 1.3 15.9c2.1-.2 51.8-4.4 102-33.2 47.1-27 103.3-81.3 103.3-186.1.1-1.4.1-2.8.1-4.3 0-57.3-46.6-103.9-104-103.9m344 104c0-57.4-46.6-104-104-104s-104 46.6-104 104 46.6 104 104 104c20.1 0 38.9-5.7 54.8-15.6-14.2 30.5-37.4 55.2-69.2 73.7-44 25.6-89.1 29.6-89.6 29.6l2.6 31.9c2.1-.2 51.8-4.4 102-33.2 47.1-27 103.3-81.3 103.3-186.1.1-1.4.1-2.8.1-4.3" />',viewBox:"0 0 512 512"},ie={name:"whole-word",content:'<path d="M379 243.6c-2.7-9.3-6.5-17.2-11.7-23.8-5-6.4-11.4-11.4-18.6-15-7.4-3.5-15.9-5.2-25.3-5.2-16.3 0-30 6.9-41.4 20.5V160h-26v192h26v-14.8c10.8 9.8 24.1 14.8 39.7 14.8 8.7 0 16.9-1.8 24.3-5.4 7.5-3.8 14-8.9 19.5-15.5 5.5-6.8 9.7-14.9 12.9-24.4 3-9.6 4.6-20.3 4.6-32.1 0-11.5-1.3-21.8-4-31m-31.8 73.7c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.3-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.1 9.2 9.3 22.9 9.3 41 0 18.9-3.3 33.3-9.7 42.7m-139-107.8c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 44.6h26.1c.7-16.2 12.8-24.4 36-24.4 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.4 6.2 5.1 1.5 1.8 2.5 4 3.2 6.6s1.1 5.6 1.4 9.4c.1 3.6.1 8.3.1 13.5h-12.8c-59.3.1-89.1 17.3-89.1 51.5 0 6.4 1.3 12 3.8 17.2 2.4 5.3 5.9 9.6 10.4 13.4 4.4 3.8 9.8 6.7 16 8.7 6.1 2.2 12.7 3.2 20 3.2 20.9 0 51.8-18.6 51.8-18.6V351h26v-97.5c0-22-5.4-36.6-15.8-44m-10.2 100c-2.3 3.4-5.1 6.3-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8-3.9 1.8-8 3.3-12.2 4.3s-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4.1-8.3-9.8-8.3-17.2 0-20.6 18.9-30.9 56.9-30.9h18zM448 96h-32v320h32zm0-32H64V32h384zm0 415.6H64v-32h384z" />',viewBox:"0 0 512 512"},ae={name:"data-sds",content:'<path d="M224 152.54c105.6 0 191.4-27.4 191.9-61.3v-.3c0-34-85.9-61.6-191.9-61.6S32.1 56.94 32.1 90.94v.3c.5 33.9 86.3 61.3 191.9 61.3m-191.9 71.9c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.5c-.5 33.9-86.3 61.3-191.9 61.3s-191.49-27.4-192-61.29l.1 86.49zm-.1 41.21.1 86.49v.3c.4 26.7 53.7 49.3 127.9 57.8v-86.8c-74.29-8.4-127.59-31.1-128-57.79m320 37.69 105 70-105 70v-52.5H189v-35h163z" />',viewBox:"0 0 512 512"},se={name:"download-light",content:'<path d="M368 256 256 384 144 256h96V32h32v224zm112 192H32v32h448z" />',viewBox:"0 0 512 512"},ce={name:"eye-slash",content:'<path d="m245.43 358.68 24.92 24.92c-4.75.26-9.54.4-14.34.4-94.7 0-179.7-51.5-224-128 13.19-22.83 30.01-43.43 49.65-61.1l23.01 23.01C91.46 229.29 79.51 242.07 69.8 256c26.33 33.77 54.15 53.86 72.6 65.1 39.18 23.88 77.54 33.37 103.03 37.58m131.42-4.44L480 457.39 457.39 480 345.51 368.12s-.07.03-.1.04L232.2 254.94l.11-.03-39.21-39.21-.03.11-26.8-26.8s.04-.05.06-.08l-7.01-7.01s-.06.03-.09.04l-24.17-24.17s.06-.03.09-.05L32 54.61 54.61 32l111.87 111.87A260.2 260.2 0 0 1 256 128c94.8 0 179.8 51.5 224 128-24 41.53-60.05 75.69-103.15 98.24m-7.25-33.14c27.8-16.4 54.1-38.7 72.6-65.1-18.4-26.4-44.8-48.7-72.6-65.1-12.2-7.2-25.1-13.2-38.4-17.9 22.6 20.5 36.8 50.1 36.8 83 0 25.15-8.31 48.37-22.32 67.08l7.01 7.01c5.76-2.76 11.41-5.74 16.91-8.99" />',viewBox:"0 0 512 512"},le={name:"display-inline-block",content:'<path d="M448 32h32v448h-32zM32 32h32v448H32zm64 352h320V128H96zm64-192h192v128H160z" />',viewBox:"0 0 512 512"},he={name:"paper-plane",content:'<path d="M469.783 271.879 54.329 446.734c-13.149 5.534-26.266-8.042-21.225-21.967l48.3-133.404c2.16-5.966 7.298-10.169 13.326-10.901C312.468 256 239.85 263.839 312.468 256c-72.618-7.839 0 0-217.739-24.462-6.027-.732-11.165-4.935-13.325-10.901l-48.3-133.404C28.063 73.308 41.18 59.732 54.33 65.266l415.454 174.855c13.623 5.734 13.623 26.024 0 31.758" />',viewBox:"0 0 512 512"},ue={name:"gauge-linear",content:'<path d="M16 164h480v184H16zM90 58h110l-55 74zM16 380h36v74H16zm444 0h36v74h-36zm-222 0h36v74h-36zm-111 0h36v36h-36zm222 0h36v36h-36z" />',viewBox:"0 0 512 512"},pe={name:"gauge-radial",content:'<path d="M256 16C123.5 16 16 123.5 16 256s107.5 240 240 240 240-107.5 240-240S388.5 16 256 16m0 445.7c-113.4 0-205.7-92.3-205.7-205.7S142.6 50.3 256 50.3 461.7 142.6 461.7 256 369.4 461.7 256 461.7m0-377.1c94.7 0 171.4 76.7 171.5 171.5h-68.6c0-56.8-46.2-102.9-102.9-102.9-22.2 0-42.8 7-59.6 19l37.4 37.4c6.7-3.2 14.3-5 22.2-5 28.4 0 51.4 23 51.4 51.4s-23 51.4-51.4 51.4-51.4-23-51.4-51.4c0-8 1.8-15.5 5-22.2l-37.4-37.4c-11.9 16.9-19 37.4-19 59.6H84.6c0-41.2 14.5-78.9 38.7-108.5l-12.7-12.7 24.2-24.2 12.7 12.7c29.6-24.2 67.3-38.7 108.5-38.7" />',viewBox:"0 0 512 512"},de={name:"envelope-box",content:'<path d="m377 182.4-88.8 88.8-31.2 29-33.2-29-88.8-88.8c-7.7 2-13.8 8.1-15.8 15.8l73 73-73 73c2 7.7 8.1 13.8 15.8 15.8l73-73 49 44.8 47-44.8 73 73c7.7-2 13.8-8.1 15.8-15.8l-73-73 73-73c-2-7.7-8.1-13.8-15.8-15.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-32 329.6c0 12.4-10 22.4-22.4 22.4H118.4C106 384 96 374 96 361.6V182.4c0-12.4 10-22.4 22.4-22.4h275.2c12.4 0 22.4 10 22.4 22.4z" />',viewBox:"0 0 512 512"},ve={name:"envelope-link",content:'<path d="M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80m0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16M32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32zm23.7 32L224 200.3 392.3 32c11 2.9 19.7 11.6 22.6 22.6L310.6 158.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L288 181.5l-64 64-64-64L55.7 285.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L33.1 54.6C36 43.6 44.7 34.9 55.7 32" />',viewBox:"0 0 512 512"},fe={name:"envelope",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm23.7 32L256 296.3 424.3 128c11 2.9 19.7 11.6 22.6 22.6L342.6 254.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L320 277.5l-64 64-64-64L87.7 381.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L65.1 150.6c2.9-11 11.6-19.7 22.6-22.6" />',viewBox:"0 0 512 512"},me={name:"warning-circle",content:'<path d="M256 480c123.7 0 224-100.3 224-224S379.7 32 256 32 32 132.3 32 256s100.3 224 224 224m-32-352h64v160h-64zm0 256v-64h64v64z" />',viewBox:"0 0 512 512"},ge={name:"warning-triangle",content:'<path d="M256 32 0 480h512zm-32 160h64v160h-64zm0 256v-64h64v64z" />',viewBox:"0 0 512 512"},ye={name:"info-solid",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m-32 96h64v64h-64zm96 256H192v-32h32v-96h-32v-32h96v128h32z" />',viewBox:"0 0 512 512"},be={name:"font-grow",content:'<path d="m384 32-96 128h192zM222 96h-60L32 480h60l32.4-96h135.2l32.4 96h60zm-78 230.4 48-141.7 48 141.7z" />',viewBox:"0 0 512 512"},xe={name:"font-shrink",content:'<path d="m384 160 96-128H288zm-152 0h-48L80 480h48l25.9-80h108.2l25.9 80h48zm-62.4 192L208 233.9 246.4 352z" />',viewBox:"0 0 512 512"},we={name:"text-overflow",content:'<path d="M288 304v176h32V304zm0-272v176h32V32zM64 32v448h32V32zm288 288v-48H128v-32h224v-48l96 64z" />',viewBox:"0 0 512 512"},_e={name:"text-wrap-arrow",content:'<path d="M64 176v32h384v-32zm0-64v32h384v-32zm0 256v32h160v-32zm0-64v32h160v-32zm0 128v32h160v-32zm288-32v.12c5.22.04 10.43.04 16.04-.12zm94.44-64.64c-1.28 7.68-4.16 15.04-8 22.4-2.06 3.65-4.27 7.06-6.65 10.24-15.2 20.5-36.6 31.17-63.75 32H352v48l-96-64 96-64v48h14.12c18.88 0 33.28-7.68 43.2-23.68 2.24-3.84 3.84-7.68 5.12-11.52 2.24-8.32 2.24-16.96 0-24.96-2.88-10.56-9.28-20.48-18.88-26.88-8.64-6.08-18.24-8.96-28.8-8.96H64v-32h305.32c34.24.32 65.6 24.32 75.2 56.96.96 3.2 1.6 6.08 1.92 9.28 1.92 9.92 2.24 19.52 0 29.12M64 48v32h384V48z" />',viewBox:"0 0 512 512"},Ce={name:"text-truncate",content:'<path d="M448 32v384h-32V64H95.92L96 480H64V32zm0 416h-32v32h32zm-64 .08h-31.92V480H384zm-64-.08h-32v32h32z" />',viewBox:"0 0 512 512"},Oe={name:"text-clip",content:'<path d="M64 32v448h32V32zm384 448V32h-32v448zM320 320v-48H128v-32h192v-48l96 64z" />',viewBox:"0 0 512 512"},Se={name:"border-color",content:'<path d="M480 384v96H168l95.9-96zm-80-182.14L121.86 480H32v-89.86L310.14 112zm-65.28-24.89-22.4-22.4L82.56 384.01l-5.44 5.44 22.72 22.72L128 384.01zm136.02-45.98L426.03 176 336 86.29l45.01-45.02c12.36-12.36 32.33-12.36 45.01 0l44.71 45.02c12.36 12.04 12.36 32.33 0 44.69z" />',viewBox:"0 0 512 512"},ze={name:"border-type",content:'<path d="M479 96H33v64h446zM96 384c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32m128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32m128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32m128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32M224 224H32v64h192zm256 0H288v64h192z" />',viewBox:"0 0 512 512"},Me={name:"thumb-down-outline",content:'<path d="M0 240a48 48 0 0 0 48 48h144v112a48 48 0 0 0 95.7 5.5C299 355 323 303 352 256a32 32 0 0 0 32 32h96a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32h-96a32 32 0 0 0-32 32c-25-18-42-32-80-32H112a48 48 0 0 0-44.6 65.7 48 48 0 0 0-32 64A48 48 0 0 0 12.2 208 47.8 47.8 0 0 0 0 240M383.8 31.7h96v224h-96zm-332 160h-6c-8.8 0-14-7.2-14-16s7.1-16 16-16h32a16 16 0 1 0 0-32h-2c-8.9 0-14-7.2-14-16s7.1-16 16-16h32a16 16 0 1 0 0-32 16 16 0 1 1 0-32h160c23 2 65 36 80 48v128c-49 50-85 142-96 192a16 16 0 1 1-32 0v-144h-176c-8.9 0-16-7.2-16-16s5.1-16 14-16h5.8c8-1 14.2-7.9 14.2-16s-6.2-15-14-16" />',viewBox:"0 0 512 512"},Pe={name:"thumb-down",content:'<path d="M12.2 208a47.8 47.8 0 0 1 23.2-78.3 48 48 0 0 1 32-64A48 48 0 0 1 112 0h160c38 0 55 14 80 32v224c-29 47-53 99-64.3 149.5A48 48 0 0 1 192 400V288H48a48 48 0 0 1-35.8-80M384 32v224a32 32 0 0 0 32 32h64a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32" />',viewBox:"0 0 512 512"},Ve={name:"thumb-up-outline",content:'<path d="M512 208a48 48 0 0 0-48-48H320V48a48 48 0 0 0-95.7-5.5C213 93 189 145 160 192a32 32 0 0 0-32-32H32a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h96a32 32 0 0 0 32-32c25 18 42 32 80 32h160a48 48 0 0 0 44.6-65.7 48 48 0 0 0 32-64 48 48 0 0 0 23.2-78.3 47.8 47.8 0 0 0 12.2-32M128.2 416.3h-96v-224h96zm332-160h6c8.8 0 14 7.2 14 16s-7.2 16-16 16h-32a16 16 0 1 0 0 32h2c8.8 0 14 7.2 14 16s-7.2 16-16 16h-32a16 16 0 1 0 0 32 16 16 0 1 1 0 32h-160c-23-2-65-36-80-48v-128c49-50 85-142 96-192a16 16 0 1 1 32 0v144h176a16 16 0 0 1 16 16c0 8.9-5.2 16-14 16h-5.8a16.2 16.2 0 0 0-.1 32Z" />',viewBox:"0 0 512 512"},Ae={name:"thumb-up",content:'<path d="M499.8 240a47.8 47.8 0 0 1-23.2 78.3 48 48 0 0 1-32 64A48 48 0 0 1 400 448H240c-38 0-55-14-80-32V192c29-47 53-99 64.3-149.5A48 48 0 0 1 320 48v112h144a48 48 0 0 1 35.8 80M128 416V192a32 32 0 0 0-32-32H32a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h64a32 32 0 0 0 32-32" />',viewBox:"0 0 512 512"},je={name:"sparkles",content:'<path d="m320 32 54.3 137.7L512 224l-137.7 54.3L320 416l-54.3-137.7L128 224l137.7-54.3zM94 350 0 384l94 34 34 94 34-94 94-34-94-34-34-94zM70.6 70.6 0 96l70.5 25.5L96 192l25.5-70.5L192 96l-70.5-25.5L96 0 70.5 70.5Z" />',viewBox:"0 0 512 512"},ke={name:"paragraph-mark",content:'<path d="M423.79 69.29h-74.57v410.16h-37.29V69.29h-74.57v410.16h-37.29V255.73c-61.76 0-111.86-50.1-111.86-111.86s50.1-111.86 111.86-111.86h223.72V69.3Z" />',viewBox:"0 0 512 512"},He={name:"paragraph-height",content:'<path d="M480 64H224V32h256zm0 32H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm-368 32 80-128h-64V160h64L112 32 32 160h64v160H32z" />',viewBox:"0 0 512 512"},Ie={name:"user-outline",content:'<path d="M256 224c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96m0-32c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64M96 480c-17.7 0-32-14.301-32-32 0-106 86-192 192-192s192 86 192 192c0 17.699-14.301 32-32 32zm160-192c-88.367 0-160 71.635-160 160h320c0-88.365-71.633-160-160-160" />',viewBox:"0 0 512 512"},Be={name:"undo",content:'<path d="M479.9 416c-57.7-56.6-136.7-96-223.9-96v128L32 256 256 64v128c122.2 0 221.5 102.4 223.9 224" />',viewBox:"0 0 512 512"},Le={name:"redo",content:'<path d="M256 192V64l224 192-224 192V320c-87.2 0-166.2 39.4-223.9 96C34.5 294.4 133.9 192 256 192" />',viewBox:"0 0 512 512"},Te={name:"arrow-rotate-ccw",content:'<path d="m62 176 55.5 32C103.8 231.6 96 258.9 96 288c0 88.2 71.8 160 160 160s160-71.8 160-160-71.8-160-160-160v64L96 96 256 0v64c123.7 0 224 100.3 224 224S379.7 512 256 512 32 411.7 32 288c0-40.8 10.9-79.1 30-112" />',viewBox:"0 0 512 512"},Ee={name:"arrow-rotate-cw",content:'<path d="M480 288c0 123.7-100.3 224-224 224S32 411.7 32 288 132.3 64 256 64V0l160 96-160 96v-64c-88.2 0-160 71.8-160 160s71.8 160 160 160 160-71.8 160-160c0-29.1-7.8-56.4-21.5-80l55.5-32c19.1 32.9 30 71.2 30 112" />',viewBox:"0 0 512 512"},De={name:"arrows-no-repeat",content:'<path d="m321 434.2 47.5 47.5C335.5 501 297 512 256 512 132.3 512 32 411.7 32 288c0-41 11-79.5 30.3-112.6l47.5 47.5c-8.9 19.9-13.8 41.9-13.8 65 0 88.2 71.8 160 160 160 23.1.1 45.2-4.8 65-13.7m118.3-17.5c12.9-18.3 23.1-38.7 30.1-60.4 6.9-21.5 10.6-44.5 10.6-68.3 0-40.8-10.9-79.1-30-112l-55.5 32c13.6 23.5 21.5 50.9 21.5 80 0 4.8-.2 9.5-.6 14.2-2.2 24.8-10.1 47.9-22.3 68.2L173.6 150.9c20.3-12.2 43.4-20.1 68.2-22.3 4.7-.4 9.4-.6 14.2-.6v64l160-96L256 0v64c-23.8 0-46.7 3.7-68.3 10.6-21.8 7-42.1 17.2-60.4 30.1L22.6 0 0 22.6 489.4 512l22.6-22.6z" />',viewBox:"0 0 512 512"},Ne={name:"arrow-rotate-ccw-small",content:'<path d="m101.4 238.6 46.4 12.4c-2.5 9.3-3.8 19-3.8 29 0 61.8 50.2 112 112 112s112-50.2 112-112-50.2-112-112-112v56l-128-80 128-80v56c88.4 0 160 71.6 160 160s-71.6 160-160 160S96 368.4 96 280c0-14.3 1.9-28.2 5.4-41.4" />',viewBox:"0 0 512 512"},Re={name:"arrow-rotate-cw-small",content:'<path d="M416 280c0 88.4-71.6 160-160 160S96 368.4 96 280s71.6-160 160-160V64l128 80-128 80v-56c-61.8 0-112 50.2-112 112s50.2 112 112 112 112-50.2 112-112c0-10-1.3-19.7-3.8-29l46.4-12.4c3.5 13.2 5.4 27.1 5.4 41.4" />',viewBox:"0 0 512 512"},Fe={name:"clock",content:'<path d="M256 128h-32v160h160v-32H256zm0-96C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-105.9 0-192-86.1-192-192S150.1 64 256 64s192 86.1 192 192-86.1 192-192 192" />',viewBox:"0 0 512 512"},Ue={name:"calendar",content:'<path d="M416 416H288V288h128zm64-352v384c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h64V0h64v32h128V0h64v32h64c17.6 0 32 14.4 32 32m-32 128H64v255.9l.1.1 383.9-.1zm0-127.9q-.15-.15 0 0l-64-.1v32h-64V64H192v32h-64V64H64.1l-.1.1V160h384z" />',viewBox:"0 0 512 512"},Ke={name:"save",content:'<path d="M384 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V128zm-64 32v128h-64V64zm128 384-383.9.1-.1-.1V64.1l.1-.1H96v160h256V64h18.7l77.3 77.3z" />',viewBox:"0 0 512 512"},qe={name:"print",content:'<path d="M448 160h-32V96l-64-64H128c-17.7 0-32 14.3-32 32v96H64c-17.6 0-32 14.4-32 32v160c0 17.6 14.4 32 32 32h32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32v-64h32c17.6 0 32-14.4 32-32V192c0-17.6-14.4-32-32-32M128 64h192v64h64v64H128zm320 256h-64v127.9l-.1.1H128.1l-.1-.1V320H64v-32h384zm-288 0h192v32H160zm0 64h160v32H160z" />',viewBox:"0 0 512 512"},$e={name:"pencil",content:'<path d="m334.9 86.6 45.3-45.3c12.4-12.4 32.8-12.4 45.3 0l45.3 45.3c12.4 12.4 12.4 32.8 0 45.3l-45.3 45.3zm-22.6 22.6L32 389.5V480h90.5l280.3-280.3zM99.9 412.1l-22.6-22.6 235-235 22.6 22.6z" />',viewBox:"0 0 512 512"},Xe={name:"trash",content:'<path d="M416 96h-96V64c0-17.6-14.4-32-32-32h-96c-17.6 0-32 14.4-32 32v32H64v64h32v288c0 17.6 14.4 32 32 32h224c17.6 0 32-14.4 32-32V160h32zM192 64h95.9l.1.1V96h-96c.1-.1.1-32.1 0-32m160 384H128.1l-.1-.1V160h32v256h32V160h32v256h32V160h32v256h32V160h32z" />',viewBox:"0 0 512 512"},Ge={name:"paperclip",content:'<path d="M384 128v256h-32V128c0-52.9-43.1-96-96-96s-96 43.1-96 96v288c0 35.3 28.7 64 64 64s64-28.7 64-64V128c0-17.6-14.4-32-32-32s-32 14.4-32 32v256h-32V128c0-35.3 28.7-64 64-64s64 28.7 64 64v288c0 52.9-43.1 96-96 96s-96-43.1-96-96V128C128 57.4 185.4 0 256 0s128 57.4 128 128" />',viewBox:"0 0 512 512"},Ye={name:"paperclip-alt",content:'<path d="M407 452.1c-18.6 18.6-43 27.9-67.5 27.9s-48.9-9.3-67.6-27.9L69.3 249.4c-49.7-49.7-49.7-130.5 0-180.2s130.5-49.7 180.2 0l180.2 180.2-22.7 22.5L226.9 91.8c-37.2-37.2-97.9-37.2-135.1 0s-37.2 97.9 0 135.1l202.7 202.7c24.8 24.8 65.2 24.8 90.1 0 24.8-24.8 24.8-65.2 0-90.1L181.9 136.8c-12.4-12.4-32.7-12.4-45 0s-12.4 32.7 0 45L317 362l-22.5 22.5-180.2-180.1c-24.8-24.8-24.8-65.2 0-90.1s65.2-24.8 90.1 0L407 317c37.3 37.2 37.3 97.9 0 135.1" />',viewBox:"0 0 512 512"},We={name:"link",content:'<path d="M384 384c-47.4 0-88.7-25.8-110.8-64H384c35.4 0 64-28.6 64-64s-28.7-64-64-64H273.2c22.1-38.2 63.5-64 110.8-64 70.7 0 128 57.3 128 128s-57.3 128-128 128M96 256c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32m-32 0c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.4 0-64 28.6-64 64" />',viewBox:"0 0 512 512"},Ze={name:"unlink",content:'<path d="M384 384c-47.4 0-88.7-25.8-110.8-64H384c35.4 0 64-28.6 64-64s-28.7-64-64-64H273.2c22.1-38.2 63.5-64 110.8-64 70.7 0 128 57.3 128 128s-57.3 128-128 128M64 256c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.3 0-64 28.6-64 64M272 97.6V0h-32v97.6c5.2-1 10.5-1.6 16-1.6s10.8.6 16 1.6m-60.1 11.7-69-69-22.6 22.6 69 69c5.9-9 13.6-16.7 22.6-22.6m110.8 22.6 69-69-22.6-22.6-69 69c9 5.9 16.7 13.6 22.6 22.6M256 416c-5.5 0-10.8-.6-16-1.6V512h32v-97.6c-5.2 1-10.5 1.6-16 1.6m-66.7-35.9-69 69 22.6 22.6 69-69c-9-5.9-16.7-13.6-22.6-22.6m110.8 22.6 69 69 22.6-22.6-69-69c-5.9 9-13.6 16.7-22.6 22.6" />',viewBox:"0 0 512 512"},Qe={name:"link-vertical",content:'<path d="M128 384c0-47.4 25.8-88.7 64-110.8V384c0 35.4 28.6 64 64 64s64-28.7 64-64V273.2c38.2 22.1 64 63.5 64 110.8 0 70.7-57.3 128-128 128s-128-57.3-128-128M256 96c17.7 0 32 14.3 32 32v256c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32m0-32c-35.4 0-64 28.6-64 64v110.8c-38.2-22.1-64-63.5-64-110.8C128 57.3 185.3 0 256 0s128 57.3 128 128c0 47.4-25.8 88.7-64 110.8V128c0-35.4-28.6-64-64-64" />',viewBox:"0 0 512 512"},Je={name:"unlink-vertical",content:'<path d="M414.4 272H512v-32h-97.6c1 5.2 1.6 10.5 1.6 16s-.5 10.8-1.6 16m-11.6-60.1 69-69-22.6-22.6-69 69c8.9 5.9 16.6 13.6 22.6 22.6m-22.7 110.8 69 69 22.6-22.6-69-69c-5.9 9-13.6 16.7-22.6 22.6M96 256c0-5.5.6-10.8 1.6-16H0v32h97.6c-1-5.2-1.6-10.5-1.6-16m35.9-66.8-69-69-22.6 22.6 69 69c5.9-8.9 13.6-16.6 22.6-22.6m-22.6 110.9-69 69 22.6 22.6 69-69c-9-5.9-16.7-13.6-22.6-22.6M128 384c0-47.4 25.8-88.7 64-110.8V384c0 35.4 28.6 64 64 64s64-28.7 64-64V273.2c38.2 22.1 64 63.5 64 110.8 0 70.7-57.3 128-128 128s-128-57.3-128-128M256 64c-35.4 0-64 28.6-64 64v110.8c-38.2-22.1-64-63.5-64-110.8C128 57.3 185.3 0 256 0s128 57.3 128 128c0 47.4-25.8 88.7-64 110.8V128c0-35.4-28.6-64-64-64" />',viewBox:"0 0 512 512"},to={name:"lock",content:'<path d="M384 224h-32v-96c0-53-43-96-96-96s-96 43-96 96v96h-32c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V256c0-17.6-14.4-32-32-32m-192-96c0-35.3 28.7-64 64-64s64 28.7 64 64v96H192zm64 256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32" />',viewBox:"0 0 512 512"},eo={name:"unlock",content:'<path d="M416 224H224v-96c0-53-43-96-96-96s-96 43-96 96v128h32V128c0-35.3 28.7-64 64-64s64 28.7 64 64v96h-32c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V256c0-17.6-14.4-32-32-32M288 384c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32" />',viewBox:"0 0 512 512"},oo={name:"cancel",content:'<path d="M256 32c-50.3 0-96.8 16.6-134.1 44.6-17.2 12.8-32.4 28.1-45.3 45.3C48.6 159.2 32 205.7 32 256c0 123.7 100.3 224 224 224 50.3 0 96.8-16.6 134.1-44.6 17.2-12.8 32.4-28.1 45.3-45.3 28-37.4 44.6-83.8 44.6-134.1 0-123.7-100.3-224-224-224m0 384c-88.2 0-160-71.8-160-160 0-32.6 9.8-62.9 26.6-88.2l221.6 221.6C318.9 406.2 288.6 416 256 416m133.4-71.8L167.8 122.6C193.1 105.8 223.4 96 256 96c88.2 0 160 71.8 160 160 0 32.6-9.8 62.9-26.6 88.2" />',viewBox:"0 0 512 512"},ro={name:"cancel-outline",content:'<path d="M256 32c-56.1 0-107.4 20.6-146.7 54.7-8.1 7-15.6 14.6-22.6 22.6C52.6 148.6 32 199.9 32 256c0 123.7 100.3 224 224 224 56.1 0 107.4-20.6 146.7-54.7 8.1-7 15.6-14.6 22.6-22.6C459.4 363.4 480 312.1 480 256c0-123.7-100.3-224-224-224m0 416c-106 0-192-86-192-192 0-47.2 17.1-90.5 45.4-124L380 402.6c-33.5 28.3-76.8 45.4-124 45.4m146.6-68L132 109.4C165.5 81.1 208.8 64 256 64c106 0 192 86 192 192 0 47.2-17.1 90.5-45.4 124" />',viewBox:"0 0 512 512"},no={name:"cancel-circle",content:'<path d="m169.4 214.6 128 128c-12.5 6-26.6 9.4-41.4 9.4-52.9 0-96-43.1-96-96 0-14.8 3.4-28.8 9.4-41.4M256 160c-14.8 0-28.8 3.4-41.4 9.4l128 128c6-12.5 9.4-26.6 9.4-41.4 0-52.9-43.1-96-96-96m224 96c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-64 0c0-88.2-71.8-160-160-160-32.6 0-62.9 9.8-88.2 26.6-17.9 11.9-33.4 27.3-45.3 45.3C105.8 193.1 96 223.4 96 256c0 88.2 71.8 160 160 160 32.6 0 62.9-9.8 88.2-26.6 17.9-11.9 33.4-27.3 45.3-45.3 16.7-25.2 26.5-55.5 26.5-88.1" />',viewBox:"0 0 512 512"},io={name:"check",content:'<path d="M434.7 82.7 480 128 192 416 32 256l45.3-45.3L192 325.5z" />',viewBox:"0 0 512 512"},ao={name:"check-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192m-32-154-83-83-45 45 128 128 176-176-45-45z" />',viewBox:"0 0 512 512"},so={name:"check-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m-32 352L96 256l45-45 83 83 147-147 45 45z" />',viewBox:"0 0 512 512"},co={name:"x",content:'<path d="M416 141.3 301.3 256 416 370.7 370.7 416 256 301.3 141.3 416 96 370.7 210.7 256 96 141.3 141.3 96 256 210.7 370.7 96z" />',viewBox:"0 0 512 512"},lo={name:"x-outline",content:'<path d="M384 338.7 338.7 384 256 301.3 173.3 384 128 338.7l82.7-82.7-82.7-82.7 45.3-45.3 82.7 82.7 82.7-82.7 45.3 45.3-82.7 82.7zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192" />',viewBox:"0 0 512 512"},ho={name:"x-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m128 306.7L338.7 384 256 301.3 173.3 384 128 338.7l82.7-82.7-82.7-82.7 45.3-45.3 82.7 82.7 82.7-82.7 45.3 45.3-82.7 82.7z" />',viewBox:"0 0 512 512"},uo={name:"plus",content:'<path d="M288 224V96h-64v128H96v64h128v128h64V288h128v-64z" />',viewBox:"0 0 512 512"},po={name:"plus-outline",content:'<path d="M288 288v96h-64v-96h-96v-64h96v-96h64v96h96v64zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192" />',viewBox:"0 0 512 512"},vo={name:"plus-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m32 256v96h-64v-96h-96v-64h96v-96h64v96h96v64z" />',viewBox:"0 0 512 512"},fo={name:"minus",content:'<path d="M96 224v64h320v-64z" />',viewBox:"0 0 512 512"},mo={name:"minus-outline",content:'<path d="M128 224h256v64H128zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192" />',viewBox:"0 0 512 512"},go={name:"minus-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32M128 288v-64h256v64z" />',viewBox:"0 0 512 512"},yo={name:"sort-asc",content:'<path d="M96 352h320v64H96zm0-128h224v64H96zm0-128h128v64H96z" />',viewBox:"0 0 512 512"},bo={name:"sort-desc",content:'<path d="M96 96h320v64H96zm0 128h224v64H96zm0 128h128v64H96z" />',viewBox:"0 0 512 512"},xo={name:"sort-clear",content:'<path d="m110.9 224 64 64H96v-64zM96 416h128v-64H96zm214.6-128h9.4v-64h-73.4l-64-64H416V96H118.6l-64-64L32 54.6 457.4 480l22.6-22.6z" />',viewBox:"0 0 512 512"},wo={name:"sort-asc-small",content:'<path d="M256 192v224h-32V192h-96L240 64l112 128z" />',viewBox:"0 0 512 512"},_o={name:"sort-desc-small",content:'<path d="M352 288 240 416 128 288h96V64h32v224z" />',viewBox:"0 0 512 512"},Co={name:"filter",content:'<path d="M64 64v32l160 160v224l64-64V256L448 96V64z" />',viewBox:"0 0 512 512"},Oo={name:"filter-clear",content:'<path d="m143.5 64 168.2 168.2L288 256v160l-64 64V256L64 96V64zm236.1 100.4L448 96V64H279.3l-64-64L192 22l298 298 22-23.3z" />',viewBox:"0 0 512 512"},So={name:"filter-small",content:'<path d="M128 128h256v32l-96 96v96l-64 64V256l-96-96z" />',viewBox:"0 0 512 512"},zo={name:"filter-sort-asc-small",content:'<path d="M448 128v32l-96 96v64l-32 64V256l-96-96v-32zM64 224h64v160h32V224h64l-80-96z" />',viewBox:"0 0 512 512"},Mo={name:"filter-sort-desc-small",content:'<path d="M448 128v32l-96 96v64l-32 64V256l-96-96v-32zM144 384l80-96h-64V128h-32v160H64z" />',viewBox:"0 0 512 512"},Po={name:"filter-add-expression",content:'<path d="M480 64v32H32V64zm-192 96h192v-32H288zm0 128h192v-64H288zm0 96h192v-32H288zm0 64h192v-32H288zM96 352h64v-64h64v-64h-64v-64H96v64H32v64h64z" />',viewBox:"0 0 512 512"},Vo={name:"filter-add-group",content:'<path d="M352 352v32h-32v64h32v32h-64V352zm64 0v32h32v64h-32v32h64V352zM160 160H96v64H32v64h64v64h64v-64h64v-64h-64zm128 0h192v-32H288zM32 64v32h448V64zm256 224h192v-64H288z" />',viewBox:"0 0 512 512"},Ao={name:"login",content:'<path d="M384 480h96V32h-96zM32 224v64h128v96l160-128-160-128v96z" />',viewBox:"0 0 512 512"},jo={name:"logout",content:'<path d="M128 32H32v448h96zm64 192v64h128v96l160-128-160-128v96z" />',viewBox:"0 0 512 512"},ko={name:"download",content:'<path d="M32 384v96h448v-96zM288 32h-64v128h-96l128 160 128-160h-96z" />',viewBox:"0 0 512 512"},Ho={name:"upload",content:'<path d="M32 384v96h448v-96zm192-64h64V192h96L256 32 128 192h96z" />',viewBox:"0 0 512 512"},Io={name:"hyperlink-open",content:'<path d="M32 480h448V256h-32v192H64V64h192V32H32zM320 32l56.9 56.9.5.5L224 242.7l45.3 45.3 153.3-153.4L480 192V32z" />',viewBox:"0 0 512 512"},Bo={name:"hyperlink-open-sm",content:'<path d="M96 416h320v-96h-32v64H128V128h64V96H96zM256 96h160v160l-57.4-57.4L237.3 320 192 274.7l121.4-121.4-.5-.5z" />',viewBox:"0 0 512 512"},Lo={name:"launch",content:'<path d="M96 96v320h96v-32h-64V128h256v64h32V96zm320 160v160H256l57.4-57.4L192 237.3l45.3-45.3 121.4 121.4.5-.5z" />',viewBox:"0 0 512 512"},To={name:"window",content:'<path d="M96 96v320h320V96zm288 288H128V192h256z" />',viewBox:"0 0 512 512"},Eo={name:"window-restore",content:'<path d="M448 32v288h-32V128H160V32zM64 192h288v288H64zm32 256h224V288H96z" />',viewBox:"0 0 512 512"},Do={name:"window-minimize",content:'<path d="M416 288v64H96v-64z" />',viewBox:"0 0 512 512"},No={name:"gear",content:'<path d="m462.7 317.9-41.5-31.4c1.8-9.9 2.8-20.1 2.8-30.5s-1-20.6-2.8-30.5l41.5-31.4c6.4-4.9 8.2-13.8 4.2-20.8L433 114.6c-4-7-12.6-9.9-20.1-6.7l-48 20.2c-15.4-13.2-33.3-23.6-52.8-30.5L305.8 46c-1-8-7.8-14-15.9-14h-67.8c-8.1 0-14.9 6-15.9 14l-6.5 51.6c-19.5 6.9-37.4 17.3-52.8 30.5l-48-20.2c-7.4-3.1-16-.2-20.1 6.7l-33.9 58.7c-4 7-2.2 15.9 4.2 20.8l41.5 31.4C89 235.4 88 245.6 88 256s1 20.6 2.8 30.5l-41.5 31.4c-6.4 4.9-8.2 13.8-4.2 20.8L79 397.4c4 7 12.6 9.9 20.1 6.7l48-20.2c15.4 13.2 33.3 23.6 52.8 30.5l6.5 51.6c1 8 7.8 14 15.9 14h67.8c8.1 0 14.9-6 15.9-14l6.5-51.6c19.5-6.9 37.4-17.3 52.8-30.5l48 20.2c7.4 3.1 16 .2 20.1-6.7l33.9-58.7c3.7-7 1.9-15.9-4.6-20.8M256 340c-46.4 0-84-37.6-84-84s37.6-84 84-84 84 37.6 84 84-37.6 84-84 84" />',viewBox:"0 0 512 512"},Ro={name:"gears",content:'<path d="m331.9 364.2-29.6-22.4c1.3-7.1 2-14.3 2-21.8 0-7.4-.7-14.7-2-21.8l29.6-22.4c4.6-3.5 5.9-9.8 3-14.8l-24.2-42c-2.9-5-9-7.1-14.3-4.8L262 228.7c-11-9.4-23.8-16.9-37.7-21.8l-4.6-36.9c-.7-5.7-5.6-10-11.3-10H160c-5.8 0-10.6 4.3-11.3 10l-4.6 36.9c-13.9 4.9-26.7 12.4-37.7 21.8l-34.3-14.5c-5.3-2.2-11.5-.2-14.3 4.8l-24.3 42c-2.9 5-1.6 11.3 3 14.8l29.6 22.4c-1.3 7.1-2 14.3-2 21.8 0 7.4.7 14.7 2 21.8l-29.6 22.4c-4.6 3.5-5.9 9.8-3 14.8l24.2 42c2.9 5 9 7.1 14.3 4.8l34.3-14.5c11 9.4 23.8 16.9 37.7 21.8l4.6 36.9c.7 5.7 5.6 10 11.3 10h48.4c5.8 0 10.6-4.3 11.3-10l4.6-36.9c13.9-4.9 26.7-12.4 37.7-21.8l34.3 14.5c5.3 2.2 11.5.2 14.3-4.8l24.2-41.9c3-5 1.8-11.4-2.8-14.9M184.2 380c-33.1 0-60-26.9-60-60s26.9-60 60-60 60 26.9 60 60-26.9 60-60 60m293.1-225.5L459.4 141c.8-4.2 1.2-8.6 1.2-13 0-4.5-.4-8.8-1.2-13l17.8-13.4c2.7-2.1 3.5-5.9 1.8-8.9l-14.5-25.2c-1.8-3-5.4-4.2-8.6-2.8l-20.6 8.7c-6.7-5.7-14.3-10.1-22.7-13.1L409.9 38c-.4-3.4-3.3-6-6.8-6h-29c-3.4 0-6.4 2.5-6.8 6l-2.7 22.2c-8.3 2.9-16 7.5-22.7 13.1l-20.6-8.7c-3.2-1.4-6.9-.1-8.6 2.8l-14.5 25.2c-1.8 3-1 6.9 1.8 8.9l17.8 13.4c-.8 4.2-1.2 8.6-1.2 13 0 4.5.4 8.8 1.2 13L300 154.5c-2.7 2.1-3.5 5.9-1.8 8.9l14.5 25.2c1.8 3 5.4 4.2 8.6 2.8l20.6-8.7c6.7 5.7 14.3 10.1 22.7 13.1l2.7 22.2c.4 3.4 3.3 6 6.8 6h29c3.4 0 6.4-2.5 6.8-6l2.7-22.2c8.3-2.9 16-7.5 22.7-13.1l20.6 8.7c3.2 1.4 6.9.1 8.6-2.8l14.5-25.2c1.8-3 1-6.9-1.7-8.9m-88.7 9.5c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1c-.1 19.9-16.1 36.1-36.1 36.1" />',viewBox:"0 0 512 512"},Fo={name:"wrench",content:'<path d="M470.7 402.7 306 238.1c9-18.8 14-39.8 14-62.1 0-79.5-64.5-144-144-144-22.2 0-43.3 5-62.1 14l76.4 76.4c12.4 12.4 12.4 32.8 0 45.3l-22.6 22.6c-12.4 12.4-32.8 12.4-45.3 0L46 113.9c-9 18.8-14 39.9-14 62.1 0 79.5 64.5 144 144 144 22.3 0 43.4-5.1 62.2-14.1l164.7 164.7c12.3 12.5 32.7 12.5 45.1.1l22.7-22.7c12.4-12.4 12.4-32.8 0-45.3M448 425.5 425.4 448 265.8 288.5c8.3-6.7 15.9-14.3 22.6-22.6z" />',viewBox:"0 0 512 512"},Uo={name:"eye",content:'<path d="M256 128c-94.8 0-179.8 51.5-224 128 44.3 76.5 129.3 128 224 128s179.8-51.5 224-128c-44.2-76.5-129.2-128-224-128m-32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M69.8 256c18.4-26.4 44.8-48.7 72.6-65.1 12.2-7.2 25.1-13.2 38.4-17.9-22.6 20.5-36.8 50.1-36.8 83s14.2 62.5 36.8 83c-13.3-4.7-26.2-10.7-38.4-17.9-27.8-16.4-54.2-38.7-72.6-65.1m299.8 65.1c-12.2 7.2-25.1 13.2-38.4 17.9 22.6-20.5 36.8-50.1 36.8-83s-14.2-62.5-36.8-83c13.3 4.7 26.2 10.7 38.4 17.9 27.8 16.4 54.2 38.7 72.6 65.1-18.5 26.4-44.8 48.7-72.6 65.1" />',viewBox:"0 0 512 512"},Ko={name:"search",content:'<path d="M365.3 320h-22.7l-26.7-26.7C338.5 265.7 352 230.4 352 192c0-88.4-71.6-160-160-160S32 103.6 32 192s71.6 160 160 160c38.4 0 73.7-13.5 101.3-36.1l26.7 26.7v22.7L434.7 480l45.3-45.3zM64 192c0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128S64 262.7 64 192" />',viewBox:"0 0 512 512"},qo={name:"zoom-in",content:'<path d="M288 224h-64v64h-64v-64H96v-64h64V96h64v64h64zm192 210.7L434.7 480 320 365.3v-22.7l-26.7-26.7C265.7 338.5 230.4 352 192 352c-88.4 0-160-71.6-160-160S103.6 32 192 32s160 71.6 160 160c0 38.4-13.5 73.7-36.1 101.3l26.7 26.7h22.7zM192 320c70.7 0 128-57.3 128-128S262.7 64 192 64 64 121.3 64 192s57.3 128 128 128" />',viewBox:"0 0 512 512"},$o={name:"zoom-out",content:'<path d="M288 224H96v-64h192zm192 210.7L434.7 480 320 365.3v-22.7l-26.7-26.7C265.7 338.5 230.4 352 192 352c-88.4 0-160-71.6-160-160S103.6 32 192 32s160 71.6 160 160c0 38.4-13.5 73.7-36.1 101.3l26.7 26.7h22.7zM192 320c70.7 0 128-57.3 128-128S262.7 64 192 64 64 121.3 64 192s57.3 128 128 128" />',viewBox:"0 0 512 512"},Xo={name:"arrows-move",content:'<path d="M384 320v-32h-96v96h32l-64 96-64-96h32v-96h-96v32l-96-64 96-64v32h96v-96h-32l64-96 64 96h-32v96h96v-32l96 64z" />',viewBox:"0 0 512 512"},Go={name:"calculator",content:'<path d="M64 64v384h384V64zm96 352H96v-64h64zm0-96H96v-64h64zm96 96h-64v-64h64zm0-96h-64v-64h64zm160 96h-96V256h96zm0-224H96V96h320z" />',viewBox:"0 0 512 512"},Yo={name:"cart",content:'<path d="M192 368c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48m144-48c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48M128 96V64H32v32h64v192h288v-32H128zm32 128h256v-32H160zm0-96v32h288v-32z" />',viewBox:"0 0 512 512"},Wo={name:"connector",content:'<path d="M416 112c0 26.51-21.49 48-48 48-20.898 0-38.667-13.359-45.258-32H256v288h-98.742c-6.591 18.641-24.36 32-45.258 32-26.51 0-48-21.49-48-48s21.49-48 48-48c20.898 0 38.667 13.359 45.258 32H224V96h98.742c6.591-18.641 24.36-32 45.258-32 26.51 0 48 21.49 48 48" />',viewBox:"0 0 512 512"},Zo={name:"plus-sm",content:'<path d="M352 224v64h-64v64h-64v-64h-64v-64h64v-64h64v64z" />',viewBox:"0 0 512 512"},Qo={name:"minus-sm",content:'<path d="M352 224v64H160v-64z" />',viewBox:"0 0 512 512"},Jo={name:"kpi-status-deny",content:'<path d="M480 256 256 480 32 256 256 32z" />',viewBox:"0 0 512 512"},tr={name:"kpi-status-hold",content:'<path d="M256 64 32 448h448z" />',viewBox:"0 0 512 512"},er={name:"kpi-status-open",content:'<path d="M480 256c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224" />',viewBox:"0 0 512 512"},or={name:"equal",content:'<path d="M96 288h320v64H96zm0-128v64h320v-64z" />',viewBox:"0 0 512 512"},rr={name:"not-equal",content:'<path d="m290.7 224-37.3 64H416v64H216l-56 96h-48l56-96H96v-64h109.3l37.3-64H96v-64h184l56-96h48l-56 96h88v64z" />',viewBox:"0 0 512 512"},nr={name:"less-or-equal",content:'<path d="m318.1 352-160-160 160-160L352 65.9 225.9 192 352 318.1zM128 416v32h256v-32z" />',viewBox:"0 0 512 512"},ir={name:"greater-or-equal",content:'<path d="M160 318.1 286.1 192 160 65.9 193.9 32l160 160-160 160zM128 416v32h256v-32z" />',viewBox:"0 0 512 512"},ar={name:"divide",content:'<path d="M416 64 192 448h-64L352 64z" />',viewBox:"0 0 512 512"},sr={name:"accessibility",content:'<path d="M208 48c0-26.5 21.5-48 48-48s48 21.5 48 48-21.5 48-48 48-48-21.5-48-48m240 112v-32H64v32l128 16v80l-32 224h48l32-160h32l32 160h48l-32-224v-80z" />',viewBox:"0 0 512 512"},cr={name:"barcode-outline",content:'<path d="M96 384H64V128h32zm96-256h-64v224h64zm64 0h-32v224h32zm64 0h-32v224h32zm64 0h-32v224h32zm64 0h-32v256h32zm64-32v320c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h448c17.7 0 32 14.3 32 32m-32 0H32v320h448z" />',viewBox:"0 0 512 512"},lr={name:"barcode",content:'<path d="M480 64H32C14.3 64 0 78.3 0 96v320c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32M96 384H64V128h32zm96-32h-64V128h64zm64 0h-32V128h32zm64 0h-32V128h32zm64 0h-32V128h32zm64 32h-32V128h32z" />',viewBox:"0 0 512 512"},hr={name:"barcode-scanner",content:'<path d="M32 96H0V0h96v32H32zm0 288H0v96h96v-32H32zM416 0v32h64v64h32V0zm64 448h-64v32h96v-96h-32zm-192-32h32V288h-32zm32-352h-32v128h32zm-64 0h-32v128h32zM128 416h64V288h-64zm-64 0h32V288H64zM192 64h-64v128h64zm32 352h32V288h-32zM64 64v128h32V64zm384 0h-32v128h32zm0 352V288h-32v128zm-96 0h32V288h-32zm32-352h-32v128h32zm96 160H32v32h448z" />',viewBox:"0 0 512 512"},ur={name:"qr-code-outline",content:'<path d="M192 224v32h-32v-32zm-64 64h32v-32h-32zm-32-64v32h32v-32zm-32 64h32v-32H64zm128 0h32v-32h-32zm64-64h-32v32h32zm32-32h-32v32h32zm-64-32v32h32v-32zm64-32h-32v32h32zm-64-32v32h32V96zm64-32h-32v32h32zm32 192v-32h-32v32zm-96 32v32h32v-32zm64-32h-32v32h32zm0 64h-32v32h32zm-64 32v32h32v-32zm32 32v32h32v-32zm-32 64h32v-32h-32zm64-96v32h32v-32zm32-32v-32h-32v32zm32-32v-32h-32v32zm32-64h-32v32h32zm32 64v-32h-32v32zm32-64h-32v32h32zm-64 96v-32h-32v32zm-32 32v-32h-32v32zm0 32h32v-32h-32zm32-32h32v-32h-32zm64-32v-32h-32v32zm-128 64v32h32v-32zm-32 64h32v-32h-32zm64 0h32v-32h-32zm32-32h32v-32h-32zm64-32v-32h-32v32zm0 64v-32h-32v32zM512 0v512H0V0zm-32 32H32v448h448zm-32 160H320V64h128zm-32-32-.5-64H352v64zm-224 32H64V64h128zm-32-32-.5-64H96v64zm32 288H64V320h128zm-32-32-.5-64H96v64z" />',viewBox:"0 0 512 512"},pr={name:"qr-code",content:'<path d="M320 0v192h192V0zm160 160H352V32h128zm-32-32h-64V64h64zM0 0v192h192V0zm160 160H32V32h128zm-32-32H64V64h64zM0 320v192h192V320zm160 160H32V352h128zm-32-32H64v-64h64zm32-224h32v32h-32zm0 64h-32v-32h32zm-64-64h32v32H96zm-32 32H32v-32h32zm32 32H64v-32h32zm128 0h-32v-32h32zm32-32h-32v-32h32zm0-64h32v32h-32zm0 0h-32v-32h32zm0-64h32v32h-32zm0 0h-32V96h32zm0-64h32v32h-32zm0 0h-32V32h32zm64 192h-32v-32h32zm-96 32h32v32h-32zm64 0h-32v-32h32zm0 64h-32v-32h32zm-32 32h-32v-32h32zm0 0h32v32h-32zm0 64h-32v-32h32zm64-64h-32v-32h32zm0-64h-32v-32h32zm0-64h32v32h-32zm64 0h-32v-32h32zm32 32h-32v-32h32zm32-32h-32v-32h32zm-96 32h32v32h-32zm0 64h-32v-32h32zm0 0h32v32h-32zm32-32h32v32h-32zm32-32h32v32h-32zm-96 96h32v32h-32zm0 64h-32v-32h32zm-32 32h-32v-32h32zm192-192h-32v-32h32zM352 416h32v32h-32zm0 64h-32v-32h32zm64-64h-32v-32h32zm32-96h32v32h-32zm0 64h-32v-32h32zm-32 32h32v32h-32zm0 64h-32v-32h32zm64-64h-32v-32h32zm0 64h-32v-32h32zm32-32h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zM256 512h-32v-32h32zm64 0h-32v-32h32zm32-32h32v32h-32zm64 0h32v32h-32zm96 32h-32v-32h32z" />',viewBox:"0 0 512 512"},dr={name:"qr-code-scanner",content:'<path d="M512 0v96h-32V32h-64V0zm-32 448h-64v32h96v-96h-32zM64 64h128v128H64zm32 96h64V96H96zM32 32h64V0H0v96h32zm0 224h448v-32H32zm0 128H0v96h96v-32H32zM288 96h-32v32h32zm-64-32v32h32V64zm224 128H320V64h128zm-32-96h-64v64h64zm-128 96v-32h-32v32zm-32-64h-32v32h32zM64 288h128v128H64zm32 96h64v-64H96zm192-64h-32v32h32zm-64-32v32h32v-32zm32 128h32v-32h-32zm-32-64v32h32v-32zm96-64h-32v32h32zm-32 64v32h32v-32zm64 0v-32h-32v32zm-32 64h32v-32h-32zm64-128h-32v32h32zm-32 64v32h32v-32zm64 0v-32h-32v32zm0 64v-32h-32v32zm32-128h-32v32h32zm0 96v-32h-32v32z" />',viewBox:"0 0 512 512"},vr={name:"barcode-qr-code-scanner",content:'<path d="M256 288h32v128h-32zm64 128h64V288h-64zm128 0V288h-32v128zM32 32h64V0H0v96h32zm0 352H0v96h96v-32H32zM416 0v32h64v64h32V0zm64 448h-64v32h96v-96h-32zm0-224H32v32h448zM288 64h-32v128h32zm96 0h-64v128h64zm64 0h-32v128h32zM64 64h96v96H64zm32 64h32V96H96zm128 32h-32v32h32zm0-96h-32v64h32zM64 320h96v96H64zm32 64h32v-32H96zm96 0v32h32v-64h-32zm0-64h32v-32h-32z" />',viewBox:"0 0 512 512"},fr={name:"signature",content:'<path d="M32 448h448v32H32zM448 32H288v64h160zm-96 340.9L256 224l32-96h160l32 96-96 148.9V416h-32zm0-59.1V256h32v57.8l60.8-94.3-19.9-59.5H311.1l-19.9 59.6zM78.8 377.3c8.7-10.3 23.9-25.6 37.2-17.3 14.9 9.3 25.1 42.1 56.9 43.8 27.2-.6 18.9-34.6 36.7-33.2 16.6 0 19.5 47.8 46.5 47.9 25.7.1 37.4-14.5 37.3-28 .1-29-62.5-87.7-85.4-98-21.4-9.6-34-2.3-39.7 6-5.3 7.9 9.3 34.5-13.7 41.2-17.3 1.5-29.2-33.2-62.1-33.2S77 354.1 32 352c13.1 6 32.8 42 46.8 25.3" />',viewBox:"0 0 512 512"},mr={name:"hand",content:'<path d="M442.5 130.7c-15.5-6.7-33.7-.2-41.4 15.1-8.2 21.3-23.3 79.9-25.8 87.6-2.1 6.5-5 12-11.3 9.7-4.7-1.7-3.5-7.2-2.4-12.6l2.7-17 18.1-112.4c2.8-17.4-9-33.8-26.5-36.6-17.4-2.8-33.8 9-36.6 26.5L304 197.9s-2.1 14.1-3 18.7c-1 5.2-1.4 12.3-7.7 11.9-5-.3-5.3-3.8-5.3-7.3V64c0-17.6-14.2-31.9-31.8-32h.1-.3c-17.7 0-32 14.3-32 32v.4c0 1.1.9 140.6.6 149.7-.2 5.4-.7 9.5-6.8 10.3-7.8 1.1-8.6-8-8.6-8l-3.1-20.9v.7L190 90.8v.1c-2.6-17.5-18.9-29.5-36.2-26.9-17.5 2.6-29.5 18.9-26.9 36.2 0 .1 0 .2.1.3l24.8 165.3 2.4 15.9c.5 3.2-.7 6.6-3.3 8.6l-.1.1c-4.1 3.1-10 2.5-13.5-1.4l-12.2-13.2-37.3-41-.1-.1c-11.9-13-32.1-14-45.3-2.1-13 11.9-14 32.1-2.1 45.2l55.7 61s34.1 49 62.5 88.4c28.3 39.3 72.3 52.4 129.5 52.4s113.9-21.8 126.9-95.4c13.7-78.5 6.5-107.9 23.7-150.4 11.6-28.9 15.1-45.8 21.1-63.2 5.4-15.6-1.9-33.3-17.2-39.9" />',viewBox:"0 0 512 512"},gr={name:"pointer",content:'<path d="m285.5 326.1 43.9 124.4-83.5 29.5-43.8-124.2L128 416V32l256 288z" />',viewBox:"0 0 512 512"},yr={name:"stick",content:'<path d="M192 96c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32v32h128zm128 160c0 35.3-28.7 64-64 64s-64-28.7-64-64v-96H64v96c0 106 86 192 192 192s192-86 192-192v-96H320zm96-192h-64c-17.7 0-32 14.3-32 32v32h128V96c0-17.7-14.3-32-32-32" />',viewBox:"0 0 512 512"},br={name:"unstick",content:'<path d="M290.6 131.4c12.4-12.4 12.4-32.6 0-45l-45-45c-12.4-12.4-32.6-12.4-45 0L178 63.8l90.1 90zM268.1 334c-24.9 24.9-65.2 24.9-90.1 0s-24.9-65.2 0-90.1l67.5-67.5-90-90.1L88 153.9C13.4 228.5 13.4 349.4 88 424s195.5 74.6 270.1 0l67.5-67.5-90-90.1zm202.6-67.5-45-45c-12.4-12.4-32.6-12.4-45 0L358.2 244l90 90 22.5-22.5c12.4-12.4 12.4-32.6 0-45" />',viewBox:"0 0 512 512"},xr={name:"set-column-position",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M192 416H96V96h96zm224 0H224v-32h192zm0-64H224v-64h192zm0-96H224v-64h192zm0-96H224V96h192z" />',viewBox:"0 0 512 512"},wr={name:"clock-arrow-rotate",content:'<path d="M256 32C132.3 32 32 132.3 32 256h32c0-105.9 86.1-192 192-192s192 86.1 192 192-86.1 192-192 192c-57 0-108.3-25-143.5-64.5L176 320H32v144l57.8-57.8C130.8 451.5 190 480 256 480c123.7 0 224-100.3 224-224S379.7 32 256 32m-32 96v160h160v-32H256V128z" />',viewBox:"0 0 512 512"},_r={name:"play",content:'<path d="M0 512V0l512 256z" />',viewBox:"0 0 512 512"},Cr={name:"pause",content:'<path d="M320 0h160v512H320zM32 512h160V0H32z" />',viewBox:"0 0 512 512"},Or={name:"stop",content:'<path d="M512 512H0V0h512z" />',viewBox:"0 0 512 512"},Sr={name:"rewind",content:'<path d="M256 256 512 96v320zm0 160V96L0 256z" />',viewBox:"0 0 512 512"},zr={name:"forward",content:'<path d="M0 416V96l256 160zm512-160L256 96v320z" />',viewBox:"0 0 512 512"},Mr={name:"volume-down",content:'<path d="M0 352h96l128 128V32L96 160H0zm288 28V132c55.2 14.2 96 64.3 96 124s-40.8 109.8-96 124" />',viewBox:"0 0 512 512"},Pr={name:"volume-up",content:'<path d="M0 352h96l128 128V32L96 160H0zm288 28V132c55.2 14.2 96 64.3 96 124s-40.8 109.8-96 124m0-380v44.8c45.2 0 88.3 20.8 121.2 58.4C444.6 143.6 464 197.8 464 256s-19.4 112.4-54.8 152.8c-33 37.7-76 58.4-121.2 58.4V512c123.7 0 224-114.6 224-256S411.7 0 288 0" />',viewBox:"0 0 512 512"},Vr={name:"volume-mute",content:'<path d="M96 160 224 32v448L96 352H0V160zm416 29.3L466.7 144 400 210.7 333.2 144 288 189.3l66.7 66.7-66.7 66.7 45.3 45.3 66.7-66.7 66.7 66.7 45.3-45.3-66.8-66.7z" />',viewBox:"0 0 512 512"},Ar={name:"hd",content:'<path d="M480 64H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h448c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32M256 384h-64v-96h-64v96H64V128h64v96h64v-96h64zm210.3-68.9c-5.1 16.2-11.8 29.4-19.8 39.1-8.2 9.8-18.2 17.4-29.8 22.4-11.5 4.9-26.3 7.4-43.9 7.4H288V128h82.6c20.3 0 35.4 2.2 46.1 6.8s20.6 12.2 29.5 22.8c8.7 10.5 15.7 24.1 20.6 40.6 4.8 16.2 7.3 36.5 7.3 60.3-.1 21.5-2.7 40.6-7.8 56.6m-54.2-94.2c2.6 8.5 3.9 20.5 3.9 35.6 0 14.5-1.3 26.3-3.9 35.1-2.5 8.4-5.5 14.4-8.9 18-3.3 3.5-7.5 6-12.8 7.7-3.8 1.2-11.8 2.7-28.3 2.7H336V192h12.9c21.4 0 30.6.9 34.5 1.7 6.9 1.4 12.6 4.1 17.5 8.4 4.9 4.5 8.7 10.8 11.2 18.8" />',viewBox:"0 0 512 512"},jr={name:"closed-captions",content:'<path d="M480 64H32S0 64 0 96v320c0 32 32 32 32 32h448c32 0 32-32 32-32V96s0-32-32-32M240 205c-6.1-4.5-13.5-7.8-21.9-10.1-8.5-2.3-17.1-3.5-25.8-3.5q-27 0-42.6 17.4c-10.4 11.6-15.6 27.4-15.6 47.3 0 19.8 5.2 35.4 15.6 46.9s24.3 17.2 41.7 17.2c16.1 0 32.3-4.6 47.6-13.8V373c-17.2 7.4-38.2 11-62.1 11-23.4 0-43.6-5-60.6-15.1s-29.9-24.4-38.9-43-13.4-40-13.4-64.3c0-26.1 5-49.4 15-69.7 10-20.4 24.2-36.1 42.5-47.2s39.4-16.7 63.2-16.7c19 0 37.4 2.6 55.3 7.8zm208 0c-6.1-4.5-13.5-7.8-21.9-10.1-8.5-2.3-17.1-3.5-25.8-3.5q-27 0-42.6 17.4c-10.4 11.6-15.6 27.4-15.6 47.3 0 19.8 5.2 35.4 15.6 46.9s24.3 17.2 41.7 17.2c16.1 0 32.3-4.6 47.6-13.8V373c-17.2 7.4-38.2 11-62.1 11-23.4 0-43.6-5-60.6-15.1s-29.9-24.4-38.9-43-13.4-40-13.4-64.3c0-26.1 5-49.4 15-69.7 10-20.4 24.2-36.1 42.5-47.2s39.4-16.7 63.2-16.7c19 0 37.4 2.6 55.3 7.8z" />',viewBox:"0 0 512 512"},kr={name:"playlist",content:'<path d="M0 256h320v64H0zM512 64H0V0h512zm-128 64.8V397c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V193h96v-65zM0 128v64h320v-64z" />',viewBox:"0 0 512 512"},Hr={name:"music-notes",content:'<path d="M160 170v-64m0-.2v259c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V162.5l256-59.1v165.4c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V32z" />',viewBox:"0 0 512 512"},Ir={name:"play-sm",content:'<path d="M96 416V96l320 160z" />',viewBox:"0 0 512 512"},Br={name:"pause-sm",content:'<path d="M288 96h96v320h-96zM96 416h96V96H96z" />',viewBox:"0 0 512 512"},Lr={name:"stop-sm",content:'<path d="M416 416H96V96h320z" />',viewBox:"0 0 512 512"},Tr={name:"heart-outline",content:'<path d="M447.2 96.8c-43.7-43.7-114.7-43.7-158.4 0L256 129.6l-32.8-32.8c-43.7-43.7-114.7-43.7-158.4 0s-43.7 116.3 0 160l32.8 32.8L256 448l158.4-158.4 32.8-32.8c43.7-43.7 43.7-116.3 0-160m-22.6 137.4L256 402.7 87.4 234.2C72.3 219.1 64 198.7 64 176.8s8.3-42.3 23.4-57.4S122.6 96 144 96s41.5 8.3 56.6 23.4l55.4 55.4 55.4-55.4C326.5 104.3 346.6 96 368 96s41.5 8.3 56.6 23.4 23.4 35.5 23.4 57.4-8.3 42.3-23.4 57.4" />',viewBox:"0 0 512 512"},Er={name:"heart",content:'<path d="m447.2 256.8-32.8 32.8L256 448 97.6 289.6l-32.8-32.8c-43.7-43.7-43.7-116.3 0-160s114.7-43.7 158.4 0l32.8 32.8 32.8-32.8c43.7-43.7 114.7-43.7 158.4 0s43.7 116.3 0 160" />',viewBox:"0 0 512 512"},Dr={name:"star-outline",content:'<path d="M480 202.4 319.1 188 256 32l-63.1 156L32 202.4l122 111.7L117.2 480 256 391.5 394.8 480 358 314.1zM256 353.6l-90.8 57.9 24-108.5-82.1-75.2 108.1-9.7L256 117.3l40.8 100.8 108.1 9.7-82.1 75.2 24.1 108.5z" />',viewBox:"0 0 512 512"},Nr={name:"star",content:'<path d="M256 391.5 117.2 480 154 314.1 32 202.4 192.9 188 256 32l63.1 156L480 202.4 358 314.1 394.8 480z" />',viewBox:"0 0 512 512"},Rr={name:"checkbox",content:'<path d="M64 64v384h384V64zm352 352H96V96h320z" />',viewBox:"0 0 512 512"},Fr={name:"checkbox-checked",content:'<path d="M64 64v384h384V64zm352 352H96V96h320zm-77.3-269.3L384 192 224 352l-96-96 45.3-45.3 50.7 50.7z" />',viewBox:"0 0 512 512"},Ur={name:"checkbox-indeterminate",content:'<path d="M128 128h256v256H128zM64 64v384h384V64zm352 352H96V96h320z" />',viewBox:"0 0 512 512"},Kr={name:"checkbox-null",content:'<path d="M192 64h128v32H192zm224 0h-64v32h64v64h32V64zm0 256h32V192h-32zm0 96h-64v32h96v-96h-32zm-224 32h128v-32H192zm-96-96H64v96h96v-32H96zm0-160H64v128h32zM64 64v96h32V96h64V64z" />',viewBox:"0 0 512 512"},qr={name:"circle",content:'<path d="M384 256c0 70.7-57.3 128-128 128s-128-57.3-128-128 57.3-128 128-128 128 57.3 128 128" />',viewBox:"0 0 512 512"},$r={name:"radiobutton",content:'<path d="M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64m0 352c-88.4 0-160-71.6-160-160S167.6 96 256 96s160 71.6 160 160-71.6 160-160 160" />',viewBox:"0 0 512 512"},Xr={name:"radiobutton-checked",content:'<path d="M351.6 255.3c0 53.2-43.1 96.4-96.4 96.4s-96.4-43.1-96.4-96.4 43.1-96.4 96.4-96.4 96.4 43.2 96.4 96.4M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64m0 352c-88.4 0-160-71.6-160-160S167.6 96 256 96s160 71.6 160 160-71.6 160-160 160" />',viewBox:"0 0 512 512"},Gr={name:"bell",content:'<path d="M192 416h128c0 35.3-28.7 64-64 64s-64-28.7-64-64m160-256c0-42-26.9-77.6-64.4-90.7.3-1.7.4-3.5.4-5.3 0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1.8.2 3.6.4 5.3C186.9 82.4 160 118 160 160c0 88.4-43 160-96 160v64h384v-64c-53 0-96-71.6-96-160" />',viewBox:"0 0 512 512"},Yr={name:"info-circle",content:'<path d="M288 352h32v32H192v-32h32v-96h-32v-32h96zm0-224h-64v64h64zm192 128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192" />',viewBox:"0 0 512 512"},Wr={name:"question-circle",content:'<path d="M352 192c0 45.2-23.4 65.9-40.6 81-15.1 13.3-23.4 20.7-23.4 47h-64c0-55.2 27.1-79.2 45.1-95 13.8-12.1 18.9-16.7 18.9-33 0-17.6-14.4-32-32-32s-32 14.4-32 32h-64c0-53 43-96 96-96s96 43 96 96M224 416h64v-64h-64zm256-160c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192" />',viewBox:"0 0 512 512"},Zr={name:"exclamation-circle",content:'<path d="M224 128h64v160h-64zm0 256h64v-64h-64zm256-128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192" />',viewBox:"0 0 512 512"},Qr={name:"camera",content:'<path d="M448 128h-64l-64-64H192l-64 64H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V160c0-17.6-14.4-32-32-32M256 416c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112m64-112c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64" />',viewBox:"0 0 512 512"},Jr={name:"image",content:'<path d="M304 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m144-96H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32m-.1 272-64-64-80 80L176 224 64 336V96.1l.1-.1h383.8l.1.1z" />',viewBox:"0 0 512 512"},tn={name:"image-export",content:'<path d="M384 384v-79.9l-32-32-80 80-128-128-112 112v-240l.1-.1h383.8l.1.1-.1 223.9H448V96c0-17.6-14.4-32-32-32H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h256v-64zM272 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m48 288h96v64l96-80-96-80v64h-96z" />',viewBox:"0 0 512 512"},en={name:"zoom-actual-size",content:'<path d="M0 32v128L128 32zm384 0 128 128V32zm-260.6 96c-15.1 0-27.4 12.3-27.4 27.4v201.2c0 15.1 12.3 27.4 27.4 27.4h265.2c15.1 0 27.4-12.3 27.4-27.4V155.4c0-15.1-12.3-27.4-27.4-27.4zM384 160v160l-48-64-48 64-80-96-80 96V160zm-96 32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32M0 352v128h128zm512 0L384 480h128z" />',viewBox:"0 0 512 512"},on={name:"zoom-best-fit",content:'<path d="M388.6 128H123.4c-15.1 0-27.4 12.3-27.4 27.4v201.2c0 15.1 12.3 27.4 27.4 27.4h265.2c15.1 0 27.4-12.3 27.4-27.4V155.4c0-15.1-12.3-27.4-27.4-27.4M384 320l-48-64-48 64-80-96-80 96V160h256zM0 160l96 96-96 96zm160 320 96-96 96 96zM352 32l-96 96-96-96zm160 128v192l-96-96zm-256 64c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32" />',viewBox:"0 0 512 512"},rn={name:"image-resize",content:'<path d="M427.3 404.7 352 329.4V32H32v320h297.4l75.3 75.3L352 480h128V352zM64 320V64h256v233.4L203.3 180.7 256 128H128v128l52.7-52.7L297.4 320z" />',viewBox:"0 0 512 512"},nn={name:"crop",content:'<path d="M0 96h64v64H0zm448 256v64h64v-64zm-32-224c0-17.6-14.4-32-32-32H192v64h160v320h64zM96 384c0 17.6 14.4 32 32 32h192v-64H160V32H96z" />',viewBox:"0 0 512 512"},an={name:"mirror",content:'<path d="M192 64H32v384h160zm-31 352s0 .1 0 0l-96.9.1-.1-.1V96.1l.1-.1H160v320zm95 64h-32V32h32zm32-416h160v384H288z" />',viewBox:"0 0 512 512"},sn={name:"flip-horizontal",content:'<path d="M448 448H288V64zm-384 0L224 64v384zm128-224-80 192h80z" />',viewBox:"0 0 512 512"},cn={name:"flip-vertical",content:'<path d="M64 288h384L64 448zm0-224v160h384zm32 128v-80l192 80z" />',viewBox:"0 0 512 512"},ln={name:"rotate",content:'<path d="M256 448q12.3 0 24-1.8v32.3q-11.85 1.5-24 1.5c-12.15 0-16.1-.5-24-1.5v-32.3q11.7 1.8 24 1.8m-116-7c12.7 9.7 26.6 17.8 41.5 24l16.2-28c-15.1-5.9-29.1-14.1-41.5-24.1zm-61-78.5c6.3 14.9 14.4 28.8 24 41.5l28-16.2c-10-12.5-18.1-26.4-24.1-41.5zM256 128v64l128-80-128-80v64q-12.15 0-24 1.5c-17.7 2.2-34.6 6.8-50.5 13.5-14.9 6.3-28.8 14.4-41.5 24-14 10.6-26.4 23-37 37-9.7 12.7-17.8 26.6-24 41.5-6.7 15.9-11.3 32.8-13.5 50.5Q64 275.85 64 288c0 12.15.5 16.1 1.5 24h32.3Q96 300.3 96 288c0-12.3.6-16.2 1.8-24 1.8-11.9 4.9-23.4 9.2-34.3 5.9-15.1 14.1-29.1 24.1-41.5 7.4-9.3 15.8-17.7 25.1-25.1 12.5-10 26.4-18.1 41.5-24.1 10.9-4.3 22.4-7.4 34.3-9.2q11.7-1.8 24-1.8m190.5 136h-32.3q1.8 11.7 1.8 24c0 12.3-.6 16.2-1.8 24h32.3q1.5-11.85 1.5-24c0-12.15-.5-16.1-1.5-24m-65.6 123.8 28 16.2c9.7-12.7 17.8-26.6 24-41.5l-28-16.2c-5.8 15.1-14 29.1-24 41.5M314.3 437l16.2 28c14.9-6.3 28.8-14.4 41.5-24l-16.2-28c-12.4 9.9-26.4 18.1-41.5 24" />',viewBox:"0 0 512 512"},hn={name:"rotate-right",content:'<path d="M320 448V64l160 384zm-32 0H32l256-160zm-32-102.3L143.6 416H256zM64 160v128h32v-96h96v64l96-80-96-80v64z" />',viewBox:"0 0 512 512"},un={name:"rotate-left",content:'<path d="M32 448 192 64v384zm192-160 256 160H224zm32 128h112.4L256 345.7zm64-256V96l-96 80 96 80v-64h96v96h32V160z" />',viewBox:"0 0 512 512"},pn={name:"brush",content:'<path d="M32 480s46.4-5.6 96-16c22.3-4.7 46.9-14 70.7-37.7 56.9-56.9.2-112.9.2-112.9s-56.7-56.9-113.3-.2c-23.4 23.4-20.1 57.1-19.7 89.8.8 59.7-33.9 77-33.9 77M470.7 64 448 41.3c-12.4-12.4-32.8-12.4-45.3 0L204.3 239.8c11.5 5.8 20.8 12.2 27.7 17.6 5.3 4.2 9.2 7.7 11.3 9.8l.8.8.8.8c2.1 2.1 5.6 5.9 9.7 11.1 5.4 6.8 11.8 16.2 17.6 27.6l23.5-23.5 174.9-174.9c12.5-12.3 12.5-32.7.1-45.1M448 86.6 277.4 257.3c-4.8-5.8-8.6-9.9-10.6-11.9-2.3-2.3-6.3-6.1-12-10.7L425.4 64h.1z" />',viewBox:"0 0 512 512"},dn={name:"palette",content:'<path d="m206 256.6 160-160c-2.2-5.7-4.8-11.1-7.9-16.3-24.2-40.8-60.1-66-107.8-75.9-2.3-.5-4.7-1-7.1-1.4C192-5.8 143.1 4.8 96.5 34.6 49.3 64.7 19.2 107.2 6.1 162c-13 54.8-5.2 106.4 23.4 154.6 14.2 23.8 31.3 43.2 51.4 58.4 3.8-25.2 13.4-52 36.4-75 31.3-31.4 64-41.3 88.7-43.4M288 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m-96-32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M64 256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32m0-128c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32m438.7 12.9L480 118.3c-12.4-12.4-32.8-12.4-45.3 0L281.1 271.9c11.5 5.8 20.8 12.2 27.7 17.6 5.3 4.2 9.2 7.7 11.3 9.8l11.3 12.7c5.4 6.8 11.8 16.2 17.6 27.6l153.5-153.5c12.6-12.4 12.6-32.8.2-45.2M354.3 289.3c-4.8-5.8-8.6-9.9-10.6-11.9-2.3-2.3-6.3-6.1-12-10.7L457.4 141h.1l22.5 22.5zm-78.7 169c-23.8 23.7-48.4 33-70.7 37.7-49.6 10.4-96 16-96 16s34.7-17.3 33.9-77c-.4-32.7-3.7-66.4 19.7-89.8 56.6-56.7 113.3.2 113.3.2s56.7 56-.2 112.9" />',viewBox:"0 0 512 512"},vn={name:"droplet",content:'<path d="M256 384v32c-53 0-96-43-96-96h32c0 35.3 28.7 64 64 64m160-72c0 92.8-71.6 168-160 168S96 404.8 96 312C96 181.3 256 32 256 32s160 149.3 160 280m-32 0c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-47.8 64.3-73 122.8-73 169 0 75 57.4 136 128 136s128-61 128-136" />',viewBox:"0 0 512 512"},fn={name:"shape-line",content:'<path d="M480 54.6 54.6 480 32 457.4 457.4 32z" />',viewBox:"0 0 512 512"},mn={name:"brightness-contrast",content:'<path d="M165.5 346.5c12.4 12.5 12.4 32.9 0 45.3l-22.6 22.6c-12.5 12.4-32.8 12.4-45.3 0-12.4-12.5-12.4-32.9 0-45.3l22.6-22.6c12.5-12.4 32.9-12.4 45.3 0M256 128c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v32c0 17.6 14.4 32 32 32m135.8 37.5 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6c-12.4 12.4-12.4 32.8 0 45.3 12.5 12.4 32.8 12.4 45.3 0m-271.6 0c12.4 12.4 32.8 12.4 45.3 0 12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0-12.4 12.5-12.4 32.8 0 45.3zM128 256c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32s14.4 32 32 32h32c17.6 0 32-14.4 32-32m263.8 90.5c-12.4-12.4-32.8-12.4-45.3 0-12.4 12.5-12.4 32.8 0 45.3l22.6 22.6c12.4 12.4 32.8 12.4 45.3 0 12.4-12.4 12.4-32.8 0-45.3zM448 224h-32c-17.6 0-32 14.4-32 32s14.4 32 32 32h32c17.6 0 32-14.4 32-32s-14.4-32-32-32m-96 32c0 53-43 96-96 96s-96-43-96-96 43-96 96-96 96 43 96 96m-32 0c0-35.3-28.7-64-64-64v128c35.3 0 64-28.7 64-64m-64 128c-17.6 0-32 14.4-32 32v32c0 17.6 14.4 32 32 32s32-14.4 32-32v-32c0-17.6-14.4-32-32-32" />',viewBox:"0 0 512 512"},gn={name:"sliders",content:'<path d="M480 96v32H285.3c-6.6 18.6-24.4 32-45.3 32s-38.7-13.4-45.3-32H32V96h162.7c6.6-18.6 24.4-32 45.3-32s38.7 13.4 45.3 32zm-112 96c-20.9 0-38.7 13.4-45.3 32H32v32h290.7c6.6 18.6 24.4 32 45.3 32s38.7-13.4 45.3-32H480v-32h-66.7c-6.6-18.6-24.4-32-45.3-32M176 320c-20.9 0-38.7 13.4-45.3 32H32v32h98.7c6.6 18.6 24.4 32 45.3 32s38.7-13.4 45.3-32H480v-32H221.3c-6.6-18.6-24.4-32-45.3-32" />',viewBox:"0 0 512 512"},yn={name:"invert-colors",content:'<path d="m320 32-64 48 64 48V96h64v64h-32l48 64 48-64h-32V64h-96zM32 64v192h192V64zm192 192v192h192V256zM64 96h128v128H64z" />',viewBox:"0 0 512 512"},bn={name:"transparency",content:'<path d="M64 64v352h352V64zm32 32h96v96h96V96h96v96h-96v96h96v96h-96v-96h-96v96H96v-96h96v-96H96z" />',viewBox:"0 0 512 512"},xn={name:"grayscale",content:'<path d="M32 64C14.3 64 0 78.3 0 96v320c0 17.7 14.3 32 32 32h416c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm0 32h416v320H32zm48 32c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m0 4c6.6 0 12 5.4 12 12v224c0 6.6-5.4 12-12 12s-12-5.4-12-12V144c0-6.6 5.4-12 12-12m-64 1c6.1 0 11 4.9 11 11v224c0 6.1-4.9 11-11 11s-11-4.9-11-11V144c0-6.1 4.9-11 11-11m-64 2c5 0 9 4 9 9v224c0 5-4 9-9 9s-9-4-9-9V144c0-5 4-9 9-9m-64 1c4.4 0 8 3.6 8 8v224c0 4.4-3.6 8-8 8s-8-3.6-8-8V144c0-4.4 3.6-8 8-8m-64 4c2.2 0 4 1.8 4 4v224c0 2.2-1.8 4-4 4s-4-1.8-4-4V144c0-2.2 1.8-4 4-4" />',viewBox:"0 0 512 512"},wn={name:"blur",content:'<path d="M384 320c0 64-32 128-128 128-64 0-128-48-128-128 0-96 128-128 128-256 0 0 128 129.1 128 256" />',viewBox:"0 0 512 512"},_n={name:"sharpen",content:'<path d="M256 32 128 480h256zm0 116.5L341.6 448H170.4z" />',viewBox:"0 0 512 512"},Cn={name:"shapes",content:'<path d="M480 32H160v131.204C86.969 178.029 32 242.594 32 320c0 88.365 71.635 160 160 160 77.406 0 141.972-54.969 156.797-128H480zM192 448c-70.692 0-128-57.308-128-128 0-59.643 40.793-109.758 96-123.967 1.173-.302 2.354-.583 3.539-.852.357-.081.717-.156 1.076-.234a125 125 0 0 1 3.764-.762 126 126 0 0 1 2.557-.448c.369-.061.736-.125 1.105-.184q3.635-.569 7.335-.932c.379-.037.759-.067 1.139-.101a132 132 0 0 1 3.913-.29q1.309-.075 2.623-.125c.392-.015.782-.033 1.174-.045 1.254-.036 2.512-.06 3.775-.06 70.692 0 128 57.308 128 128 0 1.264-.023 2.521-.06 3.775-.012.393-.03.782-.045 1.174a127 127 0 0 1-.207 3.922q-.09 1.31-.207 2.613c-.034.38-.064.761-.102 1.14a127 127 0 0 1-.933 7.339c-.057.365-.121.728-.181 1.092a128 128 0 0 1-.683 3.785q-.256 1.29-.535 2.571c-.075.346-.147.692-.226 1.037a135 135 0 0 1-.855 3.552c-14.208 55.207-64.323 96-123.966 96m256-128h-96c0-88.365-71.635-160-160-160V64h256z" />',viewBox:"0 0 512 512"},On={name:"round-corners",content:'<path d="M448 320c0 70.692-57.308 128-128 128H192c-70.692 0-128-57.308-128-128V192c0-70.692 57.308-128 128-128h128c70.692 0 128 57.308 128 128z" />',viewBox:"0 0 512 512"},Sn={name:"bring-to-front",content:'<path d="M96 128V96h96V64H64v128h32zm224 256h64V128H128v256zm96-64v96h-96v32h128V320z" />',viewBox:"0 0 512 512"},zn={name:"bring-to-back",content:'<path d="M128 192h64V64H64v128zM96 96h64v64H96zm192 192h96V128H224v96h-96v160h160zm128 32h-96v128h128V320zm0 96h-64v-64h64z" />',viewBox:"0 0 512 512"},Mn={name:"bring-forward",content:'<path d="M448 192v256H192V320H64V64h256v128zm-32 32h-96v96h-96v96h192z" />',viewBox:"0 0 512 512"},Pn={name:"bring-backward",content:'<path d="M192 192v256h256V192zm224 224H224V224h192zM320 64H64v256h96V160h160z" />',viewBox:"0 0 512 512"},Vn={name:"align-self-start",content:'<path d="M31 32h32v448H31zm288 64H95v128h224zm128 192v128H95V288zm-32 32H127v64h288z" />',viewBox:"0 0 512 512"},An={name:"align-self-center",content:'<path d="M255 288v-64h96V96h-96V32h-32v64h-96v128h96v64H63v128h160v64h32v-64h160V288zm128 96H95v-64h288z" />',viewBox:"0 0 512 512"},jn={name:"align-self-end",content:'<path d="M64 416h352V288H64zm32-96h288v64H96zm96-224h224v128H192zm288-64v448h-32V32z" />',viewBox:"0 0 512 512"},kn={name:"align-self-start-alt",content:'<path d="M95 96h128v224H95zm192 0h128v352H287zm32 320h64V128h-64zM31 32v32h448V32z" />',viewBox:"0 0 512 512"},Hn={name:"align-self-center-alt",content:'<path d="M415 224V64H287v160h-64v-96H95v96H31v32h64v96h128v-96h64v160h128V256h64v-32zm-32 0v160h-64V96h64z" />',viewBox:"0 0 512 512"},In={name:"align-self-end-alt",content:'<path d="M479 449v32H31v-32zM223 193H95v224h128zm192 224H287V65h128zM383 97h-64v288h64z" />',viewBox:"0 0 512 512"},Bn={name:"thumbnails-up",content:'<path d="M352 32h96v96h-96zm-160 0h96v96h-96zM32 32h96v96H32zm0 160h416v256H32z" />',viewBox:"0 0 512 512"},Ln={name:"thumbnails-right",content:'<path d="M352 352h96v96h-96zm0-160h96v96h-96zm0-160h96v96h-96zM32 32h256v416H32z" />',viewBox:"0 0 512 512"},Tn={name:"thumbnails-down",content:'<path d="M352 352h96v96h-96zm-160 0h96v96h-96zm-160 0h96v96H32zm0-320h416v256H32z" />',viewBox:"0 0 512 512"},En={name:"thumbnails-left",content:'<path d="M32 32v96h96V32zm160 0v416h256V32zM32 192v96h96v-96zm0 160v96h96v-96z" />',viewBox:"0 0 512 512"},Dn={name:"fullscreen",content:'<path d="M0 32h160v64H64v96H0zm64 288H0v160h160v-64H64zM352 32v64h96v96h64V32zm96 384h-96v64h160V320h-64z" />',viewBox:"0 0 512 512"},Nn={name:"fullscreen-exit",content:'<path d="M160 32H96v96H0v64h160zM96 480h64V320H0v64h96zm416-288v-64h-96V32h-64v160zm-96 192h96v-64H352v160h64z" />',viewBox:"0 0 512 512"},Rn={name:"droplet-slash",content:'<path d="m317.9 431 23.2 23.2C316.5 470.6 287.3 480 256 480c-88.4 0-160-75.2-160-168 0-27.8 7.2-56.4 18.6-84.2l24.8 24.8C131.9 274 128 293.9 128 312c0 75 57.4 136 128 136 22.4 0 43.5-6.2 61.9-17M256 416v-32c-35.3 0-64-28.7-64-64h-32c0 53 43 96 96 96m224 41.4L457.4 480 32 54.6 54.6 32l108.7 108.7C207 77.7 256 32 256 32s160 149.3 160 280c0 24.1-4.9 47.1-13.6 67.8zM384 312c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-1.4 1.9-2.7 3.7-4.1 5.6-.8 1.1-1.5 2.1-2.3 3.2l-1.5 2.1-3 4.2c-.2.3-.4.5-.6.8-1 1.5-2.1 3-3.1 4.5-.1.1-.1.2-.2.3l191.2 191.2c.5-1.6 1-3.3 1.4-4.9 0-.2.1-.4.1-.5.4-1.5.8-2.9 1.1-4.4.1-.3.1-.6.2-.9.3-1.4.6-2.7.9-4.1.1-.4.2-.8.2-1.2.2-1.3.5-2.6.7-3.9.1-.5.2-1 .2-1.5.2-1.2.3-2.5.5-3.7.1-.5.1-1.1.2-1.6l.3-3.6c0-.6.1-1.1.1-1.7.1-1.3.2-2.5.2-3.8 0-.5.1-1 .1-1.6.4-1.9.4-3.7.4-5.5" />',viewBox:"0 0 512 512"},Fn={name:"photos",content:'<path d="M256 288c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m96-64v192c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32m-31.8 0q-.15-.15 0 0l-256.1-.1-.1.1v149.9l74.6-70 85.3 80 53.3-50 42.7 40zm63.8-96H128c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32m64-64H192c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32" />',viewBox:"0 0 512 512"},Un={name:"align-to-grid",content:'<path d="M320 320H128V128h192zM96 0H64v512h32zm352 0h-32v512h32zm64 64H0v32h512zm0 352H0v32h512z" />',viewBox:"0 0 512 512"},Kn={name:"size-to-grid",content:'<path d="M384 384H128V128h256zM96 0H64v512h32zm352 0h-32v512h32zm64 64H0v32h512zm0 352H0v32h512z" />',viewBox:"0 0 512 512"},qn={name:"make-same-size",content:'<path d="M288 192v96h-96v-96zM240.1 0l-48.4 64H224v64h33V64h31.6zM256 416v-64h-32v64h-32l48 64 48-64zm224-175.9-64-48.4V224h-64v33h64v31.6zM64 224v-32L0 240l64 48v-32h64v-32zM128 0H0v128h32V32h96zm320 0h-96v32h96v96h32V0zM32 448v-96H0v128h128v-32zm416-96v96h-96v32h128V352z" />',viewBox:"0 0 512 512"},$n={name:"make-same-width",content:'<path d="M480 128H0V32h480zm-192 96h-96v96h96zm192 48.1-64-48.4V256h-64v33h64v31.6zM64 256v-32L0 272l64 48v-32h64v-32zm384 96v96h-96v32h128V352zM32 448v-96H0v128h128v-32z" />',viewBox:"0 0 512 512"},Xn={name:"make-same-height",content:'<path d="M128 0v480H32V0zm96 192v96h96v-96zM272.1 0l-48.4 64H256v64h33V64h31.6zM288 416v-64h-32v64h-32l48 64 48-64zM448 0h-96v32h96v96h32V0zm0 352v96h-96v32h128V352z" />',viewBox:"0 0 512 512"},Gn={name:"make-horizontal-spacing-equal",content:'<path d="M480 160v160h-96v-64h-96v160h-96V256H96v96H32V128h64v96h96V64h96v160h96v-64z" />',viewBox:"0 0 512 512"},Yn={name:"increase-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96zM335.7 352l-22.6 22.6 57.4 57.4-57.4 57.4 22.6 22.6 80-80zM64 432l80 80 22.6-22.6-57.3-57.4 57.4-57.4L144 352z" />',viewBox:"0 0 512 512"},Wn={name:"decrease-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96zM111.6 352 89 374.6l57.4 57.4L89 489.4l22.6 22.6 80-80zM288 432l80 80 22.6-22.6-57.3-57.4 57.4-57.4L368 352z" />',viewBox:"0 0 512 512"},Zn={name:"remove-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96zm-32.5 278.2-22.6-22.6-57.4 57.4-57.4-57.4-22.6 22.6 57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4zm-256 0-22.6-22.6-57.4 57.4-57.4-57.4-22.6 22.6 57.4 57.4L31.5 489l22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4z" />',viewBox:"0 0 512 512"},Qn={name:"make-vertical-spacing-equal",content:'<path d="M256 320v96h96v64H128v-64h96v-96H64v-96h160v-96h-64V32h160v96h-64v96h160v96z" />',viewBox:"0 0 512 512"},Jn={name:"increase-vertical-spacing",content:'<path d="M192 320v96h96v64H64v-64h96v-96H0v-96h160v-96H96V32h160v96h-64v96h160v96zm320 48.1-22.6-22.6-57.4 57.3-57.4-57.4-22.6 22.7 80 80zM432 96l-80 80 22.6 22.6 57.4-57.4 57.4 57.4L512 176z" />',viewBox:"0 0 512 512"},ti={name:"decrease-vertical-spacing",content:'<path d="M191 320v96h96v64H63v-64h96v-96H-1v-96h160v-96H95V32h160v96h-64v96h160v96zm160 105.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-80-80zm80-226.8 80-80L488.4 96 431 153.4 373.6 96 351 118.6z" />',viewBox:"0 0 512 512"},ei={name:"remove-vertical-spacing",content:'<path d="M192 320v96h96v64H64v-64h96v-96H0v-96h160v-96H96V32h160v96h-64v96h160v96zm320 22.6L489.4 320 432 377.4 374.6 320 352 342.6l57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4zm0-288L489.4 32 432 89.4 374.6 32 352 54.6l57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4z" />',viewBox:"0 0 512 512"},oi={name:"eyedropper",content:'<path d="m461.1 56.9-6.2-6.2c-25-25-65.5-25-90.5 0l-60.8 60.8-4.3-4.3c-6.2-6.2-16.4-6.2-22.6 0l-9.4 9.4c-6.2 6.2-6.2 16.4 0 22.6l4.3 4.3L70.8 344.4c-8.2 8.2-14 18.5-16.8 29.7l-21.5 85.7c-2.2 8.6 3.1 17.4 11.7 19.5q3.9.9 7.8 0l85.7-21.4c11.3-2.8 21.5-8.6 29.7-16.8l200.8-200.8 4.4 4.4c6.2 6.2 16.4 6.2 22.6 0l9.4-9.4c6.2-6.2 6.2-16.4 0-22.6l-4.4-4.4 60.8-60.8c25-25 24.9-65.5.1-90.6M224 320h-64l144-144 32 32z" />',viewBox:"0 0 512 512"},ri={name:"snap-grid",content:'<path d="M480 128V96h-96V0h-32v96h-96V0h-32v96h-96V0H96v96H0v32h96v96H0v32h96v96H0v32h96v96h32v-96h96v96h32v-96h96v96h32v-96h96v-32h-96v-96h96v-32h-96v-96zm-352 0h96v96h-96zm0 224v-96h96v96zm224 0h-96v-96h96zm0-128h-96v-96h96z" />',viewBox:"0 0 512 512"},ni={name:"snap-to-gridlines",content:'<path d="M160 32H0v416h288V32zm-32 384H32v-96h96zm0-128H32v-96h96zm0-128H32V64h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96zm256 80c0 44.2-35.8 80-80 80h-32v-32h32c26.5 0 48-21.5 48-48s-21.5-48-48-48h-32v-32h32c44.2 0 80 35.8 80 80m-160-48h32v-32h-32zm0 128h32v-32h-32z" />',viewBox:"0 0 512 512"},ii={name:"snap-to-snaplines",content:'<path d="M224 128h96V96h-96V32h-32v64h-64V32H96v64H32v32h64v256H32v32h64v64h32v-64h64v64h32v-64h256v-32H224zm-32 256h-64V128h64zm208-64h-32v-32h32c26.5 0 48-21.5 48-48s-21.5-48-48-48h-32v-32h32c44.2 0 80 35.8 80 80s-35.8 80-80 80m-48-160h-32v32h32zm-32 160h32v-32h-32z" />',viewBox:"0 0 512 512"},ai={name:"dimensions",content:'<path d="M320 0H0v512h128V128h384V0zM32 32h64v64H32zm64 352H64v32h32v64H32V320h64zm0-192H64v32h32v64H32V128h64zm128-96V64h-32v32h-64V32h160v64zm256 0h-64V64h-32v32h-64V32h160z" />',viewBox:"0 0 512 512"},si={name:"align-self-stretch",content:'<path d="M95 96h320v128H95zM31 480h32V32H31zm64-192h320v128H95zm32 96h256v-64H127zM447 32v448h32V32z" />',viewBox:"0 0 512 512"},ci={name:"align-self-stretch-alt",content:'<path d="M223 96v320H95V96zM31 480h448v-32H31zM415 96v320H287V96zm-32 32h-64v256h64zM31 32v32h448V32z" />',viewBox:"0 0 512 512"},li={name:"align-items-start",content:'<path d="M319 224H95V96h224zM31 480h32V32H31zm64-192v128h352V288z" />',viewBox:"0 0 512 512"},hi={name:"align-items-center",content:'<path d="M415 416H255v64h-32v-64H63V288h160v-64h-96V96h96V32h32v64h96v128h-96v64h160z" />',viewBox:"0 0 512 512"},ui={name:"align-items-end",content:'<path d="M192 96h224v128H192zm256-64v448h32V32zM64 416h352V288H64z" />',viewBox:"0 0 512 512"},pi={name:"align-items-stretch",content:'<path d="M415 224H95V96h320zM31 480h32V32H31zM447 32v448h32V32zM96 416h320V288H96z" />',viewBox:"0 0 512 512"},di={name:"align-items-baseline",content:'<path d="M415 224V64H287v160h-64v-96H95v96H31v32h64v96h128v-96h64v160h128V256h64v-32zm-224 96h-64v-64h64zm192 64h-64V256h64z" />',viewBox:"0 0 512 512"},vi={name:"align-items-start-alt",content:'<path d="M96 96h128v224H96zM32 32v32h448V32zm256 416h128V96H288z" />',viewBox:"0 0 512 512"},fi={name:"align-items-center-alt",content:'<path d="M479 256h-64v160H287V256h-64v96H95v-96H31v-32h64v-96h128v96h64V64h128v160h64z" />',viewBox:"0 0 512 512"},mi={name:"align-items-end-alt",content:'<path d="M223 417H95V193h128zM31 449v32h448v-32zM415 65H287v352h128z" />',viewBox:"0 0 512 512"},gi={name:"align-items-stretch-alt",content:'<path d="M223 96v320H95V96zM31 480h448v-32H31zm0-448v32h448V32zm256 63v320h128V95z" />',viewBox:"0 0 512 512"},yi={name:"align-items-baseline-alt",content:'<path d="M255 288v-64h96V96h-96V32h-32v64h-96v128h96v64H63v128h160v64h32v-64h160V288zm-32 96H95v-64h128zm0-192h-64v-64h64z" />',viewBox:"0 0 512 512"},bi={name:"justify-content-start",content:'<path d="M95 96h128v320H95zM31 480h32V32H31zM255 95v320h128V95z" />',viewBox:"0 0 512 512"},xi={name:"justify-content-center",content:'<path d="M63 96h128v320H63zm160 384h32V32h-32zm64-385v320h128V95z" />',viewBox:"0 0 512 512"},wi={name:"justify-content-end",content:'<path d="M128 96h128v320H128zm320-64v448h32V32zM288 415h128V95H288z" />',viewBox:"0 0 512 512"},_i={name:"justify-content-between",content:'<path d="M63 96h128v320H63zm416-64v448h32V32zM319 415h128V95H319zM-1 480h32V32H-1z" />',viewBox:"0 0 512 512"},Ci={name:"justify-content-around",content:'<path d="M95 96h128v320H95zm384-64v448h32V32zM287 415h128V95H287zM-1 480h32V32H-1z" />',viewBox:"0 0 512 512"},Oi={name:"justify-content-start-alt",content:'<path d="M415 224H95V96h320zM31 32v32h448V32zm65 352h320V256H96z" />',viewBox:"0 0 512 512"},Si={name:"justify-content-center-alt",content:'<path d="M415 192H95V64h320zM31 224v32h448v-32zm65 192h320V288H96z" />',viewBox:"0 0 512 512"},zi={name:"justify-content-end-alt",content:'<path d="M415 257H95V129h320zM31 449v32h448v-32zm65-32h320V289H96z" />',viewBox:"0 0 512 512"},Mi={name:"justify-content-between-alt",content:'<path d="M95 64h320v128H95zM31 512h448v-32H31zm65-64h320V320H96zM31 0v32h448V0z" />',viewBox:"0 0 512 512"},Pi={name:"justify-content-around-alt",content:'<path d="M95 96h320v128H95zM31 512h448v-32H31zm65-96h320V288H96zM31 0v32h448V0z" />',viewBox:"0 0 512 512"},Vi={name:"file-wrench",content:'<path d="M470.7 480 448 502.7c-12.4 12.4-32.8 12.4-45.1-.1l-93.1-93.1c-11.8 4.2-24.5 6.5-37.8 6.5-61.9 0-112-50.1-112-112 0-13.2 2.3-25.9 6.5-37.6l48.9 48.9c12.4 12.4 32.8 12.4 45.3 0l22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-48.9-48.9c11.8-4.2 24.4-6.5 37.6-6.5 61.9 0 112 50.1 112 112 0 13.2-2.3 25.9-6.5 37.6l93.2 93.1c12.4 12.5 12.4 32.9 0 45.3m-22.8-23-86.3-86.3c-6.4 8.6-14 16.2-22.6 22.6l86.4 86.3 22.6-22.5v-.1zM96 64h224v96h96v128h32V128l-96-96H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h160v-32H96z" />',viewBox:"0 0 512 512"},Ai={name:"bold",content:'<path d="M128 96h115.8c25.3 0 44.2 1.1 56.6 3.2s23.6 6.5 33.4 13.2q14.7 10.05 24.6 26.7c6.6 11.1 9.8 23.6 9.8 37.4 0 15-4.1 28.7-12.1 41.2-8.1 12.5-19.1 21.9-32.9 28.2 19.5 5.7 34.5 15.4 45 29s15.7 29.8 15.7 48.2c0 14.6-3.4 28.7-10.2 42.4-6.7 13.8-16 24.8-27.7 33s-26.1 13.3-43.3 15.2c-10.8 1.2-36.7 1.9-78 2.2H128zm64 53v74h30.9c25.2 0 40.8-.4 46.9-1.1 11.1-1.3 19.7-5.2 26.1-11.5 6.3-6.3 9.5-14.7 9.5-25 0-9.9-2.7-18-8.2-24.1-5.5-6.2-13.6-10-24.4-11.2-6.4-.7-24.8-1.1-55.2-1.1zm0 127.1V362h48.6c23.4 0 38.1-.7 44.5-2 9.6-1.8 17.5-6 23.6-12.8s9-15.9 9-27.3c0-9.6-2.3-17.9-7-24.6s-11.4-11.6-20.3-14.7c-8.8-3.1-28-4.6-57.5-4.6z" />',viewBox:"0 0 512 512"},ji={name:"italic",content:'<path d="m377.2 128 6.8-32H198.8l-6.8 32h59.2l-54.4 256h-62l-6.8 32h185.2l6.8-32h-59.2l54.4-256z" />',viewBox:"0 0 512 512"},ki={name:"underline",content:'<path d="M128 416h256v32H128zM320 64v224c0 11.6-3.5 16-10.3 20.3-11.8 7.4-31.3 11.7-53.7 11.7s-41.9-4.3-53.7-11.7c-6.8-4.3-10.3-8.7-10.3-20.3V64h-64v224c0 70.4 64.3 96 128 96s128-25.6 128-96V64z" />',viewBox:"0 0 512 512"},Hi={name:"font-family",content:'<path d="M224 416V160h-95l-.8-64H384v64h-96v256z" />',viewBox:"0 0 512 512"},Ii={name:"foreground-color",content:'<path d="M299.5 96h-87.1L96 416h64l23.3-64h145.4l23.3 64h64zm-92.9 192L256 152.2 305.4 288z" />',viewBox:"0 0 512 512"},Bi={name:"convert-lowercase",content:'<path d="M480.1 416H436v-36h-.7c-13.8 24-34.1 36-60.8 36-19.7 0-35.1-5.3-46.3-16-11.1-10.7-16.7-24.9-16.7-42.5 0-37.8 21.7-59.9 65.3-66.2l59.4-8.4c0-28.6-13.5-42.8-40.7-42.8-23.8 0-45.4 8.2-64.5 24.7V225c21.1-12.5 45.5-18.8 73.1-18.8 50.6 0 75.9 25 75.9 74.8v135zM436 313.1l-42 5.9c-13 1.7-22.8 4.9-29.4 9.5s-9.9 12.7-9.9 24.3c0 8.5 3 15.4 9.1 20.8s14.2 8.1 24.3 8.1c13.8 0 25.2-4.8 34.3-14.5 9-9.7 13.6-21.9 13.6-36.6zM240 416h48L184 96h-48L32 416h48l26-80h108zM121.6 288 160 169.8 198.4 288z" />',viewBox:"0 0 512 512"},Li={name:"convert-uppercase",content:'<path d="M200.1 416H156v-36h-.7c-13.8 24-34.1 36-60.8 36-19.7 0-35.1-5.3-46.3-16-11.1-10.7-16.7-24.9-16.7-42.5 0-37.8 21.7-59.9 65.3-66.2l59.4-8.4c0-28.6-13.5-42.8-40.7-42.8-23.8 0-45.4 8.2-64.5 24.7V225c21.1-12.5 45.5-18.8 73.1-18.8 50.6 0 75.9 25 75.9 74.8v135zM157 313.1l-42 5.9c-13 1.7-22.8 4.9-29.4 9.5s-9.9 12.7-9.9 24.3c0 8.5 3 15.4 9.1 20.8s14.2 8.1 24.3 8.1c13.8 0 25.2-4.8 34.3-14.5 9-9.7 13.6-21.9 13.6-36.6zM432 416h48L376 96h-48L224 416h48l26-80h108zM313.6 288 352 169.8 390.4 288z" />',viewBox:"0 0 512 512"},Ti={name:"strikethrough",content:'<path d="M393.9 320c.1-23.9 4.5-41.4 13.5-52.5 9.1-11.1 20.8-16.7 35.3-16.7 9.6 0 17.7 3.1 24.5 9.3s11.4 15.4 14.1 27.7l27.9-4.7c-3.3-18.4-10.8-32.7-22.5-42.7s-26.8-15-45.2-15c-14.5 0-28.1 3.6-40.4 11.1-12.4 7.4-21.6 18.5-27.7 33.2-5.9 14.4-8.9 31.2-9.1 50.4h-25.5v-2.2c0-13.2-1.7-25.6-5.1-37.1s-8.1-21.4-14.2-29.6c-6-8.1-13.7-14.5-23-19s-19.2-6.8-29.6-6.8c-18.9 0-34.3 8.2-46.4 24.6v-90H192v160h-45v-25.8c0-13.7-.5-23.3-1.4-28.5-1.7-8.5-4.7-15.5-9-21.1-4.3-5.5-10.9-10.2-19.9-13.8s-20.8-5.5-35.3-5.5c-14.6 0-27.4 2.1-38.5 6.4s-19.5 10.4-25.4 18.4c-5.8 8-10 18.4-12.6 31.4l28.1 4.1c3.1-13 7.8-22 14.3-27.1s16.4-7.7 29.9-7.7q21.75 0 32.7 10.5c5.4 5.1 8.1 14 8.1 26.6 0 1.1 0 3.8-.2 8.1-11 4.1-28 7.7-51.2 10.7-11.4 1.5-19.9 3-25.5 4.7-6.7 2-12.9 4.9-18.5 8.6H0v32h1.2c-.8 3.8-1.2 7.7-1.2 11.8 0 15.2 5 27.8 15 37.6S39.3 416 57.9 416c11.3 0 21.8-1.9 31.6-6s20.1-10.9 30.7-20.6h.1c.8 8.6 2.7 20.3 5.7 26.7h30c-3.6-7-6-18.4-7.3-26.1-1-6-1.6-18.7-1.8-37.9h45v64h26.6V389q17.1 27 47.1 27c20.1 0 37.3-8.5 51.7-25.6 8.6-10.2 14.6-23 18-38.3h31.8c3.3 16 9.4 29.2 18.3 39.5 14.1 16.3 32.7 24.5 55.9 24.5 18.5 0 34.1-6 46.8-17.8 12.1-11.3 19.8-26.7 23.2-46.2h.5v-32H393.9zm-280.7 42.6c-4.1 9-10.4 16.1-19 21.4-8.6 5.2-18.4 7.8-29.5 7.8-11.2 0-19.6-2.8-25.4-8.2-5.8-5.6-8.7-12.4-8.7-20.7 0-3.9.7-7.5 2.1-10.9h83.6c-.7 4.1-1.8 7.7-3.1 10.6m105.1-43.3c0-22.2 4.6-39.2 13.7-50.9 9.1-11.8 20-17.6 32.5-17.6s23.1 5.6 31.8 17c8.8 11.3 13.1 28.7 13.2 52.3h-91.3c.1-.3.1-.6.1-.8m77.6 53.6c-9.1 11.8-20 17.7-32.5 17.7-15.5 0-27.7-8-36.7-23.9-2.2-3.9-4-8.8-5.3-14.7H306c-2.4 8.3-5.7 15.3-10.1 20.9m173.5 6.6c-7.5 7.5-16.9 11.2-28.2 11.2-14 0-25.4-5.6-34.1-16.7q-6.6-8.4-9.9-21.9h85.5c-2.6 11.9-7 21.1-13.3 27.4" />',viewBox:"0 0 512 512"},Ei={name:"subscript",content:'<path d="m198.6 304 89.4 89.4-22.6 22.6-89.4-89.4L86.6 416 64 393.4l89.4-89.4L64 214.6 86.6 192l89.4 89.4 89.4-89.4 22.6 22.6zm167.7 144h81.4v32H320v-11.9c0-8 1.7-15.3 5-21.7s7.5-12.1 12.5-17.2 10.5-9.6 16.4-13.5 11.6-7.4 16.9-10.6c5.6-3.3 10.6-6.4 14.8-9.4s7.8-6 10.7-8.9c2.9-3 5.1-6 6.5-9s2.1-6.3 2.1-9.7c0-6.7-2.3-11.8-7-15.3-4.6-3.4-11.7-5.2-21.3-5.2-16.5 0-32.3 5.4-47.4 16.1v-30.5c16.7-8.9 35.5-13.3 56.5-13.3 9.7 0 18.5 1 26.2 3.1s14.3 5.1 19.6 8.9c5.4 3.9 9.4 8.6 12.3 14.1 2.8 5.5 4.2 11.7 4.2 18.5 0 7.2-1.4 13.7-4.1 19.3s-6.3 10.8-10.8 15.4-9.7 8.8-15.6 12.7c-5.9 3.8-12 7.6-18.3 11.1-4.3 2.5-8.4 5-12.4 7.4q-6 3.75-10.5 7.2c-3.1 2.6-7.1 6.6-10 10.4" />',viewBox:"0 0 512 512"},Di={name:"supscript",content:'<path d="m198.6 304 89.4 89.4-22.6 22.6-89.4-89.4L86.6 416 64 393.4l89.4-89.4L64 214.6 86.6 192l89.4 89.4 89.4-89.4 22.6 22.6zm167.7-112h81.4v32H320v-11.9c0-8 1.7-15.3 5-21.7s7.5-12.1 12.5-17.2 10.5-9.6 16.4-13.5 11.6-7.4 16.9-10.6c5.6-3.3 10.6-6.4 14.8-9.4s7.8-6 10.7-8.9c2.9-3 5.1-6 6.5-9s2.1-6.3 2.1-9.7c0-6.7-2.3-11.8-7-15.3-4.6-3.4-11.7-5.2-21.3-5.2-16.5 0-32.3 5.4-47.4 16.1V77.3c16.7-8.9 35.5-13.3 56.5-13.3 9.7 0 18.5 1 26.2 3.1s14.3 5.1 19.6 8.9c5.4 3.9 9.4 8.6 12.3 14.1 2.8 5.5 4.2 11.7 4.2 18.5 0 7.2-1.4 13.7-4.1 19.3s-6.3 10.8-10.8 15.4-9.7 8.8-15.6 12.7c-5.9 3.8-12 7.6-18.3 11.1-4.3 2.5-8.4 5-12.4 7.4q-6 3.75-10.5 7.2c-3.1 2.5-7.1 6.5-10 10.3" />',viewBox:"0 0 512 512"},Ni={name:"div",content:'<path d="M0 416v-6h7.1c7.9 0 13.6-3 16.9-9.1 2-3.6 3-11.8 3-24.5V231.6c0-14-1.3-22.8-3.9-26.3-3.6-4.9-9-7.3-16.1-7.3H0v-6h77.6c28.5 0 50.2 3.8 65 11.4 14.9 7.6 26.8 20.3 35.8 38s13.6 38.2 13.6 61.5c0 31.2-8.1 57.2-24.2 78.1-18.1 23.3-45.6 35-82.6 35zm54-16.2c11.9 3.1 21.9 4.6 29.9 4.6 21.7 0 39.8-9 54.1-26.9s21.5-42.3 21.5-73c0-30.9-7.2-55.3-21.5-73.2-14.3-17.8-32.8-26.8-55.2-26.8q-12.6 0-28.8 4.8zM298 410v6h-83v-6h6.7c7.8 0 13.5-2.7 17-8.1q3.3-5.25 3.3-25.5V231.6q0-17.1-1.8-22.5c-.9-2.8-2.8-5.1-5.7-7.1-4.1-2.6-8.4-4-12.8-4H215v-6h83v6h-7q-11.85 0-17.4 8.1-3.6 5.25-3.6 25.5v144.9c0 11.4.6 18.9 1.9 22.5 1 2.8 3 5.1 6 7.1 4.1 2.6 8.5 4 13.1 4h7zm214-218v6c-6.4 1.4-11.3 3.9-14.6 7.4-4.7 5.3-8.9 13.4-12.6 24.2L421.6 416h-4.9l-67.9-188.8c-3.5-9.7-5.9-15.6-7.4-17.8-2.2-3.3-5-5.9-8.2-7.8-3.3-1.9-7.6-3.1-13.2-3.6v-6h74v6c-8.4 1-13.8 2.7-16.3 5.2s-3.7 5.7-3.7 9.5c0 5.4 2 13.8 6.1 25.2l46.1 128.4L469 239.5c4.2-12.5 6.3-21.2 6.3-26q0-4.65-3.9-9c-2.6-2.9-6.9-4.9-13.1-6.1-.4-.1-1.2-.3-2.3-.5v-6h56zm0-96H0v32h512z" />',viewBox:"0 0 512 512"},Ri={name:"all",content:'<path d="M120.1 343H52l-12 34.4c-2.9 8.5-4.4 14.8-4.4 19 0 3.3 1.3 6.2 3.8 8.8s8.1 4.2 16.5 4.9v5.9H0v-6q11.1-2.4 14.4-6.3c4.4-5.2 9.4-15.7 14.8-31.5L91.4 192H96l61.6 182.2q7.5 21.9 13.5 28.5c4 4.4 9.7 6.8 16.9 7.3v6h-70v-5.9c7-.4 11.7-1.9 14.2-4.3 2.5-2.5 3.7-5.5 3.7-9 0-4.7-1.7-12.2-5.2-22.3zm-3.5-12-30-88.5L55.8 331zm227.7 23.1 4.3 1.2-15.1 60.7H197v-6h6.5c7.4 0 12.6-3.1 15.8-9.3 1.8-3.5 2.7-11.7 2.7-24.5V222.7c0-14-1.2-13.9-3.6-17.5-3.3-4.9-8.3-7.3-14.9-7.3H196v-6h80v6.1s-15.4 1-19.2 3.3-6.4 5.2-7.8 8.8c-1.4 3.5-2.1 3.1-2 16.5v149.6c-.1 9.1.6 15.4 2 18.8 1 2.3 2.7 4 4.8 5.1 2.2 1.1 9 1.7 20.4 1.9h12.9c13.6-.2 23.1-1.5 28.6-4s10.5-7 15-13.5 9.1-16.6 13.6-30.4m163.4 0 4.3 1.2-15.1 60.7H360v-6h6.5c7.4 0 12.6-3.1 15.8-9.3 1.8-3.5 2.7-11.7 2.7-24.5V222.7c0-14-1.2-13.9-3.6-17.5-3.3-4.9-8.3-7.3-14.9-7.3H360v-6h80v6.1s-16.1 1-19.9 3.3-6.4 5.2-7.8 8.8c-1.4 3.5-2.1 3.1-2.4 16.5v149.6c.3 9.1 1 15.4 2.4 18.8 1 2.3 2.7 4 4.8 5.1s9 1.7 20.4 1.9h12.9c13.6-.2 23.1-1.5 28.6-4s10.5-7 15-13.5 9.2-16.6 13.7-30.4M512 96H0v32h512z" />',viewBox:"0 0 512 512"},Fi={name:"h1",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm192-69.9 63-26.1h1v185.3c0 12.3.5 20 1.5 23s3.2 5.3 6.4 7 14.1 2.5 24.1 2.8v6h-96v-6c10.4-.2 20.9-1.1 23.9-2.7s5.1-3.7 6.3-6.3q1.8-3.9 1.8-23.7V258.8c0-16-.5-26.2-1.6-30.8-.8-3.5-2.1-6-4.1-7.6q-3-2.4-7.2-2.4c-4 0-9.5 1.7-16.7 5zM512 96H0v32h512z" />',viewBox:"0 0 512 512"},Ui={name:"h2",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm336 86-15.3 42H320v-5.5c38.2-34.9 65.1-63.3 80.7-85.4q23.4-33.15 23.4-60.6c0-14-4.3-25.4-12.8-34.4-8.6-9-18.8-13.5-30.7-13.5-10.8 0-20.5 3.2-29.1 9.5s-15 15.6-19.1 27.8h-6c2.7-20 9.7-35.4 20.9-46.1s25.2-16.1 42-16.1c17.9 0 32.8 5.7 44.7 17.2 12 11.5 17.9 25 17.9 40.6 0 11.1-2.6 22.3-7.8 33.4-8 17.5-21 36.1-39 55.7-27 29.4-43.8 47.2-50.5 53.3h56.9c11.8 0 20-.4 24.8-1.3 4.7-.9 9-2.6 12.8-5.3s7.1-6.5 10-11.4zm48-278H0v32h512z" />',viewBox:"0 0 512 512"},Ki={name:"h3",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm195.6-50.6q9.6-21.75 24.3-33.6c9.8-7.9 22-11.9 36.6-11.9 18 0 31.9 5.6 41.5 16.9 7.3 8.4 11 17.3 11 26.9 0 15.7-10.3 31.9-30.9 48.7 13.8 5.2 24.3 12.6 31.4 22.3s10.6 21 10.6 34c0 18.7-6.2 34.8-18.6 48.5q-24.3 26.7-70.2 26.7c-15.2 0-25.5-1.8-31-5.4s-8.2-7.5-8.2-11.6q0-4.65 3.9-8.1c2.6-2.3 5.7-3.5 9.4-3.5 2.8 0 5.6.4 8.5 1.3 1.9.5 6.1 2.5 12.8 5.8q9.9 4.95 13.8 6c4.1 1.2 8.5 1.8 13.1 1.8 11.3 0 21.1-4.2 29.5-12.6s12.5-18.3 12.5-29.8c0-8.4-1.9-16.5-5.8-24.5-2.9-5.9-6-10.4-9.5-13.5-4.8-4.2-11.3-8.1-19.6-11.5s-16.8-5.2-25.4-5.2H358v-4.8c8.7-1.1 17.5-4.1 26.3-9.1s15.2-11 19.2-18 6-14.7 6-23.1c0-10.9-3.6-19.8-10.7-26.5s-16-10.1-26.6-10.1c-17.2 0-31.5 8.8-43 26.4zM512 96H0v32h512z" />',viewBox:"0 0 512 512"},qi={name:"h4",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm341 47v23h-29v58h-27v-58h-93v-20.7L422.1 192H440v143zm-56 0V226.1L336 335zm99-239H0v32h512z" />',viewBox:"0 0 512 512"},$i={name:"h5",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm320-96-12.6 28h-66L355 249.1c28.6 4.2 51.2 14.9 68 32 14.3 14.7 21.5 32 21.5 51.9 0 11.6-2.3 22.3-7 32.1s-10.6 18.2-17.7 25.2c-7.1 6.9-15 12.5-23.8 16.7-12.4 6-25.1 8.9-38.2 8.9-13.2 0-22.7-2.2-28.7-6.7s-9-9.4-9-14.9c0-3 1.2-5.7 3.7-8s5.6-3.5 9.4-3.5c2.8 0 5.3.4 7.4 1.3s5.7 3.1 10.8 6.7q12.15 8.4 24.6 8.4 18.9 0 33.3-14.4c14.4-14.4 14.3-21.2 14.3-35 0-13.3-4.3-25.7-12.8-37.3-8.5-11.5-20.3-20.4-35.3-26.7-11.8-4.9-27.8-7.7-48.1-8.4l42.1-85.5H448zm64-96H0v32h512z" />',viewBox:"0 0 512 512"},Xi={name:"h6",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm316-96v5.9c-13.1 1.4-23.9 4.2-32.2 8.4s-16.5 10.6-24.6 19.2-14.8 18.2-20.2 28.7c-5.3 10.6-9.8 23.1-13.4 37.6 14.3-10.5 28.7-15.8 43.2-15.8 13.8 0 25.8 5.9 36 17.8S448 321 448 339.6c0 18-5.1 34.5-15.4 49.3-12.3 18-28.7 27-49 27-13.8 0-25.6-4.9-35.2-14.6-18.9-19-28.4-43.6-28.4-73.8 0-19.3 3.6-37.7 10.9-55s17.6-32.8 31.1-46.3 26.4-22.5 38.8-27.2 23.8-7 34.5-7zm-92.9 111.4c-1.8 14.3-2.7 25.9-2.7 34.7 0 10.2 1.8 21.2 5.3 33.2 3.5 11.9 8.8 21.4 15.8 28.4 5.1 5 11.3 7.5 18.5 7.5 8.7 0 16.4-4.3 23.2-13q10.2-13.05 10.2-37.2 0-27.15-10.2-47.1C401 289.95 394.8 290 382.4 290c-3.8 0-7.8.8-12.2 2.5-4.3 1.6-10.7 5.2-19.1 10.9M512 96H0v32h512z" />',viewBox:"0 0 512 512"},Gi={name:"list-ordered",content:'<path d="M192 64h288v32H192zm0 160h288v32H192zm0 160h288v32H192zM96 32v128H64V64c-1.5 1.3-14.9 7.8-22.1 10V50.8c7.2-2.1 13.9-4.8 20.3-8 6.3-3.3 12.1-6.8 17.2-10.7zM66.7 297h61.1v23H32v-9.5c0-6.4 1.2-12.2 3.7-17.3q3.75-7.65 9.3-13.8t12.3-10.8c4.5-3.1 8.7-6 12.7-8.5 4.2-2.6 7.9-5.1 11.1-7.6 3.2-2.4 5.9-4.8 8-7.2 2.2-2.4 3.8-4.8 4.9-7.2s1.6-5 1.6-7.8c0-5.4-1.7-9.5-5.2-12.2-3.5-2.8-8.8-4.1-16-4.1-12.4 0-24.2 4.3-35.5 12.9v-24.4c12.5-7.1 26.6-10.6 42.4-10.6 7.3 0 13.8.8 19.6 2.5q8.7 2.55 14.7 7.2c4 3.1 7.1 6.9 9.2 11.3s3.2 9.3 3.2 14.8c0 5.8-1 10.9-3.1 15.5-2 4.5-4.8 8.6-8.1 12.3-3.4 3.7-7.3 7.1-11.7 10.1-4.4 3.1-9 6-13.8 8.9-3.2 2-6.3 4-9.3 5.9-3 2-5.6 3.9-7.9 5.8s-4.1 3.8-5.4 5.6-2 3.6-2 5.2M32 473.8V450c10.1 6 21.8 9.1 35.3 9.1q12.75 0 19.8-4.5c4.7-3 7.1-7.2 7.1-12.5 0-5.5-2.9-9.8-8.8-12.8-5.8-3-13.9-4.5-24.1-4.5h-14V404h12.9c19.6 0 29.4-5.4 29.4-16.1 0-10.1-7.5-15.1-22.6-15.1-10.1 0-19.9 2.7-29.4 8v-22.3c10.6-4.4 22.9-6.6 37-6.6 15.4 0 27.4 2.8 36 8.5s12.9 13.1 12.9 22.2c0 16.2-10 26.3-29.9 30.4v.4c10.6 1.1 19 4.3 25.2 9.5 6.2 5.3 9.2 11.7 9.2 19.4 0 11.6-5.1 20.7-15.4 27.4S88.1 480 69.9 480c-15.5 0-28.2-2.1-37.9-6.2" />',viewBox:"0 0 512 512"},Yi={name:"list-unordered",content:'<path d="M192 64h288v32H192zm0 160h288v32H192zm0 160h288v32H192zM80 32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},Wi={name:"indent",content:'<path d="M480 64H32V32h448zm0 32H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H32v32h448zM160 240 32 128v224z" />',viewBox:"0 0 512 512"},Zi={name:"outdent",content:'<path d="M480 64H32V32h448zm0 32H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H32v32h448zm-320-64V128L32 240z" />',viewBox:"0 0 512 512"},Qi={name:"insert-top",content:'<path d="M192 320h192v32H192zm0-128h288v-32H192zm192 64H192v32h192zM32 64v224l96-112z" />',viewBox:"0 0 512 512"},Ji={name:"insert-middle",content:'<path d="M192 128h192v32H192zm0 128h288v-32H192zm192 64H192v32h192zM32 128v224l96-112z" />',viewBox:"0 0 512 512"},ta={name:"insert-bottom",content:'<path d="M192 224h192v32H192zm0 128h288v-32H192zm192-192H192v32h192zM32 224v224l96-112z" />',viewBox:"0 0 512 512"},ea={name:"align-top",content:'<path d="M480 64H32V32h448zm-64 32H96v32h320zm64 64H32v32h448z" />',viewBox:"0 0 512 512"},oa={name:"align-middle",content:'<path d="M480 192H32v-32h448zm-64 32H96v32h320zm64 64H32v32h448z" />',viewBox:"0 0 512 512"},ra={name:"align-bottom",content:'<path d="M480 352H32v-32h448zm-64 32H96v32h320zm64 64H32v32h448z" />',viewBox:"0 0 512 512"},na={name:"align-left",content:'<path d="M448 96H64V64h384zm-96 32H64v32h288zm96 64H64v32h384zm-96 64H64v32h288zm96 64H64v32h384zm-96 64H64v32h288z" />',viewBox:"0 0 512 512"},ia={name:"align-center",content:'<path d="M448 96H64V64h384zm-64 64H128v-32h256zm64 64H64v-32h384zm-64 64H128v-32h256zm64 64H64v-32h384zm-64 64H128v-32h256z" />',viewBox:"0 0 512 512"},aa={name:"align-right",content:'<path d="M64 192h384v32H64zm384-96V64H64v32zm-288 64h288v-32H160zM64 320v32h384v-32zm96-32h288v-32H160zm0 96v32h288v-32z" />',viewBox:"0 0 512 512"},sa={name:"align-justify",content:'<path d="M448 160H64v-32h384zm0-96H64v32h384zM64 352h384v-32H64zm0-64h384v-32H64zm0-64h384v-32H64zm0 192h384v-32H64z" />',viewBox:"0 0 512 512"},ca={name:"align-remove",content:'<path d="m78.9 192 32 32H64v-32zM64 288h110.9l-32-32H64zm0 64h174.9l-32-32H64zm0 32v32h238.9l-32-32zm393.4 96 22.6-22.6-41.4-41.4h9.4v-32h-41.4l-32-32H448v-32H342.6l-32-32H448v-32H278.6l-32-32H448v-32H214.6l-32-32H448v-32H150.6l-32-32H448V64H86.6l-32-32L32 54.6" />',viewBox:"0 0 512 512"},la={name:"text-wrap",content:'<path d="M480 96v32H96V96zM352 256v224H32V256zm-32 32H64v160h256zm-32 32H96v32h192zm0 96v-32H96v32zM64 64h288V32H32v160h320v-32H64z" />',viewBox:"0 0 512 512"},ha={name:"horizontal-rule",content:'<path d="M320 96H32V64h288zm96 32H32v32h384zm64 96H32v64h448zM320 352H32v32h288zm96 64H32v32h384z" />',viewBox:"0 0 512 512"},ua={name:"table-align-top-left",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm32 64h192V64H96zm0 64h320v-32H96zm0 64h192v-32H96z" />',viewBox:"0 0 512 512"},pa={name:"table-align-top-center",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm288 32H160v32h192zm64 64H96v32h320zm-64 64H160v32h192z" />',viewBox:"0 0 512 512"},da={name:"table-align-top-right",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm352 32H224v32h192zm0 64H96v32h320zm0 64H224v32h192z" />',viewBox:"0 0 512 512"},va={name:"table-align-middle-left",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm32 160h192v-32H96zm0 64h320v-32H96zm0 64h192v-32H96z" />',viewBox:"0 0 512 512"},fa={name:"table-align-middle-center",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm288 128H160v32h192zm64 64H96v32h320zm-64 64H160v32h192z" />',viewBox:"0 0 512 512"},ma={name:"table-align-middle-right",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm352 128H224v32h192zm0 64H96v32h320zm0 64H224v32h192z" />',viewBox:"0 0 512 512"},ga={name:"table-align-bottom-left",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm32 256h192v-32H96zm0 64h320v-32H96zm0 64h192v-32H96z" />',viewBox:"0 0 512 512"},ya={name:"table-align-bottom-center",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm288 224H160v32h192zm64 64H96v32h320zm-64 64H160v32h192z" />',viewBox:"0 0 512 512"},ba={name:"table-align-bottom-right",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm352 224H224v32h192zm0 64H96v32h320zm0 64H224v32h192z" />',viewBox:"0 0 512 512"},xa={name:"table-align-remove",content:'<path d="M32 0v480h448V0zm416 448H64V32h384zM131.6 224l29.9 32H128v-32zm-3.6 64h63.4l29.9 32H128zm123.1 64 29.9 32H128v-32zM96 92l22.6-22.6L143.5 96H384v32H173.4l29.9 32H384v32H233.1l29.9 32h121v32h-91.2l29.9 32H384v32h-31.4l63.4 68-22.6 22.6z" />',viewBox:"0 0 512 512"},wa={name:"borders-all",content:'<path d="M32 32v416h416V32zm32 32h160v160H64zm0 352V256h160v160zm352 0H256V256h160zm0-192H256V64h160z" />',viewBox:"0 0 512 512"},_a={name:"borders-outside",content:'<path d="M128 256H96v-32h32zm64-32h-32v32h32zm64 0h-32v32h32zm0-64h-32v32h32zm0-64h-32v32h32zm0 256h-32v32h32zm0-64h-32v32h32zm64-64h-32v32h32zm64 0h-32v32h32zm64-192v416H32V32zm-32 32H64v352h352z" />',viewBox:"0 0 512 512"},Ca={name:"borders-inside",content:'<path d="M64 64H32V32h32zm0 32H32v32h32zm0 64H32v32h32zm0 128H32v32h32zm0 64H32v32h32zM448 96h-32v32h32zm0 64h-32v32h32zm0 128h-32v32h32zm0 64h-32v32h32zM128 32H96v32h32zm64 0h-32v32h32zM64 416H32v32h32zm64 0H96v32h32zm64 0h-32v32h32zm128 0h-32v32h32zm64 0h-32v32h32zm64 0h-32v32h32zM320 32h-32v32h32zm64 0h-32v32h32zm64 0h-32v32h32zm0 192H256V32h-32v192H32v32h192v192h32V256h192z" />',viewBox:"0 0 512 512"},Oa={name:"borders-inside-horizontal",content:'<path d="M448 224v32H32v-32zM64 32H32v32h32zm0 96H32V96h32zm0 64H32v-32h32zm0 128H32v-32h32zm0 64H32v-32h32zm384-256h-32V96h32zm0 64h-32v-32h32zm0 128h-32v-32h32zm0 64h-32v-32h32zM128 64H96V32h32zm64 0h-32V32h32zm64 0h-32V32h32zm0 64h-32V96h32zm0 64h-32v-32h32zm0 128h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zM64 416H32v32h32zm64 32H96v-32h32zm64 0h-32v-32h32zm128-32h-32v32h32zm64 32h-32v-32h32zm64 0h-32v-32h32zM320 32h-32v32h32zm64 32h-32V32h32zm64 0h-32V32h32z" />',viewBox:"0 0 512 512"},Sa={name:"borders-inside-vertical",content:'<path d="M256 448h-32V32h32zM448 64V32h-32v32zm-96 0V32h32v32zm-64 0V32h32v32zm-128 0V32h32v32zm-64 0V32h32v32zm256 384v-32h32v32zm-64 0v-32h32v32zm-128 0v-32h32v32zm-64 0v-32h32v32zm320-320V96h32v32zm0 64v-32h32v32zm0 64v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-128 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zM64 64V32H32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32H32v32zm-32 64v-32h32v32zm0 64v-32h32v32zm416-128v-32h-32v32zm-32 64v-32h32v32zm0 64v-32h32v32z" />',viewBox:"0 0 512 512"},za={name:"border-top",content:'<path d="M448 32v32H32V32zM64 96H32v32h32zm0 96H32v-32h32zm0 64H32v-32h32zm0 64H32v-32h32zm0 64H32v-32h32zm384-192h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zM128 256H96v-32h32zm64 0h-32v-32h32zm64-128h-32V96h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zM64 416H32v32h32zm64 32H96v-32h32zm64 0h-32v-32h32zm128-32h-32v32h32zm64 32h-32v-32h32zm64 0h-32v-32h32zM320 224h-32v32h32zm64 32h-32v-32h32zm64-128h-32V96h32z" />',viewBox:"0 0 512 512"},Ma={name:"border-bottom",content:'<path d="M32 448v-32h416v32zm32-96H32v32h32zm0-32H32v-32h32zm0-64H32v-32h32zm0-64H32v-32h32zm0-64H32V96h32zm384 192h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32V96h32zM128 256H96v-32h32zm64 0h-32v-32h32zm64 128h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32V96h32zm0-64h-32V32h32zM64 32H32v32h32zm64 32H96V32h32zm64 0h-32V32h32zm128-32h-32v32h32zm64 32h-32V32h32zm64 0h-32V32h32zM320 224h-32v32h32zm64 32h-32v-32h32zm64 128h-32v-32h32z" />',viewBox:"0 0 512 512"},Pa={name:"border-left",content:'<path d="M32 32h32v416H32zm96 32V32H96v32zm32 0V32h32v32zm64 0V32h32v32zm64 0V32h32v32zm64 0V32h32v32zM160 448v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zM224 128V96h32v32zm0 64v-32h32v32zM96 256v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm32-192V32h-32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32h-32v32zm-32 64v-32h32v32zm0 64v-32h32v32zM256 320v-32h-32v32zm-32 64v-32h32v32zM96 448v-32h32v32z" />',viewBox:"0 0 512 512"},Va={name:"border-right",content:'<path d="M448 448h-32V32h32zM384 64V32h-32v32zm-96 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm192 384v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm128-320V96h32v32zm0 64v-32h32v32zm128 64v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zM64 64V32H32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32H32v32zm-32 64v-32h32v32zm0 64v-32h32v32zm224-128v-32h-32v32zm-32 64v-32h32v32zm128 64v-32h32v32z" />',viewBox:"0 0 512 512"},Aa={name:"borders-none",content:'<path d="M384 64V32h-32v32zm-96 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm192 384v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm128-320V96h32v32zm0 64v-32h32v32zm128 64v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zM64 64V32H32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32H32v32zm-32 64v-32h32v32zm0 64v-32h32v32zm384-192v-32h32v32zm32-192V32h-32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32h-32v32zm-32 64v-32h32v32zm0 64v-32h32v32zM256 320v-32h-32v32zm-32 64v-32h32v32zm128 64v-32h32v32z" />',viewBox:"0 0 512 512"},ja={name:"borders-show-hide",content:'<path d="M64 448h128v32H32V32h448v128h-32V64H64zm384 0h-64v32h96v-96h-32zM160 288v-64H96v64zm64 0h64v-64h-64zm160-32v-32h-32v32zM288 96h-64v64h64zm0 384L160 352l45-45 83 83 147-147 45 45z" />',viewBox:"0 0 512 512"},ka={name:"form",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32zm0 384H64V64h352zm32 64v-32h32v32zm32-448h-32V0h32zM0 448h32v32H0zM32 0v32H0V0z" />',viewBox:"0 0 512 512"},Ha={name:"form-element",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32zm0 384H64V64h352zm32 64v-32h32v32zm32-448h-32V0h32zM0 448h32v32H0zM32 0v32H0V0zm160 128H96v32h96zm192 0H224v32h160zm0 64H224v32h160zm0 64H224v32h160zm0 64H224v32h160zm-192 0H96v32h96zm0-64H96v32h96zm0-64H96v32h96z" />',viewBox:"0 0 512 512"},Ia={name:"code-snippet",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32zm0 256v128H64V64h352zM32 0v32H0V0zM0 448h32v32H0zm198.6-265.4L141.3 240l57.4 57.4L176 320l-80-80 80-80zM304 160l80 80-80 80-22.6-22.6 57.4-57.4-57.4-57.4zM480 32h-32V0h32zm-32 448v-32h32v32z" />',viewBox:"0 0 512 512"},Ba={name:"select-all",content:'<path d="M448 448h32v32h-32zm0-448h32v32h-32zM0 448h32v32H0zM0 0h32v32H0zm448 384h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zM0 384h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm128 384h32v32h-32zm-64 0h32v32H64zm128 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zM64 0h32v32H64zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm-96 64 53.4 53.4L240 218.9 138.6 117.4 192 64H64v128l53.5-53.5L218.9 240 117.5 341.5 64 288v128h128l-53.4-53.4L240 261.1l101.4 101.5L288 416h128V288l-53.5 53.5L261.1 240l101.4-101.5L416 192V64z" />',viewBox:"0 0 512 512"},La={name:"button",content:'<path d="m130.1 130.1 36.1 93.9H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32v128c0 17.6-14.4 32-32 32h-73.8zM480 299 185.8 185.8 299 480l22.6-113.1L434.7 480l45.3-45.3-113.1-113.1z" />',viewBox:"0 0 512 512"},Ta={name:"select-box",content:'<path d="M384 352H128v-32h256zm0 32H128v32h256zm0-128H128v32h256zm96-192v128c0 17.6-14.4 32-32 32v224c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V224c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32M352 96l32 64 32-64zm64 128H96v224h320z" />',viewBox:"0 0 512 512"},Ea={name:"calendar-date",content:'<path d="M448 32h-64V0h-64v32H192V0h-64v32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m0 416-383.9.1-.1-.1V192h384zm0-288H64V64.1l.1-.1H128v32h64V64h128v32h64V64h63.9l.1.1zM192 270.6S171.9 288 142 288v-32c29.9 0 58-32 58-32h24v192h-32zM384 416H256v-14.2c0-9.7 1.6-18.4 4.8-26 3.3-7.7 7.3-14.6 12.2-20.7 4.8-6.1 10.2-11.5 15.9-16.2s11.3-8.9 16.4-12.7c5.5-3.9 10.3-7.7 14.4-11.3 4.2-3.6 7.6-7.2 10.4-10.7q4.2-5.25 6.3-10.8 2.1-5.4 2.1-11.7c0-8.1-2.3-14.1-6.8-18.4-4.5-4.1-11.5-6.2-20.7-6.2-16 0-31.5 6.4-46.1 19.4v-37.1c16.5-10.6 35-16.1 55.5-16.1 9.6 0 18.2 1.3 25.7 3.8 7.6 2.5 14.1 6.1 19.3 10.7s9.3 10.3 12.1 17c2.7 6.6 4.1 14.1 4.1 22.3 0 8.7-1.4 16.6-4 23.3-2.7 6.8-6.3 12.9-10.6 18.5-4.5 5.6-9.5 10.6-15.3 15.2s-11.8 9.1-18 13.4c-4.2 3-8.3 5.9-12.2 8.9-3.9 2.9-7.4 5.8-10.4 8.7s-5.3 5.7-7.1 8.4c-1.9 2.7-2.7 7.8-2.7 10.3H384z" />',viewBox:"0 0 512 512"},Da={name:"group-box",content:'<path d="M144 81.6c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6s1.2 5.6 1.4 9.4c.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H160v-97.8c0-22.1-5.4-36.7-16-44m-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8s-8 3.3-12.2 4.3-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18zM316 115.7c-2.7-9.3-6.6-17.2-11.8-23.8-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V32H192v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-30.9m-32.6 73.6c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7M450 110c1.8 3.2 2.7 6.9 3 11.2h27c-.9-7.3-3.1-13.8-6.4-19.6s-7.6-10.5-12.7-14.2c-5.2-3.9-11.2-6.8-18-8.8-6.9-2-14.2-3-22.2-3-10.3 0-19.5 1.6-28 4.9s-15.7 8.1-21.8 14.4c-6 6.3-10.7 14.1-14 23.3s-4.9 19.7-4.9 31.5c0 11.9 1.6 22.5 4.9 31.7 3.1 9.2 7.8 17 13.9 23.2 6 6.3 13.3 11.1 21.8 14.4 8.3 3.3 17.9 5 28.2 5 8 0 15.3-1 22.2-3 6.8-2 12.8-4.9 18-8.8 5.1-3.9 9.4-8.8 12.7-14.4s5.5-12.1 6.4-19.6h-27c-.3 4.2-1.2 7.9-3 11.2-1.8 3.2-4.2 5.9-7 8.1-3 2.2-6.3 3.9-10.1 4.9-3.9 1.2-7.9 1.7-12.2 1.7-6.3 0-11.9-1.2-17-3.5-5.2-2.3-9.7-5.8-13.4-10.4-3.7-4.5-6.6-10.2-8.5-17-2.1-6.8-3.1-14.7-3.1-23.6 0-9.1 1-17.1 3.1-23.9 2.1-6.9 5.1-12.5 8.8-17.1 3.7-4.5 8-7.8 13.3-10.1 5.1-2.3 10.7-3.5 16.8-3.5 4.3 0 8.3.6 12.2 1.7 3.9 1.2 7.2 2.7 10.1 4.9 2.8 2.4 5.2 5.1 6.9 8.4M128 256h256v32H128zm0 64h256v32H128zm0 64h256v32H128zm256 32H128v-32h256zm0-128H128v-32h256zm0 64H128v-32h256zm32-96h32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256h32v192h320z" />',viewBox:"0 0 512 512"},Na={name:"textarea",content:'<path d="M448 448h-32V256h32zM194 334c1.8 3.2 2.7 6.9 3 11.2h27c-.9-7.3-3.1-13.8-6.4-19.6s-7.6-10.5-12.7-14.2c-5.2-3.9-11.2-6.8-18-8.8-6.9-2-14.2-3-22.2-3-10.3 0-19.5 1.6-28 4.9s-15.7 8.1-21.8 14.4c-6 6.3-10.7 14.1-14 23.3S96 361.9 96 373.7c0 11.9 1.6 22.5 4.9 31.7 3.1 9.2 7.8 17 13.9 23.2 6 6.3 13.3 11.1 21.8 14.4 8.3 3.3 17.9 5 28.2 5 8 0 15.3-1 22.2-3 6.8-2 12.8-4.9 18-8.8 5.1-3.9 9.4-8.8 12.7-14.4s5.5-12.1 6.4-19.6h-27c-.3 4.2-1.2 7.9-3 11.2-1.8 3.2-4.2 5.9-7 8.1-3 2.2-6.3 3.9-10.1 4.9-3.9 1.2-7.9 1.7-12.2 1.7-6.3 0-11.9-1.2-17-3.5-5.2-2.3-9.7-5.8-13.4-10.4-3.7-4.5-6.6-10.2-8.5-17-2.1-6.8-3.1-14.7-3.1-23.6 0-9.1 1-17.1 3.1-23.9 2.1-6.9 5.1-12.5 8.8-17.1 3.7-4.5 8-7.8 13.3-10.1 5.1-2.3 10.7-3.5 16.8-3.5 4.3 0 8.3.6 12.2 1.7 3.9 1.2 7.2 2.7 10.1 4.9 2.8 2.4 5.2 5.1 6.9 8.4m14-252.4c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6s1.2 5.6 1.4 9.4c.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H224v-97.8c0-22.1-5.4-36.7-16-44m-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8s-8 3.3-12.2 4.3-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18zM380 115.7c-2.7-9.3-6.6-17.2-11.8-23.8-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V32H256v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-30.9m-32.6 73.6c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7M256 370.6c0 11.8 1.6 22.5 4.6 32.1 3.2 9.5 7.5 17.6 13 24.4 5.6 6.6 12.1 11.8 19.7 15.5 7.5 3.6 15.7 5.4 24.5 5.4 15.7 0 29.1-5 40-14.8V448H384V256h-26.2v60.1c-11.5-13.6-25.3-20.5-41.7-20.5-9.5 0-18 1.7-25.5 5.2-7.3 3.6-13.7 8.6-18.7 15-5.2 6.6-9.1 14.5-11.8 23.8-2.8 9.2-4.1 19.5-4.1 31m26.8 0c0-18.1 3.2-31.8 9.3-41 6.2-9.3 14.8-13.9 26.2-13.9 14.4 0 27.5 8.3 39.4 24.9v69.1c-11.1 11.9-23.9 17.8-38.4 17.8-11.2 0-20.2-4.7-26.8-14.2-6.4-9.4-9.7-23.8-9.7-42.7" />',viewBox:"0 0 512 512"},Ra={name:"textbox",content:'<path d="M208 209.6c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6s1.2 5.6 1.4 9.4c.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H224v-97.8c0-22.1-5.4-36.7-16-44m-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8s-8 3.3-12.2 4.3-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18zm170.3-89.9c-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V160H256v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-31-2.8-9.3-6.7-17.1-11.8-23.7m-20.8 97.4c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7M448 64v384h-32V64z" />',viewBox:"0 0 512 512"},Fa={name:"textbox-hidden",content:'<path d="M0 160h32v64H0zm0-32h32V64H0zm0 288h32v-64H0zm160 96h64v-32h-64zm-96 0h64v-32H64zM352 0h-64v32h64zm-96 0h-64v32h64zM0 512h32v-64H0zM448 0h-64v32h64zM160 0H96v32h64zM64 0H0v32h64zM0 320h32v-64H0zm480 128h32v-64h-32zm0-96h32v-64h-32zm0-96h32v-64h-32zm0-96h32V96h-32zm0-160v64h32V0zm-32 512h64v-32h-64zm-192 0h64v-32h-64zm96 0h64v-32h-64zm-6-165.4c-7.4 3.6-15.6 5.4-24.3 5.4-15.6 0-28.9-5-39.7-14.8V352h-26V160h26v60.1c11.4-13.6 25.1-20.5 41.4-20.5 9.4 0 17.9 1.7 25.3 5.2 7.2 3.6 13.6 8.6 18.6 15 5.2 6.6 9 14.5 11.7 23.8 2.7 9.2 4 19.5 4 31 0 11.8-1.6 22.5-4.6 32.1-3.2 9.5-7.4 17.6-12.9 24.4-5.5 6.6-12 11.7-19.5 15.5m10.9-72c0-18.1-3.2-31.8-9.3-41-6.2-9.3-14.8-13.9-26.2-13.9-14.4 0-27.5 8.3-39.4 24.9v69.1c11.1 11.9 23.9 17.8 38.4 17.8 11.2 0 20.2-4.7 26.8-14.2 6.4-9.4 9.7-23.8 9.7-42.7M224 253.5V351h-26v-17.6S167.1 352 146.2 352c-7.3 0-13.9-1-20-3.2-6.2-2-11.6-4.9-16-8.7-4.5-3.8-8-8.1-10.4-13.4-2.5-5.2-3.8-10.8-3.8-17.2 0-34.2 29.8-51.4 89.1-51.5h12.8c0-5.2 0-9.9-.1-13.5-.3-3.8-.7-6.8-1.4-9.4s-1.7-4.8-3.2-6.6c-1.6-1.7-3.6-3.5-6.2-5.1-5.2-3.2-13.4-4.8-24.4-4.8-23.2 0-35.3 8.2-36 24.4h-26.1c1.9-29.6 23.1-44.6 63.6-44.6 18.9 0 33.5 3.6 44.1 11.1 10.4 7.4 15.8 22 15.8 44M198 277h-18c-38 0-56.9 10.3-56.9 30.9 0 7.4 2.8 13.1 8.3 17.2 5.5 3.9 12.9 5.9 22.5 5.9 4.2 0 8.6-.4 12.8-1.4s8.3-2.5 12.2-4.3c3.9-1.9 7.5-4.2 10.7-6.8 3.3-2.7 6.1-5.6 8.4-9zM448 64h-32v384h32z" />',viewBox:"0 0 512 512"},Ua={name:"password",content:'<path d="M480 64v384h-32V64zM174.2 221.1l-11.3-11.3-34.9 34.9V192H96v52.7l-34.9-34.9-11.3 11.3L84.7 256H32v32h52.7l-34.9 34.9 11.3 11.3L96 299.3V352h32v-52.7l34.9 34.9 11.3-11.3-34.9-34.9H192v-32h-52.7zm224 0-11.3-11.3-34.9 34.9V192h-32v52.7l-34.9-34.9-11.3 11.3 34.9 34.9H256v32h52.7l-34.9 34.9 11.3 11.3 34.9-34.9V352h32v-52.7l34.9 34.9 11.3-11.3-34.9-34.9H416v-32h-52.7z" />',viewBox:"0 0 512 512"},Ka={name:"paragraph-add",content:'<path d="M320 96h-64v352h-32V96h-64v352h-32V256c-53 0-96-43-96-96s43-96 96-96h192zm96 256v-64h-32v64h-64v32h64v64h32v-64h64v-32z" />',viewBox:"0 0 512 512"},qa={name:"edit-tools",content:'<path d="m260.6 288 11.5 31.5 56.2-56.6L244.2 32H139.8L0 416h76.8l28-76.8 18.6-51.2zm-17.5-48H140.9L192 99.5zM224 413.3V480h66.7l169.7-168.5-67.9-67.9zm55.3 34-22.6-22.6 135.8-135.8 22.6 22.6zm223.4-178-22.6 22.6-67.9-67.9 22.5-22.7c12.5-12.4 32.9-12.4 45.3 0l22.7 22.7c12.4 12.4 12.4 32.8 0 45.3" />',viewBox:"0 0 512 512"},$a={name:"template-manager",content:'<path d="M377.2 292.1c-5.5 5.3-7.2 6.4-7.4 6.6-.2.1-.4.2-.9.2-.1-.2-.3-.7-.5-1.7s-.5-4.2-.5-15.1v-31.7c0-9.9-.7-16.2-2.3-19.7-2.4-5.4-6.1-9.4-11.2-12-6.2-3.1-14-4.7-23.3-4.7-12.3 0-22.1 2.8-29 8.4-7.2 5.7-10.9 12.3-10.9 19.4 0 4.1 1.2 7.5 3.6 10 2.5 2.7 5.7 4 9.6 4s7.2-1.3 9.6-3.8c2.4-2.4 3.6-5.9 3.6-10.2l-.2-5.8c0-1.9.9-3.5 2.7-5.1s4.4-2.4 7.9-2.4c4.7 0 8.1 1.3 10.4 3.9 1.7 1.9 3.6 6.3 3.6 16.8v.9c-15.6 5.6-26.5 10.2-33.4 14.1-7.8 4.4-13.1 9.1-16.3 14.3-2.5 3.9-3.7 8.5-3.7 13.8 0 8.2 2.5 14.9 7.5 20 5 5.2 11.6 7.8 19.4 7.8 4.9 0 9.5-1 13.8-2.9 2.2-1 6.6-3.9 13.5-8.9.7 2.9 1.9 5.2 3.5 6.9 2.8 3.1 6.6 4.7 11.2 4.7 8.5 0 17.1-5.6 25.7-16.8l.8-1v-16.3zm-35.2-.2c-8.9 6.7-14.1 8.1-16.9 8.1h-.1c-2.8 0-5.1-1.1-7.4-3.6-2.3-2.4-3.5-5.6-3.5-9.5 0-3 .9-5.8 2.8-8.4 2.1-2.8 5.7-5.6 10.6-8.2 2.4-1.3 7.2-3.4 14.4-6.2zm-97.9 12.2c-1.3-1.4-4-5.6-7.9-17.9L195.6 160h-7.7l-41 124.9c-4.1 12.7-7 17.9-8.8 20.1-.3.4-1.8 1.8-7.4 3.1l-2.8.6V320h43v-11.7l-3.2-.3c-6.6-.6-8.3-2-8.6-2.3-.9-.9-1.3-1.9-1.3-3 0-1.6.5-4.8 2.6-11.5l5.3-16.2h42.1l4.6 14c2.6 8.1 3.1 12 3.1 13.8 0 1.3-.4 2.2-1.3 3.2-.3.4-1.9 1.6-7 1.9l-3.3.2V320h52v-11.8l-3.2-.3c-3.8-.3-6.6-1.5-8.6-3.8M172.5 254l14.7-44.6 14.4 44.6zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-224-32h-64v-64h64zm96 0h-64v-64h64zm96 0h-64v-64h64z" />',viewBox:"0 0 512 512"},Xa={name:"change-manually",content:'<path d="m416 353 32-32v159H32V32h416v64h-32V64H64v384h352zm-192-3.7V416h66.7l169.7-168.5-67.9-67.9zm55.3 34-22.6-22.6 135.8-135.8 22.6 22.6zM502.7 160 480 137.3c-12.4-12.4-32.8-12.4-45.3 0L412.2 160l67.9 67.9 22.6-22.6c12.4-12.5 12.4-32.9 0-45.3M191.9 416H167v-22h-.6c-7.9 14.6-19.4 22-34.6 22-11.2 0-20-3.3-26.3-9.8S96 391 96 380.3c0-23.1 12.4-36.5 37.2-40.4l33.9-5.1c0-17.4-7.7-26.1-23.2-26.1-13.6 0-25.8 5-36.8 15v-24.2c12-7.6 25.9-11.5 41.7-11.5 28.8 0 43.3 15.2 43.3 45.6V416zM167 353.1l-23.9 3.6c-7.4 1-13 3-16.8 5.8s-5.6 7.8-5.6 14.9c0 5.2 1.7 9.4 5.2 12.7s8.1 5 13.9 5c7.9 0 14.4-3 19.5-8.9 5.2-5.9 7.7-13.4 7.7-22.4z" />',viewBox:"0 0 512 512"},Ga={name:"track-changes",content:'<path d="m412.2 256 22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3L480 323.8zm-19.7 19.6L250.9 417.2 224 445.3V512h66.7l28.1-26.9 141.6-141.6zM279.3 479.3 268 468l-11.3-11.3 135.8-135.8 22.6 22.6zM288 160H160v32h128zm64 64H160v32h192zm-64 64H160v32h128zm-64 64h-64v32h64zm188.2-96 22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3L480 323.8zm-19.7 19.6L250.9 417.2 224 445.3V512h66.7l28.1-26.9 141.6-141.6zM279.3 479.3 268 468l-11.3-11.3 135.8-135.8 22.6 22.6zM96 416V64h224v96h96v32h32v-64l-96-96H96c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h96v-32zM0 512h192v-32H0z" />',viewBox:"0 0 512 512"},Ya={name:"track-changes-enable",content:'<path d="M502.7 173.3 480 195.8 412.2 128l22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3m-110.2-25.7 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 340l11.3 11.3zM160 320h32v-32h-32zm0-64h96v-32h-96zm128-96H160v32h128zM160 384h32v-32h-32zm256 64H96V64h224v96l80.11-79.89L352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V273.155l-32 32z" />',viewBox:"0 0 512 512"},Wa={name:"track-changes-accept",content:'<path d="M128 128H96V64c0-17.7 14.3-32 32-32h224l64 64h-96V64H128zm122.9 193.2L224 349.3V416h66.7l28.1-26.9 141.6-141.6-67.9-67.9zm28.4 62.1L268 372l-11.3-11.3 135.8-135.8 22.6 22.6zM416 337.155l32-32V448c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-96h32v96h288zM502.7 205.3 480 227.8 412.2 160l22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3M288 144 112 320 0 208l45-45 67 67L243 99zm-96 272h-32v-32h32z" />',viewBox:"0 0 512 512"},Za={name:"track-changes-accept-all",content:'<path d="M128 160H96V96c0-17.7 14.3-32 32-32h224l64 64h-96V96H128zm264.5 51.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 404l11.3 11.3zM416 480H128v-96H96v96c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V337.155l-32 32zm86.7-288-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 192l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3M160 448h32v-32h-32zM64 32h256L288 0H64C46.3 0 32 14.3 32 32v128h32zm0 352H32v32c0 17.7 14.3 32 32 32zm179-253L112 262l-67-67-45 45 112 112 176-176z" />',viewBox:"0 0 512 512"},Qa={name:"track-changes-reject",content:'<path d="M102.627 272 160 329.373 137.373 352 80 294.627 22.627 352 0 329.373 57.373 272 0 214.627 22.627 192 80 249.373 137.373 192 160 214.627zM192 384v-32h-32v32zm310.7-256-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 128l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3M96 64h224v96l80.11-79.89L352 32H96c-17.7 0-32 14.3-32 32v96h32zm296.5 83.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 340l11.3 11.3zM416 448H96v-64H64v64c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V273.155l-32 32z" />',viewBox:"0 0 512 512"},Ja={name:"track-changes-reject-all",content:'<path d="M102.627 272 160 329.373 137.373 352 80 294.627 22.627 352 0 329.373 57.373 272 0 214.627 22.627 192 80 249.373 137.373 192 160 214.627zM128 96h192v32h96l-64-64H128c-17.7 0-32 14.3-32 32v64h32zm264.5 115.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 404l11.3 11.3zM416 480H128v-96H96v96c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V337.155l-32 32zm86.7-288-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 192l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3M160 448h32v-32h-32zM64 32h256L288 0H64C46.3 0 32 14.3 32 32v128h32zm0 352H32v32c0 17.7 14.3 32 32 32z" />',viewBox:"0 0 512 512"},ts={name:"document-manager",content:'<path d="M64 416h224v32H64zm224-64H64v32h224zM400 0C288 0 288 96 288 96v160s0 64 80 64 80-64 80-64V96s0-32-48-32-48 32-48 32v128h32V116c0-11 .6-20 16-20s16 9 16 20v140s0 32-48 32-48-32-48-32V96s0-64 80-64 80 64 80 64v128h32V96s0-96-112-96M106.7 288 96 320H64l64-192h32l64 192h-32l-10.7-32zm10.6-32h53.3L144 176zM320 480H32V96h224V64H32C14.3 64 0 78.3 0 96v384c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V352h-32z" />',viewBox:"0 0 512 512"},es={name:"custom-icon",content:'<path d="M352 249H196.6q.9 35.7 19.8 55.2c18.9 19.5 30 18.8 52 19.4 4.9.1-1.1 28.8-12.4 28.8-30.9 0-51.6-9.7-69.3-29.1-17.8-19.4-26.7-46.8-26.7-82 0-33.3 9.7-60.4 29.1-81.4s43.5-31.4 72.4-31.4c28.8 0 51.1 9.1 66.9 27.2S352 199 352 231.1zm-36-29.9c-.1-19.8-5.1-35.2-14.7-46.2-9.7-11-23.1-16.5-40.3-16.5-16.6 0-30.7 5.8-42.4 17.3-11.6 11.6-18.8 26.7-21.5 45.3zM448 384V64c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h256zm-32-32h-96v96H96V64h320z" />',viewBox:"0 0 512 512"},os={name:"book",content:'<path d="M448 480V96h-32v352H128c-17.6 0-32-14.4-32-32s14.4-32 32-32h256V32H128c-35.2 0-64 28.8-64 64v320c0 23.6 12.9 44.2 32 55.3 9.4 5.5 20.4 8.7 32 8.7zM128 64h224v288H128zm192 64H160V96h160zm0 128H160v-32h160zm-32-64H160v-32h128z" />',viewBox:"0 0 512 512"},rs={name:"image-add",content:'<path d="M272 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m80 112-16 16-64 64-128-128L32 336V96.1l.1-.1h383.8l.1.1-.1 191.9H448V96c0-17.6-14.4-32-32-32H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h256v-64h64zm128 144h-32v-64h-32v64h-64v32h64v64h32v-64h64v-32z" />',viewBox:"0 0 512 512"},ns={name:"image-edit",content:'<path d="M304 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m-32.6 159.4L176 224 64 336V96.1l.1-.1h383.8l.1.1V160h32V96c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h128v-47.5zm189-7.9L290.7 480H224v-66.7l168.5-169.7zm-45.3 0-22.6-22.6-135.8 135.8 22.6 22.6zM447.9 448c17.7 0 32.1-14.4 32.1-32v-78.9L369.1 448zm54.8-224L480 201.3c-12.4-12.4-32.8-12.4-45.3 0L412.2 224l67.9 67.9 22.6-22.6c12.4-12.5 12.4-32.9 0-45.3" />',viewBox:"0 0 512 512"},is={name:"image-map-editor",content:'<path d="M448 64H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32M96 384H64v-32h32zm96 0h-64v-32h64zm96 0h-64v-32h64zm96 0h-64v-32h64zm64 0h-32v-32h32zm-.1-48-64-64-80 80L176 224 64 336V192h32v-32H64V96.1l.1-.1H128v32h32V96h287.9l.1.1zM352 208c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48m-224-48h32v32h-32z" />',viewBox:"0 0 512 512"},as={name:"comment",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v416l96-96h320c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m0 319.942a1 1 0 0 1-.058.058H114.745L64 402.745V64.057a1 1 0 0 1 .057-.057h383.885q.031.027.058.057z" />',viewBox:"0 0 512 512"},ss={name:"comment-remove",content:'<path d="M114.745 352 64 402.745V64.057a1 1 0 0 1 .057-.057h383.885q.031.027.058.057V256h32V64c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v416l96-96h128v-32zM480 342.627 457.373 320 400 377.373 342.627 320 320 342.627 377.373 400 320 457.373 342.627 480 400 422.627 457.373 480 480 457.373 422.627 400z" />',viewBox:"0 0 512 512"},cs={name:"comments-remove",content:'<path d="M480 64c0-17.6-14.4-32-32-32H160c-17.6 0-32 14.4-32 32v32h32V64.1l.1-.1H448l.1.1V256l-.1.1h32zM377.4 400l22.6 22.6-57.4 57.4-22.6-22.6zm0 0L320 342.6l22.6-22.6 57.4 57.4zm45.2 0 57.4 57.4-22.6 22.6-57.4-57.4-22.6-22.6 22.6-22.6 57.4-57.4 22.6 22.6zm-304.3-16L64 420.2V160.1l.1-.1H352l.1.1V256h32v-96c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v320l96-64h128v-32z" />',viewBox:"0 0 512 512"},ls={name:"silverlight",content:'<path d="M256 0 0 256l256 256 256-256zm-75.9 324c-21.6 0-40.5-6.3-52.1-13.7v-33.2c14.5 10.8 32.9 17.9 51.4 17.9 16.3 0 28.6-5 28.6-17.6 0-10.6-6.8-14.5-18.9-18.9l-23.6-7.9c-23.9-7.9-39.7-20.3-39.7-47 0-29.9 25.7-46.2 57.3-46.2 19.7 0 35.8 4.7 48.8 12.6v32.9c-13.9-10.2-29.1-16.8-47.8-16.8-14.5 0-25.5 4.9-25.5 16 0 9.9 6.5 13.9 17.9 17.6l25.2 8.6c27.1 9.2 39.4 23.9 39.4 47.8.2 31.9-26.8 47.9-61 47.9m95.9-4V160h32v128h76v32z" />',viewBox:"0 0 512 512"},hs={name:"media-manager",content:'<path d="M192 384V128l192 128zm32-319.3V0C108.2 14.4 14.4 108.2 0 224h64.7c13.5-80.3 79-145.8 159.3-159.3m64 382.6V512c115.8-14.4 209.6-108.2 224-224h-64.7c-13.5 80.3-79 145.8-159.3 159.3M64.7 288H0c14.4 115.8 108.2 209.6 224 224v-64.7c-80.3-13.5-145.8-79-159.3-159.3m382.6-64H512C497.6 108.2 403.8 14.4 288 0v64.7c80.3 13.5 145.8 79 159.3 159.3" />',viewBox:"0 0 512 512"},us={name:"video-external",content:'<path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0m-64 384V128l192 128z" />',viewBox:"0 0 512 512"},ps={name:"flash-manager",content:'<path d="M255.9 0C114.6 0 0 114.6 0 256.1 0 397.4 114.6 512 255.9 512 397.4 512 512 397.4 512 256.1 512 114.6 397.4 0 255.9 0M384 160c-30.1.3-48.4-4.6-81.2 64H352v64h-64s-53.5 129.4-160 128c-.8-14.2 0-43.9 0-64 70.5-10.7 93.6-88.3 109.9-126.9C286.3 74.5 384 95.1 384 95.1z" />',viewBox:"0 0 512 512"},ds={name:"binoculars",content:'<path d="M480 288v96c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32v-64H192v64c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32v-64c0-17.7 14.3-32 32-32v-32c0-17.7 14.3-32 32-32h64s32 0 32 32v128h64V128c0-32 32-32 32-32h64c17.7 0 32 14.3 32 32v32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32M208 64h16V32h-96v32zm160 0h16V32h-96v32zM48 448H32v32h160v-32zm272 32h160v-32H320z" />',viewBox:"0 0 512 512"},vs={name:"copy",content:'<path d="M384 96H192c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V192zm64 352H192V128h160v96h96zM64 384h64v32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h192l32 32H64z" />',viewBox:"0 0 512 512"},fs={name:"cut",content:'<path d="M480 32h-45.3L256 210.7 210.7 256l-69.5 69.5c-9.1-3.6-18.9-5.5-29.2-5.5-44.2 0-80 35.8-80 80 0 10.3 2 20.2 5.5 29.2 8.1 20.7 24.6 37.1 45.3 45.3 9.1 3.6 18.9 5.5 29.2 5.5 44.2 0 80-35.8 80-80 0-10.3-2-20.2-5.5-29.2l69.5-69.5 69.5 69.5c-3.6 9.1-5.5 18.9-5.5 29.2 0 44.2 35.8 80 80 80 10.3 0 20.2-2 29.2-5.5 20.7-8.1 37.1-24.6 45.3-45.3 3.6-9.1 5.5-18.9 5.5-29.2 0-44.2-35.8-80-80-80-10.3 0-20.2 2-29.2 5.5L301.3 256 480 77.3zM160 400c0 26.5-21.5 48-48 48-.9 0-1.8 0-2.7-.1-24.4-1.3-43.9-20.9-45.3-45.3 0-.9-.1-1.8-.1-2.7 0-26.5 21.5-48 48-48 .9 0 1.8 0 2.7.1 24.4 1.3 43.9 20.9 45.3 45.3.1.9.1 1.8.1 2.7m237.3-47.9c.9 0 1.8-.1 2.7-.1 26.5 0 48 21.5 48 48 0 .9 0 1.8-.1 2.7-1.3 24.4-20.9 43.9-45.3 45.3-.9 0-1.8.1-2.7.1-26.5 0-48-21.5-48-48 0-.9 0-1.8.1-2.7 1.4-24.5 20.9-44 45.3-45.3M240 256c0-8.8 7.2-16 16-16s16 7.2 16 16-7.2 16-16 16-16-7.2-16-16m-74.5-45.3L32 77.3V32h45.3l133.5 133.5z" />',viewBox:"0 0 512 512"},ms={name:"clipboard",content:'<path d="M416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64z" />',viewBox:"0 0 512 512"},gs={name:"clipboard-code",content:'<path d="M214.6 361.4 192 384l-80-80 80-80 22.6 22.6-57.3 57.4zM448 64v384c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h104.6C211.7 12.9 232.3 0 256 0s44.3 12.9 55.4 32H416c17.7 0 32 14.3 32 32m-224 0h64c0-17.7-14.3-32-32-32s-32 14.3-32 32m192 0h-64v64H160V64H96v384h320zM297.4 246.6l57.4 57.4-57.4 57.4L320 384l80-80-80-80z" />',viewBox:"0 0 512 512"},ys={name:"clipboard-word",content:'<path d="m128 160 48.5 192h46.7L256 238.4 285.3 352h43.1L384 160h-73v35h19.3l-22.2 86-28.8-121h-45.4l-33.1 119.3-25-119.3zM416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64zm-32-32H128v-32h256z" />',viewBox:"0 0 512 512"},bs={name:"clipboard-word-alt",content:'<path d="m128 160 48.5 192h46.7L256 238.4 285.3 352h43.1L384 160h-73v35h19.3l-22.2 86-28.8-121h-45.4l-33.1 119.3-25-119.3zM416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64z" />',viewBox:"0 0 512 512"},xs={name:"clipboard-html",content:'<path d="M214.6 361.4 192 384l-80-80 80-80 22.6 22.6-57.3 57.4zM448 64v384c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h104.6C211.7 12.9 232.3 0 256 0s44.3 12.9 55.4 32H416c17.7 0 32 14.3 32 32m-224 0h64c0-17.7-14.3-32-32-32s-32 14.3-32 32m192 0h-64v64H160V64H96v384h320zM271.2 183.9 209.8 416l30.9 8.3L302.2 192zm26.2 62.7 57.4 57.4-57.4 57.4L320 384l80-80-80-80z" />',viewBox:"0 0 512 512"},ws={name:"clipboard-markdown",content:'<path d="M226 224h30v128h-32v-72.8l-32.2 45.6L160 279v73h-32V224h32l31.8 46.2zm126 64h32l-48 64-48-64h32l.2-64H352zm64-256H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64z" />',viewBox:"0 0 512 512"},_s={name:"clipboard-text",content:'<path d="M416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64zm-32-224H128v-32h256zm0 64H128v-32h256zm0 64H128v-32h256zm0 64H128v-32h256z" />',viewBox:"0 0 512 512"},Cs={name:"apply-format",content:'<path d="M380.984 313.69c12.445 12.445 12.445 32.81 0 45.255L266.529 470.658c-12.445 12.445-32.787 12.467-45.255 0L0 248.898c18.584 18.584 40.255-4.835 40.255-4.835L154.71 132.671c12.445-12.445 32.81-12.445 45.255 0zm89.682-227.101-45.255-45.255c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882-22.627-22.627c-12.445-12.445-32.81-12.445-45.255 0l-22.627 22.627 181.019 181.019 22.627-22.627c12.445-12.445 12.445-32.81 0-45.255l-22.627-22.627 67.882-67.882c12.445-12.446 12.445-32.81 0-45.255" />',viewBox:"0 0 512 512"},Os={name:"clear-css",content:'<path d="M402.784 290.235 221.765 109.216l22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627 67.882-67.882c12.445-12.445 32.81-12.445 45.255 0l45.255 45.255c12.445 12.445 12.445 32.81 0 45.255l-67.882 67.882 22.627 22.627c12.445 12.445 12.445 32.81 0 45.255zm-21.8 23.455-181.02-181.019c-12.346-12.346-32.483-12.437-44.953-.287L54.627 32 32 54.627l100.074 100.074-91.819 89.362S18.585 267.482 0 248.898l221.274 221.76c12.467 12.467 32.81 12.445 45.255 0l91.851-89.651L457.373 480 480 457.373l-98.73-98.73c12.151-12.47 12.06-32.607-.286-44.953" />',viewBox:"0 0 512 512"},Ss={name:"copy-format",content:'<path d="M96 480h160v32H64v-64H0V288h32v128h32v-64h32zm32-32h96v-32h-96zm0-96v32h32v-32zm284.2-92.6L253.8 101c-12.4-12.4-32.9-12.4-45.3.1l-69.8 69.8-.2.2c-11.6 11.6-30 12.7-42.5 2.7l200.9 200.9c12.5 12.5 32.8 12.4 45.3 0l69.9-69.9c12.5-12.5 12.5-33 .1-45.4M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2" />',viewBox:"0 0 512 512"},zs={name:"strip-all-formatting",content:'<path d="M32 480h224v32H0v.1V256h32zm32-32h159v-32H64zm97-96H63v32h98zm-65-64H64v32h32zm316.2-28.6L253.8 101c-12.4-12.4-32.9-12.4-45.3.1l-69.8 69.8-.2.2c-11.6 11.6-30 12.7-42.5 2.7l200.9 200.9c12.5 12.5 32.8 12.4 45.3 0l69.9-69.9c12.5-12.5 12.5-33 .1-45.4M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2" />',viewBox:"0 0 512 512"},Ms={name:"strip-css-format",content:'<path d="M0 288v224h416V288zm145 65.9c-10-6.2-21-9.3-33.4-9.3-13.6 0-24.5 4.6-32.9 13.7-8.3 9.1-12.5 21.5-12.5 37.1 0 15 3.9 26.9 11.8 35.8s18.4 13.3 31.7 13.3c12.7 0 24.3-3.3 34.3-9.9v31.8c-9.9 5.5-23.7 8.2-40.7 8.2-22.2 0-39.6-7-52.3-20.9-12.7-14-19-32.5-19-55.8 0-24.7 7.1-44.8 21.4-60.2s32.8-23.1 55.6-23.1c14.1 0 26 1.9 36 5.7zM260.6 450c-3.1 5.9-7.2 10.6-12.4 14.2s-11.3 6.2-18.2 7.8q-10.5 2.4-21.9 2.4c-7.9 0-15.4-.7-22.5-2.2-7.2-1.4-13.4-3.6-18.5-6.5v-34.4c5.8 5.3 12.2 9.2 18.9 11.8q10.35 3.9 20.7 3.9c4.1 0 7.7-.4 10.7-1.2 3.1-.8 5.6-1.9 7.7-3.3 2-1.4 3.6-3.1 4.6-5s1.5-4 1.5-6.2q0-4.5-2.4-8.1t-6.6-6.6c-4.2-3-6.1-4-9.9-5.8-3.8-1.9-8-3.8-12.4-5.7-11.3-5-19.6-11.2-25.1-18.4-5.5-7.3-8.3-15.9-8.3-26.2q0-12.15 4.5-20.7c4.5-8.55 7.1-10.6 12.3-14.3s11.2-6.5 18-8.3c6.9-1.8 14.1-2.6 21.7-2.6 7.5 0 14.2.5 19.9 1.5 5.8 1 11.2 2.5 16 4.5v32.2c-2.4-1.8-5.1-3.4-7.9-4.7-2.9-1.4-5.8-2.5-8.8-3.4s-6-1.6-9-2-5.8-.6-8.5-.6c-3.7 0-7.1.4-10.1 1.1-3 .8-5.6 1.8-7.7 3.2s-3.7 3-4.8 4.9-1.7 4-1.7 6.4c0 2.6.6 4.9 1.9 7s3.1 4 5.4 5.8 5.2 3.6 8.6 5.4 7.2 3.6 11.4 5.5c5.8 2.6 11 5.3 15.5 8.3 4.6 2.9 8.6 6.2 11.8 9.9 3.3 3.7 5.8 7.9 7.6 12.6 1.7 4.7 2.6 10.2 2.6 16.3 0 8.5-1.6 15.7-4.6 21.5m119 0c-3.1 5.9-7.2 10.6-12.4 14.2s-11.3 6.2-18.2 7.8q-10.5 2.4-21.9 2.4c-7.9 0-15.4-.7-22.5-2.2-7.2-1.4-13.4-3.6-18.5-6.5v-34.4c5.8 5.3 12.2 9.2 18.9 11.8q10.35 3.9 20.7 3.9c4.1 0 7.7-.4 10.7-1.2 3.1-.8 5.6-1.9 7.7-3.3 2-1.4 3.6-3.1 4.6-5s1.5-4 1.5-6.2q0-4.5-2.4-8.1t-6.6-6.6c-4.2-3-6.1-4-9.9-5.8-3.8-1.9-8-3.8-12.4-5.7-11.3-5-19.6-11.2-25.1-18.4-5.5-7.3-8.3-15.9-8.3-26.2q0-12.15 4.5-20.7c3-5.8 7.1-10.6 12.3-14.3s11.2-6.5 18-8.3c6.9-1.8 14.1-2.6 21.7-2.6 7.5 0 14.2.5 19.9 1.5 5.8 1 11.2 2.5 16 4.5v32.2c-2.4-1.8-5.1-3.4-7.9-4.7-2.9-1.4-5.8-2.5-8.8-3.4s-6-1.6-9-2-5.8-.6-8.5-.6c-3.7 0-7.1.4-10.1 1.1-3 .8-5.6 1.8-7.7 3.2s-3.7 3-4.8 4.9-1.7 4-1.7 6.4c0 2.6.6 4.9 1.9 7s3.1 4 5.4 5.8c2.4 1.8 5.2 3.6 8.6 5.4s7.2 3.6 11.4 5.5c5.8 2.6 11 5.3 15.5 8.3 4.6 2.9 8.5 6.2 11.8 9.9s5.8 7.9 7.6 12.6c1.7 4.7 2.6 10.2 2.6 16.3 0 8.5-1.5 15.7-4.6 21.5M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2m-246.9 69.9c-12.4-12.4-32.8-12.4-45.3 0l-79.7 79.7c-12.4 12.4-32.8 12.4-45.3 0L160 256h249.9z" />',viewBox:"0 0 512 512"},Ps={name:"strip-font-elements",content:'<path d="M502.666 31.961 480.039 9.334c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882-22.627-22.627c-12.445-12.445-32.81-12.445-45.255 0l-22.627 22.627 158.392 158.392 22.627-22.627c12.445-12.445 12.445-32.81 0-45.255l-22.627-22.627 67.882-67.882c12.444-12.446 12.444-32.811-.001-45.256m-246.848 69.936c-12.445-12.445-32.81-12.445-45.255 0l-79.706 79.706c-12.445 12.445-32.81 12.445-45.255 0L160 256h249.921zM176 348.121 200.706 416h-49.412zM0 288v224h352V288zm224 192-11.647-32h-72.706L128 480H96l58.235-160h43.53L256 480z" />',viewBox:"0 0 512 512"},Vs={name:"strip-span-elements",content:'<path d="M96 288 0 400l96 112h256V288zm170.3 167.5c-3.9 5.9-9.3 10.6-16.1 14.2s-14.6 6.2-23.6 7.8-18.4 2.4-28.4 2.4c-10.2 0-20-.7-29.2-2.2-9.2-1.4-17.2-3.6-24-6.5v-34.5c7.5 5.2 15.7 9.2 24.6 11.8 8.8 2.6 17.8 3.9 26.8 3.9 5.3 0 9.9-.4 13.9-1.2q5.85-1.2 9.9-3.3c2.6-1.4 4.6-3.1 5.9-5s2-4 2-6.2c0-3-1-5.7-3.1-8.1s-4.9-4.6-8.5-6.6-7.9-4-12.8-5.8c-4.9-1.9-10.3-3.8-16-5.7-14.6-5-25.4-11.2-32.6-18.4-7.2-7.3-10.7-16-10.7-26.3 0-8.1 2-15 5.9-20.8s9.2-10.5 15.9-14.3c6.7-3.7 14.5-6.5 23.3-8.3s18.2-2.6 28.1-2.6q14.55 0 25.8 1.5c11.25 1.5 14.4 2.5 20.7 4.5v32.3c-3.1-1.8-6.5-3.4-10.2-4.7-3.7-1.4-7.5-2.5-11.4-3.4s-7.8-1.6-11.6-2c-3.9-.4-7.5-.6-11-.6-4.8 0-9.1.4-13 1.1-3.9.8-7.2 1.8-9.9 3.2s-4.8 3-6.2 4.9c-1.5 1.9-2.2 4-2.2 6.4 0 2.6.8 4.9 2.5 7 1.6 2.1 4 4 7 5.8q4.5 2.7 11.1 5.4 6.45 2.7 14.7 5.4c7.5 2.6 14.2 5.3 20.1 8.3q8.85 4.35 15.3 9.9c4.2 3.7 7.5 7.9 9.8 12.6s3.4 10.2 3.4 16.4c-.3 8.6-2.3 15.9-6.2 21.7M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2m-246.9 69.9c-12.4-12.4-32.8-12.4-45.3 0l-79.7 79.7c-12.4 12.4-32.8 12.4-45.3 0L160 256h249.9z" />',viewBox:"0 0 512 512"},As={name:"strip-word-formatting",content:'<path d="M0 288v224h352V288zm239.3 192h-37.7L176 385.4 147.4 480h-40.9L64 320h40.6l21.9 100.4L155.8 320h40.4l25.2 100.4 19.4-71.4H224v-29h64zM502.7 77.2l-67.9 67.9 22.6 22.6c12.4 12.4 12.4 32.8 0 45.3l-22.6 22.6L276.4 77.2 299 54.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6 67.9-67.9c12.4-12.4 32.8-12.4 45.3 0L502.7 32c12.4 12.4 12.4 32.8 0 45.2M409.9 256H160l-74.4-74.4c12.4 12.4 32.8 12.4 45.3 0l79.7-79.7c12.4-12.4 32.8-12.4 45.3 0z" />',viewBox:"0 0 512 512"},js={name:"format-code-block",content:'<path d="M224 352v160h288V352zm102.6 105.4L304 480l-48-48 22.6-22.6L304 384l22.6 22.6-25.3 25.4zM432 480l-22.6-22.6 25.4-25.4-25.4-25.4L432 384l25.4 25.4L480 432zM192 160V32c0-17.6-14.4-32-32-32h-32c-17.6 0-32 14.4-32 32v128L0 256h288zm96 128H0v192h64V320h32v160h32V320h32v160h32V320h96z" />',viewBox:"0 0 512 512"},ks={name:"building-blocks",content:'<path d="M127.9 289V128H160V80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h64V80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h32v160zM96 320v-48c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v48H0v128h224V320zm384 0v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H288v128h224V320z" />',viewBox:"0 0 512 512"},Hs={name:"puzzle-piece",content:'<path d="M480 352c0 1 0 2-.1 2.9v.8c0 .8-.1 1.7-.2 2.5v.5c-.1 1-.2 1.9-.4 2.8-.1.4-.1.9-.2 1.3s-.1.8-.2 1.2-.2.7-.2 1.1l-.6 2.7c-.1.4-.2.7-.3 1.1 0 .2-.1.5-.2.7-.2.5-.4 1.1-.5 1.7-.3.9-.6 1.8-.9 2.6 0 .1-.1.2-.1.3-.3.8-.6 1.6-.9 2.3-.1.2-.2.5-.3.7-.3.8-.7 1.5-1 2.3 0 .1-.1.2-.1.2-.4.8-.8 1.6-1.3 2.4l-.6 1.2c-.2.4-.4.7-.6 1.1-.2.3-.3.6-.5.8-.5.8-1 1.5-1.5 2.3l-.6.9c-.2.4-.5.7-.7 1s-.5.6-.7.9c-.5.7-1.1 1.4-1.7 2.1l-.3.3-1.5 1.8c-.2.2-.3.4-.5.5-.6.7-1.2 1.3-1.9 2-.6.6-1.3 1.3-2 1.9-.4.3-.7.7-1.1 1-.3.3-.7.6-1 .9-.2.1-.3.3-.5.4-.7.6-1.4 1.1-2.1 1.7-.3.3-.7.5-1 .8-.3.2-.6.5-1 .7l-.9.6c-.8.5-1.5 1-2.3 1.5-.2.1-.5.3-.7.4-.4.2-.7.4-1.1.6s-.8.5-1.3.7c-.8.4-1.6.9-2.4 1.3-.1.1-.2.1-.3.2-.3.2-.7.4-1 .5-.6.2-1.2.5-1.9.8-.8.3-1.6.6-2.3.9-.1 0-.2.1-.3.1-.9.3-1.7.6-2.6.9-.6.2-1.2.3-1.7.6-.2.1-.5.1-.7.2-.4.1-.7.2-1.1.3l-2.7.6c-.3.1-.5.1-.8.2-.5.1-1.1.2-1.7.3-.4.1-.8.1-1.2.2-.9.1-1.9.3-2.8.4-.2 0-.5 0-.7.1-.4.1-.9.1-1.3.1-.6 0-1.1.1-1.7.1-1 0-2 .1-2.9.1-1.2 0-2.3 0-3.5-.1-.4 0-.7-.1-1.1-.1-.8-.1-1.6-.1-2.3-.2-.4 0-.9-.1-1.3-.2l-2.1-.3c-.4-.1-.9-.2-1.3-.2-.7-.1-1.4-.3-2-.4-.4-.1-.9-.2-1.3-.3-.7-.2-1.4-.3-2-.5l-1.2-.3c-.7-.2-1.4-.4-2.1-.7-.4-.1-.7-.2-1.1-.4-.8-.3-1.5-.6-2.3-.9-.3-.1-.5-.2-.8-.3-1-.4-1.9-.8-2.8-1.2-.1 0-.1-.1-.2-.1-3.1-1.5-6-3.2-8.8-5.1-.1 0-.1-.1-.2-.2-.8-.6-1.7-1.2-2.5-1.8-.1-.1-.2-.2-.3-.2-.8-.6-1.6-1.2-2.3-1.9-.3-.2-.6-.5-.8-.7-.5-.4-1-.8-1.4-1.3l-.5-.5c-.8-.8-1.6-1.5-2.3-2.3l-1.5-1.5c-.3-.3-.5-.6-.7-.9-.1-.2-.2-.3-.4-.5-4.9-5.7-12-8.9-19.5-8.9h-1.4c-14.3 0-25.9 11.6-25.9 25.9v70H217.9c-14.3 0-25.9-11.6-25.9-25.9v-1.4c0-7.5 3.3-14.6 8.9-19.5 15-12.5 24.2-31.6 23-52.9-1.8-32.5-28.3-58.7-60.9-60.2-36.7-1.7-67 27.6-67 63.9 0 19.6 8.8 37.1 22.6 48.8 5.9 5 9.4 12.2 9.4 19.9v1.4c0 14.3-11.6 25.9-25.9 25.9H32V192h70.1c14.3 0 25.9-11.6 25.9-25.9v-1.4c0-7.5-3.3-14.6-8.9-19.5l-.3-.3c-.7-.5-1.4-1.1-2-1.7l-.6-.6c-.8-.8-1.6-1.5-2.3-2.3l-.2-.2c-.7-.7-1.4-1.5-2.1-2.3-.1-.1-.2-.2-.2-.3-.7-.8-1.3-1.5-1.9-2.3-.1-.1-.2-.2-.2-.3-.6-.8-1.2-1.6-1.8-2.5l-.2-.2c-1.9-2.8-3.6-5.7-5.1-8.8 0-.1-.1-.1-.1-.2-.4-.9-.9-1.9-1.2-2.8-.1-.3-.2-.5-.3-.8-.3-.8-.6-1.5-.9-2.3-.1-.3-.2-.7-.4-1.1-.2-.7-.5-1.4-.7-2.1l-.3-1.2c-.2-.7-.4-1.4-.5-2-.1-.4-.2-.9-.3-1.3-.1-.7-.3-1.4-.4-2-.1-.4-.2-.9-.2-1.3l-.3-2.1c-.1-.4-.1-.9-.2-1.3-.1-.8-.1-1.6-.2-2.3 0-.4-.1-.7-.1-1.1-.1-1.2-.1-2.3-.1-3.5 0-1 0-2 .1-2.9 0-.4 0-.9.1-1.3 0-.7.1-1.4.2-2v-.4c.1-.9.2-1.9.4-2.8 0-.2.1-.4.1-.7.1-.8.3-1.6.4-2.4 0-.2.1-.4.1-.5l.6-2.7c0-.1.1-.3.1-.4.2-.7.4-1.4.6-2.2l.3-.9c.3-.9.6-1.8.9-2.6 0-.1.1-.2.1-.3.3-.8.6-1.6.9-2.3.1-.2.2-.5.3-.7.3-.8.7-1.5 1-2.3 0-.1.1-.2.1-.3.4-.8.8-1.6 1.3-2.4l.3-.6c.4-.7.7-1.3 1.1-1.9.1-.2.2-.3.3-.5.5-.8 1-1.5 1.5-2.3.1-.1.2-.3.3-.4.4-.6.9-1.2 1.3-1.8.1-.2.3-.4.4-.6.5-.7 1.1-1.4 1.7-2.1l.3-.3 1.5-1.8c.2-.2.3-.4.5-.5.6-.7 1.2-1.3 1.9-2 .6-.6 1.3-1.3 2-1.9.2-.2.4-.3.5-.5l1.8-1.5.3-.3c.7-.6 1.4-1.1 2.1-1.7.2-.1.3-.3.5-.4.6-.5 1.3-.9 1.9-1.3.2-.1.3-.2.5-.3.8-.5 1.5-1 2.3-1.5.1-.1.3-.2.4-.2.6-.4 1.3-.8 1.9-1.1.2-.1.5-.3.7-.4.8-.4 1.6-.9 2.4-1.3.1 0 .2-.1.2-.1.8-.4 1.5-.7 2.3-1 .2-.1.5-.2.7-.3.8-.3 1.5-.6 2.3-.9.1 0 .2-.1.3-.1.9-.3 1.7-.6 2.6-.9.3-.1.6-.2.8-.3.7-.2 1.4-.4 2.2-.6.2 0 .3-.1.5-.1l2.7-.6c.2 0 .4-.1.6-.1.8-.2 1.6-.3 2.3-.4.2 0 .5-.1.7-.1.9-.1 1.9-.3 2.8-.4.2 0 .4 0 .5-.1.8-.1 1.6-.1 2.5-.2h.7c1 0 1.9-.1 2.9-.1s2 0 3 .1h.7c.9.1 1.8.1 2.7.2h.2c30 3.1 53.9 26.9 57.1 57 0 .3.1.7.1 1 .1.7.1 1.4.2 2.1 0 .5 0 .9.1 1.4v5c0 .5-.1 1-.1 1.4 0 .6-.1 1.2-.1 1.7s-.1 1-.2 1.5c-.1.6-.1 1.1-.2 1.7-.1.5-.1 1-.2 1.5s-.2 1.1-.3 1.6l-.3 1.5c-.1.5-.2 1-.4 1.5-.1.5-.2 1-.4 1.5-.1.5-.3.9-.4 1.4-.2.5-.3 1-.5 1.5-.1.4-.3.9-.4 1.3-.2.5-.4 1.1-.6 1.6-.1.4-.3.8-.5 1.2-.2.6-.4 1.1-.7 1.7-.1.3-.3.7-.4 1-.3.6-.5 1.2-.8 1.8-.1.2-.2.5-.4.7-.3.7-.7 1.3-1 2 0 .1-.1.2-.1.2-3.8 6.7-8.7 12.7-14.5 17.7h-.1c-5.8 5-9.4 12.2-9.4 19.9v1.4c0 14.3 11.6 25.9 25.9 25.9H320v116.7c0 6.3 5.1 11.3 11.3 11.3H357c5.2 0 9.1-4.1 10-9.2 0-.1.1-.1.1-.2 5-5.8 10.9-10.8 17.7-14.5.1 0 .2-.1.2-.1.7-.4 1.3-.7 2-1 .2-.1.5-.2.7-.4.6-.3 1.2-.6 1.8-.8.3-.1.7-.3 1-.4.6-.2 1.1-.5 1.7-.7.4-.2.8-.3 1.2-.5.5-.2 1.1-.4 1.6-.6.4-.2.9-.3 1.3-.4.5-.2 1-.3 1.5-.5.5-.1.9-.3 1.4-.4s1-.3 1.5-.4 1-.2 1.5-.4l1.5-.3c.5-.1 1.1-.2 1.6-.3s1-.2 1.5-.2c.6-.1 1.1-.1 1.7-.2.5-.1 1-.1 1.5-.2.6-.1 1.1-.1 1.7-.1.5 0 1-.1 1.4-.1h5c.5 0 .9 0 1.4.1.7 0 1.4.1 2.1.2.3 0 .7.1 1 .1 30 3.1 53.9 27 57 57.1v.2c.1.9.2 1.8.2 2.7v.7c.2.4.2 1.4.2 2.4" />',viewBox:"0 0 512 512"},Is={name:"link-add",content:'<path d="M448 416v-64h-32v64h-64v32h64v64h32v-64h64v-32zM96 256c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32m-32 0c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.4 0-64 28.6-64 64m416 84.7c19.9-22.6 32-52.2 32-84.7 0-70.7-57.3-128-128-128-47.3 0-88.7 25.8-110.8 64H384c35.3 0 64 28.6 64 64s-28.6 64-64 64h96zM384 320H273.2c22.1 38.2 63.4 64 110.8 64z" />',viewBox:"0 0 512 512"},Bs={name:"globe-link",content:'<path d="M161.7 412.6C69.1 391.2 0 308.1 0 209 0 93.6 93.6 0 209 0s209 93.6 209 209c0 58.2-23.8 110.8-62.2 148.7-20.5-23.1-50.4-37.7-83.8-37.7-3.9 0-7.8.2-11.6.6 12-15.9 26.4-28.8 41.3-33 22.6-18.6 21.6-35.2 18.6-50.2-7-12.6-38.7-23.6-68.8-49.7-18.1-4-40.2 7.5-48.7-3.5-8.5-11.1-48.7-27.1-31.1-44.7s44.2.5 54.8-35.7C236.9 67.6 259 82.6 270 82.6c11.1 0 13.1-26.1-7.5-35.7-20.6-9.5-49.7-19.6-100.5-14.6-50.7 5-86.4 27.6-75.4 47.7 11.1 20.1 44.2 83.9 81.4 94.5s35.7 20.2 41.7 27.1c6 7-11.3 22.2 5.1 50.8 8.9 12 17 5 21 25.1 1.9 9.4-2.7 30.3-6.4 50.8-34.9 14.4-61 46-67.7 84.3M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80m0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16" />',viewBox:"0 0 512 512"},Ls={name:"globe-unlink",content:'<path d="M161.7 412.6C69.1 391.2 0 308.1 0 209 0 93.6 93.6 0 209 0s209 93.6 209 209c0 58.2-23.8 110.8-62.2 148.7-20.5-23.1-50.4-37.7-83.8-37.7-3.9 0-7.8.2-11.6.6 12-15.9 26.4-28.8 41.3-33 22.6-18.6 21.6-35.2 18.6-50.2-7-12.6-38.7-23.6-68.8-49.7-18.1-4-40.2 7.5-48.7-3.5-8.5-11.1-48.7-27.1-31.1-44.7s44.2.5 54.8-35.7C236.9 67.6 259 82.6 270 82.6s13.1-26.1-7.5-35.7c-20.6-9.5-49.7-19.6-100.5-14.6-50.7 5-86.4 27.6-75.4 47.7 11.1 20.1 44.2 83.9 81.4 94.5s35.7 20.2 41.7 27.1c6 7-11.3 22.2 5.1 50.8 8.9 12 17 5 21 25.1 1.9 9.4-2.7 30.3-6.4 50.8-34.9 14.4-61 46-67.7 84.3M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80" />',viewBox:"0 0 512 512"},Ts={name:"envelop-link",content:'<path d="M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80m0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16M32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32zm23.7 32L224 200.3 392.3 32c11 2.9 19.7 11.6 22.6 22.6L310.6 158.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L288 181.5l-64 64-64-64L55.7 285.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L33.1 54.6C36 43.6 44.7 34.9 55.7 32" />',viewBox:"0 0 512 512"},Es={name:"anchor",content:'<path d="m352 288 44.5 44.5c-22.3 40.7-61.7 70.7-108.5 80.3V151.4c19.1-11.1 32-31.8 32-55.4 0-35.3-28.7-64-64-64s-64 28.7-64 64c0 23.6 12.9 44.3 32 55.4v261.4c-46.8-9.5-86.2-39.6-108.5-80.3L160 288H32v128l36.9-36.9C108.9 439.9 177.8 480 256 480s147.1-40.1 187.1-100.9L480 416V288zM256 64c17.6 0 32 14.4 32 32s-14.4 32-32 32-32-14.4-32-32 14.4-32 32-32" />',viewBox:"0 0 512 512"},Ds={name:"table-add",content:'<path d="M448 320V32H32v416h288V320zm-288 96H64v-96h96zm0-128H64v-96h96zm0-128H64V64h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96zm32-96h96v96h-96zm0 224v-96h96v96zm192 128v32h-64v64h-32v-64h-64v-32h64v-64h32v64z" />',viewBox:"0 0 512 512"},Ns={name:"table",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm0 128v96h-96v-96zM64 64h96v96H64zm0 128h96v96H64zm0 224v-96h96v96zm128 0v-96h96v96zm224 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Rs={name:"table-properties",content:'<path d="m502.666 77.216-22.627 22.627-67.882-67.882 22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627c12.445 12.445 12.445 32.81 0 45.255M392.483 51.635l67.882 67.882L290.66 288H224v-66.66zm22.627 67.882L392.483 96.89 256.719 232.654l22.627 22.627zM384 256l32-32v288H0V96h288l-32 32h-96v224h224zM128 384H32v96h96zm0-128H32v96h96zm0-128H32v96h96zm128 256h-96v96h96zm128 0h-96v96h96z" />',viewBox:"0 0 512 512"},Fs={name:"table-cell",content:'<path d="M32 32v416h416V32zm128 384H64v-96h96zm0-128H64v-96h96zm0-128H64V64h96zm128 256h-96v-96h96zm0-256h-96V64h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Us={name:"table-cell-properties",content:'<path d="m502.666 77.216-22.627 22.627-67.882-67.882 22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627c12.445 12.445 12.445 32.81 0 45.255M384 256l32-32v288H0V96h288l-32 32h-96v96h32v96h96v32h96zM128 384H32v96h96zm0-128H32v96h96zm0-128H32v96h96zm128 256h-96v96h96zm128 0h-96v96h96zm8.483-332.365 67.882 67.882-141.588 141.588L290.66 288H224v-66.66l26.895-28.118zm22.627 67.882L392.483 96.89 256.719 232.654l11.314 11.314 11.314 11.314z" />',viewBox:"0 0 512 512"},Ks={name:"table-column-insert-left",content:'<path d="M32 480V0h128v480zM480 32v416H192V32zM224 160h96V64h-96zm0 128h96v-96h-96zm0 128h96v-96h-96zm224-96h-96v96h96zm0-32v-96h-96v96zm0-224h-96v96h96z" />',viewBox:"0 0 512 512"},qs={name:"table-column-insert-right",content:'<path d="M352 480V0h128v480zM320 32v416H32V32zm-32 32h-96v96h96zm0 128h-96v96h96zm0 128h-96v96h96zM64 416h96v-96H64zm96-128v-96H64v96zM64 160h96V64H64z" />',viewBox:"0 0 512 512"},$s={name:"table-row-insert-above",content:'<path d="M480 160H0V32h480zM32 192h416v288H32zm32 32v96h96v-96zm128 0v96h96v-96zm128 0v96h96v-96zm96 224v-96h-96v96zm-128-96h-96v96h96zm-128 96v-96H64v96z" />',viewBox:"0 0 512 512"},Xs={name:"table-row-insert-below",content:'<path d="M480 480H0V352h480zM32 32h416v288H32zm128 256v-96H64v96zm128 0v-96h-96v96zm128 0v-96h-96v96zM320 64v96h96V64zm-32 0h-96v96h96zM64 64v96h96V64z" />',viewBox:"0 0 512 512"},Gs={name:"table-column-delete",content:'<path d="M192 288v224h128V288zm0-288v64h128V0zm160 32h128v416H352zm96 288h-64v96h64zm0-128h-64v96h64zm0-128h-64v96h64zM32 32h128v416H32zm96 288H64v96h64zm0-128H64v96h64zm0-128H64v96h64zm128 89.373L313.373 96 336 118.627 278.627 176 336 233.373 313.373 256 256 198.627 198.627 256 176 233.373 233.373 176 176 118.627 198.627 96z" />',viewBox:"0 0 512 512"},Ys={name:"table-row-delete",content:'<path d="M224 192H0v128h224zm288 0h-64v128h64zm-32 160v128H64V352zm-288 96v-64H96v64zm128 0v-64h-96v64zm128 0v-64h-96v64zm32-416v128H64V32zm-288 96V64H96v64zm128 0V64h-96v64zm128 0V64h-96v64zm-89.373 128L416 313.373 393.373 336 336 278.627 278.627 336 256 313.373 313.373 256 256 198.627 278.627 176 336 233.373 393.373 176 416 198.627z" />',viewBox:"0 0 512 512"},Ws={name:"table-cell-delete",content:'<path d="M96 192h160v128H96zM32 352h160v128H32zm32 32v64h96v-64zm128-224H32V32h160zm-32-96H64v64h96zm262.627 192L480 313.373 457.373 336 400 278.627 342.627 336 320 313.373 377.373 256 320 198.627 342.627 176 400 233.373 457.373 176 480 198.627z" />',viewBox:"0 0 512 512"},Zs={name:"table-delete",content:'<path d="M32 32v416h416V32zm384 128h-64v32h64v96h-64v32h64v96h-96v-64h-32v64h-96v-64h-32v64H64v-96h64v-32H64v-96h64v-32H64V64h96v64h32V64h96v64h32V64h96zm-153.4 80 57.4 57.4-22.6 22.6-57.4-57.4-57.4 57.4-22.6-22.6 57.4-57.4-57.4-57.4 22.6-22.6 57.4 57.4 57.4-57.4 22.6 22.6z" />',viewBox:"0 0 512 512"},Qs={name:"cells-merge",content:'<path d="M32 32v448h416V32zm160 32h96v64h-96zM64 64h96v64H64zm96 384H64v-64h96zm128 0h-96v-64h96zm128 0h-96v-64h96zm0-96H64V160h352zm0-224h-96V64h96z" />',viewBox:"0 0 512 512"},Js={name:"cells-merge-horizontally",content:'<path d="M32 32v416h416V32zm160 32h96v96h-96zM64 64h96v96H64zm96 352H64v-96h96zm128 0h-96v-96h96zm128 0h-96v-96h96zm0-128H64v-96h352zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},tc={name:"cells-merge-vertically",content:'<path d="M32 448h416V32H32zm32-160v-96h96v96zm0 128v-96h96v96zm352-96v96h-96v-96zm0-128v96h-96v-96zm0-128v96h-96V64zm-128 0v352h-96V64zm-128 0v96H64V64z" />',viewBox:"0 0 512 512"},ec={name:"cell-split-horizontally",content:'<path d="M32 32v416h416V32zm32 32h160v64H64zm160 160h-64v-64h64zM64 160h64v64H64zm0 96h160v64H64zm0 160v-64h160v64zm192-256h64v64h-64zm160 256H256v-64h160zm0-96H256v-64h160zm0-96h-64v-64h64zm0-96H256V64h160z" />',viewBox:"0 0 512 512"},oc={name:"cell-split-vertically",content:'<path d="M32 448h416V32H32zm32-32V256h64v160zm160-160v64h-64v-64zm-64 160v-64h64v64zm96 0V256h64v160zm160 0h-64V256h64zM160 224v-64h64v64zM416 64v160h-64V64zm-96 0v160h-64V64zm-96 0v64h-64V64zm-96 0v160H64V64z" />',viewBox:"0 0 512 512"},rc={name:"table-unmerge",content:'<path d="M32 32v416h416V32zm160 32h96v96h-96zm96 128v96h-96v-96zM64 64h96v96H64zm0 128h96v96H64zm96 224H64v-96h96zm128 0h-96v-96h96zm128 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},nc={name:"pane-freeze",content:'<path d="M32 32v416h416V32zm256 32 96 96h-64l-96-96zm-128 0 96 96h-64L96 64zM64 96l96 96v64l-96-96zm0 128 96 96v64l-96-96zm0 192v-64l64 64zm224 0h-96v-96h96zm0-128h-96v-96h96zm128 128h-96v-96h96zm0-128h-96v-96h96zM352 64h64v64z" />',viewBox:"0 0 512 512"},ic={name:"row-freeze",content:'<path d="M32 448h416V32H32zM64 96l64 64H64zm96-32 96 96h-64L96 64zm128 0 96 96h-64l-96-96zm128 64-64-64h64zm-96 160v-96h96v96zm-128 0v-96h96v96zm-32 0H64v-96h96zm160 128v-96h96v96zm-128 0v-96h96v96zm-128 0v-96h96v96z" />',viewBox:"0 0 512 512"},ac={name:"column-freeze",content:'<path d="M32 32v416h416V32zm128 32v64L96 64zM64 96l96 96v64l-96-96zm0 128 96 96v64l-96-96zm0 192v-64l64 64zm224 0h-96v-96h96zm0-128h-96v-96h96zm-96-128V64h96v96zm224 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},sc={name:"toolbar-float",content:'<path d="M64 352h416v128H64zm96 32H96v64h96v-64zm160 0h-96v64h96zm32 0v64h96v-64zM63.961 131.844l90.51 90.51 45.255-45.255-90.51-90.51zm0 0 90.51 90.51 45.255-45.255-90.51-90.51zm158.392 67.882 67.882-67.882-22.627-22.627-22.627 22.627-90.51-90.51c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882c-12.445 12.445-12.445 32.81 0 45.255l90.51 90.51-22.627 22.627 22.627 22.627 67.882-67.882L297.373 320 320 297.373zm-67.882 22.627-90.51-90.51 45.255-45.255 90.51 90.51zM480 256h-64v64h64z" />',viewBox:"0 0 512 512"},cc={name:"spell-checker",content:'<path d="M113.2 206.2q-11.1 9.3-24.6 13.5c-13.5 4.2-19.3 4.2-31 4.2-8.4 0-16.1-1-23.1-2.9s-13.1-4.9-18.2-8.8-9.1-8.8-12-14.6C1.4 192 0 185.2 0 177.5c0-18.9 8.1-32.9 24.4-41.9s40.9-13.5 74-13.5h13.7c0-2.6 0-5.3-.1-8.2s-.3-5.4-.7-7.6c-.8-7.6-3.5-13.2-8-17-4.5-3.7-11.8-5.6-21.7-5.6-10.4 0-18.1 1.9-23.3 5.8s-7.8 9.5-7.8 16.8H7c2.4-32.7 27.8-49 76.3-49 6.6 0 12.6.2 17.9.6s10.2 1.1 14.6 2c4.4 1 8.6 2.2 12.5 3.7s7.6 3.4 11.4 5.7c3.5 2.2 6.4 4.7 9 7.4 2.5 2.8 4.6 6.1 6.4 9.9 1.7 3.9 3 8.3 3.8 13.3s1.2 10.8 1.2 17.4V224h-46.8zm-1-58H96.8c-16.2 0-28.4 2-36.5 5.9s-12.2 10.6-12.2 20.2q0 10.95 7.5 16.2c7.5 5.25 11.5 5.2 19.4 5.2 7.6 0 14.6-1.5 21.2-4.5s11.9-6.9 15.8-11.7v-31.3zm125.2-61.6c5.5-7.2 12.3-12.8 20.2-16.7S274 64 283.1 64c10.2 0 19.2 1.9 26.8 5.7 7.7 3.8 14.1 9.2 19.3 16.3s9.1 15.7 11.7 25.9 4 21.6 4 34.3-1.2 19-4.3 29.4c-3 10.4-7.6 17.9-13.3 25.2q-8.55 10.95-20.7 17.1c-12.15 6.15-17.3 6.1-27.5 6.1-17.5 0-31.9-5.2-43.3-15.6V224H192V0h45.4zm0 91.7c4.4 4.1 9.1 7.2 14.1 9.4 5 2.1 10.5 3.2 16.5 3.2 9.8 0 17.4-4.3 22.7-12.8 5.3-8.6 7.9-14.7 7.9-31.8 0-32.7-9.6-49-28.7-49-6.2 0-12 1.9-17.4 5.6s-10.5 9-15.1 15.8zM442.2 224c-12.4 0-23.4-1.8-33.3-5.4-9.8-3.6-18.1-8.8-25-15.6-6.8-6.8-12-15.2-15.7-25.1s-5.5-21.3-5.5-34 1.8-24 5.5-33.9 8.9-18.2 15.9-25.1q10.35-10.35 25.2-15.6 14.85-5.4 33.6-5.4 30 0 48 14.1c18 14.1 19 23 21 40.9h-41c-1-7-3.9-12.7-8.8-16.9s-11.2-6.3-19.2-6.3c-10.2 0-18.4 3.9-24.5 11.6s-9.2 19.9-9.2 36.6c0 16.5 3.1 28.7 9.2 36.5s14.3 11.7 24.5 11.7c7.9 0 14.4-2.1 19.3-6.3s7.8-9.8 8.7-16.9h41c-2.5 17.7-9.7 31.2-21.5 40.7-11.6 9.6-27.7 14.4-48.2 14.4m69.8 0L224 512 64 352l64-64 96 96z" />',viewBox:"0 0 512 512"},lc={name:"validation-xhtml",content:'<path d="M192 224h-54l-26.2-96L86 224H32L0 64h42l22 96 22-96h52l22 96 22-96h42zm272.5-121.8c4.7 4.2 7.4 9.8 8.5 16.8h38.9c-2-17.9-8.6-31.3-19.9-40.8-11.5-9.3-26.5-14-45.6-14-11.9 0-22.5 1.7-32 5.3-9.4 3.6-17.4 8.9-23.9 15.7-6.7 6.9-11.6 15.2-15.1 25-3.5 10-5.3 21.2-5.3 33.8 0 12.8 1.8 24 5.3 33.8 3.5 10 8.3 18.4 14.8 25.1s14.5 11.8 23.8 15.4c9.4 3.6 20 5.4 31.6 5.4 19.4 0 34.7-4.8 45.9-14.3q16.8-14.25 20.4-40.5H473c-.9 7-3.7 12.6-8.3 16.8-4.7 4.3-10.7 6.3-18.3 6.3-9.8 0-17.5-3.9-23.5-11.7-5.8-7.8-8.6-19.9-8.6-36.3 0-16.7 2.8-28.7 8.6-36.5 5.9-7.8 13.6-11.5 23.5-11.5 7.5 0 13.6 2 18.1 6.2M316.7 219.8c7.3-2.3 13.6-5.8 18.9-10.2l.1-.1c5.2-4.6 9.1-9.9 11.8-16.1 2.8-6 4.2-12.7 4.2-20.7 0-10-2.7-18.4-8-25.3q-5.25-6.6-13.2-10.5c.3-.3.7-.5 1-.8 3.1-2.4 5.5-5 7.6-8.1 2-3 3.5-6.2 4.5-9.4 1-3.5 1.5-6.9 1.5-10.4 0-6.6-1.3-12.6-3.9-18.1-2.6-5.4-6.4-10.3-11.4-14.2-4.8-4.2-10.5-7.2-17-9.1-6.3-1.8-13.7-2.8-22.1-2.8-7.4 0-14.3 1-20.8 3.1-6.3 2.1-11.7 5.2-16.9 9.3-5 4.1-9 9.2-11.9 15.1-3 5.9-4.9 12.7-5.6 20.3l-.5 5.1h38.2l.5-4.4c1.6-14.6 9.9-16.5 16.9-16.5 4.8 0 8.3 1.1 10.7 3.3l.1.1c2.7 2.5 3.3 7.1 3.3 10.4 0 5.6-1.2 9.4-3.8 11.4l-.1.1c-2.8 2.4-7.2 3.5-13.4 3.5H276v31h13.7c7.4 0 12.8 1.4 16.3 4 3.3 2.7 4.9 6.5 4.9 12.2 0 2.9-.5 5.6-1.4 8-.9 2.3-2.1 4.1-3.9 5.9-1.4 1.5-3.4 2.7-5.9 3.6-2.4.9-5.2 1.4-8.4 1.4-3.4 0-6.3-.4-9-1.3-2.2-.8-4.1-2-5.7-3.5-1.6-1.6-2.8-3.3-3.7-5.2-.8-1.9-1.2-4.1-1.5-6.7l-.4-4.2h-39.1l.3 5c.5 7.4 2.3 14.5 5.3 21 3.1 6.1 7.8 11.8 14.2 16.6 4.9 3.8 10.8 6.6 17.8 8.4h.4c6.4 1.5 13.8 2.3 22.1 2.3 9.5 0 17.5-1.2 24.7-3.5M64 352l64-64 96 96 288-160-288 288z" />',viewBox:"0 0 512 512"},hc={name:"validation-data",content:'<path d="m64 352 64-64 96 96 288-160-288 288zm48.6-193.6c0 13-2.5 24.4-7.6 34.4s-12.3 17.7-21.8 23.1Q69.1 224 50.5 224H0V96h49.5c42.1 0 63.1 20.8 63.1 62.4m-38 .3c0-6.3-1.2-12-3.5-17-2.4-5-5.7-8.9-10.1-11.7-4.4-2.7-9.6-4.1-15.6-4.1H36v68h10.1c8.6 0 15.6-3.2 20.7-9.5 5.2-6.4 7.8-14.9 7.8-25.7M216.2 224l-5.5-24h-37.2l-5.9 24H128l42.3-128h45.9L256 224zm-23.6-100h-.9c-.1 1.4-.5 3.8-1.2 7.1s-4.1 17.2-10.4 41.9h23.4l-8.6-34.7c-1.1-5-1.9-9.8-2.3-14.3m127.4 4v96h-32v-96h-32V96h98v32zm120.2 96-5.5-24h-37.2l-5.9 24H352l42.3-128h45.9L480 224zm-23.6-100h-.9c-.1 1.4-.5 3.8-1.2 7.1s-4.1 17.2-10.4 41.9h23.4l-8.6-34.7c-1.1-5-1.9-9.8-2.3-14.3" />',viewBox:"0 0 512 512"},uc={name:"toggle-full-screen-mode",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m0 319.942a1 1 0 0 1-.058.058H64.058a.5.5 0 0 1-.058-.058V64.057a1 1 0 0 1 .057-.057h383.885q.031.027.058.057zM384 480H128c35.346 0 64-28.654 64-64h128c0 35.346 28.654 64 64 64m32-160H96c58.263-113.973 183.21-192 320-192z" />',viewBox:"0 0 512 512"},pc={name:"formula-fx",content:'<path d="m214 183.4-24.7 110c-11.5 53.4-22.7 92.1-33.7 116.1s-23.8 41.8-38.4 53.2C102.5 474.3 85.7 480 66.7 480c-12 0-20.7-2.7-26.3-8S32 460.5 32 453.3c0-6.7 2.3-12.5 7-17.4s10.8-7.3 18.3-7.3c6.3 0 11.2 1.9 14.5 5.6 3.4 3.7 5.1 8.5 5.1 14.2 0 5.2-1 9.1-3.2 11.6-2.1 2.5-3.2 4.2-3.2 5l1 1.7q1.2 1.2 3 1.2c4.2 0 7.8-1.5 10.8-4.7 7.4-7.7 13-17 16.6-27.9 2.5-7.5 7.4-27.4 14.5-59.5l43-192.6h-29.3l7-28.7c10.5.2 18.2-1.4 23-4.7s9.8-10.6 15.2-22c15.4-33.1 31.7-60.1 48.9-74.4S260.4 32 281.5 32c13.5 0 23.3 3 29.4 9.1s9.2 13.9 9.2 23.5c0 8.5-2 15.2-6.1 20.2-4.1 5.1-9.2 7.5-15.2 7.5-5.6 0-10.3-2-13.9-6.1s-5.5-9-5.5-14.7c0-4.1 1.1-8.4 3.5-13 2.3-4.6 3.5-7.7 3.5-9.3 0-1.8-.5-3.3-1.6-4.4-1-1.1-2.4-1.7-4.1-1.7-8.3 0-16.8 5.9-25.5 17.9-14.3 19.1-25.9 52.5-34.5 93.8h30.5l-7.4 28.7zm78.7 22.7 68.9-14.1c12.5 23.3 21.3 48.9 26.5 76.9 12.9-22.7 22.7-38.6 29.3-47.6 8.8-12.2 16.1-20.1 21.8-23.8 5.8-3.7 11.9-5.5 18.3-5.5 7.2 0 12.8 2.4 16.7 7 3.9 4.7 5.8 11 5.8 19 0 7.5-2 13.6-5.8 18.4-3.9 4.7-8.7 7.1-14.5 7.1-4.2 0-9-.9-14.5-2.7-5.4-1.8-9.3-2.7-11.3-2.7-5.6 0-10.8 2.4-15.8 7-6.8 6.4-15.2 20.1-25.3 41 11.2 46.9 20.1 75.5 26.9 85.8 3.9 6.1 7.9 9.2 12.1 9.2 3.4 0 6.4-1 8.9-3 3.8-3.3 9.7-11.5 17.6-24.6l7.1 4.9c-11.6 22.2-22.9 37.9-34 46.9-8.4 7-16.7 10.6-24.9 10.6-8.4 0-15.4-2.3-21-6.7-5.6-4.5-10.6-11.7-14.9-21.8-4.4-10-9.5-26.2-15.4-48.4q-23.1 34.95-36.3 51c-8.7 10.7-16 17.7-21.8 21s-12 4.9-18.6 4.9c-6.8 0-12.3-2.4-16.3-7q-6-7.05-6-18.3c0-7.9 2.2-14.5 6.5-19.6 4.3-5.2 9.9-7.7 16.6-7.7 3.6 0 7.6 1.3 12.1 3.7 6.6 3.8 11.3 5.7 14.2 5.7 3.8 0 7.2-.9 10.3-2.8 3.9-2.4 9-7.4 15-15.3 3.7-4.8 10.5-15.1 20.4-31-12.6-55.8-22.5-89.1-29.6-100-4.5-7-10.2-10.6-17-10.6-3.6 0-7.9.6-13 1.9z" />',viewBox:"0 0 512 512"},dc={name:"sum",content:'<path d="M416 64v128l-64-64H160l128 128-128 128h192l64-64v128H96v-64l128-128L96 128V64z" />',viewBox:"0 0 512 512"},vc={name:"symbol",content:'<path d="m448 416 32-32v96H320V375.8c11.4-5.1 22.2-11.5 32-19 38.9-29.7 64-76.9 64-130.1C416 136.8 344.4 64 256 64S96 136.8 96 226.7c0 53.2 25.1 100.5 64 130.1 9.8 7.5 20.6 13.9 32 19V480H32v-96l32 32h96v-18.5C84.3 366.7 32 300.6 32 224 32 118 132.3 32 256 32s224 86 224 192c0 76.6-52.3 142.7-128 173.5V416z" />',viewBox:"0 0 512 512"},fc={name:"dollar",content:'<path d="M326.6 273c-8.3-7.3-18.4-13.6-30.4-19.1-11.8-5.4-25.2-10.2-40.2-14.5V131.3c6.5.8 13 2.2 17.7 4.2 7.5 3.3 13.7 7.8 18.8 13.7q7.65 8.7 11.4 20.7c2.6 8 3.8 16.7 3.8 26.2H352c0-29.2-7.5-52-22.5-68.8s-36-26.8-62.9-30.1c0 0-5-.4-10.6-.8V32h-32v66.2c-11.9 1.5-22.6 4.3-32.2 8.4-10.6 4.5-19.6 10.3-27.1 17.5s-13.2 15.6-17.2 25.4c-4 9.7-6 20.5-6 32.2 0 12.7 2.2 23.8 6.7 33.4s11 18.2 19.5 25.6 18.8 13.8 30.9 19.3c7.8 3.5 16.3 6.8 25.4 9.7v110.7q-4.05-.6-8.1-1.5c-7.9-1.8-15.2-5.1-21.7-9.8s-11.8-11-15.8-19-6-18-6-30H128c0 16.2 2.6 30 7.9 41.6s12.4 21.2 21.3 28.6c8.9 7.5 19.1 13.3 30.6 17.3s23.4 6.5 35.7 7.5c0 0 .2 0 .5.1V480h32v-64.7c1.9-.2 3.1-.3 3.1-.3 14.1-1.3 26.9-4.1 38.4-8.3q17.25-6.45 29.4-17.1c8.1-7.1 14.3-15.6 18.6-25.4s6.5-20.9 6.5-33.2c0-12.5-2.2-23.5-6.5-33-4.3-9.4-10.6-17.8-18.9-25m-104.7-46.2c-8.8-4.1-15.9-8.4-21.2-12.9s-9.1-9.6-11.3-15c-2.2-5.5-3.4-11.6-3.4-18.5 0-7.4 1.2-14.1 3.6-20.3 2.4-6.1 6-11.3 10.8-15.7 4.8-4.3 10.9-7.7 18.3-10.1 1.7-.6 3.5-1 5.3-1.5v94.9c-.6-.2-1.4-.5-2.1-.9m81 125.2c-3 6.2-7.5 11.4-13.2 15.8-5.8 4.3-12.8 7.7-21.2 10-3.9 1.1-8.1 1.9-12.5 2.5V279.2c5.6 2 10.7 4.1 15.3 6.2 8.6 4 15.6 8.3 20.9 13 5.4 4.7 9.3 9.7 11.7 15.1q3.6 8.1 3.6 17.7c0 7.7-1.5 14.7-4.6 20.8" />',viewBox:"0 0 512 512"},mc={name:"percent",content:'<path d="M352 64h32L160 448h-32zm16 160c-44.2 0-80 50.1-80 112s35.8 112 80 112 80-50.1 80-112-35.8-112-80-112m0 192c-22.7 0-48-32.9-48-80s25.3-80 48-80 48 32.9 48 80-25.3 80-48 80M144 64c-44.2 0-80 50.1-80 112s35.8 112 80 112 80-50.1 80-112-35.8-112-80-112m0 192c-22.7 0-48-32.9-48-80s25.3-80 48-80 48 32.9 48 80-25.3 80-48 80" />',viewBox:"0 0 512 512"},gc={name:"custom-format",content:'<path d="M128 128v224H80V182.4s-13.1 19.1-48 19.1v-40.6c34.9 0 61.7-32.9 61.7-32.9zm94.4 184H320v40H169v-16.6c.3-11.3 2.2-21.4 6-30.3 3.8-9 8.6-17 14.3-24.1s12-13.4 18.8-18.9 13.3-10.4 19.4-14.8c6.5-4.6 12.1-9 17-13.2s9-8.4 12.3-12.5 5.8-8.3 7.5-12.6c1.6-4.2 2.5-8.8 2.5-13.6 0-9.4-2.7-16.5-8-21.4-5.3-4.8-13.5-7.2-24.4-7.2-18.9 0-37.1 7.5-54.4 22.6v-42.7q28.8-18.6 64.8-18.6c11.2 0 21.2 1.5 30 4.4 8.9 2.9 16.4 7.1 22.5 12.5s10.8 12 14.1 19.7c3.2 7.7 4.8 16.4 4.8 25.9 0 10.1-1.6 19.2-4.7 27-3.1 7.9-7.3 15.1-12.4 21.5-5.2 6.5-11.1 12.4-17.9 17.7q-10.2 8.1-21 15.6c-4.9 3.5-9.7 6.9-14.2 10.4-4.6 3.4-8.6 6.8-12.1 10.1s-6.2 6.6-8.3 9.8c-2.2 3.1-3.2 9.3-3.2 9.3M341 341.2v-41.7s32.1 15.8 51.5 15.8c12.2 0 21.8-2.6 28.6-7.9s10.2-12.5 10.2-21.9c0-9.7-4.2-17.1-12.7-22.3-8.4-5.3-20-7.9-34.8-7.2H364v-37h17.7c28.4 0 42.6-9.4 42.6-28.1q0-26.4-32.7-26.4c-14.7 0-28.8 4.7-42.6 14v-38.9c15.4-7.7 33.1-11.5 53.6-11.5 22.3 0 39.6 5 52.1 14.9 12.4 10 18.7 22.9 18.7 38.8 0 28.3-14.5 46-43.4 53.2v.3c15.5 1.9 27.6 7.5 36.5 16.8 8.9 9.2 13.3 20.6 13.3 34 0 20.3-7.4 36.4-22.4 48.2S421.9 352 395.7 352c-22.3.1-40.6-3.5-54.7-10.8" />',viewBox:"0 0 512 512"},yc={name:"decimal-increase",content:'<path d="M384 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64v-64c0-35.3-28.6-64-64-64m32 118c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7v-42.7c0-23.5 14.4-42.6 32-42.6 17.7 0 32 19.1 32 42.6zM384 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.6-64-64-64m32 118c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7v-42.7c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7zM224 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64s64-28.7 64-64v-64c0-35.3-28.6-64-64-64m32 118c0 23.6-14.3 42.7-32 42.7s-32-19.1-32-42.7v-42.7c0-23.5 14.3-42.6 32-42.6s32 19.1 32 42.6zM96 416h32v32H96zm160-224h32v32h-32zM192 32v192L64 128z" />',viewBox:"0 0 512 512"},bc={name:"decimal-decrease",content:'<path d="M384 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.6-64-64-64m32 116.7c0 23.5-14.3 42.6-32 42.6-17.6 0-32-19.1-32-42.6V106c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7zM384 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64v-64c0-35.3-28.6-64-64-64m32 116.7c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7V330c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7zM224 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64m32 116.7c0 23.5-14.3 42.6-32 42.6s-32-19.1-32-42.6V106c0-23.6 14.3-42.7 32-42.7s32 19.1 32 42.7zM128 224H96v-32h32zm128 192h32v32h-32zM64 256l128 96-128 96z" />',viewBox:"0 0 512 512"},xc={name:"font-size",content:'<path d="M97 224 32 416h29l16.9-50H146l16.9 50h29l-65-192zm-8.9 112 23.9-70.6 23.9 70.6zM376 96h-48L224 416h48l26-80h108l26 80h48zm-62.4 192L352 169.8 390.4 288z" />',viewBox:"0 0 512 512"},wc={name:"image-absolute-position",content:'<path d="M416 240c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48m96-80v320c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h320c17.7 0 32 14.3 32 32m-32 26.7c0-14.7-11.9-26.7-26.7-26.7H186.7c-14.7 0-26.7 11.9-26.7 26.7V384l96-96 96 96 64-64 64 64zM32 0H0v512h32v-64h32v-32H32v-64h32v-32H32v-64h32v-32H32v-64h32v-32H32V32h96v32h32V32h64v32h32V32h64v32h32V32h64v32h32V32h64V0z" />',viewBox:"0 0 512 512"},_c={name:"table-wizard",content:'<path d="M160 384V160h224v96l32 32V0H0v416h288l-32-32zM288 32h96v96h-96zm-128 0h96v96h-96zm-32 352H32v-96h96zm0-128H32v-96h96zm0-128H32V32h96zm376.6 362.1-15.5 15.5c-8.6 8.6-22.4 8.6-31 0l-124-124c-8.6-8.6-8.6-22.4 0-31l15.5-15.5c8.6-8.6 22.4-8.6 31 0l124 124c8.6 8.5 8.6 22.4 0 31m-158.5-209-21-14.8c-3.2-2.3-5.1-6-5.1-10l.3-25.7c.1-6.6-5.2-12.1-11.8-12.2-2.6 0-5.2.8-7.3 2.4l-20.6 15.4c-3.2 2.4-7.3 3-11 1.8l-24.3-8.3c-6.8-2.3-14.3 1.9-15.7 9.3-.4 2.1-.1 4.2.5 6.2l8.2 24.1c1.3 3.7.6 7.8-1.8 11l-15.4 20.6c-4.3 5.8-2.6 14.2 4 17.8 1.9 1 4 1.4 6.1 1.4l25.4-.3c3.9-.1 7.7 1.8 10 5.1l14.8 21c4.2 5.9 12.7 6.9 18.1 1.7 1.5-1.5 2.6-3.3 3.2-5.3l7.5-24.3c1.2-3.8 4.1-6.7 7.9-7.9l24.5-7.6c6.3-2 9.8-8.7 7.9-15-.7-2.7-2.3-4.9-4.4-6.4" />',viewBox:"0 0 512 512"},Cc={name:"crosstab",content:'<path d="M192.3 32H32v160h1v288h447V32zm-.3 416H96v-96h96zm0-128H96v-96h96zm0-128H96V96h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V96h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V96h96z" />',viewBox:"0 0 512 512"},Oc={name:"crosstab-wizard",content:'<path d="M192 416V192h224v96l32 32V0H0v160h1v288h318.7l-31.9-32zM320 64h96v96h-96zm-128 0h96v96h-96zm-32 352H64v-96h96zm0-128H64v-96h96zm0-128H64V64h96zm344.6 330.1-15.5 15.5c-8.6 8.6-22.4 8.6-31 0l-124-124c-8.6-8.6-8.6-22.4 0-31l15.5-15.5c8.6-8.6 22.4-8.6 31 0l124 124c8.6 8.5 8.6 22.4 0 31M221.2 300.8c-4.3 5.8-2.6 14.2 4 17.8 1.9 1 4 1.4 6.1 1.4l25.4-.3c3.9-.1 7.7 1.8 10 5.1l14.8 21c4.2 5.9 12.7 6.9 18.1 1.7 1.5-1.5 2.6-3.3 3.2-5.3l7.5-24.3c1.2-3.8 4.1-6.7 7.9-7.9l24.5-7.6c6.3-2 9.9-8.7 7.9-15-.8-2.5-2.4-4.7-4.5-6.2l-21-14.8c-3.2-2.3-5.1-6-5.1-10l.3-25.7c.1-6.6-5.2-12.1-11.8-12.2-2.6 0-5.2.8-7.3 2.4l-20.6 15.4c-3.2 2.4-7.3 3-11 1.8l-24.3-8.3c-6.8-2.3-14.3 1.9-15.7 9.3-.4 2.1-.1 4.2.5 6.2l8.2 24.1c1.3 3.7.6 7.8-1.8 11z" />',viewBox:"0 0 512 512"},Sc={name:"table-body",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm128 256v64L224 192h64zM64 64h96v96H64zm0 128h96v96H64zm0 224v-96h96v96zm128 0v-64l64 64zm128 0L192 288v-64l192 192zm96-160-64-64h64zm0-96h-96V64h96z" />',viewBox:"0 0 512 512"},zc={name:"table-column-groups",content:'<path d="M32 32v416h416V32zm256 32v64l-64-64zm0 320-96-96v-64l96 96zM192 96l96 96v64l-96-96zM64 64h96v96H64zm0 128h96v96H64zm0 224v-96h96v96zm128 0v-64l64 64zm224 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Mc={name:"table-corner",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm0 128v96h-96v-96zM160 64v64L96 64zM64 96l64 64H64zm0 96h96v96H64zm0 224v-96h96v96zm128 0v-96h96v96zm224 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Pc={name:"table-row-groups",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm-64 128h64l96 96h-64zm32 96h-64l-96-96h64zM64 64h96v96H64zm0 160 64 64H64zm0 192v-96h96v96zm128 0v-96h96v96zm224 0h-96v-96h96zm0-160-64-64h64zm0-96h-96V64h96z" />',viewBox:"0 0 512 512"},Vc={name:"globe-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32M64 256c0-57 24.8-108.2 64.3-143.3.3 1.8 1 3.6 1.9 5.4 11.9 22.1 47.7 92.5 87.8 104.1s38.6 22.2 45 29.9c6.5 7.7-12.2 24.4 5.6 55.9 9.6 13.2 18.3 5.5 22.6 27.6 4.1 21-20.6 95-7.8 110.4-9 1.3-18.1 2-27.4 2-106 0-192-86-192-192m222.4 189.6c10.5-37 41.8-89.2 75.8-98.9 24.4-20.5 23.3-38.8 20.1-55.4-7.6-13.9-41.7-26-74.3-54.8-19.5-4.4-43.4 8.3-52.6-3.9s-52.6-29.9-33.6-49.3 47.7.6 59.1-39.3 35.2-23.2 47.2-23.2S342.2 92 320 81.5c-16.7-7.9-38.6-16.1-71.7-17.4 2.6-.1 5.2-.2 7.8-.2 106 0 192 86 192 192C448 351.7 378 431 286.4 445.6" />',viewBox:"0 0 512 512"},Ac={name:"globe",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m106.2 314.7c-34.7 10-66.7 64.2-76.4 101.3-17.9-9.4 9.8-90.2 5.4-112.4-4.3-22.1-13-14.4-22.6-27.6-17.8-31.5.9-48.3-5.6-55.9-6.5-7.7-4.9-18.3-45-29.9s-75.9-81.9-87.8-104.1c-11.9-22.1 26.6-47 81.3-52.6 10.3-1 19.7-1.5 28.4-1.5 37.8.1 61.9 9 80 17.5 22.2 10.5 20.1 39.3 8.1 39.3s-35.8-16.6-47.2 23.2-40.1 19.9-59.1 39.3 24.4 37.1 33.6 49.3 33.1-.6 52.6 3.9c32.6 28.8 66.7 41 74.3 54.8 3.3 16.6 4.4 34.9-20 55.4" />',viewBox:"0 0 512 512"},jc={name:"map-marker",content:'<path d="M256 0C158.8 0 80 78.8 80 176s176 336 176 336 176-238.8 176-336S353.2 0 256 0m0 288c-61.9 0-112-50.1-112-112S194.1 64 256 64s112 50.1 112 112-50.1 112-112 112" />',viewBox:"0 0 512 512"},kc={name:"map-marker-target",content:'<path d="M256 0C158.8 0 80 78.8 80 176s176 336 176 336 176-238.8 176-336S353.2 0 256 0m0 288c-61.9 0-112-50.1-112-112S194.1 64 256 64s112 50.1 112 112-50.1 112-112 112m48-112c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48" />',viewBox:"0 0 512 512"},Hc={name:"pin",content:'<path d="M320 256V96c0-17.6-14.4-32-32-32h-96c-17.6 0-32 14.4-32 32v160H96v32h128v160h32V288h128v-32zm-128 0V96h64v160z" />',viewBox:"0 0 512 512"},Ic={name:"unpin",content:'<path d="M256 320h160c17.6 0 32-14.4 32-32v-96c0-17.6-14.4-32-32-32H256V96h-32v128H64v32h160v128h32zm0-128h160v64H256z" />',viewBox:"0 0 512 512"},Bc={name:"share",content:'<path d="M480 432c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-10.6 2.1-20.7 5.8-30l-158.6-88.1C152.9 327.6 133.4 336 112 336c-44.2 0-80-35.8-80-80s35.8-80 80-80c21.4 0 40.9 8.4 55.2 22.1L325.8 110c-3.8-9.3-5.8-19.4-5.8-30 0-44.2 35.8-80 80-80s80 35.8 80 80-35.8 80-80 80c-22 0-41.9-8.9-56.4-23.3l-158 87.8c4.1 9.7 6.4 20.3 6.4 31.5s-2.3 21.8-6.4 31.5l158 87.8C358.1 360.9 378 352 400 352c44.2 0 80 35.8 80 80" />',viewBox:"0 0 512 512"},Lc={name:"user",content:'<path d="M352 128c0 53-43 96-96 96s-96-43-96-96 43-96 96-96 96 43 96 96m-96 128c-106 0-192 86-192 192 0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32 0-106-86-192-192-192" />',viewBox:"0 0 512 512"},Tc={name:"inbox",content:'<path d="M384 32H128L32 288v160c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V288zM150.2 64h211.6l84 224H352l-32 64H192l-32-64H66.2z" />',viewBox:"0 0 512 512"},Ec={name:"blogger",content:'<path d="M188.9 64C119.9 64 64 119.5 64 188v136.1C64 392.5 119.9 448 188.9 448h134.4c69 0 124.7-55.5 124.7-123.9v-87.9c0-13.7-11-28.2-24.8-28.2h-21.5c-13.2 0-24.7-11.2-25.6-24 0-68.5-55.2-120-124.2-120zm-4.9 96h72c13.2 0 24 10.8 24 24s-10.8 24-24 24h-72c-13.2 0-24-10.8-24-24s10.8-24 24-24m0 144h144c13.2 0 24 10.8 24 24s-10.8 24-24 24H184c-13.2 0-24-10.8-24-24s10.8-24 24-24" />',viewBox:"0 0 512 512"},Dc={name:"blogger-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-31 280.7c0 57.1-46.6 103.3-104.2 103.3H200.4C142.7 416 96 369.8 96 312.7V199.3C96 142.2 142.7 96 200.4 96h52.1C310 96 356 138.9 356 196c.7 10.7 10.4 20 21.4 20h18c11.5 0 20.7 12.1 20.6 23.5zM196 216h60c11 0 20-9 20-20s-9-20-20-20h-60c-11 0-20 9-20 20s9 20 20 20m120 80H196c-11 0-20 9-20 20s9 20 20 20h120c11 0 20-9 20-20s-9-20-20-20" />',viewBox:"0 0 512 512"},Nc={name:"delicious",content:'<path d="M256 32h224v224H256zM32 256h224v224H32z" />',viewBox:"0 0 512 512"},Rc={name:"delicious-box",content:'<path d="M480 448V64c0-17.7-14.3-32-32-32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32m-224-32V256H96V96h160v160h160v160z" />',viewBox:"0 0 512 512"},Fc={name:"digg",content:'<path d="M96 96v64H32v160h96V96zm64 0v32h32V96zm0 64v160h32V160zm64 0v160h64v32h-64v32h96V160zm128 0v160h64v32h-64v32h96V160zM64 192h32v96H64zm192 0h32v96h-32zm128 0h32v96h-32z" />',viewBox:"0 0 512 512"},Uc={name:"digg-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M160 203.5V352H64V192h64v-64h32zM212 352h-32V192h32zm0-192h-32v-32h32zm119 153.7V416h-96v-32h64v-32h-64V192h96zm117 0V416h-96v-32h64v-32h-64V192h96zM96 224h32v96H96zm171 0h32v96h-32zm117 0h32v96h-32z" />',viewBox:"0 0 512 512"},Kc={name:"envelop",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm23.7 32L256 296.3 424.3 128c11 2.9 19.7 11.6 22.6 22.6L342.6 254.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L320 277.5l-64 64-64-64L87.7 381.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L65.1 150.6c2.9-11 11.6-19.7 22.6-22.6" />',viewBox:"0 0 512 512"},qc={name:"envelop-box",content:'<path d="m377 182.4-88.8 88.8-31.2 29-33.2-29-88.8-88.8c-7.7 2-13.8 8.1-15.8 15.8l73 73-73 73c2 7.7 8.1 13.8 15.8 15.8l73-73 49 44.8 47-44.8 73 73c7.7-2 13.8-8.1 15.8-15.8l-73-73 73-73c-2-7.7-8.1-13.8-15.8-15.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-32 329.6c0 12.4-10 22.4-22.4 22.4H118.4C106 384 96 374 96 361.6V182.4c0-12.4 10-22.4 22.4-22.4h275.2c12.4 0 22.4 10 22.4 22.4z" />',viewBox:"0 0 512 512"},$c={name:"facebook",content:'<path d="M290 32c-59.8 0-96 32-96 96v64h-66v96h66v192h96V288h80l14-96h-94v-32c0-32 32-32 32-32h62V34.9c-7.2-.9-65.4-2.9-94-2.9" />',viewBox:"0 0 512 512"},Xc={name:"facebook-box",content:'<path d="M57.6 32C43.6 32 32 43.5 32 57.6v396.8c0 14 11.5 25.6 25.6 25.6h396.8c14 0 25.6-11.5 25.6-25.6V57.6c0-14-11.5-25.6-25.6-25.6zm315.8 65.5c24.1 0 42 2.3 42 2.3L414 155s-18.2-.2-38.1-.2c-21.5 0-24.9 9.9-24.9 26.1V224h64.1l-2.8 59H351v165h-63V283h-44v-59h44v-50.5c0-39.6 25.8-76 85.4-76" />',viewBox:"0 0 512 512"},Gc={name:"google",content:'<path d="M268.3 33c-16.1-1-33.4 1-52 4.9s-36.4 12.8-53.2 26.5c-12.6 11-21.9 23.4-28.3 37.3-6.3 13.9-9.4 27.7-9.4 41.5 0 11.4 2.1 22.7 6.5 33.8 4.3 11.1 10.6 21.1 18.8 29.7s18.4 15.6 30.6 20.9 26.1 7.9 41.8 7.9c3.1 0 6.2-.1 9.4-.3s6.3-.5 9.4-.9c-1.6 3.5-2.9 7-4.1 10.3s-1.8 7.6-1.8 12.6c0 9 1.9 16.5 5.6 22.6s7.7 11.9 12 17.4c-6.7.4-14.5 1-23.5 1.8s-18.6 2.1-28.8 4.1-20.5 4.6-30.9 7.9-20.1 7.7-29.1 13.2c-17.2 10.2-29.1 22-35.6 35.6S96 385.4 96 396c0 11 2.6 21.5 7.7 31.5s12.9 18.9 23.5 26.7c10.6 7.9 23.8 14.1 39.7 18.8s34.4 7 55.5 7c25.1 0 47.3-3.2 66.7-9.7s35.6-14.9 48.5-25.3 22.7-22.3 29.4-35.6 10-26.9 10-40.6c0-10.2-1.4-19.3-4.2-27.1-2.7-7.9-6.4-14.9-10.8-21.2q-6.75-9.45-15.9-17.7c-9.15-8.25-12.3-11-18.5-16.5l-21.1-16.5c-3.2-2.8-6.5-6-10-9.7s-5.3-8.9-5.3-15.6 1.8-12.2 5.3-16.5 7.2-8.4 11.2-12.4c6.2-4.7 12.4-9.7 18.2-15 5.9-5.3 11.2-11.2 15.9-17.6 4.7-6.5 8.4-13.8 11.2-22.1 2.7-8.2 4.1-17.9 4.1-28.8s-1.5-20.8-4.7-29.5c-3.1-8.6-6.8-16.2-11.2-22.7q-6.45-9.75-13.5-16.5c-7.05-6.75-12.4-11.4-12.4-11.4H352l31.7-20zm-37.1 17.8c12.2 0 22.8 3.6 32 10.9s17 16.4 23.2 27.5c6.2 11 11 22.8 14.1 35.4s4.7 24.2 4.7 34.8c0 5.5-.8 12.4-2.3 20.7s-5.7 15.7-12.4 22.4c-4.7 4.7-10.7 8.7-18 11.8-7.3 3.2-14.6 4.7-22 4.7-12.5 0-23.4-3.6-32.6-10.9S201 191.8 195 181.3q-9.15-15.9-13.5-34.2c-4.35-18.3-4.4-23.2-4.4-33.1 0-7.9.9-15.5 2.7-23S185 76.6 190 70.3c4.7-5.9 10.8-10.6 18.2-14.1 7.5-3.6 15.1-5.4 23-5.4M260 314h7.3c1.8 0 3.8.2 6.2.6 11 7.8 20.6 14.9 28.8 21.2 8.2 6.2 14.9 12.4 20 18.2 5.1 5.9 8.9 11.8 11.5 18 2.5 6 3.8 12.8 3.8 20.3 0 18.4-7.3 33.6-22 45.6-14.7 11.9-36.2 17.9-64.4 17.9-31.8 0-57-6.7-75.6-20s-27.9-30.6-27.9-51.7c0-10.6 2.1-19.4 6.2-26.5 4.1-7 8.9-12.9 14.4-17.6s11.1-8.3 16.8-10.8c5.7-2.6 10.1-4.4 13.2-5.6 6.3-2 12.7-3.6 19.4-5s12.9-2.4 18.8-3q8.85-.9 15.3-1.2c4.2-.2 7-.3 8.2-.4" />',viewBox:"0 0 512 512"},Yc={name:"google-box",content:'<path d="M212.6 236.1c5.1-5.1 8.2-10.8 9.4-17.1s1.8-11.6 1.8-15.8c0-8.1-1.2-17-3.6-26.6s-6-18.6-10.8-27-10.7-15.4-17.7-21-15.2-8.4-24.4-8.4c-6 0-11.8 1.3-17.5 4.1s-10.3 6.3-13.9 10.8c-3.9 4.8-6.5 10-7.8 15.7s-2 11.6-2 17.6c0 7.5 1.1 15.9 3.4 25.2s5.7 18 10.3 26.1 10.5 14.9 17.5 20.5c7 5.5 15.3 8.3 24.9 8.3q8.55 0 16.8-3.6c8.25-3.6 10-5.2 13.6-8.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M270.9 394.1c-5.1 10.2-12.6 19.3-22.4 27.2s-22.2 14.4-37 19.4c-14.8 4.9-31.8 7.4-50.9 7.4-16.2 0-30.3-1.8-42.4-5.4s-22.2-8.4-30.3-14.4-14.1-12.8-18-20.4-5.9-15.6-5.9-24c0-8.1 2.5-17.2 7.4-27.6s14-19.4 27.2-27.2c6.8-4.2 14.3-7.6 22.2-10.1s15.8-4.6 23.6-6c7.8-1.5 15.1-2.5 22-3.1s12.9-1.1 18-1.3c-3.3-4.2-6.4-8.6-9.2-13.3s-4.3-10.4-4.3-17.3c0-3.9.4-7.1 1.3-9.7s1.9-5.2 3.1-7.9c-2.4.3-4.8.5-7.2.7s-4.8.2-7.2.2c-12 0-22.6-2-31.9-6q-13.95-6-23.4-15.9c-6.3-6.6-11.1-14.1-14.3-22.7s-4.9-17.2-4.9-25.8c0-10.5 2.4-21 7.2-31.6s12-20.1 21.6-28.5c12.8-10.5 26.4-17.2 40.6-20.2s27.5-4.5 39.7-4.6H288l-28.7 16h-27.8c2.7 1.9 5.8 4.7 9.4 8.1 3.6 3.5 7 7.6 10.3 12.6s6.1 10.7 8.5 17.3 3.6 14.1 3.6 22.5-1.1 15.7-3.1 22c-2.1 6.3-4.9 11.9-8.5 16.9s-7.6 9.4-12.1 13.5-9.2 7.9-13.9 11.5c-3 3-5.9 6.1-8.5 9.4s-4 7.5-4 12.6 1.3 9.1 4 11.9 5.2 5.3 7.6 7.4l16.2 12.6q7.2 6.3 14.1 12.6c4.6 4.2 8.7 8.7 12.1 13.5 3.5 4.8 6.2 10.1 8.3 16.2s3.2 12.9 3.2 20.7c-.1 10.2-2.6 20.5-7.8 30.8m-34.1-42.6c-3.9-4.5-9-9.1-15.3-13.9s-13.6-10.2-22-16.2c-1.8-.3-3.4-.4-4.7-.4h-5.6c-.9 0-3 .1-6.3.2s-7.2.4-11.7.9-9.3 1.2-14.3 2.3-10 2.3-14.8 3.8c-2.4.9-5.8 2.3-10.1 4.3s-8.6 4.7-12.8 8.3-7.8 8.1-11 13.5c-3.1 5.4-4.7 12.1-4.7 20.2 0 16.2 7.1 29.3 21.3 39.5s33.4 15.3 57.7 15.3c21.5 0 37.9-4.5 49.2-13.7s16.8-20.7 16.8-34.8c0-5.7-1-10.8-2.9-15.5s-4.9-9.3-8.8-13.8" />',viewBox:"0 0 512 512"},Wc={name:"google-plus",content:'<path d="M204.3 33c-16.1-1-33.4 1-52 4.9s-36.4 12.8-53.2 26.5c-12.6 11-22 23.4-28.3 37.3s-9.4 27.7-9.4 41.5c0 11.4 2.1 22.7 6.5 33.8 4.3 11.1 10.6 21.1 18.8 29.7s18.4 15.6 30.6 20.9 26.1 7.9 41.8 7.9c3.1 0 6.2-.1 9.4-.3s6.3-.5 9.4-.9c-1.6 3.5-2.9 7-4.1 10.3s-1.8 7.6-1.8 12.6c0 9 1.9 16.5 5.6 22.6s7.7 11.9 12 17.4c-6.7.4-14.5 1-23.5 1.8s-18.6 2.1-28.8 4.1-20.5 4.6-30.9 7.9-20.1 7.7-29.1 13.2c-17.2 10.2-29.1 22-35.6 35.6S32 385.4 32 396c0 11 2.6 21.5 7.7 31.5s12.9 18.9 23.5 26.7S87 468.3 102.9 473s34.4 7 55.6 7c25.1 0 47.3-3.2 66.7-9.7s35.6-14.9 48.5-25.3 22.7-22.3 29.4-35.6 10-26.9 10-40.6c0-10.2-1.4-19.3-4.2-27.1-2.7-7.9-6.4-14.9-10.8-21.2q-6.75-9.45-15.9-17.7c-9.15-8.25-12.3-11-18.5-16.5l-21.2-16.5c-3.2-2.8-6.5-6-10-9.7s-5.3-8.9-5.3-15.6 1.8-12.2 5.3-16.5 7.2-8.4 11.2-12.4c6.2-4.7 12.4-9.7 18.2-15 5.9-5.3 11.2-11.2 15.9-17.6 4.7-6.5 8.4-13.8 11.2-22.1 2.7-8.2 4.1-17.9 4.1-28.8s-1.5-20.8-4.7-29.5c-3.1-8.6-6.8-16.2-11.2-22.7q-6.45-9.75-13.5-16.5c-7.05-6.75-12.4-11.4-12.4-11.4H288l31.7-20zm-37 17.8c12.2 0 22.8 3.6 32 10.9s17 16.4 23.2 27.5c6.2 11 11 22.8 14.1 35.4s4.7 24.2 4.7 34.8c0 5.5-.8 12.4-2.3 20.7-1.6 8.3-5.7 15.7-12.4 22.4-4.7 4.7-10.7 8.7-18 11.8-7.3 3.2-14.6 4.7-22 4.7-12.5 0-23.4-3.6-32.6-10.9s-16.9-16.3-22.9-26.8q-9.15-15.9-13.5-34.2c-4.35-18.3-4.4-23.2-4.4-33.1 0-7.9.9-15.5 2.7-23S121 76.6 126 70.3c4.7-5.9 10.8-10.6 18.2-14.1q11.25-5.4 23.1-5.4M196.1 314h7.3c1.8 0 3.8.2 6.2.6 11 7.8 20.6 14.9 28.8 21.2 8.2 6.2 14.9 12.4 20 18.2 5.1 5.9 8.9 11.8 11.5 18 2.5 6 3.8 12.8 3.8 20.3 0 18.4-7.3 33.6-22 45.6-14.7 11.9-36.2 17.9-64.4 17.9-31.8 0-57-6.7-75.6-20s-27.9-30.6-27.9-51.7c0-10.6 2.1-19.4 6.2-26.5s8.9-12.9 14.4-17.6 11.1-8.3 16.8-10.8c5.7-2.6 10.1-4.4 13.2-5.6 6.3-2 12.7-3.6 19.4-5s12.9-2.4 18.8-3q8.85-.9 15.3-1.2c4.2-.2 6.9-.3 8.2-.4M384 32v64h-64v32h64v64h32v-64h64V96h-64V32z" />',viewBox:"0 0 512 512"},Zc={name:"google-plus-box",content:'<path d="M212.6 236.1c5.1-5.1 8.2-10.8 9.4-17.1s1.8-11.6 1.8-15.8c0-8.1-1.2-17-3.6-26.6s-6-18.6-10.8-27-10.7-15.4-17.7-21-15.2-8.4-24.4-8.4c-6 0-11.8 1.3-17.5 4.1s-10.3 6.3-13.9 10.8c-3.9 4.8-6.5 10-7.8 15.7s-2 11.6-2 17.6c0 7.5 1.1 15.9 3.4 25.2s5.7 18 10.3 26.1 10.5 14.9 17.5 20.5c7 5.5 15.3 8.3 24.9 8.3q8.55 0 16.8-3.6c8.25-3.6 10-5.2 13.6-8.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M270.9 394.1c-5.1 10.2-12.6 19.3-22.4 27.2s-22.2 14.4-37 19.4c-14.8 4.9-31.8 7.4-50.9 7.4-16.2 0-30.3-1.8-42.4-5.4s-22.2-8.4-30.3-14.4-14.1-12.8-18-20.4-5.9-15.6-5.9-24c0-8.1 2.5-17.2 7.4-27.6s14-19.4 27.2-27.2c6.8-4.2 14.3-7.6 22.2-10.1s15.8-4.6 23.6-6c7.8-1.5 15.1-2.5 22-3.1s12.9-1.1 18-1.3c-3.3-4.2-6.4-8.6-9.2-13.3s-4.3-10.4-4.3-17.3c0-3.9.4-7.1 1.3-9.7s1.9-5.2 3.1-7.9c-2.4.3-4.8.5-7.2.7s-4.8.2-7.2.2c-12 0-22.6-2-31.9-6q-13.95-6-23.4-15.9c-6.3-6.6-11.1-14.1-14.3-22.7s-4.9-17.2-4.9-25.8c0-10.5 2.4-21 7.2-31.6s12-20.1 21.6-28.5c12.8-10.5 26.4-17.2 40.6-20.2s27.5-4.5 39.7-4.6H288l-28.7 16h-27.8c2.7 1.9 5.8 4.7 9.4 8.1 3.6 3.5 7 7.6 10.3 12.6s6.1 10.7 8.5 17.3 3.6 14.1 3.6 22.5-1.1 15.7-3.1 22c-2.1 6.3-4.9 11.9-8.5 16.9s-7.6 9.4-12.1 13.5-9.2 7.9-13.9 11.5c-3 3-5.9 6.1-8.5 9.4s-4 7.5-4 12.6 1.3 9.1 4 11.9 5.2 5.3 7.6 7.4l16.2 12.6q7.2 6.3 14.1 12.6c4.6 4.2 8.7 8.7 12.1 13.5 3.5 4.8 6.2 10.1 8.3 16.2s3.2 12.9 3.2 20.7c-.1 10.2-2.6 20.5-7.8 30.8M448 192h-64v64h-32v-64h-64v-32h64V96h32v64h64zM236.8 351.5c-3.9-4.5-9-9.1-15.3-13.9s-13.6-10.2-22-16.2c-1.8-.3-3.4-.4-4.7-.4h-5.6c-.9 0-3 .1-6.3.2s-7.2.4-11.7.9-9.3 1.2-14.3 2.3-10 2.3-14.8 3.8c-2.4.9-5.8 2.3-10.1 4.3s-8.6 4.7-12.8 8.3-7.8 8.1-11 13.5c-3.1 5.4-4.7 12.1-4.7 20.2 0 16.2 7.1 29.3 21.3 39.5s33.4 15.3 57.7 15.3c21.5 0 37.9-4.5 49.2-13.7s16.8-20.7 16.8-34.8c0-5.7-1-10.8-2.9-15.5s-4.9-9.3-8.8-13.8" />',viewBox:"0 0 512 512"},Qc={name:"linkedin",content:'<path d="M112 32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48M64 160v288h96V160zm128 0v288h96V288c0-32 32-32 32-32s32 0 32 32v160h96V290.9c0-66.5-13.6-130.9-96-130.9-36.2 0-62.9 32-64 44.9V160z" />',viewBox:"0 0 512 512"},Jc={name:"linkedin-box",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32M160 416H96V192h64zm-32-256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32m288 256h-64V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v128h-64V192h64v39.7c13.2-18.1 33.4-39.7 56-39.7 39.8 0 72 35.8 72 80z" />',viewBox:"0 0 512 512"},tl={name:"myspace",content:'<path d="M400 64c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80m-176 64c-35.4 0-64 28.6-64 64s28.6 64 64 64 64-28.6 64-64-28.6-64-64-64M80 192c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m320 64c-44.2 0-80 36.1-80 80.5V448h160V336.5c0-44.5-35.8-80.5-80-80.5m-176 32c-35.4 0-64 31.5-64 70.3V448h128v-89.7c0-38.8-28.6-70.3-64-70.3M80 320c-26.5 0-48 21.8-48 48.7V448h96v-79.3c0-26.9-21.5-48.7-48-48.7" />',viewBox:"0 0 512 512"},el={name:"myspace-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M128 416H64v-63.5c0-17.9 14.3-32.5 32-32.5s32 14.5 32 32.5zM96 288c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32m160 128h-96v-75.3c0-29.1 21.5-52.7 48-52.7s48 23.6 48 52.7zm-48-160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48m208 160H288v-92.9c0-37.1 27.2-67.1 64-67.1s64 30 64 67.1zm-64-192c-35.4 0-64-28.6-64-64s28.6-64 64-64 64 28.6 64 64-28.6 64-64 64" />',viewBox:"0 0 512 512"},ol={name:"pinterest",content:'<path d="M250.7 32C126.6 32 64 119.7 64 192.7c0 44.3 17 83.6 53.5 98.3 6 2.4 11.4.1 13.1-6.4 1.2-4.5 4.1-15.9 5.3-20.7 1.8-6.5 1.1-8.7-3.7-14.3-10.5-12.2-17.2-28.1-17.2-50.5 0-65.1 49.4-123.3 128.6-123.3 70.2 0 108.7 42.2 108.7 98.6 0 74.2-33.3 136.8-82.8 136.8-27.3 0-47.8-22.2-41.2-49.6 7.9-32.6 23.1-67.8 23.1-91.3 0-21.1-11.5-38.7-35.2-38.7-27.9 0-50.4 28.5-50.4 66.6 0 24.3 8.3 40.7 8.3 40.7s-28.6 119.3-33.6 140.2c-10 41.6-1.5 92.7-.8 97.8.5 3 4.4 3.7 6.2 1.5 2.6-3.3 35.9-43.8 47.2-84.2 3.2-11.4 18.4-70.8 18.4-70.8 9.1 17.1 35.6 32.1 63.8 32.1 84 0 141-75.4 141-176.4C416 103 350.3 32 250.7 32" />',viewBox:"0 0 512 512"},rl={name:"pinterest-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M276.6 327.3c-19.8 0-38.5-10.8-44.9-22.9 0 0-10.7 42.4-12.9 50.5-8 28.9-31.4 57.8-33.2 60.2-1.3 1.6-4.1 1.1-4.4-1.1-.5-3.7-6.5-40.1.5-69.9 3.5-14.9 23.6-100.2 23.6-100.2s-5.9-11.7-5.9-29.1c0-27.2 15.8-47.6 35.5-47.6 16.7 0 24.8 12.5 24.8 27.6 0 16.8-10.7 41.9-16.2 65.2-4.6 19.5 9.8 35.4 29 35.4 34.8 0 58.3-44.7 58.3-97.7 0-40.3-27.1-70.4-76.5-70.4-55.7 0-90.5 41.6-90.5 88 0 16 4.7 27.3 12.1 36.1 3.4 4 3.9 5.6 2.6 10.2-.9 3.4-2.9 11.5-3.7 14.8-1.2 4.6-5 6.3-9.2 4.6-25.6-10.4-37.6-38.5-37.6-70.2C128 158.6 172 96 259.4 96c70.2 0 116.4 50.8 116.4 105.3-.1 72.1-40.2 126-99.2 126" />',viewBox:"0 0 512 512"},nl={name:"reddit",content:'<path d="M420.3 33c-7 0-14.5 1-22.4 3h-1.7c-12.4 4.8-21.9 12.3-28.8 22.5-17-7-34-10.4-50.7-10.4-6.3 0-12.6.6-19.1 1.9H296c-8.8 2.1-16.5 5.8-23.3 11s-12.4 11.6-16.6 19.1c-5.3 8.7-8.9 31.3-10.5 41.1-1.7 9.8-2.6 25-2.6 34.7-20.9 1.5-41.8 4.5-62.8 9.1s-40.6 11.9-59 21.9c-1.3.4-2.5.9-3.5 1.3s-2 .9-2.9 1.3c-6.2-4.5-13-8-20.5-10.6Q82.6 175 69.4 175h-5.8c-8.7 0-16.7 1.6-24.1 4.8s-14.1 7.7-20.3 13.4c-5.8 5.8-10.3 12.2-13.9 19.4-3.6 7.3-5.3 14.8-5.3 22.7.4 10.8 4.4 21.3 11.8 31.4 5.7 8.3 13.8 15.4 24.3 21.1-.5 2.1-.7 4.4-1 6.8q-.3 3.75-.3 6.9c0 10 1.5 20 4.5 30.1s7.4 19.4 13.1 28.1c10.9 16.6 24.5 30.5 40.9 41.6 16.4 11 33.8 20.2 52.1 27.2 17.5 6.6 35.5 11.6 54 14.8 18.6 3.3 37.4 5 56.6 5 12.5 0 25.1-.8 37.5-2.4 12.5-1.6 25-3.7 37.6-6.3 23.2-5.5 45.5-13.9 66.8-25.1s39.4-26 54.3-44.3c17.1-20.5 25.6-43.4 25.6-68.8 0-2.6-.1-5.1-.4-7.5s-.5-4.7-.9-6.8c10-4.9 18.3-11.9 24.9-21.1 7.1-9.6 10.6-20.3 10.6-32v-3c-1.2-13.4-6.8-25.1-16.3-34.9q-14.7-15-34.2-20.1h-.6c-6-1.3-11.6-1.9-16.9-1.9-14.1-.2-26.6 3.2-37.4 10.2-2.3 1.1-5.2 2.8-8.6 5.4-.8-.9-1.8-1.3-2.6-1.3l-.7-.6c-18.2-9.6-37.5-16.9-57.7-21.8-20.1-4.9-40.6-8-61.6-9.3 0-7.7.7-34.2 1.8-41.9s3.7-14.8 7.5-21.4c4.9-9.6 13.4-15.1 25.6-16.4h5.8c7.4 0 14.7 1.1 21.7 3 7.1 2 14.1 4.3 21.2 6.9v1.9c0 7.5 1.5 14.2 4.5 20.3 2.9 6 6.9 11.6 11.8 16.5 10.3 10.4 22.8 16.3 37.7 17.5h7.3c14.9 0 28.1-4.8 39.8-14.4 5.3-4.4 9.7-9.6 13.1-15.5s5.5-12.5 6.4-20c.4-1.3.6-3.2.6-5.8.2-11-3.3-21.4-10.3-30.9-7.1-9.2-15.8-15.7-26.2-19.5h-.5c-6.5-2.7-14.1-4.1-22.9-4m1.2 27.4c7.2.1 13.2 2.7 18.3 7.7C446 73 449 79.2 449 86.7V88c-.8 6.8-3.9 12.7-9.3 17.6-5.5 4.9-11.9 7.4-19.1 7.4h-1.9c-7.1 0-13.4-2.5-19.4-7.4-5.5-4.7-8.3-10.6-8.3-17.6v-1.3c0-6.6 2.1-12.1 6.5-16.6 3.8-4.7 8.9-7.7 15.1-8.9 2-.4 4.4-.6 7.5-.6.4-.2.9-.2 1.4-.2m-165 125.7c10 0 20.3.5 30.8 1.6 10.6 1.1 20.9 2.7 30.8 4.8l9.9 2.6 10.2 2.6c17.5 4.9 34.1 11.9 49.9 21.1s29 20.8 40 34.9c5.1 7.3 9.2 14.9 12.3 23s4.6 16.5 4.6 25.3v7.6c0 2.3-.4 4.6-1.3 6.7-2.8 12.4-8.5 24-17.3 34.9-7.4 10-17 19.2-28.8 27.5-17.5 11.7-36.4 20.7-56.9 26.9-20.4 6.2-41.3 10.1-62.7 11.8-3.6.5-7.3.6-10.8.6h-10.8c-21.3 0-42.4-2.2-63.1-6.6-20.8-4.4-40.3-11.4-58.6-21l-4.5-2.6-4.8-2.2c-13-8.3-24.4-17.5-34.5-27.5-10.2-11.5-17.2-24-21.1-37.4-1.7-5.2-2.6-11.2-2.6-18.2 0-18.1 5.6-34.2 16.9-48.3 11-14.1 24.4-25.8 40.1-35.2s32.2-16.5 49.7-21.4c26.2-7.7 53.7-11.6 82.6-11.5M65.7 204h3.2c3.2 0 6.1.4 8.8 1.3 2.6.9 5.4 1.7 8.4 2.6-8.7 7-16.5 14.6-23.5 22.7-6.9 8.1-12.8 17-17.7 26.6-2.8-2-5.2-4.8-7.4-8.6-3-3.5-4.5-7.8-4.5-13.1v-2.1c.7-7.7 4-14.4 10.3-20.2 7.1-5.3 14.6-8.3 22.4-9.2m377.6-.4c6.4 0 12.7 1.5 18.9 4.4 6.1 3.5 10.8 7.8 13.7 13.2 2.1 4.5 3.2 8.6 3.2 12.5 0 5.3-1.2 10.1-3.8 14.4-2.4 3.6-5 6.7-8 9.2-4.7-10-10.6-19.1-17.6-27.2s-14.9-15.6-23.6-22.7c5.3-2.6 11-3.8 17.2-3.8m-107.6 43.2c-3.6 0-7.4.7-11.2 1.9-6.2 2.2-11.2 5.9-15 11.2-4 4.7-6.1 10.3-6.1 16.9 0 2.4.2 4.2.6 5.5v.6c1.3 7.5 5.1 13.1 11.2 17 6.2 4.7 13.2 7 21.1 7 2.5 0 5.5-.6 9-1.9h.9c5.6-1.1 11-4.5 16.3-10.2 3.8-5.3 5.8-11.4 5.8-18 0-3-.6-6.2-2-9.6-1.6-6.2-5.6-11.3-11.8-15.3-5.9-3.3-12.2-5.1-18.8-5.1m-158.8-.1c-2.6 0-4.7.2-6.3.7-5.8.9-10.8 3.1-15.2 6.9-4.4 3.7-7.4 8.3-9.1 13.6-.9 1.2-1.3 2.7-1.3 4.1v4.2c0 7 1.9 13.2 5.8 18.6 4.2 5.1 9.6 8.5 16.3 10.2 3 1.2 6.3 1.9 9.9 1.9 8.3 0 15.8-2.8 22.4-8.3 7.1-5.7 10.6-12.8 10.6-21.1v-2q0-11.85-9.9-20.1c-7.2-5.8-14.9-8.7-23.2-8.7m-1.6 94c-1.2 0-3.2.5-5.7 1.3h-.8c-2.6.8-5 2.7-7.3 5.7-1.2 2.1-1.9 4.8-1.9 8 0 2.6.6 5.2 1.9 8 1.3 2.2 3.2 3.9 5.8 5.1q36.75 23.1 80.7 23.1h4.8c14.1 0 27.8-1.3 41-4s26.1-6.9 38.5-12.6c1.7-.9 3.5-1.7 5.4-2.6 1.9-.8 3.9-1.9 6-3.2 2.2-.9 4-2.1 5.5-3.8 2.1-2.1 3.3-4.4 3.8-6.8.4-.8.7-1.9.7-3.2s-.4-3.2-1.3-5.8c-1.3-3.2-3.5-5.4-6.4-6.7-3.3-1.7-6.2-2.6-8.6-2.6-2.5 0-5.3.6-8 2-23.2 13-48.6 19.6-76 19.8-20.4 0-39.5-3.9-57-11.8-2.5-.9-5.7-2.9-9.2-6.1-.9-.4-1.8-.8-2.8-1.3s-2.2-.9-3.3-1.3c-2.7-.8-4.6-1.3-5.8-1.2" />',viewBox:"0 0 512 512"},il={name:"reddit-box",content:'<path d="M111.1 244.9c-5.2 6.1-9.6 12.7-13.2 19.9-2.1-1.5-3.9-3.6-5.5-6.5-2.3-2.6-3.4-5.9-3.4-9.8v-1.4c.5-5.8 3-10.8 7.7-15.1 5.3-4 10.9-6.3 16.8-7h2.4c2.4 0 4.6.3 6.6 1 2 .6 4.1 1.3 6.3 1.9a124.3 124.3 0 0 0-17.7 17m252.1-94.3c4.4 3.7 9.1 5.4 14.4 5.4h1.4c5.3 0 10-1.8 14.2-5.4 4-3.7 6.3-8 6.9-13.1v-1q0-8.25-6.9-13.8c-3.8-3.8-8.3-5.6-13.6-5.7h-1.1c-2.2 0-4.1.1-5.5.5-4.6.9-8.4 3.2-11.2 6.6-3.3 3.4-4.8 7.4-4.8 12.4v1c0 5.1 2 9.5 6.2 13.1M394.5 279c2.3 6.1 3.5 12.4 3.5 19v5.7c0 1.8-.3 3.4-1 5-2.1 9.3-6.4 18-13 26.2-5.6 7.5-12.8 14.4-21.6 20.6-13.1 8.8-27.3 15.5-42.7 20.2s-31 7.6-47 8.9c-2.7.4-5.5.5-8.1.5h-8.1c-16 0-31.8-1.6-47.4-4.9s-30.2-8.5-44-15.7l-3.4-1.9-3.6-1.7c-9.8-6.2-18.3-13.1-25.8-20.6-7.7-8.6-12.9-18-15.8-28.1-1.3-3.9-1.9-8.4-1.9-13.7 0-13.6 4.2-25.7 12.7-36.3 8.3-10.6 18.3-19.3 30.1-26.4 11.8-7 24.2-12.4 37.3-16.1 19.6-5.7 40.2-8.7 61.8-8.7h.1q11.25 0 23.1 1.2c11.85 1.2 15.6 2 23.1 3.6l7.4 1.9 7.7 1.9c13.1 3.7 25.6 9 37.4 15.8 11.9 6.9 21.8 15.6 30 26.2 3.8 5.6 6.9 11.4 9.2 17.4m-205.9 21.9c2.3.9 4.7 1.4 7.5 1.4 6.3 0 12-2.1 16.9-6.3 5.3-4.3 8-9.7 8-15.9v-1.5c0-5.9-2.5-11-7.5-15.2-5.3-4.3-11.2-6.6-17.4-6.6-1.9 0-3.5.1-4.7.5-4.3.6-8.2 2.3-11.5 5.2-3.3 2.8-5.5 6.3-6.9 10.3-.7.9-1 2-1 3.1v3.1c0 5.3 1.4 10 4.3 14 3.3 4 7.3 6.7 12.3 7.9m139.5 38.2c0-1-.3-2.4-1-4.3-1-2.4-2.6-4.1-4.7-4.9-2.5-1.3-4.6-1.9-6.4-1.9-1.9 0-4 .5-5.9 1.5-17.2 9.6-36 14.5-56.2 14.7-15.1 0-29.3-3-42.2-8.8-1.9-.6-4.2-2.2-6.8-4.6-.6-.3-1.3-.6-2.1-1s-1.6-.6-2.4-1c-1.9-.6-3.4-1-4.3-1v.1c-.9 0-2.4.4-4.3 1h-.5c-1.9.6-3.7 2-5.4 4.3-.9 1.6-1.4 3.6-1.4 5.9 0 1.9.5 3.9 1.4 5.9 1 1.6 2.4 2.9 4.3 3.8 18.2 11.4 38.1 17.1 59.8 17.1h3.6c10.5 0 20.6-1 30.4-3s19.3-5.1 28.5-9.4c1.2-.6 2.6-1.3 4.1-1.9 1.4-.6 3-1.4 4.5-2.4 1.6-.7 3-1.6 4.1-2.9 1.6-1.6 2.5-3.3 2.9-5-.2-.4 0-1.2 0-2.2m12.2-59.2q0-3.3-1.5-7.2c-1.2-4.6-4.2-8.4-8.8-11.5q-6.75-3.9-14.1-3.9c-2.7 0-5.5.5-8.4 1.4-4.6 1.6-8.4 4.4-11.3 8.4-3 3.5-4.6 7.8-4.6 12.7 0 1.8.2 3.1.4 4.1v.5c1 5.6 3.8 9.8 8.4 12.7 4.6 3.5 9.9 5.3 15.8 5.3 1.9 0 4.1-.5 6.7-1.4h.7c4.2-.8 8.2-3.4 12.2-7.7 3-3.9 4.5-8.4 4.5-13.4M480 64v384c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32m-32.3 181c-.9-10.3-5.2-19.1-12.4-26.6-7.4-7.6-16.2-12.7-26-15.4h-.1c-4.5-1-8.7-1.4-12.7-1.4-10.6-.2-19.8 2.4-28 7.7-1.7.8-3.9 2.1-6.5 4.1-.6-.6-1.3-1-1.9-1l-.5-.5c-13.7-7.2-28-12.7-43.1-16.3-15.1-3.7-30.4-6-46.1-7 0-5.8.5-25.5 1.4-31.3s2.8-11.1 5.6-16.1c3.6-7.2 10.1-11.3 19.1-12.3h4.3c5.6 0 11 .8 16.3 2.3s10.6 3.2 15.9 5.2v1.5c0 5.6 1.1 10.8 3.4 15.3 2.2 4.5 5.2 8.7 8.8 12.5 7.7 7.8 17.1 12.3 28.4 13.3h5.5c11.2 0 21.1-3.6 30.1-10.9 4-3.3 7.3-7.2 9.8-11.7 2.6-4.4 4.2-9.4 4.8-15.1.3-1 .5-2.4.5-4.3.2-8.3-2.4-16.2-7.7-23.4-5.3-6.9-11.9-11.9-19.7-14.7h-.5c-4.9-2.3-10.7-3.4-17.3-3.4q-8.1 0-17.1 2.4h-.4c-9.7 3.8-17.1 9.7-22.5 17.6-13.3-5.4-26.5-8-39.5-8-4.9 0-9.9.5-14.9 1.4h.9c-6.6 1.6-12.4 4.4-17.5 8.3s-9.3 8.7-12.5 14.3c-4 6.5-6.6 23.5-7.9 30.9-1.3 7.3-1.9 18.7-1.9 26-15.7 1.1-31.3 3.4-47.2 6.8-15.7 3.5-30.4 8.9-44.2 16.4-1 .3-1.8.7-2.6 1s-1.5.6-2.2 1c-4.7-3.4-9.7-6-15.4-7.9-5.9-1.9-12.1-2.9-18.6-2.9h-4.3c-6.5 0-12.6 1.2-18.1 3.6s-10.6 5.8-15.2 10.1c-4.3 4.3-7.8 9.2-10.4 14.5-2.7 5.4-3.9 11-3.9 16.9.3 8.1 3.3 16 8.9 23.5 4.3 6.2 10.4 11.5 18.2 15.8-.4 1.6-.6 3.3-.7 5.1s-.2 3.6-.2 5.2c0 7.5 1.1 15 3.4 22.6 2.3 7.5 5.5 14.6 9.8 21.1 8.1 12.5 18.4 22.9 30.7 31.2s25.3 15.1 39.1 20.4q19.65 7.5 40.5 11.1c13.9 2.5 28.1 3.7 42.4 3.7 9.4 0 18.8-.6 28.1-1.8 9.4-1.2 18.8-2.8 28.2-4.7 17.4-4.1 34.1-10.4 50.2-18.8s29.5-19.5 40.8-33.2c12.8-15.4 19.2-32.6 19.2-51.7 0-1.9-.1-3.8-.3-5.6s-.4-3.6-.7-5.1c7.5-3.7 13.7-8.9 18.7-15.8 5.3-7.2 7.9-15.2 7.9-24V245zm-37.1-17q-7.05-3.3-14.1-3.3c-4.6 0-8.9.9-12.9 2.9 6.5 5.3 12.5 10.9 17.7 17q7.95 9.15 13.2 20.4 3.3-2.85 6-6.9c1.9-3.2 2.9-6.8 2.9-10.8 0-2.9-.9-6-2.4-9.4-2.3-4-5.8-7.3-10.4-9.9" />',viewBox:"0 0 512 512"},al={name:"stumble-upon",content:'<path d="m288.1 256 26.8 8.4L352 256v64c1.1 18.9 12.8 32 32 32s30.9-13.1 32-32v-64h64v64s0 96-96 96-96-96-96-96zm26.8-23.2L288 224v-32s0-32-32-32-32 32-32 32v128s0 96-96 96-96-96-96-96v-64h64v64c1.1 18.9 12.8 32 32 32 19.1 0 30.9-13.2 32.1-32h-.1V192s0-96 96-96 96 96 96 96v32z" />',viewBox:"0 0 512 512"},sl={name:"stumble-upon-box",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm191.5 96.3c82.5 0 82.5 87.3 82.5 87.3v8.4l-31.9 8-23.1-8v-8.6s0-29.2-27.5-29.2-27.5 29.2-27.5 29.2v81.5s0 87-82 87-82-87-82-87V256h55v41h-.9c.9 17.2 11 29.1 27.5 29.1s26.6-12 27.6-29.1h-.2v-81.4s0-87.3 82.5-87.3M283.1 256l23 7.6L338 256v40.7c.9 17.2 11 29.1 27.5 29.1s26.6-11.9 27.5-29.1V256h55v40.7s0 87.3-82.5 87.3-82.5-87.3-82.5-87.3z" />',viewBox:"0 0 512 512"},cl={name:"tell-a-friend",content:'<path d="M383.5 64c-31.7 0-57.5 24-57.5 53.5v2.1c0 14.9-12.2 30.3-28.5 33.3-5.5.5-9.9 4.8-9.9 10.1 0 2.6 1.1 5 2.9 6.8 13.3 10.5 28.3 22.2 92.5 22.2s80.1-11.7 93.3-22.2c1.8-1.8 2.9-4.1 2.9-6.8 0-5.3-4.3-9.6-9.9-10.1-16.3-3-28.5-18.4-28.5-33.3v-2.1c0-29-25-52.7-55.9-53.5h-.5.2zc.2 0 0 0 0 0m.6 0h.9zM128 224c-64.9 0-96 70-96 128v96h192v-96c0-52.7-34-128-96-128m256 0c-96 0-96 224-96 224h192s0-224-96-224m-192-96c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64" />',viewBox:"0 0 512 512"},ll={name:"tell-a-friend-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M144 96c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m80 320H64v-96c0-48.3 26-96 80.2-96 51.7 0 79.8 52.1 79.8 96zm223.6 0H288s0-192 80-192 79.6 192 79.6 192m-2-240.7c-11.1 7.9-24.3 16.7-78 16.7s-66.3-8.8-77.3-16.7c-1.5-1.3-2.4-3.1-2.4-5.1 0-4 3.6-7.2 8.2-7.5 13.6-2.3 23.8-13.8 23.8-25v-1.6c0-22.1 21.4-40.1 48-40.1h.9c26.1.4 47.1 18.2 47.1 40.1v1.6c0 11.2 10.2 22.7 23.8 25 4.6.4 8.2 3.6 8.2 7.5.1 2-.8 3.8-2.3 5.1" />',viewBox:"0 0 512 512"},hl={name:"tumblr",content:'<path d="M192.6 32c-2.8 23.1-8.1 42.1-15.7 57.1s-17.7 27.8-30.3 38.5-33 18.9-50.6 24.6V224h61v148.7c0 20.5 2.1 36.1 6.4 46.9s12 21 23.1 30.6c11.1 9.5 25 16.9 40.7 22.1s27.8 7.7 48.3 7.7q27 0 50.4-5.4c15.5-3.6 39.1-10.9 58.2-19.9V384c-22.3 14.8-51 22.9-73.7 22.9-12.8 0-24-3-33.9-8.9-7.5-4.4-14.3-12-17-19.2-2.8-7.4-2.4-22.3-2.4-48.2V224h96v-96h-96V32z" />',viewBox:"0 0 512 512"},ul={name:"tumblr-box",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m-96.1 366c-12.7 6.4-28.5 11.6-38.9 14.2s-21.6 3.9-33.7 3.9c-13.7 0-21.8-1.9-32.3-5.5-10.5-3.7-19.9-9-27.3-15.8-7.4-6.9-12.6-14.1-15.4-21.8-2.9-7.7-4.3-18.9-4.3-33.5V224h-40v-42.2c11.7-4.1 25.3-9.9 33.6-17.6 8.4-7.6 15.1-16.8 20.2-27.5s8.6-24.3 10.5-40.8H267v64h53v64h-53v85.2c0 18.6-.2 29.3 1.6 34.5s6.4 10.7 11.4 13.8c6.6 4.2 14.2 6.4 22.7 6.4 15.1 0 34.3-5.9 49.3-16.5V398z" />',viewBox:"0 0 512 512"},pl={name:"twitter",content:'<path d="M342 64c-50.8 0-91.9 41.2-91.9 91.9q0 10.8 2.4 21c-76.4-3.8-144.1-40.4-189.4-96-7.9 13.6-12.4 29.3-12.4 46.2 0 31.9 16.2 60 40.9 76.5-15.1-.5-29.2-4.6-41.6-11.5v1.2c0 44.5 31.7 81.7 73.7 90.1-7.7 2.1-15.8 3.3-24.2 3.3-5.9 0-11.7-.6-17.3-1.6 11.7 36.5 45.6 63.1 85.9 63.8-31.7 24.5-71.3 39.2-114.3 39.2-7.4 0-14.8-.4-22-1.3 40.7 26 89 41.3 140.9 41.3 169.1 0 261.5-140.1 261.5-261.5 0-4-.1-8-.2-11.9 18-12.9 33.5-29.1 45.9-47.6-16.5 7.3-34.2 12.3-52.8 14.5 19-11.4 33.6-29.4 40.4-50.8-17.8 10.5-37.4 18.2-58.4 22.3C392.3 75.1 368.4 64 342 64" />',viewBox:"0 0 512 512"},dl={name:"twitter-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-64.7 159.7c.1 2.8.2 5.6.2 8.4 0 85.4-66 183.9-186.8 183.9-37.1 0-71.6-10.7-100.6-29.1 5.1.6 10.4.9 15.7.9 30.8 0 59.1-10.4 81.5-27.7-28.7-.5-53-19.2-61.3-44.9 4 .7 8.1 1.2 12.4 1.2 6 0 11.8-.8 17.3-2.3-30-5.9-52.7-32-52.7-63.3v-.8c8.9 4.8 19 7.7 29.7 8.1-17.6-11.6-29.2-31.4-29.2-53.8 0-11.8 3.2-22.9 8.9-32.5 32.4 39.1 80.8 64.8 135.3 67.5-1.1-4.7-1.7-9.7-1.7-14.7 0-35.7 29.4-64.6 65.6-64.6 18.9 0 36 7.8 47.9 20.4 14.9-2.9 29-8.3 41.7-15.7-4.9 15.1-15.3 27.7-28.9 35.7 13.3-1.6 26-5.1 37.7-10.2-8.9 13.1-19.9 24.5-32.7 33.5" />',viewBox:"0 0 512 512"},vl={name:"yammer",content:'<path d="M263.9 32.1c-10.1-.2-19.6 6.8-23.2 18-.1.4-.3 1-.5 1.9 0 .1-.1.3-.1.4-8 25.9-73.6 235.6-73.6 235.6h-1.2l-84-239.2C75.6 35.3 61.6 28.7 48.9 34c-13 5.5-19.7 21.5-15.4 36.2 10.1 29 105.8 290.4 105.8 290.4l-6.3 15.6c-10.6 32.1-31.6 53.8-63.2 53.8-3.1 0-13.7-.7-14.4-.8-10.2-.6-19.7 6.9-22.5 18.4-3.1 13.1 3.7 26.6 15.3 30.4 8.4 1.6 17 2.2 24.7 2.2 58.3 0 86.8-37.7 106-92.8 0 0 101-300.5 105.8-312.9.8-2 1.4-3.7 2-5.4l-.1-.1c.1-.4.3-.7.4-1.1 4.1-14.5-3-29.9-15.8-34.5-2.5-.8-4.9-1.3-7.3-1.3M383.5 96c-6.3.1-13.3 2.5-20.4 9.6-21.5 21.6-43 86.4-43 86.4s64.6-21.6 86.4-43.5-.4-42.8-.4-42.8-9.7-9.8-22.6-9.7m64.6 128c-32 0-96 32-96 32s64 32 96.4 32 31.5-32 31.5-32 .1-32-31.9-32m-128 96s21.5 64.8 43 86.4 43-.1 43-.1 22.1-21 .4-42.8c-21.8-21.9-86.4-43.5-86.4-43.5" />',viewBox:"0 0 512 512"},fl={name:"yammer-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M332.5 148.6c15.4-15.4 30.7 0 30.7 0s15.8 15 .3 30.6-61.7 31.1-61.7 31.1 15.4-46.3 30.7-61.7m-54.7-26.4c-.1.3-.2.5-.3.8h.1c-.4 1.2-.9 2.4-1.4 3.8-3.5 8.8-75.5 223.1-75.5 223.1-13.7 39.3-34 66.2-75.6 66.2-5.5 0-11.6-.4-17.6-1.6-8.3-2.7-13.2-12.3-10.9-21.7 2-8.2 8.8-13.6 16.1-13.2.5.1 8.1.6 10.3.6 22.6 0 37.5-15.5 45.1-38.3l4.5-11.1s-68.2-186.3-75.5-207c-3-10.5 1.7-22 11-25.9 9.1-3.8 19.1.9 23.2 10.6l.8 2.4L191.3 279h.9s46.7-149.5 52.5-168c0-.1 0-.2.1-.3.2-.6.3-1.1.4-1.3 3.2-9.8 12.7-15.1 21.6-11.9 8.9 3.4 14 14.4 11 24.7m85.4 241.2s-15.3 15.5-30.7 0-30.8-61.7-30.8-61.7 46.1 15.4 61.7 31.1-.2 30.6-.2 30.6m30.3-84.6c-23.2 0-68.9-22.8-68.9-22.8s45.7-22.8 68.6-22.8S416 256 416 256s.7 22.8-22.5 22.8" />',viewBox:"0 0 512 512"},ml={name:"behance",content:'<path d="M448 128H304V96h144zM245.335 254.873c7.09 11.573 10.665 25.65 10.665 42.197 0 17.067-4.069 32.379-12.176 45.903-5.178 9.005-11.62 16.58-19.358 22.691-8.723 7.022-18.988 11.833-30.855 14.467C181.744 382.732 168.89 384 155.02 384H32V96h131.927c33.321.504 56.901 10.744 70.803 30.705 8.323 12.24 12.515 26.869 12.515 43.936 0 17.588-4.192 31.729-12.607 42.425-4.716 5.982-11.683 11.443-20.868 16.385 13.963 5.364 24.474 13.817 31.565 25.422m-158.9-45.318H152.8c11.867 0 21.484-2.406 28.913-7.152 7.367-4.763 11.097-13.215 11.097-25.292 0-13.426-4.901-22.285-14.672-26.609q-12.67-4.486-32.273-4.486h-59.43zm111.923 83.452c0-15.019-5.795-25.292-17.385-30.917-6.504-3.121-15.597-4.746-27.31-4.876H86.435v76.787h66.303c11.836 0 21.084-1.69 27.68-5.071 11.96-6.275 17.94-18.238 17.94-35.923M479.932 288H330.824c.813 21.182 7.938 34.778 21.409 43.322 8.157 5.287 18.002 7.931 29.503 7.931 12.189 0 22.096-3.224 29.722-9.704 4.157-3.482 7.813-8.318 11.001-14.541h54.693c-1.438 12.541-8.095 25.276-19.846 38.204C438.959 373.748 413.269 384 380.266 384c-27.253 0-51.286-8.64-72.132-25.985-20.846-17.28-31.222-45.522-31.222-84.532 0-36.624 9.376-64.672 28.19-84.21C323.917 169.785 348.294 160 378.328 160c17.814 0 33.847 3.288 48.129 9.898 14.282 6.593 26.096 17.023 35.378 31.24 8.407 12.573 13.876 27.114 16.346 43.685 1.438 9.704 2.033 24.929 1.751 43.177m-55.567-37.696c-.969-14.669-5.72-25.759-14.283-33.4-8.532-7.576-19.095-11.348-31.753-11.348-13.72 0-24.377 3.998-31.94 12.058-7.563 8.028-12.314 18.957-14.282 32.691z" />',viewBox:"0 0 512 512"},gl={name:"behance-box",content:'<path d="M167.543 228.938h-56.884v-56.479h50.939q16.803 0 27.663 3.988c8.376 3.844 12.576 11.718 12.576 23.652 0 10.735-3.197 18.249-9.511 22.482-6.368 4.219-14.612 6.357-24.783 6.357m220.527 11.836c-7.313-6.494-16.367-9.727-27.217-9.727-11.76 0-20.895 3.427-27.378 10.335-6.483 6.881-10.555 16.249-12.242 28.021h79.079c-.83-12.573-4.902-22.079-12.242-28.629m-196.379 34.862c-5.575-2.774-13.369-4.219-23.409-4.335h-57.624v68.255h56.831c10.146 0 18.072-1.503 23.726-4.508 10.251-5.577 15.377-16.211 15.377-31.931 0-13.35-4.967-22.482-14.901-27.481M480 64v384c0 17.664-14.336 32-32 32H64c-17.664 0-32-14.336-32-32V64c0-17.664 14.336-32 32-32h384c17.664 0 32 14.336 32 32m-176 96h112v-32H304zm-48 146.729c0-14.709-3.065-27.221-9.142-37.509-6.078-10.316-15.087-17.829-27.056-22.597 7.873-4.392 13.845-9.247 17.887-14.564 7.213-9.507 10.806-22.077 10.806-37.711 0-15.171-3.593-28.175-10.727-39.055-11.916-17.743-32.128-26.846-60.689-27.293H64v256h105.445c11.889 0 22.907-1.127 33.079-3.439 10.172-2.341 18.97-6.618 26.447-12.859 6.632-5.433 12.154-12.166 16.592-20.17C252.512 335.51 256 321.899 256 306.729m190.442-42.024c-2.117-14.204-6.804-26.667-14.01-37.444-7.956-12.187-18.082-21.126-30.324-26.777-12.242-5.665-25.985-8.484-41.254-8.484-25.744 0-46.638 8.387-62.765 25.091-16.127 16.746-24.163 40.788-24.163 72.18 0 33.437 8.894 57.644 26.762 72.456C318.555 376.594 339.155 384 362.514 384c28.288 0 50.308-8.788 66.033-26.391 10.072-11.081 15.778-26.86 17.011-37.609h-46.879c-1.178 6-2.512 10.667-9.429 17.327-6.536 5.555-15.028 8.318-25.476 8.318-9.858 0-18.297-2.266-25.288-6.798-11.546-7.323-17.654-18.977-18.35-37.133h127.807c.24-15.641-.269-28.691-1.501-37.009" />',viewBox:"0 0 512 512"},yl={name:"dribbble",content:'<path d="M256 32C132.469 32 32 132.469 32 256c0 123.5 100.469 224 224 224 123.5 0 224-100.5 224-224 0-123.531-100.5-224-224-224m148.094 103.281c26.625 32.562 42.781 74.031 43.188 119.188-6.312-1.312-69.562-14.156-133.219-6.156a851 851 0 0 0-4.125-9.875c-3.969-9.312-8.25-18.594-12.688-27.719 70.75-28.875 102.812-69.969 106.844-75.438M256 64.969c48.594 0 93.031 18.219 126.812 48.188-3.438 4.906-32.25 43.625-100.281 69.125-31.344-57.594-66.094-104.938-71.375-112A191 191 0 0 1 256 64.969m-81.344 18.156c5.031 6.938 39.219 54.312 70.938 110.656-89.5 23.781-168.344 23.438-176.906 23.312 12.406-59.374 52.437-108.718 105.968-133.968m-110 173.156c0-1.969.031-3.906.094-5.844 8.375.156 101.094 1.375 196.657-27.219 5.469 10.719 10.688 21.594 15.5 32.469a193 193 0 0 0-7.531 2.281c-98.688 31.875-151.188 118.812-155.531 126.25-30.564-33.937-49.189-78.812-49.189-127.937M256 447.594c-44.25 0-85-15.094-117.438-40.375 3.438-7.031 42.156-81.875 150.094-119.5.406-.125.812-.281 1.25-.406 26.875 69.812 37.969 128.312 40.812 145.094-22.968 9.781-48.218 15.187-74.718 15.187m106.875-32.719c-1.938-11.625-12.125-67.625-37.156-136.406 59.969-9.594 112.625 6.125 119.188 8.188-8.532 53.218-39.095 99.218-82.032 128.218" />',viewBox:"0 0 512 512"},bl={name:"dribbble-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M256 448c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192m28-164.8c-82.9 28.9-118.1 83.4-126.7 98.7 27.2 21.3 61.5 34.1 98.7 34.1 22.5 0 43.9-4.6 63.3-13-3.3-18.4-13.1-65.2-34.2-120.1-.4 0-.8.2-1.1.3m-95.5-172.3c-44.9 20.9-78.5 62.1-89 111.8 17.1-.1 78.6-1.7 147.6-20-24.3-43.2-50.3-80.1-58.6-91.8m79 146.8c2.1-.7 4.3-1.3 6.5-2-4.1-9.3-8.6-18.6-13.3-27.8-74.1 22.2-146.1 23.4-164.6 23.4 0 1.6-.1 3.1-.1 4.7 0 40.8 15.3 78 40.4 106.3 10.5-16.7 54.6-79.9 131.1-104.6m94.9-121.1C334.2 111.3 296.9 96 256 96c-12.4 0-24.5 1.4-36 4.1 8.7 11.9 34.9 48.8 58.8 92.7 50.7-19 76-46.7 83.6-56.2m-46.6 138.7C335 328 344 371.9 346.9 387.8c35.2-24.3 60.2-62.5 67.2-106.6-13.2-3.7-53.4-13.1-98.3-5.9m-24.4-58.1c3.8 7.8 7.5 15.8 10.9 23.8 1.2 2.8 2.4 5.7 3.5 8.5 48-6 95.7 1.8 110.2 4.5-.5-37.2-13.7-71.4-35.4-98.3-8.4 10-36.1 39.8-89.2 61.5" />',viewBox:"0 0 512 512"},xl={name:"rss",content:'<path d="M151.4 420c0 32.9-26.7 59.5-59.7 59.5S32 452.9 32 420s26.7-59.5 59.7-59.5 59.7 26.7 59.7 59.5M32 184.3v85.9c56 0 108.5 21.8 148.1 61.3 39.6 39.6 61.4 92.3 61.4 148.5h86.2C327.6 317 195 184.3 32 184.3M32 32v85.9c199.4 0 361.6 162.5 361.6 362.1h86.2C479.8 233 278.9 32 32 32" />',viewBox:"0 0 512 512"},wl={name:"rss-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M115.2 447.6c-28.3 0-51.2-22.8-51.2-51s22.9-51 51.2-51 51.2 22.8 51.2 51-23 51-51.2 51m128.8.4c0-48.1-18.7-93.3-52.8-127.3-34-33.9-79.2-52.6-127.2-52.6v-73.6c140.1 0 254.1 113.7 254.1 253.5zm129.9 0c0-171.2-139-310.4-309.9-310.4V64c211.6 0 383.8 172.3 383.8 384z" />',viewBox:"0 0 512 512"},_l={name:"vimeo",content:'<path d="M479.783 152.805c-2 43.26-32.469 102.444-91.344 177.477C327.532 408.792 275.969 448 233.782 448c-26.094 0-48.188-23.873-66.25-71.742-12.063-43.896-24.094-87.854-36.157-131.657-13.407-47.901-27.782-71.835-43.188-71.835-3.344 0-15.032 6.985-35.125 20.955L32 166.744c22.094-19.201 43.844-38.526 65.282-57.773 29.407-25.316 51.5-38.556 66.25-39.938 34.782-3.353 56.219 20.287 64.282 70.78 8.625 54.559 14.719 88.475 18.032 101.777 10.031 45.2 21.093 67.769 33.156 67.769 9.344 0 23.375-14.591 42.157-43.818 18.75-29.29 28.782-51.548 30.125-66.868 2.656-25.27-7.375-37.827-30.125-37.827-10.719 0-21.782 2.251-33.157 6.969C310.126 96.647 352.283 62.08 414.533 64.082c46.156 1.289 67.906 30.935 65.25 88.723" />',viewBox:"0 0 512 512"},Cl={name:"vimeo-box",content:'<path d="M448 32H64c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h384c17.664 0 32-14.336 32-32V64c0-17.664-14.336-32-32-32m-.186 140.119c-1.714 37.08-27.831 87.809-78.295 152.123-52.206 67.294-96.402 100.901-132.563 100.901-22.366 0-41.304-20.462-56.786-61.493-10.339-37.625-20.652-75.303-30.991-112.849-11.491-41.058-23.813-61.573-37.018-61.573-2.866 0-12.884 5.987-30.107 17.961L64 184.066c18.938-16.458 37.581-33.022 55.956-49.519 25.206-21.7 44.143-33.048 56.786-34.232 29.813-2.874 48.188 17.389 55.099 60.668 7.393 46.765 12.616 75.835 15.456 87.237 8.598 38.743 18.08 58.087 28.419 58.087 8.009 0 20.036-12.506 36.134-37.559 16.071-25.106 24.67-44.184 25.822-57.315 2.277-21.66-6.321-32.423-25.822-32.423-9.188 0-18.67 1.929-28.42 5.974 18.964-61.001 55.099-90.63 108.456-88.914 39.562 1.105 58.205 26.516 55.928 76.049" />',viewBox:"0 0 512 512"},Ol={name:"youtube",content:'<path d="M475.5 165s-4.4-31.4-17.8-45.2c-17-18.1-36.1-18.2-44.9-19.3C350.1 96 256.1 96 256.1 96h-.2s-94 0-156.7 4.6c-8.8 1.1-27.8 1.2-44.9 19.3C40.9 133.7 36.5 165 36.5 165S32 201.9 32 238.7v34.5c0 36.8 4.5 73.6 4.5 73.6s4.4 31.4 17.8 45.2c17 18.1 39.4 17.5 49.4 19.4C139.5 414.9 256 416 256 416s94.1-.1 156.8-4.7c8.8-1.1 27.9-1.2 44.9-19.3 13.4-13.8 17.8-45.2 17.8-45.2s4.5-36.8 4.5-73.6v-34.5c0-36.8-4.5-73.7-4.5-73.7M192 336V176l144 80z" />',viewBox:"0 0 512 512"},Sl={name:"youtube-box",content:'<path d="M448 32H64c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h384c17.664 0 32-14.336 32-32V64c0-17.664-14.336-32-32-32m0 237.749c0 29.454-3.835 58.909-3.835 58.909s-3.752 25.082-15.265 36.128c-14.602 14.497-30.97 14.569-38.476 15.417C336.689 383.885 256 384 256 384s-99.838-.864-130.559-3.656c-8.546-1.519-27.734-1.061-42.341-15.558-11.513-11.045-15.26-36.128-15.26-36.128S64 299.203 64 269.749v-27.614c0-29.454 3.84-58.909 3.84-58.909s3.747-25.082 15.26-36.128c14.607-14.497 30.969-14.569 38.476-15.417C175.313 128 255.917 128 255.917 128h.167s80.606 0 134.341 3.682c7.506.849 23.873.92 38.476 15.417 11.513 11.045 15.265 36.128 15.265 36.128S448 212.681 448 242.136zM192 176l144 80-144 80z" />',viewBox:"0 0 512 512"},zl={name:"folder",content:'<path d="m242.8 128-32-32H96v288h320V192H128v-32h288c17.7 0 32 14.3 32 32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h128l64 64" />',viewBox:"0 0 512 512"},Ml={name:"folder-open",content:'<path d="M425.6 160h-246c-17.6 0-37.2 14.4-43.6 32L64 384V96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h268.4c17.6 0 37.2-14.4 43.6-32l70-192c6.4-17.6-2.8-32-20.4-32M346 373.1c-2 5.5-10.1 10.9-13.6 10.9H98.1L166 202.9c2-5.5 10.1-10.9 13.6-10.9h232.3z" />',viewBox:"0 0 512 512"},Pl={name:"folder-add",content:'<path d="M96 160h288c17.7 0 32 14.3 32 32v64h-32v-64H96zm352 224h-32v-64h-32v64h-64v32h64v64h32v-64h64v-32zM64 96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h192v-32H64z" />',viewBox:"0 0 512 512"},Vl={name:"folder-up",content:'<path d="M96 160h288c17.7 0 32 14.3 32 32v64l-32 32v-96H96zM64 96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h192l32-32H64zm336 240-80 80h64v64h32v-64h64z" />',viewBox:"0 0 512 512"},Al={name:"folder-more",content:'<path d="M64 384h96v32H64c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h128l64 64h-45.2l-32-32H64zm192-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m160-64v-96c0-17.7-14.3-32-32-32H96v32h288v96zm32 64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m-96 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32" />',viewBox:"0 0 512 512"},jl={name:"aggregate-fields",content:'<path d="M128 128c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h256c32 0 32-32 32-32H128zm-64 64c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h256c32 0 32-32 32-32H64zM448 64H192c-17.6 0-32 14.4-32 32v160c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32m1 192s0 .1 0 0l-256.9.1-.1-.1V96.1l.1-.1H448v160z" />',viewBox:"0 0 512 512"},kl={name:"file",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Hl={name:"file-add",content:'<path d="M512 416h-64v64h-32v-64h-64v-32h64v-64h32v64h64zM96 448V64h224v96h96v96h32V128l-96-96H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h224v-32" />',viewBox:"0 0 512 512"},Il={name:"file-txt",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-32-96v32H128v-32zM256 160v32H128v-32m256 64v32H128v-32zm-256 96v-32h224v32z" />',viewBox:"0 0 512 512"},Bl={name:"file-csv",content:'<path d="M178.6 224c-10 0-18.9 2.1-26.7 6.2-7.7 4.2-13.7 10.1-17.9 17.7q-6.3 11.4-6.3 26.1c0 9.1 1.9 17.1 5.7 24.1s9.2 12.3 16.4 16.1 15.7 5.7 25.6 5.7c10 0 18.9-1.4 26.6-4.1v-24.9c-6.9 3.5-13.8 5.2-20.5 5.2-7.3 0-13.2-2.1-17.6-6.4s-6.6-10.1-6.6-17.6 2.2-13.4 6.6-17.7 10.4-6.5 18-6.5c3.7 0 7.3.4 10.9 1.3s6.7 2.1 9.2 3.6V227c-7.6-2-15.3-2.9-23.4-3m73.8.1c-11.5 0-20.6 2.7-27.5 8.1-6.8 5.4-10.2 12.5-10.2 21.5 0 12.8 7.5 22.1 22.4 27.8 4.6 1.7 7.8 3.1 9.5 4.1s3 2 3.8 3.2 1.2 2.5 1.2 4c0 2.1-.8 3.7-2.5 4.8s-4.1 1.7-7.1 1.7c-4.1 0-8.4-.9-13.2-2.6-4.7-1.8-9-4-12.9-6.9V315c8.1 3.3 17 4.9 26.7 4.9 8.4 0 15.5-1.1 21.5-3.4 6-2.2 10.6-5.7 13.9-10.2 3.3-4.6 5-9.9 5-16.1 0-6.3-2-11.8-6-16.4s-10.8-8.9-20.4-12.8c-4.9-2-8.1-3.7-9.6-5s-2.3-2.9-2.3-4.8c0-2 1-3.6 2.8-4.8q2.85-1.8 7.5-1.8c7.6 0 15.2 2.1 23 6.4v-23.6c-4-1.1-7.1-1.8-9.3-2.2s-4.7-.7-7.4-1c-2.7-.1-5.8-.1-8.9-.1m39.8-.1 30 96h31.4l30.4-96h-29.1l-13.8 58.9c-1.1 4.4-1.8 8.1-2 11.1h-.6c-.1-2.4-.8-5.9-1.9-10.7L322.4 224zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Ll={name:"file-excel",content:'<path d="m288 304 64 112h-48l-48-84.5-31.5 52.5H256v32h-96l64-112-64-112h48l48 84 48-84h48zm64-272H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Tl={name:"file-word",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-32.4-256-6.9 32-41.6 192h-46.7l-32.8-132.5L222.9 416h-46.7l-48.6-224h47.8l24.8 139.2L233.3 192h44.5l33.1 139.2L330.1 224H311v-32z" />',viewBox:"0 0 512 512"},El={name:"file-mdb",content:'<path d="M231.1 192 144 416h80v-32h-25.5l14.8-38h85.6l27.2 70h42L281 192zm-1.5 112 26.5-68 26.4 68zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Dl={name:"file-ppt",content:'<path d="m192 192-32 32h32v192h49v-80h25.6c16.4 0 29.1-1.5 38.2-4.4 14.4-4.5 25.9-12.9 34.4-25.4s12.8-26.6 12.8-42.6q0-23.7-12-41.1c-12-17.4-18.8-20.1-32.4-25.4-10.3-3.7-24.4-5.5-42-5.5M241 225h20.1c11.2.3 20.2 2.1 26.9 5.6 12.1 6.4 23.3 17.6 23.3 33.5 0 17.3-11.9 29-25.2 35-6.7 2.9-15.1 4.4-25.2 3.9H241zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Nl={name:"file-pdf",content:'<path d="M240.9 160c-7.6 0-13.8 4-15.4 9.9-4.9 18.6.2 46.3 9.4 82.3l-2.4 5.9c-6.6 16.4-14.8 33-22.1 47.6l-1 1.9c-7.7 15.3-14.6 28.4-21 39.4l-6.5 3.5c-.5.3-11.6 6.3-14.3 7.9-22.2 13.6-36.9 28.9-39.4 41.2-.8 3.9-.2 8.9 3.7 11.2l6.3 3.2c2.7 1.4 5.6 2.1 8.6 2.1 15.8 0 34.2-20.2 59.5-65.3 29.2-9.7 62.5-17.8 91.6-22.3 22.2 12.8 49.5 21.7 66.8 21.7q4.65 0 7.8-.9c3.3-.9 6.1-2.8 7.8-5.4 3.4-5.2 4-12.2 3.1-19.5-.3-2.1-2-4.8-3.8-6.6-5.1-5.2-16.5-7.9-33.7-8.1-11.7-.1-25.8.9-40.6 3-6.6-3.9-13.5-8.2-18.8-13.3-14.4-13.8-26.5-32.9-34-53.9.5-2 .9-3.7 1.3-5.4 0 0 8.1-47.1 6-63.1-.3-2.2-.5-2.8-1.1-4.5l-.7-1.9c-2.2-5.2-6.5-10.7-13.3-10.4zm2.7 8.4c5.1 0 8 13.1 8.2 25.4.3 12.3-2.6 20.9-6 27.3-2.9-9.4-4.3-24.3-4.3-34-.1-.1-.3-18.7 2.1-18.7m.4 104.1c8.6 16 19.3 29.5 31.9 40.4 1.6 1.3 3.2 2.7 5 4.1-25.6 5.2-47.7 11.5-67.1 19.1 3.6-6.5 7.2-13.3 11-20.6 9.1-17.7 14.9-31.6 19.2-43m102.2 51.6c9.3 0 12 0 21.1 2.3 9.1 2.4 9.2 7.2 7.6 8.2s-6 1.6-8.9 1.6c-9.2 0-20.7-4.3-36.8-11.4 6.3-.4 11.9-.7 17-.7m-165.4 35.8c-17.7 28.8-29.5 40.3-37.3 43.8 2.9-8.1 14.3-24 31.2-38.1 1.1-.9 3.7-3.4 6.1-5.7M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Rl={name:"file-psd",content:'<path d="M128 160v256h45v-91h21.4q36.3 0 57.9-23.4c14.4-15.6 21.6-36.1 21.6-61.3 0-53.4-25.2-80.2-75.5-80.2H128zm45 44h17.5c23.7 0 35.5 12.8 35.5 38.6 0 26.3-11.8 39.4-35.5 39.4H173zm164.6 51.7c-8.1 0-15.9.9-23.4 2.8s-14.2 4.7-20 8.6-10.4 9-14 15.2c-3.5 6.2-5.2 13.6-5.2 22.1 0 6.2.8 11.7 2.3 16.3 1.5 4.5 3.7 8.6 6.7 12.1 2.9 3.5 6.5 6.5 10.8 9.2s9.3 5.1 15 7.4c3.5 1.5 7.2 2.8 11 4s7.3 2.5 10.5 4 5.8 3.2 7.8 5.2 3 4.5 3 7.5c0 4.7-2.2 8.2-6.7 10.4-4.5 2.3-10.6 3.4-18.5 3.4-6.4 0-13.3-1.2-20.5-3.4s-14.5-5.8-21.7-10.4v38.3c13.4 5.2 27.9 7.7 43.7 7.7 8.5 0 16.8-.9 24.7-2.8 7.9-1.8 15-4.8 21.1-8.8s10.9-9.2 14.7-15.7 5.5-14.2 5.5-23.3c0-6.5-.9-12-2.7-16.8-1.8-4.7-4.4-8.7-7.8-12.2s-7.4-6.5-12.2-9.1c-4.7-2.6-10-5-15.9-7.1-3.2-1.2-6.5-2.4-9.8-3.5s-6.3-2.4-9-3.9-4.9-3.1-6.5-5.2-2.5-4.4-2.5-7.1c0-2.1.5-3.9 1.7-5.6 1.1-1.7 2.6-3 4.6-4s4.2-1.8 6.7-2.4 5.2-.8 8.1-.8c6.1 0 12.3.9 18.8 2.6 6.4 1.7 12.3 4.4 18 7.8v-36.4c-6.3-2-12.8-3.5-19.3-4.5s-13-1.6-19.3-1.6zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Fl={name:"file-flash",content:'<path d="M352 191.3V237c-21 .2-46.6-3.2-69.6 45H320v45h-47.9s-37.4 91.1-111.9 90.1c-.6-10 0-30.8 0-45 49.3-7.6 65.4-62.1 76.8-89.4 26.5-82.8 73.9-92 93.4-92.1 5.6 0 21.6.7 21.6.7m96-63.3v320c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h256zm-32 32h-96V64H96v384h320z" />',viewBox:"0 0 512 512"},Ul={name:"file-config",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-41.8-124.6-23.7-17.9c1-5.7 1.6-11.5 1.6-17.4 0-6-.5-11.8-1.6-17.4l23.7-17.9c3.7-2.8 4.7-7.9 2.4-11.9l-19.4-33.5c-2.3-4-7.2-5.6-11.5-3.9L318.4 215c-8.8-7.5-19-13.5-30.2-17.4l-3.7-29.5c-.6-4.6-4.5-8-9.1-8h-38.7c-4.6 0-8.5 3.4-9.1 8l-3.7 29.5c-11.1 4-21.3 9.9-30.2 17.4l-27.4-11.6c-4.2-1.8-9.2-.1-11.5 3.9l-19.4 33.5c-2.3 4-1.3 9.1 2.4 11.9l23.7 17.9c-1 5.7-1.6 11.5-1.6 17.4 0 6 .5 11.8 1.6 17.4l-23.7 17.9c-3.7 2.8-4.7 7.9-2.4 11.9l19.4 33.5c2.3 4 7.2 5.6 11.5 3.9l27.4-11.6c8.8 7.5 19 13.5 30.2 17.4l3.7 29.5c.6 4.6 4.5 8 9.1 8h38.7c4.6 0 8.5-3.4 9.1-8l3.7-29.5c11.1-4 21.3-9.9 30.2-17.4l27.4 11.6c4.2 1.8 9.2.1 11.5-3.9l19.4-33.5c2.2-4 1.2-9-2.5-11.8M256 336c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48" />',viewBox:"0 0 512 512"},Kl={name:"file-ascx",content:'<path d="M384 224h-96v-32h96zm0 160h-96v-32h96zM256 256H128v-96h128zm0 160H128v-96h128zm96-384H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},ql={name:"file-bac",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H289v-96h64l-96.5-96-95.5 96h64v96H96V64h224v96h96z" />',viewBox:"0 0 512 512"},$l={name:"file-zip",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h64v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v34.7c-18.6 6.6-32 24.4-32 45.3 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V256h32v-32h-32v-32h32v-32h-32v-32h32V96h-32V64h96v96h96zm-192-80c0 8.8-7.2 16-16 16s-16-7.2-16-16 7.2-16 16-16 16 7.2 16 16" />',viewBox:"0 0 512 512"},Xl={name:"film",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M128 448H96v-32h32zm0-96H96v-64h32zm0-128H96v-64h32zm0-128H96V64h32zm224 352H160v-96h192zm0-128H160V192h192zm0-160H160V64h192zm64 288h-32v-32h32zm0-96h-32v-64h32zm0-128h-32v-64h32zm0-128h-32V64h32z" />',viewBox:"0 0 512 512"},Gl={name:"css3",content:'<path d="m64 32 30.2 384L256 480l161.8-64L448 32zm65.6 82h250.3l-4.9 48.9L255.4 214h115.9L358 366.1l-102.1 29.7-102.4-30.2-6.6-76.6h50.9l3.3 39.7 54.4 13.8.5-.1v-.1l56.3-15.8 3.9-64.4H143.7l-3.8-47.8 123-51.2H135.7z" />',viewBox:"0 0 512 512"},Yl={name:"html5",content:'<path d="m64 32 30.4 384 161.3 64 161.7-64L448 32zm68 83h247.7l-1.2 13.2-2.2 24.8-1 11H186.1l4.5 51h180.1l-1.2 13.3-11.7 129.9-.7 8.4-101.3 37-101.2-37-6.9-77.6h49l3.5 39.7 55.5 24 55.6-24.1 5.8-64.6h-172L133 128.2z" />',viewBox:"0 0 512 512"},Wl={name:"code",content:'<path d="M512 256 384 384l-22.6-22.6L466.7 256 361.4 150.6 384 128zM150.6 361.4 45.3 256l105.4-105.4L128 128 0 256l128 128zM321.1 72.3 290.2 64l-99.4 375.7 30.9 8.3z" />',viewBox:"0 0 512 512"},Zl={name:"css",content:'<path d="m192 96-32 .1S96 96 96 160v48c0 27.8-21.8 31.4-32 32H48c-2.2 0-4.3.4-6.2 1.2-.5.2-1 .4-1.4.7s-.9.5-1.3.8c-1.3.9-2.4 1.9-3.4 3.1-.2.2-.3.4-.5.6-.9 1.2-1.7 2.6-2.2 4.1-.2.5-.3 1-.5 1.5-.3 1-.4 2.1-.5 3.2v1.6c.1 1.1.2 2.1.5 3.2.1.5.3 1 .5 1.5.5 1.5 1.3 2.8 2.2 4.1.2.2.3.4.5.6 1 1.2 2.1 2.2 3.4 3.1.4.3.9.5 1.3.8s.9.5 1.4.7c1.9.8 4 1.2 6.2 1.2h16c10.2.6 32 4.2 32 32v48c0 64 64 63.9 64 63.9l32 .1v-32l-31.8-.1s-32.2.1-32.2-32v-48.5s0-29-19.6-47.9c19.6-18.8 19.6-47.9 19.6-47.9v-47.9c0-31.9 32.2-31.8 32.2-31.8l31.8-.1zm128-.1V128l31.7.1S384 128 384 160v48s0 29.1 19.5 48C384 274.9 384 304 384 304v48c0 32-32.1 31.9-32.1 31.9l-31.9.1v32l32.1-.1s63.9.1 63.9-63.7V304c0-27.8 21.8-31.4 32-32h16c2.2 0 4.3-.4 6.2-1.2.5-.2 1-.4 1.4-.7s.9-.5 1.3-.8c1.3-.9 2.4-1.9 3.4-3.1.2-.2.3-.4.5-.6.9-1.2 1.7-2.6 2.2-4.1.2-.5.3-1 .5-1.5.3-1 .4-2.1.5-3.2v-1.6c-.1-1.1-.2-2.1-.5-3.2-.1-.5-.3-1-.5-1.5-.5-1.5-1.3-2.8-2.2-4.1-.2-.2-.3-.4-.5-.6-1-1.2-2.1-2.2-3.4-3.1-.4-.3-.9-.5-1.3-.8s-.9-.5-1.4-.7c-1.9-.8-4-1.2-6.2-1.2h-16.1c-10.2-.6-31.9-4.2-31.9-32v-48c0-64-64.1-63.9-64.1-63.9z" />',viewBox:"0 0 512 512"},Ql={name:"js",content:'<path d="M478.4 96C471 59.5 438.7 32 400 32H208c-38.7 0-71 27.5-78.4 64-1.1 5.2-1.6 10.5-1.6 16v272H32v16c0 5.5.5 10.8 1.6 16 7.4 36.5 39.7 64 78.4 64h192c38.7 0 71-27.5 78.4-64 1.1-5.2 1.6-10.5 1.6-16V128h96v-16c0-5.5-.5-10.8-1.6-16m-124.8 0c-1.1 5.2-1.6 10.5-1.6 16v288c0 5.6-1 11-2.8 16-6.6 18.6-24.4 32-45.2 32-20.9 0-38.7-13.4-45.2-32-1.8-5-2.8-10.4-2.8-16v-16h-96V112c0-5.6 1-11 2.8-16 6.6-18.6 24.4-32 45.2-32h160c-7 9.3-12 20.2-14.4 32M320 192H192v-32h128zm0 64H192v-32h128zm0 64H192v-32h128z" />',viewBox:"0 0 512 512"},Jl={name:"exe",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm160 32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M64 160h384v288H64z" />',viewBox:"0 0 512 512"},th={name:"csproj",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm157.9 32.1c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9m96 0c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9m96 0c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9M64 160h384v288H64zm119.7 64c-17.3 0-32.7 3.5-46 10.4s-23.6 16.8-30.9 29.5c-7.3 12.8-10.9 27.3-10.9 43.6 0 15.2 3.3 28.6 9.8 40.2s15.9 20.6 28.3 26.8c12.4 6.3 27 9.4 44.1 9.4q25.95 0 45.9-6.9v-41.5c-11.9 5.8-23.7 8.6-35.4 8.6-12.6 0-22.8-3.6-30.3-10.7s-11.4-16.9-11.4-29.2c0-12.4 3.8-22.3 11.3-29.6s17.9-10.9 31-10.9c6.3 0 12.6.7 18.8 2.1s11.5 3.5 16 6v-43c-13.1-3.2-26.4-4.8-40.3-4.8m114.2 0-8.3 39h-17.4l-5.7 29H284l-6.1 26H262l-6.1 29h15.4l-7.7 37h30.9l7.9-37h26.8l-7.7 37h30.4l8.2-37h16.3l7.2-29h-17.2l6.1-26h15l6.3-29h-14.7l8.3-39H356l-8.3 39h-26.4l8.3-39zm16.8 68h26.8l-6.3 27h-26.7z" />',viewBox:"0 0 512 512"},eh={name:"vbproj",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm160 32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M64 160h384v288H64zm32 64 51.6 160h54.1L254 224h-50.2L180 321.9c-1.9 7.4-3 13.5-3.5 18.5h-1.1c-.2-3.9-1.3-9.9-3.2-17.9L147.8 224zm183.3 0v160h73c20.4 0 36.2-4.3 47.2-12.8s16.5-20.6 16.5-36.3c0-5.8-1.6-11.4-4.9-16.8s-7.9-9.9-14-13.5-12.8-5.9-20.4-6.8v-.4c6.5-1.3 12.5-3.6 18-7.1s9.5-7.6 12.2-12.2 4-9.8 4-15.3c0-25.8-21.2-38.7-63.7-38.7h-67.9zm48.2 32.3h8.9c15.6 0 23.3 5 23.3 14.8 0 4.5-1.7 8.3-5.1 11.1s-7.8 4.3-13.2 4.3h-14zm0 62.5h19c5.5 0 9.9 1.5 13.3 4.4s5 6.8 5 11.4q0 7.8-5.7 12.3c-5.7 4.5-9 4.5-15.5 4.5h-16.1z" />',viewBox:"0 0 512 512"},oh={name:"cs",content:'<path d="M165.9 128c-26.4 0-49.8 5.6-70.1 16.7s-36 26.8-47.1 47.2S32 235.5 32 261.6c0 24.3 5 45.7 14.9 64.3s24.3 32.9 43.1 43 41.2 15.1 67.2 15.1c26.4 0 46.6-3.7 65.8-11v-66.5c-17.1 9.2-32 13.8-49.8 13.8-19.3 0-34.7-5.7-46.2-17.2s-17.3-27.1-17.3-46.9c0-19.9 5.8-35.7 17.3-47.3s27.3-17.4 47.2-17.4c9.6 0 16 1.2 25.4 3.5s17.5 5.5 24.4 9.7v-68.9c-19.7-5.2-37-7.8-58.1-7.8m158.8 0-13.3 62h-29l-9.3 46h28.6l-10.3 43h-25.6l-9.8 46h25.2l-12.5 59h50l12.9-59h43.5l-12.5 59h49.2l13.3-59h26.8l11.5-46h-28.2l10.3-43h24.2l10.3-46h-23.7l13.5-63h-51.7l-13.5 63h-43.5l13.5-63h-50zm26.9 108H395l-10.3 43h-43.3z" />',viewBox:"0 0 512 512"},rh={name:"vb",content:'<path d="m32 160 73.2 224h76.7L256 160h-71.1l-33.7 137c-2.6 10.3-4.3 19-4.9 25.9h-1.6c-.3-5.5-1.8-13.9-4.6-25L105.5 160zm252 0v224h104.6c29.3 0 51.9-6 67.7-17.9s23.7-28.9 23.7-50.8c0-8.1-2.4-16-7-23.5-4.7-7.6-11.4-13.9-20-18.9-8.7-5-18.4-8.2-29.3-9.5v-.6c9.4-1.8 18-5.1 25.8-10s13.7-10.6 17.5-17.1 5.8-13.7 5.8-21.5c0-36.1-30.5-54.2-91.4-54.2zm69.1 45.2h12.8c22.3 0 33.4 6.9 33.4 20.8 0 6.4-2.5 11.5-7.4 15.5s-11.2 6-18.9 6h-20zm0 87.6h27.2c7.9 0 14.3 2.1 19 6.2s7.2 9.5 7.2 15.9c0 7.3-2.7 13-8.1 17.2s-12.9 6.3-22.2 6.3h-23v-45.6z" />',viewBox:"0 0 512 512"},nh={name:"sln",content:'<path d="M352 32 172.5 211.5 64 128l-32 32v192l32 32 108.5-83.5L352 480l128-32V64zM64 320V192l64 64zm166.4-64L352 162.5v187.1z" />',viewBox:"0 0 512 512"},ih={name:"cloud",content:'<path d="M442.2 243.6c3.7-11.2 5.8-23.2 5.8-35.6 0-61.9-50.1-112-112-112-37.8 0-71.3 18.8-91.6 47.5-15-9.8-33-15.5-52.3-15.5-52.9 0-95.8 42.9-95.8 95.8 0 1.8.1 3.6.2 5.5C58.9 242.3 32 278 32 320c0 53 43 96 96 96h256c53 0 96-43 96-96 0-31.1-14.8-58.8-37.8-76.4" />',viewBox:"0 0 512 512"},ah={name:"file-horizontal",content:'<path d="M384 64H64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160zm64 352H64V96h288v96h96z" />',viewBox:"0 0 512 512"},sh={name:"subreport",content:'<path d="M448 480c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-96h32v96h288V96H128v64H96V96c0-17.7 14.3-32 32-32h288c17.7 0 32 14.3 32 32zM63.9 32l254.3-.2L286.4 0 63.8.2C46.2.2 32 14.4 32 32l.1 128H64zm.1 351H32v32c0 17.7 14.3 32 32 32zm-32-62.9S64 288 95 288v32l65-48.1L96 224v32c-32.1 0-64 32.1-64 64.1M352 384l-160 .1V416l160-.1zm-96-192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64h-64zm32-32v64h64c0-35.3-28.7-64-64-64" />',viewBox:"0 0 512 512"},ch={name:"data",content:'<path d="M448 125.6v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 159.8 64 125.9v-.3c0-34 86-61.6 192-61.6s192 27.6 192 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 206.2 64 172.3v-.3l1 86.8v.5c.5 33.7 85.8 61 191 61s190.5-27.3 191-61v-.5zm0 128v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 334.2 64 300.3v-.3l1 86.8v.5c.5 33.7 85.8 61 191 61s190.5-27.3 191-61v-.5z" />',viewBox:"0 0 512 512"},lh={name:"file-header",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m0 416H96V64h320zm-32-64H128v-32h256zm0-96H128v32h256zm0-160H128v96h256z" />',viewBox:"0 0 512 512"},hh={name:"file-footer",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m0 416H96V64h320zm-32-224H128v-32h256zm0-96H128v32h256zm0 160H128v96h256z" />',viewBox:"0 0 512 512"},uh={name:"group-header-section",content:'<path d="m128 448 32 32H32V32h128l-32 32H64v384zm320-320H128v96h320zm0 160H128v32h320zm0 64H128v32h320z" />',viewBox:"0 0 512 512"},ph={name:"group-footer-section",content:'<path d="m128 448 32 32H32V32h128l-32 32H64v384zm320-160H128v96h320zm0-160H128v32h320zm0 64H128v32h320z" />',viewBox:"0 0 512 512"},dh={name:"page-header-section",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-32-160H128v-96h256zm0 96H128v32h256zm0-64H128v32h256z" />',viewBox:"0 0 512 512"},vh={name:"page-footer-section",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-31-32H129v-96h256zm0-160H129v32h256zm0-64H129v32h256z" />',viewBox:"0 0 512 512"},fh={name:"detail-section",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zm-33-224h-63v-32h63zm-96-32h-63v32h63zm-96 0h-63v32h63zm192 96h-63v32h63zm-96 0h-63v32h63zm-96 0h-63v32h63z" />',viewBox:"0 0 512 512"},mh={name:"toc-section",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zm-32-288H224v-32h160zm-64 64h-96v-32h96zm0 64h-96v-32h96zm64 64H224v-32h160z" />',viewBox:"0 0 512 512"},gh={name:"group-section",content:'<path d="m128 416 32 32H32V32h128l-32 32H64v352zm320-288H128v32h320zm0 192H128v32h320zm0-96H128v32h320z" />',viewBox:"0 0 512 512"},yh={name:"parameters",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zM285.3 160c-8.9-25-36.3-38.1-61.4-29.2-13.7 4.8-24.4 15.6-29.2 29.2H128v32h66.7c8.9 25 36.3 38.1 61.4 29.2 13.7-4.8 24.4-15.6 29.2-29.2H384v-32zM240 192c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m109.3 96c-8.9-25-36.3-38.1-61.4-29.2-13.7 4.8-24.4 15.6-29.2 29.2H128v32h130.7c8.9 25 36.3 38.1 61.4 29.2 13.7-4.8 24.4-15.6 29.2-29.2H384v-32zM304 320c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16" />',viewBox:"0 0 512 512"},bh={name:"data-csv",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zM271 420.8c-7.7 4.5-16.4 6.8-25.4 6.7q-14.55 0-23.1-9c-8.55-9-8.6-14.1-8.6-24.3 0-10.6 3-19 9.1-25.2s14-9.3 23.9-9.3c8.4-.1 16.7 2 24 6.3v-22.8c-7-2.6-15.7-3.9-25.9-3.9-16.6 0-30 5.2-40.4 15.7S189 379.1 189 395.9c0 15.8 4.6 28.4 13.8 37.9s21.9 14.2 38 14.2c12.3 0 22.3-1.9 30-5.6zm36.6 25.7c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.6-2.6-5.5-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.5-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.2-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.3-.8 2.1 0 4.1.2 6.2.4 2.2.3 4.4.8 6.5 1.4 2.2.6 4.3 1.4 6.4 2.3 2 .9 3.9 2 5.8 3.2v-21.9q-5.7-2.1-11.7-3c-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 2 12.8 6 17.9 4 4.9 10.1 9.1 18.3 12.5q4.8 1.95 9 3.9c2.5 1.1 4.9 2.5 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.2-.9-15.1-2.7-5.1-1.8-9.8-4.5-13.9-8V442c4.5 2.3 9 3.8 13.8 4.5m147.7-105.4-21.8 72.8c-1.1 3.5-1.8 7.1-2.3 10.8h-.4c-.3-3.6-1.1-7.1-2.1-10.5l-21.9-73.1h-25.5l35.7 105h26.8l36.2-105zm-295.3-15C85.7 317.7 32.4 295 32 268.3v-.3l.1 86.8v.3c.4 26.7 53.7 49.3 127.9 57.8z" />',viewBox:"0 0 512 512"},xh={name:"data-json",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zm-251.3 21.1h-23.6v62.4q0 24-16.2 24c-4.9.1-9.7-1.5-13.6-4.5v22.2c4.9 1.9 10.1 2.9 15.3 2.8 12.4 0 21.8-3.7 28.3-11.2s9.8-18.2 9.8-32.3zm31.7 105.4c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.6-2.6-5.4-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.6-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.2-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.4-.7 2.1 0 4.1.1 6.2.4 2.2.3 4.4.8 6.6 1.4s4.3 1.4 6.4 2.3c2 .9 3.9 2 5.8 3.2v-21.9q-5.7-2.1-11.7-3c-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 1.9 12.8 6 17.9 4 4.9 10.1 9.1 18.4 12.5q4.8 1.95 9 3.9c2.5 1.1 4.9 2.5 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.3-.9-15.1-2.7-5.1-1.8-9.7-4.5-13.8-8v23.4c4.1 2.2 8.7 3.7 13.4 4.4m157.3-13.7q14.4-15.15 14.4-39.9c0-16.1-4.6-29-13.9-38.8s-21.4-14.7-36.4-14.7c-15.9 0-28.6 5.1-38.2 15.4s-14.4 23.7-14.4 40.3c0 15.7 4.7 28.5 14.2 38.3s21.7 14.7 36.8 14.7q23.1-.15 37.5-15.3m-17.5-64c4.6 6 6.9 14.5 7 25.4 0 10.4-2.4 18.6-7.2 24.5s-11.3 8.8-19.4 8.8c-7.5.2-14.6-3.2-19.2-9.1-4.9-6.1-7.3-14.3-7.3-24.7 0-10.2 2.4-18.5 7.3-24.7s11.5-9.3 19.8-9.3c8 0 14.4 3.1 19 9.1M480 341.1h-22.3v58.1q-.15 7.2.6 14.4h-.3c-1.6-2.8-3.4-5.7-5.3-8.6L411 341.1h-25.5v105h22.3v-57.7c0-7.6-.2-13.3-.6-17h.3c1.6 3 3.4 5.9 5.3 8.7l43.3 66H480zM96 313.9c-39-11.2-63.7-27.5-64-45.6v-.3l.1 86.8v.3c.3 18.1 24.9 34.3 63.9 45.6z" />',viewBox:"0 0 512 512"},wh={name:"data-sql",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zM209.1 448.6c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.5-2.6-5.4-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.6-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.3-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.3-.8 2.1 0 4.1.2 6.2.4 2.2.3 4.4.8 6.6 1.4s4.3 1.4 6.4 2.3c2 .9 3.9 2 5.8 3.2v-21.9q-5.7-2.1-11.7-3c-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 1.9 12.8 6 17.9 4 4.9 10.1 9.1 18.4 12.5q4.8 1.95 9 3.9c2.5 1.1 4.9 2.4 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.3-.9-15.1-2.7-5.1-1.8-9.7-4.5-13.8-8v23.4c4 2.3 8.6 3.8 13.4 4.5m172.8-21.2c5.7-9 8.5-19.8 8.5-32.4 0-16.1-4.6-29-13.9-38.8s-21.3-14.7-36.2-14.8c-16 0-28.8 5.1-38.5 15.4s-14.4 23.7-14.4 40.3c-.1 7 1.1 13.9 3.4 20.4 2.1 6.1 5.4 11.7 9.6 16.6 4.2 4.7 9.3 8.6 15 11.2 6.1 2.8 12.8 4.4 19.5 4.5 3.8 4.2 7.4 8.1 10.9 11.8q4.95 5.25 10.8 9.6c3.6 2.6 7.4 4.8 11.6 6.4s8.7 2.4 13.2 2.3c3.4 0 6.7-.2 10.1-.7 2.2-.3 4.3-.8 6.5-1.3V458c-.8.3-1.6.6-2.4.8l-2.7.6c-.9.2-1.9.3-2.8.4s-1.8.1-2.6.1c-2.7 0-5.4-.2-8-.6-2.5-.4-4.9-1.1-7.1-2.1q-3.75-1.65-6.9-4.2c-2.6-2-5-4.3-7.3-6.7 9.9-3.4 18.2-10.1 23.7-18.9m-23.3-56.3c4.6 6 6.9 14.5 6.9 25.3 0 10.4-2.4 18.6-7.2 24.5-4.8 6-11.3 8.9-19.4 8.8-7.5.2-14.7-3.2-19.3-9.1-4.8-6.1-7.3-14.3-7.3-24.7s2.4-18.6 7.3-24.7c4.9-6.2 11.5-9.4 19.8-9.4 8.3.1 14.6 3.1 19.2 9.3m121.4 58h-38.9v-85.8h-23.7v105H480zm-320-103C85.7 317.7 32.4 295 32 268.3v-.3l.1 86.8v.3c.4 26.7 53.7 49.3 127.9 57.8z" />',viewBox:"0 0 512 512"},_h={name:"data-web",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zm-151.1 23-14.5 70.1q-1.2 5.85-1.5 11.7h-.3c-.3-3.8-.9-7.6-1.7-11.3L229.6 343h-25.3l-19.1 69.6c-1.1 4-1.9 8.1-2.1 12.3h-.4c-.2-4-.6-8-1.4-12l-14.8-70h-25.8l27.6 105h27.3l17.9-67.4c1-3.9 1.6-7.8 1.9-11.8h.3c.1 4 .7 7.9 1.7 11.8l17.4 67.4H261l27.8-105h-23.9zm109.8 85.8h-39.3v-24h34.4v-19.2h-34.4v-23.4h36.9V343h-60.6v105h63zm66.8 19.2c11.9 0 21.3-2.8 28.2-8.5 6.9-5.6 10.3-13.3 10.3-22.9.1-6.3-2.3-12.3-6.7-16.8-4.5-4.6-10.4-7.3-17.9-8.3v-.3c5.6-1.5 10.8-4.5 14.7-8.9 3.8-4 5.8-9.4 5.8-14.9 0-7.8-3.2-13.9-9.5-18.2s-15.3-6.5-27-6.5h-38.3v105h40.4zm-7.9-87.6c11.5 0 17.3 3.9 17.3 11.6.2 3.7-1.4 7.3-4.2 9.8-2.8 2.4-6.6 3.6-11.5 3.5h-10.4v-24.9zm4.1 42.5c5.5 0 9.7 1.2 12.8 3.6 3 2.4 4.7 6 4.6 9.9.2 4-1.5 7.9-4.6 10.4s-7.4 3.8-12.9 3.8h-12.8v-27.7zM96 313.9c-39-11.2-63.7-27.5-64-45.6v-.3l.1 86.8v.3c.3 18.1 24.9 34.3 63.9 45.6z" />',viewBox:"0 0 512 512"},Ch={name:"group-collection",content:'<path d="M448 352H160v-32h288zm0 32H160v32h288zm0-288H160v32h288zm0 64H160v32h288zM64 192V96h64l32-32H32v160h128l-32-32zm0 224v-96h64l32-32H32v160h128l-32-32z" />',viewBox:"0 0 512 512"},Oh={name:"parameter-boolean",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zM207 212h-39v114h-32V212H96v-26h111zm96.8-37-68.1 163h-27.5l67.9-163zM416 212h-49v34h45v26h-45v54h-32V186h81z" />',viewBox:"0 0 512 512"},Sh={name:"parameter-date-time",content:'<path d="M416 202.8V128c0-17.7-14.3-32-32-32H64c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h304c61.9 0 112-50.1 112.1-111.9 0-43.3-25-82.8-64.1-101.3M64.1 384 64 192h304c-61.9 0-112 50.2-112 112 0 30.1 12.1 58.9 33.6 80zm303.9 0c-44.2 0-80-35.8-80-80s35.8-80 80-80 80 35.8 80 80-35.8 80-80 80m48-96v32h-64v-64h32v32zm-224 32H96v-96h96z" />',viewBox:"0 0 512 512"},zh={name:"parameter-float",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-276-55.6c-33.3 0-50-23.4-50-70.2q0-36.45 13.5-55.5c13.5-19.05 22.1-19.1 39.2-19.1 32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5s-21.6 18.9-38.2 18.9m1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.1-16.3 19.1-48.8s-6.2-48.9-18.7-48.9m83.8 121.3c-4.7.1-9.2-1.5-12.7-4.7-3.3-2.9-5.2-7.1-5.1-11.5-.1-4.4 1.8-8.7 5.2-11.5 3.6-3 8.3-4.6 13-4.5q7.95 0 12.9 4.5c6.4 5.9 6.7 15.9.8 22.2l-.9.9c-3.3 3.1-7.8 4.6-13.2 4.6M390 326h-88v-24h29v-87.2l-30 6.4v-25.5l60-12.1V302h29z" />',viewBox:"0 0 512 512"},Mh={name:"parameter-integer",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-262.6-58H96.8v-24.4h29v-87.2L96 220.8v-25l60.6-12.2v118h28.8zm59.2-26.2v.6h56.8V326h-92.2v-24l40.1-38.4c8.1-7.7 13.7-14.2 17-19.5 3.2-4.9 4.9-10.7 4.9-16.6 0-12.9-6.9-19.3-20.8-19.3-12 0-23.6 4.8-34.6 14.4v-27.2c12.2-7.9 25.9-11.8 41.2-11.8 14.3 0 25.5 3.6 33.5 10.8s12.1 16.9 12.1 29.1q0 24.45-29.4 50.7zm82.1 21.6v-26.9c9.4 6.8 20.3 10.3 32.8 10.3 7.9 0 14-1.7 18.4-5.1s6.6-8.1 6.6-14.2c0-6.2-2.7-11.1-8.1-14.5s-12.9-5.1-22.4-5.1h-12.6v-23.6H353c18.2 0 27.4-6.1 27.4-18.2q0-17.1-21-17.1c-9.4 0-18.5 3-27.3 9.1V191c9.8-4.9 21.3-7.4 34.4-7.4 14.3 0 25.5 3.2 33.5 9.7 7.8 6 12.2 15.3 12 25.1 0 18.3-9.3 29.8-27.8 34.4v.5q14.85 1.8 23.4 10.8c5.7 5.9 8.8 13.8 8.6 21.9 0 13.1-4.8 23.4-14.4 31.1s-22.8 11.4-39.6 11.4c-14.7-.1-26.4-2.4-35.5-7.1" />',viewBox:"0 0 512 512"},Ph={name:"parameter-string",content:'<path d="M127.3 328.9c13.2 0 23.1-5.6 29.8-16.8h.4v14.4h29.2v-59.8c0-28.5-14.3-42.7-42.8-42.7-6.9.1-13.7.9-20.4 2.5-7.4 1.7-13.3 3.6-17.6 5.9v23.2c10.8-7.1 22.1-10.6 34-10.6s17.8 5.5 17.8 16.4l-27.2 3.6Q96 269.5 96 298.6c0 9.2 2.8 16.5 8.3 22s13.2 8.3 23 8.3m12.2-47.5 18.2-2.3v6.7c0 6.1-1.8 11.2-5.5 15.2-3.6 4-8.8 6.2-14.2 6-4.2 0-7.5-1.1-9.9-3.4-2.4-2.2-3.8-5.4-3.7-8.6 0-7.7 5-12.3 15.1-13.6m209 33.5c-9.5-9.3-14.3-21.3-14.3-36q0-25.5 15.3-40.2c10.2-9.8 23.8-14.7 40.9-14.7 11.8 0 20.3 1.6 25.6 4.7v26.2c-6.2-4.7-13.8-7.3-21.6-7.2q-13.35 0-21 7.8c-5.2 5.2-7.8 12.3-7.8 21.4 0 8.9 2.5 15.8 7.4 20.9 4.9 5 11.8 7.6 20.4 7.6 7.7 0 15.2-2.4 22.6-7.3v24.8c-7 4-17 6-30.2 6-15.3 0-27.8-4.7-37.3-14m-104 .5h.4q9.45 14.1 27.9 14.1c13.6 0 24.5-5 32.6-15.1s12.2-23.5 12.2-40.1q0-22.95-10.5-36.3c-10.5-13.35-16.9-13.3-29.8-13.3-14.1 0-24.9 5.8-32.5 17.5h-.4V179h-30.9v148h30.9zm-.5-42.2c0-7.4 2-13.4 6.1-18.1 3.8-4.5 9.5-7.1 15.4-6.9 6.6 0 11.6 2.3 15.2 7 3.5 4.7 5.3 11.1 5.3 19.4 0 10-1.9 17.7-5.8 23.1s-9.3 8.2-16.4 8.2c-5.5.1-10.7-2.2-14.3-6.4-3.7-4.2-5.6-9.6-5.6-16zM448 96H64c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32m0 288H64V128h384z" />',viewBox:"0 0 512 512"},Vh={name:"toc-section-level",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zm-32-288H192v-32h192zm0 64h-96v-32h96zm0 64h-96v-32h96zm0 64h-96v-32h96zm-192-32v-96l64 48z" />',viewBox:"0 0 512 512"},Ah={name:"inherited",content:'<path d="M448 320v128H320V320h30.4L256 244.5 161.6 320H192v128H64V320h46.4l120-96H176V64h160v160h-54.4l120 96z" />',viewBox:"0 0 512 512"},jh={name:"file-video",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zM304 304.8v-.8c0-8.8-7.2-16-16-16h-10.1c24.2-3.1 42.8-24.3 41.8-49.6-1-24.8-21.2-45-46-46-27.4-1.1-49.9 20.8-49.9 48 0 24.4 18.2 44.6 41.8 47.6h-70.4c17.2-1.7 30.3-16.9 28.7-34.8-1.4-15.5-14.1-27.9-29.6-28.9-18.7-1.3-34.2 13.5-34.2 31.9 0 16.6 12.7 30.2 28.8 31.8H176c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h111.7c8.4 0 15.6-6.3 16.3-14.6.2-3.1-.3-6.1-1.7-8.7l1.8 1.1 44.9 27.1c1.3.8 2.7 1.2 4.1 1.2 1.3 0 2.7-.3 3.9-1 2.5-1.4 4.1-4.1 4.1-7v-95.8c0-2.9-1.5-5.5-4-6.9s-5.5-1.5-8 0zM193.5 272c-.5.1-1 .1-1.5.1s-1 0-1.5-.1h-.2c-8.6-.8-15.1-8.5-14.3-17.2.6-7.9 7.2-14.2 15.1-14.6 9.2-.5 16.8 6.9 16.8 16 .1 8.1-6.1 15-14.4 15.8m82.3-.3c-.3 0-.6.1-.9.1-1 .1-2.1.2-3.1.2s-2.1 0-3.1-.2c-.3 0-.6-.1-.9-.1-15.9-2-27.9-15.7-27.9-31.7 0-17.6 14.4-32 32-32s32 14.4 32 32c-.1 16.1-12.1 29.7-28.1 31.7" />',viewBox:"0 0 512 512"},kh={name:"file-audio",content:'<path d="M218 353.8c-5.5-2.9-12.1-4.5-19-4.5-21 0-38 14.8-38 33.2s17 33.2 38 33.2 38-14.8 38-33.2V256.6l96-22.6v87.8c-5.5-2.9-12.1-4.5-19-4.5-21 0-38 14.8-38 33.2s17 33.2 38 33.2 38-14.8 38-33.2V192.2l-134 31.5zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Hh={name:"file-image",content:'<path d="M298.7 385.2S272.2 288 213.1 288s-85 128-85 128h256s-11.9-78.7-42.7-78.7-42.7 47.9-42.7 47.9M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zM288 256c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32" />',viewBox:"0 0 512 512"},Ih={name:"file-presentation",content:'<path d="M127.5 214.4c0 9.9 6.1 18.2 14.5 21.2v113.1c0 12.4 9.6 22.4 21.3 22.4H246v11.8l-13.6 14.6c-1.9 2-3 4.8-3 8 0 6.3 4.7 11.3 10.5 11.3 2.8 0 5.5-1.3 7.4-3.3.1-.1.2-.3.4-.4l8.9-9.6 8.9 9.6c.1.1.2.3.4.4 1.9 2 4.5 3.3 7.4 3.3 5.8 0 10.5-5 10.5-11.3 0-3.1-1.2-6-3-8L267 382.8V371h78.8c11.1 0 20.1-9.3 20.9-21h1.3V235.9c9-2.6 15.7-11.3 15.7-21.6 0-12.4-9.5-22.4-21.3-22.4H148.8c-11.8.1-21.3 10.1-21.3 22.5M299 237h43v89h-43zm-64 26h43v63h-43zm-64 18h43v45h-43zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Bh={name:"file-data",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zM128 229.3v149.4c0 20.6 19.1 37.3 42.7 37.3h170.6c23.6 0 42.7-16.7 42.7-37.3V229.3c0-20.6-19.1-37.3-42.7-37.3H170.7c-23.6 0-42.7 16.7-42.7 37.3M247 379h-76v-47h76zm18-112h76v47h-76zm0 65h76v47h-76zm-18-19h-76v-47h76z" />',viewBox:"0 0 512 512"},Lh={name:"file-disc-image",content:'<path d="M256.1 322.7c3.7 0 7.2-1.1 10.1-3s5.2-4.5 6.7-7.6c1.2-2.5 1.9-5.2 1.9-8.1 0-10.3-8.4-18.7-18.7-18.7-2.8 0-5.4.6-7.7 1.7-3.4 1.6-6.3 4.1-8.3 7.3-1.7 2.8-2.7 6.1-2.7 9.7 0 10.4 8.3 18.7 18.7 18.7m-52.5-117.8c-19.1 10.1-34.9 25.5-45.4 44.4-9 16.1-14.1 34.7-14.1 54.4 0 61.7 50 111.7 111.7 111.7 20 0 38.8-5.3 55.1-14.5 18.6-10.6 33.9-26.4 43.9-45.4 8.1-15.5 12.7-33.1 12.7-51.8 0-61.7-50-111.7-111.7-111.7-18.9 0-36.7 4.7-52.2 12.9m89.8 99.2c0 6.1-1.4 11.8-4 16.9l48.7 25.8c-8.3 15.8-20.9 28.9-36.3 37.7l-26.6-48.3c-5.6 3.3-12.1 5.3-19.1 5.3-20.6 0-37.4-16.7-37.4-37.4 0-6.8 1.8-13.2 5-18.7l-49.2-27.1c8.8-15.7 22-28.6 38-37l26.8 49.3c5-2.5 10.7-3.9 16.7-3.9 20.7 0 37.4 16.7 37.4 37.4M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Th={name:"file-programming",content:'<path d="m236 256-52.6-.2-48.6 48.6.1.1c-4.1 3.9-6.7 9.4-6.7 15.5 0 5.8 2.3 11 6 14.8l49.1 49.1 46.8-.2-59.7-59.7c.2-.9.3-1.8.3-2.8zm105.2 65.5c.1.9.2 1.9.3 2.8L281.9 384l46.8.2 49.1-49.1c3.7-3.8 6-9.1 6-14.8 0-6.1-2.6-11.6-6.7-15.5l.1-.1-48.6-48.7-52.6.2zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Eh={name:"parameters-byte-array",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-306.2-55.6c-33.3 0-50-23.4-50-70.2q0-36.45 13.5-55.5c13.5-19.05 22.1-19.1 39.2-19.1 32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5s-21.6 18.9-38.2 18.9m1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.1-16.3 19.1-48.8s-6.2-48.9-18.7-48.9m113.6 121.3c-33.3 0-50-23.4-50-70.2q0-36.45 13.5-55.5c13.5-19.05 22.1-19.1 39.2-19.1 32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5-8.8 12.6-21.6 18.9-38.2 18.9m1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.2-16.3 19.2-48.8s-6.3-48.8-18.8-48.9M420 326h-88v-24h29v-87.2l-30 6.4v-25.4l61-12.3V302h28z" />',viewBox:"0 0 512 512"},Dh={name:"parameters-unknown",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-64-64h-64v-32h64zm-96 0h-64v-32h64zm-96 0h-64v-32h64z" />',viewBox:"0 0 512 512"},Nh={name:"file-error",content:'<path d="M160 320h32V160h-32zm16 32c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Rh={name:"files-error",content:'<path d="M64 64h224l-32-32H64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h64v-32H64zm208 320c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16M384 96H192c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V192zm64 352H192V128h160v96h96zm-192-96h32V192h-32z" />',viewBox:"0 0 512 512"},Fh={name:"data-rest",content:'<path d="M32 268v.33zm0 .33.12 86.48v.32c.29 18.1 24.9 34.34 63.87 45.56l.01-86.77c-38.99-11.22-63.7-27.48-64-45.59m192.01-113.1c105.67 0 191.4-27.41 191.93-61.29v-.33C415.94 59.59 330 32 224 32S32.06 59.59 32.07 93.61v.33c.53 33.88 86.27 61.29 191.94 61.29M32 140.32s0 .01 0 0V140zm384 86.81v-.32l-.12-86.81v.32c-.53 33.88-86.26 61.29-191.93 61.29-105.66 0-191.4-27.41-191.95-61.28l.12 86.48v.32c.53 33.88 86.26 61.29 191.93 61.29S415.46 261 416 227.13M327 320h89l-.07-52v.32c-.34 21.73-35.73 40.8-88.93 51.68m-130.74 96.93 19.85 31.05h-27.17l-16.33-27.03c-1.22-2.05-2.39-3.88-3.52-5.49-1.12-1.61-2.26-2.99-3.41-4.14s-2.34-2.03-3.59-2.64-2.6-.92-4.06-.92h-6.37v40.21H128V342.95h37.5c25.49 0 38.23 9.52 38.23 28.56q0 5.49-1.68 10.14c-1.12 3.1-2.71 5.9-4.76 8.39s-4.53 4.64-7.43 6.45c-2.91 1.81-6.14 3.22-9.7 4.25v.29c1.56.49 3.08 1.28 4.54 2.38s2.88 2.38 4.25 3.85c1.37 1.46 2.67 3.04 3.92 4.72 1.23 1.69 2.37 3.34 3.39 4.95m-17.43-42.48c0-9.18-5.49-13.77-16.48-13.77h-10.69v29.22h10.25c5.08 0 9.16-1.46 12.23-4.39 3.13-2.98 4.69-6.67 4.69-11.06m70.75 30.32h34.35v-19.19h-34.35v-23.36h36.91v-19.26h-60.57v105.03h62.99V428.8h-39.33zm115.58-6.01c-2.39-2.49-5.26-4.72-8.61-6.7-3.34-1.98-7.12-3.85-11.32-5.6-3.08-1.27-5.84-2.5-8.28-3.7s-4.52-2.42-6.23-3.66q-2.565-1.86-3.96-3.96c-.93-1.39-1.39-2.97-1.39-4.72 0-1.61.41-3.06 1.25-4.36.83-1.29 2-2.4 3.52-3.33 1.51-.93 3.37-1.65 5.57-2.16s4.64-.77 7.32-.77c1.95 0 4.02.15 6.19.44s4.36.75 6.56 1.36 4.33 1.38 6.41 2.31c2.07.93 3.99 2 5.75 3.22v-21.9c-3.56-1.37-7.46-2.38-11.68-3.04s-9.07-.99-14.54-.99c-5.57 0-10.84.6-15.82 1.79s-9.36 3.06-13.15 5.6c-3.78 2.54-6.77 5.77-8.97 9.7q-3.3 5.895-3.3 14.1c0 6.98 2.01 12.94 6.04 17.87s10.14 9.11 18.35 12.52c3.22 1.32 6.23 2.61 9.01 3.88s5.19 2.59 7.21 3.96q3.045 2.055 4.8 4.47c1.755 2.415 1.76 3.44 1.76 5.49 0 1.51-.37 2.92-1.1 4.21s-1.84 2.42-3.33 3.37-3.34 1.7-5.57 2.23q-3.33.81-7.8.81-7.62 0-15.09-2.67c-7.47-2.67-9.59-4.46-13.84-8.02v23.44c3.81 1.95 8.31 3.42 13.51 4.39s10.68 1.46 16.44 1.46c5.61 0 10.95-.54 16-1.61s9.49-2.84 13.29-5.31 6.82-5.69 9.05-9.67q3.33-5.97 3.33-14.76c0-4.25-.63-7.97-1.9-11.17a26.1 26.1 0 0 0-5.48-8.52m14.94-55.81v19.26h29.81v85.77h23.73v-85.77h29.96v-19.26z" />',viewBox:"0 0 512 512"},Uh={name:"file-typescript",content:'<path d="M64 128h192v48h-72v208h-48V176H64zm316.6 107.6c-35-12.6-50.1-21.6-50.1-40.6 0-14.6 12.9-29.9 43.3-29.9 24.6 0 42.9 7.1 52.3 11.8l11.5-36.6c-13.6-6.5-34.4-12.3-62.8-12.3-56.8 0-92.7 30.6-92.7 71.3 0 35.6 27.6 57.6 70.9 72.1 33.1 11.4 46.4 22.4 46.4 41.2 0 20.3-17.1 33.9-47.6 33.9-24.4 0-47.9-7.4-63.3-15.8l-10.6 37.6c14.3 8.3 43.1 15.8 70.8 15.8 67.6 0 99.3-34.6 99.3-74.6 0-35.8-21.9-57.4-67.4-73.9" />',viewBox:"0 0 512 512"},Kh={name:"table-position-start",content:'<path d="M480 320v32H32v-32zM32 416h448v-32H32zm192-160H32V32h224v224zm-64-128h64V64h-64zm-32 32H64v64h64zm0-96H64v64h64zm32 160h64v-64h-64zM32 480h320v-32H32z" />',viewBox:"0 0 512 512"},qh={name:"table-position-center",content:'<path d="M352 256V32H128v224zM256 64h64v64h-64zm-32 160h-64v-64h64zm0-96h-64V64h64zm32 32h64v64h-64zM32 448h320v32H32zm448-128v32H32v-32zM32 384h448v32H32z" />',viewBox:"0 0 512 512"},$h={name:"table-position-end",content:'<path d="M32 384h448v32H32zm0 96h320v-32H32zM480 32v224H256V32zM352 160h-64v64h64zm0-96h-64v64h64zm96 96h-64v64h64zm0-96h-64v64h64zM32 352h448v-32H32z" />',viewBox:"0 0 512 512"},Xh={name:"list-roman-upper",content:'<path d="M32 32h32v128H32zm0 288h32V192H32zm64 0h32V192H96zM32 480h32V352H32zm64 0h32V352H96zm64 0h32V352h-32zM128 96h352v32H128zm64 160h288v32H192zm64 160h224v32H256zM96 152c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8" />',viewBox:"0 0 512 512"},Gh={name:"list-roman-lower",content:'<path d="M32 64h16v96H32zm0 256h16v-96H32zm32 0h16v-96H64zM32 480h16v-96H32zm32 0h16v-96H64zm32 0h16v-96H96zM48 40c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 200c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 360c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M128 96h352v32H128zm32 160h320v32H160zm32 160h288v32H192z" />',viewBox:"0 0 512 512"},Yh={name:"import",content:'<path d="M96 480c-17.7 0-32-14.3-32-31.9V192c0-17.7 14.3-32 32-32h96.3v30.9H96.4V448h319.1V190.9h-95.9V160H416c17.7 0 32 14.3 32 31.9V448c0 17.7-14.3 32-31.9 32zm159.5-162 96.5-94h-64.5V32h-64v192H159z" />',viewBox:"0 0 512 512"},Wh={name:"export",content:'<path d="M96 480c-4.3 0-8.5-.8-12.5-2.5-3.8-1.6-7.3-3.9-10.2-6.9-2.9-2.9-5.3-6.4-6.9-10.2-1.7-3.9-2.5-8.2-2.5-12.5V192c0-4.3.8-8.5 2.5-12.5 1.6-3.8 3.9-7.3 6.9-10.2 2.9-2.9 6.4-5.3 10.2-6.9 3.9-1.7 8.2-2.5 12.5-2.5h96.3v31.9H96.4v256.3h319.1V191.9h-95.9V160H416c17.7 0 32 14.3 32 31.9V448c0 17.7-14.3 32-31.9 32zm192-160V126h64.5L256 32l-96.5 94H224v194z" />',viewBox:"0 0 512 512"},Zh={name:"graph",content:'<path d="M64 448h416v32H32V32h32zm128-192-96 96v64h384V160L288 320zM416 64l14.2 14.2L288 192l-96-64-96 96v64l96-96 96 64 174.5-145.4L480 128V64z" />',viewBox:"0 0 512 512"},Qh={name:"chart-column-clustered",content:'<path d="M320 96v352h-32V288H128v160H64V32H32v448h448V96zm-64 352h-96V320h96z" />',viewBox:"0 0 512 512"},Jh={name:"chart-column-stacked",content:'<path d="M320 192v256h-32V96H128v352H64V32H32v448h448V192zM160 448V256h96v192zm192 0v-96h96v96z" />',viewBox:"0 0 512 512"},tu={name:"chart-column-stacked100",content:'<path d="M320 32v416h-32V32H128v416H64V32H32v448h448V32zM160 448V192h96v256zm192 0V288h96v160z" />',viewBox:"0 0 512 512"},eu={name:"chart-column-range",content:'<path d="M480 448v32H32V32h32v416zM256 128h-96v224h96zm32-32v288H128V96zm192-64H320v224h160z" />',viewBox:"0 0 512 512"},ou={name:"chart-bar-clustered",content:'<path d="M64 448v-64h160V224H64v-32h352V32H32v448h448v-32zm128-192v96H64v-96z" />',viewBox:"0 0 512 512"},ru={name:"chart-bar-stacked",content:'<path d="M64 448v-64h352V224H64v-32h256V32H32v448h448v-32zm0-384h96v96H64zm192 192v96H64v-96z" />',viewBox:"0 0 512 512"},nu={name:"chart-bar-stacked100",content:'<path d="M480 192V32H32v448h448v-32H64v-64h416V224H64v-32zm-160 64v96H64v-96zM64 64h160v96H64z" />',viewBox:"0 0 512 512"},iu={name:"chart-bar-range",content:'<path d="M480 448v32H32V32h32v416zm-96-192H160v96h224zm32-32v160H128V224zm64-192H256v160h224z" />',viewBox:"0 0 512 512"},au={name:"chart-area-clustered",content:'<path d="m405.5 200.3-88.2-88.2-91.2 114L192 192l-37.6 45.1L64 146.8V32H32v448h448V96zM320 160l66.7 66.7L320 320l-71.1-71.1zM64 192l69.8 69.8L64 345.6z" />',viewBox:"0 0 512 512"},su={name:"chart-area-stacked",content:'<path d="m320 165.3-128-64-128 128V32H32v448h448V32zm128 7.5L320 352 192 224 64 377.6v-103l134.3-134.3 126.1 63 123.6-103z" />',viewBox:"0 0 512 512"},cu={name:"chart-area-stacked100",content:'<path d="M32 32v448h448V32zm416 108.8L320 320 192 192 64 345.6V64h384z" />',viewBox:"0 0 512 512"},lu={name:"chart-area-range",content:'<path d="M64 416v32h416v32H32V32h32v224l128-128 128 64L480 32v192L320 384l-127-64z" />',viewBox:"0 0 512 512"},hu={name:"chart-line",content:'<path d="M64 448h416v32H32V32h32zm152.4-190.4L96 416v-51.2l97.2-129.6 41.2-33-27.3-34.1L96 224v-38l119.9-58.1 43.5 54.3 109-87.2 55.9 85.7L480 114v47l-38 46.7 38 58.3.5 53.3-58.5-87-82.5 101.3-85.1-106.4zm63-50.4 60.1 75.2 64.3-77.1-42.7-63.5z" />',viewBox:"0 0 512 512"},uu={name:"chart-line-stacked",content:'<path d="M480 448v32H32V32h32v416zM224 292l128 64 128-96v-36l-128 96-128-64-128 96v36zm0-160 128 92 128-60v-36l-128 60-128-92-128 64v36z" />',viewBox:"0 0 512 512"},pu={name:"chart-line-stacked100",content:'<path d="M480 448v32H32V32h32v416zM224 228l128 64 128-96v-36l-128 96-128-64-128 96v36zM480 32H96v32h384z" />',viewBox:"0 0 512 512"},du={name:"chart-line-markers",content:'<path d="M480 448v32H0V32h32v416zm0-96c.1 17.7-14.2 32-31.9 32.1s-32-14.2-32.1-31.9c0-1.3.1-2.7.2-4l-83.7-62.8c-8 3.4-17.1 3.4-25.2 0l-83.7 62.8c2.1 17.5-10.4 33.5-27.9 35.6s-33.5-10.4-35.6-27.9c-.7-6.2.3-12.4 3.1-18l-49-73.6-22.7 39.6c8.9 15.3 3.7 34.9-11.5 43.8s-34.9 3.7-43.8-11.5-3.7-34.9 11.5-43.8c4.9-2.8 10.4-4.3 16-4.4l30.6-53.5-28.4-42.6c-.7 0-1.4.1-2.1.1-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32c0 4.9-1.1 9.8-3.3 14.2l19.5 29.3 52.2-91.3c-8.9-15.3-3.8-34.9 11.5-43.8s34.9-3.8 43.8 11.5c2.5 4.4 4 9.2 4.3 14.3l78.4 39.2c14.7-9.7 34.6-5.7 44.3 9 .3.5.7 1.1 1 1.6h72.6c8.8-15.3 28.4-20.5 43.7-11.7s20.5 28.4 11.7 43.7-28.4 20.5-43.7 11.7c-4.9-2.8-8.9-6.8-11.7-11.7h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-9.3-5.4-15.3-15.1-15.9-25.8l-78.4-39.2c-5.2 3.4-11.3 5.3-17.5 5.3l-60 105.2 57.9 86.9c.7 0 1.4-.1 2.1-.1 4.3 0 8.6.9 12.6 2.6l83.7-62.8c-2.2-17.5 10.3-33.5 27.8-35.7s33.5 10.3 35.7 27.8q.45 3.9 0 7.8l83.7 62.8c16.2-7 35.1.6 42 16.8 1.6 4.1 2.5 8.4 2.5 12.7m-48-192c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16m-128 0c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16M176 96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16m-96 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m0 160c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 32c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},vu={name:"chart-line-stacked-markers",content:'<path d="M480 448v32H0V32h32v416zm0-320c0 17.7-14.3 32-32 32-6.9 0-13.7-2.2-19.2-6.4L352 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.5.3-5 .9-7.4l-81.1-60.8c-11.1 6.3-24.8 5.4-35-2.2L96 160c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32c6.9 0 13.7 2.2 19.2 6.4L160 96c0-17.7 14.3-32 32-32s32 14.3 32 32c0 2.5-.3 5-.9 7.4l81.1 60.8c11.1-6.3 24.8-5.4 35 2.2L416 128c0-17.7 14.3-32 32-32s32 14.3 32 32M80 160c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m16 128c0 17.7-14.3 32-32 32-5.5 0-11-1.4-15.8-4.2l-81.1 60.8c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8c-.6-2.4-.9-4.9-.9-7.4l-76.8-38.4c-10.2 7.6-23.9 8.5-35 2.2L95 376.5c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8 6.6-34.4 23.8-38.5c7.9-1.9 16.1-.7 23.1 3.3l81.1-60.8c-4.1-17.2 6.6-34.4 23.8-38.5s34.4 6.6 38.5 23.8c.6 2.4.9 4.9.9 7.4l76.8 38.4c10.2-7.6 23.9-8.5 35-2.2l81.1-60.8c-4.1-17.2 6.5-34.5 23.7-38.6s34.5 6.5 38.6 23.7c.6 2.5.9 5.1.9 7.6M80 384c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},fu={name:"chart-line-stacked100-markers",content:'<path d="M480 448v32H0V32h32v416zm0-192c0 17.7-14.3 32-32 32-5.5 0-11-1.4-15.8-4.2l-81.1 60.8c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8c-.6-2.4-.9-4.9-.9-7.4l-76.8-38.4c-10.2 7.6-23.9 8.5-35 2.2L95 376.5c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8 6.6-34.4 23.8-38.5c7.9-1.9 16.1-.7 23.1 3.3l81.1-60.8c-4.1-17.2 6.6-34.4 23.8-38.5s34.4 6.6 38.5 23.8c.6 2.4.9 4.9.9 7.4l76.8 38.4c10.2-7.6 23.9-8.5 35-2.2l81.1-60.8c-4.1-17.2 6.5-34.5 23.7-38.6s34.5 6.5 38.6 23.7c.6 2.5.9 5.1.9 7.6M80 384c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m16-192c0 17.7-14.3 32-32 32-11.4 0-22-6.1-27.7-16h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-4.9-2.8-8.9-6.8-11.7-11.7h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-4.9-2.8-8.9-6.8-11.7-11.7H91.7C82.9 95.3 63.3 100.5 48 91.7S27.4 63.3 36.3 48 64.7 27.5 80 36.3c4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 9.9 5.7 16 16.3 16 27.7M80 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},mu={name:"chart-pie",content:'<path d="M473 310.3c.9-2.1 1.4-4.2 1.8-6.3l.1-.5c.5-2.1.9-4.1 1.3-6.2v-.2c.8-4.4 1.5-8.8 1.8-13.3v-.4c.5-2 .7-3.9.9-5.9l.1-1.7c.1-1.6.3-3.1.4-4.7 0-.7.1-1.4.1-2 .1-1.5.2-3.1.2-4.6 0-.6 0-1.3.1-1.9.1-2.2.1-4.3.1-6.5 0-31.8-6.7-63.2-19.8-92.2-1.5-3.3-3.1-6.6-4.7-9.8-4.1-8-8.7-15.8-13.8-23.3-5-7.4-10.5-14.6-16.4-21.3-1.2-1.3-2.4-2.7-3.6-4-2.4-2.7-4.9-5.3-7.4-7.8s-5.1-5-7.8-7.4-5.4-4.7-8.1-7c-4.1-3.4-8.4-6.7-12.8-9.8-20.7-14.8-43.8-25.9-68.3-32.9-5.3-1.5-10.7-2.8-16.2-4-3.6-.7-7.3-1.4-11-2s-7.4-1-11.2-1.3c-5.6-.6-11.3-.9-17.1-1.1-1.9 0-3.9-.1-5.8-.1C132.3 32 32 132.3 32 256s100.3 224 224 224c105 0 193.1-72.2 217-169.7m-81.2 81.5c-74.4 75.6-195.9 76.6-271.5 2.2S43.7 198 118 122.5l2.2-2.2c36-36.2 84.9-56.4 135.8-56.3v192l186.3 46.6c-8.4 33.8-25.9 64.6-50.5 89.2" />',viewBox:"0 0 512 512"},gu={name:"chart-doughnut",content:'<path d="M473 310.3c.9-2.1 1.4-4.2 1.8-6.3l.1-.5c.5-2.1.9-4.1 1.3-6.2v-.3c.8-4.4 1.5-8.8 1.8-13.3v-.4c.5-2 .7-3.9.9-5.9l.1-1.7c.1-1.6.3-3.1.4-4.7 0-.7.1-1.4.1-2 .1-1.5.2-3.1.2-4.6 0-.6 0-1.3.1-1.9.1-2.2.1-4.3.1-6.5 0-31.8-6.7-63.2-19.8-92.2-1.5-3.3-3.1-6.6-4.7-9.8-4.1-8-8.7-15.8-13.8-23.3-5-7.4-10.5-14.6-16.4-21.3-1.2-1.3-2.4-2.7-3.6-4-2.4-2.7-4.9-5.3-7.4-7.8s-5.1-5-7.8-7.4-5.4-4.7-8.1-7c-4.1-3.4-8.4-6.7-12.8-9.8-20.7-14.8-43.8-25.9-68.3-32.9-5.3-1.5-10.7-2.8-16.2-4-3.6-.7-7.3-1.4-11-2s-7.4-1-11.2-1.3c-5.6-.6-11.3-.9-17.1-1.1-1.9 0-3.9-.1-5.8-.1C132.3 32 32 132.3 32 256s100.3 224 224 224c105 0 193.1-72.2 217-169.7M320 256c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64m71.8 135.8c-74.4 75.6-195.9 76.6-271.5 2.2S43.7 198 118 122.4l2.2-2.2c36-36.1 84.9-56.3 135.8-56.2v96c-53 0-96 43-96 96s43 96 96 96c44 0 82.4-30 93.1-72.7l93.2 23.3c-8.4 33.8-25.9 64.6-50.5 89.2m-39.8-133v.8zm0 2.8v.9zm-.4 2.9-.1.7zm-.6 3.2v.2zm-1 5.9v.1zm0 2.8v.2z" />',viewBox:"0 0 512 512"},yu={name:"chart-scatter",content:'<path d="M480 448v32H32V32h32v416zM160 96c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m112 192c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m112-128c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m112 192c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},bu={name:"chart-scatter-smooth-lines-markers",content:'<path d="M480 448v32H32V32h32v416zm0-384c0 17.7-14.3 32-32 32-15.6 0-28.9-11.2-31.5-26.5-9.2-1.3-22-1.8-39-.8C342.5 71 305.1 79.4 275 92c-19.1 7.9-47.9 23-60.7 45.1 12.7 12.3 13 32.6.6 45.3l-1.1 1.1c9.1 13.1 28.9 18.6 61.1 25.1 21 4.2 42.8 8.5 60.2 18.9 12.7 7.6 21.7 17.8 27 30.3 16.8 5.6 25.8 23.7 20.2 40.5-3.2 9.5-10.6 17-20.1 20.2-11.2 29.5-39.2 54.6-81.6 72.2-29.7 12.1-61.2 19.2-93.2 21.1q-6 .3-11.4.3c-9.6.1-19.3-.7-28.8-2.5-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8 34.2-7.7 44.8 6.4c3.2 4.2 5.2 9.1 6 14.3 8.7 1 17.5 1.2 26.2.7 28.3-1.6 56.2-7.9 82.5-18.6 19.7-8.2 49.8-24.3 62-49.6-13-12-13.8-32.2-1.8-45.2.4-.5.8-.9 1.3-1.3-9.1-13.2-28.8-18.7-61.1-25.2-21-4.2-42.8-8.5-60.2-18.9-12.8-7.7-21.9-18-27.2-30.7-16.7-5.9-25.4-24.2-19.5-40.9 3.3-9.4 10.9-16.7 20.4-19.8 5-11 12-21 20.6-29.5 14.6-14.5 34.7-27.2 59.8-37.6C296 48.6 337 39.2 375.4 36.8c22.9-1.5 40-.4 52.8 2.1 13.9-11 34-8.6 44.9 5.3 4.5 5.6 6.9 12.6 6.9 19.8m-272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m-64 224c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m192-96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16M464 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},xu={name:"chart-scatter-smooth-lines",content:'<path d="M480 448v32H32V32h32v416zm-144-87.8c21.1-19.9 31.8-44.5 31.8-73.1 0-27.3-11-47.6-32.6-60.6-17.3-10.3-38.8-14.5-59.6-18.6-46.2-9-66.5-16.3-66.8-47.9-.4-41.2 71.8-65.5 114.8-76.4C385.4 68.1 448.4 64 449 64l-2-32c-2.7.2-66.2 4.3-130.8 20.5-38.7 9.7-69.8 21.8-92.4 36-31.4 19.8-47.3 43.9-47 71.7.2 27.2 11.3 47.6 32.9 60.5 17.3 10.3 38.9 14.5 59.7 18.6 19 3.7 36.9 7.2 49.3 14.6 11.9 7.1 17 17.1 17 33.2 0 19.7-7.1 36-21.7 49.7-24.1 22.8-68.9 38.2-129.3 44.6-29.2 3-58.5 3.9-87.8 2.6l-2 32c1.7.1 12.1.7 28 .7 51.4 0 159.8-6.4 213.1-56.5" />',viewBox:"0 0 512 512"},wu={name:"chart-scatter-straight-lines-markers",content:'<path d="M480 448v32H32V32h32v416zm0-384c0 17.7-14.3 32-32 32-7.4 0-14.6-2.6-20.3-7.3L224 165.1l116.4 93.1c16.5-6.4 35 1.7 41.4 18.2s-1.7 35-18.2 41.4c-10.3 4-22 2.4-30.8-4.2l-173.1 74.2c-2.1 17.5-18 30.1-35.6 28s-30.1-18-28-35.6c2.1-17.5 18-30.1 35.6-28 5.6.7 10.9 2.8 15.4 6.2l173.1-74.2c0-.4.1-.7.1-1l-116.7-93.4c-16.5 6.4-35-1.7-41.4-18.2s1.7-35 18.2-41.4c10.8-4.2 23-2.3 32 5.1l204.1-76.5c2.9-17.4 19.4-29.2 36.8-26.3C468.7 35.1 480 48.4 480 64m-272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m-64 224c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m192-96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16M464 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},_u={name:"chart-scatter-straight-lines",content:'<path d="M480 448v32H32V32h32v416zm-98.5-156.9-158.8-127L448 64V32L161.3 156l161.2 128.9L128 384v32z" />',viewBox:"0 0 512 512"},Cu={name:"chart-bubble",content:'<path d="M480 448v32H32V32h32v416zM192 256c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64m0-32c53 0 96 43 96 96s-43 96-96 96-96-43-96-96 43-96 96-96m224 96c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m0-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64M368 96c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80M176 64c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},Ou={name:"chart-candlestick",content:'<path d="M480 448v32H32V32h32v416zm-192-96h-64v64h-32v-64h-64V96h64V32h32v64h64zm-32-224h-96v192h96zm224 64h-64V64h-32v128h-64v128h64v64h32v-64h64z" />',viewBox:"0 0 512 512"},Su={name:"chart-ohlc",content:'<path d="M480 448v32H32V32h32v416zM224 320V96h-32v32h-64v32h64v256h32v-64h64v-32zM416 96V32h-32v160h-64v32h64v96h32V128h64V96z" />',viewBox:"0 0 512 512"},zu={name:"chart-radar",content:'<path d="M272 32h-32v44L80.7 195.5l-41.1-10-7.6 31.1 42.3 10.3 81 148.5-62.7 86.3 25.9 18.8 67.2-92.5L344 412.3l49.5 68.2 25.9-18.8-46.8-64.4 40.8-163.1 65.8-15.3-7.3-31.2-74.9 17.4L272 80zm-32 202.2-119-28.9L240 116zm32 0v-109l88.4 88.4zm-95.9 112.5-59.8-109.6 118.5 28.8zm172 17.3-71-97.7 101.3-23.6zm-30.6 12-110.6-17 49.1-67.6z" />',viewBox:"0 0 512 512"},Mu={name:"chart-radar-markers",content:'<path d="m472 187.7-51.2 11.9c-9.4-8-22.5-9.9-33.8-4.8L288.1 96c0-11.5-6.2-22.1-16.1-27.8V32h-32v36.4c-7.1 4.1-12.3 10.8-14.6 18.6L96.1 184c-8.6 0-16.7 3.4-22.8 9.5l-32.8-8-7.5 31.1 32.3 7.8c2.7 9.9 10 17.8 19.6 21.5l61 111.8c-3 8.9-2 18.7 2.9 26.7l-56.1 77.3 25.9 18.8L177 400c8.5-.2 16.5-3.8 22.3-10l122 18.8c3.9 13.8 16.5 23.2 30.8 23.2 1.9 0 3.9-.2 5.8-.5l35.6 49 25.9-18.8-37.1-51.1c3.7-10.4 1.7-22-5.2-30.6l31.4-125.2c11.8-3.2 20.8-12.9 23.1-24.9l47.7-11.1zm-111.4 25.9L272 234.2V125.1zM256 80c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m-21.1 39.9c1.6 1.4 3.3 2.6 5.1 3.7V234l-113.3-27.6c-.4-1.4-1-2.8-1.6-4.1zM96 232c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m80 152c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m7.2-47.2c-2.4-.5-4.8-.8-7.2-.8-1.8 0-3.7.2-5.5.5l-52.9-96.9c.7-.6 1.3-1.2 1.9-1.9l115.3 28zm23.6 22 49.1-67.6 61.5 84.6zM352 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m-3.9-52.3L277 265.9l97.4-22.6c.9 1.2 1.9 2.4 3 3.5zM400 240c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16" />',viewBox:"0 0 512 512"},Pu={name:"chart-radar-filled",content:'<path d="m354.4 372.1 65.1 89.6-25.9 18.8-75-103.2-109.2-21.8-90.8 125-25.9-18.8 90-123.8-67.3-101L32 216.6l7.5-31.1 65.8 16L240 107.2V32h32v80l99.2 99.2L472 187.7l7.3 31.2-98.8 23z" />',viewBox:"0 0 512 512"},Vu={name:"chart-rose",content:'<path d="M226 251.4 44.3 329.3c-23.8-68.9-12.6-145.1 30-204.3zm-82.1-109.5L240 222V96.8c-36.2 3.6-70.1 19.6-96.1 45.1m231.5 160.2L279 278l27.3 95.7c31.8-13.6 56.7-39.4 69.1-71.6M96 353.4c37.3 69.1 115 106.1 192.2 91.4L244 290zM272 32v211.4l204.6 51.1c2.3-12.9 3.4-26 3.4-39.1C480 137.1 388.2 40.2 272 32" />',viewBox:"0 0 512 512"},Au={name:"chart-choropleth",content:'<path d="M448 64v384H64V64zm32-32H32v448h448zm-96 256v13.3l-64 64v37.5l13.3 13.3H416V264.6zm-50.7-160 64 64-32 32 18.8 23.4 32-21.3V96H288v18.8l13.3 13.3h32zM224 192l32 32-23.7 23.7L352 276v-20l-32-32 32-32-32-32h-32l-32-32V96h-32l-64 64 32 32zm0 86-32 10-32 32 32 32v32l-32 32h128v-64l50.4-50.4zm-29.4-37.8 16.2-16.2h-32l-64-64 64-64H96v167.5zM114.8 320l37.6-37.6L96 296.5V416h32v-13.3l32-32v-5.5z" />',viewBox:"0 0 512 512"}},8287:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.BaseChartVue2=e.BaseChart=void 0;var a,s=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),c=s.h,l=s.version&&"3"===s.version[0],h=o(5725),u=o(8506),p=o(9680),d=o(5320),v=o(5501),f=o(4740),m=o(349),g=(a=o(3377))&&a.__esModule?a:{default:a},y=o(9270),b=o(5320);o(7125);var x=o(6123),w=o(7822),_=o(9680),C=o(169),O={name:"KendoBaseChart",props:{deriveOptionsFromParent:{type:Function,default:void 0},chartConstructor:{type:[Object,Function],default:function(){}},className:String,chartStyle:Object,wrapper:String,getTarget:{type:Function,default:void 0},dataItems:{type:Array,default:function(){}},dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:function(){}},zoomable:{type:[Boolean,Object],default:function(){}},seriesColors:{type:Array,default:function(){}},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:function(){}},panes:{type:Array,default:function(){}},seriesDefaults:{type:Object,default:function(){}},axisDefaults:{type:Object,default:function(){}},allListeners:{type:Object,default:void 0}},inject:{kendoIntlService:{default:null}},provide:function(){return{optionsState:this.optionsState,dispatchOptions:this.dispatchOptions,observersState:this.observersState,dispatchObservers:this.dispatchObservers,childrenObserver:this.childrenObserver,chartRefresh:this.refresh}},created:function(){this.chartInstance=null,this.element=null,this.suppressTransitions=!1,(0,_.validatePackage)(C.packageMetadata),this.showLicenseWatermark=(0,_.shouldShowValidationUI)(C.packageMetadata),this.themeStore=(0,g.default)(y.themeReducer),this.chartObserver=new u.InstanceObserver(this,{render:"onRender",legendItemClick:"onLegendItemClick"})},data:function(){return{optionsState:{},observersState:[],childrenObserver:new u.InstanceObserver(this,{onMouseLeave:"onChildMouseLeave"}),showLicenseWatermark:!1}},mounted:function(){this.element=(0,p.getRef)(this,"element"),(0,m.loadTheme)(this.themeStore,this.instantiateCoreChart),window.addEventListener("resize",this.onWindowResize)},destroyed:l?void 0:function(){this.onDestroyed()},unmounted:function(){this.onDestroyed()},updated:function(){if(null!==this.chartInstance){var t=(0,h.provideIntlService)(this),e=this.chartInstance.chartService;t.locale!==e._intlService.locale&&(this.chartInstance.chartService._intlService=t,this.chartInstance.chartService.format._intlService=t,this.chartInstance.noTransitionsRedraw()),this.refresh()}},setup:l?function(){return{v3:!!l}}:void 0,render:function(t){var e=c||t,o=(0,p.getDefaultSlots)(this),n=this.$props,i=n.chartStyle,a=void 0===i?{}:i,s=n.className,l=n.wrapper,h=Object.assign({},a,{position:"relative"}),u=this.showLicenseWatermark?e(_.WatermarkOverlay):null;return e(l,{style:h,class:s,key:"chartElement"},[e(x.SeriesTooltip,{key:"seriesTooltip"}),e(w.CrosshairContainer,{key:"crosshairTooltips",optionsState:r({},this.optionsState),attrs:this.v3?void 0:{optionsState:r({},this.optionsState)}}),function(){return e("div",{onMouseleave:this.onChartMouseLeave,on:this.v3?void 0:{mouseleave:this.onChartMouseLeave},ref:(0,p.setRef)(this,"element"),class:"k-chart-surface"},[o,u])}.call(this)])},methods:{dispatchOptions:function(t){(0,y.optionsReducer)(this.optionsState,t)},dispatchObservers:function(t){this.observersState=(0,y.observersReducer)(this.observersState,t)},onDestroyed:function(){null!==this.chartInstance&&(this.chartInstance.destroy(),this.chartInstance=null),window.removeEventListener("resize",this.onWindowResize)},getDirection:function(t){return void 0!==t?"rtl"===t:(0,p.isRtl)(this.element)},getChartOptions:function(){var t=this.$props,e=t.renderAs,o=t.pannable,r=t.zoomable,n=t.paneDefaults,i=t.panes,a=t.transitions,s=t.seriesColors,c=t.seriesDefaults,l=t.axisDefaults,h=t.deriveOptionsFromParent,u={};return void 0!==e&&(u.renderAs=e),void 0!==o&&(u.pannable=o),void 0!==r&&(u.zoomable=r),void 0!==n&&(u.paneDefaults=n),void 0!==i&&(u.panes=i),void 0!==a&&(u.transitions=a),void 0!==s&&(u.seriesColors=s),void 0!==c&&(u.seriesDefaults=c),void 0!==l&&(u.axisDefaults=l),u=Object.assign(u,this.optionsState),h&&(u=h(u)),u},refresh:function(){if(null!==this.chartInstance){var t=this.themeStore.getState(),e=this.getChartOptions(),o=e.transitions;this.suppressTransitions&&(e.transitions=!1),p.hasListener.call(this,"refresh")?this.trigger("refresh",{chartOptions:e,themeOptions:t,chartInstance:this.chartInstance}):this.chartInstance.setOptions(e,t),this.suppressTransitions&&(e.transitions=o,this.suppressTransitions=!1)}},instantiateCoreChart:function(){var t=this.$props,e=t.dir,o=t.chartConstructor,r=this.getChartOptions(),n=null;this.element&&(n=this.element.lastElementChild)&&this.element.removeChild(n),this.chartInstance=new o(this.element,r,this.themeStore.getState(),{rtl:this.getDirection(e),intlService:(0,h.provideIntlService)(this),observer:this.chartObserver,sender:this}),this.element&&n&&this.element.appendChild(n)},trigger:function(t,e){for(var o=this.$props.getTarget(),r=(0,v.create)(t,e,o),n=this.observersState,i=!1,a=0;a<n.length;a++)n[a].trigger(t,e)&&(i=!0);return!1===i&&r?(this.$emit("basechartevent",t.toLowerCase(),r),r.isDefaultPrevented&&r.isDefaultPrevented()):i},triggerDomEvent:function(t,e){for(var o=this.observersState,r=!1,n=0;n<o.length;n++)o[n].trigger(t,e)&&(r=!0);return r},onRender:function(t){null!==this.chartInstance&&(this.surface=t.sender.surface,this.trigger("render",t))},hasListener:function(t){return!!this.$props.allListeners&&Object.keys(this.$props.allListeners).some((function(e){return-1!==e.toLowerCase().indexOf(t.toLowerCase())}))},onLegendItemClick:function(t){if(null!==this.chartInstance)if(this.hasListener("legenditemclick"))this.$emit("legenditemclick",t);else{var e=this.optionsState.series;if(!e)return;var o={},r=t.seriesIndex,n=t.pointIndex,i=e[r];if(void 0===n)o=Object.assign({},i,{visible:(0,b.toggle)(i.visible)});else{var a=i.pointVisibility=i.pointVisibility||[];a[n]=(0,b.toggle)(a[n]),o=Object.assign({},i)}this.dispatchOptions({chartCollectionIdxKey:"series_".concat(r),payload:o}),this.suppressTransitions=!0,this.refresh()}},onWindowResize:function(){null!==this.chartInstance&&this.chartInstance.resize()},onChartMouseLeave:function(t){var e=(0,f.toDomEvent)(this,t);this.triggerDomEvent("onMouseLeave",e)?t.preventDefault():null!==this.chartInstance&&this.chartInstance.hideElements()},onChildMouseLeave:function(t){var e=t.event;return this.chartInstance&&!(0,d.hasParent)(e.relatedTarget,this.element)&&this.chartInstance.hideElements(),!1},requiresHandlers:function(t){for(var e=0;e<t.length;e++){var o=t[e];if(this.hasListener(o))return!0}return!1}}};e.BaseChartVue2=O;var S=O;e.BaseChart=S},4877:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartVue2=e.Chart=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=(i.ref,o(8287)),l=o(5091),h=o(8506),u=o(9680),p={name:"KendoChart",props:{donutCenterRender:[String,Function,Object],dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:function(){}},zoomable:{type:[Boolean,Object],default:function(){}},seriesColors:{type:Array,default:function(){}},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:function(){}},panes:{type:Array,default:function(){}},seriesDefaults:{type:Object,default:function(){}},axisDefaults:{type:Object,default:function(){}},onAxislabelclick:Function,onDrag:Function,onDragend:Function,onDragstart:Function,onLegenditemhover:Function,onLegenditemclick:Function,onNoteclick:Function,onNotehover:Function,onPlotareaclick:Function,onPlotareahover:Function,onRender:Function,onSelect:Function,onSelectend:Function,onSelectstart:Function,onSeriesclick:Function,onSerieshover:Function,onZoom:Function,onZoomend:Function,onZoomstart:Function},updated:function(){this.baseChart=(0,u.getRef)(this,"baseChart")},mounted:function(){this.baseChart=(0,u.getRef)(this,"baseChart")},methods:{chartInstance:function(){return null!==this.baseChart?this.baseChart.chartInstance:null},surface:function(){return null!==this.baseChart?this.baseChart.surface:null},element:function(){return null!==this.baseChart?this.baseChart.element:null},getTarget:function(){return this},handleBaseChartEvents:function(t,e){this.$emit(t,e)},handleLegendItemClick:function(t){this.$emit("legenditemclick",t)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=this,o=a||t,r=(0,u.getDefaultSlots)(this),n=this.$props,i=n.donutCenterRender,s=n.dir,p=n.renderAs,d=n.pannable,v=n.zoomable,f=n.seriesColors,m=n.transitions,g=n.paneDefaults,y=n.panes,b=n.seriesDefaults,x=n.axisDefaults,w=i?u.templateRendering.call(this,i,u.getListeners.call(this)):null;return o(c.BaseChart,{dir:s,attrs:this.v3?void 0:{dir:s,renderAs:p,pannable:d,zoomable:v,seriesColors:f,transitions:m,paneDefaults:g,panes:y,seriesDefaults:b,axisDefaults:x,chartConstructor:h.Chart,getTarget:this.getTarget,wrapper:"div",allListeners:u.getListeners.call(this)},renderAs:p,pannable:d,zoomable:v,seriesColors:f,transitions:m,paneDefaults:g,panes:y,seriesDefaults:b,axisDefaults:x,ref:(0,u.setRef)(this,"baseChart"),chartConstructor:h.Chart,getTarget:this.getTarget,wrapper:"div",class:(0,u.classNames)("k-chart k-widget"),onLegenditemclick:this.handleLegendItemClick,on:this.v3?void 0:{legenditemclick:this.handleLegendItemClick,basechartevent:this.handleBaseChartEvents},onBasechartevent:this.handleBaseChartEvents,allListeners:u.getListeners.call(this)},this.v3?function(){return[r,o(l.DonutCenter,{render:w,attrs:e.v3?void 0:{render:w}})]}:[r,o(l.DonutCenter,{render:w,attrs:e.v3?void 0:{render:w}})])}};e.ChartVue2=p;var d=p;e.Chart=d},5091:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.DonutCenterVue2=e.DonutCenter=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=(i.ref,o(8506)),l=o(9680),h={name:"KendoDonutCenter",props:{render:[String,Function,Object]},data:function(){return{donutCenterStyles:null}},inject:{optionsState:{default:{}},dispatchOptions:{default:null},dispatchObservers:{default:null},childrenObserver:{default:null}},created:function(){this.dispatchObservers({type:"add",payload:new c.InstanceObserver(this,{render:"onRender"})})},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=this.$props.render,r=e("span"),n=l.getTemplate.call(this,{h:e,template:o,defaultRendering:null});return o&&this.donutCenterStyles&&(r=e("div",{class:"k-chart-donut-center",style:this.donutCenterStyles},[n])),r},methods:{onRender:function(t){var e=this.optionsState.series,o=Array.isArray(e)?e[0]:null,r=t.sender._plotArea.charts;if(o&&"donut"===o.type&&0!==r[0].points.length){var n=r[0].points[0].sector,i=n.innerRadius,a=n.center.y-i,s=n.center.x-i,c=2*i;this.donutCenterStyles={height:c+"px",left:s+"px",top:a+"px",width:c+"px"}}}}};e.DonutCenterVue2=h;var u=h;e.DonutCenter=u},5469:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.SparklineVue2=e.Sparkline=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=(i.ref,o(8287)),l=o(8506),h=o(9680),u={name:"KendoSparkline",props:{dataItems:{type:Array,default:function(){}},type:String,dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:function(){}},zoomable:{type:[Boolean,Object],default:function(){}},seriesColors:{type:Array,default:function(){}},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:function(){}},panes:{type:Array,default:function(){}},seriesDefaults:{type:Object,default:function(){}},axisDefaults:{type:Object,default:function(){}}},updated:function(){this.baseChart=(0,h.getRef)(this,"baseChart")},mounted:function(){this.baseChart=(0,h.getRef)(this,"baseChart")},methods:{chartInstance:function(){return null!==this.baseChart?this.baseChart.chartInstance:null},surface:function(){return null!==this.baseChart?this.baseChart.surface:null},element:function(){return null!==this.baseChart?this.baseChart.element:null},getTarget:function(){return this},deriveOptionsFromParent:function(t){var e=this.$props,o=e.type,r=e.dataItems,n=Object.assign({},t,{type:o,data:r});return l.Sparkline.normalizeOptions(n)},handleBaseChartEvents:function(t,e){this.$emit(t,e)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,h.getDefaultSlots)(this),r=this.$props,n=r.dataItems,i=r.dir,s=r.renderAs,u=r.pannable,p=r.zoomable,d=r.seriesColors,v=r.transitions,f=r.paneDefaults,m=r.panes,g=r.seriesDefaults,y=r.axisDefaults;return e(c.BaseChart,{dataItems:n,attrs:this.v3?void 0:{dataItems:n,dir:i,renderAs:s,pannable:u,zoomable:p,seriesColors:d,transitions:v,paneDefaults:f,panes:m,seriesDefaults:g,axisDefaults:y,chartConstructor:l.Sparkline,getTarget:this.getTarget,wrapper:"span",deriveOptionsFromParent:this.deriveOptionsFromParent},dir:i,renderAs:s,pannable:u,zoomable:p,seriesColors:d,transitions:v,paneDefaults:f,panes:m,seriesDefaults:g,axisDefaults:y,ref:(0,h.setRef)(this,"baseChart"),chartConstructor:l.Sparkline,getTarget:this.getTarget,wrapper:"span",deriveOptionsFromParent:this.deriveOptionsFromParent,class:(0,h.classNames)("k-sparkline k-widget"),onBasechartevent:this.handleBaseChartEvents,on:this.v3?void 0:{basechartevent:this.handleBaseChartEvents}},this.v3?function(){return[o]}:[o])}};e.SparklineVue2=u;var p=u;e.Sparkline=p},6636:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.StockChartVue2=e.StockChart=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=(i.ref,o(8287)),l=o(8506),h=o(9680),u={autoBindElements:!0,liveDrag:!1,partialRedraw:!0},p={name:"KendoStockChart",props:{partialRedraw:{type:Boolean,default:void 0},dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:function(){}},zoomable:{type:[Boolean,Object],default:function(){}},seriesColors:{type:Array,default:function(){}},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:function(){}},panes:{type:Array,default:function(){}},seriesDefaults:{type:Object,default:function(){}},axisDefaults:{type:Object,default:function(){}}},updated:function(){this.baseChart=(0,h.getRef)(this,"baseChart")},mounted:function(){this.baseChart=(0,h.getRef)(this,"baseChart")},methods:{chartInstance:function(){return null!==this.baseChart?this.baseChart.chartInstance:null},surface:function(){return null!==this.baseChart?this.baseChart.surface:null},element:function(){return null!==this.baseChart?this.baseChart.element:null},getTarget:function(){return this},deriveOptionsFromParent:function(t){var e=Object.assign({},t.navigator||{},u);return Object.assign({},t,{navigator:e})},onRefresh:function(t,e,o){this.$props.partialRedraw?(o.applyOptions(t),o.bindCategories(),o.navigator.redrawSlaves()):o.setOptions(t,e)},handleBaseChartEvents:function(t,e){this.$emit(t,e)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,h.getDefaultSlots)(this),r=this.$props,n=r.partialRedraw,i=r.dir,s=r.renderAs,u=r.pannable,p=r.zoomable,d=r.seriesColors,v=r.transitions,f=r.paneDefaults,m=r.panes,g=r.seriesDefaults,y=r.axisDefaults;return e(c.BaseChart,{partialRedraw:n,attrs:this.v3?void 0:{partialRedraw:n,dir:i,renderAs:s,pannable:u,zoomable:p,seriesColors:d,transitions:v,paneDefaults:f,panes:m,seriesDefaults:g,axisDefaults:y,chartConstructor:l.StockChart,getTarget:this.getTarget,wrapper:"div",deriveOptionsFromParent:this.deriveOptionsFromParent},dir:i,renderAs:s,pannable:u,zoomable:p,seriesColors:d,transitions:v,paneDefaults:f,panes:m,seriesDefaults:g,axisDefaults:y,ref:(0,h.setRef)(this,"baseChart"),chartConstructor:l.StockChart,getTarget:this.getTarget,wrapper:"div",deriveOptionsFromParent:this.deriveOptionsFromParent,onRefresh:this.onRefresh,on:this.v3?void 0:{refresh:this.onRefresh,basechartevent:this.handleBaseChartEvents},class:(0,h.classNames)("k-stockchart k-widget"),onBasechartevent:this.handleBaseChartEvents},this.v3?function(){return[o]}:[o])}};e.StockChartVue2=p;var d=p;e.StockChart=d},4082:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},8011:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},5264:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomStartEvent=e.ZoomEvent=e.ZoomEndEvent=e.SeriesHoverEvent=e.SeriesClickEvent=e.SelectStartEvent=e.SelectEvent=e.SelectEndEvent=e.RenderEvent=e.PlotAreaHoverEvent=e.PlotAreaClickEvent=e.NoteHoverEvent=e.NoteClickEvent=e.NavigatorFilterEvent=e.LegendItemHoverEvent=e.LegendItemClickEvent=e.DragStartEvent=e.DragEvent=e.DragEndEvent=e.AxisLabelClickEvent=void 0;var r=o(4276);Object.defineProperty(e,"AxisLabelClickEvent",{enumerable:!0,get:function(){return r.AxisLabelClickEvent}});var n=o(6377);Object.defineProperty(e,"DragEndEvent",{enumerable:!0,get:function(){return n.DragEndEvent}});var i=o(6776);Object.defineProperty(e,"DragEvent",{enumerable:!0,get:function(){return i.DragEvent}});var a=o(4316);Object.defineProperty(e,"DragStartEvent",{enumerable:!0,get:function(){return a.DragStartEvent}});var s=o(7475);Object.defineProperty(e,"LegendItemClickEvent",{enumerable:!0,get:function(){return s.LegendItemClickEvent}});var c=o(4438);Object.defineProperty(e,"LegendItemHoverEvent",{enumerable:!0,get:function(){return c.LegendItemHoverEvent}});var l=o(1313);Object.defineProperty(e,"NavigatorFilterEvent",{enumerable:!0,get:function(){return l.NavigatorFilterEvent}});var h=o(8059);Object.defineProperty(e,"NoteClickEvent",{enumerable:!0,get:function(){return h.NoteClickEvent}});var u=o(6053);Object.defineProperty(e,"NoteHoverEvent",{enumerable:!0,get:function(){return u.NoteHoverEvent}});var p=o(909);Object.defineProperty(e,"PlotAreaClickEvent",{enumerable:!0,get:function(){return p.PlotAreaClickEvent}});var d=o(6842);Object.defineProperty(e,"PlotAreaHoverEvent",{enumerable:!0,get:function(){return d.PlotAreaHoverEvent}});var v=o(2876);Object.defineProperty(e,"RenderEvent",{enumerable:!0,get:function(){return v.RenderEvent}});var f=o(3618);Object.defineProperty(e,"SelectEndEvent",{enumerable:!0,get:function(){return f.SelectEndEvent}});var m=o(3314);Object.defineProperty(e,"SelectEvent",{enumerable:!0,get:function(){return m.SelectEvent}});var g=o(2965);Object.defineProperty(e,"SelectStartEvent",{enumerable:!0,get:function(){return g.SelectStartEvent}});var y=o(6914);Object.defineProperty(e,"SeriesClickEvent",{enumerable:!0,get:function(){return y.SeriesClickEvent}});var b=o(1867);Object.defineProperty(e,"SeriesHoverEvent",{enumerable:!0,get:function(){return b.SeriesHoverEvent}});var x=o(7235);Object.defineProperty(e,"ZoomEndEvent",{enumerable:!0,get:function(){return x.ZoomEndEvent}});var w=o(6412);Object.defineProperty(e,"ZoomEvent",{enumerable:!0,get:function(){return w.ZoomEvent}});var _=o(8597);Object.defineProperty(e,"ZoomStartEvent",{enumerable:!0,get:function(){return _.ZoomStartEvent}})},2750:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsVue2=e.ChartAxisDefaults=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartAxisDefaults",props:{background:{type:String,default:void 0},color:{type:String,default:void 0},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},narrowRange:{type:Boolean,default:void 0},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:void 0},startAngle:{type:Number,default:void 0},visible:{type:Boolean,default:void 0},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"axisDefaults"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"axisDefaults"}},[o])}};e.ChartAxisDefaultsVue2=u;var p=u;e.ChartAxisDefaults=p},5913:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisVue2=e.ChartCategoryAxis=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartCategoryAxis",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"categoryAxis",attrs:this.v3?void 0:{chartKey:"categoryAxis"}},this.v3?function(){return[o]}:[o])}};e.ChartCategoryAxisVue2=h;var u=h;e.ChartCategoryAxis=u},2055:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisItemVue2=e.ChartCategoryAxisItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisItem",props:{autoBaseUnitSteps:{type:Object,default:function(){}},axisCrossingValue:{type:[Object,Array,Date,Number],default:function(){}},background:{type:String,default:function(){}},baseUnit:{type:String,default:function(){},validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},baseUnitStep:{type:[Number,String],default:function(){}},categories:{type:[Array,Object],default:function(){}},color:{type:String,default:function(){}},justified:{type:Boolean,default:function(){}},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},max:{type:[Number,Object,String,Date],default:function(){}},maxDateGroups:{type:Number,default:function(){}},maxDivisions:{type:Number,default:function(){}},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},name:{type:String,default:void 0},rangeLabels:{type:Object,default:function(){}},pane:{type:String,default:function(){}},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:function(){}},roundToBaseUnit:{type:Boolean,default:function(){}},startAngle:{type:Number,default:function(){}},type:{type:String,default:function(){},validator:function(t){return["category","date"].includes(t)}},visible:{type:Boolean,default:function(){}},weekStartDay:{type:Number,default:function(){}},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},select:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartCategoryAxisItemVue2=u;var p=u;e.ChartCategoryAxisItem=p},6283:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAreaVue2=e.ChartArea=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartArea",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},opacity:{type:Number,default:void 0},width:{type:Number,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"chartArea"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"chartArea"}},[o])}};e.ChartAreaVue2=u;var p=u;e.ChartArea=p},8143:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendVue2=e.ChartLegend=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartLegend",props:{align:{type:String,default:function(){},validator:function(t){return["start","center","end"].includes(t)}},background:{type:String,default:void 0},border:{type:Object,default:function(){}},height:{type:Number,default:void 0},labels:{type:Object,default:function(){}},margin:{type:[Object,Number],default:function(){}},offsetX:{type:Number,default:void 0},offsetY:{type:Number,default:void 0},orientation:{type:String,default:function(){},validator:function(t){return["vertical","horizontal"].includes(t)}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right","custom"].includes(t)}},reverse:{type:Boolean,default:void 0},visible:{type:Boolean,default:!0},width:{type:Number,default:void 0},inactiveItems:{type:Object,default:function(){}},item:{type:Object,default:function(){}},spacing:{type:Number,default:void 0},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"legend"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"legend"}},[o])}};e.ChartLegendVue2=u;var p=u;e.ChartLegend=p},5635:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorVue2=e.ChartNavigator=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigator",props:{visible:{type:Boolean,default:!0},categoryAxis:{type:Object,default:function(){}},hint:{type:Object,default:function(){}},pane:{type:Object,default:function(){}},select:{type:Object,default:function(){}},series:{type:[Object,Array],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"navigator"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"navigator"}},[o])}};e.ChartNavigatorVue2=u;var p=u;e.ChartNavigator=p},4077:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneVue2=e.ChartPane=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartPane",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},clip:{type:Boolean,default:void 0},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},name:{type:String,default:void 0},padding:{type:[Object,Number],default:function(){}},title:{type:[Object,String],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartPaneVue2=u;var p=u;e.ChartPane=p},5711:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneDefaultsVue2=e.ChartPaneDefaults=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartPaneDefaults",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},clip:{type:Boolean,default:void 0},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},name:{type:String,default:void 0},padding:{type:[Object,Number],default:function(){}},title:{type:[Object,String],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"paneDefaults"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"paneDefaults"}},[o])}};e.ChartPaneDefaultsVue2=u;var p=u;e.ChartPaneDefaults=p},714:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPanesVue2=e.ChartPanes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartPanes",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"panes",attrs:this.v3?void 0:{chartKey:"panes"}},this.v3?function(){return[o]}:[o])}};e.ChartPanesVue2=h;var u=h;e.ChartPanes=u},6859:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPlotAreaVue2=e.ChartPlotArea=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartPlotArea",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},margin:{type:[Object,Number],default:function(){}},opacity:{type:Number,default:void 0},padding:{type:[Object,Number],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"plotArea"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"plotArea"}},[o])}};e.ChartPlotAreaVue2=u;var p=u;e.ChartPlotArea=p},5197:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesVue2=e.ChartSeries=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartSeries",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"series",attrs:this.v3?void 0:{chartKey:"series"}},this.v3?function(){return[o]}:[o])}};e.ChartSeriesVue2=h;var u=h;e.ChartSeries=u},9210:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsVue2=e.ChartSeriesDefaults=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaults",props:{border:{type:Object,default:function(){}},gap:Number,overlay:{type:Object,default:function(){}},spacing:Number,stack:{type:[Boolean,String,Object],default:function(){}},type:{type:String,default:function(){},validator:function(t){return["area","bar","boxPlot","bubble","bullet","candlestick","column","donut","funnel","horizontalWaterfall","line","ohlc","pie","polarArea","polarLine","polarScatter","radarArea","radarColumn","radarLine","rangeArea","rangeBar","rangeColumn","scatter","scatterLine","verticalArea","verticalBoxPlot","verticalBullet","verticalLine","verticalRangeArea","waterfall"].includes(t)}},visual:{type:Function,default:void 0},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"seriesDefaults"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"seriesDefaults"}},[o])}};e.ChartSeriesDefaultsVue2=u;var p=u;e.ChartSeriesDefaults=p},485:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesItemVue2=e.ChartSeriesItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=(i.reactive,o(7098)),l=o(9680),h=o(5320),u={name:"KendoChartSeriesItem",props:{autoFit:Boolean,aggregate:{type:[String,Function,Object],default:function(){}},axis:String,border:{type:Object,default:function(){}},categoryAxis:String,categoryField:String,closeField:String,color:{type:[String,Function],default:function(){}},colorField:String,connectors:{type:Object,default:function(){}},currentField:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},dataItems:{type:Array,default:function(){}},downColor:String,downColorField:String,dynamicHeight:{type:Boolean,default:void 0},dynamicSlope:{type:Boolean,default:void 0},errorHighField:String,errorLowField:String,explodeField:String,field:String,for:String,fromField:String,gap:Number,highField:String,holeSize:Number,line:{type:Object,default:function(){}},lowField:String,lowerField:String,margin:{type:[Object,Number],default:function(){}},maxSize:Number,meanField:String,medianField:String,minSize:Number,missingValues:{type:String,default:function(){},validator:function(t){return["gap","interpolate","zero"].includes(t)}},name:String,neckRatio:Number,negativeColor:String,negativeValues:{type:Object,default:function(){}},noteTextField:String,opacity:Number,openField:String,outliersField:String,overlay:{type:Object,default:function(){}},padding:Number,q1Field:String,q3Field:String,segmentSpacing:Number,size:Number,sizeField:String,spacing:Number,stack:{type:[Boolean,String,Object],default:function(){}},startAngle:Number,lineStyle:{type:String,default:function(){},validator:function(t){return["normal","step","smooth"].includes(t)}},summaryField:String,target:{type:Object,default:function(){}},toField:String,type:{type:String,default:function(){},validator:function(t){return["area","bar","boxPlot","bubble","bullet","candlestick","column","donut","funnel","pyramid","linearTrendline","movingAverageTrendline","horizontalWaterfall","line","ohlc","pie","polarArea","polarLine","polarScatter","radarArea","radarColumn","radarLine","rangeArea","rangeBar","rangeColumn","scatter","scatterLine","verticalArea","verticalBoxPlot","verticalBullet","verticalLine","verticalRangeArea","waterfall"].includes(t)}},upperField:String,visible:{type:Boolean,default:void 0},visibleInLegend:{type:Boolean,default:void 0},visibleInLegendField:String,visual:{type:Function,default:void 0},width:Number,xAxis:String,xErrorHighField:String,xErrorLowField:String,xField:String,yAxis:String,yErrorHighField:String,yErrorLowField:String,yField:String,zIndex:Number,errorBars:{type:Object,default:function(){}},extremes:{type:Object,default:function(){}},highlight:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},markers:{type:Object,default:function(){}},legendItem:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},outliers:{type:Object,default:function(){}},tooltip:{type:Object,default:function(){}}},inject:{chartRefresh:{default:l.noop}},watch:{dataItems:{handler:function(){this.chartRefresh()},deep:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartSeriesItemVue2=u;var p=u;e.ChartSeriesItem=p},9634:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartTitleVue2=e.ChartTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartTitle",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},align:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},color:{type:String,default:void 0},font:{type:String,default:void 0},position:{type:String,default:function(){},validator:function(t){return["top","bottom"].includes(t)}},text:{type:String,default:void 0},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartTitleVue2=u;var p=u;e.ChartTitle=p},4331:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartTooltipVue2=e.ChartTooltip=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=o(7098),h=o(9680),u=o(5320),p={name:"KendoChartTooltip",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},padding:{type:[Object,Number],default:function(){}},color:{type:String,default:void 0},render:[String,Function,Object],font:{type:String,default:void 0},format:{type:String,default:void 0},opacity:{type:Number,default:void 0},shared:{type:Boolean,default:void 0},visible:{type:Boolean,default:!0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=(0,h.getDefaultSlots)(this),n=(0,u.removeUndefinedProps)(this.$props),i=h.templateRendering.call(this,this.$props.render,h.getListeners.call(this));return this.v3?e(l.Configuration,{config:r(r({},n),{render:i}),chartKey:"tooltip"},(function(){return o})):e(l.Configuration,{props:{config:r(r({},n),{render:i}),chartKey:"tooltip"}},[o])}};e.ChartTooltipVue2=p;var d=p;e.ChartTooltip=d},1414:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisVue2=e.ChartValueAxis=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartValueAxis",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"valueAxis",attrs:this.v3?void 0:{chartKey:"valueAxis"}},this.v3?function(){return[o]}:[o])}};e.ChartValueAxisVue2=h;var u=h;e.ChartValueAxis=u},5147:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisItemVue2=e.ChartValueAxisItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisItem",props:{axisCrossingValue:{type:[Array,Object,Date,Number],default:function(){}},background:{type:String,default:void 0},color:{type:String,default:void 0},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},majorUnit:{type:Number,default:void 0},max:{type:[Number,Object,String,Date],default:function(){}},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},minorUnit:{type:Number,default:void 0},name:{type:String,default:void 0},narrowRange:{type:Boolean,default:function(){}},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:function(){}},type:{type:String,default:function(){},validator:function(t){return["numeric","log"].includes(t)}},visible:{type:Boolean,default:function(){}},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartValueAxisItemVue2=u;var p=u;e.ChartValueAxisItem=p},3479:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisVue2=e.ChartXAxis=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartXAxis",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"xAxis",attrs:this.v3?void 0:{chartKey:"xAxis"}},this.v3?function(){return[o]}:[o])}};e.ChartXAxisVue2=h;var u=h;e.ChartXAxis=u},8732:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisItemVue2=e.ChartXAxisItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisItem",props:{axisCrossingValue:{type:[Array,Object,Date,Number],default:function(){}},background:{type:String,default:void 0},baseUnit:{type:String,default:function(){},validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},color:{type:String,default:void 0},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},majorUnit:{type:Number,default:void 0},max:{type:[Number,Object,String,Date],default:function(){}},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},minorUnit:{type:Number,default:void 0},name:{type:String,default:void 0},narrowRange:{type:Boolean,default:function(){}},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},startAngle:{type:Number,default:void 0},reverse:{type:Boolean,default:function(){}},type:{type:String,default:function(){},validator:function(t){return["numeric","log","date"].includes(t)}},visible:{type:Boolean,default:function(){}},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartXAxisItemVue2=u;var p=u;e.ChartXAxisItem=p},6988:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisVue2=e.ChartYAxis=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartYAxis",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"yAxis",attrs:this.v3?void 0:{chartKey:"yAxis"}},this.v3?function(){return[o]}:[o])}};e.ChartYAxisVue2=h;var u=h;e.ChartYAxis=u},2587:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisItemVue2=e.ChartYAxisItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisItem",props:{axisCrossingValue:{type:[Array,Object,Date,Number],default:function(){}},background:{type:String,default:void 0},baseUnit:{type:String,default:function(){},validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},color:{type:String,default:void 0},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},majorUnit:{type:Number,default:void 0},max:{type:[Number,Object,String,Date],default:function(){}},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},minorUnit:{type:Number,default:void 0},name:{type:String,default:void 0},narrowRange:{type:Boolean,default:function(){}},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:function(){}},type:{type:String,default:function(){},validator:function(t){return["numeric","log","date"].includes(t)}},visible:{type:Boolean,default:function(){}},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartYAxisItemVue2=u;var p=u;e.ChartYAxisItem=p},1426:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartZoomableVue2=e.ChartZoomable=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartZoomable",props:{mousewheel:{type:[Boolean,Object],default:function(){}},selection:{type:[Boolean,Object],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"zoomable"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"zoomable"}},[o])}};e.ChartZoomableVue2=u;var p=u;e.ChartZoomable=p},4872:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsCrosshairVue2=e.ChartAxisDefaultsCrosshair=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartAxisDefaultsCrosshair",props:{color:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"crosshair"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"crosshair"}},[o])}};e.ChartAxisDefaultsCrosshairVue2=u;var p=u;e.ChartAxisDefaultsCrosshair=p},7193:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsCrosshairTooltipVue2=e.ChartAxisDefaultsCrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartAxisDefaultsCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"tooltip"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"tooltip"}},[o])}};e.ChartAxisDefaultsCrosshairTooltipVue2=u;var p=u;e.ChartAxisDefaultsCrosshairTooltip=p},9468:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsLabelsVue2=e.ChartAxisDefaultsLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartAxisDefaultsLabels",props:{content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:Boolean,padding:{type:[Object,Number],default:function(){}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartAxisDefaultsLabelsVue2=u;var p=u;e.ChartAxisDefaultsLabels=p},5917:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsTitleVue2=e.ChartAxisDefaultsTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartAxisDefaultsTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartAxisDefaultsTitleVue2=u;var p=u;e.ChartAxisDefaultsTitle=p},7578:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsCrosshairTooltipVue2=e.ChartAxisDefaultsCrosshairTooltip=e.ChartAxisDefaultsCrosshairVue2=e.ChartAxisDefaultsCrosshair=e.ChartAxisDefaultsLabelsVue2=e.ChartAxisDefaultsLabels=e.ChartAxisDefaultsTitleVue2=e.ChartAxisDefaultsTitle=void 0;var r=o(5917);Object.defineProperty(e,"ChartAxisDefaultsTitle",{enumerable:!0,get:function(){return r.ChartAxisDefaultsTitle}}),Object.defineProperty(e,"ChartAxisDefaultsTitleVue2",{enumerable:!0,get:function(){return r.ChartAxisDefaultsTitleVue2}});var n=o(9468);Object.defineProperty(e,"ChartAxisDefaultsLabels",{enumerable:!0,get:function(){return n.ChartAxisDefaultsLabels}}),Object.defineProperty(e,"ChartAxisDefaultsLabelsVue2",{enumerable:!0,get:function(){return n.ChartAxisDefaultsLabelsVue2}});var i=o(4872);Object.defineProperty(e,"ChartAxisDefaultsCrosshair",{enumerable:!0,get:function(){return i.ChartAxisDefaultsCrosshair}}),Object.defineProperty(e,"ChartAxisDefaultsCrosshairVue2",{enumerable:!0,get:function(){return i.ChartAxisDefaultsCrosshairVue2}});var a=o(7193);Object.defineProperty(e,"ChartAxisDefaultsCrosshairTooltip",{enumerable:!0,get:function(){return a.ChartAxisDefaultsCrosshairTooltip}}),Object.defineProperty(e,"ChartAxisDefaultsCrosshairTooltipVue2",{enumerable:!0,get:function(){return a.ChartAxisDefaultsCrosshairTooltipVue2}})},694:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.CollectionConfigurationVue2=e.CollectionConfiguration=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=(i.ref,o(9680)),l={name:"KendoCollectionConfiguration",props:{chartKey:String,parentKey:String,parentStore:Object},provide:function(){return{childOption:!1,chartCollection:this.$props.chartKey,parentKey:this.$props.parentKey,child:this.child,addChild:this.addChild,removeChild:this.removeChild}},inject:{dispatchOptions:{default:null},observersStore:{default:null},childrenObserver:{default:null}},created:function(){(0,this.dispatchOptions)({chartKey:this.$props.chartKey,payload:[]})},data:function(){return{child:{collection:[]}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){return(a||t)("div",[(0,c.getDefaultSlots)(this)," "])},methods:{addChild:function(t){this.child.collection.push(t)},removeChild:function(t){var e=this.child.collection.findIndex((function(e){return e.uid===t.uid}));this.child.collection.splice(e,1)}}};e.CollectionConfigurationVue2=l;var h=l;e.CollectionConfiguration=h},7098:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ConfigurationVue2=e.Configuration=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=(a.ref,o(9680)),h={name:"KendoConfiguration",props:{chartKey:String,config:{type:Object,default:function(){return{}}}},data:function(){return{childState:{},index:null}},provide:function(){return{addChild:this.addChildOption,removeChild:this.removeChildOption,childOption:!0}},inject:{childOption:{default:null},addChild:{default:l.noop},removeChild:{default:l.noop},child:{default:{}},parentKey:{default:null},chartCollection:{default:null},dispatchOptions:{default:null},childrenObserver:{default:null}},created:function(){this.currentIndex=void 0,this.uid=(0,l.guid)(),this.addChild&&this.addChild({chartKey:this.$props.chartKey,payload:Object.assign({},this.$props.config),uid:this.uid})},mounted:function(){this.dispatch()},watch:{config:function(t,e){JSON.stringify(t)!==JSON.stringify(e)&&this.dispatch()}},destroyed:c?void 0:function(){this.onDestroyed()},unmounted:function(){this.onDestroyed()},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){return(s||t)("div",[(0,l.getDefaultSlots)(this)])},methods:{onDestroyed:function(){if(this.removeChild){this.removeChild({uid:this.uid});var t=this.$props,e=t.chartKey,o=t.parentStore;t.config,(o||this.dispatchOptions)({chartKey:e,parentKey:this.parentKey,chartCollectionIdxKey:this.chartCollection+"_",uid:this.uid})}},addChildOption:function(t){var e;this.childState=r(r({},this.childState),((e={})[t.chartKey]=t.payload,e)),this.dispatch()},removeChildOption:function(){this.childState={}},dispatch:function(){var t=this,e=this.$props,o=e.chartKey,r=e.parentStore,n=e.config,i=r||this.dispatchOptions;this.childOption?this.addChild({chartKey:o,payload:Object.assign({},n,this.childState)}):this.chartCollection?(this.currentIndex=this.child.collection.findIndex((function(e){return e.uid===t.uid})),i({chartKey:o,parentKey:this.parentKey,chartCollectionIdxKey:this.chartCollection+"_"+this.currentIndex,payload:Object.assign({},n,{uid:this.uid},this.childState)})):i({chartKey:o,payload:Object.assign({},n,this.childState)})}}};e.ConfigurationVue2=h;var u=h;e.Configuration=u},7971:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisCrosshairVue2=e.ChartCategoryAxisCrosshair=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisCrosshair",props:{color:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"crosshair"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"crosshair"}},[o])}};e.ChartCategoryAxisCrosshairVue2=u;var p=u;e.ChartCategoryAxisCrosshair=p},6467:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisCrosshairTooltipVue2=e.ChartCategoryAxisCrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"tooltip"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"tooltip"}},[o])}};e.ChartCategoryAxisCrosshairTooltipVue2=u;var p=u;e.ChartCategoryAxisCrosshairTooltip=p},5039:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisLabelsVue2=e.ChartCategoryAxisLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:function(){}},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["start","end","onAxis",""].includes(t)}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartCategoryAxisLabelsVue2=u;var p=u;e.ChartCategoryAxisLabels=p},9702:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisNotesVue2=e.ChartCategoryAxisNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartCategoryAxisNotesVue2=u;var p=u;e.ChartCategoryAxisNotes=p},6156:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisNotesIconVue2=e.ChartCategoryAxisNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartCategoryAxisNotesIconVue2=u;var p=u;e.ChartCategoryAxisNotesIcon=p},1552:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisNotesLabelVue2=e.ChartCategoryAxisNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartCategoryAxisNotesLabelVue2=u;var p=u;e.ChartCategoryAxisNotesLabel=p},777:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisRangeLabelsVue2=e.ChartCategoryAxisRangeLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisRangeLabels",props:{position:{type:String,default:void 0,validator:function(t){return["start","end","onAxis",""].includes(t)}},skip:Number,step:Number,visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"rangeLabels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"rangeLabels"}},[o])}};e.ChartCategoryAxisRangeLabelsVue2=u;var p=u;e.ChartCategoryAxisRangeLabels=p},6322:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisSelectVue2=e.ChartCategoryAxisSelect=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisSelect",props:{from:{type:[Object,Number,String],default:function(){}},max:{type:[Object,Number,String,Date],default:function(){}},min:{type:[Object,Number,String,Date],default:function(){}},mousewheel:{type:[Object,Boolean],default:function(){}},to:{type:[Object,Number,String],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"select"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"select"}},[o])}};e.ChartCategoryAxisSelectVue2=u;var p=u;e.ChartCategoryAxisSelect=p},7231:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisTitleVue2=e.ChartCategoryAxisTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartCategoryAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartCategoryAxisTitleVue2=u;var p=u;e.ChartCategoryAxisTitle=p},8631:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisRangeLabelsVue2=e.ChartCategoryAxisRangeLabels=e.ChartCategoryAxisNotesLabelVue2=e.ChartCategoryAxisNotesLabel=e.ChartCategoryAxisNotesIconVue2=e.ChartCategoryAxisNotesIcon=e.ChartCategoryAxisNotesVue2=e.ChartCategoryAxisNotes=e.ChartCategoryAxisLabelsVue2=e.ChartCategoryAxisLabels=e.ChartCategoryAxisTitleVue2=e.ChartCategoryAxisTitle=e.ChartCategoryAxisSelectVue2=e.ChartCategoryAxisSelect=e.ChartCategoryAxisCrosshairTooltipVue2=e.ChartCategoryAxisCrosshairTooltip=e.ChartCategoryAxisCrosshairVue2=e.ChartCategoryAxisCrosshair=void 0;var r=o(7971);Object.defineProperty(e,"ChartCategoryAxisCrosshair",{enumerable:!0,get:function(){return r.ChartCategoryAxisCrosshair}}),Object.defineProperty(e,"ChartCategoryAxisCrosshairVue2",{enumerable:!0,get:function(){return r.ChartCategoryAxisCrosshairVue2}});var n=o(6467);Object.defineProperty(e,"ChartCategoryAxisCrosshairTooltip",{enumerable:!0,get:function(){return n.ChartCategoryAxisCrosshairTooltip}}),Object.defineProperty(e,"ChartCategoryAxisCrosshairTooltipVue2",{enumerable:!0,get:function(){return n.ChartCategoryAxisCrosshairTooltipVue2}});var i=o(6322);Object.defineProperty(e,"ChartCategoryAxisSelect",{enumerable:!0,get:function(){return i.ChartCategoryAxisSelect}}),Object.defineProperty(e,"ChartCategoryAxisSelectVue2",{enumerable:!0,get:function(){return i.ChartCategoryAxisSelectVue2}});var a=o(7231);Object.defineProperty(e,"ChartCategoryAxisTitle",{enumerable:!0,get:function(){return a.ChartCategoryAxisTitle}}),Object.defineProperty(e,"ChartCategoryAxisTitleVue2",{enumerable:!0,get:function(){return a.ChartCategoryAxisTitleVue2}});var s=o(5039);Object.defineProperty(e,"ChartCategoryAxisLabels",{enumerable:!0,get:function(){return s.ChartCategoryAxisLabels}}),Object.defineProperty(e,"ChartCategoryAxisLabelsVue2",{enumerable:!0,get:function(){return s.ChartCategoryAxisLabelsVue2}});var c=o(9702);Object.defineProperty(e,"ChartCategoryAxisNotes",{enumerable:!0,get:function(){return c.ChartCategoryAxisNotes}}),Object.defineProperty(e,"ChartCategoryAxisNotesVue2",{enumerable:!0,get:function(){return c.ChartCategoryAxisNotesVue2}});var l=o(6156);Object.defineProperty(e,"ChartCategoryAxisNotesIcon",{enumerable:!0,get:function(){return l.ChartCategoryAxisNotesIcon}}),Object.defineProperty(e,"ChartCategoryAxisNotesIconVue2",{enumerable:!0,get:function(){return l.ChartCategoryAxisNotesIconVue2}});var h=o(1552);Object.defineProperty(e,"ChartCategoryAxisNotesLabel",{enumerable:!0,get:function(){return h.ChartCategoryAxisNotesLabel}}),Object.defineProperty(e,"ChartCategoryAxisNotesLabelVue2",{enumerable:!0,get:function(){return h.ChartCategoryAxisNotesLabelVue2}});var u=o(777);Object.defineProperty(e,"ChartCategoryAxisRangeLabels",{enumerable:!0,get:function(){return u.ChartCategoryAxisRangeLabels}}),Object.defineProperty(e,"ChartCategoryAxisRangeLabelsVue2",{enumerable:!0,get:function(){return u.ChartCategoryAxisRangeLabelsVue2}})},4566:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendInactiveItemsVue2=e.ChartLegendInactiveItems=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartLegendInactiveItems",props:{labels:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"inactiveItems"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"inactiveItems"}},[o])}};e.ChartLegendInactiveItemsVue2=u;var p=u;e.ChartLegendInactiveItems=p},5803:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendItemVue2=e.ChartLegendItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartLegendItem",props:{cursor:String,type:{type:String,default:function(){},validator:function(t){return["area","line"].includes(t)}},line:{type:Object,default:function(){}},area:{type:Object,default:function(){}},markers:{type:Object,default:function(){}},highlight:{type:Object,default:function(){}},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"item"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"item"}},[o])}};e.ChartLegendItemVue2=u;var p=u;e.ChartLegendItem=p},853:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendTitleVue2=e.ChartLegendTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartLegendTitle",props:{align:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom"].includes(t)}},text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartLegendTitleVue2=u;var p=u;e.ChartLegendTitle=p},8224:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendInactiveItemsVue2=e.ChartLegendInactiveItems=e.ChartLegendTitleVue2=e.ChartLegendTitle=e.ChartLegendItemVue2=e.ChartLegendItem=void 0;var r=o(5803);Object.defineProperty(e,"ChartLegendItem",{enumerable:!0,get:function(){return r.ChartLegendItem}}),Object.defineProperty(e,"ChartLegendItemVue2",{enumerable:!0,get:function(){return r.ChartLegendItemVue2}});var n=o(853);Object.defineProperty(e,"ChartLegendTitle",{enumerable:!0,get:function(){return n.ChartLegendTitle}}),Object.defineProperty(e,"ChartLegendTitleVue2",{enumerable:!0,get:function(){return n.ChartLegendTitleVue2}});var i=o(4566);Object.defineProperty(e,"ChartLegendInactiveItems",{enumerable:!0,get:function(){return i.ChartLegendInactiveItems}}),Object.defineProperty(e,"ChartLegendInactiveItemsVue2",{enumerable:!0,get:function(){return i.ChartLegendInactiveItemsVue2}})},2444:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||r(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartZoomableVue2=e.ChartZoomable=e.ChartYAxisItemVue2=e.ChartYAxisItem=e.ChartYAxisVue2=e.ChartYAxis=e.ChartXAxisItemVue2=e.ChartXAxisItem=e.ChartXAxisVue2=e.ChartXAxis=e.ChartValueAxisItemVue2=e.ChartValueAxisItem=e.ChartValueAxisVue2=e.ChartValueAxis=e.ChartTooltipVue2=e.ChartTooltip=e.ChartTitleVue2=e.ChartTitle=e.ChartSeriesItemVue2=e.ChartSeriesItem=e.ChartSeriesDefaultsVue2=e.ChartSeriesDefaults=e.ChartSeriesVue2=e.ChartSeries=e.ChartPlotAreaVue2=e.ChartPlotArea=e.ChartPanesVue2=e.ChartPanes=e.ChartPaneDefaultsVue2=e.ChartPaneDefaults=e.ChartPaneVue2=e.ChartPane=e.ChartNavigatorVue2=e.ChartNavigator=e.ChartLegendVue2=e.ChartLegend=e.ChartCategoryAxisItemVue2=e.ChartCategoryAxisItem=e.ChartCategoryAxisVue2=e.ChartCategoryAxis=e.ChartAxisDefaultsVue2=e.ChartAxisDefaults=e.ChartAreaVue2=e.ChartArea=void 0;var i=o(6283);Object.defineProperty(e,"ChartArea",{enumerable:!0,get:function(){return i.ChartArea}}),Object.defineProperty(e,"ChartAreaVue2",{enumerable:!0,get:function(){return i.ChartAreaVue2}});var a=o(2750);Object.defineProperty(e,"ChartAxisDefaults",{enumerable:!0,get:function(){return a.ChartAxisDefaults}}),Object.defineProperty(e,"ChartAxisDefaultsVue2",{enumerable:!0,get:function(){return a.ChartAxisDefaultsVue2}});var s=o(5913);Object.defineProperty(e,"ChartCategoryAxis",{enumerable:!0,get:function(){return s.ChartCategoryAxis}}),Object.defineProperty(e,"ChartCategoryAxisVue2",{enumerable:!0,get:function(){return s.ChartCategoryAxisVue2}});var c=o(2055);Object.defineProperty(e,"ChartCategoryAxisItem",{enumerable:!0,get:function(){return c.ChartCategoryAxisItem}}),Object.defineProperty(e,"ChartCategoryAxisItemVue2",{enumerable:!0,get:function(){return c.ChartCategoryAxisItemVue2}});var l=o(8143);Object.defineProperty(e,"ChartLegend",{enumerable:!0,get:function(){return l.ChartLegend}}),Object.defineProperty(e,"ChartLegendVue2",{enumerable:!0,get:function(){return l.ChartLegendVue2}});var h=o(5635);Object.defineProperty(e,"ChartNavigator",{enumerable:!0,get:function(){return h.ChartNavigator}}),Object.defineProperty(e,"ChartNavigatorVue2",{enumerable:!0,get:function(){return h.ChartNavigatorVue2}});var u=o(4077);Object.defineProperty(e,"ChartPane",{enumerable:!0,get:function(){return u.ChartPane}}),Object.defineProperty(e,"ChartPaneVue2",{enumerable:!0,get:function(){return u.ChartPaneVue2}});var p=o(5711);Object.defineProperty(e,"ChartPaneDefaults",{enumerable:!0,get:function(){return p.ChartPaneDefaults}}),Object.defineProperty(e,"ChartPaneDefaultsVue2",{enumerable:!0,get:function(){return p.ChartPaneDefaultsVue2}});var d=o(714);Object.defineProperty(e,"ChartPanes",{enumerable:!0,get:function(){return d.ChartPanes}}),Object.defineProperty(e,"ChartPanesVue2",{enumerable:!0,get:function(){return d.ChartPanesVue2}});var v=o(6859);Object.defineProperty(e,"ChartPlotArea",{enumerable:!0,get:function(){return v.ChartPlotArea}}),Object.defineProperty(e,"ChartPlotAreaVue2",{enumerable:!0,get:function(){return v.ChartPlotAreaVue2}});var f=o(5197);Object.defineProperty(e,"ChartSeries",{enumerable:!0,get:function(){return f.ChartSeries}}),Object.defineProperty(e,"ChartSeriesVue2",{enumerable:!0,get:function(){return f.ChartSeriesVue2}});var m=o(9210);Object.defineProperty(e,"ChartSeriesDefaults",{enumerable:!0,get:function(){return m.ChartSeriesDefaults}}),Object.defineProperty(e,"ChartSeriesDefaultsVue2",{enumerable:!0,get:function(){return m.ChartSeriesDefaultsVue2}});var g=o(485);Object.defineProperty(e,"ChartSeriesItem",{enumerable:!0,get:function(){return g.ChartSeriesItem}}),Object.defineProperty(e,"ChartSeriesItemVue2",{enumerable:!0,get:function(){return g.ChartSeriesItemVue2}});var y=o(9634);Object.defineProperty(e,"ChartTitle",{enumerable:!0,get:function(){return y.ChartTitle}}),Object.defineProperty(e,"ChartTitleVue2",{enumerable:!0,get:function(){return y.ChartTitleVue2}});var b=o(4331);Object.defineProperty(e,"ChartTooltip",{enumerable:!0,get:function(){return b.ChartTooltip}}),Object.defineProperty(e,"ChartTooltipVue2",{enumerable:!0,get:function(){return b.ChartTooltipVue2}});var x=o(1414);Object.defineProperty(e,"ChartValueAxis",{enumerable:!0,get:function(){return x.ChartValueAxis}}),Object.defineProperty(e,"ChartValueAxisVue2",{enumerable:!0,get:function(){return x.ChartValueAxisVue2}});var w=o(5147);Object.defineProperty(e,"ChartValueAxisItem",{enumerable:!0,get:function(){return w.ChartValueAxisItem}}),Object.defineProperty(e,"ChartValueAxisItemVue2",{enumerable:!0,get:function(){return w.ChartValueAxisItemVue2}});var _=o(3479);Object.defineProperty(e,"ChartXAxis",{enumerable:!0,get:function(){return _.ChartXAxis}}),Object.defineProperty(e,"ChartXAxisVue2",{enumerable:!0,get:function(){return _.ChartXAxisVue2}});var C=o(8732);Object.defineProperty(e,"ChartXAxisItem",{enumerable:!0,get:function(){return C.ChartXAxisItem}}),Object.defineProperty(e,"ChartXAxisItemVue2",{enumerable:!0,get:function(){return C.ChartXAxisItemVue2}});var O=o(6988);Object.defineProperty(e,"ChartYAxis",{enumerable:!0,get:function(){return O.ChartYAxis}}),Object.defineProperty(e,"ChartYAxisVue2",{enumerable:!0,get:function(){return O.ChartYAxisVue2}});var S=o(2587);Object.defineProperty(e,"ChartYAxisItem",{enumerable:!0,get:function(){return S.ChartYAxisItem}}),Object.defineProperty(e,"ChartYAxisItemVue2",{enumerable:!0,get:function(){return S.ChartYAxisItemVue2}});var z=o(1426);Object.defineProperty(e,"ChartZoomable",{enumerable:!0,get:function(){return z.ChartZoomable}}),Object.defineProperty(e,"ChartZoomableVue2",{enumerable:!0,get:function(){return z.ChartZoomableVue2}}),n(o(7578),e),n(o(8631),e),n(o(4535),e),n(o(7667),e),n(o(8224),e),n(o(8395),e),n(o(6293),e),n(o(3287),e),n(o(5795),e),n(o(7433),e),n(o(3424),e)},279:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisVue2=e.ChartNavigatorCategoryAxis=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxis",props:{autoBaseUnitSteps:{type:Object,default:function(){}},axisCrossingValue:{type:[Object,Array,Date,Number],default:function(){}},background:{type:String,default:void 0},baseUnit:{type:String,default:function(){},validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},baseUnitStep:{type:[Number,String],default:function(){}},categories:{type:Array,default:function(){}},color:{type:String,default:void 0},justified:{type:Boolean,default:function(){}},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},max:{type:[Number,Object,String,Date],default:function(){}},maxDateGroups:{type:Number,default:void 0},maxDivisions:{type:Number,default:void 0},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},name:{type:Object,default:function(){}},rangeLabels:{type:Object,default:function(){}},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:function(){}},roundToBaseUnit:{type:Boolean,default:function(){}},startAngle:{type:Number,default:void 0},type:{type:String,default:function(){},validator:function(t){return["category","date"].includes(t)}},visible:{type:Boolean,default:function(){}},weekStartDay:{type:Number,default:void 0},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},select:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"categoryAxis"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"categoryAxis"}},[o])}};e.ChartNavigatorCategoryAxisVue2=u;var p=u;e.ChartNavigatorCategoryAxis=p},1990:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorHintVue2=e.ChartNavigatorHint=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorHint",props:{content:{type:Function,default:void 0},format:String,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"hint"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"hint"}},[o])}};e.ChartNavigatorHintVue2=u;var p=u;e.ChartNavigatorHint=p},5854:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorPaneVue2=e.ChartNavigatorPane=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorPane",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},clip:{type:Boolean,default:void 0},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},name:{type:String,default:void 0},padding:{type:[Object,Number],default:function(){}},title:{type:[Object,String],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"pane"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"pane"}},[o])}};e.ChartNavigatorPaneVue2=u;var p=u;e.ChartNavigatorPane=p},6429:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSelectVue2=e.ChartNavigatorSelect=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSelect",props:{from:{type:Date,default:function(){}},mousewheel:{type:[Object,Boolean],default:function(){}},to:{type:Date,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"select"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"select"}},[o])}};e.ChartNavigatorSelectVue2=u;var p=u;e.ChartNavigatorSelect=p},914:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesVue2=e.ChartNavigatorSeries=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(694),l=o(9680),h={name:"KendoChartNavigatorSeries",setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this);return e(c.CollectionConfiguration,{chartKey:"series",attrs:this.v3?void 0:{chartKey:"series",parentKey:"navigator"},parentKey:"navigator"},this.v3?function(){return[o]}:[o])}};e.ChartNavigatorSeriesVue2=h;var u=h;e.ChartNavigatorSeries=u},8061:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItemVue2=e.ChartNavigatorSeriesItem=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesItem",props:{aggregate:{type:[String,Function,Object],default:function(){}},axis:String,border:{type:Object,default:function(){}},categoryAxis:String,categoryField:String,closeField:String,color:{type:[String,Function],default:function(){}},colorField:String,connectors:{type:Object,default:function(){}},currentField:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},dataItems:{type:Array,default:function(){}},downColor:String,downColorField:String,dynamicHeight:{type:Boolean,default:void 0},dynamicSlope:{type:Boolean,default:void 0},errorHighField:String,errorLowField:String,explodeField:String,field:String,fromField:String,gap:Number,highField:String,holeSize:Number,line:{type:Object,default:function(){}},lowField:String,lowerField:String,margin:{type:[Object,Number],default:function(){}},maxSize:Number,meanField:String,medianField:String,minSize:Number,missingValues:{type:String,default:function(){},validator:function(t){return["gap","interpolate","zero"].includes(t)}},name:String,neckRatio:Number,negativeColor:String,negativeValues:{type:Object,default:function(){}},noteTextField:String,opacity:Number,openField:String,outliersField:String,overlay:{type:Object,default:function(){}},padding:Number,q1Field:String,q3Field:String,segmentSpacing:Number,size:Number,sizeField:String,spacing:Number,stack:{type:[Boolean,String,Object],default:function(){}},startAngle:Number,lineStyle:{type:String,default:function(){},validator:function(t){return["normal","step","smooth"].includes(t)}},summaryField:String,target:{type:Object,default:function(){}},toField:String,type:{type:String,default:function(){},validator:function(t){return["area","bar","boxPlot","bubble","bullet","candlestick","column","donut","funnel","horizontalWaterfall","line","ohlc","pie","polarArea","polarLine","polarScatter","radarArea","radarColumn","radarLine","rangeArea","rangeBar","rangeColumn","scatter","scatterLine","verticalArea","verticalBoxPlot","verticalBullet","verticalLine","verticalRangeArea","waterfall"].includes(t)}},upperField:String,visible:{type:Boolean,default:void 0},visibleInLegend:{type:Boolean,default:void 0},visibleInLegendField:String,visual:{type:Function,default:void 0},width:Number,xAxis:String,xErrorHighField:String,xErrorLowField:String,xField:String,yAxis:String,yErrorHighField:String,yErrorLowField:String,yField:String,zIndex:Number,errorBars:{type:Object,default:function(){}},extremes:{type:Object,default:function(){}},highlight:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},markers:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},outliers:{type:Object,default:function(){}},tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r},(function(){return o})):e(c.Configuration,{props:{config:r}},[o])}};e.ChartNavigatorSeriesItemVue2=u;var p=u;e.ChartNavigatorSeriesItem=p},2385:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisCrosshairVue2=e.ChartNavigatorCategoryAxisCrosshair=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisCrosshair",props:{color:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"crosshair"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"crosshair"}},[o])}};e.ChartNavigatorCategoryAxisCrosshairVue2=u;var p=u;e.ChartNavigatorCategoryAxisCrosshair=p},9676:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisCrosshairTooltipVue2=e.ChartNavigatorCategoryAxisCrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"tooltip"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"tooltip"}},[o])}};e.ChartNavigatorCategoryAxisCrosshairTooltipVue2=u;var p=u;e.ChartNavigatorCategoryAxisCrosshairTooltip=p},567:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisLabelsVue2=e.ChartNavigatorCategoryAxisLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:function(){}},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["circle","column","center","right","left"].includes(t)}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartNavigatorCategoryAxisLabelsVue2=u;var p=u;e.ChartNavigatorCategoryAxisLabels=p},8099:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesVue2=e.ChartNavigatorCategoryAxisNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartNavigatorCategoryAxisNotesVue2=u;var p=u;e.ChartNavigatorCategoryAxisNotes=p},7470:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesIconVue2=e.ChartNavigatorCategoryAxisNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartNavigatorCategoryAxisNotesIconVue2=u;var p=u;e.ChartNavigatorCategoryAxisNotesIcon=p},7606:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesLabelVue2=e.ChartNavigatorCategoryAxisNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["start","end","onAxis",""].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartNavigatorCategoryAxisNotesLabelVue2=u;var p=u;e.ChartNavigatorCategoryAxisNotesLabel=p},9806:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisSelectVue2=e.ChartNavigatorCategoryAxisSelect=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisSelect",props:{from:{type:[Object,Number,String],default:function(){}},max:{type:[Object,Number,String,Date],default:function(){}},min:{type:[Object,Number,String,Date],default:function(){}},mousewheel:{type:[Object,Boolean],default:function(){}},to:{type:[Object,Number,String],default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"select"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"select"}},[o])}};e.ChartNavigatorCategoryAxisSelectVue2=u;var p=u;e.ChartNavigatorCategoryAxisSelect=p},4715:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisTitleVue2=e.ChartNavigatorCategoryAxisTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorCategoryAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartNavigatorCategoryAxisTitleVue2=u;var p=u;e.ChartNavigatorCategoryAxisTitle=p},481:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesLabelVue2=e.ChartNavigatorCategoryAxisNotesLabel=e.ChartNavigatorCategoryAxisNotesIconVue2=e.ChartNavigatorCategoryAxisNotesIcon=e.ChartNavigatorCategoryAxisNotesVue2=e.ChartNavigatorCategoryAxisNotes=e.ChartNavigatorCategoryAxisLabelsVue2=e.ChartNavigatorCategoryAxisLabels=e.ChartNavigatorCategoryAxisTitleVue2=e.ChartNavigatorCategoryAxisTitle=e.ChartNavigatorCategoryAxisSelectVue2=e.ChartNavigatorCategoryAxisSelect=e.ChartNavigatorCategoryAxisCrosshairTooltipVue2=e.ChartNavigatorCategoryAxisCrosshairTooltip=e.ChartNavigatorCategoryAxisCrosshairVue2=e.ChartNavigatorCategoryAxisCrosshair=void 0;var r=o(2385);Object.defineProperty(e,"ChartNavigatorCategoryAxisCrosshair",{enumerable:!0,get:function(){return r.ChartNavigatorCategoryAxisCrosshair}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisCrosshairVue2",{enumerable:!0,get:function(){return r.ChartNavigatorCategoryAxisCrosshairVue2}});var n=o(9676);Object.defineProperty(e,"ChartNavigatorCategoryAxisCrosshairTooltip",{enumerable:!0,get:function(){return n.ChartNavigatorCategoryAxisCrosshairTooltip}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisCrosshairTooltipVue2",{enumerable:!0,get:function(){return n.ChartNavigatorCategoryAxisCrosshairTooltipVue2}});var i=o(9806);Object.defineProperty(e,"ChartNavigatorCategoryAxisSelect",{enumerable:!0,get:function(){return i.ChartNavigatorCategoryAxisSelect}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisSelectVue2",{enumerable:!0,get:function(){return i.ChartNavigatorCategoryAxisSelectVue2}});var a=o(4715);Object.defineProperty(e,"ChartNavigatorCategoryAxisTitle",{enumerable:!0,get:function(){return a.ChartNavigatorCategoryAxisTitle}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisTitleVue2",{enumerable:!0,get:function(){return a.ChartNavigatorCategoryAxisTitleVue2}});var s=o(567);Object.defineProperty(e,"ChartNavigatorCategoryAxisLabels",{enumerable:!0,get:function(){return s.ChartNavigatorCategoryAxisLabels}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisLabelsVue2",{enumerable:!0,get:function(){return s.ChartNavigatorCategoryAxisLabelsVue2}});var c=o(8099);Object.defineProperty(e,"ChartNavigatorCategoryAxisNotes",{enumerable:!0,get:function(){return c.ChartNavigatorCategoryAxisNotes}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesVue2",{enumerable:!0,get:function(){return c.ChartNavigatorCategoryAxisNotesVue2}});var l=o(7470);Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesIcon",{enumerable:!0,get:function(){return l.ChartNavigatorCategoryAxisNotesIcon}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesIconVue2",{enumerable:!0,get:function(){return l.ChartNavigatorCategoryAxisNotesIconVue2}});var h=o(7606);Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesLabel",{enumerable:!0,get:function(){return h.ChartNavigatorCategoryAxisNotesLabel}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesLabelVue2",{enumerable:!0,get:function(){return h.ChartNavigatorCategoryAxisNotesLabelVue2}})},3424:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||r(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItemVue2=e.ChartNavigatorSeriesItem=e.ChartNavigatorSeriesVue2=e.ChartNavigatorSeries=e.ChartNavigatorSelectVue2=e.ChartNavigatorSelect=e.ChartNavigatorPaneVue2=e.ChartNavigatorPane=e.ChartNavigatorHintVue2=e.ChartNavigatorHint=e.ChartNavigatorCategoryAxisVue2=e.ChartNavigatorCategoryAxis=void 0;var i=o(279);Object.defineProperty(e,"ChartNavigatorCategoryAxis",{enumerable:!0,get:function(){return i.ChartNavigatorCategoryAxis}}),Object.defineProperty(e,"ChartNavigatorCategoryAxisVue2",{enumerable:!0,get:function(){return i.ChartNavigatorCategoryAxisVue2}});var a=o(1990);Object.defineProperty(e,"ChartNavigatorHint",{enumerable:!0,get:function(){return a.ChartNavigatorHint}}),Object.defineProperty(e,"ChartNavigatorHintVue2",{enumerable:!0,get:function(){return a.ChartNavigatorHintVue2}});var s=o(5854);Object.defineProperty(e,"ChartNavigatorPane",{enumerable:!0,get:function(){return s.ChartNavigatorPane}}),Object.defineProperty(e,"ChartNavigatorPaneVue2",{enumerable:!0,get:function(){return s.ChartNavigatorPaneVue2}});var c=o(6429);Object.defineProperty(e,"ChartNavigatorSelect",{enumerable:!0,get:function(){return c.ChartNavigatorSelect}}),Object.defineProperty(e,"ChartNavigatorSelectVue2",{enumerable:!0,get:function(){return c.ChartNavigatorSelectVue2}});var l=o(914);Object.defineProperty(e,"ChartNavigatorSeries",{enumerable:!0,get:function(){return l.ChartNavigatorSeries}}),Object.defineProperty(e,"ChartNavigatorSeriesVue2",{enumerable:!0,get:function(){return l.ChartNavigatorSeriesVue2}});var h=o(8061);Object.defineProperty(e,"ChartNavigatorSeriesItem",{enumerable:!0,get:function(){return h.ChartNavigatorSeriesItem}}),Object.defineProperty(e,"ChartNavigatorSeriesItemVue2",{enumerable:!0,get:function(){return h.ChartNavigatorSeriesItemVue2}}),n(o(481),e),n(o(5529),e),n(o(9935),e)},1643:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorPaneTitleVue2=e.ChartNavigatorPaneTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorPaneTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartNavigatorPaneTitleVue2=u;var p=u;e.ChartNavigatorPaneTitle=p},5529:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorPaneTitleVue2=e.ChartNavigatorPaneTitle=void 0;var r=o(1643);Object.defineProperty(e,"ChartNavigatorPaneTitle",{enumerable:!0,get:function(){return r.ChartNavigatorPaneTitle}}),Object.defineProperty(e,"ChartNavigatorPaneTitleVue2",{enumerable:!0,get:function(){return r.ChartNavigatorPaneTitleVue2}})},1175:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesErrorBarsVue2=e.ChartNavigatorSeriesErrorBars=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesErrorBars",props:{color:String,endCaps:{type:Boolean,default:void 0},line:{type:Object,default:function(){}},value:String,visual:{type:Function,default:void 0},xValue:String,yValue:String},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"errorBars"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"errorBars"}},[o])}};e.ChartNavigatorSeriesErrorBarsVue2=u;var p=u;e.ChartNavigatorSeriesErrorBars=p},7757:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesExtremesVue2=e.ChartNavigatorSeriesExtremes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesExtremes",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"extremes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"extremes"}},[o])}};e.ChartNavigatorSeriesExtremesVue2=u;var p=u;e.ChartNavigatorSeriesExtremes=p},5240:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesHighlightVue2=e.ChartNavigatorSeriesHighlight=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesHighlight",props:{border:{type:Object,default:function(){}},color:String,line:{type:Object,default:function(){}},opacity:Number,toggle:{type:Function,default:void 0},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"highlight"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"highlight"}},[o])}};e.ChartNavigatorSeriesHighlightVue2=u;var p=u;e.ChartNavigatorSeriesHighlight=p},5738:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesLabelsVue2=e.ChartNavigatorSeriesLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesLabels",props:{align:{type:String,default:function(){},validator:function(t){return["circle","column","center","right","left"].includes(t)}},background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},distance:Number,font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["auto","above","below","center","insideBase","insideEnd","left","outsideEnd","right","top","bottom"].includes(t)}},visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartNavigatorSeriesLabelsVue2=u;var p=u;e.ChartNavigatorSeriesLabels=p},9188:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesLabelsFromVue2=e.ChartNavigatorSeriesLabelsFrom=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesLabelsFrom",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"from"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"from"}},[o])}};e.ChartNavigatorSeriesLabelsFromVue2=u;var p=u;e.ChartNavigatorSeriesLabelsFrom=p},4974:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesLabelsToVue2=e.ChartNavigatorSeriesLabelsTo=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesLabelsTo",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"to"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"to"}},[o])}};e.ChartNavigatorSeriesLabelsToVue2=u;var p=u;e.ChartNavigatorSeriesLabelsTo=p},2370:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesMarkersVue2=e.ChartNavigatorSeriesMarkers=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesMarkers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"markers"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"markers"}},[o])}};e.ChartNavigatorSeriesMarkersVue2=u;var p=u;e.ChartNavigatorSeriesMarkers=p},5816:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesVue2=e.ChartNavigatorSeriesNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesNotes",props:{line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartNavigatorSeriesNotesVue2=u;var p=u;e.ChartNavigatorSeriesNotes=p},633:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesIconVue2=e.ChartNavigatorSeriesNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartNavigatorSeriesNotesIconVue2=u;var p=u;e.ChartNavigatorSeriesNotesIcon=p},134:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesLabelVue2=e.ChartNavigatorSeriesNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartNavigatorSeriesNotesLabelVue2=u;var p=u;e.ChartNavigatorSeriesNotesLabel=p},2378:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItemOutliersVue2=e.ChartNavigatorSeriesItemOutliers=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartNavigatorSeriesItemOutliers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"outliers"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"outliers"}},[o])}};e.ChartNavigatorSeriesItemOutliersVue2=u;var p=u;e.ChartNavigatorSeriesItemOutliers=p},6374:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItemTooltipVue2=e.ChartNavigatorSeriesItemTooltip=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=o(7098),h=o(9680),u=o(5320),p={name:"KendoChartNavigatorSeriesItemTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},render:[String,Function,Object],visible:{type:Boolean,default:void 0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=(0,h.getDefaultSlots)(this),n=(0,u.removeUndefinedProps)(this.$props),i=h.templateRendering.call(this,this.$props.render,h.getListeners.call(this));return this.v3?e(l.Configuration,{config:r(r({},n),{render:i}),chartKey:"tooltip"},(function(){return o})):e(l.Configuration,{props:{config:r(r({},n),{render:i}),chartKey:"tooltip"}},[o])}};e.ChartNavigatorSeriesItemTooltipVue2=p;var d=p;e.ChartNavigatorSeriesItemTooltip=d},9935:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesIconVue2=e.ChartNavigatorSeriesNotesIcon=e.ChartNavigatorSeriesNotesLabelVue2=e.ChartNavigatorSeriesNotesLabel=e.ChartNavigatorSeriesLabelsToVue2=e.ChartNavigatorSeriesLabelsTo=e.ChartNavigatorSeriesLabelsFromVue2=e.ChartNavigatorSeriesLabelsFrom=e.ChartNavigatorSeriesErrorBarsVue2=e.ChartNavigatorSeriesErrorBars=e.ChartNavigatorSeriesExtremesVue2=e.ChartNavigatorSeriesExtremes=e.ChartNavigatorSeriesHighlightVue2=e.ChartNavigatorSeriesHighlight=e.ChartNavigatorSeriesLabelsVue2=e.ChartNavigatorSeriesLabels=e.ChartNavigatorSeriesMarkersVue2=e.ChartNavigatorSeriesMarkers=e.ChartNavigatorSeriesNotesVue2=e.ChartNavigatorSeriesNotes=e.ChartNavigatorSeriesItemOutliersVue2=e.ChartNavigatorSeriesItemOutliers=e.ChartNavigatorSeriesItemTooltipVue2=e.ChartNavigatorSeriesItemTooltip=void 0;var r=o(6374);Object.defineProperty(e,"ChartNavigatorSeriesItemTooltip",{enumerable:!0,get:function(){return r.ChartNavigatorSeriesItemTooltip}}),Object.defineProperty(e,"ChartNavigatorSeriesItemTooltipVue2",{enumerable:!0,get:function(){return r.ChartNavigatorSeriesItemTooltipVue2}});var n=o(2378);Object.defineProperty(e,"ChartNavigatorSeriesItemOutliers",{enumerable:!0,get:function(){return n.ChartNavigatorSeriesItemOutliers}}),Object.defineProperty(e,"ChartNavigatorSeriesItemOutliersVue2",{enumerable:!0,get:function(){return n.ChartNavigatorSeriesItemOutliersVue2}});var i=o(5816);Object.defineProperty(e,"ChartNavigatorSeriesNotes",{enumerable:!0,get:function(){return i.ChartNavigatorSeriesNotes}}),Object.defineProperty(e,"ChartNavigatorSeriesNotesVue2",{enumerable:!0,get:function(){return i.ChartNavigatorSeriesNotesVue2}});var a=o(2370);Object.defineProperty(e,"ChartNavigatorSeriesMarkers",{enumerable:!0,get:function(){return a.ChartNavigatorSeriesMarkers}}),Object.defineProperty(e,"ChartNavigatorSeriesMarkersVue2",{enumerable:!0,get:function(){return a.ChartNavigatorSeriesMarkersVue2}});var s=o(5738);Object.defineProperty(e,"ChartNavigatorSeriesLabels",{enumerable:!0,get:function(){return s.ChartNavigatorSeriesLabels}}),Object.defineProperty(e,"ChartNavigatorSeriesLabelsVue2",{enumerable:!0,get:function(){return s.ChartNavigatorSeriesLabelsVue2}});var c=o(5240);Object.defineProperty(e,"ChartNavigatorSeriesHighlight",{enumerable:!0,get:function(){return c.ChartNavigatorSeriesHighlight}}),Object.defineProperty(e,"ChartNavigatorSeriesHighlightVue2",{enumerable:!0,get:function(){return c.ChartNavigatorSeriesHighlightVue2}});var l=o(7757);Object.defineProperty(e,"ChartNavigatorSeriesExtremes",{enumerable:!0,get:function(){return l.ChartNavigatorSeriesExtremes}}),Object.defineProperty(e,"ChartNavigatorSeriesExtremesVue2",{enumerable:!0,get:function(){return l.ChartNavigatorSeriesExtremesVue2}});var h=o(1175);Object.defineProperty(e,"ChartNavigatorSeriesErrorBars",{enumerable:!0,get:function(){return h.ChartNavigatorSeriesErrorBars}}),Object.defineProperty(e,"ChartNavigatorSeriesErrorBarsVue2",{enumerable:!0,get:function(){return h.ChartNavigatorSeriesErrorBarsVue2}});var u=o(9188);Object.defineProperty(e,"ChartNavigatorSeriesLabelsFrom",{enumerable:!0,get:function(){return u.ChartNavigatorSeriesLabelsFrom}}),Object.defineProperty(e,"ChartNavigatorSeriesLabelsFromVue2",{enumerable:!0,get:function(){return u.ChartNavigatorSeriesLabelsFromVue2}});var p=o(4974);Object.defineProperty(e,"ChartNavigatorSeriesLabelsTo",{enumerable:!0,get:function(){return p.ChartNavigatorSeriesLabelsTo}}),Object.defineProperty(e,"ChartNavigatorSeriesLabelsToVue2",{enumerable:!0,get:function(){return p.ChartNavigatorSeriesLabelsToVue2}});var d=o(134);Object.defineProperty(e,"ChartNavigatorSeriesNotesLabel",{enumerable:!0,get:function(){return d.ChartNavigatorSeriesNotesLabel}}),Object.defineProperty(e,"ChartNavigatorSeriesNotesLabelVue2",{enumerable:!0,get:function(){return d.ChartNavigatorSeriesNotesLabelVue2}});var v=o(633);Object.defineProperty(e,"ChartNavigatorSeriesNotesIcon",{enumerable:!0,get:function(){return v.ChartNavigatorSeriesNotesIcon}}),Object.defineProperty(e,"ChartNavigatorSeriesNotesIconVue2",{enumerable:!0,get:function(){return v.ChartNavigatorSeriesNotesIconVue2}})},3687:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneDefaultsTitleVue2=e.ChartPaneDefaultsTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartPaneDefaultsTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartPaneDefaultsTitleVue2=u;var p=u;e.ChartPaneDefaultsTitle=p},7667:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneDefaultsTitleVue2=e.ChartPaneDefaultsTitle=void 0;var r=o(3687);Object.defineProperty(e,"ChartPaneDefaultsTitle",{enumerable:!0,get:function(){return r.ChartPaneDefaultsTitle}}),Object.defineProperty(e,"ChartPaneDefaultsTitleVue2",{enumerable:!0,get:function(){return r.ChartPaneDefaultsTitleVue2}})},5661:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneTitleVue2=e.ChartPaneTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartPaneTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartPaneTitleVue2=u;var p=u;e.ChartPaneTitle=p},4535:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneTitleVue2=e.ChartPaneTitle=void 0;var r=o(5661);Object.defineProperty(e,"ChartPaneTitle",{enumerable:!0,get:function(){return r.ChartPaneTitle}}),Object.defineProperty(e,"ChartPaneTitleVue2",{enumerable:!0,get:function(){return r.ChartPaneTitleVue2}})},2863:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsLabelsVue2=e.ChartSeriesDefaultsLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaultsLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartSeriesDefaultsLabelsVue2=u;var p=u;e.ChartSeriesDefaultsLabels=p},2431:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsLabelsFromVue2=e.ChartSeriesDefaultsLabelsFrom=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaultsLabelsFrom",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"from"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"from"}},[o])}};e.ChartSeriesDefaultsLabelsFromVue2=u;var p=u;e.ChartSeriesDefaultsLabelsFrom=p},2068:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsLabelsToVue2=e.ChartSeriesDefaultsLabelsTo=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaultsLabelsTo",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"to"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"to"}},[o])}};e.ChartSeriesDefaultsLabelsToVue2=u;var p=u;e.ChartSeriesDefaultsLabelsTo=p},7563:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesVue2=e.ChartSeriesDefaultsNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaultsNotes",props:{line:{type:Object,default:function(){}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartSeriesDefaultsNotesVue2=u;var p=u;e.ChartSeriesDefaultsNotes=p},6108:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesIconVue2=e.ChartSeriesDefaultsNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaultsNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartSeriesDefaultsNotesIconVue2=u;var p=u;e.ChartSeriesDefaultsNotesIcon=p},8719:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesLabelVue2=e.ChartSeriesDefaultsNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesDefaultsNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartSeriesDefaultsNotesLabelVue2=u;var p=u;e.ChartSeriesDefaultsNotesLabel=p},9129:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsItemTooltipVue2=e.ChartSeriesDefaultsItemTooltip=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=o(7098),h=o(9680),u=o(5320),p={name:"KendoChartSeriesDefaultsItemTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:void 0},render:[String,Function,Object]},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=(0,h.getDefaultSlots)(this),n=(0,u.removeUndefinedProps)(this.$props),i=h.templateRendering.call(this,this.$props.render,h.getListeners.call(this));return this.v3?e(l.Configuration,{config:r(r({},n),{render:i}),chartKey:"tooltip"},(function(){return o})):e(l.Configuration,{props:{config:r(r({},n),{render:i}),chartKey:"tooltip"}},[o])}};e.ChartSeriesDefaultsItemTooltipVue2=p;var d=p;e.ChartSeriesDefaultsItemTooltip=d},8395:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesLabelVue2=e.ChartSeriesDefaultsNotesLabel=e.ChartSeriesDefaultsNotesIconVue2=e.ChartSeriesDefaultsNotesIcon=e.ChartSeriesDefaultsNotesVue2=e.ChartSeriesDefaultsNotes=e.ChartSeriesDefaultsLabelsToVue2=e.ChartSeriesDefaultsLabelsTo=e.ChartSeriesDefaultsLabelsFromVue2=e.ChartSeriesDefaultsLabelsFrom=e.ChartSeriesDefaultsLabelsVue2=e.ChartSeriesDefaultsLabels=e.ChartSeriesDefaultsItemTooltipVue2=e.ChartSeriesDefaultsItemTooltip=void 0;var r=o(9129);Object.defineProperty(e,"ChartSeriesDefaultsItemTooltip",{enumerable:!0,get:function(){return r.ChartSeriesDefaultsItemTooltip}}),Object.defineProperty(e,"ChartSeriesDefaultsItemTooltipVue2",{enumerable:!0,get:function(){return r.ChartSeriesDefaultsItemTooltipVue2}});var n=o(2863);Object.defineProperty(e,"ChartSeriesDefaultsLabels",{enumerable:!0,get:function(){return n.ChartSeriesDefaultsLabels}}),Object.defineProperty(e,"ChartSeriesDefaultsLabelsVue2",{enumerable:!0,get:function(){return n.ChartSeriesDefaultsLabelsVue2}});var i=o(2431);Object.defineProperty(e,"ChartSeriesDefaultsLabelsFrom",{enumerable:!0,get:function(){return i.ChartSeriesDefaultsLabelsFrom}}),Object.defineProperty(e,"ChartSeriesDefaultsLabelsFromVue2",{enumerable:!0,get:function(){return i.ChartSeriesDefaultsLabelsFromVue2}});var a=o(2068);Object.defineProperty(e,"ChartSeriesDefaultsLabelsTo",{enumerable:!0,get:function(){return a.ChartSeriesDefaultsLabelsTo}}),Object.defineProperty(e,"ChartSeriesDefaultsLabelsToVue2",{enumerable:!0,get:function(){return a.ChartSeriesDefaultsLabelsToVue2}});var s=o(7563);Object.defineProperty(e,"ChartSeriesDefaultsNotes",{enumerable:!0,get:function(){return s.ChartSeriesDefaultsNotes}}),Object.defineProperty(e,"ChartSeriesDefaultsNotesVue2",{enumerable:!0,get:function(){return s.ChartSeriesDefaultsNotesVue2}});var c=o(6108);Object.defineProperty(e,"ChartSeriesDefaultsNotesIcon",{enumerable:!0,get:function(){return c.ChartSeriesDefaultsNotesIcon}}),Object.defineProperty(e,"ChartSeriesDefaultsNotesIconVue2",{enumerable:!0,get:function(){return c.ChartSeriesDefaultsNotesIconVue2}});var l=o(8719);Object.defineProperty(e,"ChartSeriesDefaultsNotesLabel",{enumerable:!0,get:function(){return l.ChartSeriesDefaultsNotesLabel}}),Object.defineProperty(e,"ChartSeriesDefaultsNotesLabelVue2",{enumerable:!0,get:function(){return l.ChartSeriesDefaultsNotesLabelVue2}})},9277:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesErrorBarsVue2=e.ChartSeriesErrorBars=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesErrorBars",props:{color:String,endCaps:{type:Boolean,default:void 0},line:{type:Object,default:function(){}},value:String,visual:{type:Function,default:void 0},xValue:String,yValue:String},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"errorBars"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"errorBars"}},[o])}};e.ChartSeriesErrorBarsVue2=u;var p=u;e.ChartSeriesErrorBars=p},1914:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesExtremesVue2=e.ChartSeriesExtremes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesExtremes",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"extremes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"extremes"}},[o])}};e.ChartSeriesExtremesVue2=u;var p=u;e.ChartSeriesExtremes=p},6838:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesHighlightVue2=e.ChartSeriesHighlight=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesHighlight",props:{border:{type:Object,default:function(){}},color:String,line:{type:Object,default:function(){}},opacity:Number,toggle:{type:Function,default:void 0},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"highlight"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"highlight"}},[o])}};e.ChartSeriesHighlightVue2=u;var p=u;e.ChartSeriesHighlight=p},4908:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesLabelsVue2=e.ChartSeriesLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesLabels",props:{align:{type:String,default:function(){},validator:function(t){return["circle","column","center","right","left"].includes(t)}},background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},distance:Number,font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["auto","above","below","center","insideBase","insideEnd","left","outsideEnd","right","top","bottom"].includes(t)}},visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartSeriesLabelsVue2=u;var p=u;e.ChartSeriesLabels=p},8873:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesLabelsFromVue2=e.ChartSeriesLabelsFrom=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesLabelsFrom",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"from"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"from"}},[o])}};e.ChartSeriesLabelsFromVue2=u;var p=u;e.ChartSeriesLabelsFrom=p},5138:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesLabelsToVue2=e.ChartSeriesLabelsTo=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesLabelsTo",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"to"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"to"}},[o])}};e.ChartSeriesLabelsToVue2=u;var p=u;e.ChartSeriesLabelsTo=p},5477:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesMarkersVue2=e.ChartSeriesMarkers=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesMarkers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"markers"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"markers"}},[o])}};e.ChartSeriesMarkersVue2=u;var p=u;e.ChartSeriesMarkers=p},8175:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesVue2=e.ChartSeriesNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesNotes",props:{line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartSeriesNotesVue2=u;var p=u;e.ChartSeriesNotes=p},7985:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesIconVue2=e.ChartSeriesNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartSeriesNotesIconVue2=u;var p=u;e.ChartSeriesNotesIcon=p},185:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesLabelVue2=e.ChartSeriesNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartSeriesNotesLabelVue2=u;var p=u;e.ChartSeriesNotesLabel=p},1129:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesItemOutliersVue2=e.ChartSeriesItemOutliers=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartSeriesItemOutliers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"outliers"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"outliers"}},[o])}};e.ChartSeriesItemOutliersVue2=u;var p=u;e.ChartSeriesItemOutliers=p},3569:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesItemTooltipVue2=e.ChartSeriesItemTooltip=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=o(7098),h=o(9680),u=o(5320),p={name:"KendoChartSeriesItemTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},render:[String,Function,Object],visible:{type:Boolean,default:!0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=(0,h.getDefaultSlots)(this),n=(0,u.removeUndefinedProps)(this.$props),i=h.templateRendering.call(this,this.$props.render,h.getListeners.call(this));return this.v3?e(l.Configuration,{config:r(r({},n),{render:i}),chartKey:"tooltip"},(function(){return o})):e(l.Configuration,{props:{config:r(r({},n),{render:i}),chartKey:"tooltip"}},[o])}};e.ChartSeriesItemTooltipVue2=p;var d=p;e.ChartSeriesItemTooltip=d},6293:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesIconVue2=e.ChartSeriesNotesIcon=e.ChartSeriesNotesLabelVue2=e.ChartSeriesNotesLabel=e.ChartSeriesLabelsToVue2=e.ChartSeriesLabelsTo=e.ChartSeriesLabelsFromVue2=e.ChartSeriesLabelsFrom=e.ChartSeriesErrorBarsVue2=e.ChartSeriesErrorBars=e.ChartSeriesExtremesVue2=e.ChartSeriesExtremes=e.ChartSeriesHighlightVue2=e.ChartSeriesHighlight=e.ChartSeriesLabelsVue2=e.ChartSeriesLabels=e.ChartSeriesMarkersVue2=e.ChartSeriesMarkers=e.ChartSeriesNotesVue2=e.ChartSeriesNotes=e.ChartSeriesItemOutliersVue2=e.ChartSeriesItemOutliers=e.ChartSeriesItemTooltipVue2=e.ChartSeriesItemTooltip=void 0;var r=o(3569);Object.defineProperty(e,"ChartSeriesItemTooltip",{enumerable:!0,get:function(){return r.ChartSeriesItemTooltip}}),Object.defineProperty(e,"ChartSeriesItemTooltipVue2",{enumerable:!0,get:function(){return r.ChartSeriesItemTooltipVue2}});var n=o(1129);Object.defineProperty(e,"ChartSeriesItemOutliers",{enumerable:!0,get:function(){return n.ChartSeriesItemOutliers}}),Object.defineProperty(e,"ChartSeriesItemOutliersVue2",{enumerable:!0,get:function(){return n.ChartSeriesItemOutliersVue2}});var i=o(8175);Object.defineProperty(e,"ChartSeriesNotes",{enumerable:!0,get:function(){return i.ChartSeriesNotes}}),Object.defineProperty(e,"ChartSeriesNotesVue2",{enumerable:!0,get:function(){return i.ChartSeriesNotesVue2}});var a=o(5477);Object.defineProperty(e,"ChartSeriesMarkers",{enumerable:!0,get:function(){return a.ChartSeriesMarkers}}),Object.defineProperty(e,"ChartSeriesMarkersVue2",{enumerable:!0,get:function(){return a.ChartSeriesMarkersVue2}});var s=o(4908);Object.defineProperty(e,"ChartSeriesLabels",{enumerable:!0,get:function(){return s.ChartSeriesLabels}}),Object.defineProperty(e,"ChartSeriesLabelsVue2",{enumerable:!0,get:function(){return s.ChartSeriesLabelsVue2}});var c=o(6838);Object.defineProperty(e,"ChartSeriesHighlight",{enumerable:!0,get:function(){return c.ChartSeriesHighlight}}),Object.defineProperty(e,"ChartSeriesHighlightVue2",{enumerable:!0,get:function(){return c.ChartSeriesHighlightVue2}});var l=o(1914);Object.defineProperty(e,"ChartSeriesExtremes",{enumerable:!0,get:function(){return l.ChartSeriesExtremes}}),Object.defineProperty(e,"ChartSeriesExtremesVue2",{enumerable:!0,get:function(){return l.ChartSeriesExtremesVue2}});var h=o(9277);Object.defineProperty(e,"ChartSeriesErrorBars",{enumerable:!0,get:function(){return h.ChartSeriesErrorBars}}),Object.defineProperty(e,"ChartSeriesErrorBarsVue2",{enumerable:!0,get:function(){return h.ChartSeriesErrorBarsVue2}});var u=o(8873);Object.defineProperty(e,"ChartSeriesLabelsFrom",{enumerable:!0,get:function(){return u.ChartSeriesLabelsFrom}}),Object.defineProperty(e,"ChartSeriesLabelsFromVue2",{enumerable:!0,get:function(){return u.ChartSeriesLabelsFromVue2}});var p=o(5138);Object.defineProperty(e,"ChartSeriesLabelsTo",{enumerable:!0,get:function(){return p.ChartSeriesLabelsTo}}),Object.defineProperty(e,"ChartSeriesLabelsToVue2",{enumerable:!0,get:function(){return p.ChartSeriesLabelsToVue2}});var d=o(185);Object.defineProperty(e,"ChartSeriesNotesLabel",{enumerable:!0,get:function(){return d.ChartSeriesNotesLabel}}),Object.defineProperty(e,"ChartSeriesNotesLabelVue2",{enumerable:!0,get:function(){return d.ChartSeriesNotesLabelVue2}});var v=o(7985);Object.defineProperty(e,"ChartSeriesNotesIcon",{enumerable:!0,get:function(){return v.ChartSeriesNotesIcon}}),Object.defineProperty(e,"ChartSeriesNotesIconVue2",{enumerable:!0,get:function(){return v.ChartSeriesNotesIconVue2}})},1319:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisCrosshairVue2=e.ChartValueAxisCrosshair=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisCrosshair",props:{color:String,opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"crosshair"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"crosshair"}},[o])}};e.ChartValueAxisCrosshairVue2=u;var p=u;e.ChartValueAxisCrosshair=p},5231:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisCrosshairTooltipVue2=e.ChartValueAxisCrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"tooltip"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"tooltip"}},[o])}};e.ChartValueAxisCrosshairTooltipVue2=u;var p=u;e.ChartValueAxisCrosshairTooltip=p},1031:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisLabelsVue2=e.ChartValueAxisLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartValueAxisLabelsVue2=u;var p=u;e.ChartValueAxisLabels=p},3101:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesVue2=e.ChartValueAxisNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartValueAxisNotesVue2=u;var p=u;e.ChartValueAxisNotes=p},8701:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesIconVue2=e.ChartValueAxisNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartValueAxisNotesIconVue2=u;var p=u;e.ChartValueAxisNotesIcon=p},9258:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesLabelVue2=e.ChartValueAxisNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartValueAxisNotesLabelVue2=u;var p=u;e.ChartValueAxisNotesLabel=p},9199:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisTitleVue2=e.ChartValueAxisTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartValueAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartValueAxisTitleVue2=u;var p=u;e.ChartValueAxisTitle=p},3287:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesLabelVue2=e.ChartValueAxisNotesLabel=e.ChartValueAxisNotesIconVue2=e.ChartValueAxisNotesIcon=e.ChartValueAxisNotesVue2=e.ChartValueAxisNotes=e.ChartValueAxisLabelsVue2=e.ChartValueAxisLabels=e.ChartValueAxisTitleVue2=e.ChartValueAxisTitle=e.ChartValueAxisCrosshairTooltipVue2=e.ChartValueAxisCrosshairTooltip=e.ChartValueAxisCrosshairVue2=e.ChartValueAxisCrosshair=void 0;var r=o(1319);Object.defineProperty(e,"ChartValueAxisCrosshair",{enumerable:!0,get:function(){return r.ChartValueAxisCrosshair}}),Object.defineProperty(e,"ChartValueAxisCrosshairVue2",{enumerable:!0,get:function(){return r.ChartValueAxisCrosshairVue2}});var n=o(5231);Object.defineProperty(e,"ChartValueAxisCrosshairTooltip",{enumerable:!0,get:function(){return n.ChartValueAxisCrosshairTooltip}}),Object.defineProperty(e,"ChartValueAxisCrosshairTooltipVue2",{enumerable:!0,get:function(){return n.ChartValueAxisCrosshairTooltipVue2}});var i=o(1031);Object.defineProperty(e,"ChartValueAxisLabels",{enumerable:!0,get:function(){return i.ChartValueAxisLabels}}),Object.defineProperty(e,"ChartValueAxisLabelsVue2",{enumerable:!0,get:function(){return i.ChartValueAxisLabelsVue2}});var a=o(3101);Object.defineProperty(e,"ChartValueAxisNotes",{enumerable:!0,get:function(){return a.ChartValueAxisNotes}}),Object.defineProperty(e,"ChartValueAxisNotesVue2",{enumerable:!0,get:function(){return a.ChartValueAxisNotesVue2}});var s=o(8701);Object.defineProperty(e,"ChartValueAxisNotesIcon",{enumerable:!0,get:function(){return s.ChartValueAxisNotesIcon}}),Object.defineProperty(e,"ChartValueAxisNotesIconVue2",{enumerable:!0,get:function(){return s.ChartValueAxisNotesIconVue2}});var c=o(9258);Object.defineProperty(e,"ChartValueAxisNotesLabel",{enumerable:!0,get:function(){return c.ChartValueAxisNotesLabel}}),Object.defineProperty(e,"ChartValueAxisNotesLabelVue2",{enumerable:!0,get:function(){return c.ChartValueAxisNotesLabelVue2}});var l=o(9199);Object.defineProperty(e,"ChartValueAxisTitle",{enumerable:!0,get:function(){return l.ChartValueAxisTitle}}),Object.defineProperty(e,"ChartValueAxisTitleVue2",{enumerable:!0,get:function(){return l.ChartValueAxisTitleVue2}})},9030:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisCrosshairVue2=e.ChartXAxisCrosshair=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisCrosshair",props:{color:String,opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"crosshair"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"crosshair"}},[o])}};e.ChartXAxisCrosshairVue2=u;var p=u;e.ChartXAxisCrosshair=p},8697:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisCrosshairTooltipVue2=e.ChartXAxisCrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"tooltip"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"tooltip"}},[o])}};e.ChartXAxisCrosshairTooltipVue2=u;var p=u;e.ChartXAxisCrosshairTooltip=p},221:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisLabelsVue2=e.ChartXAxisLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:function(){}},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartXAxisLabelsVue2=u;var p=u;e.ChartXAxisLabels=p},2389:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesVue2=e.ChartXAxisNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartXAxisNotesVue2=u;var p=u;e.ChartXAxisNotes=p},5468:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesIconVue2=e.ChartXAxisNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartXAxisNotesIconVue2=u;var p=u;e.ChartXAxisNotesIcon=p},4661:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesLabelVue2=e.ChartXAxisNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartXAxisNotesLabelVue2=u;var p=u;e.ChartXAxisNotesLabel=p},3330:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisTitleVue2=e.ChartXAxisTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartXAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartXAxisTitleVue2=u;var p=u;e.ChartXAxisTitle=p},5795:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesLabelVue2=e.ChartXAxisNotesLabel=e.ChartXAxisNotesIconVue2=e.ChartXAxisNotesIcon=e.ChartXAxisNotesVue2=e.ChartXAxisNotes=e.ChartXAxisLabelsVue2=e.ChartXAxisLabels=e.ChartXAxisTitleVue2=e.ChartXAxisTitle=e.ChartXAxisCrosshairTooltipVue2=e.ChartXAxisCrosshairTooltip=e.ChartXAxisCrosshairVue2=e.ChartXAxisCrosshair=void 0;var r=o(9030);Object.defineProperty(e,"ChartXAxisCrosshair",{enumerable:!0,get:function(){return r.ChartXAxisCrosshair}}),Object.defineProperty(e,"ChartXAxisCrosshairVue2",{enumerable:!0,get:function(){return r.ChartXAxisCrosshairVue2}});var n=o(8697);Object.defineProperty(e,"ChartXAxisCrosshairTooltip",{enumerable:!0,get:function(){return n.ChartXAxisCrosshairTooltip}}),Object.defineProperty(e,"ChartXAxisCrosshairTooltipVue2",{enumerable:!0,get:function(){return n.ChartXAxisCrosshairTooltipVue2}});var i=o(221);Object.defineProperty(e,"ChartXAxisLabels",{enumerable:!0,get:function(){return i.ChartXAxisLabels}}),Object.defineProperty(e,"ChartXAxisLabelsVue2",{enumerable:!0,get:function(){return i.ChartXAxisLabelsVue2}});var a=o(2389);Object.defineProperty(e,"ChartXAxisNotes",{enumerable:!0,get:function(){return a.ChartXAxisNotes}}),Object.defineProperty(e,"ChartXAxisNotesVue2",{enumerable:!0,get:function(){return a.ChartXAxisNotesVue2}});var s=o(5468);Object.defineProperty(e,"ChartXAxisNotesIcon",{enumerable:!0,get:function(){return s.ChartXAxisNotesIcon}}),Object.defineProperty(e,"ChartXAxisNotesIconVue2",{enumerable:!0,get:function(){return s.ChartXAxisNotesIconVue2}});var c=o(4661);Object.defineProperty(e,"ChartXAxisNotesLabel",{enumerable:!0,get:function(){return c.ChartXAxisNotesLabel}}),Object.defineProperty(e,"ChartXAxisNotesLabelVue2",{enumerable:!0,get:function(){return c.ChartXAxisNotesLabelVue2}});var l=o(3330);Object.defineProperty(e,"ChartXAxisTitle",{enumerable:!0,get:function(){return l.ChartXAxisTitle}}),Object.defineProperty(e,"ChartXAxisTitleVue2",{enumerable:!0,get:function(){return l.ChartXAxisTitleVue2}})},7565:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisCrosshairVue2=e.ChartYAxisCrosshair=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisCrosshair",props:{color:String,opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"crosshair"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"crosshair"}},[o])}};e.ChartYAxisCrosshairVue2=u;var p=u;e.ChartYAxisCrosshair=p},4514:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisCrosshairTooltipVue2=e.ChartYAxisCrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"tooltip"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"tooltip"}},[o])}};e.ChartYAxisCrosshairTooltipVue2=u;var p=u;e.ChartYAxisCrosshairTooltip=p},8585:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisLabelsVue2=e.ChartYAxisLabels=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:function(){}},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"labels"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"labels"}},[o])}};e.ChartYAxisLabelsVue2=u;var p=u;e.ChartYAxisLabels=p},8762:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesVue2=e.ChartYAxisNotes=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"notes"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"notes"}},[o])}};e.ChartYAxisNotesVue2=u;var p=u;e.ChartYAxisNotes=p},1348:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesIconVue2=e.ChartYAxisNotesIcon=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"icon"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"icon"}},[o])}};e.ChartYAxisNotesIconVue2=u;var p=u;e.ChartYAxisNotesIcon=p},9808:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesLabelVue2=e.ChartYAxisNotesLabel=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"label"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"label"}},[o])}};e.ChartYAxisNotesLabelVue2=u;var p=u;e.ChartYAxisNotesLabel=p},9682:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisTitleVue2=e.ChartYAxisTitle=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(7098),l=o(9680),h=o(5320),u={name:"KendoChartYAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=(0,l.getDefaultSlots)(this),r=(0,h.removeUndefinedProps)(this.$props);return this.v3?e(c.Configuration,{config:r,chartKey:"title"},(function(){return o})):e(c.Configuration,{props:{config:r,chartKey:"title"}},[o])}};e.ChartYAxisTitleVue2=u;var p=u;e.ChartYAxisTitle=p},7433:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesLabelVue2=e.ChartYAxisNotesLabel=e.ChartYAxisNotesIconVue2=e.ChartYAxisNotesIcon=e.ChartYAxisNotesVue2=e.ChartYAxisNotes=e.ChartYAxisLabelsVue2=e.ChartYAxisLabels=e.ChartYAxisTitleVue2=e.ChartYAxisTitle=e.ChartYAxisCrosshairTooltipVue2=e.ChartYAxisCrosshairTooltip=e.ChartYAxisCrosshairVue2=e.ChartYAxisCrosshair=void 0;var r=o(7565);Object.defineProperty(e,"ChartYAxisCrosshair",{enumerable:!0,get:function(){return r.ChartYAxisCrosshair}}),Object.defineProperty(e,"ChartYAxisCrosshairVue2",{enumerable:!0,get:function(){return r.ChartYAxisCrosshairVue2}});var n=o(4514);Object.defineProperty(e,"ChartYAxisCrosshairTooltip",{enumerable:!0,get:function(){return n.ChartYAxisCrosshairTooltip}}),Object.defineProperty(e,"ChartYAxisCrosshairTooltipVue2",{enumerable:!0,get:function(){return n.ChartYAxisCrosshairTooltipVue2}});var i=o(8585);Object.defineProperty(e,"ChartYAxisLabels",{enumerable:!0,get:function(){return i.ChartYAxisLabels}}),Object.defineProperty(e,"ChartYAxisLabelsVue2",{enumerable:!0,get:function(){return i.ChartYAxisLabelsVue2}});var a=o(8762);Object.defineProperty(e,"ChartYAxisNotes",{enumerable:!0,get:function(){return a.ChartYAxisNotes}}),Object.defineProperty(e,"ChartYAxisNotesVue2",{enumerable:!0,get:function(){return a.ChartYAxisNotesVue2}});var s=o(1348);Object.defineProperty(e,"ChartYAxisNotesIcon",{enumerable:!0,get:function(){return s.ChartYAxisNotesIcon}}),Object.defineProperty(e,"ChartYAxisNotesIconVue2",{enumerable:!0,get:function(){return s.ChartYAxisNotesIconVue2}});var c=o(9808);Object.defineProperty(e,"ChartYAxisNotesLabel",{enumerable:!0,get:function(){return c.ChartYAxisNotesLabel}}),Object.defineProperty(e,"ChartYAxisNotesLabelVue2",{enumerable:!0,get:function(){return c.ChartYAxisNotesLabelVue2}});var l=o(9682);Object.defineProperty(e,"ChartYAxisTitle",{enumerable:!0,get:function(){return l.ChartYAxisTitle}}),Object.defineProperty(e,"ChartYAxisTitleVue2",{enumerable:!0,get:function(){return l.ChartYAxisTitleVue2}})},7125:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0});var r=o(8506),n=r.DateCategoryAxis.prototype.options.labels.dateFormats,i=r.DateValueAxis.prototype.options.labels.dateFormats,a={milliseconds:"HH:mm:ss.SSS",seconds:{time:"medium"},minutes:{time:"short"},hours:{time:"short"},days:{skeleton:"Md"},weeks:{skeleton:"Md"},months:{skeleton:"yyMMM"},years:{skeleton:"y"}};Object.assign(n,a),Object.assign(i,a)},4276:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.AxisLabelClickEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axis=e.axis,r.dataItem=e.dataItem,r.index=e.index,r.text=e.text,r.value=e.value,r}return n(e,t),e}(o(3635).BaseEvent);e.AxisLabelClickEvent=i},3635:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BaseEvent=void 0;e.BaseEvent=function(t){this.target=t}},5501:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.create=void 0;var r=o(4276),n=o(6776),i=o(6377),a=o(4316),s=o(4438),c=o(7475),l=o(8899),h=o(1313),u=o(8059),p=o(6053),d=o(909),v=o(6842),f=o(2876),m=o(3314),g=o(3618),y=o(2965),b=o(6914),x=o(1867),w=o(6412),_=o(7235),C=o(8597),O={axisLabelClick:r.AxisLabelClickEvent,drag:n.DragEvent,dragEnd:i.DragEndEvent,dragStart:a.DragStartEvent,legendItemHover:s.LegendItemHoverEvent,legendItemClick:c.LegendItemClickEvent,legendItemLeave:l.LegendItemLeaveEvent,navigatorFilter:h.NavigatorFilterEvent,noteClick:u.NoteClickEvent,noteHover:p.NoteHoverEvent,plotAreaClick:d.PlotAreaClickEvent,plotAreaHover:v.PlotAreaHoverEvent,render:f.RenderEvent,select:m.SelectEvent,selectEnd:g.SelectEndEvent,selectStart:y.SelectStartEvent,seriesClick:b.SeriesClickEvent,seriesHover:x.SeriesHoverEvent,zoom:w.ZoomEvent,zoomEnd:_.ZoomEndEvent,zoomStart:C.ZoomStartEvent};e.create=function(t,e,o){if(O[t])return new O[t](e,o)}},4740:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.toDomEvent=e.DomEvent=void 0;var o=function(t,e){this.sender=t,this.event=e};e.DomEvent=o,e.toDomEvent=function(t,e){return new o(t,e)}},6377:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DragEndEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axisRanges=e.axisRanges,r.nativeEvent=e.originalEvent,r}return n(e,t),e}(o(3635).BaseEvent);e.DragEndEvent=i},6776:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DragEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axisRanges=e.axisRanges,r.nativeEvent=e.originalEvent,r}return n(e,t),e}(o(7116).PreventableEvent);e.DragEvent=i},4316:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DragStartEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axisRanges=e.axisRanges,r.nativeEvent=e.originalEvent,r}return n(e,t),e}(o(7116).PreventableEvent);e.DragStartEvent=i},7475:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.LegendItemClickEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.series=e.series,r.seriesIndex=e.seriesIndex,r.pointIndex=e.pointIndex,r.text=e.text,r}return n(e,t),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this)},e}(o(7116).PreventableEvent);e.LegendItemClickEvent=i},4438:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.LegendItemHoverEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.series=e.series,r.seriesIndex=e.seriesIndex,r.pointIndex=e.pointIndex,r.text=e.text,r}return n(e,t),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this)},e}(o(7116).PreventableEvent);e.LegendItemHoverEvent=i},8899:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.LegendItemLeaveEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.series=e.series,r.seriesIndex=e.seriesIndex,r.pointIndex=e.pointIndex,r.text=e.text,r}return n(e,t),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this)},e}(o(7116).PreventableEvent);e.LegendItemLeaveEvent=i},1313:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.NavigatorFilterEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.from=e.from,r.to=e.to,r}return n(e,t),e}(o(3635).BaseEvent);e.NavigatorFilterEvent=i},8059:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.NoteClickEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.category=e.category,r.dataItem=e.dataItem,r.series=e.series,r.value=e.value,r.visual=e.visual,r}return n(e,t),e}(o(3635).BaseEvent);e.NoteClickEvent=i},6053:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.NoteHoverEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.category=e.category,r.dataItem=e.dataItem,r.series=e.series,r.value=e.value,r.visual=e.visual,r}return n(e,t),e}(o(3635).BaseEvent);e.NoteHoverEvent=i},909:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.PlotAreaClickEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.category=e.category,r.nativeEvent=e.originalEvent,r.value=e.value,r.x=e.x,r.y=e.y,r}return n(e,t),e}(o(3635).BaseEvent);e.PlotAreaClickEvent=i},6842:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.PlotAreaHoverEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.category=e.category,r.nativeEvent=e.originalEvent,r.value=e.value,r.x=e.x,r.y=e.y,r}return n(e,t),e}(o(3635).BaseEvent);e.PlotAreaHoverEvent=i},7116:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.PreventableEvent=void 0;var i=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.prevented=!1,e}return n(e,t),e.prototype.preventDefault=function(){this.prevented=!0},e.prototype.isDefaultPrevented=function(){return this.prevented},e}(o(3635).BaseEvent);e.PreventableEvent=i},2876:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.RenderEvent=void 0;var i=function(t){function e(e,o){return t.call(this,o)||this}return n(e,t),e}(o(3635).BaseEvent);e.RenderEvent=i},3618:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SelectEndEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axis=e.axis,r.from=e.from,r.to=e.to,r}return n(e,t),e}(o(3635).BaseEvent);e.SelectEndEvent=i},3314:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SelectEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axis=e.axis,r.from=e.from,r.to=e.to,r}return n(e,t),e}(o(7116).PreventableEvent);e.SelectEvent=i},2965:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SelectStartEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axis=e.axis,r.from=e.from,r.to=e.to,r}return n(e,t),e}(o(7116).PreventableEvent);e.SelectStartEvent=i},6914:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SeriesClickEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.category=e.category,r.dataItem=e.dataItem,r.nativeEvent=e.originalEvent,r.percentage=e.percentage,r.point=e.point,r.series=e.series,r.stackValue=e.stackValue,r.value=e.value,r}return n(e,t),e}(o(3635).BaseEvent);e.SeriesClickEvent=i},1867:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SeriesHoverEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.category=e.category,r.categoryPoints=e.categoryPoints,r.dataItem=e.dataItem,r.nativeEvent=e.originalEvent,r.percentage=e.percentage,r.point=e.point,r.series=e.series,r.stackValue=e.stackValue,r.value=e.value,r}return n(e,t),e}(o(7116).PreventableEvent);e.SeriesHoverEvent=i},7235:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomEndEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axisRanges=e.axisRanges,r.nativeEvent=e.originalEvent,r}return n(e,t),e}(o(3635).BaseEvent);e.ZoomEndEvent=i},6412:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axisRanges=e.axisRanges,r.delta=e.delta,r.nativeEvent=e.originalEvent,r}return n(e,t),e}(o(7116).PreventableEvent);e.ZoomEvent=i},8597:(t,e,o)=>{var r,n=(r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},r(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomStartEvent=void 0;var i=function(t){function e(e,o){var r=t.call(this,o)||this;return r.axisRanges=e.axisRanges,r.nativeEvent=e.originalEvent,r}return n(e,t),e}(o(7116).PreventableEvent);e.ZoomStartEvent=i},6545:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||r(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.StockChartVue2=e.StockChart=e.SparklineVue2=e.Sparkline=e.ChartVue2=e.Chart=void 0;var i=o(4877);Object.defineProperty(e,"Chart",{enumerable:!0,get:function(){return i.Chart}}),Object.defineProperty(e,"ChartVue2",{enumerable:!0,get:function(){return i.ChartVue2}});var a=o(5469);Object.defineProperty(e,"Sparkline",{enumerable:!0,get:function(){return a.Sparkline}}),Object.defineProperty(e,"SparklineVue2",{enumerable:!0,get:function(){return a.SparklineVue2}});var s=o(6636);Object.defineProperty(e,"StockChart",{enumerable:!0,get:function(){return s.StockChart}}),Object.defineProperty(e,"StockChartVue2",{enumerable:!0,get:function(){return s.StockChartVue2}}),n(o(5560),e),n(o(2444),e),n(o(4082),e),n(o(5264),e),n(o(8011),e),n(o(1260),e),n(o(7088),e)},1260:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.exportVisual=e.findPaneByName=e.findPaneByIndex=e.findAxisByName=void 0,e.findAxisByName=function(t,e){if(t&&null!==t.chartInstance())return t.chartInstance().findAxisByName(e)},e.findPaneByIndex=function(t,e){if(t&&null!==t.chartInstance())return t.chartInstance().findPaneByIndex(e)},e.findPaneByName=function(t,e){if(t&&null!==t.chartInstance())return t.chartInstance().findPaneByName(e)},e.exportVisual=function(t,e){if(void 0===e&&(e={}),t&&null!==t.chartInstance())return t.chartInstance().exportVisual(e)}},169:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.packageMetadata=void 0,e.packageMetadata={name:"@progress/kendo-vue-charts",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1726209330,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},8494:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.SankeyVue2=e.Sankey=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=o(9680),h=o(169),u=o(2589),p=o(8506),d=o(1106),v={visible:!0,offset:12},f={name:"KendoSankey",emits:{linkclick:null,linkenter:null,linkleave:null,nodeclick:null,nodeenter:null,nodeleave:null},inheritAttrs:!1,props:{dataNodes:{type:Array,required:!0},dataLinks:{type:Array,required:!0},disableAutoLayout:Boolean,disableKeyboardNavigation:Boolean,dir:String,labels:Object,legend:Object,links:Object,nodes:Object,title:Object,tooltip:Object},created:function(){(0,l.validatePackage)(h.packageMetadata),this.instance=null},data:function(){return{currentTooltip:null,currentDir:void 0}},watch:{dataNodes:function(){this.update(this)},dataLinks:function(){this.update(this)},links:function(){this.update(this)},nodes:function(){this.update(this)},labels:function(){this.update(this)},title:function(){this.update(this)},legend:function(){this.update(this)},disableAutoLayout:function(){this.update(this)},disableKeyboardNavigation:function(){this.update(this)},dir:function(){this.update(this)},tooltip:function(){this.update(this)}},computed:{sankeyClasses:function(){var t,e=this.$attrs.class;return(t={})["k-chart k-sankey"]=!0,t[e]=Boolean(e),t}},mounted:function(){this.element=(0,l.getRef)(this,"element"),this.currentDir=(0,l.getDir)(this.element,this.$props.dir),this.createSankey(this)},destroyed:c?void 0:function(){this.destroySankey()},unmounted:function(){this.destroySankey()},methods:{exportVisual:function(t){return this.instance.exportVisual(t)},destroySankey:function(){this.instance&&(this.instance.destroy(),this.instance=null)},createSankey:function(){var t=this,e=this.element;if(e){var o=this.sankeyOptions();(0,u.loadTheme)(e.ownerDocument,(function(r){t.instance=new p.Sankey(e,o,r),t.bindEvents(t.instance)}))}},update:function(){this.instance&&this.instance.setOptions(this.sankeyOptions())},bindEvents:function(t){t.bind("nodeEnter",this.triggerEvent),t.bind("nodeLeave",this.triggerEvent),t.bind("linkEnter",this.triggerEvent),t.bind("linkLeave",this.triggerEvent),t.bind("nodeClick",this.triggerEvent),t.bind("linkClick",this.triggerEvent),t.bind("tooltipShow",this.onTooltipShow),t.bind("tooltipHide",this.onTooltipHide)},triggerEvent:function(t){var e=r(r({},t),{target:this});this.$emit(t.type.toLowerCase(),e)},sankeyOptions:function(){var t=this.$props,e=t.dataNodes,o=t.dataLinks,n=t.links,i=t.nodes,a=t.labels,s=t.title,c=t.legend,l=t.disableAutoLayout,h=t.disableKeyboardNavigation,u=t.tooltip;return{data:{nodes:e,links:o},links:n,nodes:i,labels:a,title:s,legend:c,disableAutoLayout:l,disableKeyboardNavigation:h,rtl:"rtl"===this.currentDir,tooltip:r(r({},v),u)}},onTooltipShow:function(t){if(r(r({},v),this.$props.tooltip).visible){var e={tooltipData:t.tooltipData,eventData:{dataItem:t.dataItem,nodeValue:t.nodeValue,targetType:t.targetType}};this.currentTooltip=e}},onTooltipHide:function(){this.currentTooltip=null}},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=this.$props.tooltip||{},r=o.nodeContent,n=o.linkContent,i=o.offset,a=l.templateRendering.call(this,r,l.getListeners.call(this)),h=l.templateRendering.call(this,n,l.getListeners.call(this)),u=this.$props.dir||this.currentDir,p=[e("div",{ref:(0,l.setRef)(this,"element"),class:this.sankeyClasses,style:this.$attrs.style,dir:u,attrs:this.v3?void 0:{dir:u}}),this.currentTooltip&&e(d.Tooltip,{tooltipData:this.currentTooltip.tooltipData,attrs:this.v3?void 0:{tooltipData:this.currentTooltip.tooltipData,eventData:this.currentTooltip.eventData,dir:u,offset:i||12,nodeContent:a,linkContent:h},eventData:this.currentTooltip.eventData,dir:u,offset:i||12,nodeContent:a,linkContent:h})];return c?p:e("div",[p])}};e.SankeyVue2=f;var m=f;e.Sankey=m},7088:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSankeyData=e.Sankey=void 0;var r=o(8494);Object.defineProperty(e,"Sankey",{enumerable:!0,get:function(){return r.Sankey}});var n=o(5090);Object.defineProperty(e,"createSankeyData",{enumerable:!0,get:function(){return n.createSankeyData}})},2980:(t,e)=>{var o;Object.defineProperty(e,"__esModule",{value:!0}),e.messages=e.tooltipUnitFormat=void 0,e.tooltipUnitFormat="sankey.tooltipUnitFormat",e.messages=((o={})[e.tooltipUnitFormat]="({0} units)",o)},2589:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.loadTheme=void 0;var o=function(t){return"".concat(t.fontWeight," ").concat(t.fontSize," ").concat(t.fontFamily)},r=function(t){return window.getComputedStyle(t).backgroundColor},n='\n <div class="k-var--background"></div>\n <div class="k-var--normal-text-color"></div>\n <div class="k-var--kendo-color-subtle"></div>\n\n <div class="k-widget k-chart">\n <div class="k-var--chart-font"></div>\n <div class="k-var--chart-title-font"></div>\n </div>\n <div class="k-var--series-unset"></div>\n <div class="k-var--series">\n '.concat(function(){for(var t='\n <div class="k-var--series-a"></div>\n <div class="k-var--series-b"></div>\n <div class="k-var--series-c"></div>\n <div class="k-var--series-d"></div>\n <div class="k-var--series-e"></div>\n <div class="k-var--series-f"></div>\n',e=0;e<30;e++)t+='\n <div class="k-var--series-'.concat(e+1,'"></div>');return t}(),"\n </div>\n"),i=function(){function t(t){this.store=t}return t.prototype.setStyle=function(t,e){var o=t.split("."),r=this.store;o.forEach((function(t,e,o){e<o.length-1&&(r=r[t]=r[t]||{})}));var n=o.pop();n&&(r[n]=e)},t.prototype.setColors=function(){this.mapColor("labels.color","normal-text-color"),this.mapColor("labels.stroke.color","background"),this.element.querySelector(".k-var--kendo-color-subtle").style.color="var(--kendo-color-subtle)",this.mapColor("links.color","kendo-color-subtle","color"),this.mapColor("legend.labels.color","normal-text-color"),this.mapColor("title.color","normal-text-color")},t.prototype.setFonts=function(){var t=o(this.queryStyle("chart-title-font")),e=o(this.queryStyle("chart-font"));this.setStyle("title.font",t),this.setStyle("labels.font",e),this.setStyle("legend.labels.font",e)},t.prototype.setNodeColors=function(){var t=this.element;if(t){var e=[].slice.call(t.querySelectorAll(".k-var--series div")),o=r(t.querySelector(".k-var--series-unset")),n=e.reduce((function(t,e){var n=function(t){var e=t.match(/series-([a-z])$/);if(null!==e)return e[1].toLowerCase().charCodeAt(0)-"a".charCodeAt(0);var o=t.split("--series-")[1];return parseInt(o,10)-1}(e.className),i=r(e);return i!==o&&(t[n]=i),t}),[]);this.setStyle("nodeColors",n)}},t.prototype.mapColor=function(t,e,o){void 0===o&&(o="backgroundColor"),this.setStyle(t,this.queryStyle(e)[o])},t.prototype.queryStyle=function(t){var e=this.element;return window.getComputedStyle(e.querySelector(".k-var--".concat(t)))},t}();e.loadTheme=function(t,e){var o={nodeColors:[]},r=new i(o),a=r.element=t.createElement("div");a.style.display="none",a.innerHTML=n,t.body.appendChild(a);try{r.setColors(),r.setFonts(),r.setNodeColors()}finally{t.body.removeChild(r.element),r.element=null,e(o)}}},1106:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)},n=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},i=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipVue2=e.Tooltip=void 0;var a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&n(e,t,o);return i(e,t),e}(o(1895)),s=a.h,c=a.version&&"3"===a.version[0],l=o(9680),h=o(5379),u=o(5725),p=o(2980),d="0 ".concat(3,"px"),v={display:"flex",alignItems:"center"},f={name:"Square",props:{color:String},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){return(s||t)("div",{style:{width:"15px",height:"15px","background-color":this.$props.color,display:"inline-flex",marginLeft:3}})}},m={name:"Text",props:{value:String},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){return(s||t)("span",{style:{margin:d}},[this.$props.value])}},g={name:"Units",props:{value:Number},inject:{kendoLocalizationService:{default:null}},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=(0,u.provideLocalizationService)(this).toLanguageString(p.tooltipUnitFormat,p.messages[p.tooltipUnitFormat]),r=new u.IntlService("en").format(o,[this.$props.value||0]);return e(m,{value:r,attrs:this.v3?void 0:{value:r}})}},y={name:"NodeTooltipContent",props:{dataItem:Object,nodeValue:Number,dir:String},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=this.$props.dataItem,r=o.color,n=o.label;return e("div",{style:v,class:"k-tooltip-content"},[e(f,{color:r,attrs:this.v3?void 0:{color:r}}),e(m,{value:n.text,attrs:this.v3?void 0:{value:n.text}}),e(g,{value:this.$props.nodeValue,attrs:this.v3?void 0:{value:this.$props.nodeValue}})])}},b={name:"LinkTooltipContent",props:{dataItem:Object,dir:String},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=this.$props,r=o.dir,n=o.dataItem,i=n.source,a=n.target,c=n.value,u="rtl"===r?h.arrowLeftIcon:h.arrowRightIcon;return e("div",{style:v},[e(f,{color:i.color,attrs:this.v3?void 0:{color:i.color}}),e(m,{value:i.label.text,attrs:this.v3?void 0:{value:i.label.text}}),e(l.Icon,{icon:u,attrs:this.v3?void 0:{icon:u,name:u.name},name:u.name}),e(f,{color:a.color,attrs:this.v3?void 0:{color:a.color}}),e(m,{value:a.label.text,attrs:this.v3?void 0:{value:a.label.text}}),e(g,{value:c,attrs:this.v3?void 0:{value:c}})])}},x={name:"SankeyTooltip",props:{eventData:Object,tooltipData:Object,nodeContent:[String,Object,Function],linkContent:[String,Object,Function],dir:String,offset:Number},data:function(){return{top:"",left:"",visibility:"hidden"}},mounted:function(){this.element=(0,l.getRef)(this,"element"),this.showTooltip()},updated:function(){this.showTooltip()},destroyed:c?void 0:function(){this.destroyTooltip()},unmounted:function(){this.destroyTooltip()},methods:{destroyTooltip:function(){},showTooltip:function(){var t=this.$props,e=t.offset,o=t.tooltipData,n=this.element;if(o&&n){var i=n.offsetWidth,a=n.offsetHeight,s=r({},o.popupOffset),c=o.popupAlign;s.left+="left"===c.horizontal?e:-1*e,"right"===c.horizontal&&(s.left-=i),"bottom"===c.vertical?s.top-=a+e:s.top+=e,this.$data.top=s.top+"px",this.$data.left=s.left+"px",this.$data.visibility=""}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(t){var e=s||t,o=this.$props,r=o.nodeContent,n=o.linkContent,i=o.dir,a=o.eventData,c=a.dataItem,h=a.nodeValue,u=a.targetType,p="node"===u?r:n,d="node"===u?y:b,v=l.getTemplate.call(this,{h:e,template:p,defaultRendering:e(d,{dataItem:c,attrs:this.v3?void 0:{dataItem:c,nodeValue:h,dir:i},nodeValue:h,dir:i})});return e("div",{ref:(0,l.setRef)(this,"element"),style:{top:this.top,left:this.left,visibility:this.visibility},class:"k-tooltip k-sankey-tooltip k-chart-tooltip k-chart-shared-tooltip",dir:i,attrs:this.v3?void 0:{dir:i}},[e("div",{class:"k-tooltip-content"},[v])])}};e.TooltipVue2=x;var w=x;e.Tooltip=w},5090:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSankeyData=void 0;var r=o(8506);e.createSankeyData=r.createSankeyData},9270:(t,e)=>{var o=function(){return o=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},o.apply(this,arguments)},r=function(t,e,o){if(o||2===arguments.length)for(var r,n=0,i=e.length;n<i;n++)!r&&n in e||(r||(r=Array.prototype.slice.call(e,0,n)),r[n]=e[n]);return t.concat(r||Array.prototype.slice.call(e))};Object.defineProperty(e,"__esModule",{value:!0}),e.observersReducer=e.themeReducer=e.optionsReducer=void 0,e.optionsReducer=function(t,e){return e.chartCollectionIdxKey?n.collectionConfigurationItem(t,e):e.chartKey?n.configurationItem(t,e):{}},e.themeReducer=function(t,e){if(!e.type)return{};switch(e.type){case"set":return n.themeItem(t,e);case"push":return Object.assign(t,e.payload);default:return t}},e.observersReducer=function(t,e){if(!e.type)return[];switch(e.type){case"add":return r(r([],t,!0),[e.payload],!1);case"remove":return t.filter((function(t){return t!==e.payload}));default:return t}};var n={configurationItem:function(t,e){var r,n;return t[e.chartKey]&&Object.keys(t[e.chartKey]).length?Object.assign(t,((r={})[e.chartKey]=o(o({},t[e.chartKey]),e.payload),r)):Object.assign(t,((n={})[e.chartKey]=e.payload,n))},collectionConfigurationItem:function(t,e){var o,r,n,i=!1,a=e.chartCollectionIdxKey.split("_"),s=a[0],c=a[1],l=(e.parentKey?t[e.parentKey]&&t[e.parentKey][s]||[]:t[s]||[]).map((function(t,o){return parseInt(c,10)===o||e.payload&&e.payload.uid===t.uid?(i=!0,e.payload):t}));if(!1!==i||e.uid||l.splice(parseInt(c,10),0,e.payload),e.uid){var h=l.findIndex((function(t){return t.uid===e.uid}));h>-1&&l.splice(h,1)}return e.parentKey?Object.assign(t,((o={})[e.parentKey]=((r={})[s]=l,r),o)):Object.assign(t,((n={})[s]=l,n))},themeItem:function(t,e){for(var o={},r=Object.assign(o,t),n=e.payload,i=n.field,a=n.value,s=i.split("."),c=s.shift();s.length>0;)o=o[c]=o[c]||{},c=s.shift();return o[c]=a,r}}},3377:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.THROTTLE_MS=void 0;var r=o(9680);e.THROTTLE_MS=1e3/60,e.default=function(t){var o,n,i=[],a=function(a){o=t(o,a),r.canUseDOM&&(window.clearTimeout(n),n=window.setTimeout((function(){return i.forEach((function(t){return t()}))}),e.THROTTLE_MS))};return a({}),{getState:function(){return o},dispatch:a,subscribe:function(t){return i.push(t),function(){return i=i.filter((function(e){return e!==t}))}}}}},349:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.loadTheme=void 0;var r=o(8506),n=function(t){return"".concat(t.fontWeight," ").concat(t.fontSize," ").concat(t.fontFamily)},i=function(t){return window.getComputedStyle(t).backgroundColor},a='\n <div class="k-var--primary"></div>\n <div class="k-var--base"></div>\n <div class="k-var--background"></div>\n\n <div class="k-var--normal-background"></div>\n <div class="k-var--normal-text-color"></div>\n <div class="k-var--hover-background"></div>\n <div class="k-var--hover-text-color"></div>\n <div class="k-var--selected-background"></div>\n <div class="k-var--selected-text-color"></div>\n <div class="k-var--chart-error-bars-background"></div>\n <div class="k-var--chart-notes-background"></div>\n <div class="k-var--chart-notes-border"></div>\n <div class="k-var--chart-notes-lines"></div>\n <div class="k-var--chart-crosshair-background"></div>\n\n <div class="k-var--chart-inactive"></div>\n <div class="k-var--chart-major-lines"></div>\n <div class="k-var--chart-minor-lines"></div>\n <div class="k-var--chart-area-opacity"></div>\n <div class="k-var--chart-area-inactive-opacity"></div>\n <div class="k-var--chart-line-inactive-opacity"></div>\n\n <div class="k-widget k-chart">\n <div class="k-var--chart-font"></div>\n <div class="k-var--chart-title-font"></div>\n <div class="k-var--chart-pane-title-font"></div>\n <div class="k-var--chart-label-font"></div>\n </div>\n\n <div class="k-var--series-unset"></div>\n <div class="k-var--series">\n '.concat(function(){for(var t='\n <div class="k-var--series-a"></div>\n <div class="k-var--series-b"></div>\n <div class="k-var--series-c"></div>\n <div class="k-var--series-d"></div>\n <div class="k-var--series-e"></div>\n <div class="k-var--series-f"></div>\n',e=0;e<30;e++)t+='\n <div class="k-var--series-'.concat(e+1,'"></div>');return t}(),"\n </div>\n"),s=function(){function t(t){this.store=t}return t.prototype.setStyle=function(t,e){this.store.dispatch({type:"set",payload:{field:t,value:e}})},t.prototype.setColors=function(){this.mapColor("axisDefaults.crosshair.color","chart-crosshair-background"),this.mapColor("axisDefaults.labels.color","normal-text-color"),this.mapColor("axisDefaults.line.color","chart-major-lines"),this.mapColor("axisDefaults.majorGridLines.color","chart-major-lines"),this.mapColor("axisDefaults.minorGridLines.color","chart-minor-lines"),this.mapColor("axisDefaults.notes.icon.background","chart-notes-background"),this.mapColor("axisDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("axisDefaults.notes.line.color","chart-notes-lines"),this.mapColor("axisDefaults.title.color","normal-text-color"),this.mapColor("chartArea.background","background"),this.mapColor("legend.inactiveItems.labels.color","chart-inactive"),this.mapColor("legend.inactiveItems.markers.color","chart-inactive"),this.mapColor("legend.labels.color","normal-text-color"),this.mapColor("seriesDefaults.boxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.boxPlot.mean.color","base"),this.mapColor("seriesDefaults.boxPlot.median.color","base"),this.mapColor("seriesDefaults.boxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.bullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.candlestick.downColor","normal-text-color"),this.mapColor("seriesDefaults.candlestick.line.color","normal-text-color"),this.mapColor("seriesDefaults.errorBars.color","chart-error-bars-background"),this.mapColor("seriesDefaults.horizontalWaterfall.line.color","chart-major-lines"),this.mapColor("seriesDefaults.icon.border.color","chart-major-lines"),this.mapColor("seriesDefaults.labels.background","background"),this.mapColor("seriesDefaults.labels.color","normal-text-color"),this.mapColor("seriesDefaults.notes.icon.background","chart-notes-background"),this.mapColor("seriesDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("seriesDefaults.notes.line.color","chart-notes-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.mean.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.median.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.verticalBullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.waterfall.line.color","chart-major-lines"),this.mapColor("title.color","normal-text-color");var t=parseFloat(this.queryStyle("chart-area-opacity").opacity);isNaN(t)||(this.setStyle("seriesDefaults.area.opacity",t),this.setStyle("seriesDefaults.radarArea.opacity",t),this.setStyle("seriesDefaults.verticalArea.opacity",t),this.setStyle("seriesDefaults.labels.opacity",t)),this.setInactiveOpacity(["area","verticalArea"],"chart-area-inactive-opacity"),this.setInactiveOpacity(["line","verticalLine"],"chart-line-inactive-opacity")},t.prototype.setFonts=function(){var t=n(this.queryStyle("chart-font")),e=n(this.queryStyle("chart-title-font")),o=n(this.queryStyle("chart-pane-title-font")),r=n(this.queryStyle("chart-label-font"));this.setStyle("axisDefaults.labels.font",r),this.setStyle("axisDefaults.notes.label.font",t),this.setStyle("axisDefaults.title.font",t),this.setStyle("legend.labels.font",t),this.setStyle("seriesDefaults.labels.font",r),this.setStyle("seriesDefaults.notes.label.font",t),this.setStyle("title.font",e),this.setStyle("paneDefaults.title.font",o)},t.prototype.setSeriesColors=function(){var t=this.element,e=[].slice.call(null==t?void 0:t.querySelectorAll(".k-var--series div")),o=i(null==t?void 0:t.querySelector(".k-var--series-unset")),r=e.reduce((function(t,e){var r=function(t){var e=t.match(/series-([a-z])$/);if(null!==e)return e[1].toLowerCase().charCodeAt(0)-"a".charCodeAt(0);var o=t.split("--series-")[1];return parseInt(o,10)-1}(e.className),n=i(e);return n!==o&&(t[r]=n),t}),[]);this.setStyle("seriesColors",r)},t.prototype.mapColor=function(t,e){this.setStyle(t,this.queryStyle(e).backgroundColor)},t.prototype.queryStyle=function(t){var e=this.element;return window.getComputedStyle(null==e?void 0:e.querySelector(".k-var--".concat(t)))},t.prototype.setInactiveOpacity=function(t,e){var o=this,r=parseFloat(this.queryStyle(e).opacity);!isNaN(r)&&r<1&&t.forEach((function(t){return o.setStyle("seriesDefaults.".concat(t,".highlight.inactiveOpacity"),r)}))},t}();e.loadTheme=function(t,e){var o=new s(t);if("undefined"!=typeof document){var n=o.element=document.createElement("div");n.style.display="none",n.innerHTML=a,document.body.appendChild(n);try{t.dispatch({type:"push",payload:(0,r.chartBaseTheme)()}),o.setColors(),o.setFonts(),o.setSeriesColors()}finally{document.body.removeChild(o.element),delete o.element,e()}}else t.dispatch({type:"push",payload:(0,r.chartBaseTheme)()})}},5544:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.CrosshairTooltipVue2=e.CrosshairTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(9680),l=o(8506),h=o(1566),u={name:"KendoCrosshairTooltip",props:{index:Number,name:String},data:function(){return{popupShown:!1,popupAlign:void 0,popupOffset:void 0,popupContent:void 0,popupStyles:void 0,className:void 0}},inject:{optionsState:{default:{}},dispatchOptions:{default:null},observersStore:{default:null},dispatchObservers:{default:null},childrenObserver:{default:null}},created:function(){this.chartObserver=new l.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),this.dispatchObservers({type:"add",payload:this.chartObserver})},destroyed:s?void 0:function(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},unmounted:function(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e,o=a||t,r=((0,c.getDefaultSlots)(this),this.popupShown?this.popupContent:Function.prototype),n=(0,c.classNames)(((e={})["k-chart-crosshair-tooltip"]=!0,e["k-chart-tooltip-inverse"]=!!this.className,e));return o(h.TooltipPopup,{popupShown:this.popupShown,attrs:this.v3?void 0:{popupShown:this.popupShown,popupAlign:this.popupAlign,popupOffset:this.popupOffset,popupStyles:this.popupStyles,className:n},popupAlign:this.popupAlign,popupOffset:this.popupOffset,popupStyles:this.popupStyles,className:n},this.v3?function(){return[r]}:[r])},methods:{onShowTooltip:function(t){var e=t.anchor,o=t.style,r=t.className,n=t.crosshair,i=t.axisName,a=t.axisIndex,s=t.value,c=this.$props,l=c.name,h=c.index;n&&i===l&&a===h&&(this.popupShown=!0,this.popupAlign=e.align,this.popupOffset=e.point,this.popupContent=s,this.popupStyles=o,this.className=r)},onHideTooltip:function(){this.popupShown=!1,this.popupStyles={},this.className=void 0}}};e.CrosshairTooltipVue2=u;var p=u;e.CrosshairTooltip=p},7822:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.CrosshairContainerVue2=e.CrosshairContainer=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(5544),l=["categoryAxis","valueAxis","xAxis","yAxis"];function h(t,e){var o=[];if(t[e])for(var r=[].concat(t[e]),n=0;n<r.length;n++){var i=(r[n].crosshair||{}).tooltip;i&&i.visible&&o.push({index:n,name:e})}return o}var u={name:"KendoCrosshairContainer",props:{optionsState:Object},computed:{tooltips:function(){return function(t){for(var e={},o=0;o<l.length;o++)for(var r=h(t,l[o]),n=0;n<r.length;n++){var i=r[n];e[i.name+i.index]=i}return e}(this.optionsState)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=Object.keys(this.tooltips).map((function(t){return e(c.CrosshairTooltip,{index:this.tooltips[t].index,attrs:this.v3?void 0:{index:this.tooltips[t].index,name:this.tooltips[t].name},name:this.tooltips[t].name,key:t})}),this);return e("div",[o])}};e.CrosshairContainerVue2=u;var p=u;e.CrosshairContainer=p},4933:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipPoint=void 0;var o=function(){function t(t,e){this.value=t.value,this.category=t.category,this.categoryIndex=t.categoryIx,this.series=t.series,this.dataItem=t.dataItem,this.percentage=t.percentage,this.runningTotal=t.runningTotal,this.total=t.total,this.low=t.low,this.high=t.high,this.xLow=t.xLow,this.xHigh=t.xHigh,this.yLow=t.yLow,this.yHigh=t.yHigh,this.point=t,this.format=((t.options||{}).tooltip||{}).format||e}return Object.defineProperty(t.prototype,"formattedValue",{get:function(){return this.format?this.point.formatValue(this.format):String(this.value)},enumerable:!1,configurable:!0}),t}();e.TooltipPoint=o},1566:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipPopupVue2=e.TooltipPopup=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(8506),l=o(5320),h=o(4866),u=o(9680),p={horizontal:"fit",vertical:"fit"},d="k-chart-tooltip",v={name:"KendoTooltipPopup",props:{className:String,popupShown:Boolean,popupAlign:{type:Object,default:function(){}},popupOffset:{type:Object},popupStyles:{type:Object},popupContent:Function},inject:{options:{default:{state:{}}},dispatchOptions:{default:null},observersState:{default:null},dispatchObservers:{default:null},childrenObserver:{default:null}},created:function(){this.chartObserver=new c.InstanceObserver(this,{onMouseLeave:"onChartMouseLeave"}),this.dispatchObservers({type:"add",payload:this.chartObserver})},mounted:function(){this.element=(0,u.getRef)(this,"element")},destroyed:s?void 0:function(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},unmounted:function(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=this,o=a||t,r=(0,u.getDefaultSlots)(this),n=this.$props,i=n.popupShown,s=n.popupAlign,c=n.popupOffset,l=n.popupStyles,v=(n.popupContent,n.className),f=[d,v].join(" ").trim();return o(h.Popup,{animate:!1,attrs:this.v3?void 0:{animate:!1,popupAlign:s,offset:c,show:i,collision:p},popupAlign:s,offset:c,show:i,collision:p,class:"k-chart-tooltip-wrapper"},this.v3?function(){return[o("div",{class:f,style:l,onMouseleave:e.onMouseLeave,on:e.v3?void 0:{mouseleave:e.onMouseLeave},ref:(0,u.setRef)(e,"element")},[r])]}:[o("div",{class:f,style:l,onMouseleave:e.onMouseLeave,on:e.v3?void 0:{mouseleave:e.onMouseLeave},ref:(0,u.setRef)(e,"element")},[r])])},methods:{onChartMouseLeave:function(t){var e=t.event;return!!(0,l.hasParent)(e.relatedTarget,this.element)},onMouseLeave:function(t){}}};e.TooltipPopupVue2=v;var f=v;e.TooltipPopup=f},6123:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.SeriesTooltipVue2=e.SeriesTooltip=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c=o(9680),l=o(8506),h=o(4933),u=o(7003),p=o(1566),d={name:"KendoSeriesTooltip",data:function(){return{popupShown:!1,popupAlign:void 0,popupOffset:void 0,popupContext:{},popupStyles:void 0,className:void 0,shared:void 0}},inject:{optionsState:{default:{}},observersState:{default:null},dispatchObservers:{default:null}},mounted:function(){this.chartObserver=new l.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),this.dispatchObservers({type:"add",payload:this.chartObserver})},destroyed:s?void 0:function(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},unmounted:function(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e,o=this,r=a||t,n=this.popupShown?function(){var t=this.findRenderFunction();if(this.shared){var e=r(u.SharedTooltipContent,{categoryText:this.popupContext.categoryText,attrs:this.v3?void 0:{categoryText:this.popupContext.categoryText,colorMarker:this.popupContext.colorMarker,colspan:this.popupContext.colspan,nameColumn:this.popupContext.nameColumn,points:this.popupContext.points},colorMarker:this.popupContext.colorMarker,colspan:this.popupContext.colspan,nameColumn:this.popupContext.nameColumn,points:this.popupContext.points});return c.getTemplate.call(this,{h:r,template:t,defaultRendering:e,additionalProps:Object.assign({},this.popupContext)})}var o=this.popupContext.point,n=this.findRenderFunctionByIndex(o.series.index),i=r("span",{domProps:{innerHTML:this.popupContext.point.formattedValue},innerHTML:this.popupContext.point.formattedValue});return null!==n?c.getTemplate.call(this,{h:r,template:n,defaultRendering:i,additionalProps:Object.assign({},this.popupContext)}):null!==t?c.getTemplate.call(this,{h:r,template:t,defaultRendering:i,additionalProps:Object.assign({},this.popupContext)}):i}:Function.prototype,i=(0,c.classNames)(((e={})["k-chart-shared-tooltip"]=this.shared,e["k-chart-tooltip-inverse"]=!!this.className,e));return r(p.TooltipPopup,{popupShown:this.popupShown,attrs:this.v3?void 0:{popupShown:this.popupShown,popupAlign:this.popupAlign,popupOffset:this.popupOffset,popupStyles:this.popupStyles,className:i},popupAlign:this.popupAlign,popupOffset:this.popupOffset,popupStyles:this.popupStyles,className:i},this.v3?function(){return[n.call(o)]}:[n.call(o)])},methods:{onShowTooltip:function(t){var e,o=t.anchor,r=t.style,n=t.shared,i=t.className;t.crosshair||(e=n?this.createSharedTooltipContext(t):this.createTooltipContext(t),this.popupShown=!0,this.popupAlign=o.align,this.popupOffset=o.point,this.popupContext=e,this.popupStyles=r,this.className=i,this.shared=n)},onHideTooltip:function(){this.popupShown=!1,this.popupStyles={},this.className=void 0},createSharedTooltipContext:function(t){var e=t.points,o=t.categoryText,r=e.filter((function(t){return void 0!==t.series.name})).length>0,n=t.series.length>1,i=1;return r&&i++,n&&i++,{categoryText:o,colorMarker:n,colspan:i,nameColumn:r,points:t.points.map((function(e){return new h.TooltipPoint(e,t.format)}))}},createTooltipContext:function(t){var e=t.point,o=t.format;return{point:new h.TooltipPoint(e,o)}},findRenderFunctionByIndex:function(t){var e=this.optionsState.series;return void 0!==e&&Array.isArray(e)&&void 0!==e[t]&&e[t].hasOwnProperty("tooltip")&&e[t].tooltip.hasOwnProperty("render")?e[t].tooltip.render:null},findRenderFunction:function(){var t=this.optionsState.tooltip;return void 0!==t&&t.hasOwnProperty("render")?t.render:null}}};e.SeriesTooltipVue2=d;var v=d;e.SeriesTooltip=v},7003:(t,e,o)=>{var r=Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]},n=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};Object.defineProperty(e,"__esModule",{value:!0}),e.SharedTooltipContentVue2=e.SharedTooltipContent=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var o in t)"default"!==o&&Object.prototype.hasOwnProperty.call(t,o)&&r(e,t,o);return n(e,t),e}(o(1895)),a=i.h,s=i.version&&"3"===i.version[0],c={name:"KendoSharedTooltipPopup",props:{categoryText:String,colorMarker:{type:Boolean,default:void 0},colspan:Number,nameColumn:{type:Boolean,default:void 0},points:Array},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=a||t,o=this.$props,r=o.categoryText,n=o.colorMarker,i=o.colspan,s=o.nameColumn,c=o.points;return e("table",[e("thead",[e("tr",[e("th",{colspan:i,attrs:this.v3?void 0:{colspan:i}},[r])])]),e("tbody",[c.map(function(t,o){var r=e("span",{domProps:{innerHTML:t.formattedValue},innerHTML:t.formattedValue});return e("tr",{key:o},[n&&e("td",[e("span",{class:"k-chart-shared-tooltip-marker",style:{backgroundColor:t.series.color}})]),s&&e("td",[t.series.name]),r])}.bind(this),this)])])}};e.SharedTooltipContentVue2=c;var l=c;e.SharedTooltipContent=l},5560:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipPoint=void 0;var r=o(4933);Object.defineProperty(e,"TooltipPoint",{enumerable:!0,get:function(){return r.TooltipPoint}})},5320:(t,e)=>{var o=function(){return o=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},o.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.removeUndefinedProps=e.toggle=e.validateChildren=e.hasParent=void 0,e.hasParent=function(t,e){for(var o=t;o&&o!==e;)o=o.parentNode;return!!o},e.removeUndefinedProps=function(t){var e=o({},t);return Object.keys(e).forEach((function(t){void 0===e[t]&&delete e[t],"dataItems"===t&&(e.data=e[t],delete e[t]),"lineStyle"===t&&e[t]&&(e.style=e[t],delete e[t])})),e},e.validateChildren=function(t,e,o,r){var n=t[e];if(n&&Array.isArray(n))for(var i=0,a=n;i<a.length;i++){var s=a[i];if(!s.type||s.type!==r)return new Error("".concat(o," children should be Array of type ").concat(r.displayName,"."))}return null},e.toggle=function(t){return void 0!==t&&!t}},4941:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AnimationVue2=e.Animation=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(9389),s=o(9680),c=o(8420),l=o(1947).default.styles,h={props:{componentChildStyle:Object,childFactory:Object,className:String,tag:String,id:String,animationEnteringStyle:Object,animationExitingStyle:Object,componentChildClassName:[Array],transitionName:{type:String,required:!0},appear:{type:Boolean,default:!0},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number},transitionExitDuration:{type:Number}},methods:{onEntering:function(t){this.$emit("entering",t)},onEnter:function(t){this.$emit("enter",t)},onEntered:function(t){this.$emit("entered",t)},onExit:function(t){this.$emit("exit",t)},onExiting:function(t){this.$emit("exiting",t)},onExited:function(t){this.$emit("exited",t)}},setup:i?function(){return{v3:!!i}}:void 0,created:function(){(0,s.validatePackage)(c.packageMetadata)},render:function(t){var e=n||t,o=(0,s.getDefaultSlots)(this),r=this.$props,i=(r.id,r.tag,r.role),c=r.className,h=(r.childFactory,r.stackChildren,r.componentChildStyle),u=(r.componentChildClassName,function(t,e){var o={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(o[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(r=Object.getOwnPropertySymbols(t);n<r.length;n++)e.indexOf(r[n])<0&&Object.prototype.propertyIsEnumerable.call(t,r[n])&&(o[r[n]]=t[r[n]])}}(r,["id","tag","role","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),[l["animation-container"],l["animation-container-relative"],c]);return e("div",{id:this.$props.id,attrs:this.v3?void 0:{id:this.$props.id,role:i},class:u,role:i},[e(a.AnimationChild,{key:"some",style:h,appear:this.$props.appear,attrs:this.v3?void 0:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,onBeforeenter:this.onEnter,on:this.v3?void 0:{beforeenter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[o]}:[o])])}};e.AnimationVue2=h;var u=h;e.Animation=u},9389:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.AnimationChildVue2=e.AnimationChild=void 0;var n=o(1895),i=n.h,a=n.version&&"3"===n.version[0],s=n.ref,c=n.Transition,l=o(1947),h=o(9680),u=l.default.styles,p={props:{in:Boolean,transitionName:{type:String,required:!0},transitionStyle:Object,componentChildClassName:[Array],className:String,appear:{type:Boolean,default:!0},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:Number,transitionExitDuration:Number,mountOnEnter:Boolean,unmountOnExit:Boolean,animationEnteringStyle:Object,animationEnteredStyle:Object,animationExitingStyle:Object,animationExitedStyle:Object},created:function(){this.animationStep=""},setup:a?function(){return{v3:!!a,elementRef:s(null)}}:void 0,mounted:function(){this._element=this.v3?this.elementRef||null:this.$refs.element||null},computed:{element:{get:function(){return this._element}}},methods:{onBeforeEnter:function(t){this.$emit("beforeenter",{animatedElement:t,target:this})},onEnter:function(t){this.animationStep="entering",this.$emit("entering",{animatedElement:t,target:this})},onAfterEnter:function(t){this.animationStep="entered",this.$emit("entered",{animatedElement:t,target:this})},onBeforeLeave:function(t){this.$emit("exit",{animatedElement:t,target:this})},onLeave:function(t){this.animationStep="exiting",this.$emit("exiting",{animatedElement:t,target:this})},onAfterLeave:function(t){this.animationStep="exited",this.$emit("exited",{animatedElement:t,target:this})}},render:function(t){var e=this,o=i||t,n=this.$props,a=n.appear,s=n.enter,l=n.exit,p=n.transitionName,d=n.transitionEnterDuration,v=n.transitionExitDuration,f=(n.className,n.componentChildClassName),m=(n.mountOnEnter,n.unmountOnExit,n.animationEnteringStyle),g=n.animationEnteredStyle,y=n.animationExitingStyle,b=n.animationExitedStyle,x=(function(t,e){var o={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(o[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(r=Object.getOwnPropertySymbols(t);n<r.length;n++)e.indexOf(r[n])<0&&Object.prototype.propertyIsEnumerable.call(t,r[n])&&(o[r[n]]=t[r[n]])}}(n,["appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","componentChildClassName","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),(0,h.getDefaultSlots)(this)),w=this.v3?a:!!x,_=this.v3?c:"transition",C=[f,u["child-animation-container"]],O=s?d:0,S=l?v:0,z=[r({transitionDelay:"0ms",transitionDuration:"".concat(w?O:S,"ms")},this.$props.transitionStyle),{entering:r({transitionDuration:"".concat(O,"ms")},m),entered:r({},g),exiting:r({transitionDuration:"".concat(S,"ms")},y),exited:r({},b)}[this.animationStep]],M={enter:O,leave:S},P=[w?o("div",{style:z,class:C,ref:this.v3?function(t){e.elementRef=t}:"element"},[x]):null];return o(_,{duration:M,attrs:this.v3?null:{duration:M,name:p,appear:a,appearClass:u["".concat(p,"-appear")]||"".concat(p,"-appear"),appearToClass:u["".concat(p,"-appear-active")]||"".concat(p,"-appear-active"),enterClass:u["".concat(p,"-enter")]||"".concat(p,"-enter"),enterToClass:u["".concat(p,"-enter-active")]||"".concat(p,"-enter-active"),leaveClass:u["".concat(p,"-exit")]||"".concat(p,"-exit"),leaveToClass:u["".concat(p,"-exit-active")]||"".concat(p,"-exit-active")},name:p,appear:a,appearFromClass:u["".concat(p,"-appear")]||"".concat(p,"-appear"),enterFromClass:u["".concat(p,"-enter")]||"".concat(p,"-enter"),leaveFromClass:u["".concat(p,"-exit")]||"".concat(p,"-exit"),appearToClass:u["".concat(p,"-appear-active")]||"".concat(p,"-appear-active"),enterToClass:u["".concat(p,"-enter-active")]||"".concat(p,"-enter-active"),leaveToClass:u["".concat(p,"-exit-active")]||"".concat(p,"-exit-active"),onBeforeEnter:this.onBeforeEnter,on:this.v3?null:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave},onEnter:this.onEnter,onAfterEnter:this.onAfterEnter,onBeforeLeave:this.onBeforeLeave,onLeave:this.onLeave,onAfterLeave:this.onAfterLeave},this.v3?function(){return P}:P)}};e.AnimationChildVue2=p;var d=p;e.AnimationChild=d},2483:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ExpandVue2=e.Expand=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(4941),s=o(9680),c={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"vertical"},componentChildStyle:Object,tag:String,id:String},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=(0,s.getDefaultSlots)(this),r=this.$props,i=(r.direction,function(t,e){var o={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(o[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(r=Object.getOwnPropertySymbols(t);n<r.length;n++)e.indexOf(r[n])<0&&Object.prototype.propertyIsEnumerable.call(t,r[n])&&(o[r[n]]=t[r[n]])}}(r,["direction"]),"expand-".concat(this.$props.direction));return e(a.Animation,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[o]}:[o])}};e.ExpandVue2=c;var l=c;e.Expand=l},367:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.FadeVue2=e.Fade=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(4941),s=o(9680),c={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:500},transitionExitDuration:{type:Number,default:500},componentChildStyle:Object,childFactory:Object,className:String,tag:String,id:String},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=(0,s.getDefaultSlots)(this);return e(a.Animation,{transitionName:"fade",attrs:this.v3?void 0:{transitionName:"fade",appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[o]}:[o])}};e.FadeVue2=c;var l=c;e.Fade=l},5756:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.PushVue2=e.Push=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(4941),s=o(9680),c={position:"absolute",top:"0",left:"0"},l={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,componentChildStyle:Object,className:String,direction:{type:String,default:"right"},tag:String,id:String},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=(0,s.getDefaultSlots)(this),r="push-".concat(this.$props.direction);return e(a.Animation,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,componentChildStyle:this.$props.componentChildStyle,animationExitingStyle:this.$props.stackChildren?c:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,componentChildStyle:this.$props.componentChildStyle,animationExitingStyle:this.$props.stackChildren?c:void 0},this.v3?function(){return[o]}:[o])}};e.PushVue2=l;var h=l;e.Push=h},7468:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.RevealVue2=e.Reveal=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(4941),s=o(1947),c=o(9680),l=function(){},h={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},componentChildStyle:Object,childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String},data:function(){return{maxHeight:"",maxWidth:""}},methods:{componentWillEnter:function(t){var e=this.$props.onEnter;this.updateContainerDimensions(t.animatedElement,(function(){e&&e.call(void 0,t)}))},componentIsEntering:function(t){var e=this.$props.onEntering;this.updateContainerDimensions(t.animatedElement,(function(){e&&e.call(void 0,t)}))},componentWillExit:function(t){var e=this.$props.onExit;this.updateContainerDimensions(t.animatedElement,(function(){e&&e.call(void 0,t)}))},updateContainerDimensions:function(t,e){void 0===e&&(e=l);var o=t?t.firstElementChild:null;if(o){var r=s.default.outerHeight(o),n=s.default.outerWidth(o);this.$data.maxHeight=r,this.$data.maxWidth=n,e()}}},computed:{animationEnteringStyle:{get:function(){var t;return{maxHeight:(t="vertical"===this.$props.direction?{maxHeight:this.maxHeight?"".concat(this.maxHeight,"px"):null}:{maxWidth:this.maxWidth?"".concat(this.maxWidth,"px"):null}).maxHeight,maxWidth:t.maxWidth}}}},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=(0,c.getDefaultSlots)(this),r=this.$props,i=(r.direction,r.childFactory,function(t,e){var o={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(o[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(r=Object.getOwnPropertySymbols(t);n<r.length;n++)e.indexOf(r[n])<0&&Object.prototype.propertyIsEnumerable.call(t,r[n])&&(o[r[n]]=t[r[n]])}}(r,["direction","childFactory"]),"reveal-".concat(this.$props.direction));return e(a.Animation,{appear:this.$props.appear,attrs:this.v3?void 0:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,componentChildStyle:this.$props.componentChildStyle,animationEnteringStyle:this.animationEnteringStyle,transitionName:i},enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,onEnter:this.componentWillEnter,on:this.v3?void 0:{enter:this.componentWillEnter,entering:this.componentIsEntering,exit:this.componentWillExit},onEntering:this.componentIsEntering,onExit:this.componentWillExit,componentChildStyle:this.$props.componentChildStyle,animationEnteringStyle:this.animationEnteringStyle,transitionName:i},this.v3?function(){return[o]}:[o])}};e.RevealVue2=h;var u=h;e.Reveal=u},1929:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SlideVue2=e.Slide=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(4941),s=o(9680),c={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},componentChildClassName:[Array],childFactory:Object,componentChildStyle:Object,className:String,direction:{type:String,default:"down"},tag:String,id:String,role:String},methods:{onEntering:function(t){this.$emit("entering",t)},onEnter:function(t){this.$emit("enter",t)},onEntered:function(t){this.$emit("entered",t)},onExit:function(t){this.$emit("exit",t)},onExiting:function(t){this.$emit("exiting",t)},onExited:function(t){this.$emit("exited",t)}},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=(0,s.getDefaultSlots)(this),r=this.$props,i=(r.direction,r.id),c=(function(t,e){var o={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(o[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(r=Object.getOwnPropertySymbols(t);n<r.length;n++)e.indexOf(r[n])<0&&Object.prototype.propertyIsEnumerable.call(t,r[n])&&(o[r[n]]=t[r[n]])}}(r,["direction","id"]),"slide-".concat(this.$props.direction));return e(a.Animation,{id:i,attrs:this.v3?void 0:{id:i,transitionName:c,componentChildClassName:this.$props.componentChildClassName,componentChildStyle:this.$props.componentChildStyle,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},transitionName:c,componentChildClassName:this.$props.componentChildClassName,componentChildStyle:this.$props.componentChildStyle,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,onEnter:this.onEnter,on:this.v3?void 0:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[o]}:[o])}};e.SlideVue2=c;var l=c;e.Slide=l},7524:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomVue2=e.Zoom=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(4941),s=o(9680),c={position:"absolute",top:"0",left:"0"},l={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},stackChildren:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"out"},tag:String,id:String},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=(0,s.getDefaultSlots)(this),r="zoom-".concat(this.$props.direction);return e(a.Animation,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?c:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?c:void 0},this.v3?function(){return[o]}:[o])}};e.ZoomVue2=l;var h=l;e.Zoom=h},5173:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.cancelAnimation=e.animate=void 0,e.animate=function(t,e,o){void 0===e&&(e=0),void 0===o&&(o=0);var r,n=t.duration,i=e&&1-e;return t.onStart&&t.onStart(),o=window.requestAnimationFrame((function a(s){r||(r=s);var c=(s-r+1)/n+i;c<=1?(t.onUpdate&&t.onUpdate(c),o=window.requestAnimationFrame(a),e=c):(t.onEnd&&t.onEnd(1),e=0)}))},e.cancelAnimation=function(t){t&&window.cancelAnimationFrame(t)}},8895:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.cancelAnimation=e.animate=e.RevealVue2=e.Reveal=e.ZoomVue2=e.Zoom=e.SlideVue2=e.Slide=e.PushVue2=e.Push=e.ExpandVue2=e.Expand=e.FadeVue2=e.Fade=e.AnimationChildVue2=e.AnimationChild=e.AnimationVue2=e.Animation=void 0;var r=o(4941);Object.defineProperty(e,"Animation",{enumerable:!0,get:function(){return r.Animation}}),Object.defineProperty(e,"AnimationVue2",{enumerable:!0,get:function(){return r.AnimationVue2}});var n=o(9389);Object.defineProperty(e,"AnimationChild",{enumerable:!0,get:function(){return n.AnimationChild}}),Object.defineProperty(e,"AnimationChildVue2",{enumerable:!0,get:function(){return n.AnimationChildVue2}});var i=o(367);Object.defineProperty(e,"Fade",{enumerable:!0,get:function(){return i.Fade}}),Object.defineProperty(e,"FadeVue2",{enumerable:!0,get:function(){return i.FadeVue2}});var a=o(2483);Object.defineProperty(e,"Expand",{enumerable:!0,get:function(){return a.Expand}}),Object.defineProperty(e,"ExpandVue2",{enumerable:!0,get:function(){return a.ExpandVue2}});var s=o(5756);Object.defineProperty(e,"Push",{enumerable:!0,get:function(){return s.Push}}),Object.defineProperty(e,"PushVue2",{enumerable:!0,get:function(){return s.PushVue2}});var c=o(1929);Object.defineProperty(e,"Slide",{enumerable:!0,get:function(){return c.Slide}}),Object.defineProperty(e,"SlideVue2",{enumerable:!0,get:function(){return c.SlideVue2}});var l=o(7524);Object.defineProperty(e,"Zoom",{enumerable:!0,get:function(){return l.Zoom}}),Object.defineProperty(e,"ZoomVue2",{enumerable:!0,get:function(){return l.ZoomVue2}});var h=o(7468);Object.defineProperty(e,"Reveal",{enumerable:!0,get:function(){return h.Reveal}}),Object.defineProperty(e,"RevealVue2",{enumerable:!0,get:function(){return h.RevealVue2}});var u=o(5173);Object.defineProperty(e,"animate",{enumerable:!0,get:function(){return u.animate}}),Object.defineProperty(e,"cancelAnimation",{enumerable:!0,get:function(){return u.cancelAnimation}})},8420:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.packageMetadata=void 0,e.packageMetadata={name:"@progress/kendo-vue-animation",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1726209293,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},1947:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={outerHeight:function(t){if(!t)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),o=parseFloat(e.marginTop),r=parseFloat(e.marginBottom);return t.offsetHeight+o+r},outerWidth:function(t){if(!t)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),o=parseFloat(e.marginLeft),r=parseFloat(e.marginRight);return t.offsetWidth+o+r},styles:{"animation-container":"k-animation-container","animation-container-relative":"k-animation-container-relative","animation-container-fixed":"k-animation-container-fixed","push-right-enter":"k-push-right-enter","push-right-appear":"k-push-right-appear","push-right-enter-active":"k-push-right-enter-active","push-right-appear-active":"k-push-right-appear-active","push-right-exit":"k-push-right-exit","push-right-exit-active":"k-push-right-exit-active","push-left-enter":"k-push-left-enter","push-left-appear":"k-push-left-appear","push-left-enter-active":"k-push-left-enter-active","push-left-appear-active":"k-push-left-appear-active","push-left-exit":"k-push-left-exit","push-left-exit-active":"k-push-left-exit-active","push-down-enter":"k-push-down-enter","push-down-appear":"k-push-down-appear","push-down-enter-active":"k-push-down-enter-active","push-down-appear-active":"k-push-down-appear-active","push-down-exit":"k-push-down-exit","push-down-exit-active":"k-push-down-exit-active","push-up-enter":"k-push-up-enter","push-up-appear":"k-push-up-appear","push-up-enter-active":"k-push-up-enter-active","push-up-appear-active":"k-push-up-appear-active","push-up-exit":"k-push-up-exit","push-up-exit-active":"k-push-up-exit-active",expand:"k-expand","expand-vertical-enter":"k-expand-vertical-enter","expand-vertical-appear":"k-expand-vertical-appear","expand-vertical-enter-active":"k-expand-vertical-enter-active","expand-vertical-appear-active":"k-expand-vertical-appear-active","expand-vertical-exit":"k-expand-vertical-exit","expand-vertical-exit-active":"k-expand-vertical-exit-active","expand-horizontal-enter":"k-expand-horizontal-enter","expand-horizontal-appear":"k-expand-horizontal-appear","expand-horizontal-enter-active":"k-expand-horizontal-enter-active","expand-horizontal-appear-active":"k-expand-horizontal-appear-active","expand-horizontal-exit":"k-expand-horizontal-exit","expand-horizontal-exit-active":"k-expand-horizontal-exit-active","child-animation-container":"k-child-animation-container","fade-enter":"k-fade-enter","fade-appear":"k-fade-appear","fade-enter-active":"k-fade-enter-active","fade-appear-active":"k-fade-appear-active","fade-exit":"k-fade-exit","fade-exit-active":"k-fade-exit-active","zoom-in-enter":"k-zoom-in-enter","zoom-in-appear":"k-zoom-in-appear","zoom-in-enter-active":"k-zoom-in-enter-active","zoom-in-appear-active":"k-zoom-in-appear-active","zoom-in-exit":"k-zoom-in-exit","zoom-in-exit-active":"k-zoom-in-exit-active","zoom-out-enter":"k-zoom-out-enter","zoom-out-appear":"k-zoom-out-appear","zoom-out-enter-active":"k-zoom-out-enter-active","zoom-out-appear-active":"k-zoom-out-appear-active","zoom-out-exit":"k-zoom-out-exit","zoom-out-exit-active":"k-zoom-out-exit-active","slide-in-appear":"k-slide-in-appear",centered:"k-centered","slide-in-appear-active":"k-slide-in-appear-active","slide-down-enter":"k-slide-down-enter","slide-down-appear":"k-slide-down-appear","slide-down-enter-active":"k-slide-down-enter-active","slide-down-appear-active":"k-slide-down-appear-active","slide-down-exit":"k-slide-down-exit","slide-down-exit-active":"k-slide-down-exit-active","slide-up-enter":"k-slide-up-enter","slide-up-appear":"k-slide-up-appear","slide-up-enter-active":"k-slide-up-enter-active","slide-up-appear-active":"k-slide-up-appear-active","slide-up-exit":"k-slide-up-exit","slide-up-exit-active":"k-slide-up-exit-active","slide-right-enter":"k-slide-right-enter","slide-right-appear":"k-slide-right-appear","slide-right-enter-active":"k-slide-right-enter-active","slide-right-appear-active":"k-slide-right-appear-active","slide-right-exit":"k-slide-right-exit","slide-right-exit-active":"k-slide-right-exit-active","slide-left-enter":"k-slide-left-enter","slide-left-appear":"k-slide-left-appear","slide-left-enter-active":"k-slide-left-enter-active","slide-left-appear-active":"k-slide-left-appear-active","slide-left-exit":"k-slide-left-exit","slide-left-exit-active":"k-slide-left-exit-active","reveal-vertical-enter":"k-reveal-vertical-enter","reveal-vertical-appear":"k-reveal-vertical-appear","reveal-vertical-enter-active":"k-reveal-vertical-enter-active","reveal-vertical-appear-active":"k-reveal-vertical-appear-active","reveal-vertical-exit":"k-reveal-vertical-exit","reveal-vertical-exit-active":"k-reveal-vertical-exit-active","reveal-horizontal-enter":"k-reveal-horizontal-enter","reveal-horizontal-appear":"k-reveal-horizontal-appear","reveal-horizontal-enter-active":"k-reveal-horizontal-enter-active","reveal-horizontal-appear-active":"k-reveal-horizontal-appear-active","reveal-horizontal-exit":"k-reveal-horizontal-exit","reveal-horizontal-exit-active":"k-reveal-horizontal-exit-active"}}},8506:(t,e,o)=>{o.r(e),o.d(e,{Aggregates:()=>$n,ArcGauge:()=>Ld,ArcScale:()=>Ad,AreaChart:()=>zs,AreaSegment:()=>xs,ArrowLinearPointer:()=>ed,Axis:()=>yr,AxisGroupRangeTracker:()=>Ps,AxisLabel:()=>Zo,Bar:()=>Hs,BarChart:()=>Rs,BarLabel:()=>As,BarLinearPointer:()=>sd,Barcode:()=>zv,Box:()=>yo,BoxElement:()=>Vo,BoxPlot:()=>Xs,BoxPlotChart:()=>Zs,BubbleChart:()=>ic,Bullet:()=>lc,BulletChart:()=>uc,Candlestick:()=>Us,CandlestickChart:()=>qs,CategoricalChart:()=>Za,CategoricalErrorBar:()=>Va,CategoricalPlotArea:()=>xl,CategoryAxis:()=>Jr,Chart:()=>Wu,ChartAxis:()=>Dn,ChartContainer:()=>bc,ChartElement:()=>Mo,ChartPane:()=>Fn,ChartPlotArea:()=>Un,ChartService:()=>ur,CircularGauge:()=>Ed,Class:()=>$.Class,ClipAnimation:()=>fs,ClusterLayout:()=>Ts,Crosshair:()=>gc,CrosshairTooltip:()=>fc,CurveProcessor:()=>Tn,DateCategoryAxis:()=>ln,DateValueAxis:()=>yn,DefaultAggregates:()=>Bc,DomEventsBuilder:()=>vr,DonutChart:()=>Hh,DonutPlotArea:()=>Bh,DonutSegment:()=>jh,ErrorBarBase:()=>Ma,ErrorRangeCalculator:()=>Jn,Extent:()=>Am,FloatElement:()=>Do,FontLoader:()=>Zt,FormatService:()=>cr,Gauge:()=>Ep,Gradients:()=>Io,HashMap:()=>Ct,Highlight:()=>Cl,InstanceObserver:()=>Pt,IntlService:()=>nr,Legend:()=>Xl,LegendItem:()=>Kl,LegendLayout:()=>Hl,LineChart:()=>ys,LinePoint:()=>os,LineSegment:()=>ns,LinearGauge:()=>hd,LinearPointer:()=>Yp,LinearScale:()=>qp,Location:()=>Gf,LogarithmicAxis:()=>Cn,Map:()=>Tg,Matrix:()=>Oe,MousewheelZoom:()=>jl,Navigator:()=>fp,NavigatorHint:()=>lp,Note:()=>Jo,NumericAxis:()=>mn,OHLCChart:()=>ol,OHLCPoint:()=>tl,Observable:()=>Fe,Pane:()=>_c,Pannable:()=>Ml,PieAnimation:()=>ch,PieChart:()=>Mh,PieChartMixin:()=>Oh,PiePlotArea:()=>Vh,PieSegment:()=>_h,PlotAreaBase:()=>Pc,PlotAreaEventsMixin:()=>Ac,PlotAreaFactory:()=>Yl,Point:()=>fo,PointEventsMixin:()=>Ja,PolarAxis:()=>Pn,QRCode:()=>Tf,RadarCategoryAxis:()=>zn,RadarLogarithmicAxis:()=>Bn,RadarNumericAxis:()=>Hn,RadialGauge:()=>Pd,RadialPointer:()=>Sd,RadialScale:()=>yd,RangeAreaChart:()=>Qc,RangeAreaPoint:()=>Kc,RangeBar:()=>Tc,RangeBarChart:()=>Dc,RangePointer:()=>Id,Ring:()=>wo,RootElement:()=>To,Sankey:()=>hy,ScatterChart:()=>ec,ScatterErrorBar:()=>Js,ScatterLineChart:()=>hh,Sector:()=>Co,Selection:()=>Jl,SeriesAggregator:()=>Hc,SeriesBinder:()=>Yn,ShapeBuilder:()=>So,ShapeElement:()=>ko,SharedTooltip:()=>rh,Sparkline:()=>np,SplineAreaSegment:()=>Os,SplineSegment:()=>us,StackWrap:()=>Ds,StockChart:()=>gp,TemplateService:()=>vt,Text:()=>Fo,TextBox:()=>$o,Title:()=>Yo,Tooltip:()=>eh,UserEvents:()=>po,WaterfallChart:()=>al,WaterfallSegment:()=>nl,XYPlotArea:()=>yh,ZoomSelection:()=>Vl,addClass:()=>U,alignPathToPixel:()=>X,anyHasZIndex:()=>Aa,append:()=>It,appendIfNotNull:()=>ja,applyEventMap:()=>Me,areNumbers:()=>ka,autoMajorUnit:()=>vo,autoTextColor:()=>pe,barcodeValidator:()=>Pv,bindEvents:()=>Bt,bindSegments:()=>Ia,categoriesCount:()=>Ba,chartBaseTheme:()=>Ey,clockwise:()=>G,constants:()=>r,convertableToNumber:()=>Z,countNumbers:()=>Kn,createHashSet:()=>be,createOutOfRangePoints:()=>Ya,createSankeyData:()=>py,cycleDown:()=>J,cycleIndex:()=>tt,cycleUp:()=>Q,deepExtend:()=>it,defaultErrorHandler:()=>xe,defined:()=>Lt,deg:()=>Tt,elementOffset:()=>Et,elementScale:()=>ue,elementSize:()=>Dt,elementStyles:()=>ht,equalsIgnoreCase:()=>La,evalOptions:()=>Ea,eventCoordinates:()=>Nt,eventElement:()=>Rt,eventMap:()=>Se,filterSeriesByType:()=>Da,find:()=>se,findAxisByName:()=>Nn,getAriaTemplate:()=>mt,getField:()=>Xn,getSpacing:()=>ut,getSupportedFeatures:()=>He,getTemplate:()=>ft,getter:()=>bt,grep:()=>xt,hasClasses:()=>wt,hasGradientOverlay:()=>Fa,hasOwnProperty:()=>_e,hasValue:()=>Ua,hashKey:()=>Ft,inArray:()=>Ot,interpolateValue:()=>St,isArray:()=>F,isDateAxis:()=>Ka,isFunction:()=>et,isNumber:()=>Y,isObject:()=>at,isPlainObject:()=>Vt,isString:()=>W,keys:()=>we,last:()=>Ut,limitValue:()=>Kt,logToConsole:()=>$.logToConsole,map:()=>At,mousewheelDelta:()=>kt,noop:()=>Be,now:()=>Le,objectKey:()=>qt,off:()=>ke,on:()=>je,parseDateCategory:()=>Ra,qrcodeValidator:()=>Ef,rad:()=>$t,rectToBox:()=>Uo,removeClass:()=>q,renderIcon:()=>ie,round:()=>Xt,segmentVisible:()=>Ha,setDefaultOptions:()=>Qt,singleItemOrArray:()=>qa,sparseArrayLimits:()=>ae,styleValue:()=>st,unbindEvents:()=>Gt,valueOrDefault:()=>Yt});var r={};o.r(r),o.d(r,{DEFAULT_PANE:()=>pp,NAVIGATOR_AXIS:()=>up,NAVIGATOR_PANE:()=>hp});var n="arc",i="ArrowUp",a="ArrowDown",s="ArrowLeft",c="ArrowRight",l="aria-activedescendant",h="#000",u="bottom",p="center",d="circle",v=3,f="cross",m="date",g="12px sans-serif",y=10,b="end",x=/\{\d+:?/,w="height",_="inside",C="inherit",O="left",S=Number.MAX_VALUE,z=-Number.MAX_VALUE,M="none",P="object",V="outside",A="right",j="roundedRect",k="start",H="string",I="top",B="value",L="#fff",T="width",E="x",D="y",N="pointer",R="horizontal";function F(t){return Array.isArray(t)}function U(t,e){for(var o=F(e)?e:[e],r=0;r<o.length;r++){var n=o[r];-1===t.className.indexOf(n)&&(t.className+=" "+n)}}var K=/\s+/g;function q(t,e){t&&t.className&&(t.className=t.className.replace(e,"").replace(K," "))}var $=o(4407);function X(t){var e=.5;t.options.stroke&&$.drawing.util.defined(t.options.stroke.width)&&t.options.stroke.width%2==0&&(e=0);for(var o=0;o<t.segments.length;o++)t.segments[o].anchor().round(0).translate(e,e);return t}function G(t,e){return-t.x*e.y+t.y*e.x<0}function Y(t){return"number"==typeof t&&!isNaN(t)}function W(t){return typeof t===H}function Z(t){return Y(t)||W(t)&&isFinite(t)}function Q(t,e){return(t+1)%e}function J(t,e){var o=t-1;return o<0?e-1:o}function tt(t,e){return 1===e||t%e==0?0:t<0?e+t%e:t>=e?t%e:t}function et(t){return"function"==typeof t}var ot="object",rt="undefined";function nt(t,e){for(var o in e)if("__proto__"!==o&&"constructor"!==o){var r,n=e[o],i=typeof n;if((r=i===ot&&null!==n?n.constructor:null)&&r!==Array)if(n instanceof Date)t[o]=new Date(n.getTime());else if(et(n.clone))t[o]=n.clone();else{var a=t[o];t[o]=typeof a===ot&&a||{},nt(t[o],n)}else i!==rt&&(t[o]=n)}return t}function it(t){for(var e=arguments,o=arguments.length,r=1;r<o;r++)nt(t,e[r]);return t}function at(t){return"object"==typeof t}function st(t){return Y(t)?t+"px":t}var ct=/width|height|top|left|bottom|right/i;function lt(t){return ct.test(t)}function ht(t,e){var o=W(e)?[e]:e;if(F(o)){for(var r={},n=window.getComputedStyle(t),i=0;i<o.length;i++){var a=o[i];r[a]=lt(a)?parseFloat(n[a]):n[a]}return r}if(at(e))for(var s in e)t.style[s]=st(e[s])}function ut(t,e){void 0===e&&(e=0);var o={top:0,right:0,bottom:0,left:0};return"number"==typeof t?o[I]=o[A]=o[u]=o[O]=t:(o[I]=t[I]||e,o[A]=t[A]||e,o[u]=t[u]||e,o[O]=t[O]||e),o}var pt={compile:function(t){return t}},dt=function(){};dt.register=function(t){pt=t},dt.compile=function(t,e){return pt.compile(t,e)};const vt=dt;function ft(t){var e;return void 0===t&&(t={}),t.template?t.template=e=vt.compile(t.template):et(t.content)&&(e=t.content),e}function mt(t){var e;return void 0===t&&(t={}),t.ariaTemplate?t.ariaTemplate=e=vt.compile(t.ariaTemplate):et(t.ariaContent)&&(e=t.ariaContent),e}var gt=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g,yt={};function bt(t){if(yt[t])return yt[t];var e=[];return t.replace(gt,(function(t,o,r,n){e.push($.drawing.util.defined(o)?o:r||n)})),yt[t]=function(t){for(var o=t,r=0;r<e.length&&o;r++)o=o[e[r]];return o},yt[t]}function xt(t,e){for(var o=t.length,r=[],n=0;n<o;n++)e(t[n])&&r.push(t[n]);return r}function wt(t,e){if(t.className)for(var o=e.split(" "),r=0;r<o.length;r++)if(t.className.indexOf&&-1!==t.className.indexOf(o[r]))return!0}yt[void 0]=function(t){return t};var _t=function(){this._map=new Map};_t.prototype.get=function(t){return this._map.get(t)},_t.prototype.set=function(t,e){this._map.set(t,e)};const Ct=_t;function Ot(t,e){if(e)return-1!==e.indexOf(t)}function St(t,e,o){return $.drawing.util.round(t+(e-t)*o,v)}var zt="trigger",Mt=function(t,e){this.observer=t,this.handlerMap=it({},this.handlerMap,e)};Mt.prototype.trigger=function(t,e){var o,r=this.observer,n=this.handlerMap;return n[t]?o=this.callObserver(n[t],e):r[zt]&&(o=this.callObserver(zt,t,e)),o},Mt.prototype.callObserver=function(t){for(var e=[],o=arguments.length-1;o-- >0;)e[o]=arguments[o+1];return this.observer[t].apply(this.observer,e)},Mt.prototype.requiresHandlers=function(t){if(this.observer.requiresHandlers)return this.observer.requiresHandlers(t);for(var e=0;e<t.length;e++)if(this.handlerMap[t[e]])return!0};const Pt=Mt;function Vt(t){return"[object Object]"===Object.prototype.toString.call(t)}function At(t,e){for(var o=t.length,r=[],n=0;n<o;n++){var i=e(t[n]);$.drawing.util.defined(i)&&r.push(i)}return r}var jt=$.support.browser||{};function kt(t){var e=0;return t.wheelDelta?(e=-t.wheelDelta/120,jt.webkit&&(e/=2*Math.max(window.devicePixelRatio,.625))):t.detail&&(e=t.detail/3),e>0?Math.ceil(e):Math.floor(e)}var Ht=$.drawing.util,It=Ht.append,Bt=Ht.bindEvents,Lt=Ht.defined,Tt=Ht.deg,Et=Ht.elementOffset,Dt=Ht.elementSize,Nt=Ht.eventCoordinates,Rt=Ht.eventElement,Ft=Ht.hashKey,Ut=Ht.last,Kt=Ht.limitValue,qt=Ht.objectKey,$t=Ht.rad,Xt=Ht.round,Gt=Ht.unbindEvents,Yt=Ht.valueOrDefault,Wt=function(){};Wt.fetchFonts=function(t,e,o){void 0===o&&(o={depth:0}),!t||o.depth>5||!document.fonts||Object.keys(t).forEach((function(r){var n=t[r];"dataSource"!==r&&"$"!==r[0]&&n&&("font"===r?e.push(n):"object"==typeof n&&(o.depth++,Wt.fetchFonts(n,e,o),o.depth--))}))},Wt.loadFonts=function(t,e){var o=[];if(t.length>0&&document.fonts){try{o=t.map((function(t){return document.fonts.load(t)}))}catch(t){(0,$.logToConsole)(t)}Promise.all(o).then(e,e)}else e()},Wt.preloadFonts=function(t,e){var o=[];Wt.fetchFonts(t,o),Wt.loadFonts(o,e)};const Zt=Wt;function Qt(t,e){var o=t.prototype;o.options?o.options=it({},o.options,e):o.options=e}var Jt="k-i-",te="k-svg-i-",ee=function(t,e){this.element=t,this.options=it({},this.options,e),this.wrapper()};ee.prototype.wrapper=function(){this.addClasses()},ee.prototype.addClasses=function(){},ee.prototype.html=function(){return this.element.outerHTML},Qt(ee,{name:"",size:"none",themeColor:"none",flip:"default",iconClass:"",stylingOptions:["size","themeColor","fill"]});var oe=function(t){function e(e,o){t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.wrapper=function(){var e=this.element.className.split(" ").find((function(t){return t.startsWith(Jt)})),o=this.options.icon?""+(this.options.icon.startsWith(Jt)?"":Jt)+this.options.icon:"";this._className=o,U(this.element,"k-icon"),U(this.element,"k-font-icon"),q(this.element,e),U(this.element,o),U(this.element,this.options.iconClass||""),t.prototype.wrapper.call(this)},e}(ee);Qt(oe,{name:"HTMLFontIcon",icon:null});var re=function(t){function e(e,o){e.innerHTML="",t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.wrapper=function(){var e=this.options.icon,o=this.options.iconClass,r=this.element.className.split(" ").find((function(t){return t.startsWith(te)}));if(!e&&o){var n=o.match(/k-i-(\w+(?:-\w+)*)/);n&&(e=n[1],o=o.replace(n[0],""))}W(e)&&(e=e.replace("k-i-","").replace(/-./g,(function(t){return t[1].toUpperCase()})),e=this.options.svgIcons[e]||this.options.svgIcons[e+"Icon"]);var i=e&&e.name?""+te+e.name:"";if(this._className=i,U(this.element,"k-svg-icon"),q(this.element,r),U(this.element,i),U(this.element,o||""),this.element.setAttribute("aria-hidden","true"),e&&Vt(e)){var a=document.createElementNS("http://www.w3.org/2000/svg","svg");a.setAttribute("viewBox",e.viewBox||""),a.setAttribute("focusable","false"),a.innerHTML=e.content||"",this.element.appendChild(a)}t.prototype.wrapper.call(this)},e}(ee);Qt(re,{name:"HTMLSvgIcon",icon:null,svgIcons:{}});var ne={svg:re,font:oe};function ie(t,e){var o=t,r=e;return o&&(!at(o)||o instanceof HTMLElement)&&!W(o)||(r=o,o=document.createElement("span")),W(r)&&(r={icon:r}),r.type||(r.type="svg"),ne[r.type]?new ne[r.type](o,r).html():null}function ae(t){for(var e=S,o=z,r=0,n=t.length;r<n;r++){var i=t[r];null!==i&&isFinite(i)&&(e=Math.min(e,i),o=Math.max(o,i))}return{min:e===S?void 0:e,max:o===z?void 0:o}}function se(t,e){for(var o=0;o<t.length;o++){var r=t[o];if(e(r,o,t))return r}}var ce=$.geometry.Matrix,le=/matrix\((.*)\)/;function he(t){var e=getComputedStyle(t).transform;return"none"===e?ce.unit():function(t){var e=t.match(le);if(null===e||2!==e.length)return ce.unit();var o=e[1].split(",").map((function(t){return parseFloat(t)}));return new(Function.prototype.bind.apply(ce,[null].concat(o)))}(e)}function ue(t){if(!t)return ce.unit();for(var e=he(t),o=t.parentElement;o;){var r=he(o);e=e.multiplyCopy(r),o=o.parentElement}return e.b=e.c=e.e=e.f=0,e}const pe=function(t){return new $.Color(t).isDark()?L:h};var de={},ve=function(t){this._index={},this._values=t?t.slice(0):[];for(var e=0;e<this._values.length;e++)this._index[this._values[e]]=e},fe={size:{configurable:!0}};ve.prototype.values=function(){return this._values.filter((function(t){return t!==de}))},ve.prototype.has=function(t){return void 0!==this._index[t]},ve.prototype.add=function(t){this.has(t)||(this._index[t]=this._values.length,this._values.push(t))},ve.prototype.delete=function(t){var e=this._index[t];void 0!==e&&(this._values[e]=de,delete this._index[t])},ve.prototype.clear=function(){this._index={},this._values=[]},fe.size.get=function(){return this._values.length},Object.defineProperties(ve.prototype,fe);var me=function(t){this._set=new Set(t)},ge={size:{configurable:!0}};me.prototype.values=function(){return Array.from(this._set)},me.prototype.has=function(t){return this._set.has(t)},me.prototype.add=function(t){this._set.add(t)},me.prototype.delete=function(t){this._set.delete(t)},me.prototype.clear=function(){this._set.clear()},ge.size.get=function(){return this._set.size},Object.defineProperties(me.prototype,ge);var ye=function(){var t=!1;return"function"==typeof Set&&(t=new Set([1]).has(1)),t};function be(t){return ye()?new me(t):new ve(t)}function xe(t){throw t}const we={INSERT:45,DELETE:46,BACKSPACE:8,TAB:9,ENTER:13,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,END:35,HOME:36,SPACEBAR:32,PAGEUP:33,PAGEDOWN:34,F2:113,F10:121,F12:123,NUMPAD_PLUS:107,NUMPAD_MINUS:109,NUMPAD_DOT:110};function _e(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var Ce=function(){this.height=0,this.width=0,this.data=[]};Ce.prototype.clone=function(){var t=new Ce;return t.height=this.height,t.width=this.width,t.data=this.data.map((function(t){return t.slice()})),t},Ce.prototype.get=function(t,e){var o=this.data[t];return o?o[e]:null},Ce.prototype.set=function(t,e,o){var r=this.data[t];null==r&&(r=this.data[t]=[]),r[e]=o,t>=this.height&&(this.height=t+1),e>=this.width&&(this.width=e+1)},Ce.prototype.each=function(t,e){for(var o=0;o<this.height;++o)for(var r=0;r<this.width;++r){var n=this.get(o,r);if((e||null!=n)&&void 0!==(n=t(n,o,r)))return n}},Ce.prototype.map=function(t,e){var o=new Ce;return this.each((function(e,r,n){o.set(r,n,t(e,r,n))}),e),o},Ce.prototype.transpose=function(){var t=new Ce;return this.each((function(e,o,r){t.set(r,o,e)})),t},Ce.prototype.unit=function(t){this.width=this.height=t;for(var e=this.data=new Array(t),o=t;--o>=0;)for(var r=e[o]=new Array(t),n=t;--n>=0;)r[n]=o===n?1:0;return this},Ce.prototype.multiply=function(t){for(var e=this,o=new Ce,r=0;r<e.height;++r)for(var n=0;n<t.width;++n){for(var i=0,a=0;a<e.width;++a){var s=e.get(r,a),c=t.get(a,n);"number"==typeof s&&"number"==typeof c&&(i+=s*c)}o.set(r,n,i)}return o},Ce.prototype.inverse=function(){for(var t=this.width,e=this.augment((new Ce).unit(t)),o=e.data,r=function(e){var r=function(t,e,o){for(var r=o(t),n=t,i=t+1;i<e;i++){var a=o(t);a>r&&(r=a,n=t)}return n}(e,t,(function(t){return o[t][e]}));if(!o[r][e])return{v:null};if(e!==r){var n=o[e];o[e]=o[r],o[r]=n}for(var i=e+1;i<t;++i){for(var a=e+1;a<2*t;++a)o[i][a]-=o[e][a]*o[i][e]/o[e][e];o[i][e]=0}},n=0;n<t;++n){var i=r(n);if(i)return i.v}for(var a=0;a<t;++a)for(var s=o[a][a],c=0;c<2*t;++c)o[a][c]/=s;for(var l=t;--l>=0;)for(var h=l;--h>=0;)if(o[h][l])for(var u=2*t;--u>=t;)o[h][u]-=o[l][u]*o[h][l];return e.slice(0,t,t,t)},Ce.prototype.augment=function(t){var e=this.clone(),o=e.width;return t.each((function(t,r,n){e.set(r,n+o,t)})),e},Ce.prototype.slice=function(t,e,o,r){for(var n=new Ce,i=0;i<o;++i)for(var a=0;a<r;++a)n.set(i,a,this.get(t+i,e+a));return n};const Oe=Ce;var Se={down:"pointerdown",move:"pointermove",up:"pointerup",cancel:"pointercancel pointerleave"};function ze(t){return Se[t]||t}var Me=function(t){return t.replace(/([^ ]+)/g,ze)};function Pe(){var t,e,o="";for(t=0;t<32;t++)e=16*Math.random()|0,8!==t&&12!==t&&16!==t&&20!==t||(o+="-"),o+=(12===t?4:16===t?3&e|8:e).toString(16);return o}var Ve=new WeakMap,Ae=Symbol("id");function je(t,e,o,r,n){!function(t,e,o,r,n){(F(e)?e:(e||"").split(" ")).forEach((function(e){!function(t,e,o,r,n){var i,a=r;o&&et(o)&&!r?a=o:o&&function(t){return"string"==typeof t}(o)&&et(a)&&(i=o);var s=function(e){var o=e.target?e.target.closest(i):null;if(!i||i&&e.target&&o){var r=i?o:e.currentTarget;Object.defineProperty(e,"currentTarget",{value:r}),Object.defineProperty(e,"delegateTarget",{value:t}),a(e)}};a[Ae]=Pe();var c=Ve.get(t);c||(c=new Map,Ve.set(t,c)),c.set(a[Ae],s),t.addEventListener(e,s,Boolean(n))}(t,e,o,r,n)}))}(t,e,o,r,n)}function ke(t,e,o,r,n){!function(t,e,o,r){(F(e)?e:(e||"").split(" ")).forEach((function(e){!function(t,e,o,r){var n=Ve.get(t);if(n&&o&&o[Ae]){var i=o[Ae],a=n.get(i);n.delete(i),a&&t.removeEventListener(e,a,Boolean(r))}}(t,e,o,r)}))}(t,e,o,r)}function He(){var t=function(t){var e=!1,o={wp:/(Windows Phone(?: OS)?)\s(\d+)\.(\d+(\.\d+)?)/,fire:/(Silk)\/(\d+)\.(\d+(\.\d+)?)/,android:/(Android|Android.*(?:Opera|Firefox).*?\/)\s*(\d+)\.?(\d+(\.\d+)?)?/,iphone:/(iPhone|iPod).*OS\s+(\d+)[\._]([\d\._]+)/,ipad:/(iPad).*OS\s+(\d+)[\._]([\d_]+)/,playbook:/(PlayBook).*?Tablet\s*OS\s*(\d+)\.(\d+(\.\d+)?)/,windows:/(MSIE)\s+(\d+)\.(\d+(\.\d+)?)/,tizen:/(tizen).*?Version\/(\d+)\.(\d+(\.\d+)?)/i,sailfish:/(sailfish).*rv:(\d+)\.(\d+(\.\d+)?).*firefox/i},r={ios:/^i(phone|pad|pod)$/i,android:/^android|fire$/i,windows:/windows/,wp:/wp/,flat:/sailfish|ffos|tizen/i};for(var n in o)if(t.match(o[n])){if("windows"===n&&"plugins"in navigator)return!1;(e={}).device=n,e.name=Ie(n,r),e[e.name]=!0;break}return e}(navigator.userAgent),e={};return e.mobileOS=t,e}function Ie(t,e,o){for(var r in e)if(e[r].test(t))return r;return void 0!==o?o:t}function Be(){}function Le(){return(new Date).getTime()}var Te="string",Ee="function",De=function(){this._defaultPrevented=!0},Ne=function(){return!0===this._defaultPrevented},Re=function(t){function e(){t.call(this),this._events={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.unbind()},e.prototype.bind=function(t,e,o){var r,n,i,a,s=this,c=typeof t===Te?[t]:t||[],l=typeof e===Ee;if(void 0===e){for(r in t)s.bind(r,t[r]);return s}var h=function(){var t=c[r];(a=l?e:e[t])&&(o&&(i=a,a=function(){s.unbind(t,a),i.apply(s,arguments)},a.original=i),(s._events[t]=s._events[t]||[]).push(a))};for(r=0,n=c.length;r<n;r++)h();return s},e.prototype.one=function(t,e){return this.bind(t,e,!0)},e.prototype.first=function(t,e){var o,r,n,i=this,a=typeof t===Te?[t]:t,s=typeof e===Ee;for(o=0,r=a.length;o<r;o++){var c=a[o];(n=s?e:e[c])&&(i._events[c]=i._events[c]||[]).unshift(n)}return i},e.prototype.trigger=function(t,e){var o,r,n=this,i=n._events[t];if(i){var a=e||{};for(a.sender=n,a._defaultPrevented=!1,a.preventDefault=De,a.isDefaultPrevented=Ne,o=0,r=(i=i.slice()).length;o<r;o++)i[o].call(n,a);return!0===a._defaultPrevented}return!1},e.prototype.unbind=function(t,e){var o,r=this,n=r._events[t];if(void 0===t)r._events={};else if(n)if(e)for(o=n.length-1;o>=0;o--)n[o]!==e&&n[o].original!==e||n.splice(o,1);else r._events[t]=[];return r},e.prototype._setEvents=function(t){for(var e=this,o=(this.events||[]).length,r=0;r<o;r++){var n=e.events[r];e.options[n]&&t[n]&&(e.unbind(n,e.options[n]),e._events&&e._events[n]&&delete e._events[n])}this.bind(this.events,t)},e}($.Class);const Fe=Re;var Ue=Object.assign,Ke=function(t){t.preventDefault()},qe=800,$e=0,Xe="press",Ge="hold",Ye="select",We="start",Ze="move",Qe="end",Je="cancel",to="tap",eo="doubleTap",oo="release",ro="gesturechange",no="gestureend",io="gesturetap",ao={api:0,touch:0,mouse:9,pointer:9};function so(t){var e=[],o=t.originalEvent||t,r=t.currentTarget;return t.api?e.push({id:2,event:t,target:t.target,currentTarget:t.target,location:t,type:"api"}):e.push({location:o,event:t,target:t.target,currentTarget:r,id:o.pointerId,type:"pointer"}),e}var co=function(t){function e(e,o){t.call(this);var r=this;r.support=He(),r.invalidZeroEvents=this.support.mobileOS&&this.support.mobileOS.android,r.axis=e,r._updateLocationData(o),r.startLocation=r.location,r.velocity=r.delta=0,r.timeStamp=Le()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.move=function(t){var e=this,o=t["page"+e.axis],r=Le(),n=r-e.timeStamp||1;!o&&this.invalidZeroEvents||(e.delta=o-e.location,e._updateLocationData(t),e.initialDelta=o-e.startLocation,e.velocity=e.delta/n,e.timeStamp=r)},e.prototype._updateLocationData=function(t){var e=this,o=e.axis;e.location=t["page"+o],e.client=t["client"+o],e.screen=t["screen"+o]},e}($.Class),lo=function(t){function e(e,o,r){t.call(this),Ue(this,{x:new co("X",r.location),y:new co("Y",r.location),type:r.type,threshold:e.threshold||ao[r.type],userEvents:e,target:o,currentTarget:r.currentTarget,initialTouch:r.target,id:r.id,pressEvent:r,_clicks:e._clicks,supportDoubleTap:e.supportDoubleTap,_moved:!1,_finished:!1})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.press=function(){var t=this;this._holdTimeout=setTimeout((function(){return t._hold()}),this.userEvents.minHold),this._trigger(Xe,this.pressEvent)},e.prototype._tap=function(t){var e=this;e.userEvents._clicks++,1===e.userEvents._clicks&&(e._clickTimeout=setTimeout((function(){1===e.userEvents._clicks?e._trigger(to,t):e._trigger(eo,t),e.userEvents._clicks=0}),300))},e.prototype._hold=function(){this._trigger(Ge,this.pressEvent)},e.prototype.move=function(t){var e=this,o="api"!==t.type&&e.userEvents._shouldNotMove;if(!e._finished&&!o){if(e.x.move(t.location),e.y.move(t.location),!e._moved){if(e._withinIgnoreThreshold())return;if(uo.current&&uo.current!==e.userEvents)return e.dispose();e._start(t)}e._finished||e._trigger(Ze,t)}},e.prototype.end=function(t){this.endTime=Le(),this._finished||(this._finished=!0,this._trigger(oo,t),this._moved?this._trigger(Qe,t):this.supportDoubleTap?this._tap(t):this._trigger(to,t),clearTimeout(this._holdTimeout),this.dispose())},e.prototype.dispose=function(){var t=this.userEvents.touches||[];this._finished=!0,this.pressEvent=null,clearTimeout(this._holdTimeout);var e=t.indexOf(this);t.splice(e,1)},e.prototype.skip=function(){this.dispose()},e.prototype.cancel=function(){this.dispose()},e.prototype.isMoved=function(){return this._moved},e.prototype._start=function(t){clearTimeout(this._holdTimeout),this.startTime=Le(),this._moved=!0,this._trigger(We,t)},e.prototype._trigger=function(t,e){var o=e.event,r={touch:this,x:this.x,y:this.y,target:this.target,event:o};this.userEvents.notify(t,r)&&o.preventDefault()},e.prototype._withinIgnoreThreshold=function(){var t=this.x.initialDelta,e=this.y.initialDelta;return Math.sqrt(t*t+e*e)<=this.threshold},e}($.Class);function ho(t){for(var e=Se.up.split(" "),o=0,r=e.length;o<r;o++)t(e[o])}var uo=function(t){function e(e,o){t.call(this);var r,n=this,i=He();if(this.support=i,o=o||{},this.options=o,r=n.filter=o.filter,n.threshold=o.threshold||$e,n.minHold=o.minHold||qe,n.touches=[],n._maxTouches=o.multiTouch?2:1,n.allowSelection=o.allowSelection,n.captureUpIfMoved=o.captureUpIfMoved,n._clicks=0,n.supportDoubleTap=o.supportDoubleTap,Ue(n,{element:e,surface:o.surface||e,stopPropagation:o.stopPropagation,pressed:!1}),this._surfaceMoveHandler=this._move.bind(this),je(n.surface,Me("move"),this._surfaceMoveHandler),this._surfaceEndHandler=this._end.bind(this),je(n.surface,Me("up cancel"),this._surfaceEndHandler),this._elementStartHandler=this._start.bind(this),je(e,Me("down"),r,this._elementStartHandler),e.style["touch-action"]=o.touchAction||"none",o.preventDragEvent&&(this._elementDragStartHandler=Ke,je(e,Me("dragstart"),this._elementDragStartHandler)),this._elementSelectHandler=this._select.bind(this),je(e,Me("mousedown"),r,this._elementSelectHandler),n.captureUpIfMoved){var a=n.surface,s=n.preventIfMoving.bind(n);ho((function(t){a.addEventListener(t,s,!0)}))}n.bind([Xe,Ge,to,eo,We,Ze,Qe,oo,Je,"gesturestart",ro,no,io,Ye],o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.preventIfMoving=function(t){this._isMoved()&&t.preventDefault()},e.prototype.destroy=function(){var t=this,e=this.options,o=this.element;if(!t._destroyed){if(t._destroyed=!0,t.captureUpIfMoved){var r=t.surface;ho((function(e){r.removeEventListener(e,t.preventIfMoving)}))}ke(t.surface,Me("move"),this._surfaceMoveHandler),ke(t.surface,Me("up cancel"),this._surfaceEndHandler),ke(o,Me("down"),this._elementStartHandler),e.preventDragEvent&&ke(o,Me("dragstart"),this._elementDragStartHandler),ke(o,Me("mousedown"),this._elementSelectHandler),t._disposeAll(),t.unbind(),delete t.surface,delete t.element,delete t.currentTarget}},e.prototype.capture=function(){e.current=this},e.prototype.cancel=function(){this._disposeAll(),this.trigger(Je)},e.prototype.notify=function(t,e){var o,r,n,i,a,s,c,l,h=this.touches,u=t;if(this._isMultiTouch()){switch(u){case Ze:u=ro;break;case Qe:u=no;break;case to:u=io}Ue(e,{touches:h},(o=h[0],r=h[1],n=o.x.location,i=o.y.location,c=n-(a=r.x.location),l=i-(s=r.y.location),{center:{x:(n+a)/2,y:(i+s)/2},distance:Math.sqrt(c*c+l*l)}))}return this.trigger(u,Ue(e,{type:u}))},e.prototype.press=function(t,e,o){this._apiCall("_start",t,e,o)},e.prototype.move=function(t,e){this._apiCall("_move",t,e)},e.prototype.end=function(t,e){this._apiCall("_end",t,e)},e.prototype._isMultiTouch=function(){return this.touches.length>1},e.prototype._maxTouchesReached=function(){return this.touches.length>=this._maxTouches},e.prototype._disposeAll=function(){for(var t=this.touches;t.length>0;)t.pop().dispose()},e.prototype._isMoved=function(){return xt(this.touches,(function(t){return t.isMoved()})).length},e.prototype._select=function(t){this.allowSelection&&!this.trigger(Ye,{event:t})||t.preventDefault()},e.prototype._start=function(t){var o=this;if(!(t.which&&t.which>1||this._maxTouchesReached())){var r;e.current=null,this.currentTarget=t.currentTarget,this.stopPropagation&&t.stopPropagation();for(var n=so(t),i=0;i<n.length&&!o._maxTouchesReached();i++){var a=n[i];if(!(r=o.filter?a.currentTarget:o.element)||0!==r.length){"pointer"===a.type&&o.surface.setPointerCapture(a.id);var s=new lo(o,r,a);o.touches.push(s),s.press(),o._isMultiTouch()&&o.notify("gesturestart",{})}}}},e.prototype._move=function(t){this._eachTouch("move",t)},e.prototype._end=function(t){this._eachTouch("end",t)},e.prototype._eachTouch=function(t,e){var o,r,n,i,a={},s=so(e),c=this.touches;for(o=0;o<c.length;o++)a[(r=c[o]).id]=r;for(o=0;o<s.length;o++)(i=a[(n=s[o]).id])&&i[t](n)},e.prototype._apiCall=function(t,e,o,r){this[t]({api:!0,pageX:e,pageY:o,clientX:e,clientY:o,target:r||this.element,stopPropagation:Be,preventDefault:Be})},e.defaultThreshold=function(t){$e=t},e.minHold=function(t){qe=t},e}(Fe);const po=uo;function vo(t,e){var o=Xt(e-t,y-1);if(0===o){if(0===e)return.1;o=Math.abs(e)}var r=Math.pow(10,Math.floor(Math.log(o)/Math.log(10))),n=Xt(o/r,y);return Xt(r*(n<1.904762?.2:n<4.761904?.5:n<9.523809?1:2),y)}const fo=function(t){function e(e,o){t.call(this),this.x=e||0,this.y=o||0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.x,this.y)},e.prototype.equals=function(t){return t&&this.x===t.x&&this.y===t.y},e.prototype.rotate=function(t,e){var o=$t(e),r=Math.cos(o),n=Math.sin(o),i=t.x,a=t.y,s=this.x,c=this.y;return this.x=Xt(i+(s-i)*r+(c-a)*n,v),this.y=Xt(a+(c-a)*r-(s-i)*n,v),this},e.prototype.multiply=function(t){return this.x*=t,this.y*=t,this},e.prototype.distanceTo=function(t){var e=this.x-t.x,o=this.y-t.y;return Math.sqrt(e*e+o*o)},e.onCircle=function(t,o,r){var n=$t(o);return new e(t.x-r*Math.cos(n),t.y-r*Math.sin(n))},e}($.Class);var mo=function(t){function e(e,o,r,n){t.call(this),this.x1=e||0,this.y1=o||0,this.x2=r||0,this.y2=n||0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.equals=function(t){return this.x1===t.x1&&this.x2===t.x2&&this.y1===t.y1&&this.y2===t.y2},e.prototype.width=function(){return this.x2-this.x1},e.prototype.height=function(){return this.y2-this.y1},e.prototype.translate=function(t,e){return this.x1+=t,this.x2+=t,this.y1+=e,this.y2+=e,this},e.prototype.move=function(t,e){var o=this.height(),r=this.width();return Lt(t)&&(this.x1=t,this.x2=this.x1+r),Lt(e)&&(this.y1=e,this.y2=this.y1+o),this},e.prototype.wrap=function(t){return this.x1=Math.min(this.x1,t.x1),this.y1=Math.min(this.y1,t.y1),this.x2=Math.max(this.x2,t.x2),this.y2=Math.max(this.y2,t.y2),this},e.prototype.wrapPoint=function(t){var o=F(t),r=o?t[0]:t.x,n=o?t[1]:t.y;return this.wrap(new e(r,n,r,n)),this},e.prototype.snapTo=function(t,e){return e!==E&&e||(this.x1=t.x1,this.x2=t.x2),e!==D&&e||(this.y1=t.y1,this.y2=t.y2),this},e.prototype.alignTo=function(t,e){var o=this.height(),r=this.width(),n=e===I||e===u?D:E,i=n===D?o:r;if(e===p){var a=t.center(),s=this.center();this.x1+=a.x-s.x,this.y1+=a.y-s.y}else this[n+1]=e===I||e===O?t[n+1]-i:t[n+2];return this.x2=this.x1+r,this.y2=this.y1+o,this},e.prototype.shrink=function(t,e){return this.x2-=t,this.y2-=e,this},e.prototype.expand=function(t,e){return this.shrink(-t,-e),this},e.prototype.pad=function(t){var e=ut(t);return this.x1-=e.left,this.x2+=e.right,this.y1-=e.top,this.y2+=e.bottom,this},e.prototype.unpad=function(t){var e=ut(t);return e.left=-e.left,e.top=-e.top,e.right=-e.right,e.bottom=-e.bottom,this.pad(e)},e.prototype.clone=function(){return new e(this.x1,this.y1,this.x2,this.y2)},e.prototype.center=function(){return new fo(this.x1+this.width()/2,this.y1+this.height()/2)},e.prototype.containsPoint=function(t){return t.x>=this.x1&&t.x<=this.x2&&t.y>=this.y1&&t.y<=this.y2},e.prototype.points=function(){return[new fo(this.x1,this.y1),new fo(this.x2,this.y1),new fo(this.x2,this.y2),new fo(this.x1,this.y2)]},e.prototype.getHash=function(){return[this.x1,this.y1,this.x2,this.y2].join(",")},e.prototype.overlaps=function(t){return!(t.y2<this.y1||this.y2<t.y1||t.x2<this.x1||this.x2<t.x1)},e.prototype.rotate=function(t){var e=this.width(),o=this.height(),r=this.center(),n=r.x,i=r.y,a=go(0,0,n,i,t),s=go(e,0,n,i,t),c=go(e,o,n,i,t),l=go(0,o,n,i,t);return e=Math.max(a.x,s.x,c.x,l.x)-Math.min(a.x,s.x,c.x,l.x),o=Math.max(a.y,s.y,c.y,l.y)-Math.min(a.y,s.y,c.y,l.y),this.x2=this.x1+e,this.y2=this.y1+o,this},e.prototype.toRect=function(){return new $.geometry.Rect([this.x1,this.y1],[this.width(),this.height()])},e.prototype.hasSize=function(){return 0!==this.width()&&0!==this.height()},e.prototype.align=function(t,e,o){var r=e+1,n=e+2,i=e===E?T:w,a=this[i]();Ot(o,[O,I])?(this[r]=t[r],this[n]=this[r]+a):Ot(o,[A,u])?(this[n]=t[n],this[r]=this[n]-a):o===p&&(this[r]=t[r]+(t[i]()-a)/2,this[n]=this[r]+a)},e}($.Class);function go(t,e,o,r,n){var i=$t(n);return new fo(o+(t-o)*Math.cos(i)+(e-r)*Math.sin(i),r-(t-o)*Math.sin(i)+(e-r)*Math.cos(i))}const yo=mo;var bo=function(t){function e(e,o,r,n,i){t.call(this),this.center=e,this.innerRadius=o,this.radius=r,this.startAngle=n,this.angle=i}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.center,this.innerRadius,this.radius,this.startAngle,this.angle)},e.prototype.middle=function(){return this.startAngle+this.angle/2},e.prototype.setRadius=function(t,e){return e?this.innerRadius=t:this.radius=t,this},e.prototype.point=function(t,e){var o=$t(t),r=Math.cos(o),n=Math.sin(o),i=e?this.innerRadius:this.radius,a=Xt(this.center.x-r*i,v),s=Xt(this.center.y-n*i,v);return new fo(a,s)},e.prototype.adjacentBox=function(t,e,o){var r=this.clone().expand(t),n=r.middle(),i=r.point(n),a=e/2,s=o/2,c=Math.sin($t(n)),l=Math.cos($t(n)),h=i.x-a,u=i.y-s;return Math.abs(c)<.9&&(h+=a*-l/Math.abs(l)),Math.abs(l)<.9&&(u+=s*-c/Math.abs(c)),new yo(h,u,h+e,u+o)},e.prototype.containsPoint=function(t){var e=this.center,o=this.innerRadius,r=this.radius,n=this.startAngle,i=this.startAngle+this.angle,a=t.x-e.x,s=t.y-e.y,c=new fo(a,s),l=this.point(n),h=new fo(l.x-e.x,l.y-e.y),u=this.point(i),p=new fo(u.x-e.x,u.y-e.y),d=Xt(a*a+s*s,v);return(h.equals(c)||G(h,c))&&!G(p,c)&&d>=o*o&&d<=r*r},e.prototype.getBBox=function(){var t,e=new yo(S,S,z,z),o=Xt(this.startAngle%360),r=Xt((o+this.angle)%360),n=this.innerRadius,i=[0,90,180,270,o,r].sort(xo),a=i.indexOf(o),s=i.indexOf(r);t=o===r?i:a<s?i.slice(a,s+1):[].concat(i.slice(0,s+1),i.slice(a,i.length));for(var c=0;c<t.length;c++){var l=this.point(t[c]);e.wrapPoint(l),e.wrapPoint(l,n)}return n||e.wrapPoint(this.center),e},e.prototype.expand=function(t){return this.radius+=t,this},e}($.Class);function xo(t,e){return t-e}const wo=bo;var _o=function(t){function e(e,o,r,n){t.call(this,e,0,o,r,n)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.expand=function(e){return t.prototype.expand.call(this,e)},e.prototype.clone=function(){return new e(this.center,this.radius,this.startAngle,this.angle)},e.prototype.setRadius=function(t){return this.radius=t,this},e}(wo);const Co=_o;var Oo=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createRing=function(t,e){var o=t.startAngle+180,r=t.angle+o;(0===t.angle||t.angle>0&&o===r)&&(r+=.001);var n=new $.geometry.Point(t.center.x,t.center.y),i=Math.max(t.radius,0),a=Math.max(t.innerRadius,0),s=new $.geometry.Arc(n,{startAngle:o,endAngle:r,radiusX:i,radiusY:i}),c=$.drawing.Path.fromArc(s,e).close();if(a){s.radiusX=s.radiusY=a;var l=s.pointAt(r);c.lineTo(l.x,l.y),c.arc(r,o,a,a,!0)}else c.lineTo(n.x,n.y);return c},e}($.Class);Oo.current=new Oo;const So=Oo;var zo=function(t){function e(e){t.call(this),this.children=[],this.options=it({},this.options,this.initUserOptions(e))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){return t},e.prototype.reflow=function(t){for(var e,o=this.children,r=0;r<o.length;r++){var n=o[r];n.reflow(t),e=e?e.wrap(n.box):n.box.clone()}this.box=e||t},e.prototype.destroy=function(){var t=this.children;this.animation&&this.animation.destroy();for(var e=0;e<t.length;e++)t[e].destroy()},e.prototype.getRoot=function(){var t=this.parent;return t?t.getRoot():null},e.prototype.getSender=function(){var t=this.getService();if(t)return t.sender},e.prototype.getService=function(){for(var t=this;t;){if(t.chartService)return t.chartService;t=t.parent}},e.prototype.translateChildren=function(t,e){for(var o=this.children,r=o.length,n=0;n<r;n++)o[n].box.translate(t,e)},e.prototype.append=function(){for(var t=arguments,e=0;e<arguments.length;e++){var o=t[e];this.children.push(o),o.parent=this}},e.prototype.renderVisual=function(){!1!==this.options.visible&&(this.createVisual(),this.addVisual(),this.renderChildren(),this.createAnimation(),this.renderComplete())},e.prototype.addVisual=function(){this.visual&&(this.visual.chartElement=this,this.parent&&this.parent.appendVisual(this.visual))},e.prototype.renderChildren=function(){for(var t=this.children,e=t.length,o=0;o<e;o++)t[o].renderVisual()},e.prototype.createVisual=function(){this.visual=new $.drawing.Group({zIndex:this.options.zIndex,visible:Yt(this.options.visible,!0)})},e.prototype.createAnimation=function(){this.visual&&this.options.animation&&(this.animation=$.drawing.Animation.create(this.visual,this.options.animation))},e.prototype.appendVisual=function(t){t.chartElement||(t.chartElement=this),t.options.noclip?this.clipRoot().visual.append(t):Lt(t.options.zIndex)?this.stackRoot().stackVisual(t):this.isStackRoot?this.stackVisual(t):this.visual?this.visual.append(t):this.parent.appendVisual(t)},e.prototype.clipRoot=function(){return this.parent?this.parent.clipRoot():this},e.prototype.stackRoot=function(){return this.parent?this.parent.stackRoot():this},e.prototype.stackVisual=function(t){var e,o=t.options.zIndex||0,r=this.visual.children,n=r.length;for(e=0;e<n;e++){var i=r[e];if(Yt(i.options.zIndex,0)>o)break}this.visual.insert(e,t)},e.prototype.traverse=function(t){for(var e=this.children,o=e.length,r=0;r<o;r++){var n=e[r];t(n),n.traverse&&n.traverse(t)}},e.prototype.closest=function(t){for(var e=this,o=!1;e&&!o;)(o=t(e))||(e=e.parent);if(o)return e},e.prototype.renderComplete=function(){},e.prototype.hasHighlight=function(){var t=(this.options||{}).highlight;return!(!this.createHighlight||t&&!1===t.visible||!1===this.visible)},e.prototype.toggleHighlight=function(t,e){var o=this,r=(this.options||{}).highlight||{},n=r.visual,i=this._highlight;if(!i){var a={fill:{color:L,opacity:e||.2},stroke:{color:L,width:1,opacity:e||.2}};if(n){if(!(i=this._highlight=n(Object.assign(this.highlightVisualArgs(),{createVisual:function(){return o.createHighlight(a)},sender:this.getSender(),series:this.series,dataItem:this.dataItem,category:this.category,value:this.value,percentage:this.percentage,runningTotal:this.runningTotal,total:this.total}))))return}else i=this._highlight=this.createHighlight(a);Lt(i.options.zIndex)||(i.options.zIndex=Yt(r.zIndex,this.options.zIndex)),this.appendVisual(i)}i.visible(t)},e.prototype.toggleFocusHighlight=function(t){var e=((this.options||{}).accessibility||{}).highlight||{},o=this._focusHighlight;if(t||o){if(!o){var r=this.getRoot().options.background,n=pe(r),i={fill:{opacity:e.opacity,color:e.color},stroke:Object.assign({},{color:n},e.border),zIndex:e.zIndex};o=this._focusHighlight=this.createFocusHighlight(i),this.appendVisual(o)}o.visible(t)}},e.prototype.createGradientOverlay=function(t,e,o){var r=new $.drawing.Path(Object.assign({stroke:{color:"none"},fill:this.createGradient(o),closed:t.options.closed},e));return r.segments.elements(t.segments.elements()),r},e.prototype.createGradient=function(t){if(this.parent)return this.parent.createGradient(t)},e.prototype.supportsPointInactiveOpacity=function(){return!0},e}($.Class);zo.prototype.options={};const Mo=zo;var Po=function(t){function e(e){t.call(this,e),this.options.margin=ut(this.options.margin),this.options.padding=ut(this.options.padding)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(e){var o,r=this,n=this.options,i=n.width,a=n.height,s=n.shrinkToFit,c=i&&a,l=n.margin,h=n.padding,u=n.border.width,p=function(){r.align(e,E,n.align),r.align(e,D,n.vAlign),r.paddingBox=o.clone().unpad(l).unpad(u)},d=e.clone();c&&(d.x2=d.x1+i,d.y2=d.y1+a),s&&d.unpad(l).unpad(u).unpad(h),t.prototype.reflow.call(this,d),o=c?this.box=new yo(0,0,i,a):this.box,s&&c?(p(),d=this.contentBox=this.paddingBox.clone().unpad(h)):(d=this.contentBox=o.clone(),o.pad(h).pad(u).pad(l),p()),this.translateChildren(o.x1-d.x1+l.left+u+h.left,o.y1-d.y1+l.top+u+h.top);for(var v=this.children,f=0;f<v.length;f++){var m=v[f];m.reflow(m.box)}},e.prototype.align=function(t,e,o){this.box.align(t,e,o)},e.prototype.hasBox=function(){var t=this.options;return t.border.width||t.background},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.options.visible&&this.hasBox()&&this.visual.append($.drawing.Path.fromRect(this.paddingBox.toRect(),this.visualStyle()))},e.prototype.visualStyle=function(){var t=this.options,e=t.border||{};return{stroke:{width:e.width,color:e.color,opacity:Yt(e.opacity,t.opacity),dashType:e.dashType},fill:{color:t.background,opacity:t.opacity},cursor:t.cursor}},e}(Mo);Qt(Po,{align:O,vAlign:I,margin:{},padding:{},border:{color:h,width:0},background:"",shrinkToFit:!1,width:0,height:0,visible:!0});const Vo=Po;function Ao(t,e){e&&(t.options.className=e.className,t.options.role=e.role,t.options.ariaLabel=e.ariaLabel,t.options.ariaRoleDescription=e.ariaRoleDescription,t.options.ariaChecked=e.ariaChecked)}var jo=function(t){function e(e,o){t.call(this,e),this.pointData=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=this.options,e=this.paddingBox,o=t.type,r=t.rotation,n=e.center(),i=e.width()/2,a=e.height()/2;if(!t.visible||!this.hasBox())return null;var s,c=this.visualStyle();if(o===d)s=new $.drawing.Circle(new $.geometry.Circle([Xt(e.x1+i,v),Xt(e.y1+a,v)],Math.min(i,a)),c);else if("triangle"===o)s=$.drawing.Path.fromPoints([[e.x1+i,e.y1],[e.x1,e.y2],[e.x2,e.y2]],c).close();else if(o===f)(s=new $.drawing.MultiPath(c)).moveTo(e.x1,e.y1).lineTo(e.x2,e.y2),s.moveTo(e.x1,e.y2).lineTo(e.x2,e.y1);else{var l=e.toRect();if(o===j){var h=Yt(t.borderRadius,l.width()/5);l.setCornerRadius(h)}s=$.drawing.Path.fromRect(l,c)}return r&&s.transform($.geometry.transform().rotate(-r,[n.x,n.y])),s.options.zIndex=t.zIndex,s},e.prototype.createElement=function(){var t=this,e=this.options.visual,o=this.pointData||{};return e?e({value:o.value,dataItem:o.dataItem,sender:this.getSender(),series:o.series,category:o.category,rect:this.paddingBox.toRect(),options:this.visualOptions(),createVisual:function(){return t.getElement()}}):this.getElement()},e.prototype.visualOptions=function(){var t=this.options;return{background:t.background,border:t.border,margin:t.margin,padding:t.padding,type:t.type,size:t.width,visible:t.visible}},e.prototype.createVisual=function(){this.visual=this.createElement(),Ao(this.visual,this.options.accessibilityOptions)},e}(Vo);Qt(jo,{type:d,align:p,vAlign:p});const ko=jo;var Ho="radial";const Io={glass:{type:"linear",rotation:0,stops:[{offset:0,color:L,opacity:0},{offset:.25,color:L,opacity:.3},{offset:1,color:L,opacity:0}]},sharpBevel:{type:Ho,stops:[{offset:0,color:L,opacity:.55},{offset:.65,color:L,opacity:0},{offset:.95,color:L,opacity:.25}]},roundedBevel:{type:Ho,stops:[{offset:.33,color:L,opacity:.06},{offset:.83,color:L,opacity:.2},{offset:.95,color:L,opacity:0}]},roundedGlass:{type:Ho,supportVML:!1,stops:[{offset:0,color:L,opacity:0},{offset:.5,color:L,opacity:.3},{offset:.99,color:L,opacity:0}]},sharpGlass:{type:Ho,supportVML:!1,stops:[{offset:0,color:L,opacity:.2},{offset:.15,color:L,opacity:.15},{offset:.17,color:L,opacity:.35},{offset:.85,color:L,opacity:.05},{offset:.87,color:L,opacity:.15},{offset:.99,color:L,opacity:0}]},bubbleShadow:{type:Ho,center:[.5,.5],radius:.5}};function Bo(t,e){if(t.x1===e.x1&&t.y1===e.y1&&t.x2===e.x2&&t.y2===e.y2)return e;var o=Math.min(t.x1,e.x1),r=Math.max(t.x1,e.x1),n=Math.min(t.x2,e.x2),i=Math.max(t.x2,e.x2),a=Math.min(t.y1,e.y1),s=Math.max(t.y1,e.y1),c=Math.min(t.y2,e.y2),l=Math.max(t.y2,e.y2),h=[];return h[0]=new yo(r,a,n,s),h[1]=new yo(o,s,r,c),h[2]=new yo(n,s,i,c),h[3]=new yo(r,c,n,l),t.x1===o&&t.y1===a||e.x1===o&&e.y1===a?(h[4]=new yo(o,a,r,s),h[5]=new yo(n,c,i,l)):(h[4]=new yo(n,a,i,s),h[5]=new yo(o,c,r,l)),xt(h,(function(t){return t.height()>0&&t.width()>0}))[0]}var Lo=function(t){function e(e){t.call(this,e);var o=this.options;o.width=parseInt(o.width,10),o.height=parseInt(o.height,10),this.gradients={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(){var t=this.options,e=this.children,o=new yo(0,0,t.width,t.height);this.box=o.unpad(t.margin);for(var r=0;r<e.length;r++)e[r].reflow(o),o=Bo(o,e[r].box)||new yo},e.prototype.createVisual=function(){this.visual=new $.drawing.Group,this.createBackground()},e.prototype.createBackground=function(){var t=this.options,e=t.border||{},o=this.box.clone().pad(t.margin).unpad(e.width),r=$.drawing.Path.fromRect(o.toRect(),{stroke:{color:e.width?e.color:"",width:e.width,dashType:e.dashType},fill:{color:t.background,opacity:t.opacity},zIndex:-10});this.visual.append(r)},e.prototype.getRoot=function(){return this},e.prototype.createGradient=function(t){var e,o=this.gradients,r=qt(t),n=Io[t.gradient];if(o[r])e=o[r];else{var i=Object.assign({},n,t);"linear"===n.type?e=new $.drawing.LinearGradient(i):(t.innerRadius&&(i.stops=function(t){for(var e=t.stops,o=t.innerRadius/t.radius*100,r=e.length,n=[],i=0;i<r;i++){var a=Object.assign({},e[i]);a.offset=(a.offset*(100-o)+o)/100,n.push(a)}return n}(i)),(e=new $.drawing.RadialGradient(i)).supportVML=!1!==n.supportVML),o[r]=e}return e},e.prototype.cleanGradients=function(){var t=this.gradients;for(var e in t)t[e]._observers=[]},e.prototype.size=function(){var t=this.options;return new yo(0,0,t.width,t.height)},e}(Mo);Qt(Lo,{width:600,height:400,background:L,border:{color:h,width:0},margin:ut(5),zIndex:-2});const To=Lo;var Eo=function(t){function e(e){t.call(this,e),this._initDirection()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initDirection=function(){var t=this.options;t.vertical?(this.groupAxis=E,this.elementAxis=D,this.groupSizeField=T,this.elementSizeField=w,this.groupSpacing=t.spacing,this.elementSpacing=t.vSpacing):(this.groupAxis=D,this.elementAxis=E,this.groupSizeField=w,this.elementSizeField=T,this.groupSpacing=t.vSpacing,this.elementSpacing=t.spacing)},e.prototype.reflow=function(t){this.box=t.clone(),this.reflowChildren()},e.prototype.reflowChildren=function(){var t=this,e=this,o=e.box,r=e.elementAxis,n=e.groupAxis,i=e.elementSizeField,a=e.groupSizeField,s=this.groupOptions(),c=s.groups,l=s.groupsSize,h=s.maxGroupElementsSize,u=c.length,p=o[n+1]+this.alignStart(l,o[a]());if(u){for(var d=p,v=0;v<u;v++){for(var f=c[v],m=f.groupElements,g=o[r+1],y=m.length,b=0;b<y;b++){var x=m[b],w=t.elementSize(x),_=d+t.alignStart(w[a],f.groupSize),C=new yo;C[n+1]=_,C[n+2]=_+w[a],C[r+1]=g,C[r+2]=g+w[i],x.reflow(C),g+=w[i]+t.elementSpacing}d+=f.groupSize+t.groupSpacing}o[n+1]=p,o[n+2]=p+l,o[r+2]=o[r+1]+h}},e.prototype.alignStart=function(t,e){var o=0,r=this.options.align;return r===A||r===u?o=e-t:r===p&&(o=(e-t)/2),o},e.prototype.groupOptions=function(){for(var t=this,e=t.box,o=t.children,r=t.elementSizeField,n=t.groupSizeField,i=t.elementSpacing,a=t.groupSpacing,s=Xt(e[r]()),c=o.length,l=[],h=0,u=0,p=0,d=0,v=[],f=0;f<c;f++){var m=o[f];m.box||m.reflow(e);var g=this.elementSize(m);this.options.wrap&&Xt(u+i+g[r])>s&&(l.push({groupElements:v,groupSize:h,groupElementsSize:u}),d=Math.max(d,u),p+=a+h,h=0,u=0,v=[]),h=Math.max(h,g[n]),u>0&&(u+=i),u+=g[r],v.push(m)}return l.push({groupElements:v,groupSize:h,groupElementsSize:u}),{groups:l,groupsSize:p+=h,maxGroupElementsSize:d=Math.max(d,u)}},e.prototype.elementSize=function(t){return{width:t.box.width(),height:t.box.height()}},e.prototype.createVisual=function(){},e}(Mo);Qt(Eo,{vertical:!0,wrap:!0,vSpacing:0,spacing:0});const Do=Eo;var No=$.drawing.Text,Ro=function(t){function e(e,o){t.call(this,o),this.content=e,this.reflow(new yo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options,o=e.size=$.drawing.util.measureText(this.content,{font:e.font});this.baseline=o.baseline,this.box=new yo(t.x1,t.y1,t.x1+o.width,t.y1+o.height)},e.prototype.createVisual=function(){var t=this.options,e=t.font,o=t.color,r=t.opacity,n=t.cursor,i=t.stroke,a=t.paintOrder;this.visual=new No(this.content,this.box.toRect().topLeft(),{font:e,fill:{color:o,opacity:r},cursor:n,stroke:i,paintOrder:a})},e}(Mo);Qt(Ro,{font:g,color:h});const Fo=Ro;function Uo(t){var e=t.origin,o=t.bottomRight();return new yo(e.x,e.y,o.x,o.y)}var Ko=/\n/m,qo=function(t){function e(e,o,r){t.call(this,o),this.content=e,this.data=r,this._initContainer(),!1!==this.options._autoReflow&&this.reflow(new yo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initContainer=function(){var t=this.options,e=String(this.content).split(Ko),o=new Do({vertical:!0,align:t.align,wrap:!1}),r=it({},t,{opacity:1,animation:null});this.container=o,this.append(o);for(var n=0;n<e.length;n++){var i=new Fo(e[n].trim(),r);o.append(i)}},e.prototype.reflow=function(e){var o=this.options,r=o.visual;if(this.container.options.align=o.align,r&&!this._boxReflow){var n=e;n.hasSize()||(this._boxReflow=!0,this.reflow(n),this._boxReflow=!1,n=this.box);var i=this.visual=r(this.visualContext(n));i&&(n=Uo(i.clippedBBox()||new $.geometry.Rect),i.options.zIndex=o.zIndex),this.box=this.contentBox=this.paddingBox=n}else if(t.prototype.reflow.call(this,e),o.rotation){var a=ut(o.margin),s=this.box.unpad(a);this.targetBox=e,this.normalBox=s.clone(),(s=this.rotate()).translate(a.left-a.right,a.top-a.bottom),this.rotatedBox=s.clone(),s.pad(a)}},e.prototype.createVisual=function(){var t=this.options;if(this.visual=new $.drawing.Group({transform:this.rotationTransform(),zIndex:t.zIndex,noclip:t.noclip}),this.hasBox()){var e=$.drawing.Path.fromRect(this.paddingBox.toRect(),this.visualStyle());this.visual.append(e)}},e.prototype.renderVisual=function(){if(this.options.visible)if(this.options.visual){var e=this.visual;e&&!Lt(e.options.noclip)&&(e.options.noclip=this.options.noclip),this.addVisual(),this.createAnimation()}else t.prototype.renderVisual.call(this)},e.prototype.visualContext=function(t){var e=this,o={text:this.content,rect:t.toRect(),sender:this.getSender(),options:this.options,createVisual:function(){return e._boxReflow=!0,e.reflow(t),e._boxReflow=!1,e.getDefaultVisual()}};return this.data&&Object.assign(o,this.data),o},e.prototype.getDefaultVisual=function(){this.createVisual(),this.renderChildren();var t=this.visual;return delete this.visual,t},e.prototype.rotate=function(){var t=this.options;return this.box.rotate(t.rotation),this.align(this.targetBox,E,t.align),this.align(this.targetBox,D,t.vAlign),this.box},e.prototype.rotationTransform=function(){var t=this.options.rotation;if(!t)return null;var e=this.normalBox.center(),o=e.x,r=e.y,n=this.rotatedBox.center();return $.geometry.transform().translate(n.x-o,n.y-r).rotate(t,[o,r])},e}(Vo);const $o=qo;var Xo=function(t){function e(e){t.call(this,e),this._textBox=new $o(this.options.text,Object.assign({},this.options,{vAlign:this.options.position})),this.append(this._textBox)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(e){t.prototype.reflow.call(this,e),this.box.snapTo(e,E)},e.buildTitle=function(t,o){var r,n=t;return"string"==typeof t&&(n={text:t}),(n=Object.assign({visible:!0},o,n))&&n.visible&&n.text&&(r=new e(n)),r},e.orderTitles=function(t){var e=[].concat(t),o=e.filter((function(t){return t&&t.options.position!==u})),r=e.filter((function(t){return t&&t.options.position===u}));return Go(o),Go(r),r.reverse(),o.concat(r)},e}(Mo);function Go(t){for(var e=1;e<t.length;e++){var o=t[e]._textBox,r=t[e-1]._textBox;r.options.margin=Object.assign(ut(r.options.margin),{bottom:0}),o.options.margin=Object.assign(ut(o.options.margin),{top:0})}}Qt(Xo,{color:h,position:I,align:p,margin:ut(5),padding:ut(5)});const Yo=Xo;var Wo=function(t){function e(e,o,r,n,i){t.call(this,o,i),this.text=o,this.value=e,this.index=r,this.dataItem=n,this.reflow(new yo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.visualContext=function(e){var o=t.prototype.visualContext.call(this,e);return o.value=this.value,o.dataItem=this.dataItem,o.format=this.options.format,o.culture=this.options.culture,o},e.prototype.click=function(t,e){t.trigger("axisLabelClick",{element:Rt(e),value:this.value,text:this.text,index:this.index,dataItem:this.dataItem,axis:this.parent.options})},e.prototype.rotate=function(){if(this.options.alignRotation!==p){var e=this.normalBox.toRect(),o=this.rotationTransform();this.box=Uo(e.bbox(o.matrix()))}else t.prototype.rotate.call(this);return this.box},e.prototype.rotationTransform=function(){var e=this.options,o=e.rotation;if(!o)return null;if(e.alignRotation===p)return t.prototype.rotationTransform.call(this);var r=$.geometry.transform().rotate(o).matrix(),n=this.normalBox.toRect(),i=this.targetBox.toRect(),a=e.rotationOrigin||I,s=a===I||a===u?E:D,c=a===I||a===u?D:E,l=a===I||a===O?i.origin:i.bottomRight(),h=n.topLeft().transformCopy(r),d=n.topRight().transformCopy(r),v=n.bottomRight().transformCopy(r),f=n.bottomLeft().transformCopy(r),m=$.geometry.Rect.fromPoints(h,d,v,f),g={};g[c]=i.origin[c]-m.origin[c];var b,x,w=Math.abs(h[c]+g[c]-l[c]),_=Math.abs(d[c]+g[c]-l[c]);Xt(w,y)===Xt(_,y)?(b=h,x=d):_<w?(b=d,x=v):(b=h,x=f);var C=b[s]+(x[s]-b[s])/2;return g[s]=i.center()[s]-C,$.geometry.transform().translate(g.x,g.y).rotate(o)},e}($o);Qt(Wo,{_autoReflow:!1});const Zo=Wo;var Qo=function(t){function e(e,o,r){t.call(this,o),this.fields=e,this.chartService=r,this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hide=function(){this.options.visible=!1},e.prototype.show=function(){this.options.visible=!0},e.prototype.render=function(){var t=this,e=this.options;if(e.visible){var o,r,n=e.label,i=e.icon,a=new yo,s=function(){return t},c=i.size,l=this.fields.text;if(Lt(n)&&n.visible){var h=ft(n);h?l=h(this.fields):n.format&&(l=this.chartService.format.auto(n.format,l)),n.color||(n.color=n.position===_?"#fff":i.background),this.label=new $o(l,it({},n)),this.label.aliasFor=s,n.position!==_||Lt(c)||(i.type===d?c=Math.max(this.label.box.width(),this.label.box.height()):(o=this.label.box.width(),r=this.label.box.height()),a.wrap(this.label.box))}i.width=o||c||7,i.height=r||c||7;var u=new ko(it({},i));u.aliasFor=s,this.marker=u,this.append(u),this.label&&this.append(this.label),u.reflow(new yo),this.wrapperBox=a.wrap(u.box)}},e.prototype.reflow=function(t){var e,o,r,n=this,i=n.options,a=n.label,s=n.marker,c=n.wrapperBox,l=t.center(),h=i.line.length,p=i.position;i.visible&&(Ot(p,[O,A])?p===O?(r=c.alignTo(t,p).translate(-h,t.center().y-c.center().y),i.line.visible&&(e=[t.x1,l.y],this.linePoints=[e,[r.x2,l.y]],o=r.clone().wrapPoint(e))):(r=c.alignTo(t,p).translate(h,t.center().y-c.center().y),i.line.visible&&(e=[t.x2,l.y],this.linePoints=[e,[r.x1,l.y]],o=r.clone().wrapPoint(e))):p===u?(r=c.alignTo(t,p).translate(t.center().x-c.center().x,h),i.line.visible&&(e=[l.x,t.y2],this.linePoints=[e,[l.x,r.y1]],o=r.clone().wrapPoint(e))):(r=c.alignTo(t,p).translate(t.center().x-c.center().x,-h),i.line.visible&&(e=[l.x,t.y1],this.linePoints=[e,[l.x,r.y2]],o=r.clone().wrapPoint(e))),s&&s.reflow(r),a&&(a.reflow(r),s&&(i.label.position===V&&a.box.alignTo(s.box,p),a.reflow(a.box))),this.contentBox=r,this.targetBox=t,this.box=o||r)},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.visual.options.noclip=this.options.noclip,this.options.visible&&this.createLine()},e.prototype.renderVisual=function(){var e=this,o=this.options,r=o.visual;o.visible&&r?(this.visual=r(Object.assign(this.fields,{sender:this.getSender(),rect:this.targetBox.toRect(),options:{background:o.background,border:o.background,icon:o.icon,label:o.label,line:o.line,position:o.position,visible:o.visible},createVisual:function(){e.createVisual(),e.renderChildren();var t=e.visual;return delete e.visual,t}})),this.addVisual()):t.prototype.renderVisual.call(this)},e.prototype.createLine=function(){var t=this.options.line;if(this.linePoints){var e=$.drawing.Path.fromPoints(this.linePoints,{stroke:{color:t.color,width:t.width,dashType:t.dashType}});X(e),this.visual.append(e)}},e.prototype.click=function(t,e){var o=this.eventArgs(e);t.trigger("noteClick",o)||e.preventDefault()},e.prototype.over=function(t,e){var o=this.eventArgs(e);t.trigger("noteHover",o)||e.preventDefault()},e.prototype.out=function(t,e){var o=this.eventArgs(e);t.trigger("noteLeave",o)},e.prototype.eventArgs=function(t){var e=this.options;return Object.assign(this.fields,{element:Rt(t),text:Lt(e.label)?e.label.text:"",visual:this.visual})},e}(Vo);Qt(Qo,{icon:{visible:!0,type:d},label:{position:_,visible:!0,align:p,vAlign:p},line:{visible:!0},visible:!0,position:I,zIndex:2});const Jo=Qo;var tr={format:function(t,e){return e},toString:function(t){return t},parseDate:function(t){return new Date(t)},firstDay:function(){return 0}},er=tr,or=function(){},rr={implementation:{configurable:!0}};or.register=function(t){er=t},rr.implementation.get=function(){return er},Object.defineProperties(or,rr);const nr=or;var ir=/\{(\d+)(:[^\}]+)?\}/g,ar=function(t){this._intlService=t},sr={intl:{configurable:!0}};sr.intl.get=function(){return this._intlService||nr.implementation},sr.intl.set=function(t){this._intlService=t},ar.prototype.auto=function(t){for(var e=[],o=arguments.length-1;o-- >0;)e[o]=arguments[o+1];var r=this.intl;return W(t)&&t.match(x)?r.format.apply(r,[t].concat(e)):r.toString(e[0],t)},ar.prototype.localeAuto=function(t,e,o){var r,n=this.intl;return r=W(t)&&t.match(x)?t.replace(ir,(function(t,r,i){var a=e[parseInt(r,10)];return n.toString(a,i?i.substring(1):"",o)})):n.toString(e[0],t,o),r},Object.defineProperties(ar.prototype,sr);const cr=ar;var lr=function(t,e){void 0===e&&(e={}),this._intlService=e.intlService,this.sender=e.sender||t,this.format=new cr(e.intlService),this.chart=t,this.rtl=Boolean(e.rtl)},hr={intl:{configurable:!0}};hr.intl.get=function(){return this._intlService||nr.implementation},hr.intl.set=function(t){this._intlService=t,this.format.intl=t},lr.prototype.notify=function(t,e){this.chart&&this.chart.trigger(t,e)},lr.prototype.isPannable=function(t){var e=((this.chart||{}).options||{}).pannable;return e&&e.lock!==t},Object.defineProperties(lr.prototype,hr);const ur=lr;var pr,dr=function(){};dr.register=function(t){pr=t},dr.create=function(t,e){return pr?pr.create(t,e):new po(t,Object.assign({},{multiTouch:!0},e))};const vr=dr;function fr(t,e){var o=t.tickX,r=t.tickY,n=t.position,i=new $.drawing.Path({stroke:{width:e.width,color:e.color}});return t.vertical?i.moveTo(o,n).lineTo(o+e.size,n):i.moveTo(n,r).lineTo(n,r+e.size),X(i),i}function mr(t,e){var o=t.lineStart,r=t.lineEnd,n=t.position,i=new $.drawing.Path({stroke:{width:e.width,color:e.color,dashType:e.dashType}});return t.vertical?i.moveTo(o,n).lineTo(r,n):i.moveTo(n,o).lineTo(n,r),X(i),i}var gr=function(t){function e(e,o){void 0===o&&(o=new ur),t.call(this,e),this.chartService=o,this.options.visible||(this.options=it({},this.options,{labels:{visible:!1},line:{visible:!1},margin:0,majorTickSize:0,minorTickSize:0})),this.options.minorTicks=it({},{color:this.options.line.color,width:this.options.line.width,visible:this.options.minorTickType!==M},this.options.minorTicks,{size:this.options.minorTickSize,align:this.options.minorTickType}),this.options.majorTicks=it({},{color:this.options.line.color,width:this.options.line.width,visible:this.options.majorTickType!==M},this.options.majorTicks,{size:this.options.majorTickSize,align:this.options.majorTickType}),this.initFields(),this.options._deferLabels||this.createLabels(),this.createTitle(),this.createNotes()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){},e.prototype.labelsRange=function(){return{min:this.options.labels.skip,max:this.labelsCount()}},e.prototype.normalizeLabelRotation=function(t){var e=t.rotation;at(e)&&(t.alignRotation=e.align,t.rotation=e.angle)},e.prototype.createLabels=function(){var t=this,e=this.options,o=e.vertical?A:p,r=it({},e.labels,{align:o,zIndex:e.zIndex}),n=Math.max(1,r.step);if(this.clearLabels(),r.visible){this.normalizeLabelRotation(r),"auto"===r.rotation&&(r.rotation=0,e.autoRotateLabels=!0);for(var i=this.labelsRange(),a=i.min;a<i.max;a+=n){var s={index:a,count:i.max},c=t.createAxisLabel(a,r,s);c&&(t.append(c),t.labels.push(c))}}},e.prototype.clearLabels=function(){this.children=xt(this.children,(function(t){return!(t instanceof Zo)})),this.labels=[]},e.prototype.clearTitle=function(){var t=this;this.title&&(this.children=xt(this.children,(function(e){return e!==t.title})),this.title=void 0)},e.prototype.clear=function(){this.clearLabels(),this.clearTitle()},e.prototype.lineBox=function(){var t=this.options,e=this.box,o=t.vertical,r=t.labels.mirror,n=r?e.x1:e.x2,i=r?e.y2:e.y1,a=t.line.width||0;return o?new yo(n,e.y1,n,e.y2-a):new yo(e.x1,i,e.x2-a,i)},e.prototype.createTitle=function(){var t=this.options,e=it({rotation:t.vertical?-90:0,text:"",zIndex:1,visualSize:!0},t.title);if(e.visible&&e.text){var o=new $o(e.text,e);this.append(o),this.title=o}},e.prototype.createNotes=function(){var t=this,e=this.options,o=e.notes,r=o.data||[];this.notes=[];for(var n=0;n<r.length;n++){var i=it({},o,r[n]);i.value=t.parseNoteValue(i.value);var a=new Jo({value:i.value,text:i.label.text,dataItem:i},i,t.chartService);a.options.visible&&(Lt(a.options.position)?e.vertical&&!Ot(a.options.position,[O,A])?a.options.position=e.reverse?O:A:e.vertical||Ot(a.options.position,[I,u])||(a.options.position=e.reverse?u:I):e.vertical?a.options.position=e.reverse?O:A:a.options.position=e.reverse?u:I,t.append(a),t.notes.push(a))}},e.prototype.parseNoteValue=function(t){return t},e.prototype.renderVisual=function(){t.prototype.renderVisual.call(this),this.createPlotBands()},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.createBackground(),this.createLine()},e.prototype.gridLinesVisual=function(){var t=this._gridLines;return t||(t=this._gridLines=new $.drawing.Group({zIndex:-2}),this.appendVisual(this._gridLines)),t},e.prototype.createTicks=function(t){var e=this.options,o=this.lineBox(),r=e.labels.mirror,n=e.majorTicks.visible?e.majorUnit:0,i={vertical:e.vertical};function a(e,n,a){var s=e.length,c=Math.max(1,n.step);if(n.visible)for(var l=n.skip;l<s;l+=c)Lt(a)&&l%a==0||(i.tickX=r?o.x2:o.x2-n.size,i.tickY=r?o.y1-n.size:o.y1,i.position=e[l],t.append(fr(i,n)))}a(this.getMajorTickPositions(),e.majorTicks),a(this.getMinorTickPositions(),e.minorTicks,n/e.minorUnit)},e.prototype.createLine=function(){var t=this.options,e=t.line,o=this.lineBox();if(e.width>0&&e.visible){var r=new $.drawing.Path({stroke:{width:e.width,color:e.color,dashType:e.dashType}});r.moveTo(o.x1,o.y1).lineTo(o.x2,o.y2),t._alignLines&&X(r);var n=this._lineGroup=new $.drawing.Group;n.append(r),this.visual.append(n),this.createTicks(n)}},e.prototype.getActualTickSize=function(){var t=this.options,e=0;return t.majorTicks.visible&&t.minorTicks.visible?e=Math.max(t.majorTicks.size,t.minorTicks.size):t.majorTicks.visible?e=t.majorTicks.size:t.minorTicks.visible&&(e=t.minorTicks.size),e},e.prototype.createBackground=function(){var t=this.options,e=this.box,o=t.background;o&&(this._backgroundPath=$.drawing.Path.fromRect(e.toRect(),{fill:{color:o},stroke:null}),this.visual.append(this._backgroundPath))},e.prototype.createPlotBands=function(){var t=this,e=this.options,o=e.plotBands||[],r=e.vertical,n=this.plotArea;if(0!==o.length){for(var i=this._plotbandGroup=new $.drawing.Group({zIndex:-1}),a=xt(this.pane.axes,(function(e){return e.options.vertical!==t.options.vertical}))[0],s=0;s<o.length;s++){var c=o[s],l=void 0,h=void 0,u=c.label,p=void 0;if(r?(l=(a||n.axisX).lineBox(),h=t.getSlot(c.from,c.to,!0)):(l=t.getSlot(c.from,c.to,!0),h=(a||n.axisY).lineBox()),u&&(u.vAlign=u.position||O,p=t.createPlotBandLabel(u,c,new yo(l.x1,h.y1,l.x2,h.y2))),0!==l.width()&&0!==h.height()){var d=new $.geometry.Rect([l.x1,h.y1],[l.width(),h.height()]),v=$.drawing.Path.fromRect(d,{fill:{color:c.color,opacity:c.opacity},stroke:null});i.append(v),p&&i.append(p)}}this.appendVisual(i)}},e.prototype.createPlotBandLabel=function(t,e,o){if(!1===t.visible)return null;var r,n=t.text;if(Lt(t)&&t.visible){var i=ft(t);i?n=i({text:n,item:e}):t.format&&(n=this.chartService.format.auto(t.format,n)),t.color||(t.color=this.options.labels.color)}return(r=new $o(n,t)).reflow(o),r.renderVisual(),r.visual},e.prototype.createGridLines=function(t){var e=this.options,o=e.minorGridLines,r=e.majorGridLines,n=e.minorUnit,i=e.vertical,a=t.options.line.visible,s=r.visible?e.majorUnit:0,c=t.lineBox(),l=c[i?"y1":"x1"],h={lineStart:c[i?"x1":"y1"],lineEnd:c[i?"x2":"y2"],vertical:i},u=[],p=this.gridLinesVisual();function d(t,e,o){var r=t.length,n=Math.max(1,e.step);if(e.visible)for(var i=e.skip;i<r;i+=n){var s=Xt(t[i]);Ot(s,u)||i%o==0||a&&l===s||(h.position=s,p.append(mr(h,e)),u.push(s))}}return d(this.getMajorTickPositions(),r),d(this.getMinorTickPositions(),o,s/n),p.children},e.prototype.reflow=function(t){for(var e=this,o=e.options,r=e.labels,n=e.title,i=o.vertical,a=r.length,s=i?T:w,c=n?n.box[s]():0,l=this.getActualTickSize()+o.margin+c,h=((this.getRoot()||{}).box||t)[s](),u=0,p=0;p<a;p++){var d=r[p].box[s]();d+l<=h&&(u=Math.max(u,d))}this.box=i?new yo(t.x1,t.y1,t.x1+u+l,t.y2):new yo(t.x1,t.y1,t.x2,t.y1+u+l),this.arrangeTitle(),this.arrangeLabels(),this.arrangeNotes()},e.prototype.getLabelsTickPositions=function(){return this.getMajorTickPositions()},e.prototype.labelTickIndex=function(t){return t.index},e.prototype.arrangeLabels=function(){for(var t=this.options,e=this.labels,o=this.labelsBetweenTicks(),r=t.vertical,n=t.labels.mirror,i=this.getLabelsTickPositions(),a=0;a<e.length;a++){var s=e[a],c=this.labelTickIndex(s),l=r?s.box.height():s.box.width(),h=i[c],u=i[c+1],p=void 0,d=void 0;r?d=p=o?h+(u-h)/2-l/2:h-l/2:o?(p=h,d=u):d=(p=h-l/2)+l,this.positionLabel(s,n,p,d)}},e.prototype.positionLabel=function(t,e,o,r){void 0===r&&(r=o);var n,i=this.options,a=i.vertical,s=this.lineBox(),c=this.getActualTickSize()+i.margin;if(a){var l=s.x2;e?(l+=c,t.options.rotationOrigin=O):(l-=c+t.box.width(),t.options.rotationOrigin=A),n=t.box.move(l,o)}else{var h=s.y1;e?(h-=c+t.box.height(),t.options.rotationOrigin=u):(h+=c,t.options.rotationOrigin=I),n=new yo(o,h,r,h+t.box.height())}t.reflow(n)},e.prototype.autoRotateLabelAngle=function(t,e){return t.width()<e?0:t.height()>e?-90:-45},e.prototype.autoRotateLabels=function(){if(!this.options.autoRotateLabels||this.options.vertical)return!1;for(var t=this.getMajorTickPositions(),e=this.labels,o=Math.min(e.length,t.length-1),r=0,n=0;n<o;n++){var i=Math.abs(t[n+1]-t[n]),a=e[n].box,s=this.autoRotateLabelAngle(a,i);if(0!==s&&(r=s),-90===r)break}if(0!==r){for(var c=0;c<e.length;c++)e[c].options.rotation=r,e[c].reflow(new yo);return!0}},e.prototype.arrangeTitle=function(){var t=this.options,e=this.title,o=t.labels.mirror,r=t.vertical;e&&(r?(e.options.align=o?A:O,e.options.vAlign=e.options.position):(e.options.align=e.options.position,e.options.vAlign=o?I:u),e.reflow(this.box))},e.prototype.arrangeNotes=function(){for(var t=this,e=0;e<this.notes.length;e++){var o=t.notes[e],r=o.options.value,n=void 0;Lt(r)?(t.shouldRenderNote(r)?o.show():o.hide(),n=t.noteSlot(r)):o.hide(),o.reflow(n||t.lineBox())}},e.prototype.noteSlot=function(t){return this.getSlot(t)},e.prototype.alignTo=function(t){var e=t.lineBox(),o=this.options.vertical,r=o?D:E;this.box.snapTo(e,r),o?this.box.shrink(0,this.lineBox().height()-e.height()):this.box.shrink(this.lineBox().width()-e.width(),0),this.box[r+1]-=this.lineBox()[r+1]-e[r+1],this.box[r+2]-=this.lineBox()[r+2]-e[r+2]},e.prototype.axisLabelText=function(t,e,o){var r=this,n=ft(e),i=function(){return e.format?r.chartService.format.localeAuto(e.format,[t],e.culture):t};return n?n(Object.assign({},o,{get text(){return i()},value:t,format:e.format,culture:e.culture})):i()},e.prototype.slot=function(t,e,o){var r=this.getSlot(t,e,o);if(r)return r.toRect()},e.prototype.contentBox=function(){var t=this.box.clone(),e=this.labels;if(e.length){var o=this.options.vertical?D:E;if(this.chartService.isPannable(o)){var r=this.maxLabelOffset();t[o+1]-=r.start,t[o+2]+=r.end}else{e[0].options.visible&&t.wrap(e[0].box);var n=e[e.length-1];n.options.visible&&t.wrap(n.box)}}return t},e.prototype.maxLabelOffset=function(){for(var t=this.options,e=t.vertical,o=t.reverse,r=this.labelsBetweenTicks(),n=this.getLabelsTickPositions(),i=e?D:E,a=this.labels,s=o?1:0,c=o?0:1,l=0,h=0,u=0;u<a.length;u++){var p=a[u],d=this.labelTickIndex(p),v=void 0,f=void 0;r?(v=n[d+s],f=n[d+c]):v=f=n[d],l=Math.max(l,v-p.box[i+1]),h=Math.max(h,p.box[i+2]-f)}return{start:l,end:h}},e.prototype.limitRange=function(t,e,o,r,n){var i=this.options;if(t<o&&n<0&&(!Lt(i.min)||i.min<=o)||r<e&&n>0&&(!Lt(i.max)||r<=i.max))return null;if(e<o&&n>0||r<t&&n<0)return{min:t,max:e};var a=e-t,s=t,c=e;return t<o&&n<0?(s=Kt(t,o,r),c=Kt(t+a,o+a,r)):e>r&&n>0&&(c=Kt(e,o,r),s=Kt(e-a,o,r-a)),{min:s,max:c}},e.prototype.valueRange=function(){return{min:this.seriesMin,max:this.seriesMax}},e.prototype.lineDir=function(){var t=this.options;return(t.vertical?-1:1)*(t.reverse?-1:1)},e.prototype.lineInfo=function(){var t=this.options.vertical,e=this.lineBox(),o=t?e.height():e.width(),r=t?D:E,n=this.lineDir(),i=r+(1===n?1:2).toString();return{axis:r,axisOrigin:i,axisDir:n,lineBox:e,lineSize:o,lineStart:e[i]}},e.prototype.pointOffset=function(t){var e=this.lineInfo(),o=e.axis,r=e.axisDir,n=e.axisOrigin,i=e.lineBox,a=e.lineSize;return(r>0?t[o]-i[n]:i[n]-t[o])/a},e.prototype.scaleToDelta=function(t,e){var o=Kt(t,-.999,.999);return o>0?e*Math.min(1,o):e-e/(1+o)},e.prototype.labelsBetweenTicks=function(){return!this.options.justified},e.prototype.prepareUserOptions=function(){},e}(Mo);Qt(gr,{labels:{visible:!0,rotation:0,mirror:!1,step:1,skip:0},line:{width:1,color:h,visible:!0},title:{visible:!0,position:p},majorTicks:{align:V,size:4,skip:0,step:1},minorTicks:{align:V,size:3,skip:0,step:1},axisCrossingValue:0,majorTickType:V,minorTickType:M,majorGridLines:{skip:0,step:1},minorGridLines:{visible:!1,width:1,color:h,skip:0,step:1},margin:5,visible:!0,reverse:!1,justified:!0,notes:{label:{text:""}},_alignLines:!0,_deferLabels:!1});const yr=gr;var br="milliseconds",xr="seconds",wr="minutes",_r="hours",Cr="days",Or="weeks",Sr="months",zr="years",Mr=1e3,Pr=60*Mr,Vr=60*Pr,Ar=24*Vr,jr=7*Ar,kr=31*Ar,Hr=365*Ar,Ir={years:Hr,months:kr,weeks:jr,days:Ar,hours:Vr,minutes:Pr,seconds:Mr,milliseconds:1};function Br(t,e){return t.getTime()-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*Pr}function Lr(t,e){return new Date(t.getTime()+e)}function Tr(t){var e;return t instanceof Date?e=t:t&&(e=new Date(t)),e}function Er(t,e){return 0===e&&23===t.getHours()&&(t.setHours(t.getHours()+2),!0)}function Dr(t,e,o,r){var n=t;if(t){var i=Tr(t),a=i.getHours();o===zr?Er(n=new Date(i.getFullYear()+e,0,1),0):o===Sr?Er(n=new Date(i.getFullYear(),i.getMonth()+e,1),a):o===Or?(n=Dr(function(t,e){void 0===e&&(e=0);var o=0,r=t.getDay();if(!isNaN(r))for(;r!==e;)0===r?r=6:r--,o++;return Lr(t,-o*Ar)}(i,r),7*e,Cr),Er(n,a)):o===Cr?Er(n=new Date(i.getFullYear(),i.getMonth(),i.getDate()+e),a):o===_r?n=function(t,e){var o=new Date(t);o.setMinutes(0,0,0);var r=(t.getTimezoneOffset()-o.getTimezoneOffset())*Pr;return Lr(o,r+e*Vr)}(i,e):o===wr?(n=Lr(i,e*Pr)).getSeconds()>0&&n.setSeconds(0):o===xr?n=Lr(i,e*Mr):o===br&&(n=Lr(i,e)),o!==br&&n.getMilliseconds()>0&&n.setMilliseconds(0)}return n}function Nr(t,e,o){return Dr(Tr(t),0,e,o)}function Rr(t,e,o){var r=Tr(t);return r&&Nr(r,e,o).getTime()===r.getTime()?r:Dr(r,1,e,o)}function Fr(t,e){return t&&e?t.getTime()-e.getTime():-1}function Ur(t,e){return t.getTime()-e}function Kr(t){if(F(t)){for(var e=[],o=0;o<t.length;o++)e.push(Kr(t[o]));return e}if(t)return Tr(t).getTime()}function qr(t,e){return t&&e?Kr(t)===Kr(e):t===e}function $r(t,e,o){return Br(t,e)/Ir[o]}function Xr(t,e,o,r){var n=Tr(t),i=Tr(e);return(o===Sr?n.getMonth()-i.getMonth()+12*(n.getFullYear()-i.getFullYear())+$r(n,new Date(n.getFullYear(),n.getMonth()),Cr)/new Date(n.getFullYear(),n.getMonth()+1,0).getDate():o===zr?n.getFullYear()-i.getFullYear()+Xr(n,new Date(n.getFullYear(),0),Sr,1)/12:o===Cr||o===Or?$r(n,i,o):Ur(n,e)/Ir[o])/r}function Gr(t,e,o){return o===zr?e.getFullYear()-t.getFullYear():o===Sr?12*Gr(t,e,zr)+e.getMonth()-t.getMonth():o===Cr?Math.floor(Ur(e,t)/Ar):Math.floor(Ur(e,t)/Ir[o])}function Yr(t,e){return W(e)&&t.parseDate(e)||Tr(e)}function Wr(t,e){if(F(e)){for(var o=[],r=0;r<e.length;r++)o.push(Yr(t,e[r]));return o}return Yr(t,e)}function Zr(t,e){return Y(t.weekStartDay)?t.weekStartDay:e&&e.firstDay?e.firstDay():0}var Qr=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this._ticks={}},e.prototype.categoriesHash=function(){return""},e.prototype.clone=function(){var t=new e(Object.assign({},this.options,{categories:this.options.srcCategories}),this.chartService);return t.createLabels(),t},e.prototype.initUserOptions=function(t){var e=t.categories||[],o=Lt(t.min),r=Lt(t.max);if(t.srcCategories=t.categories=e,(o||r)&&e.length){var n,i=o?Math.floor(t.min):0;n=r?t.justified?Math.floor(t.max)+1:Math.ceil(t.max):e.length,t.categories=t.categories.slice(i,n)}return t},e.prototype.rangeIndices=function(){var t=this.options,e=t.categories.length||1;return{min:Y(t.min)?t.min%1:0,max:Y(t.max)&&t.max%1!=0&&t.max<this.totalRange().max?e-(1-t.max%1):e-(t.justified?1:0)}},e.prototype.range=function(){var t=this.options;return{min:Y(t.min)?t.min:0,max:Y(t.max)?t.max:this.totalRange().max}},e.prototype.roundedRange=function(){return this.range()},e.prototype.totalRange=function(){var t=this.options;return{min:0,max:Math.max(this._seriesMax||0,t.srcCategories.length)-(t.justified?1:0)}},e.prototype.scaleOptions=function(){var t=this.rangeIndices(),e=t.min,o=t.max,r=this.lineBox();return{scale:(this.options.vertical?r.height():r.width())/(o-e||1)*(this.options.reverse?-1:1),box:r,min:e,max:o}},e.prototype.arrangeLabels=function(){t.prototype.arrangeLabels.call(this),this.hideOutOfRangeLabels()},e.prototype.hideOutOfRangeLabels=function(){var t=this.box,e=this.labels;if(e.length>0){var o=this.options.vertical?D:E,r=t[o+1],n=t[o+2],i=e[0],a=Ut(e);(i.box[o+1]>n||i.box[o+2]<r)&&(i.options.visible=!1),(a.box[o+1]>n||a.box[o+2]<r)&&(a.options.visible=!1)}},e.prototype.getMajorTickPositions=function(){return this.getTicks().majorTicks},e.prototype.getMinorTickPositions=function(){return this.getTicks().minorTicks},e.prototype.getLabelsTickPositions=function(){return this.getTicks().labelTicks},e.prototype.tickIndices=function(t){for(var e=this.rangeIndices(),o=e.min,r=e.max,n=Math.ceil(r),i=Math.floor(o),a=[];i<=n;)a.push(i),i+=t;return a},e.prototype.getTickPositions=function(t){for(var e=this.options,o=e.vertical,r=e.reverse,n=this.scaleOptions(),i=n.scale,a=n.box,s=n.min,c=a[(o?D:E)+(r?2:1)],l=this.tickIndices(t),h=[],u=0;u<l.length;u++)h.push(c+Xt(i*(l[u]-s),v));return h},e.prototype.getTicks=function(){var t=this.options,e=this._ticks,o=this.rangeIndices(),r=this.lineBox(),n=r.getHash()+o.min+","+o.max+t.reverse+t.justified;if(e._hash!==n){var i=t.minorTicks.visible||t.minorGridLines.visible;e._hash=n,e.labelTicks=this.getTickPositions(1),e.majorTicks=this.filterOutOfRangePositions(e.labelTicks,r),e.minorTicks=i?this.filterOutOfRangePositions(this.getTickPositions(.5),r):[]}return e},e.prototype.filterOutOfRangePositions=function(t,e){if(!t.length)return t;for(var o=this.options.vertical?D:E,r=function(t){return e[o+1]<=t&&t<=e[o+2]},n=t.length-1,i=0;!r(t[i])&&i<=n;)i++;for(var a=n;!r(t[a])&&a>=0;)a--;return t.slice(i,a+1)},e.prototype.lineInfo=function(){var t=this.options,e=t.vertical,o=t.reverse,r=this.lineBox(),n=e?r.height():r.width(),i=e?D:E,a=o?-1:1,s=i+(1===a?1:2).toString();return{axis:i,axisOrigin:s,axisDir:a,lineBox:r,lineSize:n,lineStart:r[s]}},e.prototype.lineDir=function(){return this.options.reverse?-1:1},e.prototype.getSlot=function(t,e,o){var r=this.options,n=r.reverse,i=r.justified,a=this.scaleOptions(),s=a.scale,c=a.box,l=a.min,h=this.lineInfo(),u=h.axis,p=h.lineStart,d=c.clone(),v=!Lt(e),f=Yt(t,0),m=Yt(e,f);m=Math.max(m-1,f);var g=p+(f-l)*s,y=p+((m=Math.max(f,m))+1-l)*s;return v&&i&&(y=g),o&&(g=Kt(g,c[u+1],c[u+2]),y=Kt(y,c[u+1],c[u+2])),d[u+1]=n?y:g,d[u+2]=n?g:y,d},e.prototype.limitSlot=function(t){var e=this.options.vertical?D:E,o=this.lineBox(),r=t.clone();return r[e+1]=Kt(t[e+1],o[e+1],o[e+2]),r[e+2]=Kt(t[e+2],o[e+1],o[e+2]),r},e.prototype.slot=function(e,o,r){var n=Math.floor(this.options.min||0),i=e,a=o;return"string"==typeof i?i=this.categoryIndex(i):Y(i)&&(i-=n),"string"==typeof a?a=this.categoryIndex(a):Y(a)&&(a-=n),t.prototype.slot.call(this,i,a,r)},e.prototype.pointCategoryIndex=function(t){var e=this.options,o=e.reverse,r=e.justified,n=e.vertical?D:E,i=this.scaleOptions(),a=i.scale,s=i.box,c=i.min,l=i.max,h=o?l:c,u=s[n+1],p=s[n+2],d=t[n];if(d<u||d>p)return null;var v=h+(d-u)/a,f=v%1;return r?v=Math.round(v):0===f&&v>0&&v--,Math.floor(v)},e.prototype.getCategory=function(t){var e=this.pointCategoryIndex(t);return null===e?null:this.options.categories[e]},e.prototype.categoryIndex=function(t){return this.totalIndex(t)-Math.floor(this.options.min||0)},e.prototype.categoryAt=function(t,e){var o=this.options;return(e?o.srcCategories:o.categories)[t]},e.prototype.categoriesCount=function(){return(this.options.categories||[]).length},e.prototype.translateRange=function(t){var e=this.options,o=this.lineBox(),r=e.vertical?o.height():o.width(),n=e.categories.length,i=Xt(t/(r/n),y);return{min:i,max:n+i}},e.prototype.scaleRange=function(t,e){var o=Math.abs(this.pointOffset(e)),r=this.limitedRangeIndices(),n=r.max-r.min,i=this.scaleToDelta(t,n),a=o*i,s=(1-o)*i,c=r.min+a,l=r.max-s;return l-c<.1&&(l=c+.1),{min:c,max:l}},e.prototype.zoomRange=function(t,e){var o=this.totalRange(),r=o.min,n=o.max,i=this.scaleRange(t,e);return{min:Kt(i.min,r,n),max:Kt(i.max,r,n)}},e.prototype.labelsCount=function(){var t=this.labelsRange();return t.max-t.min},e.prototype.labelsRange=function(){var t=this.options,e=t.justified,o=t.labels,r=this.limitedRangeIndices(!0),n=r.min,i=r.max,a=Math.floor(n);return e?(n=Math.ceil(n),i=Math.floor(i)):(n=Math.floor(n),i=Math.ceil(i)),{min:(n>o.skip?o.skip+o.step*Math.ceil((n-o.skip)/o.step):o.skip)-a,max:(t.categories.length?i+(e?1:0):0)-a}},e.prototype.createAxisLabel=function(t,e,o){var r=this.options,n=r.dataItems?r.dataItems[t]:null,i=Yt(r.categories[t],"");o.dataItem=n;var a=this.axisLabelText(i,e,o);return new Zo(i,a,t,n,e)},e.prototype.shouldRenderNote=function(t){var e=this.limitedRangeIndices();return Math.floor(e.min)<=t&&t<=Math.ceil(e.max)},e.prototype.noteSlot=function(t){var e=this.options,o=t-Math.floor(e.min||0);return this.getSlot(o)},e.prototype.arrangeNotes=function(){t.prototype.arrangeNotes.call(this),this.hideOutOfRangeNotes()},e.prototype.hideOutOfRangeNotes=function(){var t=this.notes,e=this.box;if(t&&t.length)for(var o=this.options.vertical?D:E,r=e[o+1],n=e[o+2],i=0;i<t.length;i++){var a=t[i];a.box&&(n<a.box[o+1]||a.box[o+2]<r)&&a.hide()}},e.prototype.pan=function(t){var e=this.limitedRangeIndices(!0),o=this.scaleOptions().scale,r=Xt(t/o,y),n=this.totalRange(),i=e.min+r,a=e.max+r;return this.limitRange(i,a,0,n.max,r)},e.prototype.pointsRange=function(t,e){var o=this.options,r=o.reverse,n=o.vertical?D:E,i=this.limitedRangeIndices(!0),a=this.scaleOptions(),s=a.scale,c=a.box[n+(r?2:1)],l=t[n]-c,h=e[n]-c,u=i.min+l/s,p=i.min+h/s,d=Math.min(u,p),v=Math.max(u,p);if(v-d>=.01)return{min:d,max:v}},e.prototype.valueRange=function(){return this.range()},e.prototype.totalIndex=function(t){var e=this.options,o=this._categoriesMap?this._categoriesMap.get(t):function(t,e){if(t instanceof Date){for(var o=e.length,r=0;r<o;r++)if(qr(e[r],t))return r;return-1}return e.indexOf(t)}(t,e.srcCategories);return o},e.prototype.currentRangeIndices=function(){var t=this.options,e=0;return Y(t.min)&&(e=Math.floor(t.min)),{min:e,max:Y(t.max)?t.justified?Math.floor(t.max):Math.ceil(t.max)-1:this.totalCount()-1}},e.prototype.limitedRangeIndices=function(t){var e,o=this.options,r=Y(o.min)?o.min:0;if(e=Y(o.max)?o.max:Y(o.min)?r+o.categories.length:this.totalRange().max||1,t){var n=this.totalRange();r=Kt(r,0,n.max),e=Kt(e,0,n.max)}return{min:r,max:e}},e.prototype.totalRangeIndices=function(){return{min:0,max:this.totalRange().max||1}},e.prototype.indexCategories=function(){if(!this._categoriesMap)for(var t=this._categoriesMap=new Ct,e=this.options.srcCategories,o=0;o<e.length;o++)t.set(e[o],o)},e.prototype.totalCount=function(){return Math.max(this.options.srcCategories.length,this._seriesMax||0)},e}(yr);Qt(Qr,{type:"category",vertical:!1,majorGridLines:{visible:!1,width:1,color:h},labels:{zIndex:1},justified:!1,_deferLabels:!0});const Jr=Qr;var tn={milliseconds:"HH:mm:ss.fff",seconds:"HH:mm:ss",minutes:"HH:mm",hours:"HH:mm",days:"M/d",weeks:"M/d",months:"MMM 'yy",years:"yyyy"},en=[br,xr,wr,_r,Cr,Or,Sr,zr],on="fit";function rn(t,e){e&&(t._range=void 0);var o=t._range;return o||((o=t._range=ae(t)).min=Tr(o.min),o.max=Tr(o.max)),o}var nn=function(t){this.options=t};nn.prototype.displayIndices=function(){return{min:0,max:1}},nn.prototype.displayRange=function(){return{}},nn.prototype.total=function(){return{}},nn.prototype.valueRange=function(){return{}},nn.prototype.valueIndex=function(){return-1},nn.prototype.values=function(){return[]},nn.prototype.totalIndex=function(){return-1},nn.prototype.valuesCount=function(){return 0},nn.prototype.totalCount=function(){return 0},nn.prototype.dateAt=function(){return null};var an=function(t,e,o){this.options=o,o.baseUnitStep=o.baseUnitStep||1;var r=o.roundToBaseUnit,n=o.justified;this.start=Dr(t,0,o.baseUnit,o.weekStartDay);var i=this.roundToTotalStep(e),a=!n&&qr(e,i)&&!o.justifyEnd;this.end=this.roundToTotalStep(e,!n,a?1:0);var s=o.min||t;this.valueStart=this.roundToTotalStep(s),this.displayStart=r?this.valueStart:s;var c=o.max;if(c){var l=!n&&qr(c,this.roundToTotalStep(c))?-1:0;this.valueEnd=this.roundToTotalStep(c,!1,l),this.displayEnd=r?this.roundToTotalStep(c,!n):o.max}else this.valueEnd=i,this.displayEnd=r||a?this.end:e;this.valueEnd<this.valueStart&&(this.valueEnd=this.valueStart),this.displayEnd<=this.displayStart&&(this.displayEnd=this.roundToTotalStep(this.displayStart,!1,1))};function sn(t,e,o){for(var r,n,i,a=rn(t.categories),s=(t.max||a.max)-(t.min||a.min),c=t.autoBaseUnitSteps,l=t.maxDateGroups,h=t.baseUnit===on,u=e?en.indexOf(e):0,p=h?en[u++]:t.baseUnit,d=s/Ir[p],v=d;!n||d>=l;){r=r||c[p].slice(0);do{i=r.shift()}while(i&&e===p&&i<o);if(i)d=v/(n=i);else{if(p===Ut(en)){n=Math.ceil(v/l);break}if(!h){d>l&&(n=Math.ceil(v/l));break}p=en[u++]||Ut(en),v=s/Ir[p],r=null}}t.baseUnitStep=n,t.baseUnit=p}an.prototype.displayRange=function(){return{min:this.displayStart,max:this.displayEnd}},an.prototype.displayIndices=function(){if(!this._indices){var t=this.options,e=t.baseUnit,o=t.baseUnitStep,r=Xr(this.displayStart,this.valueStart,e,o),n=Xr(this.displayEnd,this.valueStart,e,o);this._indices={min:r,max:n}}return this._indices},an.prototype.total=function(){return{min:this.start,max:this.end}},an.prototype.totalCount=function(){return this.totalIndex(this.end)+(this.options.justified?1:0)},an.prototype.valueRange=function(){return{min:this.valueStart,max:this.valueEnd}},an.prototype.valueIndex=function(t){var e=this.options;return Math.floor(Xr(t,this.valueStart,e.baseUnit,e.baseUnitStep))},an.prototype.totalIndex=function(t){var e=this.options;return Math.floor(Xr(t,this.start,e.baseUnit,e.baseUnitStep))},an.prototype.dateIndex=function(t){var e=this.options;return Xr(t,this.valueStart,e.baseUnit,e.baseUnitStep)},an.prototype.valuesCount=function(){return this.valueIndex(this.valueEnd)+1},an.prototype.values=function(){var t=this._values;if(!t){var e=this.options,o=this.valueRange();this._values=t=[];for(var r=o.min;r<=o.max;)t.push(r),r=Dr(r,e.baseUnitStep,e.baseUnit,e.weekStartDay)}return t},an.prototype.dateAt=function(t,e){var o=this.options;return Dr(e?this.start:this.valueStart,o.baseUnitStep*t,o.baseUnit,o.weekStartDay)},an.prototype.roundToTotalStep=function(t,e,o){var r=this.options,n=r.baseUnit,i=r.baseUnitStep,a=r.weekStartDay,s=this.start,c=Xr(t,s,n,i),l=e?Math.ceil(c):Math.floor(c);return o&&(l+=o),Dr(s,l*i,n,a)};var cn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){var t=new e(Object.assign({},this.options),this.chartService);return t.createLabels(),t},e.prototype.categoriesHash=function(){var t=this.dataRange.total().min;return this.options.baseUnit+this.options.baseUnitStep+t},e.prototype.initUserOptions=function(t){return t},e.prototype.initFields=function(){t.prototype.initFields.call(this);var e=this.chartService,o=e.intl,r=this.options,n=r.categories||[];if(n._parsed||((n=Wr(o,n))._parsed=!0),r=it({roundToBaseUnit:!0},r,{categories:n,min:Yr(o,r.min),max:Yr(o,r.max),weekStartDay:Zr(r,o)}),e.panning&&e.isPannable(r.vertical?D:E)&&(r.roundToBaseUnit=!1),r.userSetBaseUnit=r.userSetBaseUnit||r.baseUnit,r.userSetBaseUnitStep=r.userSetBaseUnitStep||r.baseUnitStep,this.options=r,r.srcCategories=n,n.length>0){var i=rn(n,!0),a=r.maxDivisions,s=function(t){var e=(t.baseUnit||"").toLowerCase();return e!==on&&!Ot(e,en)&&function(t){for(var e,o,r=t.categories,n=Lt(r)?r.length:0,i=S,a=0;a<n;a++){var s=r[a];if(s&&e){var c=Math.abs(Br(s,e));0!==c&&(o=(i=Math.min(i,c))>=Hr?zr:i>=kr-3*Ar?Sr:i>=jr?Or:i>=Ar?Cr:i>=Vr?_r:i>=Pr?wr:xr)}e=s}t.baseUnit=o||Cr}(t),e!==on&&"auto"!==t.baseUnitStep||sn(t),t}(r),c=r._forecast;if(c&&(c.before>0&&(i.min=Dr(i.min,-c.before,s.baseUnit,s.weekStartDay)),c.after>0&&(i.max=Dr(i.max,c.after,s.baseUnit,s.weekStartDay))),this.dataRange=new an(i.min,i.max,s),a){var l=this.dataRange.displayRange(),h=Object.assign({},r,{justified:!0,roundToBaseUnit:!1,baseUnit:"fit",min:l.min,max:l.max,maxDateGroups:a}),u=this.dataRange.options;sn(h,u.baseUnit,u.baseUnitStep),this.divisionRange=new an(i.min,i.max,h)}else this.divisionRange=this.dataRange}else r.baseUnit=r.baseUnit||Cr,this.dataRange=this.divisionRange=new nn(r);this.rangeLabels=[]},e.prototype.tickIndices=function(e){var o=this.dataRange,r=this.divisionRange,n=r.valuesCount();if(!this.options.maxDivisions||!n)return t.prototype.tickIndices.call(this,e);var i=[],a=r.values(),s=0;this.options.justified||(a=a.concat(r.dateAt(n)),s=.5);for(var c=0;c<a.length;c++)if(i.push(o.dateIndex(a[c])+s),1!==e&&c>=1){var l=i.length-1;i.splice(c,0,i[l-1]+(i[l]-i[l-1])*e)}return i},e.prototype.shouldRenderNote=function(t){var e=this.range(),o=this.options.categories||[];return Fr(t,e.min)>=0&&Fr(t,e.max)<=0&&o.length},e.prototype.parseNoteValue=function(t){return Yr(this.chartService.intl,t)},e.prototype.noteSlot=function(t){return this.getSlot(t)},e.prototype.translateRange=function(t){var e=this.options,o=e.baseUnit,r=e.weekStartDay,n=e.vertical,i=this.lineBox(),a=n?i.height():i.width(),s=this.range(),c=a/(s.max-s.min),l=Xt(t/c,y);if(s.min&&s.max){var h=Lr(e.min||s.min,l),u=Lr(e.max||s.max,l);s={min:Dr(h,0,o,r),max:Dr(u,0,o,r)}}return s},e.prototype.labelsRange=function(){return{min:this.options.labels.skip,max:this.divisionRange.valuesCount()}},e.prototype.pan=function(t){if(this.isEmpty())return null;var e=this.options,o=this.lineBox(),r=e.vertical?o.height():o.width(),n=this.dataRange.displayRange(),i=n.min,a=n.max,s=this.dataRange.total(),c=Xt(t/(r/(a-i)),y)*(e.reverse?-1:1),l=Lr(i,c),h=Lr(a,c),u=this.limitRange(Kr(l),Kr(h),Kr(s.min),Kr(s.max),c);return u?(u.min=Tr(u.min),u.max=Tr(u.max),u.baseUnit=e.baseUnit,u.baseUnitStep=e.baseUnitStep||1,u.userSetBaseUnit=e.userSetBaseUnit,u.userSetBaseUnitStep=e.userSetBaseUnitStep,u):void 0},e.prototype.pointsRange=function(e,o){if(this.isEmpty())return null;var r=t.prototype.pointsRange.call(this,e,o),n=this.dataRange.displayRange(),i=this.dataRange.displayIndices(),a=Ur(n.max,n.min)/(i.max-i.min),s=this.options;return{min:Lr(n.min,r.min*a),max:Lr(n.min,r.max*a),baseUnit:s.userSetBaseUnit||s.baseUnit,baseUnitStep:s.userSetBaseUnitStep||s.baseUnitStep}},e.prototype.scaleRange=function(t,e){if(this.isEmpty())return{};var o=this.options,r=o.userSetBaseUnit===on,n=this.dataRange.total(),i=this.dataRange.displayRange(),a=i.min,s=i.max,c=Math.abs(this.pointOffset(e)),l=s-a,h=this.scaleToDelta(t,l),u=Math.round(c*h),p=Math.round((1-c)*h),d=this.dataRange.options.baseUnit,v=new Date(a.getTime()+u),f=new Date(s.getTime()-p);if(r){var m,g,y=o.autoBaseUnitSteps,b=o.maxDateGroups,x=Ut(y[d])*b*Ir[d],w=Ur(s,a),_=Ur(f,v),C=en.indexOf(d);if(_<Ir[d]&&d!==br)d=en[C-1],v=Lr(a,g=(w-(b-1)*(m=Ut(y[d]))*Ir[d])/2),f=Lr(s,-g);else if(_>x&&d!==zr){var O=0;do{C++,d=en[C],O=0,g=2*Ir[d];do{m=y[d][O],O++}while(O<y[d].length&&g*m<w)}while(d!==zr&&g*m<w);(g=(g*m-w)/2)>0&&(v=Lr(a,-g),f=Lr(s,g),v=Lr(v,Kt(f,n.min,n.max)-f),f=Lr(f,Kt(v,n.min,n.max)-v))}}return v&&f&&Ur(f,v)>0?{min:v,max:f,baseUnit:o.userSetBaseUnit||o.baseUnit,baseUnitStep:o.userSetBaseUnitStep||o.baseUnitStep}:void 0},e.prototype.zoomRange=function(t,e){var o=this.dataRange.total(),r=this.scaleRange(t,e);return r&&(r.min<o.min&&(r.min=o.min),r.max>o.max&&(r.max=o.max)),r},e.prototype.range=function(){return this.dataRange.displayRange()},e.prototype.createLabels=function(){t.prototype.createLabels.call(this),this.createRangeLabels()},e.prototype.clearLabels=function(){t.prototype.clearLabels.call(this),this.rangeLabels=[]},e.prototype.arrangeLabels=function(){this.arrangeRangeLabels(),t.prototype.arrangeLabels.call(this)},e.prototype.arrangeRangeLabels=function(){var t=this.options,e=this.rangeLabels;if(0!==e.length){var o=this.lineBox(),r=t.vertical,n=t.rangeLabels.mirror||t.labels.mirror,i=e[0];if(i){var a=r?o.y1-i.box.height()/2:o.x1;this.positionLabel(i,n,a)}var s=e[1];if(s){var c=r?o.y2-s.box.height()/2:o.x2;this.positionLabel(s,n,c)}}},e.prototype.autoRotateLabels=function(){t.prototype.autoRotateLabels.call(this),this.autoRotateRangeLabels()},e.prototype.hideOutOfRangeLabels=function(){t.prototype.hideOutOfRangeLabels.call(this),this.hideOverlappingLabels()},e.prototype.hideOverlappingLabels=function(){var t=this.rangeLabels,e=this.labels;if(0!==t.length){var o=t[0];if(o&&o.options.visible)for(var r=0;r<e.length&&a(o,e[r]);r++);var n=t[1];if(n&&n.options.visible)for(var i=e.length-1;i>0&&a(n,e[i]);--i);}function a(t,e){return!(e.options.visible&&!e.box.overlaps(t.box)||(e.options.visible=!1,0))}},e.prototype.contentBox=function(){for(var e=t.prototype.contentBox.call(this),o=this.rangeLabels,r=0;r<o.length;r++){var n=o[r];n.options.visible&&e.wrap(n.box)}return e},e.prototype.createAxisLabel=function(t,e,o){void 0===o&&(o={});var r=this.options,n=r.dataItems&&!r.maxDivisions?r.dataItems[t]:null,i=this.divisionRange.dateAt(t),a=e.dateFormats[this.divisionRange.options.baseUnit];e.format=e.format||a,o.dataItem=n;var s=this.axisLabelText(i,e,o);if(s)return new Zo(i,s,t,n,e)},e.prototype.createRangeLabels=function(){var t=this,e=this.divisionRange,o=e.displayStart,r=e.displayEnd,n=this.options,i=Object.assign({},n.labels,n.rangeLabels,{align:p,zIndex:n.zIndex});if(!0===i.visible){this.normalizeLabelRotation(i),i.alignRotation=p,"auto"===i.rotation&&(i.rotation=0,n.autoRotateRangeLabels=!0);var a=i.dateFormats[this.divisionRange.options.baseUnit];i.format=i.format||a;var s=function(e,o,r){if(r){var n=new Zo(o,r,e,null,i);t.append(n),t.rangeLabels.push(n)}};s(0,o,this.axisLabelText(o,i,{index:0,count:2})),s(1,r,this.axisLabelText(r,i,{index:1,count:2}))}},e.prototype.autoRotateRangeLabels=function(){var t=this,e=this.rangeLabels;if(this.options.autoRotateRangeLabels&&!this.options.vertical&&2===e.length){var o=function(e,o,r){var n=2*Math.abs(o[r+1]-o[r]),i=t.autoRotateLabelAngle(e.box,n);0!==i&&(e.options.rotation=i,e.reflow(new yo))},r=this.getMajorTickPositions();o(e[0],r,0),o(e[1],r,r.length-2)}},e.prototype.categoryIndex=function(t){return this.dataRange.valueIndex(t)},e.prototype.slot=function(t,e,o){var r=this.dataRange,n=t,i=e;n instanceof Date&&(n=r.dateIndex(n)),i instanceof Date&&(i=r.dateIndex(i));var a=this.getSlot(n,i,o);if(a)return a.toRect()},e.prototype.getSlot=function(e,o,r){var n=e,i=o;return typeof n===P&&(n=this.categoryIndex(n)),typeof i===P&&(i=this.categoryIndex(i)),t.prototype.getSlot.call(this,n,i,r)},e.prototype.valueRange=function(){var t=rn(this.options.srcCategories);return{min:Tr(t.min),max:Tr(t.max)}},e.prototype.categoryAt=function(t,e){return this.dataRange.dateAt(t,e)},e.prototype.categoriesCount=function(){return this.dataRange.valuesCount()},e.prototype.rangeIndices=function(){return this.dataRange.displayIndices()},e.prototype.labelsBetweenTicks=function(){return!this.divisionRange.options.justified},e.prototype.prepareUserOptions=function(){this.isEmpty()||(this.options.categories=this.dataRange.values())},e.prototype.getCategory=function(t){var e=this.pointCategoryIndex(t);return null===e?null:this.dataRange.dateAt(e)},e.prototype.totalIndex=function(t){return this.dataRange.totalIndex(t)},e.prototype.currentRangeIndices=function(){var t=this.dataRange.valueRange();return{min:this.dataRange.totalIndex(t.min),max:this.dataRange.totalIndex(t.max)}},e.prototype.totalRange=function(){return this.dataRange.total()},e.prototype.totalRangeIndices=function(){var t=this.dataRange.total();return{min:this.dataRange.totalIndex(t.min),max:this.dataRange.totalIndex(t.max)}},e.prototype.totalCount=function(){return this.dataRange.totalCount()},e.prototype.isEmpty=function(){return!this.options.srcCategories.length},e.prototype.roundedRange=function(){if(!1!==this.options.roundToBaseUnit||this.isEmpty())return this.range();var t=this.options,e=rn(t.srcCategories);return new an(e.min,e.max,Object.assign({},t,{justified:!1,roundToBaseUnit:!0,justifyEnd:!1})).displayRange()},e}(Jr);Qt(cn,{type:m,labels:{dateFormats:tn},rangeLabels:{visible:!1},autoBaseUnitSteps:{milliseconds:[1,10,100],seconds:[1,2,5,15,30],minutes:[1,2,5,15,30],hours:[1,2,3],days:[1,2,3],weeks:[1,2],months:[1,2,3,6],years:[1,2,3,5,10,25,50]},maxDateGroups:10});const ln=cn;function hn(t,e){return Xt(Math.floor(t/e)*e,y)}function un(t,e){return Xt(Math.ceil(t/e)*e,y)}function pn(t){return Math.max(Math.min(t,3e5),-3e5)}var dn=Math.pow(10,1-y),vn=function(t){function e(e,o,r,n){t.call(this,Object.assign({},r,{seriesMin:e,seriesMax:o}),n)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){var e=function(t,e,o){var r=o.narrowRange,n=function(t,e,o){if(!t&&!e)return 0;var r;if(t>=0&&e>=0){var n=t===e?0:t;if(!1===o||!o&&(e-n)/e>.2)return 0;r=Math.max(0,n-(e-n)/2)}else r=t;return r}(t,e,r),i=function(t,e,o){if(!t&&!e)return 1;var r;if(t<=0&&e<=0){var n=t===e?0:e,i=Math.abs((n-t)/n);if(!1===o||!o&&i>.2)return 0;r=Math.min(0,n-(t-n)/2)}else r=e;return r}(t,e,r),a=vo(n,i),s={majorUnit:a};return!1!==o.roundToMajorUnit&&(n<0&&fn(n,a,1/3)&&(n-=a),i>0&&fn(i,a,1/3)&&(i+=a)),s.min=hn(n,a),s.max=un(i,a),s}(t.seriesMin,t.seriesMax,t);return this.totalOptions=function(t,e){return{min:Lt(e.min)?Math.min(t.min,e.min):t.min,max:Lt(e.max)?Math.max(t.max,e.max):t.max,majorUnit:t.majorUnit}}(e,t),function(t,e){var o,r,n=e;if(e){!function(t,e){for(var o=0;o<e.length;o++){var r=e[o];null===t[r]&&(t[r]=void 0)}}(e,["min","max"]),o=Lt(e.min),r=Lt(e.max);var i=o||r;i&&e.min===e.max&&(e.min>0?e.min=0:e.max=1),e.majorUnit?(t.min=hn(t.min,e.majorUnit),t.max=un(t.max,e.majorUnit)):i&&(n=it(t,e),t.majorUnit=vo(n.min,n.max))}t.minorUnit=(n.majorUnit||t.majorUnit)/5;var a=it(t,n);return a.min>=a.max&&(o&&!r?a.max=a.min+a.majorUnit:!o&&r&&(a.min=a.max-a.majorUnit)),a}(e,t)},e.prototype.initFields=function(){this.totalMin=this.totalOptions.min,this.totalMax=this.totalOptions.max,this.totalMajorUnit=this.totalOptions.majorUnit,this.seriesMin=this.options.seriesMin,this.seriesMax=this.options.seriesMax},e.prototype.clone=function(){return new e(this.seriesMin,this.seriesMax,Object.assign({},this.options),this.chartService)},e.prototype.startValue=function(){return 0},e.prototype.range=function(){var t=this.options;return{min:t.min,max:t.max}},e.prototype.getDivisions=function(t){if(0===t)return 1;var e=this.options,o=e.max-e.min;return Math.floor(Xt(o/t,v))+1},e.prototype.getTickPositions=function(t,e){var o=this.options,r=this.lineInfo(),n=r.axisDir,i=r.axisOrigin,a=r.lineBox,s=t*(r.lineSize/(o.max-o.min)),c=this.getDivisions(t),l=[],h=a[i],u=0;e&&(u=e/t);for(var p=0;p<c;p++)p%u!=0&&l.push(Xt(h,v)),h+=s*n;return l},e.prototype.getMajorTickPositions=function(){return this.getTickPositions(this.options.majorUnit)},e.prototype.getMinorTickPositions=function(){return this.getTickPositions(this.options.minorUnit)},e.prototype.getSlot=function(t,e,o){void 0===o&&(o=!1);var r=this.options,n=this.lineInfo(),i=n.axis,a=n.axisDir,s=n.lineBox,c=n.lineSize,l=n.lineStart,h=a*(c/(r.max-r.min)),u=Yt(t,e||0),p=Yt(e,t||0);o&&(u=Kt(u,r.min,r.max),p=Kt(p,r.min,r.max));var d=Math.min(u,p)-r.min,v=Math.max(u,p)-r.min,f=new yo(s.x1,s.y1,s.x1,s.y1);return f[i+1]=pn(l+h*(a>0?d:v)),f[i+2]=pn(l+h*(a>0?v:d)),f},e.prototype.getValue=function(t){var e=this.options,o=Number(e.max),r=Number(e.min),n=this.pointOffset(t);return n<0||n>1?null:Xt(r+n*(o-r),y)},e.prototype.translateRange=function(t){var e=this.options,o=e.vertical,r=e.reverse,n=e.max,i=e.min,a=this.lineInfo().lineSize,s=Xt(t/(a/(n-i)),y);return!o&&!r||o&&r||(s=-s),{min:i+s,max:n+s,offset:s}},e.prototype.labelsCount=function(){return this.getDivisions(this.options.majorUnit)},e.prototype.createAxisLabel=function(t,e,o){var r=this.options,n=Xt(r.min+t*r.majorUnit,y),i=this.axisLabelText(n,e,o);return new Zo(n,i,t,null,e)},e.prototype.shouldRenderNote=function(t){var e=this.range();return e.min<=t&&t<=e.max},e.prototype.pan=function(t){var e=this.translateRange(t);return this.limitRange(e.min,e.max,this.totalMin,this.totalMax,e.offset)},e.prototype.pointsRange=function(t,e){var o=this.getValue(t),r=this.getValue(e),n=Math.min(o,r),i=Math.max(o,r);if(this.isValidRange(n,i))return{min:n,max:i}},e.prototype.scaleRange=function(t,e){var o=Math.abs(this.pointOffset(e)),r=this.options.max-this.options.min,n=this.scaleToDelta(t,r),i=o*n,a=(1-o)*n,s=Xt(this.options.min+i,y),c=Xt(this.options.max-a,y);return c-s<dn&&(c=s+dn),{min:s,max:c}},e.prototype.zoomRange=function(t,e){var o=this.totalMin,r=this.totalMax,n=this.scaleRange(t,e);return{min:Kt(n.min,o,r),max:Kt(n.max,o,r),narrowRange:!1}},e.prototype.isValidRange=function(t,e){return e-t>dn},e}(yr);function fn(t,e,o){var r=Xt(Math.abs(t%e),y);return 0===r||r>e*(1-o)}Qt(vn,{type:"numeric",min:0,max:1,vertical:!0,majorGridLines:{visible:!0,width:1,color:h},labels:{format:"#.####################"},zIndex:1});const mn=vn;var gn=function(t){function e(e,o,r,n){var i=Tr(e),a=Tr(o),s=n.intl,c=r||{};c=function(t,e,o){var r,n,i=o.min||t,a=o.max||e,s=o.baseUnit||(a&&i?(r=Br(a,i),n=_r,r>=Hr?n=zr:r>=kr?n=Sr:r>=jr?n=Or:r>=Ar&&(n=Cr),n):_r),c=Ir[s],l=o.weekStartDay||0,h=Nr(Kr(i)-1,s,l)||Tr(a),u=Rr(Kr(a)+1,s,l),p=(o.majorUnit?o.majorUnit:void 0)||un(vo(h.getTime(),u.getTime()),c)/c,d=Gr(h,u,s),v=un(d,p)-d,f=Math.floor(v/2),m=v-f;return o.baseUnit||delete o.baseUnit,o.baseUnit=o.baseUnit||s,o.min=o.min||Dr(h,-f,s,l),o.max=o.max||Dr(u,m,s,l),o.minorUnit=o.minorUnit||p/5,o.majorUnit=p,o}(i,a,c=it(c||{},{min:Yr(s,c.min),max:Yr(s,c.max),axisCrossingValue:Wr(s,c.axisCrossingValues||c.axisCrossingValue),weekStartDay:Zr(c,s)})),t.call(this,c,n),this.intlService=s,this.seriesMin=i,this.seriesMax=a;var l=c.weekStartDay||0;this.totalMin=Kr(Nr(Kr(i)-1,c.baseUnit,l)),this.totalMax=Kr(Rr(Kr(a)+1,c.baseUnit,l))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.seriesMin,this.seriesMax,Object.assign({},this.options),this.chartService)},e.prototype.range=function(){var t=this.options;return{min:t.min,max:t.max}},e.prototype.getDivisions=function(t){var e=this.options;return Math.floor(Gr(e.min,e.max,e.baseUnit)/t+1)},e.prototype.getTickPositions=function(t){for(var e=this.options,o=this.lineInfo(),r=o.axisDir,n=o.lineSize,i=o.lineStart,a=this.getDivisions(t),s=n/Ur(e.max,e.min),c=e.weekStartDay||0,l=[i],h=1;h<a;h++){var u=i+Ur(Dr(e.min,h*t,e.baseUnit,c),e.min)*s*r;l.push(Xt(u,v))}return l},e.prototype.getMajorTickPositions=function(){return this.getTickPositions(this.options.majorUnit)},e.prototype.getMinorTickPositions=function(){return this.getTickPositions(this.options.minorUnit)},e.prototype.getSlot=function(t,e,o){return mn.prototype.getSlot.call(this,Yr(this.intlService,t),Yr(this.intlService,e),o)},e.prototype.getValue=function(t){var e=mn.prototype.getValue.call(this,t);return null!==e?Tr(e):null},e.prototype.labelsCount=function(){return this.getDivisions(this.options.majorUnit)},e.prototype.createAxisLabel=function(t,e,o){var r=this.options,n=t*r.majorUnit,i=r.weekStartDay||0,a=r.min;n>0&&(a=Dr(a,n,r.baseUnit,i));var s=e.dateFormats[r.baseUnit];e.format=e.format||s;var c=this.axisLabelText(a,e,o);return new Zo(a,c,t,null,e)},e.prototype.translateRange=function(t){var e=this.options,o=this.lineBox(),r=e.vertical,n=e.reverse,i=r?o.height():o.width(),a=this.range(),s=i/Ur(a.max,a.min),c=Xt(t/s,y);return!r&&!n||r&&n||(c=-c),{min:Lr(e.min,c),max:Lr(e.max,c),offset:c}},e.prototype.shouldRenderNote=function(t){var e=this.range();return Fr(t,e.min)>=0&&Fr(t,e.max)<=0},e.prototype.pan=function(t){var e=this.translateRange(t,!0),o=this.limitRange(Kr(e.min),Kr(e.max),this.totalMin,this.totalMax,e.offset);if(o)return{min:Tr(o.min),max:Tr(o.max)}},e.prototype.pointsRange=function(t,e){var o=this.getValue(t),r=this.getValue(e),n=Math.min(o,r),i=Math.max(o,r);return{min:Tr(n),max:Tr(i)}},e.prototype.scaleRange=function(t,e){var o=Math.abs(this.pointOffset(e)),r=this.options.max-this.options.min,n=this.scaleToDelta(t,r),i=o*n,a=(1-o)*n,s=Tr(Kr(this.options.min)+i),c=Tr(Kr(this.options.max)-a);return c-s<1e3&&(c=Tr(Kr(s)+1e3)),{min:s,max:c}},e.prototype.zoomRange=function(t,e){var o=this.scaleRange(t,e);return{min:Tr(Kt(Kr(o.min),this.totalMin,this.totalMax)),max:Tr(Kt(Kr(o.max),this.totalMin,this.totalMax))}},e}(yr);Qt(gn,{type:m,majorGridLines:{visible:!0,width:1,color:h},labels:{dateFormats:tn}});const yn=gn;var bn=1e-6,xn=function(t){function e(e,o,r,n){var i=it({majorUnit:10,min:e,max:o},r),a=i.majorUnit,s=function(t,e){var o=Xt(_n(t,e),y)%1;return t<=0?e:0!==o&&(o<.3||o>.9)?Math.pow(e,_n(t,e)+.2):Math.pow(e,Math.ceil(_n(t,e)))}(o,a),c=function(t,e,o){var r=o.majorUnit,n=t;return t<=0?n=e<=1?Math.pow(r,-2):1:o.narrowRange||(n=Math.pow(r,Math.floor(_n(t,r)))),n}(e,o,i),l=function(t,e,o,r){var n=o.min,i=o.max;return Lt(o.axisCrossingValue)&&o.axisCrossingValue<=0&&wn(),Lt(r.max)?r.max<=0&&wn():i=e,Lt(r.min)?r.min<=0&&wn():n=t,{min:n,max:i}}(c,s,i,r);i.max=l.max,i.min=l.min,i.minorUnit=r.minorUnit||Xt(a-1,y),t.call(this,i,n),this.totalMin=Lt(r.min)?Math.min(c,r.min):c,this.totalMax=Lt(r.max)?Math.max(s,r.max):s,this.logMin=Xt(_n(l.min,a),y),this.logMax=Xt(_n(l.max,a),y),this.seriesMin=e,this.seriesMax=o,this.createLabels()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.seriesMin,this.seriesMax,Object.assign({},this.options),this.chartService)},e.prototype.startValue=function(){return this.options.min},e.prototype.getSlot=function(t,e,o){var r=this,n=r.options,i=r.logMin,a=r.logMax,s=n.majorUnit,c=n.min,l=n.max,h=this.lineInfo(),u=h.axis,p=h.axisDir,d=h.lineBox,v=h.lineSize,f=h.lineStart,m=p*(v/(a-i)),g=Yt(t,e||1),y=Yt(e,t||1);if(g<=0||y<=0)return null;o&&(g=Kt(g,c,l),y=Kt(y,c,l)),g=_n(g,s),y=_n(y,s);var b=Math.min(g,y)-i,x=Math.max(g,y)-i,w=new yo(d.x1,d.y1,d.x1,d.y1);return w[u+1]=pn(f+m*(p>0?b:x)),w[u+2]=pn(f+m*(p>0?x:b)),w},e.prototype.getValue=function(t){var e=this,o=e.options,r=e.logMin,n=e.logMax,i=o.majorUnit,a=this.lineInfo(),s=a.axis,c=a.axisDir,l=a.lineStart,h=a.lineSize,u=(n-r)/h,p=c*(t[s]-l);if(p<0||p>h)return null;var d=r+p*u;return Xt(Math.pow(i,d),y)},e.prototype.range=function(){var t=this.options;return{min:t.min,max:t.max}},e.prototype.translateRange=function(t){var e=this,o=e.options,r=e.logMin,n=e.logMax,i=o.reverse,a=o.vertical,s=o.majorUnit,c=this.lineBox(),l=a?c.height():c.width(),h=Xt(t/(l/(n-r)),y);return!a&&!i||a&&i||(h=-h),{min:Math.pow(s,r+h),max:Math.pow(s,n+h),offset:h}},e.prototype.labelsCount=function(){var t=Math.floor(this.logMax);return Math.floor(t-this.logMin)+1},e.prototype.getMajorTickPositions=function(){var t=[];return this.traverseMajorTicksPositions((function(e){t.push(e)}),{step:1,skip:0}),t},e.prototype.createTicks=function(t){var e=this.options,o=e.majorTicks,r=e.minorTicks,n=e.vertical,i=e.labels.mirror,a=this.lineBox(),s={vertical:n};function c(e,o){s.tickX=i?a.x2:a.x2-o.size,s.tickY=i?a.y1-o.size:a.y1,s.position=e,t.append(fr(s,o))}return o.visible&&this.traverseMajorTicksPositions(c,o),r.visible&&this.traverseMinorTicksPositions(c,r),[]},e.prototype.createGridLines=function(t){var e=this.options,o=e.minorGridLines,r=e.majorGridLines,n=e.vertical,i=t.lineBox(),a={lineStart:i[n?"x1":"y1"],lineEnd:i[n?"x2":"y2"],vertical:n},s=[],c=this.gridLinesVisual();function l(t,e){Ot(t,s)||(a.position=t,c.append(mr(a,e)),s.push(t))}return r.visible&&this.traverseMajorTicksPositions(l,r),o.visible&&this.traverseMinorTicksPositions(l,o),c.children},e.prototype.traverseMajorTicksPositions=function(t,e){for(var o=this.lineInfo(),r=o.lineStart,n=o.step,i=this.logMin,a=this.logMax,s=Math.ceil(i)+e.skip;s<=a;s+=e.step)t(Xt(r+n*(s-i),y),e)},e.prototype.traverseMinorTicksPositions=function(t,e){for(var o=this.options,r=o.min,n=o.max,i=o.minorUnit,a=o.majorUnit,s=this.lineInfo(),c=s.lineStart,l=s.step,h=this.logMin,u=this.logMax,p=Math.floor(h);p<u;p++)for(var d=this._minorIntervalOptions(p),v=e.skip;v<i;v+=e.step){var f=d.value+v*d.minorStep;if(f>n)break;f>=r&&t(Xt(c+l*(_n(f,a)-h),y),e)}},e.prototype.createAxisLabel=function(t,e,o){var r=Math.ceil(this.logMin+t),n=Math.pow(this.options.majorUnit,r),i=this.axisLabelText(n,e,o);return new Zo(n,i,t,null,e)},e.prototype.shouldRenderNote=function(t){var e=this.range();return e.min<=t&&t<=e.max},e.prototype.pan=function(t){var e=this.translateRange(t);return this.limitRange(e.min,e.max,this.totalMin,this.totalMax,e.offset)},e.prototype.pointsRange=function(t,e){var o=this.getValue(t),r=this.getValue(e);return{min:Math.min(o,r),max:Math.max(o,r)}},e.prototype.scaleRange=function(t,e){var o=this.options.majorUnit,r=_n(this.options.min,o),n=_n(this.options.max,o),i=Math.abs(this.pointOffset(e)),a=n-r,s=this.scaleToDelta(t,a),c=Math.pow(o,r+i*s),l=Math.pow(o,n-(1-i)*s);return l-c<bn&&(l=c+bn),{min:c,max:l}},e.prototype.zoomRange=function(t,e){var o=this.scaleRange(t,e),r=this.totalMin,n=this.totalMax;return{min:Kt(o.min,r,n),max:Kt(o.max,r,n)}},e.prototype._minorIntervalOptions=function(t){var e=this.options,o=e.minorUnit,r=e.majorUnit,n=Math.pow(r,t);return{value:n,minorStep:(Math.pow(r,t+1)-n)/o}},e.prototype.lineInfo=function(){var e=t.prototype.lineInfo.call(this);return e.step=e.axisDir*(e.lineSize/(this.logMax-this.logMin)),e},e}(yr);function wn(){throw new Error("Non positive values cannot be used for a logarithmic axis")}function _n(t,e){return Math.log(t)/Math.log(e)}Qt(xn,{type:"log",majorUnit:10,minorUnit:1,axisCrossingValue:1,vertical:!0,majorGridLines:{visible:!0,width:1,color:h},zIndex:1,_deferLabels:!0});const Cn=xn,On={createGridLines:function(t){var e,o,r=this.options,n=Math.abs(this.box.center().y-t.lineBox().y1),i=[],a=!1;return r.majorGridLines.visible&&(e=this.majorGridLineAngles(t),a=!0,i=this.renderMajorGridLines(e,n,r.majorGridLines)),r.minorGridLines.visible&&(o=this.minorGridLineAngles(t,a),It(i,this.renderMinorGridLines(o,n,r.minorGridLines,t,a))),i},renderMajorGridLines:function(t,e,o){return this.renderGridLines(t,e,o)},renderMinorGridLines:function(t,e,o,r,n){var i=this.radiusCallback&&this.radiusCallback(e,r,n);return this.renderGridLines(t,e,o,i)},renderGridLines:function(t,e,o,r){for(var n={stroke:{width:o.width,color:o.color,dashType:o.dashType}},i=this.box.center(),a=new $.geometry.Circle([i.x,i.y],e),s=this.gridLinesVisual(),c=0;c<t.length;c++){var l=new $.drawing.Path(n);r&&(a.radius=r(t[c])),l.moveTo(a.center).lineTo(a.pointAt(t[c]+180)),s.append(l)}return s.children},gridLineAngles:function(t,e,o,r,n){var i=this,a=this.intervals(e,o,r,n),s=t.options,c=s.visible&&!1!==(s.line||{}).visible;return At(a,(function(t){var e=i.intervalAngle(t);if(!c||90!==e)return e}))}};var Sn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.range=function(){return{min:0,max:this.options.categories.length}},e.prototype.reflow=function(t){this.box=t,this.reflowLabels()},e.prototype.lineBox=function(){return this.box},e.prototype.reflowLabels=function(){for(var t=this.labels,e=this.options.labels,o=e.skip||0,r=e.step||1,n=new yo,i=0;i<t.length;i++){t[i].reflow(n);var a=t[i].box;t[i].reflow(this.getSlot(o+i*r).adjacentBox(0,a.width(),a.height()))}},e.prototype.intervals=function(t,e,o,r){void 0===r&&(r=!1);for(var n=this.options,i=n.categories.length/t||1,a=360/i,s=o||1,c=[],l=0,h=e||0;h<i;h+=s)l=n.reverse?360-h*a:h*a,l=Xt(l,v)%360,r&&Ot(l,r)||c.push(l);return c},e.prototype.majorIntervals=function(){return this.intervals(1)},e.prototype.minorIntervals=function(){return this.intervals(.5)},e.prototype.intervalAngle=function(t){return(360+t+this.options.startAngle)%360},e.prototype.majorAngles=function(){var t=this;return At(this.majorIntervals(),(function(e){return t.intervalAngle(e)}))},e.prototype.createLine=function(){return[]},e.prototype.majorGridLineAngles=function(t){var e=this.options.majorGridLines;return this.gridLineAngles(t,1,e.skip,e.step)},e.prototype.minorGridLineAngles=function(t,e){var o=this.options,r=o.minorGridLines,n=o.majorGridLines,i=e?this.intervals(1,n.skip,n.step):null;return this.gridLineAngles(t,.5,r.skip,r.step,i)},e.prototype.radiusCallback=function(t,e,o){if(e.options.type!==n){var r=$t(360/(2*this.options.categories.length)),i=Math.cos(r)*t,a=this.majorAngles();return function(e){return!o&&Ot(e,a)?t:i}}},e.prototype.createPlotBands=function(){for(var t=this.options.plotBands||[],e=this._plotbandGroup=new $.drawing.Group({zIndex:-1}),o=0;o<t.length;o++){var r=t[o],n=this.plotBandSlot(r),i=this.getSlot(r.from),a=r.from-Math.floor(r.from);n.startAngle+=a*i.angle;var s=Math.ceil(r.to)-r.to;n.angle-=(s+a)*i.angle;var c=So.current.createRing(n,{fill:{color:r.color,opacity:r.opacity},stroke:{opacity:r.opacity}});e.append(c)}this.appendVisual(e)},e.prototype.plotBandSlot=function(t){return this.getSlot(t.from,t.to-1)},e.prototype.getSlot=function(t,e){var o=this.options,r=o.justified,n=this.box,i=this.majorAngles(),a=i.length,s=360/a,c=t;o.reverse&&!r&&(c=(c+1)%a);var l=i[c=Kt(Math.floor(c),0,a-1)];r&&(l-=s/2)<0&&(l+=360);var h=s*(Kt(Math.ceil(e||c),c,a-1)-c+1);return new wo(n.center(),0,n.height()/2,l,h)},e.prototype.slot=function(t,e){var o=this.getSlot(t,e),r=o.startAngle+180,n=r+o.angle;return new $.geometry.Arc([o.center.x,o.center.y],{startAngle:r,endAngle:n,radiusX:o.radius,radiusY:o.radius})},e.prototype.pointCategoryIndex=function(t){for(var e=this.options.categories.length,o=null,r=0;r<e;r++)if(this.getSlot(r).containsPoint(t)){o=r;break}return o},e}(Jr);Qt(Sn,{startAngle:90,labels:{margin:ut(10)},majorGridLines:{visible:!0},justified:!0}),it(Sn.prototype,On);const zn=Sn;var Mn=function(t){function e(e,o){t.call(this,e,o);var r=this.options;r.minorUnit=r.minorUnit||r.majorUnit/2}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDivisions=function(t){return mn.prototype.getDivisions.call(this,t)-1},e.prototype.reflow=function(t){this.box=t,this.reflowLabels()},e.prototype.reflowLabels=function(){for(var t=this,e=t.options,o=t.labels,r=t.options.labels,n=r.skip||0,i=r.step||1,a=new yo,s=this.intervals(e.majorUnit,n,i),c=0;c<o.length;c++){o[c].reflow(a);var l=o[c].box;o[c].reflow(this.getSlot(s[c]).adjacentBox(0,l.width(),l.height()))}},e.prototype.lineBox=function(){return this.box},e.prototype.intervals=function(t,e,o,r){void 0===r&&(r=!1);for(var n=this.options.min,i=this.getDivisions(t),a=[],s=o||1,c=e||0;c<i;c+=s){var l=(360+n+c*t)%360;r&&Ot(l,r)||a.push(l)}return a},e.prototype.majorIntervals=function(){return this.intervals(this.options.majorUnit)},e.prototype.minorIntervals=function(){return this.intervals(this.options.minorUnit)},e.prototype.intervalAngle=function(t){return(540-t-this.options.startAngle)%360},e.prototype.createLine=function(){return[]},e.prototype.majorGridLineAngles=function(t){var e=this.options.majorGridLines;return this.gridLineAngles(t,this.options.majorUnit,e.skip,e.step)},e.prototype.minorGridLineAngles=function(t,e){var o=this.options,r=o.minorGridLines,n=o.majorGridLines,i=e?this.intervals(o.majorUnit,n.skip,n.step):null;return this.gridLineAngles(t,o.minorUnit,r.skip,r.step,i)},e.prototype.plotBandSlot=function(t){return this.getSlot(t.from,t.to)},e.prototype.getSlot=function(t,e){var o=this.options,r=this.box,n=o.startAngle,i=Kt(t,o.min,o.max),a=Kt(e||i,i,o.max);if(o.reverse&&(i*=-1,a*=-1),(a=(540-a-n)%360)<(i=(540-i-n)%360)){var s=i;i=a,a=s}return new wo(r.center(),0,r.height()/2,i,a-i)},e.prototype.slot=function(t,e){void 0===e&&(e=t);var o,r,n=this.options,i=360-n.startAngle,a=this.getSlot(t,e),s=Math.min(t,e),c=Math.max(t,e);return n.reverse?(o=s,r=c):(o=360-c,r=360-s),o=(o+i)%360,r=(r+i)%360,new $.geometry.Arc([a.center.x,a.center.y],{startAngle:o,endAngle:r,radiusX:a.radius,radiusY:a.radius})},e.prototype.getValue=function(t){var e=this.options,o=this.box.center(),r=t.x-o.x,n=t.y-o.y,i=Math.round(Tt(Math.atan2(n,r))),a=e.startAngle;return e.reverse||(i*=-1,a*=-1),(i+a+360)%360},e.prototype.valueRange=function(){return{min:0,max:2*Math.PI}},e}(yr);Qt(Mn,{type:"polar",startAngle:0,reverse:!1,majorUnit:60,min:0,max:360,labels:{margin:ut(10)},majorGridLines:{color:h,visible:!0,width:1},minorGridLines:{color:"#aaa"}}),it(Mn.prototype,On,{createPlotBands:zn.prototype.createPlotBands,majorAngles:zn.prototype.majorAngles,range:mn.prototype.range,labelsCount:mn.prototype.labelsCount,createAxisLabel:mn.prototype.createAxisLabel});const Pn=Mn;var Vn={options:{majorGridLines:{visible:!0}},createPlotBands:function(){var t=this.options,e=t.majorGridLines.type,o=t.plotBands;void 0===o&&(o=[]);for(var r=this.plotArea.polarAxis,i=r.majorAngles(),a=r.box.center(),s=this._plotbandGroup=new $.drawing.Group({zIndex:-1}),c=0;c<o.length;c++){var l,h=o[c],u={fill:{color:h.color,opacity:h.opacity},stroke:{opacity:h.opacity}},p=this.getSlot(h.from,h.to,!0),d=new wo(a,a.y-p.y2,a.y-p.y1,0,360);l=e===n?So.current.createRing(d,u):$.drawing.Path.fromPoints(this.plotBandPoints(d,i),u).close(),s.append(l)}this.appendVisual(s)},plotBandPoints:function(t,e){for(var o=[],r=[],n=[t.center.x,t.center.y],i=new $.geometry.Circle(n,t.innerRadius),a=new $.geometry.Circle(n,t.radius),s=0;s<e.length;s++)o.push(i.pointAt(e[s]+180)),r.push(a.pointAt(e[s]+180));return o.reverse(),o.push(o[0]),r.push(r[0]),r.concat(o)},createGridLines:function(t){var e=this.options,o=this.radarMajorGridLinePositions(),r=t.majorAngles(),n=t.box.center(),i=[];if(e.majorGridLines.visible&&(i=this.renderGridLines(n,o,r,e.majorGridLines)),e.minorGridLines.visible){var a=this.radarMinorGridLinePositions();It(i,this.renderGridLines(n,a,r,e.minorGridLines))}return i},renderGridLines:function(t,e,o,r){var i={stroke:{width:r.width,color:r.color,dashType:r.dashType}},a=r.skip;void 0===a&&(a=0);var s=r.step;void 0===s&&(s=0);for(var c=this.gridLinesVisual(),l=a;l<e.length;l+=s){var h=t.y-e[l];if(h>0){var u=new $.geometry.Circle([t.x,t.y],h);if(r.type===n)c.append(new $.drawing.Circle(u,i));else{for(var p=new $.drawing.Path(i),d=0;d<o.length;d++)p.lineTo(u.pointAt(o[d]+180));p.close(),c.append(p)}}}return c.children},getValue:function(t){var e=this.lineBox(),o=this.plotArea.polarAxis,r=o.majorAngles(),i=o.box.center(),a=t.distanceTo(i),s=a;if(this.options.majorGridLines.type!==n&&r.length>1){var c=t.x-i.x,l=t.y-i.y,h=(Tt(Math.atan2(l,c))+540)%360;r.sort((function(t,e){return An(t,h)-An(e,h)}));var u=90-An(r[0],r[1])/2,p=180-An(h,r[0])-u;s=a*(Math.sin($t(p))/Math.sin($t(u)))}return this.axisType().prototype.getValue.call(this,new fo(e.x1,e.y2-s))}};function An(t,e){return 180-Math.abs(Math.abs(t-e)-180)}const jn=Vn;var kn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.radarMajorGridLinePositions=function(){return this.getTickPositions(this.options.majorUnit)},e.prototype.radarMinorGridLinePositions=function(){var t=this.options,e=0;return t.majorGridLines.visible&&(e=t.majorUnit),this.getTickPositions(t.minorUnit,e)},e.prototype.axisType=function(){return t},e}(mn);it(kn.prototype,jn);const Hn=kn;var In=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.radarMajorGridLinePositions=function(){var t=[];return this.traverseMajorTicksPositions((function(e){t.push(e)}),this.options.majorGridLines),t},e.prototype.radarMinorGridLinePositions=function(){var t=[];return this.traverseMinorTicksPositions((function(e){t.push(e)}),this.options.minorGridLines),t},e.prototype.axisType=function(){return t},e}(Cn);it(In.prototype,jn);const Bn=In;function Ln(t){return t<=0?-1:1}const Tn=function(t){function e(e){t.call(this),this.closed=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.process=function(t){var e=t.slice(0),o=[],r=this.closed,n=e.length;if(n>2&&(this.removeDuplicates(0,e),n=e.length),n<2||2===n&&e[0].equals(e[1]))return o;var i,a,s=e[0],c=e[1],l=e[2];for(o.push(new $.geometry.Segment(s));s.equals(e[n-1]);)r=!0,e.pop(),n--;if(2===n){var h=this.tangent(s,c,E,D);return Ut(o).controlOut(this.firstControlPoint(h,s,c,E,D)),o.push(new $.geometry.Segment(c,this.secondControlPoint(h,s,c,E,D))),o}if(r){s=e[n-1],c=e[0],l=e[1];var u=this.controlPoints(s,c,l);i=u[1],a=u[0]}else{var p=this.tangent(s,c,E,D);i=this.firstControlPoint(p,s,c,E,D)}for(var d=i,v=0;v<=n-3;v++)if(this.removeDuplicates(v,e),v+3<=(n=e.length)){s=e[v],c=e[v+1],l=e[v+2];var f=this.controlPoints(s,c,l);Ut(o).controlOut(d),d=f[1];var m=f[0];o.push(new $.geometry.Segment(c,m))}if(r){s=e[n-2],c=e[n-1],l=e[0];var g=this.controlPoints(s,c,l);Ut(o).controlOut(d),o.push(new $.geometry.Segment(c,g[0])),Ut(o).controlOut(g[1]),o.push(new $.geometry.Segment(l,a))}else{var y=this.tangent(c,l,E,D);Ut(o).controlOut(d),o.push(new $.geometry.Segment(l,this.secondControlPoint(y,c,l,E,D)))}return o},e.prototype.removeDuplicates=function(t,e){for(;e[t+1]&&(e[t].equals(e[t+1])||e[t+1].equals(e[t+2]));)e.splice(t+1,1)},e.prototype.invertAxis=function(t,e,o){var r=!1;if(t.x===e.x)r=!0;else if(e.x===o.x)(e.y<o.y&&t.y<=e.y||o.y<e.y&&e.y<=t.y)&&(r=!0);else{var n=this.lineFunction(t,e),i=this.calculateFunction(n,o.x);t.y<=e.y&&o.y<=i||e.y<=t.y&&o.y>=i||(r=!0)}return r},e.prototype.isLine=function(t,e,o){var r=this.lineFunction(t,e),n=this.calculateFunction(r,o.x);return t.x===e.x&&e.x===o.x||Xt(n,1)===Xt(o.y,1)},e.prototype.lineFunction=function(t,e){var o=(e.y-t.y)/(e.x-t.x);return[t.y-o*t.x,o]},e.prototype.controlPoints=function(t,e,o){var r,n=E,i=D,a=!1,s=!1;if(this.isLine(t,e,o))r=this.tangent(t,e,E,D);else{var c={x:this.isMonotonicByField(t,e,o,E),y:this.isMonotonicByField(t,e,o,D)};c.x&&c.y?(r=this.tangent(t,o,E,D),a=!0):(this.invertAxis(t,e,o)&&(n=D,i=E),c[n]?r=0:(r=.01*(o[i]<t[i]&&t[i]<=e[i]||t[i]<o[i]&&e[i]<=t[i]?Ln((o[i]-t[i])*(e[n]-t[n])):-Ln((o[n]-t[n])*(e[i]-t[i]))),s=!0))}var l=this.secondControlPoint(r,t,e,n,i);if(s){var h=n;n=i,i=h}var u=this.firstControlPoint(r,e,o,n,i);return a&&(this.restrictControlPoint(t,e,l,r),this.restrictControlPoint(e,o,u,r)),[l,u]},e.prototype.restrictControlPoint=function(t,e,o,r){t.y<e.y?e.y<o.y?(o.x=t.x+(e.y-t.y)/r,o.y=e.y):o.y<t.y&&(o.x=e.x-(e.y-t.y)/r,o.y=t.y):o.y<e.y?(o.x=t.x-(t.y-e.y)/r,o.y=e.y):t.y<o.y&&(o.x=e.x+(t.y-e.y)/r,o.y=t.y)},e.prototype.tangent=function(t,e,o,r){var n=e[o]-t[o],i=e[r]-t[r];return 0===n?0:i/n},e.prototype.isMonotonicByField=function(t,e,o,r){return o[r]>e[r]&&e[r]>t[r]||o[r]<e[r]&&e[r]<t[r]},e.prototype.firstControlPoint=function(t,e,o,r,n){var i=e[r],a=.333*(o[r]-i);return this.point(i+a,e[n]+a*t,r,n)},e.prototype.secondControlPoint=function(t,e,o,r,n){var i=e[r],a=o[r],s=.333*(a-i);return this.point(a-s,o[n]-s*t,r,n)},e.prototype.point=function(t,e,o,r){var n=new $.geometry.Point;return n[o]=t,n[r]=e,n},e.prototype.calculateFunction=function(t,e){for(var o=t.length,r=0,n=0;n<o;n++)r+=Math.pow(e,n)*t[n];return r},e}($.Class);var En=function(t){function e(e){t.call(this),this._axis=e,this.options=e.options}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.value=function(t){var e=this._axis;return e.getCategory?e.getCategory(t):e.getValue(t)},e.prototype.slot=function(t,e,o){return void 0===o&&(o=!0),this._axis.slot(t,e,o)},e.prototype.range=function(){return this._axis.range()},e.prototype.valueRange=function(){return this._axis.valueRange()},e}($.Class);const Dn=En;function Nn(t,e){for(var o=0;o<e.length;o++)if(e[o].options.name===t)return e[o].prepareUserOptions(),new Dn(e[o])}var Rn=function(t){this.visual=t.visual,this.chartsVisual=t.chartContainer.visual,this._pane=t};Rn.prototype.findAxisByName=function(t){return Nn(t,this._pane.axes)};const Fn=Rn,Un=function(t){function e(e){t.call(this),this._plotArea=e,this.visual=e.visual,this.backgroundVisual=e._bgVisual}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}($.Class);function Kn(t){for(var e=t.length,o=0,r=0;r<e;r++)Y(t[r])&&o++;return o}var qn={min:function(t){for(var e=t.length,o=S,r=0;r<e;r++){var n=t[r];Y(n)&&(o=Math.min(o,n))}return o===S?t[0]:o},max:function(t){for(var e=t.length,o=z,r=0;r<e;r++){var n=t[r];Y(n)&&(o=Math.max(o,n))}return o===z?t[0]:o},sum:function(t){for(var e=t.length,o=0,r=0;r<e;r++){var n=t[r];Y(n)&&(o+=n)}return o},sumOrNull:function(t){var e=null;return Kn(t)&&(e=qn.sum(t)),e},count:function(t){for(var e=t.length,o=0,r=0;r<e;r++){var n=t[r];null!==n&&Lt(n)&&o++}return o},avg:function(t){var e=Kn(t),o=t[0];return e>0&&(o=qn.sum(t)/e),o},first:function(t){for(var e=t.length,o=0;o<e;o++){var r=t[o];if(null!==r&&Lt(r))return r}return t[0]}};const $n=qn;function Xn(t,e){return null===e?e:bt(t)(e)}var Gn=function(t){function e(){t.call(this),this._valueFields={},this._otherFields={},this._nullValue={},this._undefinedValue={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,o){var r=this;void 0===e&&(e=[B]),void 0===o&&(o={});for(var n=0;n<t.length;n++){var i=t[n];r._valueFields[i]=e,r._otherFields[i]=o,r._nullValue[i]=r._makeValue(e,null),r._undefinedValue[i]=r._makeValue(e,void 0)}},e.prototype.canonicalFields=function(t){return this.valueFields(t).concat(this.otherFields(t))},e.prototype.valueFields=function(t){return this._valueFields[t.type]||[B]},e.prototype.otherFields=function(t){return this._otherFields[t.type]||[B]},e.prototype.bindPoint=function(t,e,o){var r,n,i=t.data,a=Lt(o)?o:i[e],s={valueFields:{value:a}},c=this.valueFields(t),l=this._otherFields[t.type];if(null===a)n=this._nullValue[t.type];else if(Lt(a)){if(Array.isArray(a)){var h=a.slice(c.length);n=this._bindFromArray(a,c),r=this._bindFromArray(h,l)}else if("object"==typeof a){var u=this.sourceFields(t,c),p=this.sourceFields(t,l);n=this._bindFromObject(a,c,u),r=this._bindFromObject(a,l,p)}}else n=this._undefinedValue[t.type];return Lt(n)&&(1===c.length?s.valueFields.value=n[c[0]]:s.valueFields=n),s.fields=r||{},s},e.prototype._makeValue=function(t,e){for(var o={},r=t.length,n=0;n<r;n++)o[t[n]]=e;return o},e.prototype._bindFromArray=function(t,e){var o={};if(e)for(var r=Math.min(e.length,t.length),n=0;n<r;n++)o[e[n]]=t[n];return o},e.prototype._bindFromObject=function(t,e,o){void 0===o&&(o=e);var r={};if(e)for(var n=e.length,i=0;i<n;i++){var a=e[i],s=o[i];null!==s&&(r[a]=Xn(s,t))}return r},e.prototype.sourceFields=function(t,e){var o=[];if(e)for(var r=e.length,n=0;n<r;n++){var i=e[n],a=i===B?"field":i+"Field";o.push(null!==t[a]?t[a]||i:null)}return o},e}($.Class);Gn.current=new Gn;const Yn=Gn;var Wn=/percent(?:\w*)\((\d+)\)/,Zn=new RegExp("^stddev(?:\\((\\d+(?:\\.\\d+)?)\\))?$"),Qn=function(t){function e(e,o,r){t.call(this),this.initGlobalRanges(e,o,r)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initGlobalRanges=function(t,e,o){var r=e.data,n=Zn.exec(t);if(n){this.valueGetter=this.createValueGetter(e,o);var i=this.getAverage(r),a=this.getStandardDeviation(r,i,!1),s=n[1]?parseFloat(n[1]):1,c={low:i.value-a*s,high:i.value+a*s};this.globalRange=function(){return c}}else if(t.indexOf&&t.indexOf("stderr")>=0){this.valueGetter=this.createValueGetter(e,o);var l=this.getStandardError(r,this.getAverage(r));this.globalRange=function(t){return{low:t-l,high:t+l}}}},e.prototype.createValueGetter=function(t,e){var o,r=t.data,n=Yn.current,i=n.valueFields(t),a=Lt(r[0])?r[0]:{};return F(a)?o=bt("["+(e?i.indexOf(e):0)+"]"):Y(a)?o=bt():typeof a===P&&(o=bt(n.sourceFields(t,i)[i.indexOf(e)])),o},e.prototype.getErrorRange=function(t,e){var o,r,n;if(!Lt(e))return null;if(this.globalRange)return this.globalRange(t);if(F(e))o=t-e[0],r=t+e[1];else if(Y(n=parseFloat(e)))o=t-n,r=t+n;else{if(!(n=Wn.exec(e)))throw new Error("Invalid ErrorBar value: "+e);var i=t*(parseFloat(n[1])/100);o=t-Math.abs(i),r=t+Math.abs(i)}return{low:o,high:r}},e.prototype.getStandardError=function(t,e){return this.getStandardDeviation(t,e,!0)/Math.sqrt(e.count)},e.prototype.getStandardDeviation=function(t,e,o){for(var r=t.length,n=o?e.count-1:e.count,i=0,a=0;a<r;a++){var s=this.valueGetter(t[a]);Y(s)&&(i+=Math.pow(s-e.value,2))}return Math.sqrt(i/n)},e.prototype.getAverage=function(t){for(var e=t.length,o=0,r=0,n=0;n<e;n++){var i=this.valueGetter(t[n]);Y(i)&&(o+=i,r++)}return{value:o/r,count:r}},e}($.Class);const Jn=Qn;var ti=$.support.browser||{},ei=600,oi="fadeIn",ri=.8,ni=ti.msie?.001:0,ii="errorLow",ai="errorHigh",si="zero",ci="interpolate",li="above",hi="below",ui="smooth",pi="step",di="area",vi="bar",fi="boxPlot",mi="bubble",gi="bullet",yi="candlestick",bi="column",xi="donut",wi="funnel",_i="pyramid",Ci="heatmap",Oi="horizontalWaterfall",Si="line",zi="ohlc",Mi="pie",Pi="polarArea",Vi="polarLine",Ai="polarScatter",ji="radarArea",ki="radarColumn",Hi="radarLine",Ii="rangeArea",Bi="rangeBar",Li="rangeColumn",Ti="scatter",Ei="scatterLine",Di="verticalArea",Ni="verticalBoxPlot",Ri="verticalBullet",Fi="verticalLine",Ui="verticalRangeArea",Ki="waterfall",qi=[vi,bi,zi,yi,fi,Ni,gi,Li,Bi,Ki,Oi],$i="exponentialTrendline",Xi="linearTrendline",Gi="logarithmicTrendline",Yi="movingAverageTrendline",Wi="polynomialTrendline",Zi="powerTrendline",Qi=[$i,Xi,Gi,Yi,Wi,Zi],Ji="legendItemClick",ta="seriesClick",ea="seriesHover",oa="seriesOver",ra="seriesLeave",na="plotAreaHover",ia="plotAreaLeave",aa="drag",sa="dragEnd",ca="dragStart",la="zoomStart",ha="zoom",ua="zoomEnd",pa="selectStart",da="select",va="selectEnd",fa="showTooltip",ma="hideTooltip",ga="graphics-symbol",ya="k-chart-point",ba="Point",xa="log",wa="category",_a="insideEnd",Ca="outsideEnd",Oa="wheel",Sa="drilldown",za=function(t){function e(e,o,r,n,i,a){t.call(this,a),this.low=e,this.high=o,this.isVertical=r,this.chart=n,this.series=i}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e,o=this.options.endCaps,r=this.isVertical,n=this.getAxis().getSlot(this.low,this.high),i=t.center(),a=this.getCapsWidth(t,r),s=r?i.x:i.y,c=s-a,l=s+a;r?(e=[new fo(i.x,n.y1),new fo(i.x,n.y2)],o&&e.push(new fo(c,n.y1),new fo(l,n.y1),new fo(c,n.y2),new fo(l,n.y2)),this.box=new yo(c,n.y1,l,n.y2)):(e=[new fo(n.x1,i.y),new fo(n.x2,i.y)],o&&e.push(new fo(n.x1,c),new fo(n.x1,l),new fo(n.x2,c),new fo(n.x2,l)),this.box=new yo(n.x1,c,n.x2,l)),this.linePoints=e},e.prototype.getCapsWidth=function(t,e){var o=e?t.width():t.height();return Math.min(Math.floor(o/2),4)||4},e.prototype.createVisual=function(){var t=this,e=this.options,o=e.visual;o?this.visual=o({low:this.low,high:this.high,rect:this.box.toRect(),sender:this.getSender(),options:{endCaps:e.endCaps,color:e.color,line:e.line},createVisual:function(){t.createDefaultVisual();var e=t.visual;return delete t.visual,e}}):this.createDefaultVisual()},e.prototype.createDefaultVisual=function(){var e=this.options,o=this.linePoints,r={stroke:{color:e.color,width:e.line.width,dashType:e.line.dashType}};t.prototype.createVisual.call(this);for(var n=0;n<o.length;n+=2){var i=new $.drawing.Path(r).moveTo(o[n].x,o[n].y).lineTo(o[n+1].x,o[n+1].y);X(i),this.visual.append(i)}},e}(Mo);Qt(za,{animation:{type:oi,delay:ei},endCaps:!0,line:{width:2},zIndex:1});const Ma=za;var Pa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getAxis=function(){return this.chart.seriesValueAxis(this.series)},e}(Ma);const Va=Pa;function Aa(t){for(var e=0;e<t.length;e++)if(Lt(t[e].zIndex))return!0}function ja(t,e){null!==e&&t.push(e)}function ka(t){return Kn(t)===t.length}function Ha(t,e,o){var r=e.visible;if(Lt(r))return r;var n=t.pointVisibility;return n?n[o]:void 0}function Ia(t){for(var e=t.data,o=[],r=0,n=0,i=0;i<e.length;i++){var a=Yn.current.bindPoint(t,i),s=a.valueFields.value;W(s)&&(s=parseFloat(s)),Y(s)?(a.visible=!1!==Ha(t,a.fields,i),a.value=Math.abs(s),o.push(a),a.visible&&(r+=a.value),0!==s&&n++):o.push(null)}return{total:r,points:o,count:n}}function Ba(t){for(var e=t.length,o=0,r=0;r<e;r++)o=Math.max(o,t[r].data.length);return o}function La(t,e){return t&&e?t.toLowerCase()===e.toLowerCase():t===e}var Ta=5;function Ea(t,e,o,r){void 0===o&&(o={}),void 0===r&&(r=!1);var n=o.defaults=o.defaults||{},i=o.depth=o.depth||0,a=!1;if(o.excluded=o.excluded||[],i>Ta)return null;for(var s in t)if(!Ot(s,o.excluded)&&_e(t,s)){var c=t[s];et(c)?(a=!0,r||(t[s]=Yt(c(e),n[s]))):at(c)&&(r||(o.defaults=n[s]),o.depth++,a=Ea(c,e,o,r)||a,o.depth--)}return a}function Da(t,e){for(var o=[],r=[].concat(e),n=0;n<t.length;n++){var i=t[n];Ot(i.type,r)&&o.push(i)}return o}var Na=new WeakMap;function Ra(t,e,o){if(null===e||"object"!=typeof e)return Yr(o,t);var r=Na.get(e);return r||(r=Yr(o,t),Na.set(e,r)),r}function Fa(t){var e=t.overlay;return e&&e.gradient&&"none"!==e.gradient}function Ua(t){return Lt(t)&&null!==t}function Ka(t,e){var o=t.type,r=e instanceof Date;return!o&&r||La(o,m)}function qa(t){return 1===t.length?t[0]:t}var $a=/area/i;function Xa(t,e){var o=Yn.current.bindPoint(t,null,e).valueFields;for(var r in o)if(Z(o[r]))return!0}function Ga(t){var e,o,r=t.start,n=t.dir,i=t.min,a=t.max,s=t.getter,c=t.hasItem,l=t.series,h=r;do{c(h+=n)&&(e=Xa(l,(o=s(h)).item))}while(i<=h&&h<=a&&!e);if(e)return o}function Ya(t,e,o,r,n){var i=e.min,a=e.max,s=i>0&&i<o,c=a+1<o;if(s||c){var l,h,u,p=function(t){return t.missingValues?t.missingValues:$a.test(t.type)||t.stack?si:ci}(t);p!==ci?(s&&(l=r(i-1)),c&&(h=r(a+1))):(s&&(l=Xa(t,(u=r(i-1)).item)?u:Ga({start:i,dir:-1,min:0,max:o-1,getter:r,hasItem:n,series:t})),c&&(h=Xa(t,(u=r(a+1)).item)?u:Ga({start:a,dir:1,min:0,max:o-1,getter:r,hasItem:n,series:t}))),l&&(t._outOfRangeMinPoint=l),h&&(t._outOfRangeMaxPoint=h)}}var Wa=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this.categoryAxis=e.seriesCategoryAxis(o.series[0]),this.valueAxisRanges={},this.points=[],this.categoryPoints=[],this.seriesPoints=[],this.seriesOptions=[],this._evalSeries=[],this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.traverseDataPoints(this.addValue.bind(this))},e.prototype.pointOptions=function(t,e){var o=this.seriesOptions[e];if(!o){var r=this.pointType().prototype.defaults;this.seriesOptions[e]=o=it({},r,{vertical:!this.options.invertAxes},t)}return o},e.prototype.plotValue=function(t){if(!t)return 0;if(this.options.isStacked100&&Y(t.value)){for(var e=t.categoryIx,o=this.categoryPoints[e],r=[],n=0,i=0;i<o.length;i++){var a=o[i];if(a){var s=t.series.stack,c=a.series.stack;if(s&&c&&s.group!==c.group)continue;Y(a.value)&&(n+=Math.abs(a.value),r.push(Math.abs(a.value)))}}if(n>0)return t.value/n}return t.value},e.prototype.plotRange=function(t,e){var o=this;void 0===e&&(e=0);var r=this.categoryPoints[t.categoryIx];if(this.options.isStacked){var n=this.plotValue(t),i=n>=0,a=e,s=!1,c=Lt(t.series.stack)?t.series.stack:this.options.defaultStack,l=function(t){return!0===t||typeof t===P&&!t.group};if(c)for(var h=0;h<r.length;h++){var u=r[h];if(t===u)break;var p=Lt(u.series.stack)?u.series.stack:o.options.defaultStack;if(p&&(typeof c!==H||c===p)&&(!l(c)||l(p))&&(!c.group||c.group===p.group)){var d=o.plotValue(u);(d>=0&&i||d<0&&!i)&&(0!==e&&0===d||(a+=d,n+=d,s=!0,o.options.isStacked100&&(n=Math.min(n,1))))}}return s&&(a-=e),[a,n]}var v=t.series,f=this.seriesValueAxis(v),m=this.categoryAxisCrossingValue(f);return[m,Z(t.value)?t.value:m]},e.prototype.stackLimits=function(t,e){for(var o=S,r=z,n=0;n<this.categoryPoints.length;n++){var i=this.categoryPoints[n];if(i)for(var a=0;a<i.length;a++){var s=i[a];if(s&&(s.series.stack===e||s.series.axis===t)){var c=this.plotRange(s,0)[1];Lt(c)&&isFinite(c)&&(r=Math.max(r,c),o=Math.min(o,c))}}}return{min:o,max:r}},e.prototype.updateStackRange=function(){var t=this,e=this.options,o=e.isStacked,r=e.series,n={};if(o)for(var i=0;i<r.length;i++){var a=r[i],s=a.axis,c=s+a.stack,l=n[c];if(!l){l=t.stackLimits(s,a.stack);var h=t.errorTotals;h&&(h.negative.length&&(l.min=Math.min(l.min,ae(h.negative).min)),h.positive.length&&(l.max=Math.max(l.max,ae(h.positive).max))),l.min!==S||l.max!==z?n[c]=l:l=null}l&&(t.valueAxisRanges[s]=l)}},e.prototype.addErrorBar=function(t,e,o){var r,n=t.value,i=t.series,a=t.seriesIx,s=t.options.errorBars,c=e.fields[ii],l=e.fields[ai];Y(c)&&Y(l)?r={low:c,high:l}:s&&Lt(s.value)&&(this.seriesErrorRanges=this.seriesErrorRanges||[],this.seriesErrorRanges[a]=this.seriesErrorRanges[a]||new Jn(s.value,i,B),r=this.seriesErrorRanges[a].getErrorRange(n,s.value)),r&&(t.low=r.low,t.high=r.high,this.addPointErrorBar(t,o))},e.prototype.addPointErrorBar=function(t,e){var o=!this.options.invertAxes,r=t.options.errorBars,n=t.series,i=t.low,a=t.high;if(this.options.isStacked){var s=this.stackedErrorRange(t,e);i=s.low,a=s.high}else{var c={categoryIx:e,series:n};this.updateRange({value:i},c),this.updateRange({value:a},c)}var l=new Va(i,a,o,this,n,r);t.errorBars=[l],t.append(l)},e.prototype.stackedErrorRange=function(t,e){var o=this.plotRange(t,0)[1]-t.value,r=t.low+o,n=t.high+o;return this.errorTotals=this.errorTotals||{positive:[],negative:[]},r<0&&(this.errorTotals.negative[e]=Math.min(this.errorTotals.negative[e]||0,r)),n>0&&(this.errorTotals.positive[e]=Math.max(this.errorTotals.positive[e]||0,n)),{low:r,high:n}},e.prototype.addValue=function(t,e){var o=e.categoryIx,r=e.series,n=e.seriesIx,i=this.categoryPoints[o];i||(this.categoryPoints[o]=i=[]);var a=this.seriesPoints[n];a||(this.seriesPoints[n]=a=[]);var s=this.createPoint(t,e);s&&(Object.assign(s,e),s.owner=this,s.noteText=t.fields.noteText,Lt(s.dataItem)||(s.dataItem=r.data[o]),this.addErrorBar(s,t,o)),this.points.push(s),a.push(s),i.push(s),this.updateRange(t.valueFields,e)},e.prototype.evalPointOptions=function(t,e,o){var r=o.categoryIx,n=o.category,i=o.series,a=o.seriesIx,s={defaults:i._defaults,excluded:["data","aggregate","_events","tooltip","content","template","visual","toggle","_outOfRangeMinPoint","_outOfRangeMaxPoint","drilldownSeriesFactory","ariaTemplate","ariaContent"]},c=this._evalSeries[a];Lt(c)||(this._evalSeries[a]=c=Ea(t,{},s,!0));var l=t;return c&&Ea(l=it({},l),{value:e,category:n,index:r,series:i,dataItem:i.data[r]},s),l},e.prototype.updateRange=function(t,e){var o=e.series.axis,r=t.value,n=this.valueAxisRanges[o];isFinite(r)&&null!==r&&((n=this.valueAxisRanges[o]=n||{min:S,max:z}).min=Math.min(n.min,r),n.max=Math.max(n.max,r))},e.prototype.seriesValueAxis=function(t){var e=this.plotArea,o=t.axis,r=o?e.namedValueAxes[o]:e.valueAxis;if(!r)throw new Error("Unable to locate value axis with name "+o);return r},e.prototype.reflow=function(t){var e=this,o=this.categorySlots=[],r=this.points,n=this.categoryAxis,i=0;this.traverseDataPoints((function(t,a){var s=a.categoryIx,c=a.series,l=e.seriesValueAxis(c),h=r[i++],u=o[s];if(u||(o[s]=u=e.categorySlot(n,s,l)),h){var p=e.plotRange(h,l.startValue()),d=e.valueSlot(l,p);if(d){var v=e.pointSlot(u,d);h.aboveAxis=e.aboveAxis(h,l),h.stackValue=p[1],e.options.isStacked100&&(h.percentage=e.plotValue(h)),e.reflowPoint(h,v)}else h.visible=!1}})),this.reflowCategories(o),!this.options.clip&&this.options.limitPoints&&this.points.length&&this.limitPoints(),this.box=t},e.prototype.valueSlot=function(t,e){return t.getSlot(e[0],e[1],!this.options.clip)},e.prototype.limitPoints=function(){for(var t=this.categoryPoints,e=t[0].concat(Ut(t)),o=0;o<e.length;o++)e[o]&&this.limitPoint(e[o])},e.prototype.limitPoint=function(t){var e=this.categoryAxis.limitSlot(t.box);e.equals(t.box)||t.reflow(e)},e.prototype.aboveAxis=function(t,e){var o=this.categoryAxisCrossingValue(e),r=t.value;return e.options.reverse?r<o:r>=o},e.prototype.categoryAxisCrossingValue=function(t){var e=this.categoryAxis,o=t.options;return[].concat(o.axisCrossingValues||o.axisCrossingValue)[e.axisIndex||0]||0},e.prototype.reflowPoint=function(t,e){t.reflow(e)},e.prototype.reflowCategories=function(){},e.prototype.pointSlot=function(t,e){var o=this.options.invertAxes,r=o?e:t,n=o?t:e;return new yo(r.x1,n.y1,r.x2,n.y2)},e.prototype.categorySlot=function(t,e){return t.getSlot(e)},e.prototype.traverseDataPoints=function(t){for(var e=this,o=this.options.series,r=Ba(o),n=o.length,i=0;i<n;i++)e._outOfRangeCallback(o[i],"_outOfRangeMinPoint",i,t);for(var a=0;a<r;a++)for(var s=0;s<n;s++){var c=o[s],l=e.categoryAxis.categoryAt(a);t(e.plotArea.bindPoint(c,a),{category:l,categoryIx:a,categoriesCount:r,series:c,seriesIx:s})}for(var h=0;h<n;h++)e._outOfRangeCallback(o[h],"_outOfRangeMaxPoint",h,t)},e.prototype._outOfRangeCallback=function(t,e,o,r){var n=t[e];if(n){var i=n.categoryIx;r(this.plotArea.bindPoint(t,i,n.item),{category:n.category,categoryIx:i,series:t,seriesIx:o,dataItem:n.item})}},e.prototype.formatPointValue=function(t,e){return null===t.value?"":this.chartService.format.auto(e,t.value)},e.prototype.pointValue=function(t){return t.valueFields.value},e}(Mo);Qt(Wa,{series:[],invertAxes:!1,isStacked:!1,clip:!0,limitPoints:!0});const Za=Wa;var Qa={click:function(t,e){return t.trigger(ta,this.eventArgs(e))},hover:function(t,e){return t.trigger(ea,this.eventArgs(e))},over:function(t,e){return t.trigger(oa,this.eventArgs(e))},out:function(t,e){return t.trigger(ra,this.eventArgs(e))},eventArgs:function(t){return{value:this.value,percentage:this.percentage,stackValue:this.stackValue,category:this.category,series:this.series,dataItem:this.dataItem,runningTotal:this.runningTotal,total:this.total,element:Rt(t),originalEvent:t,point:this}}};const Ja=Qa,ts={createNote:function(){var t=this.options.notes,e=this.noteText||t.label.text;!1!==t.visible&&Lt(e)&&null!==e&&(this.note=new Jo({value:this.value,text:e,dataItem:this.dataItem,category:this.category,series:this.series},this.options.notes,this.owner.chartService),this.append(this.note))}};var es=function(t){function e(e,o){t.call(this),this.value=e,this.options=o,this.aboveAxis=Yt(this.options.aboveAxis,!0),this.tooltipTracking=!0,this._id=Pe()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t=this.options.markers;this._rendered||(this._rendered=!0,t.visible&&t.size&&(this.marker=this.createMarker(),this.append(this.marker)),this.createLabel(),this.createNote(),this.errorBar&&this.append(this.errorBar))},e.prototype.createLabel=function(){var t=this.options.labels;t.visible&&(this.label=this.createLabelElement(t),this.append(this.label))},e.prototype.createLabelElement=function(t){return new $o(this.getLabelText(t),it({align:p,vAlign:p,margin:{left:5,right:5},zIndex:Yt(t.zIndex,this.series.zIndex)},t),this.pointData())},e.prototype.getLabelText=function(t){var e=ft(t);return e?e(this.pointData()):t.format?this.formatValue(t.format):this.value},e.prototype.getAriaLabelText=function(){var t=this.options.labels,e=mt(t);return e?e(this.pointData()):this.getLabelText(t)},e.prototype.markerBorder=function(){var t=this.options.markers,e=t.background,o=it({color:this.color},t.border);return Lt(o.color)||(o.color=new $.Color(e).brightness(ri).toHex()),o},e.prototype.createVisual=function(){},e.prototype.createMarker=function(){var t=this.options.markers;return new ko({type:t.type,width:t.size,height:t.size,rotation:t.rotation,background:t.background,border:this.markerBorder(),opacity:t.opacity,zIndex:Yt(t.zIndex,this.series.zIndex),animation:t.animation,visual:t.visual,accessibilityOptions:it({ariaLabel:this.getAriaLabelText(this.options.labels)},this.options.accessibility)},{dataItem:this.dataItem,value:this.value,series:this.series,category:this.category})},e.prototype.markerBox=function(){return this.marker||(this.marker=this.createMarker(),this.marker.reflow(this._childBox)),this.marker.box},e.prototype.reflow=function(t){var e=this.options,o=this.aboveAxis,r=e.vertical;this.render(),this.box=t;var n=t.clone();if(r?o?n.y1-=n.height():n.y2+=n.height():o?n.x1+=n.width():n.x2-=n.width(),this._childBox=n,this.marker&&this.marker.reflow(n),this.reflowLabel(n),this.errorBars)for(var i=0;i<this.errorBars.length;i++)this.errorBars[i].reflow(n);if(this.note){var a=this.markerBox();if(!e.markers.visible||!e.markers.size){var s=a.center();a=new yo(s.x,s.y,s.x,s.y)}this.note.reflow(a)}},e.prototype.reflowLabel=function(t){var e=this.options,o=this.label,r=e.labels.position;o&&(r=(r=r===li?I:r)===hi?u:r,o.reflow(t),o.box.alignTo(this.markerBox(),r),o.reflow(o.box))},e.prototype.createHighlight=function(){var t=this.options.highlight.markers,e=this.markerBorder().color,o=this.options.markers,r=o.size+(o.border.width||0)+(t.border.width||0),n=new ko({type:o.type,width:r,height:r,rotation:o.rotation,background:t.color||e,border:{color:t.border.color,width:t.border.width,opacity:Yt(t.border.opacity,1)},opacity:Yt(t.opacity,1)});return n.reflow(this._childBox),n.getElement()},e.prototype.highlightVisual=function(){return(this.marker||{}).visual},e.prototype.highlightVisualArgs=function(){var t,e,o=this.marker;if(o)e=o.paddingBox.toRect(),t=o.visual;else{var r=this.options.markers.size,n=r/2,i=this.box.center();e=new $.geometry.Rect([i.x-n,i.y-n],[r,r])}return{options:this.options,rect:e,visual:t}},e.prototype.createFocusHighlight=function(){var t=this.options.markers,e=this.options.accessibility.highlight,o=t.size+(t.border.width||0),r=new ko({type:t.type,width:o,height:o,rotation:t.rotation,background:e.color,border:e.border,opacity:e.opacity,padding:e.border.width/2,zIndex:e.zIndex});return r.reflow(this._childBox),r.getElement()},e.prototype.tooltipAnchor=function(){var t=this.markerBox(),e=this.owner.pane.clipBox();if(!e||e.overlaps(t)){var o,r,n=t.x2+5,i=O;return this.aboveAxis?(o=t.y1,r=u):(o=t.y2,r=I),{point:new fo(n,o),align:{horizontal:i,vertical:r}}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.overlapsBox=function(t){return this.markerBox().overlaps(t)},e.prototype.unclipElements=function(){this.label&&(this.label.options.noclip=!0),this.note&&(this.note.options.noclip=!0)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,percentage:this.percentage,stackValue:this.stackValue,series:this.series}},e.prototype.focusVisual=function(){this.marker&&(this.marker.visual&&this.marker.visual.options.set("id",this._id),this.toggleFocusHighlight(!0))},e.prototype.clearFocusFromVisual=function(){this.marker&&(this.marker.visual&&this.marker.visual.options.set("id",""),this.toggleFocusHighlight(!1))},e.prototype.getIndex=function(){return Lt(this.categoryIx)?this.categoryIx:this.pointIx},e}(Mo);es.prototype.defaults={vertical:!0,markers:{visible:!0,background:L,size:8,type:d,border:{width:2},opacity:1},labels:{visible:!1,position:li,margin:ut(3),padding:ut(4),animation:{type:oi,delay:ei}},notes:{label:{}},highlight:{markers:{border:{color:"#fff",width:2}},zIndex:100},errorBars:{line:{width:1}},accessibility:{tabIndex:0,role:ga,className:ya,ariaRoleDescription:ba}},it(es.prototype,Ja),it(es.prototype,ts);const os=es;var rs=function(t){function e(e,o,r){t.call(this),this.linePoints=e,this.series=o,this.seriesIx=r}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.points=function(){return this.toGeometryPoints(this.linePoints)},e.prototype.toGeometryPoints=function(t){for(var e=[],o=0,r=t.length;o<r;o++)t[o]&&!1!==t[o].visible&&e.push(t[o]._childBox.toRect().center());return e},e.prototype.createVisual=function(){var t=this,e=this.series.visual;e?(this.visual=e({points:this.toGeometryPoints(this.linePoints),series:this.series,sender:this.getSender(),createVisual:function(){return t.segmentVisual(),t.visual}}),this.visual&&!Lt(this.visual.options.zIndex)&&(this.visual.options.zIndex=this.series.zIndex)):this.segmentVisual()},e.prototype.segmentVisual=function(){var t=this.options,e=this.series,o=e.color,r=e._defaults;et(o)&&r&&(o=r.color);var n=$.drawing.Path.fromPoints(this.points(),{stroke:{color:o,width:e.width,opacity:e.opacity,dashType:e.dashType},zIndex:e.zIndex});t.closed&&n.close(),this.visual=n},e.prototype.aliasFor=function(t,e){return this.parent.getNearestPoint(e.x,e.y,this.seriesIx)},e}(Mo);Qt(rs,{closed:!1});const ns=rs;var is={calculateStepPoints:function(t){for(var e=this.parent.plotArea.seriesCategoryAxis(this.series).options,o=e.justified,r=e.vertical,n=e.reverse,i=r?E:D,a=r?D:E,s=n?2:1,c=s,l=as(t[0],i,s,a,c),h=[l],u=1;u<t.length;u++){var p=as(t[u],i,s,a,c);if(l[i]!==p[i]){var d=new $.geometry.Point;d[i]=l[i],d[a]=p[a],h.push(d,p)}l=p}return o?l!==Ut(h)&&h.push(l):h.push(as(Ut(t),i,s,a,n?1:2)),h}};function as(t,e,o,r,n){var i=t.box,a=new $.geometry.Point;return a[e]=i[e+o],a[r]=i[r+n],a}const ss=is;var cs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.points=function(){return this.calculateStepPoints(this.linePoints)},e}(ns);it(cs.prototype,ss);const ls=cs;var hs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.segmentVisual=function(){var t=this.series,e=t._defaults,o=t.color;et(o)&&e&&(o=e.color);var r=new Tn(this.options.closed).process(this.points()),n=new $.drawing.Path({stroke:{color:o,width:t.width,opacity:t.opacity,dashType:t.dashType},zIndex:t.zIndex});n.segments.push.apply(n.segments,r),this.visual=n},e}(ns);const us=hs;var ps={renderSegments:function(){var t,e=this,o=this.options,r=this.seriesPoints,n=o.series,i=r.length;this._segments=[];for(var a=0;a<i;a++){for(var s=n[a],c=e.sortPoints(r[a]),l=c.length,h=[],u=0;u<l;u++){var p=c[u];p?h.push(p):e.seriesMissingValues(s)!==ci&&(h.length>1&&(t=e.createSegment(h,s,a,t),e._addSegment(t)),h=[])}h.length>1&&(t=e.createSegment(h,s,a,t),e._addSegment(t))}this.children.unshift.apply(this.children,this._segments)},_addSegment:function(t){this._segments.push(t),t.parent=this},sortPoints:function(t){return t},seriesMissingValues:function(t){var e=t.missingValues;return!e&&this.options.isStacked?si:e||ci},getNearestPoint:function(t,e,o){for(var r,n=new fo(t,e),i=this.seriesPoints[o],a=S,s=0;s<i.length;s++){var c=i[s];if(c&&Lt(c.value)&&null!==c.value&&!1!==c.visible){var l=c.box.center().distanceTo(n);l<a&&(r=c,a=l)}}return r}};const ds=ps;var vs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this._setEnd(this.options.box.x1)},e.prototype.step=function(t){var e=this.options.box;this._setEnd(St(e.x1,e.x2,t))},e.prototype._setEnd=function(t){var e=this.element,o=e.segments,r=o[1].anchor(),n=o[2].anchor();e.suspend(),r.setX(t),e.resume(),n.setX(t)},e}($.drawing.Animation);Qt(vs,{duration:ei}),$.drawing.AnimationFactory.current.register("clip",vs);const fs=vs,ms={createAnimation:function(){var t=this.getRoot();if(t&&!1!==(t.options||{}).transitions){var e=t.size(),o=$.drawing.Path.fromRect(e.toRect());this.visual.clip(o),this.animation=new fs(o,{box:e}),Aa(this.options.series)&&this._setChildrenAnimation(o)}},_setChildrenAnimation:function(t){for(var e=this.animationPoints(),o=0;o<e.length;o++){var r=e[o];r&&r.visual&&Lt(r.visual.options.zIndex)&&r.visual.clip(t)}}};var gs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.updateStackRange(),this.renderSegments()},e.prototype.pointType=function(){return os},e.prototype.createPoint=function(t,e){var o=e.series,r=e.seriesIx,n=this.seriesMissingValues(o),i=t.valueFields.value;if(!Lt(i)||null===i){if(n!==si)return null;i=0}var a=this.pointOptions(o,r);a=this.evalPointOptions(a,i,e);var s=t.fields.color||o.color;et(o.color)&&(s=a.color);var c=new os(i,a);return c.color=s,this.append(c),c},e.prototype.plotRange=function(t){var e=this.plotValue(t);if(this.options.isStacked)for(var o=t.categoryIx,r=this.categoryPoints[o],n=0;n<r.length;n++){var i=r[n];if(t===i)break;e+=this.plotValue(i),this.options.isStacked100&&(e=Math.min(e,1))}return[e,e]},e.prototype.createSegment=function(t,e,o){var r=e.style;return new(r===pi?ls:r===ui?us:ns)(t,e,o)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++)e.push((t[o]||{}).marker);return e.concat(this._segments)},e.prototype.supportsPointInactiveOpacity=function(){return!1},e}(Za);it(gs.prototype,ds,ms);const ys=gs;var bs=function(t){function e(e,o,r,n,i){t.call(this,e,o,r),this.prevSegment=n,this.stackPoints=i}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createVisual=function(){var t=this.series,e=t._defaults,o=t.line||{},r=t.color;et(r)&&e&&(r=e.color),this.visual=new $.drawing.Group({zIndex:t.zIndex}),this.createFill({fill:{color:r,opacity:t.opacity},stroke:null}),o.width>0&&!1!==o.visible&&this.createStroke({stroke:it({color:r,opacity:t.opacity,lineCap:"butt"},o)})},e.prototype.strokeSegments=function(){var t=this._strokeSegments;return t||(t=this._strokeSegments=this.createStrokeSegments()),t},e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.points())},e.prototype.stackSegments=function(){return this.prevSegment?this.prevSegment.createStackSegments(this.stackPoints):this.createStackSegments(this.stackPoints)},e.prototype.createStackSegments=function(t){return this.segmentsFromPoints(this.toGeometryPoints(t)).reverse()},e.prototype.segmentsFromPoints=function(t){return t.map((function(t){return new $.geometry.Segment(t)}))},e.prototype.createStroke=function(t){var e=new $.drawing.Path(t);e.segments.push.apply(e.segments,this.strokeSegments()),this.visual.append(e)},e.prototype.hasStackSegment=function(){return this.prevSegment||this.stackPoints&&this.stackPoints.length},e.prototype.createFill=function(t){var e=this.strokeSegments(),o=e.slice(0),r=this.hasStackSegment();if(r){var n=this.stackSegments();It(o,n)}var i=new $.drawing.Path(t);i.segments.push.apply(i.segments,o),!r&&e.length>1&&this.fillToAxes(i),this.visual.append(i)},e.prototype.fillToAxes=function(t){var e=this.parent,o=e.options.invertAxes,r=e.seriesValueAxis(this.series),n=e.categoryAxisCrossingValue(r),i=r.getSlot(n,n,!0),a=this.strokeSegments(),s=a[0].anchor(),c=Ut(a).anchor(),l=o?i.x1:i.y1;o?t.lineTo(l,c.y).lineTo(l,s.y):t.lineTo(c.x,l).lineTo(s.x,l)},e}(ns);const xs=bs;var ws=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.calculateStepPoints(this.linePoints))},e.prototype.createStackSegments=function(t){return this.segmentsFromPoints(this.calculateStepPoints(t)).reverse()},e}(xs);it(ws.prototype,ss);const _s=ws;var Cs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){var t=new Tn(this.options.closed),e=this.points();return t.process(e)},e.prototype.createStackSegments=function(){for(var t=this.strokeSegments(),e=[],o=t.length-1;o>=0;o--){var r=t[o];e.push(new $.geometry.Segment(r.anchor(),r.controlOut(),r.controlIn()))}return e},e}(xs);const Os=Cs;var Ss=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createSegment=function(t,e,o,r){var n,i,a=this.options.isStacked,s=(e.line||{}).style;return a&&o>0&&r&&("gap"!==this.seriesMissingValues(e)?(i=r.linePoints,n=r):i=this._gapStackPoints(t,o,s)),new(s===pi?_s:s===ui?Os:xs)(t,e,o,n,i)},e.prototype.reflow=function(e){t.prototype.reflow.call(this,e);var o=this._stackPoints;if(o)for(var r=0;r<o.length;r++){var n=o[r],i=this.categoryAxis.getSlot(n.categoryIx);n.reflow(i)}},e.prototype._gapStackPoints=function(t,e,o){var r=this,n=this.seriesPoints,i=t[0].categoryIx,a=t.length;i<0&&(i=0,a--);var s=i+a,c=this.seriesOptions[0]._outOfRangeMinPoint?1:0,l=[];this._stackPoints=this._stackPoints||[];for(var h=i;h<s;h++){var u=h+c,p=e,d=void 0;do{d=n[--p][u]}while(p>0&&!d);if(d)o!==pi&&h>i&&!n[p][u-1]&&l.push(r._previousSegmentPoint(h,u,u-1,p)),l.push(d),o!==pi&&h+1<s&&!n[p][u+1]&&l.push(r._previousSegmentPoint(h,u,u+1,p));else{var v=r._createGapStackPoint(h);r._stackPoints.push(v),l.push(v)}}return l},e.prototype._previousSegmentPoint=function(t,e,o,r){for(var n,i=this.seriesPoints,a=r;a>0&&!n;)n=i[--a][o];return n?n=i[a][e]:(n=this._createGapStackPoint(t),this._stackPoints.push(n)),n},e.prototype._createGapStackPoint=function(t){var e=this.pointOptions({},0),o=new os(0,e);return o.categoryIx=t,o.series={},o},e.prototype.seriesMissingValues=function(t){return t.missingValues||si},e.prototype.supportsPointInactiveOpacity=function(){return!1},e}(ys);const zs=Ss;var Ms=function(t){function e(){t.call(this),this.axisRanges={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.update=function(t){var e=this.axisRanges;for(var o in t){var r=t[o],n=e[o];e[o]=n=n||{min:S,max:z},n.min=Math.min(n.min,r.min),n.max=Math.max(n.max,r.max)}},e.prototype.reset=function(t){this.axisRanges[t]=void 0},e.prototype.query=function(t){return this.axisRanges[t]},e}($.Class);const Ps=Ms;var Vs=function(t){function e(e,o,r){t.call(this,o),this.textBox=new $o(e,this.options,r),this.append(this.textBox)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createVisual=function(){this.textBox.options.noclip=this.options.noclip},e.prototype.reflow=function(t){var e=this.options,o=e.vertical,r=e.aboveAxis,n=this.children[0],i=n.options,a=n.box,s=n.options.padding,c=t;i.align=o?p:O,i.vAlign=o?I:p,e.position===_a?o?(i.vAlign=I,!r&&a.height()<t.height()&&(i.vAlign=u)):i.align=r?A:O:e.position===p?(i.vAlign=p,i.align=p):"insideBase"===e.position?o?i.vAlign=r?u:I:i.align=r?O:A:e.position===Ca&&(o?c=r?new yo(t.x1,t.y1-a.height(),t.x2,t.y1):new yo(t.x1,t.y2,t.x2,t.y2+a.height()):(i.align=p,c=r?new yo(t.x2,t.y1,t.x2+a.width(),t.y2):new yo(t.x1-a.width(),t.y1,t.x1,t.y2))),e.rotation||(o?s.left=s.right=(c.width()-n.contentBox.width())/2:s.top=s.bottom=(c.height()-n.contentBox.height())/2),n.reflow(c)},e.prototype.alignToClipBox=function(t){var e=this.options.vertical?D:E,o=e+"1",r=e+"2",n=this.children[0],i=this.parent.box;if(i[o]<t[o]||t[r]<i[r]){var a=n.paddingBox.clone();a[o]=Math.max(i[o],t[o]),a[r]=Math.min(i[r],t[r]),this.reflow(a)}},e}(Mo);Qt(Vs,{position:Ca,margin:ut(3),padding:ut(4),color:h,background:"",border:{width:1,color:""},aboveAxis:!0,vertical:!1,animation:{type:oi,delay:ei},zIndex:2});const As=Vs,js={addAccessibilityAttributesToVisual:function(){this._id=this._id||Pe();var t=it({ariaLabel:this.getAriaLabelText()},this.options.accessibility);Ao(this.visual,t)},getAriaLabelText:function(){var t=this.options.labels,e=mt(t);return e?e(this.pointData()):this.getLabelText(t)},focusVisual:function(){this.visual.options.set("id",this._id),this.toggleFocusHighlight(!0)},clearFocusFromVisual:function(){this.visual.options.set("id",""),this.toggleFocusHighlight(!1)}};var ks=function(t){function e(e,o){t.call(this),this.options=o,this.color=o.color||L,this.aboveAxis=Yt(this.options.aboveAxis,!0),this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this._rendered||(this._rendered=!0,this.createLabel(),this.createNote(),this.errorBar&&this.append(this.errorBar))},e.prototype.createLabel=function(){var t=this.options.labels;t.visible&&(this.label=this.createLabelElement(t),this.append(this.label))},e.prototype.createLabelElement=function(t){return new As(this.getLabelText(t),it({vertical:this.options.vertical},t),this.pointData())},e.prototype.getLabelText=function(t){var e=ft(t);return e?e(this.pointData()):this.formatValue(t.format)},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.reflow=function(t){this.render();var e=this.label;if(this.box=t,e&&(e.options.aboveAxis=this.aboveAxis,e.reflow(t)),this.note&&this.note.reflow(t),this.errorBars)for(var o=0;o<this.errorBars.length;o++)this.errorBars[o].reflow(t)},e.prototype.createVisual=function(){var e=this,o=this.box,r=this.options,n=r.visual;if(!1!==this.visible)if(t.prototype.createVisual.call(this),this.addAccessibilityAttributesToVisual(),n){var i=this.rectVisual=n({category:this.category,dataItem:this.dataItem,value:this.value,sender:this.getSender(),series:this.series,percentage:this.percentage,stackValue:this.stackValue,runningTotal:this.runningTotal,total:this.total,rect:o.toRect(),createVisual:function(){var t=new $.drawing.Group;return e.createRect(t),t},options:r});i&&this.visual.append(i)}else o.width()>0&&o.height()>0&&this.createRect(this.visual)},e.prototype.createRect=function(t){var e=this.options,o=e.border,r=Lt(o.opacity)?o.opacity:e.opacity,n=this.box.toRect();n.size.width=Math.round(n.size.width);var i=this.rectVisual=$.drawing.Path.fromRect(n,{fill:{color:this.color,opacity:e.opacity},stroke:{color:this.getBorderColor(),width:o.width,opacity:r,dashType:o.dashType}}),a=this.box.width(),s=this.box.height();if((e.vertical?a:s)>6&&(X(i),(a<1||s<1)&&(i.options.stroke.lineJoin="round")),t.append(i),Fa(e)){var c=this.createGradientOverlay(i,{baseColor:this.color},it({end:e.vertical?void 0:[0,1]},e.overlay));t.append(c)}},e.prototype.createHighlight=function(t){return X($.drawing.Path.fromRect(this.box.toRect(),t))},e.prototype.highlightVisual=function(){return this.rectVisual},e.prototype.highlightVisualArgs=function(){return{options:this.options,rect:this.box.toRect(),visual:this.rectVisual}},e.prototype.createFocusHighlight=function(t){var e=this.options.accessibility.highlight.border.width;return X($.drawing.Path.fromRect(this.box.pad(e/2).toRect(),t))},e.prototype.getBorderColor=function(){var t=this.color,e=this.options.border,o=e._brightness||ri,r=e.color;return Lt(r)||(r=new $.Color(t).brightness(o).toHex()),r},e.prototype.tooltipAnchor=function(){var t,e,o=this,r=o.options,n=o.box,i=o.aboveAxis,a=this.owner.pane.clipBox()||n,s=O,c=I;if(r.vertical)t=Math.min(n.x2,a.x2)+5,i?e=Math.max(n.y1,a.y1):(e=Math.min(n.y2,a.y2),c=u);else{var l=Math.max(n.x1,a.x1),h=Math.min(n.x2,a.x2);r.isStacked?(c=u,i?(s=A,t=h):t=l,e=Math.max(n.y1,a.y1)-5):(i?t=h+5:(t=l-5,s=A),e=Math.max(n.y1,a.y1))}return{point:new fo(t,e),align:{horizontal:s,vertical:c}}},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,percentage:this.percentage,stackValue:this.stackValue,runningTotal:this.runningTotal,total:this.total,series:this.series}},e.prototype.getIndex=function(){return this.categoryIx},e}(Mo);it(ks.prototype,Ja),it(ks.prototype,ts),it(ks.prototype,js),ks.prototype.defaults={border:{width:1},vertical:!0,overlay:{gradient:"glass"},labels:{visible:!1,format:"{0}"},opacity:1,notes:{label:{}},accessibility:{role:ga,className:ya,ariaRoleDescription:ba}};const Hs=ks;function Is(t,e){t.forEach(e)}function Bs(t,e){for(var o=t.length,r=o-1;r>=0;r--)e(t[r],r-o-1)}var Ls=function(t){function e(e){t.call(this,e),this.forEach=e.rtl?Bs:Is}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options,o=e.vertical,r=e.gap,n=e.spacing,i=this.children,a=i.length,s=o?D:E,c=a+r+n*(a-1),l=(o?t.height():t.width())/c,h=t[s+1]+l*(r/2);this.forEach(i,(function(e,o){var r=(e.box||t).clone();r[s+1]=h,r[s+2]=h+l,e.reflow(r),o<a-1&&(h+=l*n),h+=l}))},e}(Mo);Qt(Ls,{vertical:!1,gap:0,spacing:0});const Ts=Ls;var Es=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){for(var e=this.options.vertical?E:D,o=this.children,r=o.length,n=this.box=new yo,i=0;i<r;i++){var a=o[i];if(!1!==a.visible){var s=a.box.clone();s.snapTo(t,e),0===i&&(n=this.box=s.clone()),a.reflow(s),n.wrap(s)}}},e}(Mo);Qt(Es,{vertical:!0});const Ds=Es;var Ns=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.updateStackRange()},e.prototype.pointType=function(){return Hs},e.prototype.clusterType=function(){return Ts},e.prototype.stackType=function(){return Ds},e.prototype.stackLimits=function(e,o){return t.prototype.stackLimits.call(this,e,o)},e.prototype.createPoint=function(t,e){var o=e.categoryIx,r=e.series,n=e.seriesIx,i=this.options,a=this.children,s=Lt(r.stack)?r.stack:i.defaultStack,c=this.pointValue(t),l=this.pointOptions(r,n),h=l.labels;s&&h.position===Ca&&(h.position=_a),l.isStacked=s;var u=t.fields.color||r.color;c<0&&l.negativeColor&&(u=l.negativeColor),l=this.evalPointOptions(l,c,e),et(r.color)&&(u=l.color);var p=new(this.pointType())(c,l);p.color=u;var d=a[o];return d||(d=new(this.clusterType())({vertical:i.invertAxes,gap:i.gap,spacing:i.spacing,rtl:!i.invertAxes&&(this.chartService||{}).rtl}),this.append(d)),i.isStacked?this.getStackWrap(s,d).append(p):d.append(p),p},e.prototype.getStackWrap=function(t,e){var o,r=typeof t===P?t.group||!0:t,n=e.children;if(typeof r===H||!0===r)for(var i=0;i<n.length;i++)if(n[i]._stackGroup===r){o=n[i];break}return o||((o=new(this.stackType())({vertical:!this.options.invertAxes}))._stackGroup=r,e.append(o)),o},e.prototype.categorySlot=function(t,e,o){var r=this.options,n=t.getSlot(e),i=o.startValue();if(r.isStacked){var a=o.getSlot(i,i,!0),s=r.invertAxes?E:D;n[s+1]=n[s+2]=a[s+1]}return n},e.prototype.reflowCategories=function(t){for(var e=this.children,o=e.length,r=0;r<o;r++)e[r].reflow(t[r])},e.prototype.createAnimation=function(){this._setAnimationOptions(),t.prototype.createAnimation.call(this),Aa(this.options.series)&&this._setChildrenAnimation()},e.prototype._setChildrenAnimation=function(){for(var t=this.points,e=0;e<t.length;e++){var o=t[e],r=o.visual;r&&Lt(r.options.zIndex)&&(o.options.animation=this.options.animation,o.createAnimation())}},e.prototype._setAnimationOptions=function(){var t,e=this.options,o=e.animation||{};if(e.isStacked){var r=this.seriesValueAxis(e.series[0]);t=r.getSlot(r.startValue())}else t=this.categoryAxis.getSlot(0);o.origin=new $.geometry.Point(t.x1,t.y1),o.vertical=!e.invertAxes},e}(Za);Qt(Ns,{animation:{type:vi}});const Rs=Ns;var Fs=function(t){function e(e,o){t.call(this,o),this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getLabelText=function(t){return this.formatValue(t.format)},e.prototype.reflow=function(t){var e=this,o=e.options,r=e.value,n=e.owner.seriesValueAxis(o),i=n.getSlot(r.open,r.close),a=n.getSlot(r.low,r.high);i.x1=a.x1=t.x1,i.x2=a.x2=t.x2,this.realBody=i;var s=a.center().x,c=[];c.push([[s,a.y1],[s,i.y1]]),c.push([[s,i.y2],[s,a.y2]]),this.lines=c,this.box=a.clone().wrap(i),this._rendered||(this._rendered=!0,this.createNote()),this.reflowNote()},e.prototype.reflowNote=function(){this.note&&this.note.reflow(this.box)},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.addAccessibilityAttributesToVisual(),this._mainVisual=this.mainVisual(this.options),this.visual.append(this._mainVisual),this.createOverlay()},e.prototype.mainVisual=function(t){var e=new $.drawing.Group;return this.createBody(e,t),this.createLines(e,t),e},e.prototype.createBody=function(t,e){var o=$.drawing.Path.fromRect(this.realBody.toRect(),{fill:{color:this.color,opacity:e.opacity},stroke:null});e.border.width>0&&o.options.set("stroke",{color:this.getBorderColor(),width:e.border.width,dashType:e.border.dashType,opacity:Yt(e.border.opacity,e.opacity)}),X(o),t.append(o),Fa(e)&&t.append(this.createGradientOverlay(o,{baseColor:this.color},it({end:e.vertical?void 0:[0,1]},e.overlay)))},e.prototype.createLines=function(t,e){this.drawLines(t,e,this.lines,e.line)},e.prototype.drawLines=function(t,e,o,r){if(o)for(var n={stroke:{color:r.color||this.color,opacity:Yt(r.opacity,e.opacity),width:r.width,dashType:r.dashType,lineCap:"butt"}},i=0;i<o.length;i++){var a=$.drawing.Path.fromPoints(o[i],n);X(a),t.append(a)}},e.prototype.getBorderColor=function(){var t=this.options.border,e=t.color;return Lt(e)||(e=new $.Color(this.color).brightness(t._brightness).toHex()),e},e.prototype.createOverlay=function(){var t=$.drawing.Path.fromRect(this.box.toRect(),{fill:{color:L,opacity:0},stroke:null});this.visual.append(t)},e.prototype.createHighlight=function(){var t=this.options.highlight,e=this.color;this.color=t.color||this.color;var o=this.mainVisual(it({},this.options,{line:{color:this.getBorderColor()}},t));return this.color=e,o},e.prototype.highlightVisual=function(){return this._mainVisual},e.prototype.highlightVisualArgs=function(){return{options:this.options,rect:this.box.toRect(),visual:this._mainVisual}},e.prototype.tooltipAnchor=function(){var t=this.box,e=this.owner.pane.clipBox()||t;return{point:new fo(t.x2+5,Math.max(t.y1,e.y1)+5),align:{horizontal:O,vertical:I}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,value:this.value,meanPoints:this.meanPoints,medianPoints:this.medianPoints,whiskerPoints:this.whiskerPoints,stackValue:this.stackValue,series:this.series}},e.prototype.getIndex=function(){return this.categoryIx},e}(Mo);Fs.prototype.createFocusHighlight=Hs.prototype.createFocusHighlight,Qt(Fs,{vertical:!0,border:{_brightness:.8},line:{width:2},overlay:{gradient:"glass"},tooltip:{format:"<table><tr><th colspan='2'>{4:d}</th></tr><tr><td>Open:</td><td>{0:C}</td></tr><tr><td>High:</td><td>{1:C}</td></tr><tr><td>Low:</td><td>{2:C}</td></tr><tr><td>Close:</td><td>{3:C}</td></tr></table>"},labels:{format:""},highlight:{opacity:1,border:{width:1,opacity:1},line:{width:1,opacity:1}},notes:{visible:!0,label:{}},accessibility:{role:ga,className:ya,ariaRoleDescription:ba}}),it(Fs.prototype,Ja),it(Fs.prototype,ts),it(Fs.prototype,js);const Us=Fs;var Ks=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowCategories=function(t){for(var e=this.children,o=e.length,r=0;r<o;r++)e[r].reflow(t[r])},e.prototype.addValue=function(t,e){var o,r=e.categoryIx,n=e.category,i=e.series,a=e.seriesIx,s=this.children,c=this.options,l=t.valueFields,h=ka(this.splitValue(l)),u=i.data[r],p=this.categoryPoints[r];p||(this.categoryPoints[r]=p=[]),h&&(o=this.createPoint(t,e));var d=s[r];d||(d=new Ts({vertical:c.invertAxes,gap:c.gap,spacing:c.spacing,rtl:!c.invertAxes&&(this.chartService||{}).rtl}),this.append(d)),o&&(this.updateRange(l,e),d.append(o),o.categoryIx=r,o.category=n,o.series=i,o.seriesIx=a,o.owner=this,o.dataItem=u,o.noteText=t.fields.noteText),this.points.push(o),p.push(o)},e.prototype.pointType=function(){return Us},e.prototype.createPoint=function(t,e){var o=e.series,r=this.pointType(),n=t.valueFields,i=it({},o),a=t.fields.color||o.color;i=this.evalPointOptions(i,n,e),o.type!==yi&&o.type!==zi||n.open>n.close&&(a=t.fields.downColor||o.downColor||o.color),et(o.color)&&(a=i.color),i.vertical=!this.options.invertAxes;var s=new r(n,i);return s.color=a,s},e.prototype.splitValue=function(t){return[t.low,t.open,t.close,t.high]},e.prototype.updateRange=function(t,e){var o=e.series.axis,r=this.splitValue(t),n=this.valueAxisRanges[o]||{min:S,max:z};this.valueAxisRanges[o]={min:Math.min.apply(Math,r.concat([n.min])),max:Math.max.apply(Math,r.concat([n.max]))}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.open,o.high,o.low,o.close,t.category)},e.prototype.animationPoints=function(){return this.points},e}(Za);it(Ks.prototype,ms);const qs=Ks;var $s=function(t){function e(e,o){t.call(this,e,o),this.createNote()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e,o,r=this,n=r.options,i=r.value,a=r.owner.seriesValueAxis(n);this.boxSlot=o=a.getSlot(i.q1,i.q3),this.realBody=o,this.reflowBoxSlot(t),this.whiskerSlot=e=a.getSlot(i.lower,i.upper),this.reflowWhiskerSlot(t);var s=a.getSlot(i.median);if(i.mean){var c=a.getSlot(i.mean);this.meanPoints=this.calcMeanPoints(t,c)}this.whiskerPoints=this.calcWhiskerPoints(o,e),this.medianPoints=this.calcMedianPoints(t,s),this.box=e.clone().wrap(o),this.reflowNote()},e.prototype.reflowBoxSlot=function(t){this.boxSlot.x1=t.x1,this.boxSlot.x2=t.x2},e.prototype.reflowWhiskerSlot=function(t){this.whiskerSlot.x1=t.x1,this.whiskerSlot.x2=t.x2},e.prototype.calcMeanPoints=function(t,e){return[[[t.x1,e.y1],[t.x2,e.y1]]]},e.prototype.calcWhiskerPoints=function(t,e){var o=e.center().x;return[[[o-5,e.y1],[o+5,e.y1],[o,e.y1],[o,t.y1]],[[o-5,e.y2],[o+5,e.y2],[o,e.y2],[o,t.y2]]]},e.prototype.calcMedianPoints=function(t,e){return[[[t.x1,e.y1],[t.x2,e.y1]]]},e.prototype.renderOutliers=function(t){for(var e=this.value,o=e.outliers||[],r=3*Math.abs(e.q3-e.q1),n=[],i=t.markers||{},a=0;a<o.length;a++){var s=o[a],c=it({},(i=s<e.q3+r&&s>e.q1-r?t.outliers:t.extremes).border);Lt(c.color)||(Lt(this.color)?c.color=this.color:c.color=new $.Color(i.background).brightness(ri).toHex());var l=new ko({type:i.type,width:i.size,height:i.size,rotation:i.rotation,background:i.background,border:c,opacity:i.opacity});l.value=s,n.push(l)}return this.reflowOutliers(n),n},e.prototype.reflowOutliers=function(t){for(var e=this,o=this.owner.seriesValueAxis(this.options),r=this.box.center(),n=0;n<t.length;n++){var i=t[n].value,a=o.getSlot(i);e.options.vertical?a.move(r.x):a.move(void 0,r.y),e.box=e.box.wrap(a),t[n].reflow(a)}},e.prototype.mainVisual=function(e){for(var o=t.prototype.mainVisual.call(this,e),r=this.renderOutliers(e),n=0;n<r.length;n++){var i=r[n].getElement();i&&o.append(i)}return o},e.prototype.createLines=function(t,e){this.drawLines(t,e,this.whiskerPoints,e.whiskers),this.drawLines(t,e,this.medianPoints,e.median),this.drawLines(t,e,this.meanPoints,e.mean)},e.prototype.getBorderColor=function(){return(this.options.border||{}).color?this.options.border.color:this.color?this.color:t.prototype.getBorderColor.call(this)},e}(Us);Qt($s,{border:{_brightness:.8},line:{width:2},median:{color:"#f6f6f6"},mean:{width:2,dashType:"dash",color:"#f6f6f6"},overlay:{gradient:"glass"},tooltip:{format:"<table><tr><th colspan='2'>{6:d}</th></tr><tr><td>Lower:</td><td>{0:C}</td></tr><tr><td>Q1:</td><td>{1:C}</td></tr><tr><td>Median:</td><td>{2:C}</td></tr><tr><td>Mean:</td><td>{5:C}</td></tr><tr><td>Q3:</td><td>{3:C}</td></tr><tr><td>Upper:</td><td>{4:C}</td></tr></table>"},highlight:{opacity:1,border:{width:1,opacity:1},line:{width:1,opacity:1}},notes:{visible:!0,label:{}},outliers:{visible:!0,size:8,type:f,background:L,border:{width:2,opacity:1},opacity:0},extremes:{visible:!0,size:8,type:d,background:L,border:{width:2,opacity:1},opacity:0}}),it($s.prototype,Ja);const Xs=$s;var Gs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowBoxSlot=function(t){this.boxSlot.y1=t.y1,this.boxSlot.y2=t.y2},e.prototype.reflowWhiskerSlot=function(t){this.whiskerSlot.y1=t.y1,this.whiskerSlot.y2=t.y2},e.prototype.calcMeanPoints=function(t,e){return[[[e.x1,t.y1],[e.x1,t.y2]]]},e.prototype.calcWhiskerPoints=function(t,e){var o=e.center().y;return[[[e.x1,o-5],[e.x1,o+5],[e.x1,o],[t.x1,o]],[[e.x2,o-5],[e.x2,o+5],[e.x2,o],[t.x2,o]]]},e.prototype.calcMedianPoints=function(t,e){return[[[e.x1,t.y1],[e.x1,t.y2]]]},e}(Xs);const Ys=Gs;var Ws=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.addValue=function(t,e){var o,r=e.categoryIx,n=e.category,i=e.series,a=e.seriesIx,s=this.children,c=this.options,l=t.valueFields,h=ka(this.splitValue(l)),u=i.data[r],p=this.categoryPoints[r];p||(this.categoryPoints[r]=p=[]),h&&(o=this.createPoint(t,e));var d=s[r];d||(d=new Ts({vertical:c.invertAxes,gap:c.gap,spacing:c.spacing,rtl:!c.invertAxes&&(this.chartService||{}).rtl}),this.append(d)),o&&(this.updateRange(l,e),d.append(o),o.categoryIx=r,o.category=n,o.series=i,o.seriesIx=a,o.owner=this,o.dataItem=u),this.points.push(o),p.push(o)},e.prototype.pointType=function(){return this.options.invertAxes?Ys:Xs},e.prototype.splitValue=function(t){return[t.lower,t.q1,t.median,t.q3,t.upper]},e.prototype.updateRange=function(t,e){var o=e.series.axis,r=this.splitValue(t).concat(this.filterOutliers(t.outliers));Lt(t.mean)&&(r=r.concat(t.mean));var n=this.valueAxisRanges[o]||{min:S,max:z};this.valueAxisRanges[o]={min:Math.min.apply(Math,r.concat([n.min])),max:Math.max.apply(Math,r.concat([n.max]))}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.lower,o.q1,o.median,o.q3,o.upper,o.mean,t.category)},e.prototype.filterOutliers=function(t){for(var e=(t||[]).length,o=[],r=0;r<e;r++){var n=t[r];Lt(n)&&null!==n&&o.push(n)}return o},e.prototype.supportsPointInactiveOpacity=function(){return!1},e}(qs);const Zs=Ws;var Qs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getAxis=function(){var t=this.chart.seriesAxes(this.series);return this.isVertical?t.y:t.x},e}(Ma);const Js=Qs;var tc=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this._initFields(),this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initFields=function(){this.xAxisRanges={},this.yAxisRanges={},this.points=[],this.seriesPoints=[],this.seriesOptions=[],this._evalSeries=[]},e.prototype.render=function(){this.traverseDataPoints(this.addValue.bind(this))},e.prototype.addErrorBar=function(t,e,o){var r,n=t.value[e],i=e+"Value",a=e+"ErrorLow",s=e+"ErrorHigh",c=o.seriesIx,l=o.series,h=t.options.errorBars,u=o[a],p=o[s];Y(n)&&(Y(u)&&Y(p)&&(r={low:u,high:p}),h&&Lt(h[i])&&(this.seriesErrorRanges=this.seriesErrorRanges||{x:[],y:[]},this.seriesErrorRanges[e][c]=this.seriesErrorRanges[e][c]||new Jn(h[i],l,e),r=this.seriesErrorRanges[e][c].getErrorRange(n,h[i])),r&&this.addPointErrorBar(r,t,e))},e.prototype.addPointErrorBar=function(t,e,o){var r=t.low,n=t.high,i=e.series,a=e.options.errorBars,s=o===D,c={};e[o+"Low"]=r,e[o+"High"]=n,e.errorBars=e.errorBars||[];var l=new Js(r,n,s,this,i,a);e.errorBars.push(l),e.append(l),c[o]=r,this.updateRange(c,i),c[o]=n,this.updateRange(c,i)},e.prototype.addValue=function(t,e){var o,r=t.x,n=t.y,i=e.seriesIx,a=this.options.series[i],s=this.seriesMissingValues(a),c=this.seriesPoints[i],l=t;Ua(r)&&Ua(n)||(l=this.createMissingValue(l,s)),l&&((o=this.createPoint(l,e))&&(Object.assign(o,e),this.addErrorBar(o,E,e),this.addErrorBar(o,D,e)),this.updateRange(l,e.series)),this.points.push(o),c.push(o)},e.prototype.seriesMissingValues=function(t){return t.missingValues},e.prototype.createMissingValue=function(){},e.prototype.updateRange=function(t,e){var o=this.chartService.intl,r=e.xAxis,n=e.yAxis,i=t.x,a=t.y,s=this.xAxisRanges[r],c=this.yAxisRanges[n];Ua(i)&&(s=this.xAxisRanges[r]=s||{min:S,max:z},W(i)&&(i=Yr(o,i)),s.min=Math.min(s.min,i),s.max=Math.max(s.max,i)),Ua(a)&&(c=this.yAxisRanges[n]=c||{min:S,max:z},W(a)&&(a=Yr(o,a)),c.min=Math.min(c.min,a),c.max=Math.max(c.max,a))},e.prototype.evalPointOptions=function(t,e,o){var r=o.series,n=o.seriesIx,i={defaults:r._defaults,excluded:["data","tooltip","content","template","visual","toggle","_outOfRangeMinPoint","_outOfRangeMaxPoint","drilldownSeriesFactory","ariaTemplate","ariaContent"]},a=this._evalSeries[n];Lt(a)||(this._evalSeries[n]=a=Ea(t,{},i,!0));var s=t;return a&&Ea(s=it({},t),{value:e,series:r,dataItem:o.dataItem},i),s},e.prototype.pointType=function(){return os},e.prototype.pointOptions=function(t,e){var o=this.seriesOptions[e];if(!o){var r=this.pointType().prototype.defaults;this.seriesOptions[e]=o=it({},r,{markers:{opacity:t.opacity},tooltip:{format:this.options.tooltip.format},labels:{format:this.options.labels.format}},t)}return o},e.prototype.createPoint=function(t,e){var o=e.series,r=this.pointOptions(o,e.seriesIx),n=e.color||o.color;r=this.evalPointOptions(r,t,e),et(o.color)&&(n=r.color);var i=new os(t,r);return i.color=n,this.append(i),i},e.prototype.seriesAxes=function(t){var e=t.xAxis,o=t.yAxis,r=this.plotArea,n=e?r.namedXAxes[e]:r.axisX,i=o?r.namedYAxes[o]:r.axisY;if(!n)throw new Error("Unable to locate X axis with name "+e);if(!i)throw new Error("Unable to locate Y axis with name "+o);return{x:n,y:i}},e.prototype.reflow=function(t){var e=this,o=this.points,r=!this.options.clip,n=0;this.traverseDataPoints((function(t,i){var a=o[n++],s=e.seriesAxes(i.series),c=s.x.getSlot(t.x,t.x,r),l=s.y.getSlot(t.y,t.y,r);if(a)if(c&&l){var h=e.pointSlot(c,l);a.reflow(h)}else a.visible=!1})),this.box=t},e.prototype.pointSlot=function(t,e){return new yo(t.x1,e.y1,t.x2,e.y2)},e.prototype.traverseDataPoints=function(t){for(var e=this.options.series,o=this.seriesPoints,r=0;r<e.length;r++){var n=e[r];o[r]||(o[r]=[]);for(var i=0;i<n.data.length;i++){var a=this.plotArea.bindPoint(n,i),s=a.valueFields,c=a.fields;t(s,it({pointIx:i,series:n,seriesIx:r,dataItem:n.data[i],owner:this},c))}}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.x,o.y)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++)e.push((t[o]||{}).marker);return e},e}(Mo);Qt(tc,{series:[],tooltip:{format:"{0}, {1}"},labels:{format:"{0}, {1}"},clip:!0}),it(tc.prototype,ms);const ec=tc;var oc=function(t){function e(e,o){t.call(this,e,o),this.category=e.category}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createHighlight=function(){var t=this.options.highlight,e=t.border,o=this.options.markers,r=this.box.center(),n=(o.size+o.border.width+e.width)/2,i=new $.drawing.Group,a=new $.drawing.Circle(new $.geometry.Circle([r.x,r.y+n/5+e.width/2],n+e.width/2),{stroke:{color:"none"},fill:this.createGradient({gradient:"bubbleShadow",color:o.background,stops:[{offset:0,color:o.background,opacity:.3},{offset:1,color:o.background,opacity:0}]})}),s=new $.drawing.Circle(new $.geometry.Circle([r.x,r.y],n),{stroke:{color:e.color||new $.Color(o.background).brightness(ri).toHex(),width:e.width,opacity:e.opacity},fill:{color:o.background,opacity:t.opacity}});return i.append(a,s),i},e.prototype.createFocusHighlight=function(t){var e=this.options.accessibility.highlight,o=this.options.markers,r=this.box.center(),n=(o.size+o.border.width)/2+e.border.width/2;return new $.drawing.Circle(new $.geometry.Circle([r.x,r.y],n),t)},e}(os);oc.prototype.defaults=it({},oc.prototype.defaults,{labels:{position:p},highlight:{opacity:1,border:{color:"#fff",width:2,opacity:1}}}),oc.prototype.defaults.highlight.zIndex=void 0;const rc=oc;var nc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initFields=function(){this._maxSize=z,t.prototype._initFields.call(this)},e.prototype.addValue=function(e,o){null!==e.size&&(e.size>0||e.size<0&&o.series.negativeValues.visible)?(this._maxSize=Math.max(this._maxSize,Math.abs(e.size)),t.prototype.addValue.call(this,e,o)):(this.points.push(null),this.seriesPoints[o.seriesIx].push(null))},e.prototype.reflow=function(e){this.updateBubblesSize(e),t.prototype.reflow.call(this,e)},e.prototype.pointType=function(){return rc},e.prototype.createPoint=function(t,e){var o=e.series,r=o.data.length,n=e.pointIx*(ei/r),i={delay:n,duration:ei-n,type:mi},a=e.color||o.color;t.size<0&&o.negativeValues.visible&&(a=Yt(o.negativeValues.color,a));var s=it({labels:{animation:{delay:n,duration:ei-n}}},this.pointOptions(o,e.seriesIx),{markers:{type:d,border:o.border,opacity:o.opacity,animation:i}});s=this.evalPointOptions(s,t,e),et(o.color)&&(a=s.color),s.markers.background=a;var c=new rc(t,s);return c.color=a,this.append(c),c},e.prototype.updateBubblesSize=function(t){for(var e=this.options.series,o=Math.min(t.width(),t.height()),r=0;r<e.length;r++)for(var n=e[r],i=this.seriesPoints[r],a=(n.minSize||Math.max(.02*o,10))/2,s=(n.maxSize||.2*o)/2,c=Math.PI*a*a,l=(Math.PI*s*s-c)/this._maxSize,h=0;h<i.length;h++){var u=i[h];if(u){var p=Math.abs(u.value.size)*l,d=Math.sqrt((c+p)/Math.PI),v=Yt(u.options.zIndex,0)+(1-d/s);it(u.options,{zIndex:v,markers:{size:2*d,zIndex:v},labels:{zIndex:v+1}})}}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.x,o.y,o.size,t.category)},e.prototype.createAnimation=function(){},e.prototype.createVisual=function(){},e}(ec);Qt(nc,{tooltip:{format:"{3}"},labels:{format:"{3}"}});const ic=nc;var ac=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(ko);it(ac.prototype,Ja);const sc=ac;var cc=function(t){function e(e,o){t.call(this,o),this.aboveAxis=this.options.aboveAxis,this.color=o.color||L,this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t=this.options;this._rendered||(this._rendered=!0,Lt(this.value.target)&&(this.target=new sc({type:t.target.shape,background:t.target.color||this.color,opacity:t.opacity,zIndex:t.zIndex,border:t.target.border,vAlign:I,align:A}),this.target.value=this.value,this.target.dataItem=this.dataItem,this.target.series=this.series,this.append(this.target)),this.createLabel(),this.createNote())},e.prototype.createLabel=function(){var t=this.options.labels;t.visible&&(this.label=this.createLabelElement(t),this.append(this.label))},e.prototype.createLabelElement=function(t){return new As(this.getLabelText(t),t,this.pointData())},e.prototype.getLabelText=function(t){var e=ft(t);return e?e(this.pointData()):this.formatValue(t.format)},e.prototype.reflow=function(t){this.render();var e=this,o=e.options,r=e.target,n=e.owner,i=o.invertAxes,a=n.seriesValueAxis(this.options),s=n.categorySlot(n.categoryAxis,o.categoryIx,a),c=a.getSlot(this.value.target),l=i?c:s,h=i?s:c;if(r){var u=new yo(l.x1,h.y1,l.x2,h.y2);r.options.height=i?u.height():o.target.line.width,r.options.width=i?o.target.line.width:u.width(),r.reflow(u)}var p=this.label;p&&(p.options.aboveAxis=this.aboveAxis,p.reflow(t)),this.note&&this.note.reflow(t),this.box=t},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.addAccessibilityAttributesToVisual();var e=this.options,o=$.drawing.Path.fromRect(this.box.toRect(),{fill:{color:this.color,opacity:e.opacity},stroke:null});e.border.width>0&&o.options.set("stroke",{color:e.border.color||this.color,width:e.border.width,dashType:e.border.dashType,opacity:Yt(e.border.opacity,e.opacity)}),this.bodyVisual=o,X(o),this.visual.append(o)},e.prototype.createAnimation=function(){this.bodyVisual&&(this.animation=$.drawing.Animation.create(this.bodyVisual,this.options.animation))},e.prototype.createHighlight=function(t){return $.drawing.Path.fromRect(this.box.toRect(),t)},e.prototype.highlightVisual=function(){return this.bodyVisual},e.prototype.highlightVisualArgs=function(){return{rect:this.box.toRect(),visual:this.bodyVisual,options:this.options}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,series:this.series}},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.getIndex=function(){return this.categoryIx},e}(Mo);cc.prototype.tooltipAnchor=Hs.prototype.tooltipAnchor,cc.prototype.createFocusHighlight=Hs.prototype.createFocusHighlight,Qt(cc,{border:{width:1},vertical:!1,opacity:1,target:{shape:"",border:{width:0,color:"green"},line:{width:2}},labels:{visible:!1},tooltip:{format:"Current: {0}<br />Target: {1}"},notes:{label:{}},accessibility:{role:ga,className:ya,ariaRoleDescription:ba}}),it(cc.prototype,Ja),it(cc.prototype,ts),it(cc.prototype,js);const lc=cc;var hc=function(t){function e(e,o){!function(t){for(var e=t.series,o=0;o<e.length;o++){var r=e[o],n=r.data;!n||F(n[0])||at(n[0])||(r.data=[n])}}(o),t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowCategories=function(t){for(var e=this.children,o=e.length,r=0;r<o;r++)e[r].reflow(t[r])},e.prototype.plotRange=function(t){var e=t.series,o=this.seriesValueAxis(e),r=this.categoryAxisCrossingValue(o);return[r,t.value.current||r]},e.prototype.createPoint=function(t,e){var o=e.categoryIx,r=e.series,n=this.options,i=this.children,a=t.valueFields,s=it({vertical:!n.invertAxes,overlay:r.overlay,categoryIx:o,invertAxes:n.invertAxes},r),c=t.fields.color||r.color;s=this.evalPointOptions(s,a,e),et(r.color)&&(c=s.color);var l=new lc(a,s);l.color=c;var h=i[o];return h||(h=new Ts({vertical:n.invertAxes,gap:n.gap,spacing:n.spacing,rtl:!n.invertAxes&&(this.chartService||{}).rtl}),this.append(h)),h.append(l),l},e.prototype.updateRange=function(t,e){var o=t.current,r=t.target,n=e.series.axis,i=this.valueAxisRanges[n];Lt(o)&&!isNaN(o)&&Lt(r&&!isNaN(r))&&((i=this.valueAxisRanges[n]=i||{min:S,max:z}).min=Math.min(i.min,o,r),i.max=Math.max(i.max,o,r))},e.prototype.formatPointValue=function(t,e){return this.chartService.format.auto(e,t.value.current,t.value.target)},e.prototype.pointValue=function(t){return t.valueFields.current},e.prototype.aboveAxis=function(t){return t.value.current>0},e.prototype.createAnimation=function(){var t=this.points;this._setAnimationOptions();for(var e=0;e<t.length;e++){var o=t[e];o.options.animation=this.options.animation,o.createAnimation()}},e}(Za);hc.prototype._setAnimationOptions=Rs.prototype._setAnimationOptions,Qt(hc,{animation:{type:vi}});const uc=hc;var pc=function(t){function e(e,o){t.call(this),this.chartService=e,this.options=it({},this.options,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getStyle=function(t,e){var o=t.background,r=t.border.color;if(e){var n=e.color||e.options.color;o=Yt(o,n),r=Yt(r,n)}var i=ut(t.padding||{},"auto");return{backgroundColor:o,borderColor:r,font:t.font,color:t.color,opacity:t.opacity,borderWidth:st(t.border.width),paddingTop:st(i.top),paddingBottom:st(i.bottom),paddingLeft:st(i.left),paddingRight:st(i.right)}},e.prototype.show=function(t,e,o){t.format=e.format;var r=this.getStyle(e,o);t.style=r;var n=new $.Color(r.backgroundColor);Lt(e.color)||n.isDark()||(t.className="k-chart-tooltip-inverse"),this.chartService.notify(fa,t),this.visible=!0},e.prototype.hide=function(){this.chartService&&this.chartService.notify(ma),this.visible=!1},e.prototype.destroy=function(){delete this.chartService},e}($.Class);Qt(pc,{border:{width:1},opacity:1});const dc=pc;var vc=function(t){function e(e,o,r){t.call(this,e,r),this.crosshair=o,this.formatService=e.format,this.initAxisName()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initAxisName=function(){var t,e=this.crosshair.axis;t=e.plotArea.categoryAxis?e.getCategory?"categoryAxis":"valueAxis":e.options.vertical?"yAxis":"xAxis",this.axisName=t},e.prototype.showAt=function(t){var e=this.crosshair.axis,o=this.options,r=e[o.stickyMode?"getCategory":"getValue"](t),n=r;o.format?n=this.formatService.auto(o.format,r):e.options.type===m&&(n=this.formatService.auto(e.options.labels.dateFormats[e.options.baseUnit],r)),this.show({point:t,anchor:this.getAnchor(),crosshair:this.crosshair,value:n,axisName:this.axisName,axisIndex:this.crosshair.axis.axisIndex},this.options)},e.prototype.hide=function(){this.chartService.notify(ma,{crosshair:this.crosshair,axisName:this.axisName,axisIndex:this.crosshair.axis.axisIndex})},e.prototype.getAnchor=function(){var t,e,o,r=this.crosshair,n=this.options,i=n.position,a=n.padding,s=!r.axis.options.vertical,c=r.line.bbox();return s?(t=p,i===u?(e=I,o=c.bottomLeft().translate(0,a)):(e=u,o=c.topLeft().translate(0,-a))):(e=p,i===O?(t=A,o=c.topLeft().translate(-a,0)):(t=O,o=c.topRight().translate(a,0))),{point:o,align:{horizontal:t,vertical:e}}},e}(dc);Qt(vc,{padding:10});const fc=vc;var mc=function(t){function e(e,o,r){t.call(this,r),this.axis=o,this.stickyMode=o instanceof Jr;var n=this.options.tooltip;n.visible&&(this.tooltip=new fc(e,this,it({},n,{stickyMode:this.stickyMode})))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.showAt=function(t){this.point=t,this.moveLine(),this.line.visible(!0),this.tooltip&&this.tooltip.showAt(t)},e.prototype.hide=function(){this.line.visible(!1),this.tooltip&&this.tooltip.hide()},e.prototype.moveLine=function(){var t,e=this.axis,o=this.point,r=e.options.vertical,n=this.getBox(),i=r?D:E,a=new $.geometry.Point(n.x1,n.y1);if(t=r?new $.geometry.Point(n.x2,n.y1):new $.geometry.Point(n.x1,n.y2),o)if(this.stickyMode){var s=e.getSlot(e.pointCategoryIndex(o));a[i]=t[i]=s.center()[i]}else a[i]=t[i]=o[i];this.box=n,this.line.moveTo(a).lineTo(t)},e.prototype.getBox=function(){for(var t,e=this.axis,o=e.pane.axes,r=o.length,n=e.options.vertical,i=e.lineBox().clone(),a=n?E:D,s=0;s<r;s++){var c=o[s];c.options.vertical!==n&&(t?t.wrap(c.lineBox()):t=c.lineBox().clone())}return i[a+1]=t[a+1],i[a+2]=t[a+2],i},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e=this.options;this.line=new $.drawing.Path({stroke:{color:e.color,width:e.width,opacity:e.opacity,dashType:e.dashType},visible:!1}),this.moveLine(),this.visual.append(this.line)},e.prototype.destroy=function(){this.tooltip&&this.tooltip.destroy(),t.prototype.destroy.call(this)},e}(Mo);Qt(mc,{color:h,width:2,zIndex:-1,tooltip:{visible:!1}});const gc=mc;var yc=function(t){function e(e,o){t.call(this,e),this.pane=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.shouldClip=function(){for(var t=this.children,e=t.length,o=0;o<e;o++)if(!0===t[o].options.clip)return!0;return!1},e.prototype._clipBox=function(){return this.pane.chartsBox()},e.prototype.createVisual=function(){if(this.visual=new $.drawing.Group({zIndex:0}),this.shouldClip()){var t=(this.clipBox=this._clipBox()).toRect(),e=$.drawing.Path.fromRect(t);X(e),this.visual.clip(e),this.unclipLabels()}},e.prototype.stackRoot=function(){return this},e.prototype.unclipLabels=function(){for(var t=this.children,e=this.clipBox,o=0;o<t.length;o++)for(var r=t[o].points||{},n=r.length,i=0;i<n;i++){var a=r[i];if(a&&!1!==a.visible&&a.overlapsBox&&a.overlapsBox(e))if(a.unclipElements)a.unclipElements();else{var s=a.label,c=a.note;s&&s.options.visible&&(s.alignToClipBox&&s.alignToClipBox(e),s.options.noclip=!0),c&&c.options.visible&&(c.options.noclip=!0)}}},e.prototype.destroy=function(){t.prototype.destroy.call(this),delete this.parent},e}(Mo);yc.prototype.isStackRoot=!0;const bc=yc;var xc=function(t){function e(e){t.call(this,e),this.id="pane"+wc++,this.createTitle(),this.content=new Mo,this.chartContainer=new bc({},this),this.append(this.content),this.axes=[],this.charts=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createTitle=function(){var t=this.options.title;at(t)&&(t=it({},t,{align:t.position,position:I})),this.title=Yo.buildTitle(t,e.prototype.options.title),this.title&&this.append(this.title)},e.prototype.appendAxis=function(t){this.content.append(t),this.axes.push(t),t.pane=this},e.prototype.appendAxisAt=function(t,e){this.content.append(t),this.axes.splice(e,0,t),t.pane=this},e.prototype.appendChart=function(t){this.chartContainer.parent!==this.content&&this.content.append(this.chartContainer),this.charts.push(t),this.chartContainer.append(t),t.pane=this},e.prototype.empty=function(){var t=this.parent;if(t){for(var e=0;e<this.axes.length;e++)t.removeAxis(this.axes[e]);for(var o=0;o<this.charts.length;o++)t.removeChart(this.charts[o])}this.axes=[],this.charts=[],this.content.destroy(),this.content.children=[],this.chartContainer.children=[]},e.prototype.reflow=function(e){var o;Ut(this.children)===this.content&&(o=this.children.pop()),t.prototype.reflow.call(this,e),o&&this.children.push(o),this.title&&(this.contentBox.y1+=this.title.box.height())},e.prototype.visualStyle=function(){var e=t.prototype.visualStyle.call(this);return e.zIndex=-10,e},e.prototype.renderComplete=function(){this.options.visible&&this.createGridLines()},e.prototype.stackRoot=function(){return this},e.prototype.clipRoot=function(){return this},e.prototype.createGridLines=function(){for(var t=this.axes,e=t.concat(this.parent.axes),o=[],r=[],n=0;n<t.length;n++)for(var i=t[n],a=i.options.vertical,s=a?o:r,c=0;c<e.length;c++)if(0===s.length){var l=e[c];a!==l.options.vertical&&It(s,i.createGridLines(l))}},e.prototype.refresh=function(){this.visual.clear(),this.content.parent=null,this.content.createGradient=this.createGradient.bind(this),this.content.renderVisual(),this.content.parent=this,this.title&&this.visual.append(this.title.visual),this.visual.append(this.content.visual),this.renderComplete(),this.notifyRender()},e.prototype.chartsBox=function(){for(var t=this.axes,e=t.length,o=new yo,r=0;r<e;r++){var n=t[r],i=n.options.vertical?D:E,a=n.lineBox();o[i+1]=a[i+1],o[i+2]=a[i+2]}if(0===o.x2)for(var s=this.parent.axes,c=s.length,l=0;l<c;l++){var h=s[l];if(!h.options.vertical){var u=h.lineBox();o.x1=u.x1,o.x2=u.x2}}return o},e.prototype.clipBox=function(){return this.chartContainer.clipBox},e.prototype.notifyRender=function(){var t=this.getService();t&&t.notify("paneRender",{pane:new Fn(this),index:this.paneIndex,name:this.options.name})},e}(Vo),wc=1;xc.prototype.isStackRoot=!0,Qt(xc,{zIndex:-1,shrinkToFit:!0,title:{align:O},visible:!0});const _c=xc;var Cc=function(t){function e(e,o,r){t.call(this,o),this.initFields(e,o),this.series=e,this.initSeries(),this.charts=[],this.options.legend=this.options.legend||{},this.options.legend.data=[],this.axes=[],this.crosshairs=[],this.chartService=r,this.originalOptions=o,this.originalSeries=e,this._bindCache=new WeakMap,this.createPanes(),this.render(),this.createCrosshairs()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){},e.prototype.initSeries=function(){for(var t=this.series,e=0;e<t.length;e++)t[e].index=e},e.prototype.bindPoint=function(t,e,o){var r=this._bindCache.get(t);r||(r=[],this._bindCache.set(t,r));var n=r[e];return n||(n=r[e]=Yn.current.bindPoint(t,e,o)),n},e.prototype.createPanes=function(){for(var t=this.options.title||{},e=this.options.paneDefaults,o=this.options.panes||[],r=Math.max(o.length,1),n=[],i=it({title:{color:t.color}},e),a=0;a<r;a++){var s=it({},i,o[a]);W(s.title)&&(s.title=it({text:s.title},i.title));var c=new _c(s);c.paneIndex=a,n.push(c),this.append(c)}this.panes=n},e.prototype.crosshairOptions=function(t){return t.options.crosshair},e.prototype.createCrosshairs=function(t){var e=this;void 0===t&&(t=this.panes);for(var o=0;o<t.length;o++)for(var r=t[o],n=0;n<r.axes.length;n++){var i=r.axes[n],a=e.crosshairOptions(i);if(a&&a.visible){var s=new gc(e.chartService,i,a);e.crosshairs.push(s),r.content.append(s)}}},e.prototype.removeCrosshairs=function(t){for(var e=this.crosshairs,o=t.axes,r=e.length-1;r>=0;r--)for(var n=0;n<o.length;n++)if(e[r].axis===o[n]){e.splice(r,1);break}},e.prototype.hideCrosshairs=function(){for(var t=this.crosshairs,e=0;e<t.length;e++)t[e].hide()},e.prototype.findPane=function(t){for(var e,o=this.panes,r=0;r<o.length;r++)if(o[r].options.name===t){e=o[r];break}return e||o[0]},e.prototype.findPointPane=function(t){for(var e,o=this.panes,r=0;r<o.length;r++)if(o[r].box.containsPoint(t)){e=o[r];break}return e},e.prototype.appendAxis=function(t){this.findPane(t.options.pane).appendAxis(t),this.axes.push(t),t.plotArea=this},e.prototype.removeAxis=function(t){for(var e=[],o=0;o<this.axes.length;o++){var r=this.axes[o];t!==r?e.push(r):r.destroy()}this.axes=e},e.prototype.appendChart=function(t,e){this.charts.push(t),e?e.appendChart(t):this.append(t)},e.prototype.removeChart=function(t){for(var e=[],o=0;o<this.charts.length;o++){var r=this.charts[o];r!==t?e.push(r):r.destroy()}this.charts=e},e.prototype.addToLegend=function(t){for(var e=t.length,o=this.options.legend,r=o.labels||{},n=o.inactiveItems||{},i=n.labels||{},a=[],s=0;s<e;s++){var c=t[s],l=!1!==c.visible;if(!1!==c.visibleInLegend){var h=c.name,u=l?ft(r):ft(i)||ft(r);u&&(h=u({text:Ua(h)?h:"",series:c}));var p=c._defaults,d=c.color;et(d)&&p&&(d=p.color);var v=void 0,f=void 0;l?(v={},f=d):(v={color:i.color,font:i.font},f=n.markers.color),Ua(h)&&""!==h&&a.push({text:h,labels:v,markerColor:f,series:c,active:l})}}It(o.data,a)},e.prototype.groupAxes=function(t){for(var e=[],o=[],r=0;r<t.length;r++)for(var n=t[r].axes,i=0;i<n.length;i++){var a=n[i];a.options.vertical?o.push(a):e.push(a)}return{x:e,y:o,any:e.concat(o)}},e.prototype.groupSeriesByPane=function(){for(var t=this.series,e={},o=0;o<t.length;o++){var r=t[o],n=this.seriesPaneName(r);e[n]?e[n].push(r):e[n]=[r]}return e},e.prototype.filterVisibleSeries=function(t){for(var e=[],o=0;o<t.length;o++){var r=t[o];!1!==r.visible&&e.push(r)}return e},e.prototype.reflow=function(t){var e=this.options.plotArea,o=this.panes,r=ut(e.margin);this.box=t.clone().unpad(r),this.reflowPanes(),this.detachLabels(),this.reflowAxes(o),this.reflowCharts(o)},e.prototype.redraw=function(t){var e=[].concat(t);this.initSeries();var o=this.getRoot();o&&o.cleanGradients();for(var r=0;r<e.length;r++)this.removeCrosshairs(e[r]),e[r].empty();this._bindCache=new WeakMap,this.render(e),this.detachLabels(),this.reflowAxes(this.panes),this.reflowCharts(e),this.createCrosshairs(e);for(var n=0;n<e.length;n++)e[n].refresh()},e.prototype.axisCrossingValues=function(t,e){for(var o=t.options,r=[].concat(o.axisCrossingValues||o.axisCrossingValue),n=e.length-r.length,i=r[0]||0,a=0;a<n;a++)r.push(i);return r},e.prototype.alignAxisTo=function(t,e,o,r){var n=t.getSlot(o,o,!0),i=t.options.reverse?2:1,a=e.getSlot(r,r,!0),s=e.options.reverse?2:1,c=t.box.translate(a[E+s]-n[E+i],a[D+s]-n[D+i]);t.pane!==e.pane&&c.translate(0,t.pane.box.y1-e.pane.box.y1),t.reflow(c)},e.prototype.alignAxes=function(t,e){for(var o=this,r=t[0],n=e[0],i=this.axisCrossingValues(r,e),a=this.axisCrossingValues(n,t),s={},c={},l={},h={},p=0;p<e.length;p++){var d=e[p],f=d.pane,m=f.id,g=!1!==d.options.visible,y=zc(t,f)||r,b=i;if(y!==r&&(b=o.axisCrossingValues(y,e)),o.alignAxisTo(d,y,a[p],b[p]),!d.options._overlap){Xt(d.lineBox().x1)===Xt(y.lineBox().x1)&&(s[m]&&d.reflow(d.box.alignTo(s[m].box,O).translate(-d.options.margin,0)),g&&(s[m]=d)),Xt(d.lineBox().x2)===Xt(y.lineBox().x2)&&(d._mirrored||(d.options.labels.mirror=!d.options.labels.mirror,d._mirrored=!0),o.alignAxisTo(d,y,a[p],b[p]),c[m]&&d.reflow(d.box.alignTo(c[m].box,A).translate(d.options.margin,0)),g&&(c[m]=d));var x=zc(e,f)||n;x!==d&&(d.alignTo(x),d.reflow(d.box))}}for(var w=0;w<t.length;w++){var _=t[w],C=_.pane,S=C.id,z=!1!==_.options.visible,M=zc(e,C)||n,P=a;M!==n&&(P=o.axisCrossingValues(M,t)),o.alignAxisTo(_,M,i[w],P[w]),_.options._overlap||(Xt(_.lineBox().y1)===Xt(M.lineBox().y1)&&(_._mirrored||(_.options.labels.mirror=!_.options.labels.mirror,_._mirrored=!0),o.alignAxisTo(_,M,i[w],P[w]),l[S]&&_.reflow(_.box.alignTo(l[S].box,I).translate(0,-_.options.margin)),z&&(l[S]=_)),Xt(_.lineBox().y2,v)===Xt(M.lineBox().y2,v)&&(h[S]&&_.reflow(_.box.alignTo(h[S].box,u).translate(0,_.options.margin)),z&&(h[S]=_)),0!==w&&(_.alignTo(r),_.reflow(_.box)))}},e.prototype.shrinkAxisWidth=function(t){for(var e=this.groupAxes(t).any,o=Sc(e),r=0,n=0;n<t.length;n++){var i=t[n];i.axes.length>0&&(r=Math.max(r,o.width()-i.contentBox.width()))}if(0!==r)for(var a=0;a<e.length;a++){var s=e[a];s.options.vertical||s.reflow(s.box.shrink(r,0))}},e.prototype.shrinkAxisHeight=function(t){for(var e,o=0;o<t.length;o++){var r=t[o],n=r.axes,i=Math.max(0,Sc(n).height()-r.contentBox.height());if(0!==i){for(var a=0;a<n.length;a++){var s=n[a];s.options.vertical&&s.reflow(s.box.shrink(0,i))}e=!0}}return e},e.prototype.fitAxes=function(t){for(var e=this.groupAxes(t).any,o=0,r=0;r<t.length;r++){var n=t[r],i=n.axes,a=n.contentBox;if(i.length>0){var s=Sc(i),c=Math.max(a.y1-s.y1,a.y2-s.y2);o=Math.max(o,a.x1-s.x1);for(var l=0;l<i.length;l++){var h=i[l];h.reflow(h.box.translate(0,c))}}}for(var u=0;u<e.length;u++){var p=e[u];p.reflow(p.box.translate(o,0))}},e.prototype.reflowAxes=function(t){for(var e=this.groupAxes(t),o=0;o<t.length;o++)this.reflowPaneAxes(t[o]);e.x.length>0&&e.y.length>0&&(this.alignAxes(e.x,e.y),this.shrinkAxisWidth(t),this.autoRotateAxisLabels(e),this.alignAxes(e.x,e.y),this.shrinkAxisWidth(t)&&this.alignAxes(e.x,e.y),this.shrinkAxisHeight(t),this.alignAxes(e.x,e.y),this.shrinkAxisHeight(t)&&this.alignAxes(e.x,e.y),this.fitAxes(t))},e.prototype.autoRotateAxisLabels=function(t){for(var e,o=this.panes,r=Mc(o),n=0;n<r.length;n++)r[n].autoRotateLabels()&&(e=!0);if(e){for(var i=0;i<o.length;i++)this.reflowPaneAxes(o[i]);t.x.length>0&&t.y.length>0&&(this.alignAxes(t.x,t.y),this.shrinkAxisWidth(o))}},e.prototype.reflowPaneAxes=function(t){var e=t.axes,o=e.length;if(o>0)for(var r=0;r<o;r++)e[r].reflow(t.contentBox)},e.prototype.reflowCharts=function(t){for(var e=this.charts,o=e.length,r=this.box,n=0;n<o;n++){var i=e[n].pane;i&&!Ot(i,t)||e[n].reflow(r)}},e.prototype.reflowPanes=function(){for(var t=this.box,e=this.panes,o=e.length,r=t.height(),n=0,i=t.y1,a=0;a<o;a++){var s=e[a],c=s.options.height;if(s.options.width=t.width(),s.options.height){if(c.indexOf&&c.indexOf("%")){var l=parseInt(c,10)/100;s.options.height=l*t.height()}s.reflow(t.clone()),r-=s.options.height}else n++}for(var h=0;h<o;h++){var u=e[h];u.options.height||(u.options.height=r/n)}for(var p=0;p<o;p++){var d=e[p],v=t.clone().move(t.x1,i);d.reflow(v),i+=d.options.height}},e.prototype.backgroundBox=function(){for(var t,e=this.axes,o=e.length,r=0;r<o;r++)for(var n=e[r],i=0;i<o;i++){var a=e[i];if(n.options.vertical!==a.options.vertical){var s=n.lineBox().clone().wrap(a.lineBox());t=t?t.wrap(s):s}}return t||this.box},e.prototype.chartsBoxes=function(){for(var t=this.panes,e=[],o=0;o<t.length;o++)e.push(t[o].chartsBox());return e},e.prototype.addBackgroundPaths=function(t){for(var e=this.chartsBoxes(),o=0;o<e.length;o++)t.paths.push($.drawing.Path.fromRect(e[o].toRect()))},e.prototype.backgroundContainsPoint=function(t){for(var e=this.chartsBoxes(),o=0;o<e.length;o++)if(e[o].containsPoint(t))return!0},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e,o=this.options.plotArea,r=o.opacity,n=o.background,i=o.border;void 0===i&&(i={}),""!==(e=n)&&null!==e&&"none"!==e&&"transparent"!==e&&Lt(e)||(n=L,r=0);var a=this._bgVisual=new $.drawing.MultiPath({fill:{color:n,opacity:r},stroke:{color:i.width?i.color:"",width:i.width,dashType:i.dashType},zIndex:-1});this.addBackgroundPaths(a),this.appendVisual(a)},e.prototype.pointsByCategoryIndex=function(t){var e=this.charts,o=[];if(null!==t)for(var r=0;r<e.length;r++)if("_navigator"!==e[r].pane.options.name){var n=e[r].categoryPoints[t];if(n&&n.length)for(var i=0;i<n.length;i++){var a=n[i];a&&Lt(a.value)&&null!==a.value&&o.push(a)}}return o},e.prototype.pointsBySeriesIndex=function(t){return this.filterPoints((function(e){return e.series.index===t}))},e.prototype.pointsByPointIndex=function(t){return this.filterPoints((function(e){return e.getIndex()===t}))},e.prototype.pointsBySeriesName=function(t){return this.filterPoints((function(e){return e.series.name===t}))},e.prototype.filterPoints=function(t){for(var e=this.charts,o=[],r=0;r<e.length;r++)for(var n=e[r].points,i=0;i<n.length;i++){var a=n[i];a&&!1!==a.visible&&t(a)&&o.push(a)}return o},e.prototype.findPoint=function(t){for(var e=this.charts,o=0;o<e.length;o++)for(var r=e[o].points,n=0;n<r.length;n++){var i=r[n];if(i&&!1!==i.visible&&t(i))return i}},e.prototype.paneByPoint=function(t){for(var e=this.panes,o=0;o<e.length;o++){var r=e[o];if(r.box.containsPoint(t))return r}},e.prototype.detachLabels=function(){var t=this.groupAxes(this.panes),e=t.x,o=t.y;this.detachAxisGroupLabels(o,e),this.detachAxisGroupLabels(e,o)},e.prototype.detachAxisGroupLabels=function(t,e){for(var o=0,r=0;r<t.length;r++){var n=t[r],i=n.pane,a=zc(e,i)||e[0],s=r+o,c=this.createLabelAxis(n,s,a);if(c){o++;var l=i.axes.indexOf(n)+o;i.appendAxisAt(c,l)}}},e.prototype.createLabelAxis=function(t,e,o){var r=t.options.labels,n=r.position,i=n!==b&&n!==k,a=r.visible;if(i||!1===a)return null;var s=this.groupAxes(this.panes),c=o.options.vertical?s.x:s.y,l=this.axisCrossingValues(o,c),h=n===b,u=o.range(),p=h?u.max:u.min;if(Kt(l[e],u.min,u.max)-p==0)return null;l.splice(e+1,0,p),o.options.axisCrossingValues=l;var d=t.clone();return t.clear(),d.options.name=void 0,d.options.line.visible=!1,d.options.crosshair=void 0,d.options.notes=void 0,d.options.plotBands=void 0,d},e.prototype.isTrendline=function(t){return t&&Ot(t.type,Qi)},e.prototype.trendlineFactory=function(){},e.prototype.createTrendlineSeries=function(){var t=this,e=[];return this.series=this.series.map((function(o){if(!t.isTrendline(o))return o;var r=t.seriesByName(o.for);if(!r)throw new Error('Invalid Configuration: Unable to locate linked series "'+o.for+'" for trendline "'+o.name+'".');var n=Yn.current.valueFields(r),i=Ut(n),a=t.trendlineFactory(Object.assign({},{field:i},o),r);return a&&(!1===r.visible&&(a.visible=!1),a.color===C&&(a.color=r.color),e.push(a)),a})).filter((function(t){return null!==t})),e},e.prototype.seriesByName=function(t){return this.series.find((function(e){return e.name===t}))},e.prototype.getFirstPoint=function(){return this.pointsBySeriesIndex(0)[0]},e.prototype.getPointBelow=function(t){return this._getNextPoint(t,this._pointsByVertical,1)},e.prototype.getPointAbove=function(t){return this._getNextPoint(t,this._pointsByVertical,-1)},e.prototype.getPointToTheRight=function(t){return this._getNextPoint(t,this._pointsByHorizontal,1)},e.prototype.getPointToTheLeft=function(t){return this._getNextPoint(t,this._pointsByHorizontal,-1)},e.prototype._getNextPoint=function(t,e,o){var r=this,n=e.call(this,t),i=n.indexOf(t)+o,a=function(o){var n,i=0;do{i+=o,n=e.call(r,t,i)}while(0===n.length);return n};return i<0?(n=a(-1)).at(-1):i>=n.length?(n=a(1)).at(0):n[i]},e.prototype._pointsByVertical=function(t){return this.pointsByPointIndex(t.getIndex())},e.prototype._pointsByHorizontal=function(t,e){void 0===e&&(e=0);var o=tt(t.series.index+e,this.series.length);return this.pointsBySeriesIndex(o)},e}(Mo);function Oc(t){return!t.pane.axes.some((function(e){return e.options.vertical===t.options.vertical&&e!==t&&!1!==e.options.visible}))}function Sc(t){for(var e,o=t.length,r=0;r<o;r++){var n=t[r],i=!1!==n.options.visible;if(i||Oc(n)){var a=i?n.contentBox():n.lineBox();e?e.wrap(a):e=a.clone()}}return e||new yo}function zc(t,e){for(var o=0;o<t.length;o++){var r=t[o];if(r&&r.pane===e)return r}}var Mc=function(t){return t.reduce((function(t,e){return t.concat(e.axes)}),[])};Qt(Cc,{series:[],plotArea:{margin:{}},background:"",border:{color:h,width:0},paneDefaults:{title:{}},legend:{inactiveItems:{labels:{color:"#919191"},markers:{color:"#919191"}}}});const Pc=Cc;var Vc={hover:function(t,e){this._dispatchEvent(t,e,na)},click:function(t,e){this._dispatchEvent(t,e,"plotAreaClick")}};const Ac=Vc;var jc=function(t){function e(e,o,r){t.call(this);var n=o.canonicalFields(e),i=o.valueFields(e),a=o.sourceFields(e,n),s=this._seriesFields=[],c=r.query(e.type),l=e.aggregate||c;this._series=e,this._binder=o;for(var h=0;h<n.length;h++){var u=n[h],p=void 0;if(at(l))p=l[u];else{if(0!==h&&!Ot(u,i))break;p=l}p&&s.push({canonicalName:u,name:a[h],transform:et(p)?p:$n[p]})}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.aggregatePoints=function(t,e){var o=this._series,r=this._seriesFields,n=this._bindPoints(t||[]),i=n.dataItems[0],a={};if(i&&!Y(i)&&!F(i)){var s=function(){};s.prototype=i,a=new s}for(var c=0;c<r.length;c++){var l=r[c],h=this._bindField(n.values,l.canonicalName),u=l.transform(h,o,n.dataItems,e);if(!(null===u||!at(u)||Lt(u.length)||u instanceof Date)){a=u;break}Lt(u)&&kc(l.name,a,u)}return a},e.prototype._bindPoints=function(t){for(var e=this._binder,o=this._series,r=[],n=[],i=0;i<t.length;i++){var a=t[i];r.push(e.bindPoint(o,a)),n.push(o.data[a])}return{values:r,dataItems:n}},e.prototype._bindField=function(t,e){for(var o=[],r=t.length,n=0;n<r;n++){var i,a=t[n],s=a.valueFields;i=Lt(s[e])?s[e]:a.fields[e],o.push(i)}return o},e}($.Class);function kc(t,e,o){var r=e,n=t;if(t.indexOf(".")>-1){for(var i=t.split(".");i.length>1;)n=i.shift(),Lt(r[n])||(r[n]={}),r=r[n];n=i.shift()}r[n]=o}const Hc=jc;var Ic=function(t){function e(){t.call(this),this._defaults={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e){for(var o=0;o<t.length;o++)this._defaults[t[o]]=e},e.prototype.query=function(t){return this._defaults[t]},e}($.Class);Ic.current=new Ic;const Bc=Ic;var Lc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createLabel=function(){var t=this.options.labels,e=it({},t,t.from),o=it({},t,t.to);e.visible&&(this.labelFrom=this.createLabelElement(e),this.append(this.labelFrom)),o.visible&&(this.labelTo=this.createLabelElement(o),this.append(this.labelTo))},e.prototype.reflow=function(t){this.render();var e=this,o=e.labelFrom,r=e.labelTo,n=e.value;this.box=t,o&&(o.options.aboveAxis=n.from>n.to,o.reflow(t)),r&&(r.options.aboveAxis=n.to>n.from,r.reflow(t)),this.note&&this.note.reflow(t)},e}(Hs);Lc.prototype.defaults=it({},Lc.prototype.defaults,{labels:{format:"{0} - {1}"},tooltip:{format:"{1}"}});const Tc=Lc;var Ec=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointType=function(){return Tc},e.prototype.pointValue=function(t){return t.valueFields},e.prototype.formatPointValue=function(t,e){return null===t.value.from&&null===t.value.to?"":this.chartService.format.auto(e,t.value.from,t.value.to)},e.prototype.plotRange=function(t){return t?[t.value.from,t.value.to]:0},e.prototype.updateRange=function(t,e){var o=e.series.axis,r=t.from,n=t.to,i=this.valueAxisRanges[o];null!==t&&Y(r)&&Y(n)&&((i=this.valueAxisRanges[o]=i||{min:S,max:z}).min=Math.min(i.min,r),i.max=Math.max(i.max,r),i.min=Math.min(i.min,n),i.max=Math.max(i.max,n))},e.prototype.aboveAxis=function(t){var e=t.value;return e.from<e.to},e}(Rs);Ec.prototype.plotLimits=Za.prototype.plotLimits;const Dc=Ec;var Nc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.aliasFor=function(){return this.parent},e}(os);const Rc=Nc;var Fc="auto",Uc=function(t){function e(e,o){t.call(this),this.value=e,this.options=o,this.aboveAxis=Yt(this.options.aboveAxis,!0),this.tooltipTracking=!0,this._id=Pe(),this.initLabelsFormat()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){if(!this._rendered){this._rendered=!0;var t=this.options,e=t.markers,o=t.labels,r=this.value,n=this.fromPoint=new Rc(r,it({},this.options,{labels:o.from,markers:e.from})),i=this.toPoint=new Rc(r,it({},this.options,{labels:o.to,markers:e.to}));this.copyFields(n),this.copyFields(i),this.append(n),this.append(i)}},e.prototype.reflow=function(t){this.render();var e=t.from,o=t.to;this.positionLabels(e,o),this.fromPoint.reflow(e),this.toPoint.reflow(o),this.box=this.fromPoint.markerBox().clone().wrap(this.toPoint.markerBox())},e.prototype.createHighlight=function(){var t=new $.drawing.Group;return t.append(this.fromPoint.createHighlight()),t.append(this.toPoint.createHighlight()),t},e.prototype.highlightVisual=function(){return this.visual},e.prototype.highlightVisualArgs=function(){return{options:this.options,from:this.fromPoint.highlightVisualArgs(),to:this.toPoint.highlightVisualArgs()}},e.prototype.createFocusHighlight=function(){var t=new $.drawing.Group;return t.append(this.fromPoint.createFocusHighlight()),t.append(this.toPoint.createFocusHighlight()),t},e.prototype.tooltipAnchor=function(){var t=this.owner.pane.clipBox();if(!t||t.overlaps(this.box)){var e,o,r,n=this.box,i=n.center(),a=O;return this.options.vertical?(e=i.x,o=n.y1-5,r=u):(e=n.x2+5,o=i.y,r=p),{point:new fo(e,o),align:{horizontal:a,vertical:r}}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.unclipElements=function(){this.fromPoint.unclipElements(),this.toPoint.unclipElements()},e.prototype.initLabelsFormat=function(){var t=this.options.labels;t.format||(t.from&&t.from.format||(t.from=Object.assign({},t.from,{format:"{0}"})),t.to&&t.to.format||(t.to=Object.assign({},t.to,{format:"{1}"})))},e.prototype.positionLabels=function(t,e){var o,r,n=this.options,i=n.labels,a=n.vertical;i.position===Fc&&(a?e.y1<=t.y1?(r=li,o=hi):(r=hi,o=li):e.x1<=t.x1?(r=O,o=A):(r=A,o=O),i.from&&i.from.position||(this.fromPoint.options.labels.position=o),i.to&&i.to.position||(this.toPoint.options.labels.position=r))},e.prototype.copyFields=function(t){t.dataItem=this.dataItem,t.category=this.category,t.series=this.series,t.color=this.color,t.owner=this.owner},e.prototype.focusVisual=function(){this.fromPoint.focusVisual()},e.prototype.clearFocusFromVisual=function(){this.toPoint.clearFocusFromVisual()},e.prototype.getIndex=function(){return this.categoryIx},e}(Mo);it(Uc.prototype,Ja),it(Uc.prototype,ts),Uc.prototype.defaults={markers:{visible:!1,background:L,size:8,type:d,border:{width:2},opacity:1},labels:{visible:!1,margin:ut(3),padding:ut(4),animation:{type:oi,delay:ei},position:Fc},notes:{label:{}},highlight:{markers:{border:{color:L,width:2}},zIndex:100},tooltip:{format:"{0} - {1}"},accessibility:{role:ga,className:ya,ariaRoleDescription:ba}};const Kc=Uc;var qc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.toGeometryPoints(this.toPoints()))},e.prototype.stackSegments=function(){var t=this.fromSegments;return this.fromSegments||(t=this.fromSegments=this.segmentsFromPoints(this.toGeometryPoints(this.fromPoints().reverse()))),t},e.prototype.createStroke=function(t){var e=new $.drawing.Path(t),o=new $.drawing.Path(t);e.segments.push.apply(e.segments,this.strokeSegments()),o.segments.push.apply(o.segments,this.stackSegments()),this.visual.append(e),this.visual.append(o)},e.prototype.hasStackSegment=function(){return!0},e.prototype.fromPoints=function(){return this.linePoints.map((function(t){return t.fromPoint}))},e.prototype.toPoints=function(){return this.linePoints.map((function(t){return t.toPoint}))},e}(xs);const $c=qc;var Xc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.createCurveSegments(this.toPoints())},e.prototype.stackSegments=function(){var t=this.fromSegments;return this.fromSegments||(t=this.fromSegments=this.createCurveSegments(this.fromPoints().reverse())),t},e.prototype.createCurveSegments=function(t){return(new Tn).process(this.toGeometryPoints(t))},e}($c);const Gc=Xc;var Yc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.calculateStepPoints(this.toPoints()))},e.prototype.stackSegments=function(){var t=this.fromSegments;return this.fromSegments||(t=this.fromSegments=this.segmentsFromPoints(this.calculateStepPoints(this.fromPoints()))).reverse(),t},e}($c);it(Yc.prototype,ss);const Wc=Yc;var Zc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.renderSegments()},e.prototype.pointType=function(){return Kc},e.prototype.createPoint=function(t,e){var o=e.series,r=e.seriesIx,n=t.valueFields;if(!Ua(n.from)&&!Ua(n.to)){if(this.seriesMissingValues(o)!==si)return null;n={from:0,to:0}}var i=this.pointOptions(o,r);i=this.evalPointOptions(i,n,e);var a=t.fields.color||o.color;et(o.color)&&(a=i.color);var s=new Kc(n,i);return s.color=a,this.append(s),s},e.prototype.createSegment=function(t,e,o){var r=(e.line||{}).style;return new("smooth"===r?Gc:"step"===r?Wc:$c)(t,e,o)},e.prototype.plotRange=function(t,e){return t?[t.value.from,t.value.to]:[e,e]},e.prototype.valueSlot=function(t,e){var o=t.getSlot(e[0],e[0],!this.options.clip),r=t.getSlot(e[1],e[1],!this.options.clip);if(o&&r)return{from:o,to:r}},e.prototype.pointSlot=function(t,e){var o,r,n=e.from,i=e.to;return this.options.invertAxes?(o=new yo(n.x1,t.y1,n.x2,t.y2),r=new yo(i.x1,t.y1,i.x2,t.y2)):(o=new yo(t.x1,n.y1,t.x2,n.y2),r=new yo(t.x1,i.y1,t.x2,i.y2)),{from:o,to:r}},e.prototype.addValue=function(e,o){var r=e.valueFields;Y(r.from)||(r.from=r.to),Y(r.to)||(r.to=r.from),t.prototype.addValue.call(this,e,o)},e.prototype.updateRange=function(t,e){if(null!==t&&Y(t.from)&&Y(t.to)){var o=e.series.axis,r=this.valueAxisRanges[o]=this.valueAxisRanges[o]||{min:S,max:z},n=t.from,i=t.to;r.min=Math.min(r.min,n,i),r.max=Math.max(r.max,n,i)}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.from,o.to)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++){var r=t[o];r&&(e.push((r.fromPoint||{}).marker),e.push((r.toPoint||{}).marker))}return e.concat(this._segments)},e}(Za);it(Zc.prototype,ds,ms);const Qc=Zc;var Jc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this,o=e.options,r=e.value,n=e.owner.seriesValueAxis(o),i=[],a=[],s=[],c=n.getSlot(r.low,r.high),l=n.getSlot(r.open,r.open),h=n.getSlot(r.close,r.close);l.x1=h.x1=c.x1=t.x1,l.x2=h.x2=c.x2=t.x2;var u=c.center().x;i.push([l.x1,l.y1]),i.push([u,l.y1]),a.push([u,h.y1]),a.push([h.x2,h.y1]),s.push([u,c.y1]),s.push([u,c.y2]),this.lines=[i,a,s],this.box=c.clone().wrap(l.clone().wrap(h)),this.reflowNote()},e.prototype.createBody=function(){},e}(Us);const tl=Jc;var el=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointType=function(){return tl},e}(qs);const ol=el;var rl=function(t){function e(e,o,r){t.call(this),this.from=e,this.to=o,this.series=r}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.linePoints=function(){var t=this.from,e=this.from.box,o=this.to.box,r=[];if(t.isVertical){var n=t.aboveAxis?e.y1:e.y2;r.push([e.x1,n],[o.x2,n])}else{var i=t.aboveAxis?e.x2:e.x1;r.push([i,e.y1],[i,o.y2])}return r},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e=this.series.line||{},o=$.drawing.Path.fromPoints(this.linePoints(),{stroke:{color:e.color,width:e.width,opacity:e.opacity,dashType:e.dashType}});X(o),this.visual.append(o)},e}(Mo);Qt(rl,{animation:{type:oi,delay:ei}});const nl=rl;var il=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.createSegments()},e.prototype.traverseDataPoints=function(t){for(var e=this.options.series,o=Ba(e),r=!this.options.invertAxes,n=0;n<e.length;n++)for(var i=e[n],a=0,s=0,c=0;c<o;c++){var l=Yn.current.bindPoint(i,c),h=l.valueFields.value,u=l.fields.summary,p=a,d=void 0;u?"total"===u.toLowerCase()?(l.valueFields.value=a,p=0,d=a):(l.valueFields.value=s,d=p-s,s=0):Y(h)&&(s+=h,d=a+=h),t(l,{category:this.categoryAxis.categoryAt(c),categoryIx:c,series:i,seriesIx:n,total:a,runningTotal:s,from:p,to:d,isVertical:r})}},e.prototype.updateRange=function(e,o){t.prototype.updateRange.call(this,{value:o.to},o)},e.prototype.aboveAxis=function(t){return t.value>=0},e.prototype.plotRange=function(t){return[t.from,t.to]},e.prototype.createSegments=function(){for(var t=this.options.series,e=this.seriesPoints,o=this.segments=[],r=0;r<t.length;r++){var n=t[r],i=e[r];if(i)for(var a=void 0,s=0;s<i.length;s++){var c=i[s];if(c&&a){var l=new nl(a,c,n);o.push(l),this.append(l)}a=c}}},e}(Rs);const al=il,sl=function(t,e,o){var r=t[String(e)];return r?r(o):null},cl=function(t,e){for(var o,r,n=0,i=0,a=0,s=0,c=0,l=Number.MAX_VALUE,h=Number.MIN_VALUE,u=0;u<t.length;u++){var p=e(t[u]),d=p.xValue,v=p.yValue;isFinite(d)&&null!==d&&isFinite(v)&&null!==v&&(l=Math.min(d,l),h=Math.max(d,h),c++,n+=d,i+=v,a+=Math.pow(d,2),s+=d*v)}return c>0&&(r=(i-(o=(c*s-n*i)/(c*a-Math.pow(n,2)))*n)/c),{slope:o,intercept:r,count:c,xMin:l,xMax:h}},ll=function(t,e){return t.every((function(t){var o=t.valueFields;return!Ua(o[e])||o[e]>0}))},hl=function(t,e){for(var o=[],r=e.totalRangeIndices(),n=e.currentRangeIndices(),i={min:Math.floor(Math.max(n.min-1,r.min)),max:Math.ceil(Math.min(n.max+2,r.max))},a=i.min;a<i.max;a++){var s=a+1;o[a]={category:e.categoryAt(a,!0),value:t(s)}}return o};const ul=function(t,e,o){for(var r=[],n=[],i=Math.max(2,o)-1,a=0,s=0,c=0;c<t.length;c++){var l=e(t[c]),h=l.xValue,u=l.yValue;if(isFinite(u)&&null!==u?(n.push(u),s+=u,a=Math.max(c,a)):n.push(null),c>=i){var p=n.filter((function(t){return null!==t})).length,d=n.shift()||0;if(p>0){var v=s/p;r.push([h,v]),s-=d;continue}}r.push([h,null])}return r.slice(0,a+1)};const pl=function(t,e,o){for(var r=Math.min(Math.max(o||1,1),6)+1,n=new Oe,i=new Oe,a=0,s=Number.MAX_VALUE,c=Number.MIN_VALUE,l=function(t){return t},h=[],u=0;u<t.length;u++){var p=e(t[u]),d=p.xValue,v=p.yValue;if(isFinite(d)&&null!==d&&isFinite(v)&&null!==v){s=Math.min(d,s),c=Math.max(d,c),a++,i.set(u,0,v),n.set(u,0,1),n.set(u,1,d);for(var f=2;f<=r;f++)n.set(u,f,Math.pow(n.get(u,1),f))}else n.set(u,0,0)}return n.width=Math.min(r,a),a>0&&(h=function(t,e){for(var o=t.transpose(),r=o.multiply(t).inverse().multiply(o).multiply(e),n=[],i=0;i<r.height;i++)n.push(r.get(i,0));return n}(n,i),l=function(t){return h.reduce((function(e,o,r){return e+o*Math.pow(t,r)}),0)}),{coefficients:h,count:a,valueMapper:l,xMin:s,xMax:c}};var dl={};dl[$i]=function(t){var e=t.options,o=t.categoryAxis,r=function(t){var e=t.categoryAxis,o=t.options,r=(0,t.seriesValues)();if(!ll(r,o.field))return null;var n,i=cl(r,(n=o.field,function(t){var e=t.categoryIx,o=t.valueFields;return{xValue:e+1,yValue:Math.log(o[n])}})),a=i.slope,s=i.intercept;if(i.count>0){var c=Math.exp(s),l=a;return hl((function(t){return c*Math.exp(l*t)}),e)}return null}({seriesValues:t.seriesValues,categoryAxis:o,options:e});return r?Object.assign({},e,{type:"line",data:r,categoryField:"category",field:"value"}):null},dl[Xi]=function(t){var e=t.options,o=t.categoryAxis,r=function(t){var e,o=t.categoryAxis,r=t.options,n=cl((0,t.seriesValues)(),(e=r.field,function(t){return{xValue:t.categoryIx+1,yValue:t.valueFields[e]}})),i=n.slope,a=n.intercept;return n.count>0?hl((function(t){return i*t+a}),o):null}({seriesValues:t.seriesValues,categoryAxis:o,options:e});return r?Object.assign({},e,{type:"line",data:r,categoryField:"category",field:"value"}):null},dl[Gi]=function(t){var e=t.options,o=t.categoryAxis,r=function(t){var e,o=t.categoryAxis,r=t.options,n=cl((0,t.seriesValues)(),(e=r.field,function(t){var o=t.categoryIx,r=t.valueFields;return{xValue:Math.log(o+1),yValue:r[e]}})),i=n.slope,a=n.intercept;if(n.count>0){var s=i,c=a;return hl((function(t){return s*Math.log(t)+c}),o)}return null}({seriesValues:t.seriesValues,categoryAxis:o,options:e});return r?Object.assign({},e,{type:"line",data:r,categoryField:"category",field:"value"}):null},dl[Yi]=function(t){var e=t.options,o=function(t){var e=t.categoryAxis,o=function(t){var e,o=t.options,r=t.categoryAxis,n=t.seriesValues,i=(o.trendline||{}).period||2,a=r.totalRangeIndices(),s=r.currentRangeIndices(),c={min:Math.floor(Math.max(s.min-i,a.min)),max:Math.ceil(Math.min(s.max+i+2,a.max))};return ul(n(c),(e=o.field,function(t){return{xValue:t.categoryIx,yValue:t.valueFields[e]}}),i)}(t),r=[];return o.forEach((function(t){var o=t[0],n=t[1];r[o]={category:e.categoryAt(o,!0),value:n}})),r.length>0?r:null}(t);return o?Object.assign({},e,{type:"line",data:o,categoryField:"category",field:"value"}):null},dl[Wi]=function(t){var e=t.options,o=t.categoryAxis,r=function(t){var e,o=t.seriesValues,r=t.categoryAxis,n=t.options,i=(n.trendline||{}).order,a=pl(o(),(e=n.field,function(t){return{xValue:t.categoryIx+1,yValue:t.valueFields[e]}}),i),s=a.count,c=a.valueMapper;return s>0?hl((function(t){return c(t)}),r):null}({seriesValues:t.seriesValues,categoryAxis:o,options:e});return r?Object.assign({},e,{type:"line",data:r,categoryField:"category",field:"value"}):null},dl[Zi]=function(t){var e=t.options,o=t.categoryAxis,r=function(t){var e=t.categoryAxis,o=t.options,r=(0,t.seriesValues)();if(!ll(r,o.field))return null;var n,i=cl(r,(n=o.field,function(t){var e=t.categoryIx,o=t.valueFields;return{xValue:Math.log(e+1),yValue:Math.log(o[n])}})),a=i.slope,s=i.intercept;if(i.count>0){var c=Math.exp(s),l=a;return hl((function(t){return c*Math.pow(t,l)}),e)}return null}({seriesValues:t.seriesValues,categoryAxis:o,options:e});return r?Object.assign({},e,{type:"line",data:r,categoryField:"category",field:"value"}):null};const vl=dl;var fl=[di,Di,Ii,Ui],ml=[Si,Fi].concat(fl),gl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(t){if(this.namedCategoryAxes={},this.namedValueAxes={},this.valueAxisRangeTracker=new Ps,this._seriesPointsCache={},this._currentPointsCache={},t.length>0){this.invertAxes=Ot(t[0].type,[vi,gi,Fi,Di,Ui,Bi,Oi,Ni]);for(var e=0;e<t.length;e++){var o=t[e].stack;if(o&&"100%"===o.type){this.stack100=!0;break}}}},e.prototype.render=function(t){void 0===t&&(t=this.panes),this.series=[].concat(this.originalSeries),this.createCategoryAxes(t),this.aggregateCategories(t),this.createTrendlineSeries(t),this.createCategoryAxesLabels(t),this.createCharts(t),this.createValueAxes(t)},e.prototype.removeAxis=function(e){var o=e.options.name;t.prototype.removeAxis.call(this,e),e instanceof Jr?delete this.namedCategoryAxes[o]:(this.valueAxisRangeTracker.reset(o),delete this.namedValueAxes[o]),e===this.categoryAxis&&delete this.categoryAxis,e===this.valueAxis&&delete this.valueAxis},e.prototype.trendlineFactory=function(t,e){var o=this.seriesCategoryAxis(t),r=this.seriesValues.bind(this,e.index),n=sl(vl,t.type,{options:t,categoryAxis:o,seriesValues:r});return n?(n.categoryAxis=e.categoryAxis,n.valueAxis=e.valueAxis,this.filterSeries(n,o)):n},e.prototype.trendlineAggregateForecast=function(){return this.series.map((function(t){return(t.trendline||{}).forecast})).filter((function(t){return void 0!==t})).reduce((function(t,e){return{before:Math.max(t.before,e.before||0),after:Math.max(t.after,e.after||0)}}),{before:0,after:0})},e.prototype.seriesValues=function(t,e){var o=[],r=this.srcSeries[t],n=this.seriesCategoryAxis(r);La(n.options.type,m)&&(this._seriesPointsCache={},this._currentPointsCache={},n.options.dataItems=[],r=this.aggregateSeries(r,n,n.totalRangeIndices()));for(var i=e?e.min:0,a=e?e.max:r.data.length,s=i;s<a;s++){var c=this.bindPoint(r,s);o.push({categoryIx:s,category:c.fields.category,valueFields:c.valueFields})}return o},e.prototype.createCharts=function(t){for(var e=this,o=this.groupSeriesByPane(),r=0;r<t.length;r++){var n=t[r],i=o[n.options.name||"default"]||[];e.addToLegend(i);var a=e.filterVisibleSeries(i);if(a)for(var s=e.groupSeriesByCategoryAxis(a),c=0;c<s.length;c++)e.createChartGroup(s[c],n)}},e.prototype.createChartGroup=function(t,e){this.createAreaChart(Da(t,[di,Di]),e),this.createRangeAreaChart(Da(t,[Ii,Ui]),e),this.createBarChart(Da(t,[bi,vi]),e),this.createRangeBarChart(Da(t,[Li,Bi]),e),this.createBulletChart(Da(t,[gi,Ri]),e),this.createCandlestickChart(Da(t,yi),e),this.createBoxPlotChart(Da(t,[fi,Ni]),e),this.createOHLCChart(Da(t,zi),e),this.createWaterfallChart(Da(t,[Ki,Oi]),e),this.createLineChart(Da(t,[Si,Fi]),e)},e.prototype.aggregateCategories=function(t){var e=this,o=[].concat(this.series),r=[];this._currentPointsCache={},this._seriesPointsCache=this._seriesPointsCache||{};for(var n=0;n<o.length;n++){var i=o[n];if(!e.isTrendline(i)){var a=e.seriesCategoryAxis(i),s=e.findPane(a.options.pane);i=(La(a.options.type,m)||i.categoryField)&&Ot(s,t)?e.aggregateSeries(i,a,a.currentRangeIndices()):e.filterSeries(i,a)}r.push(i)}this._seriesPointsCache=this._currentPointsCache,this._currentPointsCache=null,this.srcSeries=o,this.series=r},e.prototype.filterSeries=function(t,e){var o=(t.data||{}).length;if(e._seriesMax=Math.max(e._seriesMax||0,o),!Lt(e.options.min)&&!Lt(e.options.max))return t;var r=e.currentRangeIndices(),n=Ot(t.type,ml),i=it({},t);return i.data=(i.data||[]).slice(r.min,r.max+1),n&&Ya(i,r,o,(function(o){return{item:t.data[o],category:e.categoryAt(o,!0),categoryIx:o-r.min}}),(function(e){return Lt(t.data[e])})),i},e.prototype.clearSeriesPointsCache=function(){this._seriesPointsCache={}},e.prototype.seriesSourcePoints=function(t,e){var o=t.index+";"+e.categoriesHash();if(this._seriesPointsCache&&this._seriesPointsCache[o])return this._currentPointsCache[o]=this._seriesPointsCache[o],this._seriesPointsCache[o];var r=e.options,n=r.srcCategories,i=La(r.type,m),a=t.data,s=[];i||e.indexCategories();for(var c=0;c<a.length;c++){var l=Yn.current.bindPoint(t,c).fields.category;if(i&&(l=Ra(l,a[c],this.chartService.intl)),Lt(l)||(l=n[c]),Lt(l)&&null!==l){var h=e.totalIndex(l);s[h]=s[h]||{items:[],category:l},s[h].items.push(c)}}return this._currentPointsCache[o]=s,s},e.prototype.aggregateSeries=function(t,e,o){if(!t.data.length)return t;for(var r=this.seriesSourcePoints(t,e),n=it({},t),i=new Hc(it({},t),Yn.current,Bc.current),a=n.data=[],s=e.options.dataItems||[],c=function(t){var n=t-o.min,a=r[t];if(a||(a=r[t]={}),a.categoryIx=n,!a.item){var s=e.categoryAt(t,!0);a.category=s,a.item=i.aggregatePoints(a.items,s)}return a},l=o.min;l<=o.max;l++){var h=c(l);a[h.categoryIx]=h.item,h.items&&h.items.length&&(s[h.categoryIx]=h.item)}return Ot(n.type,ml)&&Ya(n,o,e.totalCount(),c,(function(t){return r[t]})),e.options.dataItems=s,n},e.prototype.appendChart=function(e,o){var r=e.options.series,n=this.seriesCategoryAxis(r[0]),i=n.options.categories,a=Math.max(0,Ba(r)-i.length);if(a>0)for(i=n.options.categories=n.options.categories.slice(0);a--;)i.push("");this.valueAxisRangeTracker.update(e.valueAxisRanges),t.prototype.appendChart.call(this,e,o)},e.prototype.seriesPaneName=function(t){var e=this.options,o=t.axis,r=xt([].concat(e.valueAxis),(function(t){return t.name===o}))[0],n=((e.panes||[{}])[0]||{}).name||"default";return(r||{}).pane||n},e.prototype.seriesCategoryAxis=function(t){var e=t.categoryAxis,o=e?this.namedCategoryAxes[e]:this.categoryAxis;if(!o)throw new Error("Unable to locate category axis with name "+e);return o},e.prototype.stackableChartOptions=function(t,e){var o=t.some((function(t){return t.stack})),r=t.some((function(t){return t.stack&&"100%"===t.stack.type})),n=e.options.clip;return{defaultStack:t[0].stack,isStacked:o,isStacked100:r,clip:n}},e.prototype.groupSeriesByCategoryAxis=function(t){for(var e=[],o={},r=0;r<t.length;r++){var n=t[r].categoryAxis||"$$default$$";_e(o,n)||(o[n]=!0,e.push(n))}for(var i=[],a=0;a<e.length;a++){var s=bl(t,e[a],a);0!==s.length&&i.push(s)}return i},e.prototype.createBarChart=function(t,e){if(0!==t.length){var o=t[0],r=new Rs(this,Object.assign({series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing},this.stackableChartOptions(t,e)));this.appendChart(r,e)}},e.prototype.createRangeBarChart=function(t,e){if(0!==t.length){var o=t[0],r=new Dc(this,{series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing});this.appendChart(r,e)}},e.prototype.createBulletChart=function(t,e){if(0!==t.length){var o=t[0],r=new uc(this,{series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing,clip:e.options.clip});this.appendChart(r,e)}},e.prototype.createLineChart=function(t,e){if(0!==t.length){var o=new ys(this,Object.assign({invertAxes:this.invertAxes,series:t},this.stackableChartOptions(t,e)));this.appendChart(o,e)}},e.prototype.createAreaChart=function(t,e){if(0!==t.length){var o=new zs(this,Object.assign({invertAxes:this.invertAxes,series:t},this.stackableChartOptions(t,e)));this.appendChart(o,e)}},e.prototype.createRangeAreaChart=function(t,e){if(0!==t.length){var o=new Qc(this,{invertAxes:this.invertAxes,series:t,clip:e.options.clip});this.appendChart(o,e)}},e.prototype.createOHLCChart=function(t,e){if(0!==t.length){var o=t[0],r=new ol(this,{invertAxes:this.invertAxes,gap:o.gap,series:t,spacing:o.spacing,clip:e.options.clip});this.appendChart(r,e)}},e.prototype.createCandlestickChart=function(t,e){if(0!==t.length){var o=t[0],r=new qs(this,{invertAxes:this.invertAxes,gap:o.gap,series:t,spacing:o.spacing,clip:e.options.clip});this.appendChart(r,e)}},e.prototype.createBoxPlotChart=function(t,e){if(0!==t.length){var o=t[0],r=new Zs(this,{invertAxes:this.invertAxes,gap:o.gap,series:t,spacing:o.spacing,clip:e.options.clip});this.appendChart(r,e)}},e.prototype.createWaterfallChart=function(t,e){if(0!==t.length){var o=t[0],r=new al(this,{series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing});this.appendChart(r,e)}},e.prototype.axisRequiresRounding=function(t,e){for(var o=Da(this.series,qi),r=0;r<this.series.length;r++){var n=this.series[r];if(Ot(n.type,fl)){var i=n.line;i&&i.style===pi&&o.push(n)}}for(var a=0;a<o.length;a++){var s=o[a].categoryAxis||"";if(s===t||!s&&0===e)return!0}},e.prototype.aggregatedAxis=function(t,e){for(var o=this.series,r=0;r<o.length;r++){var n=o[r].categoryAxis||"";if((n===t||!n&&0===e)&&o[r].categoryField)return!0}},e.prototype.createCategoryAxesLabels=function(){for(var t=this.axes,e=0;e<t.length;e++)t[e]instanceof Jr&&t[e].createLabels()},e.prototype.createCategoryAxes=function(t){for(var e=this,o=this.invertAxes,r=[].concat(this.options.categoryAxis),n=[],i=0;i<r.length;i++){var a=r[i];if(Ot(e.findPane(a.pane),t)){var s=a.name,c=a.categories;void 0===c&&(c=[]),a=it({vertical:o,reverse:!o&&e.chartService.rtl,axisCrossingValue:o?S:0},a),Lt(a.justified)||(a.justified=e.isJustified()),e.axisRequiresRounding(s,i)&&(a.justified=!1);var l=void 0;if(Ka(a,c[0])?(a._forecast=e.trendlineAggregateForecast(),l=new ln(a,e.chartService)):l=new Jr(a,e.chartService),r[i].categories=l.options.srcCategories,s){if(e.namedCategoryAxes[s])throw new Error("Category axis with name "+s+" is already defined");e.namedCategoryAxes[s]=l}l.axisIndex=i,n.push(l),e.appendAxis(l)}}var h=this.categoryAxis||n[0];this.categoryAxis=h,o?this.axisY=h:this.axisX=h},e.prototype.isJustified=function(){for(var t=this.series,e=0;e<t.length;e++)if(!Ot(t[e].type,fl))return!1;return!0},e.prototype.createValueAxes=function(t){var e=this,o=this.valueAxisRangeTracker,r=o.query(),n=[].concat(this.options.valueAxis),i=this.invertAxes,a={vertical:!i,reverse:i&&this.chartService.rtl},s=[];this.stack100&&(a.roundToMajorUnit=!1,a.labels={format:"P0"});for(var c=0;c<n.length;c++){var l=n[c];if(Ot(e.findPane(l.pane),t)){var h=l.name,u=La(l.type,xa)?{min:.1,max:1}:{min:0,max:1},p=o.query(h)||r||u;0===c&&p&&r&&(p.min=Math.min(p.min,r.min),p.max=Math.max(p.max,r.max));var d=new(La(l.type,xa)?Cn:mn)(p.min,p.max,it({},a,l),e.chartService);if(h){if(e.namedValueAxes[h])throw new Error("Value axis with name "+h+" is already defined");e.namedValueAxes[h]=d}d.axisIndex=c,s.push(d),e.appendAxis(d)}}var v=this.valueAxis||s[0];this.valueAxis=v,i?this.axisX=v:this.axisY=v},e.prototype._dispatchEvent=function(t,e,o){var r=t._eventCoordinates(e),n=new fo(r.x,r.y),i=this.pointPane(n),a=[],s=[];if(i){for(var c=i.axes,l=0;l<c.length;l++){var h=c[l];h.getValue?ja(s,h.getValue(n)):ja(a,h.getCategory(n))}0===a.length&&ja(a,this.categoryAxis.getCategory(n)),a.length>0&&s.length>0&&t.trigger(o,{element:Rt(e),originalEvent:e,category:qa(a),value:qa(s)})}},e.prototype.pointPane=function(t){for(var e=this.panes,o=0;o<e.length;o++){var r=e[o];if(r.contentBox.containsPoint(t))return r}},e.prototype.updateAxisOptions=function(t,e){yl(this.options,t,e),yl(this.originalOptions,t,e)},e.prototype._pointsByVertical=function(t,e){return void 0===e&&(e=0),this.invertAxes?this._siblingsBySeriesIndex(t.series.index,e):this._siblingsByPointIndex(t.getIndex())},e.prototype._pointsByHorizontal=function(t,e){if(void 0===e&&(e=0),this.invertAxes)return this._siblingsByPointIndex(t.getIndex());var o=this._siblingsBySeriesIndex(t.series.index,e);return this.chartService.rtl?o.reverse():o},e.prototype._siblingsByPointIndex=function(t){for(var e=this.charts,o=[],r=0;r<e.length;r++){var n=e[r];if(!n.pane||"_navigator"!==n.pane.options.name){var i=n.points.filter((function(e){return e&&!1!==e.visible&&e.getIndex()===t}));o.push.apply(o,i.sort(this._getSeriesCompareFn(i[0])))}}return o},e.prototype._siblingsBySeriesIndex=function(t,e){var o=tt(t+e,this.series.length);return this.pointsBySeriesIndex(o)},e.prototype._getSeriesCompareFn=function(t){var e=this._isInStackedSeries(t);return e&&this.invertAxes||!e&&!this.invertAxes?function(t,e){return t.box.center().x-e.box.center().x}:function(t,e){return t.box.center().y-e.box.center().y}},e.prototype._isInStackedSeries=function(t){var e=Ot(t.series.type,[di,Di,Ii,Ui,Si,Fi,Hi,ji]),o=Ot(t.series.type,[bi,vi]);return e||o&&t.options.isStacked},e}(Pc);function yl(t,e,o){it([].concat(e instanceof Jr?t.categoryAxis:t.valueAxis)[e.axisIndex],o)}function bl(t,e,o){return xt(t,(function(t){return 0===o&&!t.categoryAxis||t.categoryAxis===e}))}Qt(gl,{categoryAxis:{},valueAxis:{}}),it(gl.prototype,Ac);const xl=gl;var wl=function(t){function e(){t.call(this),this._points=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._points=[]},e.prototype.show=function(t,e){var o=[].concat(t);this.hide();for(var r=0;r<o.length;r++){var n=o[r];n&&n.toggleHighlight&&n.hasHighlight()&&(this.togglePointHighlight(n,!0,e),this._points.push(n))}},e.prototype.togglePointHighlight=function(t,e,o){var r=(t.options.highlight||{}).toggle;if(r){var n={category:t.category,series:t.series,dataItem:t.dataItem,value:t.value,stackValue:t.stackValue,preventDefault:_l,visual:t.highlightVisual(),show:e};r(n),n._defaultPrevented||t.toggleHighlight(e,o)}else t.toggleHighlight(e,o)},e.prototype.hide=function(){for(var t=this._points;t.length;)this.togglePointHighlight(t.pop(),!1)},e.prototype.isHighlighted=function(t){for(var e=this._points,o=0;o<e.length;o++)if(t===e[o])return!0;return!1},e}($.Class);function _l(){this._defaultPrevented=!0}const Cl=wl;function Ol(t,e){var o=(e||"").toLowerCase(),r=t.event;return"none"===o&&!(r.ctrlKey||r.shiftKey||r.altKey)||r[o+"Key"]}function Sl(t){for(var e={},o=0;o<t.length;o++){var r=t[o];r.axis.options.name&&(e[r.axis.options.name]={min:r.range.min,max:r.range.max})}return e}var zl=function(t){function e(e,o){t.call(this),this.plotArea=e,this.options=it({},this.options,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.start=function(t){return this._active=Ol(t,this.options.key),this._active},e.prototype.move=function(t){if(this._active){var e=this.axisRanges=this._panAxes(t,E).concat(this._panAxes(t,D));if(e.length)return this.axisRanges=e,Sl(e)}},e.prototype.end=function(){var t=this._active;return this._active=!1,t},e.prototype.pan=function(){var t=this.plotArea,e=this.axisRanges;if(e.length){for(var o=0;o<e.length;o++){var r=e[o];t.updateAxisOptions(r.axis,r.range)}t.redraw(t.panes)}},e.prototype.destroy=function(){delete this.plotArea},e.prototype._panAxes=function(t,e){var o=this.plotArea,r=-t[e].delta,n=(this.options.lock||"").toLowerCase(),i=[];if(0!==r&&(n||"").toLowerCase()!==e)for(var a=o.axes,s=0;s<a.length;s++){var c=a[s];if(e===E&&!c.options.vertical||e===D&&c.options.vertical){var l=c.pan(r);l&&(l.limitRange=!0,i.push({axis:c,range:l}))}}return i},e}($.Class);zl.prototype.options={key:"none",lock:"none"};const Ml=zl;var Pl=function(t){function e(e,o){t.call(this),this.chart=e,this.options=it({},this.options,o),this.createElement()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createElement=function(){var t=this._marquee=document.createElement("div");t.className="k-marquee";var e=document.createElement("div");e.className="k-marquee-color",t.appendChild(e)},e.prototype.removeElement=function(){this._marquee.parentNode&&this._marquee.parentNode.removeChild(this._marquee)},e.prototype.setStyles=function(t){ht(this._marquee,t)},e.prototype.start=function(t){if(Ol(t,this.options.key)){var e=this.chart,o=e._eventCoordinates(t),r=this._zoomPane=e._plotArea.paneByPoint(o),n=r?r.chartsBox().clone():null;if(r&&n){var i=this._elementOffset();return n.translate(i.left,i.top),this._zoomPaneClipBox=n,document.body.appendChild(this._marquee),this.setStyles({left:t.pageX+1,top:t.pageY+1,width:0,height:0}),!0}}return!1},e.prototype._elementOffset=function(){var t=this.chart.element,e=ht(t,["paddingLeft","paddingTop"]),o=e.paddingLeft,r=e.paddingTop,n=Et(t);return{left:o+n.left,top:r+n.top}},e.prototype.move=function(t){this._zoomPane&&this.setStyles(this._selectionPosition(t))},e.prototype.end=function(t){if(this._zoomPane){var e=this._elementOffset(),o=this._selectionPosition(t);o.left-=e.left,o.top-=e.top;var r={x:o.left,y:o.top},n={x:o.left+o.width,y:o.top+o.height};return this._updateAxisRanges(r,n),this.removeElement(),delete this._zoomPane,Sl(this.axisRanges)}},e.prototype.zoom=function(){var t=this.axisRanges;if(t&&t.length){for(var e=this.chart._plotArea,o=0;o<t.length;o++){var r=t[o];e.updateAxisOptions(r.axis,r.range)}e.redraw(e.panes)}},e.prototype.destroy=function(){this.removeElement(),delete this._marquee,delete this.chart},e.prototype._updateAxisRanges=function(t,e){for(var o=(this.options.lock||"").toLowerCase(),r=[],n=this._zoomPane.axes,i=0;i<n.length;i++){var a=n[i],s=a.options.vertical;if((o!==E||s)&&(o!==D||!s)&&Lt(a.axisIndex)){var c=a.pointsRange(t,e);c&&r.push({axis:a,range:c})}}this.axisRanges=r},e.prototype._selectionPosition=function(t){var e=this._zoomPaneClipBox,o={x:t.x.startLocation,y:t.y.startLocation},r=t.x.location,n=t.y.location,i=(this.options.lock||"").toLowerCase(),a=Math.min(o.x,r),s=Math.min(o.y,n),c=Math.abs(o.x-r),l=Math.abs(o.y-n);return i===E&&(a=e.x1,c=e.width()),i===D&&(s=e.y1,l=e.height()),r>e.x2&&(c=e.x2-o.x),r<e.x1&&(c=o.x-e.x1),n>e.y2&&(l=e.y2-o.y),n<e.y1&&(l=o.y-e.y1),{left:Math.max(a,e.x1),top:Math.max(s,e.y1),width:c,height:l}},e}($.Class);Pl.prototype.options={key:"shift",lock:"none"};const Vl=Pl;var Al=function(t){function e(e,o){t.call(this),this.chart=e,this.options=it({rate:.3},this.options,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.updateRanges=function(t,e){for(var o=(this.options.lock||"").toLowerCase(),r=[],n=this.chart._plotArea.axes,i=0;i<n.length;i++){var a=n[i],s=a.options.vertical;if((o!==E||s)&&(o!==D||!s)&&a.zoomRange){var c=Kt(this.options.rate,.01,.9),l=a.zoomRange(-t*c,e);l&&r.push({axis:a,range:l})}}return this.axisRanges=r,Sl(r)},e.prototype.zoom=function(){var t=this.axisRanges,e=this.chart._plotArea;if(t&&t.length&&e.updateAxisOptions){for(var o=0;o<t.length;o++){var r=t[o];e.updateAxisOptions(r.axis,r.range)}e.redraw(e.panes)}},e.prototype.destroy=function(){delete this.chart},e}($.Class);const jl=Al;var kl=function(t){function e(e,o){t.call(this,e),this.chartService=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t,e=this.children,o=this.options,r=o.vertical;this.visual=new $.drawing.Layout(null,{spacing:r?0:o.spacing,lineSpacing:r?o.spacing:0,orientation:r?"vertical":R,reverse:o.rtl,alignItems:r?(t=o.rtl,t?b:k):p});for(var n=0;n<e.length;n++){var i=e[n];i.reflow(new yo),i.renderVisual()}},e.prototype.reflow=function(t){this.visual.rect(t.toRect()),this.visual.reflow();var e=this.visual.clippedBBox();this.box=e?Uo(e):new yo},e.prototype.renderVisual=function(){this.addVisual()},e.prototype.createVisual=function(){},e}(Mo);const Hl=kl;var Il=10,Bl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.visualStyle=function(){var t=this.markerOptions(),e=t.border;return{stroke:{width:e.width,color:e.color,opacity:Yt(e.opacity,t.opacity),dashType:e.dashType},fill:{color:t.background,opacity:t.opacity},cursor:t.cursor}},e.prototype.markerOptions=function(){return this.options},e.prototype.markerHighlightOptions=function(){var t=this.markerOptions(),e=t.highlight.border.width;return it({},t,{background:t.border.color},t.highlight,t.type===f?{background:t.highlight.border.color,border:{color:t.highlight.background,width:e/2},width:t.width,height:t.height,margin:{top:0,left:0}}:{})},e.prototype.createHighlight=function(){var e=new t(this.markerHighlightOptions()),o=this.paddingBox.clone();return e.reflow(o.pad(e.options.border.width)),this.highlight=[e.getElement()],this.highlight},e}(ko);Qt(Bl,{border:{width:2},width:8,height:8,background:L,margin:{top:-1,left:-1},vAlign:I,align:O,highlight:{width:Il,height:Il,border:{color:L,width:2}}});const Ll=Bl;var Tl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=new $.drawing.Group,e=new $.drawing.MultiPath(this.visualStyle()),o=this.paddingBox,r=o.height()/2;return e.moveTo(o.x1,o.y1+r).lineTo(o.x1,o.y2).lineTo(o.x2,o.y2),t.append(e),t},e}(ko);Qt(Tl,{width:15,height:15,align:A,vAlign:u,margin:{right:-2,bottom:2}});const El=Tl;var Dl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=new $.drawing.Group,e=new $.drawing.MultiPath({stroke:{color:this.options.border.color,opacity:this.options.opacity,width:this.options.height,dashType:this.options.dashType}}),o=this.paddingBox,r=o.center().y;return e.moveTo(o.x1,r).lineTo(o.x2,r),t.append(e),t},e.prototype.createHighlight=function(){return this.highlight=[this.createHighlightLine(),this.createHighlightMarker()],this.highlight},e.prototype.createHighlightLine=function(){var t=it({},{border:{color:this.options.border.color,opacity:this.options.border.opacity,dashType:this.options.border.dashType}},this.options.highlight),e=new El(t);return e.reflow(this.parent.paddingBox.clone()),this.highlightLine=e.getElement(),this.highlightLine},e.prototype.createHighlightMarker=function(){var e=it({},{background:this.options.background},this.options.highlight.markers),o=new t(e),r=this.parent.paddingBox,n=e.border.width,i=this.parent.box.clone();return i.pad({left:n-r.x1,top:n-r.y1}),o.reflow(i),this.highlightMarker=o.getElement(),this.highlightMarker},e}(ko);Qt(Dl,{border:{width:0},type:"rect",align:O,vAlign:p,highlight:{border:{width:2},markers:{type:d,width:Il,height:Il,border:{width:2,color:L},align:O,vAlign:I}}});const Nl=Dl;var Rl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createHighlight=function(){var e=it({},{background:this.options.background},this.options.highlight.markers),o=new t(e),r=this.paddingBox.clone(),n=this.parent.box.clone();return r.align(n,E,O),r.align(n,D,I),o.reflow(r),this.highlight=[o.getElement()],this.highlight},e}(ko);Qt(Rl,{highlight:{markers:{type:d,width:Il,height:Il,border:{width:2,color:L},margin:{top:-3,left:-3}}}});const Fl=Rl;var Ul=function(t){function e(e){t.call(this,e),this.createContainer(),e.rtl?(this.createLabel(),this.createMarker()):(this.createMarker(),this.createLabel()),this._id=Pe(),this.options.accessibility.ariaChecked=e.active}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createContainer=function(){this.container=new Do({vertical:!1,wrap:!1,align:p,spacing:this.options.spacing}),this.append(this.container)},e.prototype.createMarker=function(){this.markerWrap=new t({vertical:!1,shrinkToFit:!0,wrap:!1,margin:1,width:22,height:22}),this.container.append(this.markerWrap),this.createMarkerArea(),this.options.markers.visible&&(this._marker=this._createMarker(),this.markerWrap.append(this._marker))},e.prototype.createMarkerArea=function(){var t=this.options,e=t.markerColor,o=t.line;void 0===o&&(o={});var r={border:{color:o.color||e,opacity:o.opacity,dashType:o.dashType}};return this._createLine(r)||this._createMarkerLine(r,o)||this._createSquare()},e.prototype.markerOptions=function(){var t=this.options,e=t.markers;void 0===e&&(e={});var o=t.markerColor,r=e.border;return void 0===r&&(r={}),e.zIndex=void 0,it({},e,{border:{color:r.color||o},highlight:t.highlight.markers})},e.prototype._highlightOptions=function(){var t=this.options;return it({markers:{type:t.markers.type}},t.highlight)},e.prototype._createLine=function(t){var e=this.options;return e.type!==Si||e.markers.visible||(this._line=new Nl(it({},{background:e.markerColor,highlight:this._highlightOptions()},t,e.line)),this.markerWrap.append(this._line)),this._line},e.prototype._createMarkerLine=function(t,e){return this.options.type===Si&&(this._markerLineArea=new El(it({},{border:{width:e.height}},t)),this.markerWrap.append(this._markerLineArea)),this._markerLineArea},e.prototype._createSquare=function(){var t=this.options;return t.type===di&&(this._square=new Fl(Object.assign({},{border:t.border,vAlign:t.markers.visible?u:p,highlight:this._highlightOptions()},t.area,{background:t.area.background||t.markerColor})),this.markerWrap.append(this._square)),this._square},e.prototype._createMarker=function(){return new Ll(this.markerOptions())},e.prototype._highlightMarkers=function(){this.options.active&&this._toggleHighlight(!0)},e.prototype._restoreMarkers=function(){this._toggleHighlight(!1)},e.prototype._toggleHighlight=function(t){var e=this;if(this.options.highlight.visible){var o=this._marker||this._square||this._line;if(o&&o===this._line&&this._line.visual.visible(!t),o){var r=o.highlight;r||(r=o.createHighlight()).forEach((function(t){return t&&e.markerWrap.appendVisual(t)})),r.forEach((function(e){return e&&e.visible(t)}))}}},e.prototype.createLabel=function(){var t=this.options,e=it({},t.labels);this.container.append(new $o(t.text,e))},e.prototype.getAriaLabelText=function(){return this.options.text},e.prototype.focusVisual=function(){this.visual.options.set("id",this._id),this.toggleFocusHighlight(!0),this._highlightMarkers()},e.prototype.clearFocusFromVisual=function(){this.visual.options.set("id",""),this.toggleFocusHighlight(!1),this._restoreMarkers()},e.prototype.renderComplete=function(){t.prototype.renderComplete.call(this);var e=this.options.cursor||{},o=this._itemOverlay=$.drawing.Path.fromRect(this.container.box.toRect(),{fill:{color:L,opacity:0},stroke:null,cursor:e.style||e});this.appendVisual(o)},e.prototype.click=function(t,e){var o=this.eventArgs(e);!t.trigger(Ji,o)&&e&&"contextmenu"===e.type&&e.preventDefault()},e.prototype.over=function(t,e){var o=this.eventArgs(e);return t.trigger("legendItemHover",o)||(t._legendItemHover(o.seriesIndex,o.pointIndex),this._highlightMarkers()),!0},e.prototype.out=function(t,e){t._unsetActivePoint(),this._restoreMarkers(),t.trigger("legendItemLeave",this.eventArgs(e))},e.prototype.eventArgs=function(t){var e=this.options;return{element:Rt(t),text:e.text,series:e.series,seriesIndex:e.series.index,pointIndex:e.pointIndex}},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e=this.options;if(this.options.visible){var o=it({ariaLabel:void 0!==e.accessibility.ariaLabel?e.accessibility.ariaLabel:e.text},e.accessibility);Ao(this.visual,o)}},e.prototype.renderVisual=function(){var e=this,o=this.options,r=o.visual;r?(this.visual=r({active:o.active,series:o.series,sender:this.getSender(),pointIndex:o.pointIndex,options:{type:o.type,markers:it({background:this.options.markerColor},this.markerOptions()),labels:o.labels},createVisual:function(){e.createVisual(),e.renderChildren(),e.renderComplete();var t=e.visual;return delete e.visual,t}}),this._marker=this._markerLineArea=this._square=this._line=null,this.addVisual()):t.prototype.renderVisual.call(this)},e.prototype.createFocusHighlight=function(t){var e=t.stroke.width;return $.drawing.Path.fromRect(this.container.box.pad(e/2).toRect(),t)},e}(Vo);Qt(Ul,{accessibility:{role:"checkbox",className:"k-chart-legend-item",ariaRoleDescription:"Legend item"},markers:{},highlight:{visible:!0,markers:{}}});const Kl=Ul;var ql="custom",$l=function(t){function e(e,o){void 0===o&&(o={}),t.call(this,e),this.chartService=o,Ot(this.options.position,[I,A,u,O,ql])||(this.options.position=A),this.createContainers(),this.createLegendTitle(e.title),this.createItems()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createContainers=function(){var t=this.options,e=t.position,o=t.align,r=e,n=p;e===ql?r=O:Ot(e,[I,u])?(r=o===k?O:o===b?A:p,n=e):o&&(o===k?n=I:o===b&&(n=u)),this.container=new Vo({margin:t.margin,padding:t.padding,background:t.background,border:t.border,vAlign:n,align:r,zIndex:t.zIndex,shrinkToFit:!0}),this.hasTitle()?this.itemsContainer=new Vo({vAlign:n,align:r,zIndex:t.zIndex,shrinkToFit:!0}):this.itemsContainer=this.container,this.append(this.container)},e.prototype.createItems=function(){var t=this.getService(),e=this.options,o=this.isVertical(),r=new Hl({vertical:o,spacing:e.spacing,rtl:t.rtl},t),n=e.data;e.reverse&&(n=n.slice(0).reverse());for(var i=n.length,a=0;a<i;a++){var s=n[a],c=s.series||{},l=c.markers;void 0===l&&(l={});var h=c.dashType,u=c.legendItem,p=c.opacity,v=it({visible:!1!==l.visible,type:d},l);delete v.size;var f=it({},{markers:v,labels:e.labels,rtl:t.rtl,line:Object.assign({},{dashType:h},e.line),area:Object.assign({},{opacity:p},e.area),opacity:p,accessibility:e.accessibility},e.item,u,s,{markers:e.markers});r.append(new Kl(f))}r.render(),this.itemsContainer.append(r)},e.prototype.isVertical=function(){var t=this.options,e=t.orientation,o=t.position;return o===ql&&e!==R||(Lt(e)?e!==R:Ot(o,[O,A]))},e.prototype.hasItems=function(){return this.container.children[0].children.length>0},e.prototype.getItems=function(){return this.itemsContainer.children[0].children},e.prototype.reflow=function(t){var e=this.options,o=t.clone();this.hasItems()?(e.position===ql?(this.containerCustomReflow(o),this.box=o):this.containerReflow(o),this.hasTitle()&&this.title.reflow(new yo(this.container.box.x1,this.title.box.y1,this.container.box.x2,this.title.box.y2))):this.box=o},e.prototype.containerReflow=function(t){var e=this.options,o=this.container,r=e.position,n=e.width,i=e.height,a=r===I||r===u?E:D,s=this.isVertical(),c=t.clone(),l=t.clone();r!==O&&r!==A||(l.y1=c.y1=0),s&&i?(l.y2=l.y1+i,l.align(c,D,o.options.vAlign)):!s&&n&&(l.x2=l.x1+n,l.align(c,E,o.options.align)),o.reflow(l);var h=(l=o.box).clone();(e.offsetX||e.offsetY)&&(l.translate(e.offsetX,e.offsetY),o.reflow(l)),h[a+1]=t[a+1],h[a+2]=t[a+2],this.box=h},e.prototype.containerCustomReflow=function(t){var e=this.options,o=this.container,r=e.offsetX,n=e.offsetY,i=e.width,a=e.height,s=this.isVertical(),c=t.clone();s&&a?c.y2=c.y1+a:!s&&i&&(c.x2=c.x1+i),o.reflow(c),c=o.box,o.reflow(new yo(r,n,r+c.width(),n+c.height()))},e.prototype.renderVisual=function(){this.hasItems()&&t.prototype.renderVisual.call(this)},e.prototype.createLegendTitle=function(t){var e=it({},{color:h,position:I,align:p},t),o=e.text;if(t&&!1!==t.visible&&t.text){if(Lt(e)&&e.visible){var r=ft(e);r?o=r({text:o}):e.format&&(o=this.chartService.format.auto(e.format,o))}this.title=new $o(o,e),this.createTitleLayout(),this.appendTitleLayoutContent()}},e.prototype.createTitleLayout=function(){this.layout=new Do({vertical:!0,wrap:!1}),this.container.append(this.layout)},e.prototype.hasTitle=function(){return Boolean(this.options.title&&!1!==this.options.title.visible&&this.options.title.text)},e.prototype.appendTitleLayoutContent=function(){this.options.title.position===u?(this.layout.append(this.itemsContainer),this.layout.append(this.title)):(this.layout.append(this.title),this.layout.append(this.itemsContainer))},e}(Mo);Qt($l,{position:A,data:[],offsetX:0,offsetY:0,margin:ut(2),padding:ut(5),border:{color:h,width:0},item:{cursor:N,spacing:6},spacing:6,background:"",zIndex:1,markers:{},line:{width:20,height:2,cursor:N,opacity:1},area:{type:"square",align:A,width:15,height:15}});const Xl=$l;var Gl=function(t){function e(){t.call(this),this._registry=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e){this._registry.push({type:t,seriesTypes:e})},e.prototype.create=function(t,e,o){for(var r,n=this._registry,i=n[0],a=0;a<n.length;a++){var s=n[a];r=Da(t,s.seriesTypes);var c=Da(t,Qi);if(r.length-c.length>0){i=s;break}}return new i.type(r,e,o)},e}($.Class);Gl.current=new Gl;const Yl=Gl;function Wl(t){var e=document.createElement("div");return t&&(e.className=t),e}function Zl(t){for(var e=t;e&&!wt(e,"k-handle");)e=e.parentNode;return e}var Ql=function(t){function e(e,o,r,n){t.call(this);var i=e.element;this.options=it({},this.options,r),this.chart=e,this.observer=n,this.chartElement=i,this.categoryAxis=o,this._dateAxis=this.categoryAxis instanceof ln,this.initOptions(),this.visible=this.options.visible&&i.offsetHeight,this.visible&&(this.createElements(),this.set(this._index(this.options.from),this._index(this.options.to)),this.bindEvents())}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onPane=function(t){return this.categoryAxis.pane===t},e.prototype.createElements=function(){var t=this.options,e=this.wrapper=Wl("k-selector k-pointer-events-none");ht(e,{top:t.offset.top,left:t.offset.left,width:t.width,height:t.height,direction:"ltr"});var o=this.selection=Wl("k-selection k-pointer-events-none");this.leftMask=Wl("k-mask k-pointer-events-none"),this.rightMask=Wl("k-mask k-pointer-events-none"),e.appendChild(this.leftMask),e.appendChild(this.rightMask),e.appendChild(o);var r=this.body=Wl("k-selection-bg k-pointer-events-none");o.appendChild(r);var n=this.leftHandle=Wl("k-handle k-left-handle k-pointer-events-auto"),i=this.rightHandle=Wl("k-handle k-right-handle k-pointer-events-auto");n.appendChild(Wl()),i.appendChild(Wl()),o.appendChild(n),o.appendChild(i),this.chartElement.appendChild(e);var a=ht(o,["borderLeftWidth","borderRightWidth","height"]),s=ht(n,"height").height,c=ht(i,"height").height;t.selection={border:{left:a.borderLeftWidth,right:a.borderRightWidth}},ht(n,{top:(a.height-s)/2}),ht(i,{top:(a.height-c)/2}),e.style.cssText=e.style.cssText},e.prototype.bindEvents=function(){var t;!1!==this.options.mousewheel&&(this._mousewheelHandler=this._mousewheel.bind(this),Bt(this.chartElement,((t={})[Oa]=this._mousewheelHandler,t))),this._domEvents=vr.create(this.chartElement,{stopPropagation:!0,start:this._start.bind(this),move:this._move.bind(this),end:this._end.bind(this),tap:this._tap.bind(this),press:this._press.bind(this),gesturestart:this._gesturestart.bind(this),gesturechange:this._gesturechange.bind(this),gestureend:this._gestureend.bind(this)})},e.prototype.initOptions=function(){var t=this.options,e=this.categoryAxis.pane.chartsBox(),o=this.chart.chartService.intl;this._dateAxis&&it(t,{min:Yr(o,t.min),max:Yr(o,t.max),from:Yr(o,t.from),to:Yr(o,t.to)});var r=ht(this.chartElement,["paddingLeft","paddingTop"]),n=r.paddingLeft,i=r.paddingTop;this.options=it({},{width:e.width(),height:e.height()+.1,padding:{left:n,top:i},offset:{left:e.x1+n,top:e.y1+i},from:t.min,to:t.max},t)},e.prototype.destroy=function(){var t;this._domEvents&&(this._domEvents.destroy(),delete this._domEvents),clearTimeout(this._mwTimeout),this._state=null,this.wrapper&&(this._mousewheelHandler&&(Gt(this.chartElement,((t={})[Oa]=this._mousewheelHandler,t)),this._mousewheelHandler=null),this.chartElement.removeChild(this.wrapper),this.wrapper=null)},e.prototype._rangeEventArgs=function(t){return{axis:this.categoryAxis.options,from:this._value(t.from),to:this._value(t.to)}},e.prototype._pointInPane=function(t,e){var o=this.categoryAxis.pane.box,r=this.chart._toModelCoordinates(t,e);return o.containsPoint(r)},e.prototype._start=function(t){var e=this.options,o=Rt(t);if(!this._state&&o){var r=Nt(t);if(this._pointInPane(r.x,r.y)){var n=Zl(o),i=this.body.getBoundingClientRect(),a=!n&&r.x>=i.x&&r.x<=i.x+i.width&&r.y>=i.y&&r.y<=i.y+i.height;this.chart._unsetActivePoint(),this._state={moveTarget:n,startLocation:t.x?t.x.location:0,inBody:a,range:{from:this._index(e.from),to:this._index(e.to)}};var s=this._rangeEventArgs({from:this._index(e.from),to:this._index(e.to)});this.trigger(pa,s)&&(this._state=null)}}},e.prototype._press=function(t){var e;(e=this._state?this._state.moveTarget:Zl(Rt(t)))&&U(e,"k-handle-active")},e.prototype._move=function(t){if(this._state){var e=this,o=e._state,r=e.options,n=e.categoryAxis,i=o.range,a=o.moveTarget,s=n.options.reverse,c=this._index(r.from),l=this._index(r.to),h=this._index(r.min),u=this._index(r.max),p=o.startLocation-t.x.location,d=i.from,v=i.to,f=i.to-i.from,m=ht(this.wrapper,"width").width/(n.categoriesCount()-1),g=Math.round(p/m)*(s?-1:1);if(a||o.inBody){var y=a&&wt(a,"k-left-handle"),b=a&&wt(a,"k-right-handle");o.inBody?(i.from=Math.min(Math.max(h,c-g),u-f),i.to=Math.min(i.from+f,u)):y&&!s||b&&s?(i.from=Math.min(Math.max(h,c-g),u-1),i.to=Math.max(i.from+1,i.to)):(y&&s||b&&!s)&&(i.to=Math.min(Math.max(h+1,l-g),u),i.from=Math.min(i.to-1,i.from)),i.from===d&&i.to===v||(this.move(i.from,i.to),this.trigger(da,this._rangeEventArgs(i)))}}},e.prototype._end=function(){if(this._state){var t=this._state.moveTarget;t&&q(t,"k-handle-active");var e=this._state.range;this.set(e.from,e.to),this.trigger(va,this._rangeEventArgs(e)),delete this._state}},e.prototype._tap=function(t){var e=this.options,o=this.categoryAxis,r=this.chart._eventCoordinates(t),n=o.pointCategoryIndex(new fo(r.x,o.box.y1)),i=this._index(e.from),a=this._index(e.to),s=this._index(e.min),c=this._index(e.max),l=a-i,h=i+l/2,u={},p=3===t.event.which,d=Math.round(h-n);this._state||p||(this.chart._unsetActivePoint(),o.options.justified||d--,u.from=Math.min(Math.max(s,i-d),c-l),u.to=Math.min(u.from+l,c),this._start(t),this._state&&(this._state.range=u,this.trigger(da,this._rangeEventArgs(u)),this._end()))},e.prototype._mousewheel=function(t){var e=this,o=kt(t);if(this._start(t),this._state){var r=this._state.range;t.preventDefault(),t.stopPropagation(),Math.abs(o)>1&&(o*=3),this.options.mousewheel.reverse&&(o*=-1),this.expand(o)&&this.trigger(da,{axis:this.categoryAxis.options,delta:o,originalEvent:t,from:this._value(r.from),to:this._value(r.to)}),this._mwTimeout&&clearTimeout(this._mwTimeout),this._mwTimeout=setTimeout((function(){e._end()}),150)}},e.prototype._gesturestart=function(t){var e=this.options,o=t.touches[0];if(this._pointInPane(o.pageX,o.pageY)){this._state={range:{from:this._index(e.from),to:this._index(e.to)}};var r=this._rangeEventArgs(this._state.range);this.trigger(pa,r)?this._state=null:t.preventDefault()}},e.prototype._gestureend=function(){this._state&&(this.trigger(va,this._rangeEventArgs(this._state.range)),delete this._state)},e.prototype._gesturechange=function(t){if(this._state){var e=this,o=e.chart,r=e._state,n=e.options,i=e.categoryAxis,a=r.range,s=o._toModelCoordinates(t.touches[0].x.location).x,c=o._toModelCoordinates(t.touches[1].x.location).x,l=Math.min(s,c),h=Math.max(s,c);t.preventDefault(),a.from=i.pointCategoryIndex(new fo(l))||n.min,a.to=i.pointCategoryIndex(new fo(h))||n.max,this.move(a.from,a.to),this.trigger(da,this._rangeEventArgs(a))}},e.prototype._index=function(t){var e=t;return t instanceof Date&&(e=this.categoryAxis.categoryIndex(t)),e},e.prototype._value=function(t){var e=t;return this._dateAxis&&(e=this.categoryAxis.categoryAt(t))>this.options.max&&(e=this.options.max),e},e.prototype._slot=function(t){var e=this.categoryAxis,o=this._index(t);return e.getSlot(o,o,!0)},e.prototype.move=function(t,e){var o=this.options,r=this.categoryAxis.options.reverse,n=o.offset,i=o.padding,a=o.selection.border,s=r?e:t,c=r?t:e,l="x"+(r?2:1),h=this._slot(s),u=Xt(h[l]-n.left+i.left);ht(this.leftMask,{width:u}),ht(this.selection,{left:u}),h=this._slot(c);var p=Xt(o.width-(h[l]-n.left+i.left));ht(this.rightMask,{width:p});var d=o.width-p;d!==o.width&&(d+=a.right),ht(this.rightMask,{left:d}),ht(this.selection,{width:Math.max(o.width-(u+p)-a.right,0)})},e.prototype.set=function(t,e){var o=this.options,r=this._index(o.min),n=this._index(o.max),i=Kt(this._index(t),r,n),a=Kt(this._index(e),i+1,n);o.visible&&this.move(i,a),o.from=this._value(i),o.to=this._value(a)},e.prototype.expand=function(t){var e=this.options,o=this._index(e.min),r=this._index(e.max),n=e.mousewheel.zoom,i=this._index(e.from),a=this._index(e.to),s={from:i,to:a},c=it({},s);if(this._state&&(s=this._state.range),n!==A&&(s.from=Kt(Kt(i-t,0,a-1),o,r)),n!==O&&(s.to=Kt(Kt(a+t,s.from+1,r),o,r)),s.from!==c.from||s.to!==c.to)return this.set(s.from,s.to),!0},e.prototype.zoom=function(t,e){var o=this.options,r=this._index(o.min),n=this._index(o.max),i=this._index(o.from),a=this._index(o.to),s={from:i,to:a},c=it({},s),l=this.categoryAxis.options.reverse,h=E+(l?"2":"1"),u=this.categoryAxis.lineBox(),p=Math.abs(u[h]-e[E]),d=u.width(),v=Xt(p/d,2),f=Xt(v*t),m=Xt((1-v)*t);if(this._state&&(s=this._state.range),s.from=Kt(Kt(i-f,0,a-1),r,n),s.to=Kt(Kt(a+m,s.from+1,n),r,n),s.from!==c.from||s.to!==c.to)return this.set(s.from,s.to),!0},e.prototype.trigger=function(t,e){return(this.observer||this.chart).trigger(t,e)},e}($.Class);Qt(Ql,{visible:!0,mousewheel:{zoom:"both"},min:z,max:S});const Jl=Ql;var th=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.show=function(e){if(e&&e.tooltipAnchor&&(!this._current||this._current!==e)){var o=it({},this.options,e.options.tooltip),r=e.tooltipAnchor();r?(this._current=e,t.prototype.show.call(this,{point:e,anchor:r},o,e)):this.hide()}},e.prototype.hide=function(){delete this._current,t.prototype.hide.call(this)},e}(dc);const eh=th;var oh=function(t){function e(e,o){t.call(this,e.chartService,o),this.plotArea=e,this.formatService=e.chartService.format}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.showAt=function(t,e){var o=xt(t,(function(t){var e=t.series.tooltip;return!(e&&!1===e.visible)}));if(o.length>0){var r=o[0],n=this.plotArea.categoryAxis.getSlot(r.categoryIx),i=e?this._slotAnchor(e,n):this._defaultAnchor(r,n);this.show({anchor:i,shared:!0,points:t,category:r.category,categoryText:this.formatService.auto(this.options.categoryFormat,r.category),series:this.plotArea.series},this.options)}},e.prototype._slotAnchor=function(t,e){return this.plotArea.categoryAxis.options.vertical||(t.x=e.center().x),{point:t,align:{horizontal:"left",vertical:"center"}}},e.prototype._defaultAnchor=function(t,e){var o=t.owner.pane.chartsBox(),r=this.plotArea.categoryAxis.options.vertical,n=o.center(),i=e.center();return{point:r?new fo(n.x,i.y):new fo(i.x,n.y),align:{horizontal:"center",vertical:"center"}}},e}(dc);Qt(oh,{categoryFormat:"{0:d}"});const rh=oh;var nh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.element,e=this.options;if(t.bbox()){this.origin=e.origin;var o=e.vertical?D:E,r=this.fromScale=new $.geometry.Point(1,1);r[o]=ni,t.transform($.geometry.transform().scale(r.x,r.y))}else this.abort()},e.prototype.step=function(t){var e=St(this.fromScale.x,1,t),o=St(this.fromScale.y,1,t);this.element.transform($.geometry.transform().scale(e,o,this.origin))},e.prototype.abort=function(){t.prototype.abort.call(this),this.element.transform(null)},e}($.drawing.Animation);Qt(nh,{duration:ei}),$.drawing.AnimationFactory.current.register(vi,nh);var ih=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.center=this.element.bbox().center();this.element.transform($.geometry.transform().scale(ni,ni,t))},e.prototype.step=function(t){this.element.transform($.geometry.transform().scale(t,t,this.center))},e}($.drawing.Animation);Qt(ih,{easing:"easeOutElastic"}),$.drawing.AnimationFactory.current.register(mi,ih);var ah=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this.fadeTo=this.element.opacity(),this.element.opacity(0)},e.prototype.step=function(t){this.element.opacity(t*this.fadeTo)},e}($.drawing.Animation);Qt(ah,{duration:200,easing:"linear"}),$.drawing.AnimationFactory.current.register(oi,ah);var sh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this.element.transform($.geometry.transform().scale(ni,ni,this.options.center))},e.prototype.step=function(t){this.element.transform($.geometry.transform().scale(t,t,this.options.center))},e}($.drawing.Animation);Qt(sh,{easing:"easeOutElastic",duration:ei}),$.drawing.AnimationFactory.current.register(Mi,sh);const ch=sh;var lh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.renderSegments()},e.prototype.createSegment=function(t,e,o){return new(e.style===ui?us:ns)(t,e,o)},e.prototype.animationPoints=function(){return t.prototype.animationPoints.call(this).concat(this._segments)},e.prototype.createMissingValue=function(t,e){if(e===si){var o={x:t.x,y:t.y};return Ua(o.x)||(o.x=0),Ua(o.y)||(o.y=0),o}},e}(ec);it(lh.prototype,ds);const hh=lh,uh=function(t,e,o){var r=[],n=e.xMin,i=e.xMax,a=(o||{}).forecast;a&&(a.before>0&&(n-=a.before),a.after>0&&(i+=a.after));var s=(o||{}).samplingInterval,c=Yt(s,vo(n,i)/10);s<=0&&(c=i-n);for(var l=n;l<=i;l+=c)r.push([l,t(l)]);return r};const ph=function(t){return function(e){var o=e.valueFields;return{xValue:o.x,yValue:o[t]}}},dh=function(t,e){for(var o=Number.MAX_VALUE,r=Number.MIN_VALUE,n=0;n<t.length;n++){var i=e(t[n]),a=i.xValue,s=i.yValue;isFinite(a)&&null!==a&&isFinite(s)&&null!==s&&(o=Math.min(a,o),r=Math.max(a,r))}return{xMin:o,xMax:r}};var vh={};vh[$i]=function(t){var e=t.options,o=function(t){var e=t.options,o=(0,t.seriesValues)();if(!ll(o,e.field))return null;var r,n=cl(o,(r=e.field,function(t){var e=t.valueFields;return{xValue:e.x,yValue:Math.log(e[r])}})),i=n.slope,a=n.intercept,s=n.count,c={xMin:n.xMin,xMax:n.xMax};if(s>0){var l=Math.exp(a),h=i;return uh((function(t){return l*Math.exp(h*t)}),c,e.trendline)}return null}({seriesValues:t.seriesValues,options:e});return o?Object.assign({},e,{type:"scatterLine",data:o}):null},vh[Xi]=function(t){var e=t.options,o=function(t){var e=t.options,o=cl((0,t.seriesValues)(),ph(e.field)),r=o.slope,n=o.intercept,i=o.count,a=o.xMin,s=o.xMax;return i>0?uh((function(t){return r*t+n}),{xMin:a,xMax:s},e.trendline):null}({seriesValues:t.seriesValues,options:e});return o?Object.assign({},e,{type:"scatterLine",data:o}):null},vh[Gi]=function(t){var e=t.options,o=function(t){var e=t.options,o=(0,t.seriesValues)();if(!ll(o,"x"))return null;var r,n=cl(o,(r=e.field,function(t){var e=t.valueFields;return{xValue:Math.log(e.x),yValue:e[r]}})),i=n.slope,a=n.intercept,s=n.count,c=dh(o,function(t){return function(e){var o=e.valueFields;return{xValue:o.x,yValue:o[t]}}}(e.field));if(s>0){var l=i,h=a;return uh((function(t){return l*Math.log(t)+h}),c,e.trendline)}return null}({seriesValues:t.seriesValues,options:e});return o?Object.assign({},e,{type:"scatterLine",data:o}):null},vh[Yi]=function(t){var e=t.options,o=function(t){var e=t.options,o=t.seriesValues,r=(e.trendline||{}).period||2,n=ul(o({before:r,after:r}),ph(e.field),r);return n.length>0?n:null}(t);return o?Object.assign({},e,{type:"scatterLine",data:o}):null},vh[Wi]=function(t){var e=t.options,o=function(t){var e=t.seriesValues,o=t.options,r=(o.trendline||{}).order,n=ph(o.field),i=pl(e(),n,r),a=i.count,s=i.valueMapper,c=i.xMin,l=i.xMax;return a>0?uh(s,{xMin:c,xMax:l},o.trendline):null}({seriesValues:t.seriesValues,options:e});return o?Object.assign({},e,{type:"scatterLine",data:o}):null},vh[Zi]=function(t){var e=t.options,o=function(t){var e=t.options,o=(0,t.seriesValues)();if(!ll(o,"x"))return null;var r,n=cl(o,(r=e.field,function(t){var e=t.valueFields;return{xValue:Math.log(e.x),yValue:Math.log(e[r])}})),i=n.slope,a=n.intercept,s=n.count,c=dh(o,ph(e.field));if(s>0){var l=Math.exp(a),h=i;return uh((function(t){return l*Math.pow(t,h)}),c,e.trendline)}return null}({seriesValues:t.seriesValues,options:e});return o?Object.assign({},e,{type:"scatterLine",data:o}):null};const fh=vh;var mh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this.namedXAxes={},this.namedYAxes={},this.xAxisRangeTracker=new Ps,this.yAxisRangeTracker=new Ps},e.prototype.render=function(t){var e=this;void 0===t&&(t=this.panes),this.series=[].concat(this.originalSeries),this.createTrendlineSeries();for(var o=this.groupSeriesByPane(),r=0;r<t.length;r++){var n=t[r],i=o[n.options.name||"default"]||[];e.addToLegend(i);var a=e.filterVisibleSeries(i);a&&(e.createScatterChart(Da(a,Ti),n),e.createScatterLineChart(Da(a,Ei),n),e.createBubbleChart(Da(a,mi),n))}this.createAxes(t)},e.prototype.appendChart=function(e,o){this.xAxisRangeTracker.update(e.xAxisRanges),this.yAxisRangeTracker.update(e.yAxisRanges),t.prototype.appendChart.call(this,e,o)},e.prototype.removeAxis=function(e){var o=e.options.name;t.prototype.removeAxis.call(this,e),e.options.vertical?(this.yAxisRangeTracker.reset(o),delete this.namedYAxes[o]):(this.xAxisRangeTracker.reset(o),delete this.namedXAxes[o]),e===this.axisX&&delete this.axisX,e===this.axisY&&delete this.axisY},e.prototype.seriesPaneName=function(t){var e=this.options,o=t.xAxis,r=xt([].concat(e.xAxis),(function(t){return t.name===o}))[0],n=t.yAxis,i=xt([].concat(e.yAxis),(function(t){return t.name===n}))[0],a=(e.panes||[{}])[0].name||"default";return(r||{}).pane||(i||{}).pane||a},e.prototype.createScatterChart=function(t,e){t.length>0&&this.appendChart(new ec(this,{series:t,clip:e.options.clip}),e)},e.prototype.createScatterLineChart=function(t,e){t.length>0&&this.appendChart(new hh(this,{series:t,clip:e.options.clip}),e)},e.prototype.createBubbleChart=function(t,e){t.length>0&&this.appendChart(new ic(this,{series:t,clip:e.options.clip}),e)},e.prototype.createXYAxis=function(t,e,o){for(var r,n=t.name,i=e?this.namedYAxes:this.namedXAxes,a=e?this.yAxisRangeTracker:this.xAxisRangeTracker,s=it({reverse:!e&&this.chartService.rtl},t,{vertical:e}),c=La(s.type,xa),l=a.query(),h=c?{min:.1,max:1}:{min:0,max:1},u=a.query(n)||l||h,p=[s.min,s.max],d=this.series,v=0;v<d.length;v++){var f=d[v],g=f[e?"yAxis":"xAxis"];if(g===s.name||0===o&&!g){var y=Yn.current.bindPoint(f,0).valueFields;p.push(y[e?"y":"x"]);break}}0===o&&l&&(u.min=Math.min(u.min,l.min),u.max=Math.max(u.max,l.max));for(var b=0;b<p.length;b++)if(p[b]instanceof Date){r=!0;break}var x=new(La(s.type,m)||!s.type&&r?yn:c?Cn:mn)(u.min,u.max,s,this.chartService);if(x.axisIndex=o,n){if(i[n])throw new Error((e?"Y":"X")+" axis with name "+n+" is already defined");i[n]=x}return this.appendAxis(x),x},e.prototype.createAxes=function(t){for(var e=this,o=this.options,r=[].concat(o.xAxis),n=[],i=[].concat(o.yAxis),a=[],s=0;s<r.length;s++)Ot(e.findPane(r[s].pane),t)&&n.push(e.createXYAxis(r[s],!1,s));for(var c=0;c<i.length;c++)Ot(e.findPane(i[c].pane),t)&&a.push(e.createXYAxis(i[c],!0,c));this.axisX=this.axisX||n[0],this.axisY=this.axisY||a[0]},e.prototype._dispatchEvent=function(t,e,o){for(var r=t._eventCoordinates(e),n=new fo(r.x,r.y),i=this.axes,a=i.length,s=[],c=[],l=0;l<a;l++){var h=i[l],u=h.options.vertical?c:s,p=h.getValue(n);null!==p&&u.push(p)}s.length>0&&c.length>0&&t.trigger(o,{element:Rt(e),originalEvent:e,x:qa(s),y:qa(c)})},e.prototype.updateAxisOptions=function(t,e){var o=t.options.vertical,r=this.groupAxes(this.panes),n=(o?r.y:r.x).indexOf(t);gh(this.options,n,o,e),gh(this.originalOptions,n,o,e)},e.prototype.trendlineFactory=function(t,e){var o=this.seriesValues.bind(this,e.index),r=sl(fh,t.type,{options:t,seriesValues:o});return r&&(r.xAxis=e.xAxis,r.yAxis=e.yAxis),r},e.prototype.seriesValues=function(t){for(var e=[],o=this.series[t],r=0;r<o.data.length;r++){var n=this.bindPoint(o,r);e.push({pointIx:r,valueFields:n.valueFields})}return e},e}(Pc);function gh(t,e,o,r){it([].concat(o?t.yAxis:t.xAxis)[e],r)}Qt(mh,{xAxis:{},yAxis:{}}),it(mh.prototype,Ac);const yh=mh;var bh=function(t){function e(e,o,r){t.call(this,r),this.value=e,this.sector=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this._rendered||!1===this.visible||(this._rendered=!0,this.createLabel())},e.prototype.createLabel=function(){var t=this.options.labels,e=this.owner.chartService,o=this.getLabelText(t);if(t.visible&&(o||0===o)){if(t.position===p||t.position===_a)t.color||(t.color=pe(this.options.color)),t.background||(t.background=this.options.color);else{var r=e.theme.seriesDefaults.labels;t.color=t.color||r.color,t.background=t.background||r.background}this.label=new $o(o,it({},t,{align:p,vAlign:"",animation:{type:oi,delay:this.animationDelay}}),this.pointData()),this.append(this.label)}},e.prototype.getLabelText=function(t){var e=ft(t);return e?e(this.pointData()):this.owner.chartService.format.auto(t.format,this.value)},e.prototype.reflow=function(t){this.render(),this.box=t,this.reflowLabel()},e.prototype.reflowLabel=function(){var t=this.options.labels,e=this.label,o=this.sector.clone(),r=t.distance,n=o.middle();if(e){var i,a=e.box.height(),s=e.box.width();if(t.position===p)o.radius=Math.abs((o.radius-a)/2)+a,i=o.point(n),e.reflow(new yo(i.x,i.y-a/2,i.x,i.y));else if(t.position===_a)o.radius=o.radius-a/2,i=o.point(n),e.reflow(new yo(i.x,i.y-a/2,i.x,i.y));else{var c;(i=o.clone().expand(r).point(n)).x>=o.center.x?(c=i.x+s,e.orientation=A):(c=i.x-s,e.orientation=O),e.reflow(new yo(c,i.y-a,i.x,i.y))}}},e.prototype.createVisual=function(){var e=this,o=this.sector,r=this.options;if(t.prototype.createVisual.call(this),this.addAccessibilityAttributesToVisual(),this.value)if(r.visual){var n=(o.startAngle+180)%360,i=r.visual({category:this.category,dataItem:this.dataItem,value:this.value,series:this.series,percentage:this.percentage,center:new $.geometry.Point(o.center.x,o.center.y),radius:o.radius,innerRadius:o.innerRadius,startAngle:n,endAngle:n+o.angle,options:r,sender:this.getSender(),createVisual:function(){var t=new $.drawing.Group;return e.createSegmentVisual(t),t}});i&&this.visual.append(i)}else this.createSegmentVisual(this.visual)},e.prototype.createSegmentVisual=function(t){var e=this.sector,o=this.options,r=o.border||{},n=r.width>0?{stroke:{color:r.color,width:r.width,opacity:r.opacity,dashType:r.dashType}}:{},i=o.color,a={color:i,opacity:o.opacity},s=this.createSegment(e,it({fill:a,stroke:{opacity:o.opacity},zIndex:o.zIndex},n));t.append(s),Fa(o)&&t.append(this.createGradientOverlay(s,{baseColor:i,fallbackFill:a},it({center:[e.center.x,e.center.y],innerRadius:e.innerRadius,radius:e.radius,userSpace:!0},o.overlay)))},e.prototype.createSegment=function(t,e){return e.singleSegment?new $.drawing.Circle(new $.geometry.Circle(new $.geometry.Point(t.center.x,t.center.y),t.radius),e):So.current.createRing(t,e)},e.prototype.createAnimation=function(){var e=this.options,o=this.sector.center;it(e,{animation:{center:[o.x,o.y],delay:this.animationDelay}}),t.prototype.createAnimation.call(this)},e.prototype.createHighlight=function(t){var e=this.options.highlight||{},o=e.border||{};return this.createSegment(this.sector,it({},t,{fill:{color:e.color,opacity:e.opacity},stroke:{opacity:o.opacity,width:o.width,color:o.color}}))},e.prototype.highlightVisual=function(){return this.visual.children[0]},e.prototype.highlightVisualArgs=function(){var t=this.sector;return{options:this.options,radius:t.radius,innerRadius:t.innerRadius,center:new $.geometry.Point(t.center.x,t.center.y),startAngle:t.startAngle,endAngle:t.angle+t.startAngle,visual:this.visual}},e.prototype.createFocusHighlight=function(t){var e=this.options.accessibility.highlight.border.width,o=this.createSegment(this.sector,it({},t,{stroke:{width:2*e}})),r=new $.drawing.MultiPath;return r.paths.push($.drawing.Path.fromRect(o.bbox())),r.paths.push(this.createSegment(this.sector,{})),o.clip(r),o},e.prototype.tooltipAnchor=function(){var t,e,o,r,n=this.sector.clone().expand(5),i=n.middle();return{point:n.point(i),align:(t=i+180,e=$t(t),o=Xt(Math.sin(e),y),r=Xt(Math.cos(e),y),{horizontal:Math.abs(o)>wh?p:r<0?A:O,vertical:Math.abs(o)<xh?p:o<0?u:I})}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,series:this.series,percentage:this.percentage}},e.prototype.getIndex=function(){return this.index},e}(Mo),xh=Xt($t(30),y),wh=Xt($t(60),y);Qt(bh,{color:L,overlay:{gradient:"roundedBevel"},border:{width:.5},labels:{visible:!1,distance:35,font:g,margin:ut(.5),align:d,zIndex:1,position:Ca},animation:{type:Mi},highlight:{visible:!0,border:{width:1}},visible:!0,accessibility:{role:ga,className:ya,ariaRoleDescription:ba}}),it(bh.prototype,Ja),it(bh.prototype,js);const _h=bh;var Ch={createLegendItem:function(t,e,o){var r=this.options.legend||{},n=r.labels||{},i=r.inactiveItems||{},a=i.labels||{};if(o&&!1!==o.visibleInLegend){var s,c,l=!1!==o.visible,h=l?ft(n):ft(a)||ft(n),u=o.category;h&&(u=h({text:u,series:o.series,dataItem:o.dataItem,percentage:o.percentage,value:t})),l?(s={},c=e.color):(s={color:a.color,font:a.font},c=(i.markers||{}).color),Ua(u)&&""!==u&&this.legendItems.push({active:l,pointIndex:o.index,text:u,series:o.series,markerColor:c,labels:s})}}};const Oh=Ch;var Sh=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this.points=[],this.legendItems=[],this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.traverseDataPoints(this.addValue.bind(this))},e.prototype.traverseDataPoints=function(t){var e=this.options,o=this.plotArea.options.seriesColors;void 0===o&&(o=[]);for(var r=o.length,n=e.series,i=n.length,a=0;a<i;a++){var s=n[a],c=s.data,l=Ia(s),h=l.total,u=l.points,d=l.count,v=360/h,f=void 0;isFinite(v)||(f=360/d);var m=void 0;m=Lt(s.startAngle)?s.startAngle:e.startAngle,a!==i-1&&s.labels.position===Ca&&(s.labels.position=p);for(var g=0;g<u.length;g++){var y=u[g];if(y){var b=y.fields,x=y.value,w=y.visible,_=0!==x?f||x*v:0,C=1!==c.length&&Boolean(b.explode);et(s.color)||(s.color=b.color||o[g%r]),t(x,new wo(null,0,0,m,_),{owner:this,category:Lt(b.category)?b.category:"",index:g,series:s,seriesIx:a,dataItem:c[g],percentage:0!==h?x/h:0,explode:C,visibleInLegend:b.visibleInLegend,visible:w,zIndex:i-a,animationDelay:this.animationDelay(g,a,i)}),!1!==w&&(m+=_)}}}},e.prototype.evalSegmentOptions=function(t,e,o){var r=o.series;Ea(t,{value:e,series:r,dataItem:o.dataItem,category:o.category,percentage:o.percentage},{defaults:r._defaults,excluded:["data","content","template","visual","toggle","ariaTemplate","ariaContent"]})},e.prototype.addValue=function(t,e,o){var r=it({},o.series,{index:o.index});if(this.evalSegmentOptions(r,t,o),this.createLegendItem(t,r,o),!1!==o.visible){var n=new _h(t,e,r);Object.assign(n,o),this.append(n),this.points.push(n)}},e.prototype.reflow=function(t){var e=this,o=e.options,r=e.points,n=e.seriesConfigs;void 0===n&&(n=[]);var i=r.length,a=t.clone(),s=Math.min(a.width(),a.height()),c=s/2,l=s-.85*s,h=new yo(a.x1,a.y1,a.x1+s,a.y1+s),u=h.center(),p=a.center(),d=o.series.length,v=[],f=[],m=Yt(o.padding,l);this.targetBox=t,m=m>c-5?c-5:m,h.translate(p.x-u.x,p.y-u.y);for(var g=c-m,y=new fo(g+h.x1+m,g+h.y1+m),b=0;b<i;b++){var x=r[b],w=x.sector,_=x.seriesIx;if(w.radius=g,w.center=y,n.length){var C=n[_];w.innerRadius=C.innerRadius,w.radius=C.radius}_===d-1&&x.explode&&(w.center=w.clone().setRadius(.15*w.radius).point(w.middle())),x.reflow(h);var O=x.label;O&&O.options.position===Ca&&_===d-1&&(O.orientation===A?f.push(O):v.push(O))}v.length>0&&(v.sort(this.labelComparator(!0)),this.leftLabelsReflow(v)),f.length>0&&(f.sort(this.labelComparator(!1)),this.rightLabelsReflow(f)),this.box=h},e.prototype.leftLabelsReflow=function(t){var e=this.distanceBetweenLabels(t);this.distributeLabels(e,t)},e.prototype.rightLabelsReflow=function(t){var e=this.distanceBetweenLabels(t);this.distributeLabels(e,t)},e.prototype.distanceBetweenLabels=function(t){var e=Ut(this.points),o=e.sector,r=t.length-1,n=o.radius+e.options.labels.distance,i=[],a=t[0].box,s=Xt(a.y1-(o.center.y-n-a.height()-a.height()/2));i.push(s);for(var c=0;c<r;c++){var l=t[c+1].box;a=t[c].box,s=Xt(l.y1-a.y2),i.push(s)}return s=Xt(o.center.y+n-t[r].box.y2-t[r].box.height()/2),i.push(s),i},e.prototype.distributeLabels=function(t,e){for(var o,r,n,i=t.length,a=0;a<i;a++)for(n=-t[a],o=r=a;n>0&&(o>=0||r<i);)n=this._takeDistance(t,a,--o,n),n=this._takeDistance(t,a,++r,n);this.reflowLabels(t,e)},e.prototype._takeDistance=function(t,e,o,r){var n=r;if(t[o]>0){var i=Math.min(t[o],n);n-=i,t[o]-=i,t[e]+=i}return n},e.prototype.reflowLabels=function(t,e){var o,r=Ut(this.points),n=r.sector,i=r.options.labels,a=e.length,s=i.distance,c=n.center.y-(n.radius+s)-e[0].box.height();t[0]+=2;for(var l=0;l<a;l++){var h=e[l],u=h.box;c+=t[l],o=this.hAlignLabel(u.x2,n.clone().expand(s),c,c+u.height(),h.orientation===A),h.orientation===A?(i.align!==d&&(o=n.radius+n.center.x+s),h.reflow(new yo(o+u.width(),c,o,c))):(i.align!==d&&(o=n.center.x-n.radius-s),h.reflow(new yo(o-u.width(),c,o,c))),c+=u.height()}},e.prototype.createVisual=function(){var e=this,o=this.options.connectors,r=this.points,n=r.length;t.prototype.createVisual.call(this),this._connectorLines=[];for(var i=0;i<n;i++){var a=r[i],s=a.sector,c=a.label,l=s.middle(),h=(a.options.connectors||{}).color||o.color;if(c){var u=new $.drawing.Path({stroke:{color:h,width:o.width},animation:{type:oi,delay:a.animationDelay}});if(c.options.position===Ca){var p=c.box,d=s.center,v=s.point(l),f=new fo(p.x1,p.center().y),m=void 0,g=void 0,y=void 0;v=s.clone().expand(o.padding).point(l),u.moveTo(v.x,v.y),c.orientation===A?(y=zh(d,v,f,g=new fo(p.x1-o.padding,p.center().y)),f=new fo(g.x-4,g.y),(y=y||f).x=Math.min(y.x,f.x),e.pointInCircle(y,s.center,s.radius+4)||y.x<s.center.x?(m=s.center.x+s.radius+4,a.options.labels.align!==bi?m<f.x?u.lineTo(m,v.y):u.lineTo(v.x+8,v.y):u.lineTo(m,v.y),u.lineTo(f.x,g.y)):(y.y=g.y,u.lineTo(y.x,y.y))):(y=zh(d,v,f,g=new fo(p.x2+o.padding,p.center().y)),f=new fo(g.x+4,g.y),(y=y||f).x=Math.max(y.x,f.x),e.pointInCircle(y,s.center,s.radius+4)||y.x>s.center.x?(m=s.center.x-s.radius-4,a.options.labels.align!==bi?m>f.x?u.lineTo(m,v.y):u.lineTo(v.x-8,v.y):u.lineTo(m,v.y),u.lineTo(f.x,g.y)):(y.y=g.y,u.lineTo(y.x,y.y))),u.lineTo(g.x,g.y),e._connectorLines.push(u),e.visual.append(u)}}}},e.prototype.renderVisual=function(){if(t.prototype.renderVisual.call(this),se(this.options.series,(function(t){return t.autoFit}))){var e=this.targetBox,o=this.box.center(),r=this.visual.bbox();if(!r)return;var n=r.bottomRight(),i=Math.min((o.y-e.y1)/(o.y-r.origin.y),(e.y2-o.y)/(n.y-o.y),(o.x-e.x1)/(o.x-r.origin.x),(e.x2-o.x)/(n.x-o.x));i<1&&this.visual.transform($.geometry.transform().scale(i,i,[o.x,o.y]))}},e.prototype.labelComparator=function(t){var e=t?-1:1;return function(t,o){return((t.parent.sector.middle()+270)%360-(o.parent.sector.middle()+270)%360)*e}},e.prototype.hAlignLabel=function(t,e,o,r,n){var i=e.radius,a=e.center,s=a.x,c=a.y,l=Math.min(Math.abs(c-o),Math.abs(c-r));return l>i?t:s+Math.sqrt(i*i-l*l)*(n?1:-1)},e.prototype.pointInCircle=function(t,e,o){return Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2)<Math.pow(o,2)},e.prototype.formatPointValue=function(t,e){return this.chartService.format.auto(e,t.value)},e.prototype.animationDelay=function(t){return 70*t},e.prototype.stackRoot=function(){return this},e}(Mo);function zh(t,e,o,r){var n,i=(r.x-o.x)*(t.y-o.y)-(r.y-o.y)*(t.x-o.x),a=(r.y-o.y)*(e.x-t.x)-(r.x-o.x)*(e.y-t.y);if(0!==a){var s=i/a;n=new fo(t.x+s*(e.x-t.x),t.y+s*(e.y-t.y))}return n}Qt(Sh,{startAngle:90,connectors:{width:2,color:"#939393",padding:8},inactiveItems:{markers:{},labels:{}}}),it(Sh.prototype,Oh),Sh.prototype.isStackRoot=!0;const Mh=Sh;var Ph=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.createPieChart(this.series)},e.prototype.createPieChart=function(t){var e=t[0],o=new Mh(this,{series:t,padding:e.padding,startAngle:e.startAngle,connectors:e.connectors,legend:this.options.legend});this.appendChart(o)},e.prototype.appendChart=function(e,o){t.prototype.appendChart.call(this,e,o),It(this.options.legend.data,e.legendItems)},e.prototype.getPointBelow=function(t){return this.getPointToTheRight(t)},e.prototype.getPointAbove=function(t){return this.getPointToTheLeft(t)},e}(Pc);const Vh=Ph;var Ah=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowLabel=function(){var e=this.options.labels,o=this.label,r=this.sector.clone(),n=r.middle();if(o){var i=o.box.height();if(e.position===p){r.radius-=(r.radius-r.innerRadius)/2;var a=r.point(n);o.reflow(new yo(a.x,a.y-i/2,a.x,a.y))}else t.prototype.reflowLabel.call(this)}},e.prototype.createSegment=function(t,e){return So.current.createRing(t,e)},e}(_h);Qt(Ah,{overlay:{gradient:"roundedGlass"},labels:{position:p},animation:{type:Mi}}),it(Ah.prototype,Ja);const jh=Ah;var kh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.addValue=function(t,e,o){var r=it({},o.series,{index:o.index});if(this.evalSegmentOptions(r,t,o),this.createLegendItem(t,r,o),!1!==o.visible){var n=new jh(t,e,r);Object.assign(n,o),this.append(n),this.points.push(n)}},e.prototype.reflow=function(e){for(var o,r=this.options,n=e.clone(),i=Math.min(n.width(),n.height()),a=i/2,s=i-.85*i,c=r.series,l=c.length,h=Yt(r.padding,s),u=a-(h=h>a-5?a-5:h),p=0,d=0;d<l;d++){var v=c[d];0===d&&Lt(v.holeSize)&&(o=v.holeSize,u-=v.holeSize),Lt(v.size)?u-=v.size:p++,Lt(v.margin)&&d!==l-1&&(u-=v.margin)}Lt(o)||(u-=o=(a-h)/(l+.75)*.75);var f,m=o,g=0;this.seriesConfigs=[];for(var y=0;y<l;y++){var b=c[y];f=(m+=g)+Yt(b.size,u/p),this.seriesConfigs.push({innerRadius:m,radius:f}),g=b.margin||0,m=f}t.prototype.reflow.call(this,e)},e.prototype.animationDelay=function(t,e,o){return 50*t+ei*(e+1)/(o+1)},e}(Mh);Qt(kh,{startAngle:90,connectors:{width:2,color:"#939393",padding:8}});const Hh=kh;var Ih=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.createDonutChart(this.series)},e.prototype.createDonutChart=function(t){var e=t[0],o=new Hh(this,{series:t,padding:e.padding,connectors:e.connectors,legend:this.options.legend});this.appendChart(o)},e.prototype.getPointBelow=function(t){return this._getNextPoint(t,this._pointsByVertical,-1)},e.prototype.getPointAbove=function(t){return this._getNextPoint(t,this._pointsByVertical,1)},e}(Vh);const Bh=Ih;var Lh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this.valueAxisRangeTracker=new Ps},e.prototype.render=function(){this.addToLegend(this.series),this.createPolarAxis(),this.createCharts(),this.createValueAxis()},e.prototype.alignAxes=function(){var t=this.valueAxis,e=t.range(),o=t.options.reverse?e.max:e.min,r=t.getSlot(o),n=this.polarAxis.getSlot(0).center,i=t.box.translate(n.x-r.x1,n.y-r.y1);t.reflow(i)},e.prototype.createValueAxis=function(){var t,e,o=this.valueAxisRangeTracker,r=o.query(),n=this.valueAxisOptions({roundToMajorUnit:!1,zIndex:-1});n.type===xa?(t=Bn,e={min:.1,max:1}):(t=Hn,e={min:0,max:1});var i=o.query(name)||r||e;i&&r&&(i.min=Math.min(i.min,r.min),i.max=Math.max(i.max,r.max));var a=new t(i.min,i.max,n,this.chartService);this.valueAxis=a,this.appendAxis(a)},e.prototype.reflowAxes=function(){var t=this,e=t.options.plotArea,o=t.valueAxis,r=t.polarAxis,n=t.box,i=.15*Math.min(n.width(),n.height()),a=ut(e.padding||{},i),s=n.clone().unpad(a),c=s.clone();c.y2=c.y1+Math.min(c.width(),c.height()),c.align(s,D,p);var l=c.clone().shrink(0,c.height()/2);r.reflow(c),o.reflow(l);var h=o.lineBox().height()-o.box.height();o.reflow(o.box.unpad({top:h})),this.axisBox=c,this.alignAxes(c)},e.prototype.backgroundBox=function(){return this.box},e.prototype.detachLabels=function(){},e}(Pc);const Th=Lh;var Eh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointSlot=function(t,e){var o=t.center.y-e.y1,r=fo.onCircle(t.center,t.startAngle,o);return new yo(r.x,r.y,r.x,r.y)},e}(ec);Qt(Eh,{clip:!1});const Dh=Eh;var Nh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(hh);Nh.prototype.pointSlot=Dh.prototype.pointSlot,Qt(Nh,{clip:!1});const Rh=Nh;var Fh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(t){var e=this._polarAxisCenter();t.lineTo(e.x,e.y)},e.prototype._polarAxisCenter=function(){return this.parent.plotArea.polarAxis.box.center()},e.prototype.strokeSegments=function(){var t=this._strokeSegments;if(!t){var e=this._polarAxisCenter(),o=new Tn(!1),r=this.points();r.push(e),(t=this._strokeSegments=o.process(r)).pop()}return t},e}(Os);const Uh=Fh;var Kh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(t){var e=this.parent.plotArea.polarAxis.box.center(),o=new $.geometry.Segment([e.x,e.y]);t.segments.unshift(o),t.segments.push(o)},e}(xs);const qh=Kh;var $h=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createSegment=function(t,e,o){return(e.line||{}).style===ui?new Uh(t,e,o):new qh(t,e,o)},e.prototype.createMissingValue=function(t,e){var o;return Ua(t.x)&&e!==ci&&(o={x:t.x,y:t.y},e===si&&(o.y=0)),o},e.prototype.seriesMissingValues=function(t){return t.missingValues||si},e.prototype._hasMissingValuesGap=function(){for(var t=this.options.series,e=0;e<t.length;e++)if("gap"===this.seriesMissingValues(t[e]))return!0},e.prototype.sortPoints=function(t){if(t.sort(Xh),this._hasMissingValuesGap())for(var e=0;e<t.length;e++){var o=t[e];o&&(Ua(o.value.y)||"gap"!==this.seriesMissingValues(o.series)||delete t[e])}return t},e}(Rh);function Xh(t,e){return t.value.x-e.value.x}const Gh=$h;var Yh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createPolarAxis=function(){var t=new Pn(this.options.xAxis,this.chartService);this.polarAxis=t,this.axisX=t,this.appendAxis(t)},e.prototype.render=function(){this.series=[].concat(this.originalSeries),this.createTrendlineSeries(),t.prototype.render.call(this)},e.prototype.valueAxisOptions=function(t){return it(t,{majorGridLines:{type:n},minorGridLines:{type:n}},this.options.yAxis)},e.prototype.createValueAxis=function(){t.prototype.createValueAxis.call(this),this.axisY=this.valueAxis},e.prototype.trendlineFactory=function(t,e){var o=yh.prototype.trendlineFactory.call(this,t,e);return o&&(o.type=Vi),o},e.prototype.appendChart=function(t,e){this.valueAxisRangeTracker.update(t.yAxisRanges),Pc.prototype.appendChart.call(this,t,e)},e.prototype.createCharts=function(){var t=this.filterVisibleSeries(this.series),e=this.panes[0];this.createLineChart(Da(t,[Vi]),e),this.createScatterChart(Da(t,[Ai]),e),this.createAreaChart(Da(t,[Pi]),e)},e.prototype.createLineChart=function(t,e){if(0!==t.length){var o=new Rh(this,{series:t});this.appendChart(o,e)}},e.prototype.createScatterChart=function(t,e){if(0!==t.length){var o=new Dh(this,{series:t});this.appendChart(o,e)}},e.prototype.createAreaChart=function(t,e){if(0!==t.length){var o=new Gh(this,{series:t});this.appendChart(o,e)}},e.prototype._dispatchEvent=function(t,e,o){var r=t._eventCoordinates(e),n=new fo(r.x,r.y),i=this.axisX.getValue(n),a=this.axisY.getValue(n);null!==i&&null!==a&&t.trigger(o,{element:Rt(e),x:i,y:a})},e.prototype.createCrosshairs=function(){},e}(Th);Qt(Yh,{xAxis:{},yAxis:{}}),it(Yh.prototype,Ac,{seriesValues:yh.prototype.seriesValues});const Wh=Yh;var Zh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointSlot=function(t,e){var o=t.center.y-e.y1,r=fo.onCircle(t.center,t.middle(),o);return new yo(r.x,r.y,r.x,r.y)},e.prototype.renderSegments=function(){if(t.prototype.renderSegments.call(this),this._segments&&this._segments.length>1)for(var e=function(t){for(var e=[],o=0;o<t.length;o++){var r=t[o];e[r.seriesIx]=e[r.seriesIx]||[],e[r.seriesIx].push(r)}return e}(this._segments),o=0;o<e.length;o++){var r=e[o];if(r&&r.length>1){var n=r[0].linePoints[0],i=Ut(r),a=Ut(i.linePoints),s=0===n.categoryIx,c=a.categoryIx===a.categoriesCount-1;s&&c&&Ut(r).linePoints.push(n)}}},e.prototype.createSegment=function(t,e,o){var r=new(e.style===ui?us:ns)(t,e,o),n=this.seriesMissingValues(e);return t.length!==e.data.length&&n!==ci||(r.options.closed=!0),r},e}(ys);Qt(Zh,{clip:!1,limitPoints:!1});const Qh=Zh;var Jh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(){},e}(Os);const tu=Jh;var eu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(){},e}(xs);const ou=eu;var ru=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createSegment=function(t,e,o,r){var n,i,a,s=this.options.isStacked,c=(e.line||{}).style;return s&&o>0&&r&&(i=r.linePoints.slice(0),n=r),c===ui?(a=new tu(t,e,o,n,i)).options.closed=!0:(t.push(t[0]),a=new ou(t,e,o,n,i)),a},e.prototype.seriesMissingValues=function(t){return t.missingValues||si},e}(Qh);const nu=ru;var iu=function(t){function e(e,o){t.call(this,e,null,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getIndex=function(){return this.categoryIx},e}(jh);Qt(iu,{overlay:{gradient:"none"},labels:{distance:10}});const au=iu;var su=function(t){function e(e){t.call(this,e),this.forEach=e.rtl?Bs:Is}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options,o=this.children,r=e.gap,n=e.spacing,i=o.length,a=i+r+n*(i-1),s=t.angle/a,c=t.startAngle+s*(r/2);this.forEach(o,(function(e){var o=t.clone();o.startAngle=c,o.angle=s,e.sector&&(o.radius=e.sector.radius),e.reflow(o),e.sector=o,c+=s+s*n}))},e}(Mo);Qt(su,{gap:1,spacing:0});const cu=su;var lu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options.reverse,o=this.children,r=o.length,n=e?r-1:0,i=e?-1:1;this.box=new yo;for(var a=n;a>=0&&a<r;a+=i){var s=o[a].sector;s.startAngle=t.startAngle,s.angle=t.angle}},e}(Mo);const hu=lu;var uu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointType=function(){return au},e.prototype.clusterType=function(){return cu},e.prototype.stackType=function(){return hu},e.prototype.categorySlot=function(t,e){return t.getSlot(e)},e.prototype.pointSlot=function(t,e){var o=t.clone(),r=t.center.y;return o.radius=r-e.y1,o.innerRadius=r-e.y2,o},e.prototype.reflowPoint=function(t,e){t.sector=e,t.reflow()},e.prototype.createAnimation=function(){this.options.animation.center=this.box.toRect().center(),t.prototype.createAnimation.call(this)},e}(Rs);uu.prototype.reflow=Za.prototype.reflow,Qt(uu,{clip:!1,limitPoints:!1,animation:{type:"pie"}});const pu=uu;var du=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createPolarAxis=function(){var t=new zn(this.options.categoryAxis,this.chartService);this.polarAxis=t,this.categoryAxis=t,this.appendAxis(t),this.aggregateCategories(),this.createTrendlineSeries(),this.createCategoryAxesLabels()},e.prototype.valueAxisOptions=function(t){return this._hasBarCharts&&it(t,{majorGridLines:{type:n},minorGridLines:{type:n}}),this._isStacked100&&it(t,{roundToMajorUnit:!1,labels:{format:"P0"}}),it(t,this.options.valueAxis)},e.prototype.aggregateCategories=function(){xl.prototype.aggregateCategories.call(this,this.panes)},e.prototype.createCategoryAxesLabels=function(){xl.prototype.createCategoryAxesLabels.call(this,this.panes)},e.prototype.filterSeries=function(t){return t},e.prototype.trendlineFactory=function(t,e){var o=xl.prototype.trendlineFactory.call(this,t,e);return o&&(o.type=Hi),o},e.prototype.createCharts=function(){var t=this.filterVisibleSeries(this.series),e=this.panes[0];this.createAreaChart(Da(t,[ji]),e),this.createLineChart(Da(t,[Hi]),e),this.createBarChart(Da(t,[ki]),e)},e.prototype.chartOptions=function(t){var e={series:t},o=t[0];if(o){var r=this.filterVisibleSeries(t),n=o.stack;e.isStacked=n&&r.length>1,e.isStacked100=n&&"100%"===n.type&&r.length>1,e.isStacked100&&(this._isStacked100=!0)}return e},e.prototype.createAreaChart=function(t,e){if(0!==t.length){var o=new nu(this,this.chartOptions(t));this.appendChart(o,e)}},e.prototype.createLineChart=function(t,e){if(0!==t.length){var o=new Qh(this,this.chartOptions(t));this.appendChart(o,e)}},e.prototype.createBarChart=function(t,e){if(0!==t.length){var o=t[0],r=this.chartOptions(t),n=this.filterVisibleSeries(t),i=n.some((function(t){return t.stack})),a=n.some((function(t){return t.stack&&"100%"===t.stack.type}));r.gap=o.gap,r.spacing=o.spacing,r.defaultStack=o.stack&&n.length>1,r.isStacked=i&&n.length>1,r.isStacked100=a&&n.length>1;var s=new pu(this,r);this.appendChart(s,e),this._hasBarCharts=!0}},e.prototype.seriesCategoryAxis=function(){return this.categoryAxis},e.prototype._dispatchEvent=function(t,e,o){var r=t._eventCoordinates(e),n=new fo(r.x,r.y),i=this.categoryAxis.getCategory(n),a=this.valueAxis.getValue(n);null!==i&&null!==a&&t.trigger(o,{element:Rt(e),category:i,value:a})},e.prototype.createCrosshairs=function(){},e.prototype._pointsByVertical=function(e){return t.prototype._pointsByVertical.call(this,e).sort(this._getSeriesCompareFn())},e.prototype._getSeriesCompareFn=function(){return function(t,e){return e.value-t.value}},e}(Th);it(du.prototype,Ac,{appendChart:xl.prototype.appendChart,aggregateSeries:xl.prototype.aggregateSeries,seriesSourcePoints:xl.prototype.seriesSourcePoints,seriesValues:xl.prototype.seriesValues}),Qt(du,{categoryAxis:{categories:[]},valueAxis:{}});const vu=du;var fu=function(t){function e(e,o,r){t.call(this,o),this.value=e,this.options.index=r.index}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getLabelText=function(t){var e=ft(t);return e?e(this.pointData()):t.format?this.formatValue(t.format):this.value},e.prototype.reflow=function(t){var e=this.points,o=this.children[0],r=Math.min(e[0].x,e[3].x),n=Math.max(e[1].x,e[2].x);this.box=new yo(r,e[0].y,n,e[2].y),o&&o.reflow(new yo(t.x1,e[0].y,t.x2,e[2].y))},e.prototype.createVisual=function(){var e,o=this,r=this.options;t.prototype.createVisual.call(this),this.addAccessibilityAttributesToVisual(),(e=r.visual?r.visual({category:this.category,dataItem:this.dataItem,value:this.value,series:this.series,percentage:this.percentage,points:this.points,options:r,sender:this.getSender(),createVisual:function(){return o.createPath()}}):this.createPath())&&this.visual.append(e)},e.prototype.createPath=function(){var t=this.options,e=t.border;return $.drawing.Path.fromPoints(this.points,{fill:{color:t.color,opacity:t.opacity},stroke:{color:e.color,opacity:e.opacity,width:e.width}}).close()},e.prototype.createHighlight=function(t){return $.drawing.Path.fromPoints(this.points,t)},e.prototype.highlightVisual=function(){return this.visual.children[0]},e.prototype.highlightVisualArgs=function(){var t=$.drawing.Path.fromPoints(this.points).close();return{options:this.options,path:t}},e.prototype.createFocusHighlight=function(t){var e=this.options.accessibility.highlight.border.width,o=$.drawing.Path.fromPoints(this.points,it({},t,{stroke:{width:2*e}})).close(),r=new $.drawing.MultiPath;return r.paths.push($.drawing.Path.fromRect(this.box.clone().pad(e).toRect())),r.paths.push($.drawing.Path.fromPoints(this.points)),o.clip(r),o},e.prototype.tooltipAnchor=function(){var t=this.box;return{point:new fo(t.center().x,t.y1),align:{horizontal:"center",vertical:"top"}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,series:this.series,percentage:this.percentage}},e.prototype.getIndex=function(){return this.index},e}(Mo);Qt(fu,{color:L,border:{width:1},labels:{format:""},accessibility:{role:ga,className:ya,ariaRoleDescription:ba}}),it(fu.prototype,Ja),it(fu.prototype,js);const mu=fu;var gu=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this.points=[],this.labels=[],this.legendItems=[],this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.formatPointValue=function(t,e){return this.plotArea.chartService.format.auto(e,t.value)},e.prototype.render=function(){var t=this,e=this.options,o=this.plotArea.options.seriesColors;void 0===o&&(o=[]);var r=e.series[0],n=r.data;if(n)for(var i=Ia(r),a=i.total,s=i.points,c=0;c<s.length;c++){var l=s[c];if(l){var h=l.fields;et(r.color)||(r.color=h.color||o[c%o.length]),h=it({index:c,owner:t,series:r,seriesIx:0,dataItem:n[c],percentage:l.value/a},h,{visible:l.visible});var u=l.valueFields.value,p=t.createSegment(u,h),d=t.createLabel(u,h);p&&d&&p.append(d)}}},e.prototype.evalSegmentOptions=function(t,e,o){var r=o.series;Ea(t,{value:e,series:r,dataItem:o.dataItem,index:o.index},{defaults:r._defaults,excluded:["data","content","template","toggle","visual","ariaTemplate","ariaContent"]})},e.prototype.createSegment=function(t,e){var o=it({},e.series);if(this.evalSegmentOptions(o,t,e),this.createLegendItem(t,o,e),!1!==e.visible){var r=new mu(t,o,e);return Object.assign(r,e),this.append(r),this.points.push(r),r}},e.prototype.createLabel=function(t,e){var o=e.series,r=e.dataItem,n=it({},this.options.labels,o.labels),i=t;if(n.visible){var a=ft(n),s={dataItem:r,value:t,percentage:e.percentage,category:e.category,series:o};a?i=a(s):n.format&&(i=this.chartService.format.auto(n.format,i)),n.color||(n.color=pe(o.color),n.background||(n.background=o.color)),this.evalSegmentOptions(n,t,e);var c=new $o(i,it({vAlign:n.position},n),s);return this.labels.push(c),c}},e.prototype.labelPadding=function(){for(var t=this.labels,e={left:0,right:0},o=0;o<t.length;o++){var r=t[o].options.align;if(r!==p){var n=t[o].box.width();r===O?e.left=Math.max(e.left,n):e.right=Math.max(e.right,n)}}return e},e.prototype.dynamicSlopeReflow=function(t,e,o){for(var r=this.options,n=this.points,i=n.length,a=n[0],s=a,c=0;c<n.length;c++)n[c].percentage>s.percentage&&(s=n[c]);for(var l=a.percentage/s.percentage*e,h=(e-l)/2,u=0,p=0;p<i;p++){var d=n[p].percentage,v=n[p+1],f=v?v.percentage:d,m=n[p].points=[],g=r.dynamicHeight?o*d:o/i,y=void 0;y=Kt(y=d?(e-l*(f/d))/2:f?0:e/2,0,e),m.push(new $.geometry.Point(t.x1+h,t.y1+u)),m.push(new $.geometry.Point(t.x1+e-h,t.y1+u)),m.push(new $.geometry.Point(t.x1+e-y,t.y1+g+u)),m.push(new $.geometry.Point(t.x1+y,t.y1+g+u)),h=y,u+=g+r.segmentSpacing,l=Kt(e-2*y,0,e)}},e.prototype.constantSlopeReflow=function(t,e,o){for(var r=this.options,n=this.points,i=n.length,a=r.neckRatio<=1,s=a?r.neckRatio*e:e,c=a?0:(e-e/r.neckRatio)/2,l=((a?e:e-2*c)-s)/2,h=0,u=0;u<i;u++){var p=n[u].points=[],d=n[u].percentage,v=r.dynamicHeight?l*d:l/i,f=r.dynamicHeight?o*d:o/i;p.push(new $.geometry.Point(t.x1+c,t.y1+h)),p.push(new $.geometry.Point(t.x1+e-c,t.y1+h)),p.push(new $.geometry.Point(t.x1+e-c-v,t.y1+f+h)),p.push(new $.geometry.Point(t.x1+c+v,t.y1+f+h)),c+=v,h+=f+r.segmentSpacing}},e.prototype.reflow=function(t){var e=this.points,o=e.length;if(o){var r=this.options,n=t.clone().unpad(this.labelPadding()),i=n.height()-r.segmentSpacing*(o-1),a=n.width();r.dynamicSlope?this.dynamicSlopeReflow(n,a,i):this.constantSlopeReflow(n,a,i);for(var s=0;s<o;s++)e[s].reflow(t)}},e}(Mo);Qt(gu,{neckRatio:.3,width:300,dynamicSlope:!1,dynamicHeight:!0,segmentSpacing:0,labels:{visible:!1,align:p,position:p,zIndex:1}}),it(gu.prototype,Oh);const yu=gu;var bu=function(t){function e(e,o){o.dynamicSlope=!1,o.neckRatio=1e6,t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(yu);const xu=bu;var wu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.createChart(yu,Da(this.series,[wi])),this.createChart(xu,Da(this.series,[_i]))},e.prototype.createChart=function(t,e){var o=e[0];if(o){var r=new t(this,{series:e,legend:this.options.legend,neckRatio:o.neckRatio,dynamicHeight:o.dynamicHeight,dynamicSlope:o.dynamicSlope,segmentSpacing:o.segmentSpacing,highlight:o.highlight});this.appendChart(r)}},e.prototype.appendChart=function(e,o){t.prototype.appendChart.call(this,e,o),It(this.options.legend.data,e.legendItems)},e.prototype._pointsByVertical=function(t){return this.pointsBySeriesIndex(t.series.index)},e.prototype.getPointToTheRight=function(t){return this.getPointBelow(t)},e.prototype.getPointToTheLeft=function(t){return this.getPointAbove(t)},e}(Pc);const _u=wu;var Cu=function(t){function e(e,o){t.call(this),this.options=o,this.color=o.color||L,this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this._rendered||(this._rendered=!0,this.createMarker(),this.createLabel(),this.createNote())},e.prototype.createLabel=function(){var t=this.options.labels;t.visible&&(this.label=this.createLabelElement(t),this.append(this.label))},e.prototype.createLabelElement=function(t){var e=t.color;return e||(e=pe(this.color)),new $o(this.getLabelText(t),it({align:p,vAlign:p,margin:{left:5,right:5},zIndex:Yt(t.zIndex,this.series.zIndex)},t,{color:e}),this.pointData())},e.prototype.getLabelText=function(t){var e=ft(t);return e?e(this.pointData()):this.formatValue(t.format)},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.reflow=function(t){this.render();var e=this.label;this.box=t,e&&e.reflow(this.markerBox()),this.note&&this.note.reflow(t),this.marker.reflow(this.markerBox())},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.addAccessibilityAttributesToVisual()},e.prototype.markerBox=function(){var t=this.options.markers,e=t.border,o=this.box.toRect(),r=Yt(t.type,"rect")===j,n=Yt(e.width,r?1:0),i=Math.round(n/2);if(t.size){var a=o.center();o.size.width=o.size.height=t.size,o.origin.x=Math.round(a.x-o.size.width/2),o.origin.y=Math.round(a.y-o.size.height/2)}return o.size.width-=n,o.size.height-=n,o.origin.y+=i+.5,o.origin.x+=i+.5,Uo(o)},e.prototype.markerBorder=function(){var t=this.options,e=t.markers.border,o=Yt(e.opacity,t.opacity);return{color:e.color||this.color,width:e.width,opacity:o,dashType:e.dashType}},e.prototype.createMarker=function(){var t=this.options,e=t.markers,o=new ko({type:Yt(e.type,"rect"),width:e.size,height:e.size,rotation:e.rotation,background:this.color,border:this.markerBorder(),borderRadius:e.borderRadius,opacity:this.series.opacity||t.opacity,zIndex:Yt(t.zIndex,this.series.zIndex),animation:t.animation,visual:t.visual},{dataItem:this.dataItem,value:this.value,series:this.series,category:this.category});this.marker=o,this.append(o)},e.prototype.createHighlight=function(t){var e=this.options,o=this.options.highlight.markers||this.options.markers,r=new ko({type:Yt(o.type,"rect"),width:o.size,height:o.size,rotation:o.rotation,background:o.color||this.color,border:this.markerBorder(),borderRadius:o.borderRadius,opacity:this.series.opacity||e.opacity,zIndex:Yt(e.zIndex,this.series.zIndex)});r.reflow(this.markerBox());var n=r.getElement();return n.options.fill=t.fill,n.options.stroke=t.stroke,n},e.prototype.highlightVisual=function(){return this.rectVisual},e.prototype.highlightVisualArgs=function(){return{options:this.options,rect:this.box.toRect(),visual:this.rectVisual}},e.prototype.createFocusHighlight=function(){var t=this.options.markers,e=this.options.accessibility.highlight,o=new ko({type:Yt(t.type,"rect"),width:t.size,height:t.size,rotation:t.rotation,background:e.color,border:e.border,borderRadius:t.borderRadius,padding:e.border.width/2,zIndex:e.zIndex});return o.reflow(this.markerBox()),o.getElement()},e.prototype.tooltipAnchor=function(){var t=this.box.center().x,e=this.box.y1-5;return{point:new fo(t,e),align:{horizontal:p,vertical:u}}},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.unclipElements=function(){},e.prototype.pointData=function(){return{x:this.value.x,y:this.value.y,value:this.value.value,dataItem:this.dataItem,series:this.series}},e}(Mo);it(Cu.prototype,Ja),it(Cu.prototype,ts),it(Cu.prototype,js),Cu.prototype.defaults={markers:{type:"rect",borderRadius:4,border:{color:"transparent"}},padding:{top:1},labels:{visible:!1,padding:3},opacity:1,notes:{label:{}},accessibility:{role:ga,className:ya,ariaRoleDescription:ba}};const Ou=Cu;var Su=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this._initFields(),this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initFields=function(){this.points=[],this.seriesOptions=[],this.valueRange={min:S,max:z},this._evalSeries=[]},e.prototype.render=function(){this.setRange(),this.traverseDataPoints(this.addValue.bind(this))},e.prototype.setRange=function(){for(var t=this,e=this.options.series,o=0;o<e.length;o++)for(var r=e[o],n=0;n<r.data.length;n++){var i=t.plotArea.bindPoint(r,n).valueFields;Lt(i.value)&&null!==i.value&&(t.valueRange.min=Math.min(t.valueRange.min,i.value),t.valueRange.max=Math.max(t.valueRange.max,i.value))}},e.prototype.addValue=function(t,e){var o;t&&Lt(t.value)&&null!==t.value&&(o=this.createPoint(t,e))&&Object.assign(o,e),this.points.push(o)},e.prototype.evalPointOptions=function(t,e,o){var r=o.series,n=o.seriesIx,i={defaults:r._defaults,excluded:["data","tooltip","content","template","visual","toggle","drilldownSeriesFactory","ariaTemplate","ariaContent"]},a=this._evalSeries[n];Lt(a)||(this._evalSeries[n]=a=Ea(t,{},i,!0));var s=t;return a&&Ea(s=it({},t),{value:e,series:r,dataItem:o.dataItem,min:this.valueRange.min,max:this.valueRange.max},i),s},e.prototype.pointType=function(){return Ou},e.prototype.pointOptions=function(t,e){var o=this.seriesOptions[e];if(!o){var r=this.pointType().prototype.defaults;this.seriesOptions[e]=o=it({},r,{markers:{opacity:t.opacity},tooltip:{format:this.options.tooltip.format},labels:{format:this.options.labels.format}},t)}return o},e.prototype.createPoint=function(t,e){var o=e.series,r=this.pointOptions(o,e.seriesIx),n=e.color||o.color;r=this.evalPointOptions(r,t,e),et(o.color)?n=r.color:0!==this.valueRange.max&&(n=function(t,e){void 0===e&&(e=.05);var o=(0,$.parseColor)(t),r=1-e;return function(t){var e=o.toHSL(),n=100-e.l,i=r-t;return e.l+=Math.min(i*n,n),e.toCss()}}(n)(t.value/this.valueRange.max));var i=new Ou(t,r);return i.color=n,this.append(i),i},e.prototype.seriesAxes=function(t){var e=t.xAxis,o=t.yAxis,r=this.plotArea,n=e?r.namedXAxes[e]:r.axisX,i=o?r.namedYAxes[o]:r.axisY;if(!n)throw new Error("Unable to locate X axis with name "+e);if(!i)throw new Error("Unable to locate Y axis with name "+o);return{xAxis:n,yAxis:i}},e.prototype.reflow=function(t){var e=this,o=this.points,r=!this.options.clip,n=0;this.traverseDataPoints((function(t,i){var a=o[n++],s=e.seriesAxes(i.series),c=s.xAxis,l=s.yAxis,h=c.categoryIndex(t.x),u=l.categoryIndex(t.y),p=c.getSlot(h,h,r),d=l.getSlot(u,u,r);if(a)if(p&&d){var v=e.pointSlot(p,d);a.reflow(v)}else a.visible=!1})),this.box=t},e.prototype.pointSlot=function(t,e){return new yo(t.x1,e.y1,t.x2,e.y2)},e.prototype.traverseDataPoints=function(t){for(var e=this,o=this.options.series,r=0;r<o.length;r++)for(var n=o[r],i=e.seriesAxes(n),a=i.xAxis,s=i.yAxis,c=a.currentRangeIndices(),l=s.currentRangeIndices(),h=0;h<n.data.length;h++){var u=e.plotArea.bindPoint(n,h),p=u.valueFields,d=u.fields,v=a.totalIndex(p.x),f=s.totalIndex(p.y),m=c.min<=v&&v<=c.max,g=l.min<=f&&f<=l.max;m&&g&&t(p,it({pointIx:h,series:n,seriesIx:r,dataItem:n.data[h],owner:e},d))}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.x,o.y,o.value)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++)e.push((t[o]||{}).marker);return e},e}(Mo);Qt(Su,{series:[],tooltip:{format:"{0}, {1}: {2}"},labels:{format:"{2}"},clip:!0});const zu=Su;var Mu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this.namedXAxes={},this.namedYAxes={}},e.prototype.render=function(t){void 0===t&&(t=this.panes),this.bindCategories(),this.createAxes(t),this.createCharts(t),this.createAxisLabels()},e.prototype.bindCategories=function(){for(var t=this.srcSeries||this.series,e=0;e<t.length;e++){for(var o=t[e],r=o.data||[],n=this.seriesAxes(o),i=n.xAxis,a=n.yAxis,s=be(i.categories||[]),c=be(a.categories||[]),l=0;l<r.length;l++){var h=Yn.current.bindPoint(o,l).valueFields,u=h.x,p=h.y;s.has(u)||s.add(u),c.has(p)||c.add(p)}i.categories=s.values(),a.categories=c.values()}},e.prototype.createCharts=function(t){for(var e=this,o=this.groupSeriesByPane(),r=0;r<t.length;r++){var n=t[r],i=o[n.options.name||"default"]||[];e.addToLegend(i);var a=e.filterVisibleSeries(i);a&&e.createHeatmapChart(Da(a,[Ci]),n)}},e.prototype.createHeatmapChart=function(t,e){var o=new zu(this,{series:t});this.appendChart(o,e)},e.prototype.seriesPaneName=function(t){var e=this.options,o=t.xAxis,r=xt([].concat(e.xAxis),(function(t){return t.name===o}))[0],n=t.yAxis,i=xt([].concat(e.yAxis),(function(t){return t.name===n}))[0],a=(e.panes||[{}])[0].name||"default";return(r||{}).pane||(i||{}).pane||a},e.prototype.seriesAxes=function(t){var e,o,r=this.options,n=[].concat(r.xAxis),i=t.xAxis;e=i?n.find((function(t){return t.name===i})):n[0];var a=[].concat(r.yAxis),s=t.yAxis;if(o=s?a.find((function(t){return t.name===s})):a[0],!e)throw new Error("Unable to locate X axis with name "+i);if(!o)throw new Error("Unable to locate Y axis with name "+s);return{xAxis:e,yAxis:o}},e.prototype.createAxisLabels=function(){for(var t=this.axes,e=0;e<t.length;e++)t[e].createLabels()},e.prototype.createXYAxis=function(t,e,o){for(var r,n=t.name,i=e?this.namedYAxes:this.namedXAxes,a=Object.assign({axisCrossingValue:0},t,{vertical:e,reverse:e||this.chartService.rtl?!t.reverse:t.reverse,justified:!1}),s=a.categories?a.categories[0]:null,c=[a.min,a.max,s],l=this.series,h=0;h<l.length;h++){var u=l[h],p=u[e?"yAxis":"xAxis"];if(p===a.name||0===o&&!p){var d=Yn.current.bindPoint(u,0).valueFields;c.push(d[e?"y":"x"]);break}}for(var v=0;v<c.length;v++)if(c[v]instanceof Date){r=!0;break}var f=new(La(a.type,m)||!a.type&&r?ln:Jr)(a,this.chartService);if(f.axisIndex=o,n){if(i[n])throw new Error((e?"Y":"X")+" axis with name "+n+" is already defined");i[n]=f}return this.appendAxis(f),f.indexCategories(),f},e.prototype.createAxes=function(t){for(var e=this,o=this.options,r=[].concat(o.xAxis),n=[],i=[].concat(o.yAxis),a=[],s=0;s<r.length;s++)Ot(e.findPane(r[s].pane),t)&&n.push(e.createXYAxis(r[s],!1,s));for(var c=0;c<i.length;c++)Ot(e.findPane(i[c].pane),t)&&a.push(e.createXYAxis(i[c],!0,c));this.axisX=this.axisX||n[0],this.axisY=this.axisY||a[0]},e.prototype.removeAxis=function(e){var o=e.options.name;t.prototype.removeAxis.call(this,e),e.options.vertical?delete this.namedYAxes[o]:delete this.namedXAxes[o],e===this.axisX&&delete this.axisX,e===this.axisY&&delete this.axisY},e.prototype._dispatchEvent=function(t,e,o){for(var r=t._eventCoordinates(e),n=new fo(r.x,r.y),i=this.axes,a=i.length,s=[],c=[],l=0;l<a;l++){var h=i[l];ja(h.options.vertical?c:s,h.getCategory(n))}s.length>0&&c.length>0&&t.trigger(o,{element:Rt(e),originalEvent:e,x:qa(s),y:qa(c)})},e.prototype.updateAxisOptions=function(t,e){var o=t.options.vertical,r=this.groupAxes(this.panes),n=(o?r.y:r.x).indexOf(t);Vu(this.options,n,o,e),Vu(this.originalOptions,n,o,e)},e.prototype.crosshairOptions=function(t){return Object.assign({},t.options.crosshair,{zIndex:0})},e.prototype._pointsByVertical=function(t,e){var o=this;void 0===e&&(e=0);var r=this.axisX.options.reverse?-1*e:e,n=this.axisX.children,i=this._getPointAxisXIndex(t)+r,a=n[i=tt(i,n.length)].value,s=this.filterPoints((function(t){return Pu(t.pointData().x,a)})).sort((function(t,e){return o._getPointAxisYIndex(t)-o._getPointAxisYIndex(e)}));return this.axisY.options.reverse?s.reverse():s},e.prototype._pointsByHorizontal=function(t,e){var o=this;void 0===e&&(e=0);var r=this.axisY.options.reverse?-1*e:e,n=this.axisY.children,i=this._getPointAxisYIndex(t)+r,a=n[i=tt(i,n.length)].value,s=this.filterPoints((function(t){return Pu(t.pointData().y,a)})).sort((function(t,e){return o._getPointAxisXIndex(t)-o._getPointAxisXIndex(e)}));return this.axisX.options.reverse?s.reverse():s},e.prototype._getPointAxisXIndex=function(t){return this._getPointAxisIndex(this.axisX,t.pointData().x)},e.prototype._getPointAxisYIndex=function(t){return this._getPointAxisIndex(this.axisY,t.pointData().y)},e.prototype._getPointAxisIndex=function(t,e){return t.children.findIndex((function(t){return Pu(e,t.value)}))},e}(Pc);function Pu(t,e){return t instanceof Date&&e instanceof Date?qr(t,e):t===e}function Vu(t,e,o,r){it([].concat(o?t.yAxis:t.xAxis)[e],r)}Qt(Mu,{xAxis:{},yAxis:{}}),it(Mu.prototype,Ac);const Au=Mu;var ju="color",ku="first",Hu="max",Iu="min",Bu="noteText";Yl.current.register(xl,[vi,bi,Si,Fi,di,Di,yi,zi,gi,Ri,fi,Ni,Li,Bi,Ki,Oi,Ii,Ui].concat(Qi)),Yl.current.register(yh,[Ti,Ei,mi].concat(Qi)),Yl.current.register(Vh,[Mi]),Yl.current.register(Bh,[xi]),Yl.current.register(_u,[wi,_i]),Yl.current.register(Wh,[Pi,Vi,Ai].concat(Qi)),Yl.current.register(vu,[ji,ki,Hi].concat(Qi)),Yl.current.register(Au,[Ci]),Yn.current.register([vi,bi,Si,Fi,di,Di],[B],[wa,ju,Bu,ii,ai,Sa]),Yn.current.register([Li,Bi,Ii,Ui],["from","to"],[wa,ju,Bu,Sa]),Yn.current.register([Ki,Oi],[B],[wa,ju,Bu,"summary",Sa]),Yn.current.register([Pi,Vi,Ai],[E,D],[ju,Sa]),Yn.current.register([ji,ki,Hi],[B],[wa,ju,Sa]),Yn.current.register([wi,_i],[B],[wa,ju,"visibleInLegend","visible",Sa]),Bc.current.register([vi,bi,Si,Fi,di,Di,Ki,Oi],{value:Hu,color:ku,noteText:ku,errorLow:Iu,errorHigh:Hu}),Bc.current.register([Li,Bi,Ii,Ui],{from:Iu,to:Hu,color:ku,noteText:ku}),Bc.current.register([ji,ki,Hi],{value:Hu,color:ku}),Yn.current.register([Ti,Ei,mi],[E,D],[ju,Bu,"xErrorLow","xErrorHigh","yErrorLow","yErrorHigh"]),Yn.current.register([mi],[E,D,"size"],[ju,wa,Bu]),Yn.current.register([Ci],[E,D,B],[ju,Bu]),Yn.current.register([yi,zi],["open","high","low","close"],[wa,ju,"downColor",Bu]),Bc.current.register([yi,zi],{open:Hu,high:Hu,low:Iu,close:Hu,color:ku,downColor:ku,noteText:ku}),Yn.current.register([fi,Ni],["lower","q1","median","q3","upper","mean","outliers"],[wa,ju,Bu,Sa]),Bc.current.register([fi,Ni],{lower:Hu,q1:Hu,median:Hu,q3:Hu,upper:Hu,mean:Hu,outliers:ku,color:ku,noteText:ku}),Yn.current.register([gi,Ri],["current","target"],[wa,ju,"visibleInLegend",Bu,Sa]),Bc.current.register([gi,Ri],{current:Hu,target:Hu,color:ku,noteText:ku}),Yn.current.register([Mi,xi],[B],[wa,ju,"explode","visibleInLegend","visible",Sa]);var Lu=[wa,B,E,D],Tu="mousemove",Eu="contextmenu",Du="mouseleave",Nu="keydown",Ru="focus",Fu="blur",Uu=function(t){function e(e,o,r,n){var i=this;void 0===n&&(n={}),t.call(this),this.observers=[],this.addObserver(n.observer),this.chartService=new ur(this,n),this.chartService.theme=r,this._initElement(e);var a=it({},this.options,o);this._originalOptions=it({},a),this._theme=r,this._initTheme(a,r),this._focusState={},this._initHandlers(),this._initSurface(),this.bindCategories(),Zt.preloadFonts(o,(function(){i.fontLoaded=!0,i._destroyed||(i.trigger("init"),i._redraw(),i._attachEvents())}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initElement=function(t){for(this._setElementClass(t),t.style.position="relative",t.tabIndex=t.getAttribute("tabindex")?t.getAttribute("tabindex"):0,t.setAttribute("role","graphics-document document");t.firstChild;)t.removeChild(t.firstChild);this.element=t},e.prototype._setElementClass=function(t){U(t,"k-chart")},e.prototype._initTheme=function(t,e){for(var o=[],r=t.series||[],n=0;n<r.length;n++)o.push(Object.assign({},r[n]));t.series=o,function(t){for(var e=Lu,o=0;o<e.length;o++){var r=e[o]+"Axes";t[r]&&(t[e[o]+"Axis"]=t[r],delete t[r])}}(t),this.applyDefaults(t,e),null===t.seriesColors&&delete t.seriesColors,W(t.title)&&(t.title={text:t.title}),this.options=it({},e,t),this.applySeriesColors()},e.prototype.getSize=function(){var t=this.options.chartArea||{};return{width:t.width?parseInt(t.width,10):Math.floor(this.element.offsetWidth),height:t.height?parseInt(t.height,10):Math.floor(this.element.offsetHeight)}},e.prototype.resize=function(t){var e=this.getSize(),o=this._size,r=e.width>0||e.height>0;t||r&&(!o||e.width!==o.width||e.height!==o.height)?(this._size=e,this._resize(e,t),this.trigger("resize",e)):r&&this._selections&&se(this._selections,(function(t){return!t.visible}))&&(this._destroySelections(),this._setupSelection())},e.prototype._resize=function(){this._noTransitionsRedraw()},e.prototype.redraw=function(t){if(this.applyDefaults(this.options),this.applySeriesColors(),t){var e=this._model._plotArea,o=e.findPane(t);e.redraw(o)}else this._redraw()},e.prototype.getAxis=function(t){return Nn(t,this._plotArea.axes)},e.prototype.findAxisByName=function(t){return this.getAxis(t)},e.prototype.findPaneByName=function(t){for(var e=this._plotArea.panes,o=0;o<e.length;o++)if(e[o].options.name===t)return new Fn(e[o])},e.prototype.findPaneByIndex=function(t){var e=this._plotArea.panes;if(e[t])return new Fn(e[t])},e.prototype.plotArea=function(){return new Un(this._plotArea)},e.prototype.toggleHighlight=function(t,e){var o,r,n,i=this._plotArea,a=(i.srcSeries||i.series||[])[0];et(e)?o=i.filterPoints(e):(at(e)?(r=e.series,n=e.category):r=n=e,o=a.type===xi?Ku(i.pointsBySeriesName(r),n):Ot(a.type,[Mi,wi,_i])?Ku((i.charts[0]||{}).points,n):i.pointsBySeriesName(r)),o&&this.togglePointsHighlight(t,o)},e.prototype.togglePointsHighlight=function(t,e){for(var o=this._highlight,r=0;r<e.length;r++)o.togglePointHighlight(e[r],t)},e.prototype.showTooltip=function(t){var e,o,r=this._sharedTooltip(),n=this._tooltip,i=this._plotArea;if(et(t)?(e=i.findPoint(t))&&r&&(o=e.categoryIx):r&&Lt(t)&&(o=i.categoryAxis.categoryIndex(t)),r){if(o>=0){var a=this._plotArea.pointsByCategoryIndex(o);n.showAt(a)}}else e&&n.show(e)},e.prototype.hideTooltip=function(){this._tooltip.hide()},e.prototype._initSurface=function(){var t=this.surface,e=this._surfaceWrap(),o=this.options.chartArea||{};o.width&&Dt(e,{width:o.width}),o.height&&Dt(e,{height:o.height}),t&&t.options.type===this.options.renderAs?(this.surface.clear(),this.surface.resize()):(this._destroySurface(),this.surface=$.drawing.Surface.create(e,{type:this.options.renderAs}),this.surface.bind("mouseenter",this._surfaceMouseenterHandler),this.surface.bind("mouseleave",this._surfaceMouseleaveHandler))},e.prototype._surfaceWrap=function(){return this.element},e.prototype._redraw=function(){var t=this._getModel();this._size={width:t.options.width,height:t.options.height},this._destroyView(),this._setElementAccessibilityAttributes(),this._model=t,this._plotArea=t._plotArea,this._legend=t._legend,t.renderVisual(),!1!==this.options.transitions&&t.traverse((function(t){t.animation&&t.animation.setup()})),this._initSurface(),this.surface.draw(t.visual),!1!==this.options.transitions&&t.traverse((function(t){t.animation&&t.animation.play()})),this._tooltip=this._createTooltip(),this._highlight=new Cl,this._setupSelection(),this._createPannable(),this._createZoomSelection(),this._createMousewheelZoom(),this.trigger("render"),Yu(this._plotArea.panes),this._navState||this._cancelDomEvents(),this._redrawFocusHighlight()},e.prototype._redrawFocusHighlight=function(){var t=this._focusState,e=t.legendInFocus,o=t.preserveHighlight;e&&o&&(this._focusElement(this._getFocusedLegendItem(),!1),this._focusState.preserveHighlight=!1)},e.prototype._setElementAccessibilityAttributes=function(){var t=this.options.title,e=W(t)?t:t.description||t.text;e&&this.element.setAttribute("aria-roledescription",e)},e.prototype.exportVisual=function(t){var e;if(t&&(t.width||t.height||t.options)){var o=this.options,r=it({},t.options,{chartArea:{width:t.width,height:t.height}});Gu(this._originalOptions,r),this.options=it({},this._originalOptions,r),this._initTheme(this.options,this._theme),this.bindCategories();var n=this._getModel();n.renderVisual(),Yu(n._plotArea.panes),e=n.visual,this.options=o}else e=this.surface.exportVisual();return e},e.prototype._sharedTooltip=function(){return this._plotArea instanceof xl&&this.options.tooltip&&this.options.tooltip.shared},e.prototype._createPannable=function(){var t=this.options;!1!==t.pannable&&(this._pannable=new Ml(this._plotArea,t.pannable))},e.prototype._createZoomSelection=function(){var t=this.options.zoomable,e=(t||{}).selection;!1!==t&&!1!==e&&(this._zoomSelection=new Vl(this,e))},e.prototype._createMousewheelZoom=function(){var t=this.options.zoomable,e=(t||{}).mousewheel;!1!==t&&!1!==e&&(this._mousewheelZoom=new jl(this,e))},e.prototype._toggleDragZoomEvents=function(){var t=this.options.pannable,e=this.options.zoomable,o=(e||{}).selection,r=(e||{}).mousewheel,n=!(t||!1!==e&&!1!==o||this.requiresHandlers([ca,aa,sa])),i=(!1===e||!1===r)&&!this.requiresHandlers([la,ha,ua]),a=this.element;this._dragZoomEnabled&&n&&i?(a.style.touchAction=this._touchAction||"",this._dragZoomEnabled=!1):this._dragZoomEnabled||n&&i||(a.style.touchAction="none",this._dragZoomEnabled=!0),this._toggleDomEvents(!n,!i)},e.prototype._toggleDomEvents=function(t,e){var o=this.domEvents;o&&(o.toggleDrag&&o.toggleDrag(t),o.toggleZoom&&o.toggleZoom(e))},e.prototype._createTooltip=function(){var t=this.options.tooltip;return this._sharedTooltip()?this._createSharedTooltip(t):new eh(this.chartService,t)},e.prototype._createSharedTooltip=function(t){return new rh(this._plotArea,t)},e.prototype.applyDefaults=function(t,e){!function(t,e){var o,r,n,i=(e||{}).axisDefaults||{};function a(t){var e=(t||{}).color||r.color,n=it({},i,i[o],r,r[o],{line:{color:e},labels:{color:e},title:{color:e}},t);return delete n[o],n}for(var s=0;s<Lu.length;s++)o=Lu[s]+"Axis",r=t.axisDefaults||{},n=(n=[].concat(t[o])).map(a),t[o]=n.length>1?n:n[0]}(t,e),function(t,e){var o=t.series,r=o.length,n=t.seriesDefaults,i=it({},t.seriesDefaults),a=e?it({},e.seriesDefaults):{},s=it({},a);qu(i),qu(s);for(var c=0;c<r;c++){var l=o[c].type||t.seriesDefaults.type,h=it({data:[]},s,a[l],{tooltip:t.tooltip},i,n[l]);o[c]._defaults=h,o[c]=it({},h,o[c]),o[c].data=o[c].data||[]}}(t,e)},e.prototype.applySeriesColors=function(){for(var t=this.options,e=t.series,o=t.seriesColors||[],r=0;r<e.length;r++){var n=e[r],i=o[r%o.length],a=n._defaults;n.color=n.color||i,a&&(a.color=a.color||i)}},e.prototype._getModel=function(){var t=this.options,e=this._createPlotArea(),o=new To(this._modelOptions());o.chart=this,o._plotArea=e;var r=Yo.buildTitle(t.title),n=Yo.buildTitle(t.subtitle,{align:t.title.align,position:t.title.position});if(o.append.apply(o,Yo.orderTitles([r,n])),t.legend&&t.legend.visible){var i=new Xl(e.options.legend,this.chartService);o.append(i),o._legend=i}return o.append(e),o.reflow(),o},e.prototype._modelOptions=function(){var t=this.options,e=this.getSize();return it({transitions:t.transitions,width:e.width||600,height:e.height||400},t.chartArea)},e.prototype._createPlotArea=function(t){var e=this.options;return Yl.current.create(t?[]:e.series,e,this.chartService)},e.prototype._setupSelection=function(){for(var t=this._plotArea.axes,e=this._selections=[],o=0;o<t.length;o++){var r=t[o],n=r.options;if(r instanceof Jr&&n.select&&!n.vertical){var i=r.range(),a=new Jl(this,r,it({min:i.min,max:i.max},n.select));e.push(a)}}},e.prototype._selectStart=function(t){return this.trigger(pa,t)},e.prototype._select=function(t){return this.trigger(da,t)},e.prototype._selectEnd=function(t){return this.trigger(va,t)},e.prototype._initHandlers=function(){this._clickHandler=this._click.bind(this),this._keydownHandler=this._keydown.bind(this),this._focusHandler=this._focus.bind(this),this._blurHandler=this._blur.bind(this),this._mousedownHandler=this._mousedown.bind(this),this._mousewheelHandler=this._mousewheel.bind(this),this._mouseleaveHandler=this._mouseleave.bind(this),this._surfaceMouseenterHandler=this._mouseover.bind(this),this._surfaceMouseleaveHandler=this._mouseout.bind(this),this._mousemove=(0,$.throttle)(this._mousemove.bind(this),20)},e.prototype.addObserver=function(t){t&&this.observers.push(t)},e.prototype.removeObserver=function(t){var e=this.observers.indexOf(t);e>=0&&this.observers.splice(e,1)},e.prototype.requiresHandlers=function(t){for(var e=this.observers,o=0;o<e.length;o++)if(e[o].requiresHandlers(t))return!0},e.prototype.trigger=function(t,e){void 0===e&&(e={}),e.sender=this,t===fa?e.anchor.point=this._toDocumentCoordinates(e.anchor.point):t===oa?this._updateDrilldownPoint(e.point):t===ra?this._resetDrilldownPoint():t===ta?(this._focusPoint(e.point),this._startDrilldown(e.point)):t===Ji&&this._focusLegendItem(e);for(var o=this.observers,r=!1,n=0;n<o.length;n++)o[n].trigger(t,e)&&(r=!0);return r},e.prototype._attachEvents=function(){var t,e,o=this.element;this._touchAction=o.style.touchAction,Bt(o,((t={})[Eu]=this._clickHandler,t[Oa]=this._mousewheelHandler,t[Du]=this._mouseleaveHandler,t[Nu]=this._keydownHandler,t.mousedown=this._mousedownHandler,t[Ru]=this._focusHandler,t[Fu]=this._blurHandler,t)),this._shouldAttachMouseMove()&&Bt(o,((e={})[Tu]=this._mousemove,e)),this.domEvents=vr.create(this.element,{start:this._start.bind(this),move:this._move.bind(this),end:this._end.bind(this),tap:this._tap.bind(this),gesturestart:this._gesturestart.bind(this),gesturechange:this._gesturechange.bind(this),gestureend:this._gestureend.bind(this)}),this._toggleDragZoomEvents()},e.prototype._mouseleave=function(t){this._hoveredPoint&&(this._hoveredPoint.out(this,t),this._hoveredPoint=null),this._plotAreaHovered&&(this._plotAreaHovered=!1,this.trigger(ia)),this._hasInactiveOpacity()&&this._activeChartInstance&&(this._applySeriesOpacity(this._activeChartInstance.children,null,!0),this._updateSeriesOpacity(null,!0))},e.prototype._cancelDomEvents=function(){this.domEvents&&this.domEvents.cancel&&this.domEvents.cancel()},e.prototype._gesturestart=function(t){this._mousewheelZoom&&!this._stopChartHandlers(t)&&(this._gestureDistance=t.distance,this._unsetActivePoint(),this._clearFocusedElement(),this.surface.suspendTracking())},e.prototype._gestureend=function(t){this._zooming&&!this._stopChartHandlers(t)&&(this.surface&&this.surface.resumeTracking(),this._zooming=!1,this.trigger(ua,{}))},e.prototype._gesturechange=function(t){var e=this._mousewheelZoom;if(e&&!this._stopChartHandlers(t)){t.preventDefault();var o=this._gestureDistance,r=-t.distance/o+1;if(Math.abs(r)>=.1){r=Math.round(10*r),this._gestureDistance=t.distance;var n={delta:r,axisRanges:$u(this._plotArea.axes),originalEvent:t};if(this._zooming||!this.trigger(la,n)){var i=this._eventCoordinates(t);this._zooming||(this._zooming=!0),(n.axisRanges=e.updateRanges(r,i))&&!this.trigger(ha,n)&&e.zoom()}}}},e.prototype._mouseout=function(t){if(t.element){var e=this._drawingChartElement(t.element,t);e&&e.leave&&e.leave(this,t.originalEvent)}},e.prototype._start=function(t){var e=this._eventCoordinates(t);!this._stopChartHandlers(t)&&this._plotArea.backgroundContainsPoint(e)&&(this.requiresHandlers([ca,aa,sa])&&this._startNavigation(t,e,ca),this._pannable&&this._pannable.start(t)&&(this.surface.suspendTracking(),this._unsetActivePoint(),this._clearFocusedElement(),this._suppressHover=!0,this.chartService.panning=!0),this._zoomSelection&&this._zoomSelection.start(t)&&this.trigger(la,{axisRanges:$u(this._plotArea.axes),originalEvent:t}))},e.prototype._move=function(t){var e=this._navState,o=this._pannable;if(!this._stopChartHandlers(t)){if(o){var r=o.move(t);r&&!this.trigger(aa,{axisRanges:r,originalEvent:t})&&o.pan()}else if(e){for(var n={},i=e.axes,a=0;a<i.length;a++){var s=i[a];if(s.options.name){var c=s.options.vertical?t.y:t.x,l=c.startLocation-c.location;0!==l&&(n[s.options.name]=s.translateRange(l))}}e.axisRanges=n,this.trigger(aa,{axisRanges:n,originalEvent:t})}this._zoomSelection&&this._zoomSelection.move(t)}},e.prototype._end=function(t){if(!this._stopChartHandlers(t)){var e=this._pannable;if(e&&e.end(t)?(this.surface.resumeTracking(),this.trigger(sa,{axisRanges:$u(this._plotArea.axes),originalEvent:t}),this._suppressHover=!1,this.chartService.panning=!1):this._endNavigation(t,sa),this._zoomSelection){var o=this._zoomSelection.end(t);o&&!this.trigger(ha,{axisRanges:o,originalEvent:t})&&(this._zoomSelection.zoom(),this.trigger(ua,{axisRanges:o,originalEvent:t}))}}},e.prototype._stopChartHandlers=function(t){var e=this._selections||[];if(!e.length)return!1;var o=this._eventCoordinates(t),r=this._plotArea.paneByPoint(o);if(r)for(var n=0;n<e.length;n++)if(e[n].onPane(r))return!0},e.prototype._mousewheelZoomRate=function(){var t=(this.options.zoomable||{}).mousewheel||{};return Yt(t.rate,.3)},e.prototype._mousewheel=function(t){var e=this,o=kt(t),r=this._mousewheelZoom,n=this._eventCoordinates(t);if(!this._stopChartHandlers(t)&&this._plotArea.backgroundContainsPoint(n))if(r){var i={delta:o,axisRanges:$u(this._plotArea.axes),originalEvent:t};!this._zooming&&this.trigger(la,i)||(t.preventDefault(),this._zooming||(this._unsetActivePoint(),this._clearFocusedElement(),this.surface.suspendTracking(),this._zooming=!0),this._mwTimeout&&clearTimeout(this._mwTimeout),i.axisRanges=r.updateRanges(o,n),i.axisRanges&&!this.trigger(ha,i)&&r.zoom(),this._mwTimeout=setTimeout((function(){e.trigger(ua,i),e._zooming=!1,e.surface&&e.surface.resumeTracking()}),150))}else{var a=this._navState;if(a||this._startNavigation(t,n,la)||(a=this._navState),a){var s=a.totalDelta||o;a.totalDelta=s+o;for(var c=this._navState.axes,l={},h=0;h<c.length;h++){var u=c[h],p=u.options.name;p&&(l[p]=u.scaleRange(-s*e._mousewheelZoomRate(),n))}this.trigger(ha,{delta:o,axisRanges:l,originalEvent:t}),this._mwTimeout&&clearTimeout(this._mwTimeout),this._mwTimeout=setTimeout((function(){e._endNavigation(t,ua)}),150)}}},e.prototype._startNavigation=function(t,e,o){var r=this._model._plotArea,n=r.findPointPane(e),i=r.axes.slice(0);if(n){var a=$u(i);this.trigger(o,{axisRanges:a,originalEvent:t})?this._cancelDomEvents():(this._suppressHover=!0,this._unsetActivePoint(),this._clearFocusedElement(),this._navState={axisRanges:a,pane:n,axes:i})}},e.prototype._endNavigation=function(t,e){this._navState&&(this.trigger(e,{axisRanges:this._navState.axisRanges,originalEvent:t}),this._suppressHover=!1,this._navState=null)},e.prototype._getChartElement=function(t,e){var o=this.surface.eventTarget(t);if(o)return this._drawingChartElement(o,t,e)},e.prototype._drawingChartElement=function(t,e,o){for(var r,n=t;n&&!r;)r=n.chartElement,n=n.parent;if(r)return r.aliasFor&&(r=r.aliasFor(e,this._eventCoordinates(e))),o&&(r=r.closest(o))&&r.aliasFor&&(r=r.aliasFor()),r},e.prototype._eventCoordinates=function(t){var e=Nt(t);return this._toModelCoordinates(e.x,e.y)},e.prototype._elementPadding=function(){if(!this._padding){var t=ht(this.element,["paddingLeft","paddingTop"]),e=t.paddingLeft,o=t.paddingTop;this._padding={top:o,left:e}}return this._padding},e.prototype._toDocumentCoordinates=function(t){var e=this._elementPadding(),o=Et(this.element);return{left:Xt(t.x+e.left+o.left),top:Xt(t.y+e.top+o.top)}},e.prototype._toModelCoordinates=function(t,e){var o=this.element,r=Et(o),n=this._elementPadding(),i=ue(o).invert(),a=new $.geometry.Point(t-r.left-n.left,e-r.top-n.top).transform(i);return new fo(a.x,a.y)},e.prototype._tap=function(t){var e=this,o=this.surface.eventTarget(t),r=this._drawingChartElement(o,t),n=this._sharedTooltip();this._startHover(o,t)||n||this._unsetActivePoint(),n&&this._trackSharedTooltip(this._eventCoordinates(t),t,!0),this._propagateClick(r,t),this.handlingTap=!0,setTimeout((function(){e.handlingTap=!1}),0)},e.prototype._click=function(t){var e=this._getChartElement(t);this._propagateClick(e,t)},e.prototype._propagateClick=function(t,e){for(var o=t;o;)o.click&&o.click(this,e),o=o.parent},e.prototype._isLegendBeforeChart=function(){var t=this.options.legend.position,e=this._legend;return e&&e.hasItems()&&(t===I||t===O)},e.prototype._focus=function(){this._preventInitialPointFocus||(this._isLegendBeforeChart()?this._focusFirstLegendItem():this._focusFirstPoint()),this._preventInitialPointFocus=!1},e.prototype._keydown=function(t){var e=this._focusState,o=e.legendInFocus,r=e.focusedElement,n=this._legend;if("Tab"===t.key){this._clearFocusedElement();var i=this._isLegendBeforeChart();o&&i!==t.shiftKey?this._navigatePoints(t):!o&&i===t.shiftKey&&n.hasItems()&&this._navigateLegend(t)}else"Escape"===t.key?(r&&t.stopPropagation(),this._tooltip&&this._tooltip.visible?this._hideTooltip():this._blur()):"Enter"===t.key?r&&(this._focusState.preserveHighlight=!0,this._propagateClick(r,t),this._focusElement(r)):o?this._navigateLegend(t):this._navigatePoints(t)},e.prototype._navigatePoints=function(t){var e=this,o=this._focusState,r=this._plotArea;if(o.legendInFocus=!1,!o.focusedElement)return this._focusFirstPoint(),void t.preventDefault();var n=function(r){o.focusedPoint=r,e._focusElement(o.focusedPoint),e._displayTooltip(r),t.preventDefault()};switch(t.key){case c:n(r.getPointToTheRight(o.focusedPoint));break;case s:n(r.getPointToTheLeft(o.focusedPoint));break;case a:n(r.getPointBelow(o.focusedPoint));break;case i:n(r.getPointAbove(o.focusedPoint))}},e.prototype._navigateLegend=function(t){var e=this,o=this,r=o._focusState,n=o._legend,l=o.chartService.rtl;if(r.legendInFocus=!0,!r.focusedElement)return this._focusFirstLegendItem(),void t.preventDefault();var h=n.getItems().length,u=function(o){r.focusedLegendItemIndex=o(r.focusedLegendItemIndex,h),e._focusElement(e._getFocusedLegendItem()),t.preventDefault()};switch(t.key){case i:case s:u(l?Q:J);break;case a:case c:u(l?J:Q)}},e.prototype._focusFirstPoint=function(){var t=this._focusState.focusedPoint=this._plotArea.getFirstPoint();t&&(this._focusElement(t),this._displayTooltip(t))},e.prototype._hasFocus=function(){return this.element.ownerDocument.activeElement===this.element},e.prototype._mousedown=function(){this._hasFocus()||(this._preventInitialPointFocus=!0)},e.prototype._focusChart=function(){this._hasFocus()||(this._preventInitialPointFocus=!0,this.element.focus())},e.prototype._focusPoint=function(t){this._focusState.focusedPoint=t,this._focusChart(),this._focusElement(t,!0)},e.prototype._focusFirstLegendItem=function(){var t=this._focusState;t.focusedLegendItemIndex=0,this._focusElement(this._getFocusedLegendItem()),t.legendInFocus=!0,this._hideTooltip()},e.prototype._focusLegendItem=function(t){var e=this._focusState;e.focusedLegendItemIndex=this._legend.getItems().findIndex((function(e){return e.options.series.index===t.seriesIndex&&e.options.pointIndex===t.pointIndex})),e.legendInFocus=!0,this._focusChart(),this._focusElement(this._getFocusedLegendItem(),!0)},e.prototype._getFocusedLegendItem=function(){var t=this._focusState;return this._legend.getItems()[t.focusedLegendItemIndex]},e.prototype._focusElement=function(t,e){var o=this._focusState;if(this._clearFocusedElement(),t&&(o.focusedElement=t,this._setElementActiveDescendant(t),!e))if(t.focusVisual(),o.legendInFocus){var r=t.options;this._showSeriesInactiveOpacity(r.series.index,r.pointIndex)}else this._showInactiveOpacity(t)},e.prototype._clearFocusedElement=function(){var t=this._focusState;t&&(t.focusedElement&&(t.focusedElement.clearFocusFromVisual(),this._clearElementActiveDescendant()),t.focusedElement=null)},e.prototype._setElementActiveDescendant=function(t){"canvas"===this.options.renderAs&&(this._pseudoFocusedElement=this._createPseudoFocusedElement(t),this.element.append(this._pseudoFocusedElement)),this.element.setAttribute(l,t._id)},e.prototype._clearElementActiveDescendant=function(){this._pseudoFocusedElement&&(this._pseudoFocusedElement.remove(),this._pseudoFocusedElement=null),this.element.removeAttribute(l)},e.prototype._createPseudoFocusedElement=function(t){var e=document.createElement("div"),o=t.options.accessibility;e.id=t._id,e.setAttribute("aria-label",t.getAriaLabelText()),e.setAttribute("role",o.role),e.setAttribute("aria-roledescription",o.ariaRoleDescription);var r=o.ariaChecked;return Lt(r)&&e.setAttribute("aria-checked",r),e},e.prototype._blur=function(){this._focusState.legendInFocus=!1,this._clearFocusedElement(),this._hideInactiveOpacity()},e.prototype._startHover=function(t,e){if(this._suppressHover)return!1;var o=this._drawingChartElement(t,e,(function(t){return(t.hover||t.over)&&!(t instanceof Pc)})),r=this._activePoint;return this._updateHoveredPoint(o,e),o&&r!==o&&o.hover&&(this._activePoint=o,this._sharedTooltip()||o.hover(this,e)||(this._displayTooltip(o),this._showInactiveOpacity(o))),o},e.prototype._displayTooltip=function(t){it({},this.options.tooltip,t.options.tooltip).visible&&this._tooltip.show(t)},e.prototype._hideTooltip=function(){this._tooltip&&this._tooltip.hide()},e.prototype._displayInactiveOpacity=function(t,e,o){var r=this._activeChartInstance=this._chartInstanceFromPoint(t);if(r)if(e)this._updateSeriesOpacity(t),this._applySeriesOpacity(r.children,null,!0),this._applySeriesOpacity(r.children,t.series),this._highlight.show(o||t);else{var n;if(!r.supportsPointInactiveOpacity())return void this._highlight.show(t);(n=this._getInactivePoints(t,r))&&n.length&&this._highlight.show(n,1-this._getInactiveOpacityForSeries(t.series))}},e.prototype._getInactivePoints=function(t,e){return this._getAllPointsOfType(e,t.constructor).filter((function(e){return e!==t}))},e.prototype._getAllPointsOfType=function(t,e){for(var o=[],r=0;r<t.children.length;r++){var n=t.children[r];n.constructor===e?o.push(n):n.children&&n.children.length&&(o=o.concat(this._getAllPointsOfType(n,e)))}return o},e.prototype._updateHoveredPoint=function(t,e){var o=this._hoveredPoint;o&&o!==t&&(o.out(this,e),this._hoveredPoint=null),t&&o!==t&&t.over&&(this._hoveredPoint=t,t.over(this,e))},e.prototype._updateDrilldownPoint=function(t){t&&t.series&&Yn.current.bindPoint(t.series,null,t.dataItem).fields.drilldown&&(this._drilldownState={cursor:this.element.style.cursor},this.element.style.cursor="pointer")},e.prototype._resetDrilldownPoint=function(){this._drilldownState&&(this.element.style.cursor=this._drilldownState.cursor,this._drilldownState=null)},e.prototype._startDrilldown=function(t){if(t&&t.series){var e=t.series,o=Yn.current.bindPoint(e,null,t.dataItem).fields.drilldown;if(o){var r={series:e,point:t,value:o,sender:this};this.trigger("drilldown",r)}}},e.prototype._updateSeriesOpacity=function(t,e){for(var o=this._plotArea,r=o.series.length,n=0;n<r;n++){var i=o.series[n],a=this._getDefaultOpacityForSeries(i),s=this._getInactiveOpacityForSeries(i);e||i===t.series?(i.opacity=a,i.line&&(i.line.opacity=a)):(i.defaultOpacity=a,i.opacity=s,i.line&&(i.line.opacity=s))}},e.prototype._applySeriesOpacity=function(t,e,o,r){for(var n=0;n<t.length;n++){var i=t[n],a=i.series||r;if(a&&(a.highlight||{}).visible&&i.visual){var s=r?r.opacity:i.series.opacity;(a!==e||o)&&i.visual.opacity(o?1:s)}i.children&&i.children.length&&this._applySeriesOpacity(i.children,e,o,i.series)}},e.prototype._chartInstanceFromPoint=function(t){for(var e=t.parent;e&&!e.plotArea;)e=e.parent;return e},e.prototype._showInactiveOpacity=function(t){var e=this._plotArea.series.length>1;this._hasInactiveOpacity()?this._displayInactiveOpacity(t,e):this._highlight.show(t)},e.prototype._hideInactiveOpacity=function(t){var e=this._plotArea.series.length>1;this._hasInactiveOpacity()&&(e&&this._activeChartInstance&&(this._updateSeriesOpacity(t,!0),this._applySeriesOpacity(this._activeChartInstance.children,null,!0),this._activeChartInstance=null),this._highlight&&this._highlight.hide(),this._activePoint=null)},e.prototype._hasInactiveOpacity=function(){var t=void 0!==this.options.seriesDefaults.highlight.inactiveOpacity,e=this.options.series.filter((function(t){return void 0!==t.highlight.inactiveOpacity})).length>0;return t||e},e.prototype._getInactiveOpacityForSeries=function(t){var e=this.options.seriesDefaults.highlight.inactiveOpacity;return t.highlight.inactiveOpacity||e||t.opacity||1},e.prototype._getDefaultOpacityForSeries=function(t){return t.defaultOpacity||t.opacity||1},e.prototype._mouseover=function(t){var e,o=this._startHover(t.element,t.originalEvent);o&&o.tooltipTracking&&!this._mouseMoveTrackHandler&&!this._sharedTooltip()&&(this._mouseMoveTrackHandler=this._mouseMoveTracking.bind(this),Bt(document,((e={})[Tu]=this._mouseMoveTrackHandler,e)))},e.prototype._mouseMoveTracking=function(t){var e,o=this,r=o.options,n=o._tooltip,i=o._highlight,a=o._activePoint,s=this._eventCoordinates(t);if(this._plotArea.box.containsPoint(s)){if(a&&a.tooltipTracking&&a.series&&a.parent.getNearestPoint){var c=a.parent.getNearestPoint(s.x,s.y,a.seriesIx);c&&c!==a&&(this._activePoint=c,c.hover(this,t)||(it({},r.tooltip,c.options.tooltip).visible&&n.show(c),i.show(c)))}}else Gt(document,((e={})[Tu]=this._mouseMoveTrackHandler,e)),this._unsetActivePoint(),this._clearFocusedElement(),this._mouseMoveTrackHandler=null,this._hideInactiveOpacity(a)},e.prototype._mousemove=function(t){var e=this._eventCoordinates(t),o=this._plotArea;if(this._trackCrosshairs(e),o.hover){var r=o.backgroundContainsPoint(e);r?(this._plotAreaHovered=!0,this._plotArea.hover(this,t)):this._plotAreaHovered&&!r&&(this._plotAreaHovered=!1,this.trigger(ia))}this._sharedTooltip()&&this._trackSharedTooltip(e,t)},e.prototype._trackCrosshairs=function(t){for(var e=this._plotArea.crosshairs,o=0;o<e.length;o++){var r=e[o];r.box.containsPoint(t)?r.showAt(t):r.hide()}},e.prototype._trackSharedTooltip=function(t,e,o){if(!this._suppressHover){var r=this,n=r.options.tooltip,i=r._plotArea,a=r._plotArea.categoryAxis,s=r._tooltip,c=r._highlight;if(i.backgroundContainsPoint(t)){var l=a.pointCategoryIndex(t);if(l!==this._tooltipCategoryIx||!this._sharedHighlight&&o){var h=i.pointsByCategoryIndex(l),u=h.map((function(t){return t.eventArgs(e)})),p=u[0]||{};p.categoryPoints=u,h.length>0&&!this.trigger(ea,p)?(n.visible&&s.showAt(h,t),c.show(h),this._sharedHighlight=!0):s.hide(),this._tooltipCategoryIx=l}else o&&this._sharedHighlight&&(c.hide(),s.hide(),this._sharedHighlight=!1)}else this._sharedHighlight&&(c.hide(),s.hide(),this._tooltipCategoryIx=null,this._sharedHighlight=!1)}},e.prototype.hideElements=function(t){var e=this._plotArea;this._mousemove.cancel(),e.hideCrosshairs(),this._unsetActivePoint(t)},e.prototype._unsetActivePoint=function(t){var e=this._highlight;this._activePoint=null,this._hoveredPoint=null,t&&t.keepTooltipOpen||this._hideTooltip(),this._tooltipCategoryIx=null,this._sharedHighlight=!1,e&&e.hide()},e.prototype._deferRedraw=function(){this._redraw()},e.prototype._clearRedrawTimeout=function(){this._redrawTimeout&&(clearInterval(this._redrawTimeout),this._redrawTimeout=null)},e.prototype.bindCategories=function(){for(var t=this.options,e=[].concat(t.categoryAxis),o=0;o<e.length;o++){var r=e[o];!1!==r.autoBind&&this.bindCategoryAxisFromSeries(r,o)}},e.prototype.bindCategoryAxisFromSeries=function(t,e){var o=this,r=new Set,n=this.options.series.filter((function(o){return o.categoryAxis===t.name||!o.categoryAxis&&0===e})),i=n.some((function(t){return Boolean(t.categoryField)})),a=n.filter((function(t){return t.data&&t.data.length>0})),s=a.map((function(t){return Yn.current.bindPoint(t,0).fields.category})),c=s.reduce((function(e,o){return e||Ka(t,o)}),!1);if(a.filter((function(t,e){return t.categoryField||Lt(s[e])})).forEach((function(t){return t.data.forEach((function(e,n){var i=Yn.current.bindPoint(t,n).fields.category;if(c){var a=Ra(i,e,o.chartService.intl);i=a?a.getTime():void 0}r.add(i)}))})),r.size>0){var l=Array.from(r.values());c&&(l=l.sort().map((function(t){return t&&new Date(t)}))),t.categories=l}else i&&(t.categories=[])},e.prototype._isBindable=function(t){for(var e=Yn.current.valueFields(t),o=!0,r=0;r<e.length;r++){var n=e[r];if(n===B?n="field":n+="Field",!Lt(t[n])){o=!1;break}}return o},e.prototype._noTransitionsRedraw=function(){var t,e=this.options;!1!==e.transitions&&(e.transitions=!1,t=!0),this._redraw(),t&&(e.transitions=!0)},e.prototype._legendItemHover=function(t,e){this._showSeriesInactiveOpacity(t,e)},e.prototype._showSeriesInactiveOpacity=function(t,e){var o,r=this._plotArea,n=this._highlight,i=(r.srcSeries||r.series)[t];if(o=Ot(i.type,[Mi,xi,wi,_i])?r.findPoint((function(o){return o.series.index===t&&o.index===e})):r.pointsBySeriesIndex(t),this._hasInactiveOpacity()&&i.visible&&o){var a=r.series.length>1,s=o.length?o[0]:o;this._displayInactiveOpacity(s,a,o)}else n.show(o)},e.prototype._shouldAttachMouseMove=function(){return this._plotArea.crosshairs.length||this._tooltip&&this._sharedTooltip()||this.requiresHandlers([na,ia])},e.prototype.updateMouseMoveHandler=function(){var t,e;Gt(this.element,((t={})[Tu]=this._mousemove,t)),this._shouldAttachMouseMove()&&Bt(this.element,((e={})[Tu]=this._mousemove,e))},e.prototype.applyOptions=function(t,e){Gu(this._originalOptions,t),this._originalOptions=it(this._originalOptions,t),this.options=it({},this._originalOptions),e&&(this._theme=e,this.chartService.theme=e),this._initTheme(this.options,this._theme),this._toggleDragZoomEvents()},e.prototype.setOptions=function(t,e){this.applyOptions(t,e),this.bindCategories(),this.redraw(),this.updateMouseMoveHandler()},e.prototype.setDirection=function(t){this.chartService.rtl=Boolean(t),this.surface&&"svg"===this.surface.type&&this._destroySurface()},e.prototype.setIntlService=function(t){this.chartService.intl=t},e.prototype.noTransitionsRedraw=function(){this._noTransitionsRedraw()},e.prototype.destroy=function(){var t,e;this._destroyed=!0,Gt(this.element,((t={})[Eu]=this._clickHandler,t[Oa]=this._mousewheelHandler,t[Tu]=this._mousemove,t[Du]=this._mouseleaveHandler,t[Nu]=this._keydownHandler,t[Ru]=this._focusHandler,t[Fu]=this._blurHandler,t)),this.domEvents&&(this.domEvents.destroy(),delete this.domEvents),this._mouseMoveTrackHandler&&Gt(document,((e={})[Tu]=this._mouseMoveTrackHandler,e)),this._focusState=null,this._destroyView(),this._destroySurface(),this._clearRedrawTimeout()},e.prototype._destroySurface=function(){var t=this.surface;t&&(t.unbind("mouseenter",this._surfaceMouseenterHandler),t.unbind("mouseleave",this._surfaceMouseleaveHandler),t.destroy(),this.surface=null)},e.prototype._destroySelections=function(){var t=this._selections;if(t)for(;t.length>0;)t.shift().destroy()},e.prototype._destroyView=function(){var t=this._model;t&&(t.destroy(),this._model=null),this._unsetActivePoint(),this._clearFocusedElement(),this._resetDrilldownPoint(),this._destroySelections(),this._tooltip&&this._tooltip.destroy(),this._highlight&&this._highlight.destroy(),this._zoomSelection&&(this._zoomSelection.destroy(),delete this._zoomSelection),this._pannable&&(this._pannable.destroy(),delete this._pannable),this._mousewheelZoom&&(this._mousewheelZoom.destroy(),delete this._mousewheelZoom)},e}($.Class);function Ku(t,e){if(t)for(var o=0;o<t.length;o++)if(t[o].category===e)return[t[o]]}function qu(t){delete t.bar,delete t.column,delete t.rangeColumn,delete t.line,delete t.verticalLine,delete t.pie,delete t.donut,delete t.area,delete t.verticalArea,delete t.scatter,delete t.scatterLine,delete t.bubble,delete t.candlestick,delete t.ohlc,delete t.boxPlot,delete t.bullet,delete t.verticalBullet,delete t.polarArea,delete t.polarLine,delete t.radarArea,delete t.radarLine,delete t.waterfall}function $u(t){for(var e={},o=0;o<t.length;o++){var r=t[o],n=r.options.name;n&&(e[n]=r.range())}return e}var Xu=["data","categories"];function Gu(t,e){for(var o in e)if(!Ot(o,Xu)&&_e(e,o)){var r=e[o],n=t[o];if(Lt(n)){var i=null===r;i||!Lt(r)?(delete t[o],i&&delete e[o]):n&&at(r)&&at(n)&&Gu(n,r)}}}function Yu(t){for(var e=0;e<t.length;e++)t[e].notifyRender()}Qt(Uu,{renderAs:"",chartArea:{},legend:{visible:!0,labels:{},accessibility:{highlight:{border:{opacity:1,color:h,width:2}}}},categoryAxis:{},seriesDefaults:{type:bi,data:[],highlight:{visible:!0},labels:{},negativeValues:{visible:!1},accessibility:{highlight:{border:{opacity:1,width:2},zIndex:200}}},series:[],seriesColors:null,tooltip:{visible:!1},transitions:!0,valueAxis:{},plotArea:{},title:{},xAxis:{},yAxis:{},panes:[{}],pannable:!1,zoomable:!1});const Wu=Uu;var Zu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._slotAnchor=function(t,e){var o=this.plotArea.categoryAxis.options.vertical,r=o?{horizontal:"left",vertical:"center"}:{horizontal:"center",vertical:"bottom"};return{point:o?new fo(this.plotArea.box.x2,e.center().y):new fo(e.center().x,-2),align:r}},e.prototype._defaultAnchor=function(t,e){return this._slotAnchor({},e)},e}(rh);const Qu=Zu;var Ju=[vi,gi];function tp(t){for(var e=[],o=0;o<t.length;o++){var r=t[o];e[o]=r.style.display,r.style.display="none"}return e}function ep(t,e){for(var o=0;o<t.length;o++)t[o].style.display=e[o]}function op(t){return Y(t)?[t]:t}var rp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._setElementClass=function(t){U(t,"k-sparkline")},e.prototype._initElement=function(e){t.prototype._initElement.call(this,e),this._initialWidth=Math.floor(Dt(e).width)},e.prototype._resize=function(){var e=this.element,o=tp(e.childNodes);this._initialWidth=Math.floor(Dt(e).width),ep(e.childNodes,o),t.prototype._resize.call(this)},e.prototype._modelOptions=function(){var t=this.options,e=this._surfaceWrap(),o=tp(e.childNodes),r=document.createElement("span");r.innerHTML=" ",e.appendChild(r);var n=it({width:this._autoWidth,height:Dt(e).height,transitions:t.transitions},t.chartArea,{inline:!0,align:!1});return Dt(e,{width:n.width,height:n.height}),e.removeChild(r),ep(e.childNodes,o),this.surface&&this.surface.resize(),n},e.prototype._surfaceWrap=function(){if(!this.stage){var t=this.stage=document.createElement("span");this.element.appendChild(t)}return this.stage},e.prototype._createPlotArea=function(e){var o=t.prototype._createPlotArea.call(this,e);return this._autoWidth=this._initialWidth||this._calculateWidth(o),o},e.prototype._calculateWidth=function(t){for(var e=this.options,o=ut(e.chartArea.margin),r=t.charts,n=this._surfaceWrap(),i=0,a=0;a<r.length;a++){var s=r[a],c=(s.options.series||[])[0];if(c){if(c.type===vi)return 150;if(c.type===gi)return 150;if(c.type===Mi)return Dt(n).height;var l=s.categoryAxis;if(l){var h=l.categoriesCount()*(!s.options.isStacked&&Ot(c.type,[bi,Ri])?s.seriesOptions.length:1);i=Math.max(i,h)}}}var u=i*e.pointWidth;return u>0&&(u+=o.left+o.right),u},e.prototype._createSharedTooltip=function(t){return new Qu(this._plotArea,t)},e.normalizeOptions=function(t){var e=op(t);return(e=F(e)?{seriesDefaults:{data:e}}:it({},e)).series||(e.series=[{data:op(e.data)}]),it(e,{seriesDefaults:{type:e.type}}),(Ot(e.series[0].type,Ju)||Ot(e.seriesDefaults.type,Ju))&&(e=it({},{categoryAxis:{crosshair:{visible:!1}}},e)),e},e}(Wu);Qt(rp,{chartArea:{margin:2},axisDefaults:{visible:!1,majorGridLines:{visible:!1},valueAxis:{narrowRange:!0}},seriesDefaults:{type:"line",area:{line:{width:.5}},bar:{stack:!0},padding:2,width:.5,overlay:{gradient:null},highlight:{visible:!1},border:{width:0},markers:{size:2,visible:!1}},tooltip:{visible:!0,shared:!0},categoryAxis:{crosshair:{visible:!0,tooltip:{visible:!1}}},legend:{visible:!1},transitions:!1,pointWidth:5,panes:[{clip:!1}]});const np=rp;var ip=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this._initialOpacity=parseFloat(ht(this.element,"opacity").opacity)},e.prototype.step=function(t){ht(this.element,{opacity:String(St(this._initialOpacity,0,t))})},e.prototype.abort=function(){t.prototype.abort.call(this),ht(this.element,{display:"none",opacity:String(this._initialOpacity)})},e.prototype.cancel=function(){t.prototype.abort.call(this),ht(this.element,{opacity:String(this._initialOpacity)})},e}($.drawing.Animation);const ap=ip;function sp(t,e){var o=document.createElement("div");return o.className=t,e&&(o.style.cssText=e),o}var cp=function(t){function e(e,o,r){t.call(this),this.options=it({},this.options,r),this.container=e,this.chartService=o;var n=ht(e,["paddingLeft","paddingTop"]);this.chartPadding={top:n.paddingTop,left:n.paddingLeft},this.createElements(),e.appendChild(this.element)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createElements=function(){var t=this.element=sp("k-navigator-hint","display: none; position: absolute; top: 1px; left: 1px;"),e=this.tooltip=sp("k-tooltip k-chart-tooltip"),o=this.scroll=sp("k-scroll");e.innerHTML=" ",t.appendChild(e),t.appendChild(o)},e.prototype.show=function(t,e,o){var r=this,n=r.element,i=r.options,a=r.scroll,s=r.tooltip,c=Tr(Kr(t)+Kr(e-t)/2),l=.4*o.width(),h=o.center().x-l,u=(o.center().x-h)/(i.max-i.min),p=c-i.min,d=this.chartService.intl.format(i.format,t,e),v=ft(i);this.clearHideTimeout(),this._visible||(ht(n,{visibility:"hidden",display:"block"}),this._visible=!0),v&&(d=v({from:t,to:e})),s.innerHTML=d,ht(s,{left:o.center().x-s.offsetWidth/2,top:o.y1});var f=ht(s,["marginTop","borderTopWidth","height"]);ht(a,{width:l,left:h+p*u,top:o.y1+f.marginTop+f.borderTopWidth+f.height/2}),ht(n,{visibility:"visible"})},e.prototype.clearHideTimeout=function(){this._hideTimeout&&clearTimeout(this._hideTimeout),this._hideAnimation&&this._hideAnimation.cancel()},e.prototype.hide=function(){var t=this;this.clearHideTimeout(),this._hideTimeout=setTimeout((function(){t._visible=!1,t._hideAnimation=new ap(t.element),t._hideAnimation.setup(),t._hideAnimation.play()}),this.options.hideDelay)},e.prototype.destroy=function(){this.clearHideTimeout(),this.container&&this.container.removeChild(this.element),delete this.container,delete this.chartService,delete this.element,delete this.tooltip,delete this.scroll},e}($.Class);Qt(cp,{format:"{0:d} - {1:d}",hideDelay:500});const lp=cp;var hp="_navigator",up=hp,pp="_default",dp=function(t){function e(e){var o;t.call(this),this.chart=e;var r=this.options=it({},this.options,e.options.navigator),n=r.select;n&&(n.from=this.parseDate(n.from),n.to=this.parseDate(n.to)),Lt(r.hint.visible)||(r.hint.visible=r.visible),this.chartObserver=new Pt(this,((o={})[aa]="_drag",o[sa]="_dragEnd",o[ha]="_zoom",o[ua]="_zoomEnd",o)),e.addObserver(this.chartObserver)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.parseDate=function(t){return Yr(this.chart.chartService.intl,t)},e.prototype.clean=function(){this.selection&&(this.selection.destroy(),this.selection=null),this.hint&&(this.hint.destroy(),this.hint=null)},e.prototype.destroy=function(){this.chart&&(this.chart.removeObserver(this.chartObserver),delete this.chart),this.clean()},e.prototype.redraw=function(){this._redrawSelf(),this.initSelection()},e.prototype.initSelection=function(){var t,e=this.chart,o=this.options,r=this.mainAxis(),n=r.roundedRange(),i=n.min,a=n.max,s=o.select,c=s.from,l=s.to,h=s.mousewheel,u=(t=r,vp.prototype=t,new vp);0!==r.categoriesCount()&&(this.clean(),u.box=r.box,this.selection=new Jl(e,u,{min:i,max:a,from:c||i,to:l||a,mousewheel:Yt(h,{zoom:"left"}),visible:o.visible},new Pt(this,{selectStart:"_selectStart",select:"_select",selectEnd:"_selectEnd"})),o.hint.visible&&(this.hint=new lp(e.element,e.chartService,{min:i,max:a,template:ft(o.hint),format:o.hint.format})))},e.prototype.setRange=function(){var t=this.chart._createPlotArea(!0).namedCategoryAxes[up].roundedRange(),e=t.min,o=t.max,r=this.options.select||{},n=r.from||e;n<e&&(n=e);var i=r.to||o;i>o&&(i=o),this.options.select=it({},r,{from:n,to:i}),this.filterAxes()},e.prototype._redrawSelf=function(t){var e=this.chart._plotArea;e&&e.redraw(Ut(e.panes),t)},e.prototype.redrawSlaves=function(){var t=this.chart,e=t._plotArea,o=e.panes.filter((function(t){return t.options.name!==hp}));e.srcSeries=t.options.series,e.options.categoryAxis=t.options.categoryAxis,e.clearSeriesPointsCache(),e.redraw(o)},e.prototype._drag=function(t){var e,o=this.chart,r=this.selection,n=o._eventCoordinates(t.originalEvent),i=this.mainAxis(),a=i.roundedRange(),s=i.pane.box.containsPoint(n),c=o._plotArea.categoryAxis,l=t.axisRanges[c.options.name],h=this.options.select;if(l&&!s&&r){e=h.from&&h.to?Kr(h.to)-Kr(h.from):Kr(r.options.to)-Kr(r.options.from);var u=Tr(Kt(Kr(l.min),a.min,Kr(a.max)-e)),p=Tr(Kt(Kr(u)+e,Kr(a.min)+e,a.max));this.options.select={from:u,to:p},this.options.liveDrag&&(this.filterAxes(),this.redrawSlaves()),r.set(u,p),this.showHint(u,p)}},e.prototype._dragEnd=function(){this.filterAxes(),this.filter(),this.redrawSlaves(),this.hint&&this.hint.hide()},e.prototype.readSelection=function(){var t=this.selection.options,e=t.from,o=t.to,r=this.options.select;r.from=e,r.to=o},e.prototype.filterAxes=function(){var t=this.options.select;void 0===t&&(t={});for(var e=this.chart.options.categoryAxis,o=t.from,r=t.to,n=0;n<e.length;n++){var i=e[n];i.pane!==hp&&(i.min=o,i.max=r)}},e.prototype.filter=function(){var t=this.chart,e=this.options.select;if(t.requiresHandlers(["navigatorFilter"])){var o=this.mainAxis(),r={from:e.from,to:e.to};if("category"!==o.options.type){var n=new ln(it({baseUnit:"fit"},t.options.categoryAxis[0],{categories:[e.from,e.to]}),t.chartService).options;r.from=Dr(n.min,-n.baseUnitStep,n.baseUnit),r.to=Dr(n.max,n.baseUnitStep,n.baseUnit)}this.chart.trigger("navigatorFilter",r)}},e.prototype._zoom=function(t){var e=this,o=e.chart._plotArea.categoryAxis,r=e.selection,n=e.options,i=n.select,a=n.liveDrag,s=this.mainAxis(),c=t.delta;if(r){var l=s.categoryIndex(r.options.from),h=s.categoryIndex(r.options.to),u=this.chart._eventCoordinates(t.originalEvent);t.originalEvent.preventDefault(),Math.abs(c)>1&&(c*=3),h-l>1?(r.zoom(c,u),this.readSelection()):(o.options.min=i.from,i.from=o.scaleRange(-t.delta*this.chart._mousewheelZoomRate(),u).min),a&&(this.filterAxes(),this.redrawSlaves()),r.set(i.from,i.to),this.showHint(this.options.select.from,this.options.select.to)}},e.prototype._zoomEnd=function(t){this._dragEnd(t)},e.prototype.showHint=function(t,e){var o=this.chart._plotArea;this.hint&&this.hint.show(t,e,o.backgroundBox())},e.prototype._selectStart=function(t){return this.chart._selectStart(t)},e.prototype._select=function(t){return this.showHint(t.from,t.to),this.chart._select(t)},e.prototype._selectEnd=function(t){return this.hint&&this.hint.hide(),this.readSelection(),this.filterAxes(),this.filter(),this.redrawSlaves(),this.chart._selectEnd(t)},e.prototype.mainAxis=function(){var t=this.chart._plotArea;if(t)return t.namedCategoryAxes[up]},e.prototype.select=function(t,e){var o=this.options.select;return t&&e&&(o.from=this.parseDate(t),o.to=this.parseDate(e),this.filterAxes(),this.filter(),this.redrawSlaves(),this.selection.set(t,e)),{from:o.from,to:o.to}},e.setup=function(t,o){if(void 0===t&&(t={}),void 0===o&&(o={}),!t.__navi){t.__navi=!0;var r=it({},o.navigator,t.navigator),n=t.panes=[].concat(t.panes),i=it({},r.pane,{name:hp});r.visible||(i.visible=!1,i.height=.1),"top"!==t.navigator.position?n.push(i):n.unshift(i),n.forEach((function(t){t.name=t.name||pp})),e.attachAxes(t,r),e.attachSeries(t,r,o)}},e.attachAxes=function(t,e){var o=e.series||[],r=t.categoryAxis=[].concat(t.categoryAxis),n=t.valueAxis=[].concat(t.valueAxis);r.concat(n).forEach((function(t){t.pane=t.pane||pp}));var i=0===Da(o,qi).length,a=it({type:"date",pane:hp,roundToBaseUnit:!i,justified:i,_collapse:!1,majorTicks:{visible:!0},tooltip:{visible:!1},labels:{step:1},autoBind:e.autoBindElements,autoBaseUnitSteps:{minutes:[1],hours:[1,2],days:[1,2],weeks:[],months:[1],years:[1]}}),s=e.categoryAxis;r.push(it({},a,{maxDateGroups:200},s,{name:up,title:null,baseUnit:"fit",baseUnitStep:"auto",labels:{visible:!1},majorTicks:{visible:!1}}),it({},a,s,{name:up+"_labels",maxDateGroups:20,baseUnitStep:"auto",labels:{position:""},plotBands:[],autoBaseUnitSteps:{minutes:[]},_overlap:!0}),it({},a,s,{name:up+"_ticks",maxDateGroups:200,majorTicks:{width:.5},plotBands:[],title:null,labels:{visible:!1,mirror:!0},_overlap:!0})),n.push(it({name:up,pane:hp,majorGridLines:{visible:!1},visible:!1},e.valueAxis))},e.attachSeries=function(t,e,o){for(var r=t.series=t.series||[],n=[].concat(e.series||[]),i=o.seriesColors,a=e.seriesDefaults,s=0;s<n.length;s++)r.push(it({color:i[s%i.length],categoryField:e.dateField,visibleInLegend:!1,tooltip:{visible:!1}},a,n[s],{axis:up,categoryAxis:up,autoBind:e.autoBindElements}))},e}($.Class);function vp(){}const fp=dp;var mp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.applyDefaults=function(e,o){var r=Dt(this.element).width||600,n=o,i={seriesDefaults:{categoryField:e.dateField},axisDefaults:{categoryAxis:{name:"default",majorGridLines:{visible:!1},labels:{step:2},majorTicks:{visible:!1},maxDateGroups:Math.floor(r/28)}}};n&&(n=it({},n,i)),fp.setup(e,n),t.prototype.applyDefaults.call(this,e,n)},e.prototype._setElementClass=function(t){U(t,"k-chart k-stockchart")},e.prototype.setOptions=function(e){this.destroyNavigator(),t.prototype.setOptions.call(this,e)},e.prototype.noTransitionsRedraw=function(){var t=this.options.transitions;this.options.transitions=!1,this._fullRedraw(),this.options.transitions=t},e.prototype._resize=function(){this.noTransitionsRedraw()},e.prototype._redraw=function(){var t=this.navigator;!this._dirty()&&t&&t.options.partialRedraw?t.redrawSlaves():this._fullRedraw()},e.prototype._dirty=function(){var t=this.options,e=xt([].concat(t.series,t.navigator.series),(function(t){return t&&t.visible})).length,o=this._seriesCount!==e;return this._seriesCount=e,o},e.prototype._fullRedraw=function(){var e=this.navigator;e||(e=this.navigator=new fp(this),this.trigger("navigatorCreated",{navigator:e})),e.clean(),e.setRange(),t.prototype._redraw.call(this),e.initSelection()},e.prototype._trackSharedTooltip=function(e){var o=this._plotArea.paneByPoint(e);o&&o.options.name===hp?this._unsetActivePoint():t.prototype._trackSharedTooltip.call(this,e)},e.prototype.bindCategories=function(){t.prototype.bindCategories.call(this),this.copyNavigatorCategories()},e.prototype.copyNavigatorCategories=function(){for(var t,e=[].concat(this.options.categoryAxis),o=0;o<e.length;o++){var r=e[o];r.name===up?t=r.categories:t&&r.pane===hp&&(r.categories=t)}},e.prototype.destroyNavigator=function(){this.navigator&&(this.navigator.destroy(),this.navigator=null)},e.prototype.destroy=function(){this.destroyNavigator(),t.prototype.destroy.call(this)},e.prototype._stopChartHandlers=function(e){var o=this._eventCoordinates(e),r=this._plotArea.paneByPoint(o);return t.prototype._stopChartHandlers.call(this,e)||r&&r.options.name===hp},e.prototype._toggleDragZoomEvents=function(){this._dragZoomEnabled||(this.element.style.touchAction="none",this._dragZoomEnabled=!0)},e}(Wu);Qt(mp,{dateField:"date",axisDefaults:{categoryAxis:{type:"date",baseUnit:"fit",justified:!0},valueAxis:{narrowRange:!0,labels:{format:"C"}}},navigator:{select:{},seriesDefaults:{markers:{visible:!1},tooltip:{visible:!1},highlight:{visible:!1},line:{width:2}},hint:{},visible:!0},tooltip:{visible:!0},legend:{visible:!1}});const gp=mp;var yp=150,bp="arrowPointer",xp="barPointer",wp=.5,_p=Math.PI/180,Cp="inside",Op="linear",Sp="outside",zp="radialPointer",Mp="radialRangePointer";function Pp(t,e){var o=t.getOrigin(),r=t.getSize(),n=ut(e);return t.setOrigin([o.x-n.left,o.y-n.top]),t.setSize([r.width+(n.left+n.right),r.height+(n.top+n.bottom)]),t}var Vp=$.drawing.Group,Ap=$.drawing.Path,jp=$.drawing.Text;function kp(t,e){var o=t.box,r=t.children[0].box,n=e.border||{},i=e.background||"",a=Ap.fromRect(new $.geometry.Rect([o.x1,o.y1],[o.width(),o.height()]),{stroke:{}}),s=new jp(t.text,new $.geometry.Point(r.x1,r.y1),{font:e.font,fill:{color:e.color}}),c=Pp(s.bbox().clone(),e.padding),l=Ap.fromRect(c,{stroke:{color:n.width?n.color:"",width:n.width,opacity:n.opacity,dashType:n.dashType,lineJoin:"round",lineCap:"round"},fill:{color:i}}),h=new Vp;return h.append(a),h.append(l),h.append(s),h}function Hp(t,e,o){var r=Lt(t.from)?t.from:z,n=Lt(t.to)?t.to:S;return t.from=Math.max(Math.min(n,r),e),t.to=Math.min(Math.max(n,r),o),t}function Ip(t,e){var o=ut(e);return o.left=-o.left,o.top=-o.top,o.right=-o.right,o.bottom=-o.bottom,Pp(t,o)}var Bp=$.drawing.Path,Lp=$.drawing.Surface,Tp=function(t){function e(e,o,r,n){void 0===n&&(n={}),t.call(this),this.element=e,this.theme=r,this.contextService=new ur(this,n),this._originalOptions=it({},this.options,o),this.options=it({},this._originalOptions),this._initTheme(r),this.redraw()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.surface&&(this.surface.destroy(),this.surface=null),delete this.element,delete this.surfaceElement},e.prototype.value=function(t){var e=this.pointers[0];if(0===arguments.length)return e.value();e.value(t),this._setValueOptions(t)},e.prototype._draw=function(){var t=this.surface;t.clear(),t.draw(this._visuals)},e.prototype.exportVisual=function(){return this._visuals},e.prototype.allValues=function(t){var e=this.pointers,o=[];if(0===arguments.length){for(var r=0;r<e.length;r++)o.push(e[r].value());return o}if(F(t))for(var n=0;n<t.length;n++)Y(t[n])&&e[n].value(t[n]);this._setValueOptions(t)},e.prototype._setValueOptions=function(t){for(var e=[].concat(this.options.pointer),o=[].concat(t),r=0;r<o.length;r++)e[r].value=o[r]},e.prototype.resize=function(){this.noTransitionsRedraw()},e.prototype.noTransitionsRedraw=function(){var t=this.options.transitions;this._toggleTransitions(!1),this.redraw(),this._toggleTransitions(t)},e.prototype.redraw=function(){var t=this._surfaceSize(),e=new $.geometry.Rect([0,0],[t.width,t.height]);this._initSurface(),this.gaugeArea=this._createGaugeArea(),this._createModel();var o=Ip(e.bbox(),this._gaugeAreaMargin);this.reflow(o)},e.prototype.setOptions=function(t,e){this._originalOptions=it(this._originalOptions,t),this.options=it({},this._originalOptions),this._initTheme(e),this.redraw()},e.prototype.setDirection=function(t){this.contextService.rtl=Boolean(t),this.surface&&"svg"===this.surface.type&&(this.surface.destroy(),this.surface=null)},e.prototype.setIntlService=function(t){this.contextService.intl=t},e.prototype._initTheme=function(t){var e=t||this.theme||{};this.theme=e,this.options=it({},e,this.options);var o=this.options,r=o.pointer;if(F(r)){for(var n=[],i=0;i<r.length;i++)n.push(it({},e.pointer,r[i]));o.pointer=n}},e.prototype._createGaugeArea=function(){var t=this.options.gaugeArea,e=this.surface.size(),o=t.border||{},r=new $.geometry.Rect([0,0],[e.width,e.height]);return this._gaugeAreaMargin=t.margin||5,o.width>0&&(r=Ip(r,o.width)),Bp.fromRect(r,{stroke:{color:o.width?o.color:"",width:o.width,opacity:o.opacity,dashType:o.dashType,lineJoin:"round",lineCap:"round"},fill:{color:t.background}})},e.prototype._initSurface=function(){var t=this.options,e=this.surface,o=this._surfaceElement(),r=this._surfaceSize();Dt(o,r),e&&e.options.type===t.renderAs?(this.surface.clear(),this.surface.resize()):(e&&e.destroy(),this.surface=Lp.create(o,{type:t.renderAs}))},e.prototype._surfaceSize=function(){var t=this.options,e=this._getSize();return t.gaugeArea&&it(e,t.gaugeArea),e},e.prototype._surfaceElement=function(){return this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.element.appendChild(this.surfaceElement)),this.surfaceElement},e.prototype.getSize=function(){return this._getSize()},e.prototype._getSize=function(){var t=this.element,e=this._defaultSize(),o=t.offsetWidth,r=t.offsetHeight;return o||(o=e.width),r||(r=e.height),{width:o,height:r}},e.prototype._defaultSize=function(){return{width:200,height:200}},e.prototype._toggleTransitions=function(t){this.options.transitions=t;for(var e=0;e<this.pointers.length;e++)this.pointers[e].options.animation.transitions=t},e}($.Class);Qt(Tp,{plotArea:{},theme:"default",renderAs:"",pointer:{},scale:{},gaugeArea:{}});const Ep=Tp;var Dp=$.drawing.Path,Np=$.drawing.Group,Rp=$.geometry.Point;function Fp(t,e){var o,r,n=t.position,i=t.tickX,a=t.tickY;return t.vertical?(o=new Rp(i,n),r=new Rp(i+e.size,n)):(o=new Rp(n,a),r=new Rp(n,a+e.size)),new Dp({stroke:{color:e.color,width:e.width}}).moveTo(o).lineTo(r)}function Up(t,e,o,r){var n=e.length;if(r.visible)for(var i=o.mirror,a=o.lineBox,s=r.skip;s<n;s+=r.step)s%r.skipUnit!=0&&(o.tickX=i?a.x2:a.x2-r.size,o.tickY=i?a.y1-r.size:a.y1,o.position=e[s],t.append(Fp(o,r)))}var Kp=function(t){function e(e,o){var r=e||{};!Lt(r.reverse)&&!1===r.vertical&&(o||{}).rtl&&(r=Object.assign({},r,{reverse:!0})),t.call(this,0,1,r,o),this.options.minorUnit=this.options.minorUnit||this.options.majorUnit/10}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){var e=it({},this.options,t);return(e=it({},e,{labels:{mirror:e.mirror}})).majorUnit=e.majorUnit||vo(e.min,e.max),e},e.prototype.initFields=function(){},e.prototype.render=function(){var t=this.elements=new Np,e=this.renderLabels(),o=this.renderLine(),r=this.renderTicks(),n=this.renderRanges();return t.append(o,e,r,n),t},e.prototype.renderRanges=function(){for(var t=this,e=this.options,o=e.min,r=e.max,n=e.vertical,i=e.labels.mirror,a=e.ranges||[],s=new Np,c=a.length,l=e.rangeSize||e.minorTicks.size/2,h=0;h<c;h++){var u=Hp(a[h],o,r),p=t.getSlot(u.from,u.to),d=n?t.lineBox():p,v=n?p:t.lineBox();n?d.x1-=l*(i?-1:1):v.y2+=l*(i?-1:1),s.append(Dp.fromRect(new $.geometry.Rect([d.x1,v.y1],[d.x2-d.x1,v.y2-v.y1]),{fill:{color:u.color,opacity:u.opacity},stroke:{}}))}return s},e.prototype.renderLabels=function(){for(var t=this.labels,e=this.options,o=new Np,r=0;r<t.length;r++)o.append(kp(t[r],e.labels));return o},e.prototype.renderLine=function(){var t=this.options.line,e=this.lineBox(),o=new Np;if(t.width>0&&t.visible){var r=new Dp({stroke:{color:t.color,dashType:t.dashType,width:t.width}});r.moveTo(e.x1,e.y1).lineTo(e.x2,e.y2),o.append(r)}return o},e.prototype.renderTicks=function(){var t=new Np,e=this.options,o=e.majorTicks.visible?e.majorUnit:0,r={vertical:e.vertical,mirror:e.labels.mirror,lineBox:this.lineBox()};return Up(t,this.getMajorTickPositions(),r,e.majorTicks),Up(t,this.getMinorTickPositions(),r,it({},{skipUnit:o/e.minorUnit},e.minorTicks)),t},e}(mn);Qt(Kp,{min:0,max:50,majorTicks:{size:15,align:Cp,color:h,width:wp,visible:!0},minorTicks:{size:10,align:Cp,color:h,width:wp,visible:!0},line:{width:wp},labels:{position:Cp,padding:2},mirror:!1,_alignLines:!1});const qp=Kp;var $p=function(t){function e(e,o){t.call(this);var r=e.options,n=r.min,i=r.max,a=this.options=it({},this.options,o);a.fill=a.color,this.scale=e,Lt(a.value)?a.value=Kt(a.value,n,i):a.value=n}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.value=function(t){var e=this.options,o=e.value;if(0===arguments.length)return o;var r=this.scale.options,n=r.min,i=r.max;e._oldValue=Lt(e._oldValue)?e.value:n,e.value=Kt(t,n,i),this.elements&&this.repaint()},e}($.Class);Qt($p,{color:h});const Xp=$p;var Gp=function(t){function e(e,o){t.call(this,e,o),this.options=it({track:{visible:Lt(o.track)}},this.options)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(){var t,e,o,r=this.options,n=this.scale,i=n.options,a=i.mirror,s=i.vertical,c=n.lineBox(),l=r.track.size||r.size,h=r.size/2,u=ut(r.margin),p=s?u[a?"left":"right"]:u[a?"bottom":"top"];p=a?-p:p,s?(o=new yo(c.x1+p,c.y1,c.x1+p,c.y2),a?o.x1-=l:o.x2+=l,r.shape!==xp&&(t=e=new yo(c.x2+p,c.y1-h,c.x2+p,c.y2+h))):(o=new yo(c.x1,c.y1-p,c.x2,c.y1-p),a?o.y2+=l:o.y1-=l,r.shape!==xp&&(t=e=new yo(c.x1-h,c.y1-p,c.x2+h,c.y1-p))),this.trackBox=o,this.pointerRangeBox=e,this.box=t||o.clone().pad(r.border.width)},e.prototype.getElementOptions=function(){var t=this.options;return{fill:{color:t.color,opacity:t.opacity},stroke:Lt(t.border)?{color:t.border.width?t.border.color||t.color:"",width:t.border.width,dashType:t.border.dashType,opacity:t.opacity}:null}},e.prototype._margin=function(){var t=this.scale,e=this.options,o=t.options,r=o.mirror,n=o.vertical,i=ut(e.margin);return n?i[r?"left":"right"]:i[r?"bottom":"top"]},e}(Xp);Qt(Gp,{shape:xp,track:{border:{width:1}},color:h,border:{width:1},opacity:1,margin:ut(3),animation:{type:xp},visible:!0});const Yp=Gp;var Wp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.options,e=t.margin,o=t.from,r=t.to,n=t.vertical,i=n?"x1":"y1";t.mirror===n?(o[i]-=e,r[i]-=e):(o[i]+=e,r[i]+=e);var a=this.fromScale=new $.geometry.Point(o.x1,o.y1),s=this.toScale=new $.geometry.Point(r.x1,r.y1);0!==t.duration&&(t.duration=Math.max(a.distanceTo(s)/t.duration*1e3,1))},e.prototype.step=function(t){var e=St(this.fromScale.x,this.toScale.x,t),o=St(this.fromScale.y,this.toScale.y,t);this.element.transform($.geometry.transform().translate(e,o))},e}($.drawing.Animation);Qt(Wp,{easing:Op,duration:250}),$.drawing.AnimationFactory.current.register(bp,Wp);const Zp=Wp;var Qp=$.geometry.Point,Jp=$.drawing.Path,td=function(t){function e(e,o){t.call(this,e,o),Lt(this.options.size)||(this.options.size=.6*this.scale.options.majorTicks.size)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointerShape=function(){var t=this.scale,e=this.options.size,o=e/2,r=t.options.mirror?-1:1;return t.options.vertical?[new Qp(0,0-o),new Qp(0-r*e,0),new Qp(0,0+o)]:[new Qp(0-o,0),new Qp(0,0+r*e),new Qp(0+o,0)]},e.prototype.repaint=function(){var t=this.scale,e=this.options,o=new Zp(this.elements,it(e.animation,{vertical:t.options.vertical,mirror:t.options.mirror,margin:this._margin(e.margin),from:t.getSlot(e._oldValue),to:t.getSlot(e.value)}));!1===e.animation.transitions&&(o.options.duration=0),o.setup(),o.play()},e.prototype.render=function(){var t=this.scale,e=this.options,o=this.getElementOptions(),r=this.pointerShape(e.value);e.animation.type=bp;var n=new Jp({stroke:o.stroke,fill:o.fill}).moveTo(r[0]).lineTo(r[1]).lineTo(r[2]).close(),i=t.getSlot(e.value);return n.transform($.geometry.transform().translate(i.x1,i.y1)),this.elements=n,n},e}(Yp);const ed=td;var od=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.options,e=this.axis=t.vertical?D:E,o=this.to=t.newPoints[0][e],r=this.from=t.oldPoints[0][e];0!==t.duration&&(t.duration=Math.max(Math.abs(o-r)/t.speed*1e3,1)),this._set(r)},e.prototype.step=function(t){var e=St(this.from,this.to,t);this._set(e)},e.prototype._set=function(t){var e="set"+this.axis.toUpperCase(),o=this.options.newPoints;o[0][e](t),o[1][e](t)},e}($.drawing.Animation);Qt(od,{easing:Op,speed:250}),$.drawing.AnimationFactory.current.register(xp,od);const rd=od;var nd=$.drawing.Group,id=$.drawing.Path,ad=function(t){function e(e,o){t.call(this,e,o),Lt(this.options.size)||(this.options.size=.3*this.scale.options.majorTicks.size)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointerShape=function(t){var e=this.scale,o=this.options,r=e.options,n=r.mirror,i=r.vertical,a=n===i?-1:1,s=o.size*a,c=e.getSlot(e.options.min),l=e.getSlot(t),h=i?D:E,u=i?E:D,p=this._margin()*a,d=new $.geometry.Point;d[h]=c[h+"1"],d[u]=c[u+"1"];var v=new $.geometry.Point;v[h]=l[h+"1"],v[u]=l[u+"1"],i?(d.translate(p,0),v.translate(p,0)):(d.translate(0,p),v.translate(0,p));var f=v.clone(),m=d.clone();return i?(f.translate(s,0),m.translate(s,0)):(f.translate(0,s),m.translate(0,s)),[d,v,f,m]},e.prototype.repaint=function(){var t=this.scale,e=this.options,o=this.pointerShape(e.value),r=this.pointerPath,n=this.pointerShape(e._oldValue);r.moveTo(o[0]).lineTo(o[1]).lineTo(o[2]).lineTo(o[3]).close();var i=new rd(r,it(e.animation,{reverse:t.options.reverse,vertical:t.options.vertical,oldPoints:[n[1],n[2]],newPoints:[o[1],o[2]]}));!1===e.animation.transitions&&(i.options.duration=0),i.setup(),i.play()},e.prototype.render=function(){var t=new nd,e=this.getElementOptions();this.options.track.visible&&t.append(this.renderTrack());var o=this.pointerPath=new id({stroke:e.stroke,fill:e.fill});return t.append(o),this.elements=t,t},e.prototype.renderTrack=function(){var t=this.options.track,e=t.border||{},o=this.trackBox.clone().pad(e.width||0);return new id.fromRect(o.toRect(),{fill:{color:t.color,opacity:t.opacity},stroke:{color:e.width?e.color||t.color:"",width:e.width,dashType:e.dashType}})},e}(Yp);const sd=ad;var cd=$.drawing.Group,ld=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.pointers,o=t.origin.x,r=t.origin.y,n=new yo(o,r,o+t.width(),r+t.height());this.scale.reflow(n),this._shrinkScaleWidth(n);for(var i=0;i<e.length;i++)e[i].reflow();this.bbox=this._getBox(n),this._alignElements(),this._shrinkElements(),this._buildVisual(),this._draw()},e.prototype._buildVisual=function(){var t=new cd,e=this.scale.render(),o=this.pointers;t.append(this.gaugeArea),t.append(e);for(var r=0;r<o.length;r++){var n=o[r];t.append(n.render()),n.value(n.options.value)}this._visuals=t},e.prototype._createModel=function(){var t=this.options,e=this.scale=new qp(t.scale,this.contextService);this.pointers=[];var o=t.pointer;o=F(o)?o:[o];for(var r=0;r<o.length;r++){var n=it({},o[r],{animation:{transitions:t.transitions}}),i="arrow"===n.shape?ed:sd;this.pointers.push(new i(e,n))}},e.prototype._defaultSize=function(){var t=this.options.scale.vertical;return{width:t?60:200,height:t?200:60}},e.prototype._getBox=function(t){for(var e,o=this.scale,r=this.pointers,n=t.center(),i=r[0].box.clone().wrap(o.box),a=0;a<r.length;a++)i.wrap(r[a].box.clone());return o.options.vertical?(e=i.width()/2,i=new yo(n.x-e,t.y1,n.x+e,t.y2)):(e=i.height()/2,i=new yo(t.x1,n.y-e,t.x2,n.y+e)),i},e.prototype._alignElements=function(){for(var t,e=this.scale,o=this.pointers,r=e.box,n=o[0].box.clone().wrap(e.box),i=this.bbox,a=0;a<o.length;a++)n.wrap(o[a].box.clone());e.options.vertical?(t=i.center().x-n.center().x,e.reflow(new yo(r.x1+t,i.y1,r.x2+t,i.y2))):(t=i.center().y-n.center().y,e.reflow(new yo(r.x1,r.y1+t,r.x2,r.y2+t)));for(var s=0;s<o.length;s++)o[s].reflow(this.bbox)},e.prototype._shrinkScaleWidth=function(t){var e=this.scale;if(!e.options.vertical){var o=e.contentBox().width()-t.width();o>0&&(e.box.shrink(o,0),e.box.alignTo(t,"center"),e.reflow(e.box))}},e.prototype._shrinkElements=function(){for(var t=this.scale,e=this.pointers,o=t.box.clone(),r=t.options.vertical?"y":"x",n=e[0].box,i=0;i<e.length;i++)n.wrap(e[i].box.clone());o[r+1]+=Math.max(o[r+1]-n[r+1],0),o[r+2]-=Math.max(n[r+2]-o[r+2],0),t.reflow(o);for(var a=0;a<e.length;a++)e[a].reflow(this.bbox)},e}(Ep);Qt(ld,{transitions:!0,gaugeArea:{background:""},scale:{vertical:!0}});const hd=ld;var ud=180,pd=$.drawing.Arc,dd=$.drawing.Path,vd=$.drawing.Group;function fd(t,e,o,r){var n=new vd,i=t.center,a=t.getRadiusX();if(r.visible)for(var s=0;s<e.length;s++){var c=t.pointAt(e[s]),l=new $.geometry.Point(i.x+a-r.size,i.y).rotate(e[s],i);n.append(new dd({stroke:{color:r.color,width:r.width}}).moveTo(c).lineTo(l))}return n}function md(t,e,o,r){return{from:t,to:e,color:o,opacity:r}}var gd=function(t){function e(e,o){t.call(this,0,1,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){var e=it({},this.options,t);return e.majorUnit=e.majorUnit||vo(e.min,e.max),e.minorUnit=e.minorUnit||e.majorUnit/10,e},e.prototype.initFields=function(){},e.prototype.render=function(t,e){var o=this.renderArc(t,e);this.bbox=o.bbox(),this.labelElements=this.renderLabels(),this.ticks=this.renderTicks(),this.ranges=this.renderRanges()},e.prototype.reflow=function(t){var e=t.center(),o=Math.min(t.height(),t.width())/2;if(!Lt(this.bbox))return this.render(e,o);this.bbox=this.arc.bbox(),this.radius(this.arc.getRadiusX()),this.repositionRanges(),this.renderLabels()},e.prototype.slotAngle=function(t){var e=this.options,o=e.min,r=e.max,n=e.reverse,i=e.startAngle,a=e.endAngle,s=a-i;return(n?a-(t-o)/(r-o)*s:(t-o)/(r-o)*s+i)+ud},e.prototype.hasRanges=function(){var t=this.options.ranges;return t&&t.length},e.prototype.ticksSize=function(){var t=this.options,e=t.majorTicks,o=t.minorTicks,r=0;return e.visible&&(r=e.size),o.visible&&(r=Math.max(o.size,r)),r},e.prototype.labelsCount=function(){var e=t.prototype.labelsCount.call(this),o=this.options;return o.endAngle-o.startAngle>=360&&o.max%o.majorUnit==0&&(e-=1),e},e.prototype.renderLabels=function(){var t=this,e=this.options,o=this.arc.clone(),r=o.getRadiusX(),n=this.tickAngles(o,e.majorUnit),i=e.rangeSize=e.rangeSize||.1*r,a=new vd,s=.05*r;Lt(e.rangeDistance)?s=e.rangeDistance:e.rangeDistance=s;var c=e.labels,l=c.position===Cp,h=Lt(this.labelElements);l&&(r-=this.ticksSize(),this.hasRanges()&&!h&&(r-=i+s),o.setRadiusX(r).setRadiusY(r));for(var u=this.labels,p=u.length,d=ut(c.padding),v=(d.left+d.right)/2,f=(d.top+d.bottom)/2,m=0;m<p;m++){var g=u[m],y=g.box.width()/2,b=g.box.height()/2,x=n[m],w=(x-ud)*_p,_=o.pointAt(x),C=_.x+Math.cos(w)*(y+v)*(l?1:-1),O=_.y+Math.sin(w)*(b+f)*(l?1:-1);g.reflow(new yo(C-y,O-b,C+y,O+b));var S=new $.geometry.Point(g.box.x1,g.box.y1),z=void 0;if(h){var M=(z=t.labelElements.children[m]).bbox().origin,P=z.transform()||$.geometry.transform();P.translate(S.x-M.x,S.y-M.y),z.transform(P)}else z=kp(g,e.labels),a.append(z);t.bbox=$.geometry.Rect.union(t.bbox,z.bbox())}return a},e.prototype.repositionRanges=function(){var t=this.ranges.children;if(t.length>0){var e=this.options,o=e.rangeDistance,r=e.rangeSize,n=this.getRangeRadius();this.options.labels.position===Cp&&(n+=r+o);for(var i=n+r/2,a=0;a<t.length;a++)t[a]._geometry.setRadiusX(i).setRadiusY(i);this.bbox=$.geometry.Rect.union(this.bbox,this.ranges.bbox())}},e.prototype.renderRanges=function(){var t=this,e=this.rangeSegments(),o=e.length,r=new vd;if(o){var n=this.options,i=n.rangeSize,a=n.reverse,s=n.rangeDistance,c=this.getRangeRadius();this.radius(this.radius()-i-s);for(var l=0;l<o;l++){var h=e[l],u=t.slotAngle(h[a?"to":"from"]),p=t.slotAngle(h[a?"from":"to"]);p-u!=0&&r.append(t.createRange(u,p,c,h))}}return r},e.prototype.createRange=function(t,e,o,r){var n=this.options.rangeSize,i=new $.geometry.Arc(this.arc.center,{radiusX:o+n/2,radiusY:o+n/2,startAngle:t,endAngle:e});return new pd(i,{stroke:{width:n,color:r.color,opacity:r.opacity,lineCap:r.lineCap}})},e.prototype.rangeSegments=function(){var t=this.options,e=t.ranges||[],o=e.length,r=[];if(o){var n=t.min,i=t.max,a=t.rangePlaceholderColor;r.push(md(n,i,a));for(var s=0;s<o;s++)for(var c=Hp(e[s],n,i),l=r.length,h=0;h<l;h++){var u=r[h];if(u.from<=c.from&&c.from<=u.to){r.push(md(c.from,c.to,c.color,c.opacity)),u.from<=c.to&&c.to<=u.to&&r.push(md(c.to,u.to,a,c.opacity)),u.to=c.from;break}}}return r},e.prototype.getRangeRadius=function(){var t=this.arc,e=this.options,o=e.rangeSize,r=e.rangeDistance,n=e.majorTicks.size;return e.labels.position===Sp?t.getRadiusX()-n-r-o:t.getRadiusX()-o},e.prototype.renderArc=function(t,e){var o=this.options;return this.arc=new $.geometry.Arc(t,{radiusX:e,radiusY:e,startAngle:o.startAngle+ud,endAngle:o.endAngle+ud})},e.prototype.renderTicks=function(){var t=this.arc,e=this.options,o=t.clone();this.majorTickAngles=this.tickAngles(t,e.majorUnit),this.majorTicks=fd(o,this.majorTickAngles,e.majorUnit,e.majorTicks);var r=new vd;r.append(this.majorTicks);var n=e.majorTicks.size,i=e.minorTicks.size;if(this._tickDifference=n-i,e.labels.position===Sp){var a=o.getRadiusX();o.setRadiusX(a-n+i).setRadiusY(a-n+i)}return this.minorTickAngles=this.normalizeTickAngles(this.tickAngles(t,e.minorUnit)),this.minorTicks=fd(o,this.minorTickAngles,e.minorUnit,e.minorTicks),r.append(this.minorTicks),r},e.prototype.normalizeTickAngles=function(t){for(var e=this.options,o=e.majorUnit/e.minorUnit,r=t.length-1;r>=0;r--)r%o==0&&t.splice(r,1);return t},e.prototype.tickAngles=function(t,e){var o=this.options,r=o.reverse,n=o.max-o.min,i=t.endAngle-t.startAngle,a=n/e,s=t.startAngle,c=i/a;r&&(s+=i,c=-c),i>=360&&o.max%e==0&&(a-=1);for(var l=[],h=0;h<a;h++)l.push(Xt(s,v)),s+=c;return Xt(s)<=t.endAngle&&l.push(s),l},e.prototype.radius=function(t){if(!t)return this.arc.getRadiusX();this.arc.setRadiusX(t).setRadiusY(t),this.repositionTicks(this.majorTicks.children,this.majorTickAngles),this.repositionTicks(this.minorTicks.children,this.minorTickAngles,!0)},e.prototype.repositionTicks=function(t,e,o){var r=o&&this._tickDifference||0,n=this.arc,i=n.getRadiusX();o&&this.options.labels.position===Sp&&0!==r&&(n=this.arc.clone()).setRadiusX(i-r).setRadiusY(i-r);for(var a=0;a<t.length;a++){var s=n.pointAt(e[a]),c=t[a].segments,l=s.x-c[0].anchor().x,h=s.y-c[0].anchor().y;t[a].transform((new $.geometry.transform).translate(l,h))}},e}(mn);Qt(gd,{min:0,max:100,majorTicks:{size:15,align:Cp,color:h,width:wp,visible:!0},minorTicks:{size:10,align:Cp,color:h,width:wp,visible:!0},startAngle:-30,endAngle:210,labels:{position:Cp,padding:2}});const yd=gd;var bd=function(t){function e(e,o){t.call(this,e,o);var r=this.options;r.duration=Math.max(Math.abs(r.newAngle-r.oldAngle)/r.duration*1e3,1)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.step=function(t){var e=this.options,o=St(e.oldAngle,e.newAngle,t);this.element.transform($.geometry.transform().rotate(o,e.center))},e}($.drawing.Animation);Qt(bd,{easing:Op,duration:yp}),$.drawing.AnimationFactory.current.register(zp,bd);const xd=bd;var wd=$.drawing.Circle,_d=$.drawing.Group,Cd=$.drawing.Path,Od=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setAngle=function(t){this.elements.transform($.geometry.transform().rotate(t,this.center))},e.prototype.repaint=function(){var t=this.scale,e=this.options,o=t.slotAngle(e._oldValue),r=t.slotAngle(e.value);!1===e.animation.transitions?this.setAngle(r):new xd(this.elements,it(e.animation,{oldAngle:o,newAngle:r})).play()},e.prototype.render=function(){var t=this.scale,e=this.options,o=new _d;return!1!==e.animation&&it(e.animation,{startAngle:0,center:t.arc.center,reverse:t.options.reverse}),o.append(this._renderNeedle(),this._renderCap()),this.elements=o,this.setAngle(_p),o},e.prototype.reflow=function(t){var e=this.center=t.center,o=Kt(this.options.length||1,.1,1.5),r=this.radius=t.getRadiusX()*o,n=this.capSize=Math.round(r*this.options.cap.size);this.bbox=$.geometry.Rect.fromPoints(new $.geometry.Point(e.x-n,e.y-n),new $.geometry.Point(e.x+n,e.y+n))},e.prototype._renderNeedle=function(){var t=this.scale.options.minorTicks.size,e=this.center,o=this.options.color,r=new Cd({fill:{color:o},stroke:{color:o,width:wp}});return r.moveTo(e.x+this.radius-t,e.y).lineTo(e.x,e.y-this.capSize/2).lineTo(e.x,e.y+this.capSize/2).close(),r},e.prototype._renderCap=function(){var t=this.options,e=t.cap.color||t.color,o=new $.geometry.Circle(this.center,this.capSize);return new wd(o,{fill:{color:e},stroke:{color:e}})},e}(Xp);Qt(Od,{cap:{size:.05},arrow:{width:16,height:14},animation:{type:zp,duration:yp}});const Sd=Od;var zd=$.drawing.Group,Md=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this,o=this.pointers;this.scale.reflow(t),this._initialPlotArea=this.scale.bbox;for(var r=0;r<o.length;r++)o[r].reflow(e.scale.arc),e._initialPlotArea=$.geometry.Rect.union(e._initialPlotArea,o[r].bbox);this.fitScale(t),this.alignScale(t),this._buildVisual(this.gaugeArea,o,this.scale),this._draw()},e.prototype._buildVisual=function(t,e,o){var r=this._visuals=new zd;r.append(t),r.append(o.ticks),r.append(o.ranges),this._buildPointers(e),r.append(o.labelElements)},e.prototype._buildPointers=function(t){for(var e=0;e<t.length;e++){var o=t[e];o.render(),this._visuals.append(o.elements),o.value(o.options.value)}},e.prototype.fitScale=function(t){for(var e,o,r,n,i,a=this,s=this.scale.arc,c=this._initialPlotArea,l=Math.abs(this.getDiff(c,t)),h=Xt(l,v),u=Xt(-l,v),p=0,d=0;!(!(d++<100)||(p=i===r?p+1:0)>5||h!==n&&0<=(e=a.getPlotBox(h,t,s))&&e<=2||u!==n&&0<=(r=a.getPlotBox(u,t,s))&&r<=2||(n=e>0&&r>0?2*h:e<0&&r<0?2*u:Xt((h+u)/2||1,v),0<=(o=a.getPlotBox(n,t,s))&&o<=2));)i=r,o>0?(u=n,r=o):(h=n,e=o)},e.prototype.getPlotBox=function(t,e,o){var r=this.scale,n=this.pointers,i=o.getRadiusX(),a=o.clone();a.setRadiusX(i+t).setRadiusY(i+t),r.arc=a,r.reflow(e),this.plotBbox=r.bbox;for(var s=0;s<n.length;s++)n[s].reflow(a),this.plotBbox=$.geometry.Rect.union(this.plotBbox,n[s].bbox);return this.getDiff(this.plotBbox,e)},e.prototype.getDiff=function(t,e){return Math.min(e.width()-t.width(),e.height()-t.height())},e.prototype.alignScale=function(t){var e=this.plotBbox.center(),o=t.center(),r=e.x-o.x,n=e.y-o.y,i=this.scale,a=this.pointers;i.arc.center.x-=r,i.arc.center.y-=n,i.reflow(t);for(var s=0;s<a.length;s++)a[s].reflow(i.arc),this.plotBbox=$.geometry.Rect.union(i.bbox,a[s].bbox)},e.prototype._createModel=function(){var t=this.options,e=t.pointer,o=this.scale=new yd(t.scale,this.contextService);this.pointers=[];for(var r=F(e)?e:[e],n=0;n<r.length;n++){var i=new Sd(o,it({},r[n],{animation:{transitions:t.transitions}}));this.pointers.push(i)}},e}(Ep);Qt(Md,{transitions:!0,gaugeArea:{background:""}});const Pd=Md;var Vd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.rangeSegments=function(){var t=this.options;return[{from:t.min,to:t.max,color:t.rangePlaceholderColor,lineCap:t.rangeLineCap}]},e.prototype.hasRanges=function(){return!0},e.prototype.placeholderRangeAngle=function(t){var e=this.ranges.children[0].geometry();this.options.reverse?e.setEndAngle(t):e.setStartAngle(t)},e.prototype.addRange=function(t,e,o){var r=this.options.reverse,n=this.slotAngle(r?e:t),i=this.slotAngle(r?t:e),a=this.createRange(n,i,this.getRangeRadius(),o);return this.ranges.append(a),a},e}(yd);Qt(Vd,{min:0,max:100,majorTicks:{visible:!1},minorTicks:{visible:!1},labels:{visible:!1},startAngle:0,endAngle:180,rangeLineCap:"round"});const Ad=Vd;var jd=function(t){function e(e,o){t.call(this,e,o);var r=this.options,n=Math.abs(r.newAngle-r.oldAngle)/r.duration*1e3;r.duration=Kt(n,yp,800);var i=e.elements.options.get("stroke.color"),a=e.currentColor();i!==a&&(this.startColor=new $.Color(i),this.color=new $.Color(a))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.step=function(t){var e=this,o=e.options,r=e.startColor,n=e.color,i=St(o.oldAngle,o.newAngle,t);if(this.element.angle(i),n){var a=Xt(St(r.r,n.r,t)),s=Xt(St(r.g,n.g,t)),c=Xt(St(r.b,n.b,t));this.element.stroke(new $.Color(a,s,c).toHex())}},e}($.drawing.Animation);Qt(jd,{easing:Op,duration:yp}),$.drawing.AnimationFactory.current.register(Mp,jd);const kd=jd;var Hd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.repaint=function(){var t=this.scale,e=this.options,o=t.slotAngle(e._oldValue),r=t.slotAngle(e.value);this.animation&&this.animation.abort(),!1===e.animation.transitions?(this.angle(r),this.stroke(this.currentColor())):(this.animation=new kd(this,it(e.animation,{oldAngle:o,newAngle:r})),this.animation.play())},e.prototype.angle=function(t){var e=this.elements.geometry();this.scale.options.reverse?e.setStartAngle(t):e.setEndAngle(t),this.scale.placeholderRangeAngle(t)},e.prototype.stroke=function(t){this.elements.stroke(t)},e.prototype.render=function(){if(!this.elements){var t=this.scale,e=this.options;!1!==e.animation&&it(e.animation,{startAngle:0,center:t.arc.center,reverse:t.options.reverse}),this.elements=t.addRange(t.options.min,this.options.value,{color:this.currentColor(),opacity:e.opacity,lineCap:t.options.rangeLineCap})}},e.prototype.currentColor=function(){var t=this.scale.options,e=t.min,o=t.max,r=this.options,n=r.colors,i=r.color,a=r.value,s=Y(a)?a:e;if(n)for(var c=0;c<n.length;c++){var l=n[c],h=l.color,u=l.from;void 0===u&&(u=e);var p=l.to;if(void 0===p&&(p=o),u<=s&&s<=p)return h}return i},e.prototype.reflow=function(){this.render(),this.bbox=this.elements.bbox()},e}(Xp);Qt(Hd,{animation:{type:Mp,duration:yp}});const Id=Hd;var Bd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initTheme=function(e){t.prototype._initTheme.call(this,e),this.options.color=this.options.color||(this.theme.pointer||{}).color},e.prototype._createModel=function(){var t=this.options,e=this.scale=new Ad(t.scale,this.contextService),o=new Id(e,it({},{colors:t.colors,color:t.color,value:t.value,opacity:t.opacity,animation:{transitions:t.transitions}}));this.pointers=[o]},e.prototype._buildPointers=function(t){for(var e=0;e<t.length;e++){var o=t[e];o.render(),o.value(o.options.value)}},e.prototype._setValueOptions=function(t){this.options.value=t},e.prototype.currentColor=function(){var t=this.pointers[0];if(t)return t.currentColor()},e.prototype.centerLabelPosition=function(t,e){var o=this.getSize(),r=this.scale.arc.center,n=r.x-t/2,i=r.y-e/2;if(t<o.width){var a=n+t;n=Math.max(n,0),a>o.width&&(n-=a-o.width)}if(e<o.height){var s=this.scale.bbox,c=s.bottomRight().y,l=i+e;i=Math.max(i,s.origin.y),l>c&&(i-=l-c)}return{left:n,top:i}},e}(Pd);const Ld=Bd;var Td=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._createModel=function(){var e=this.options.scale;"number"!=typeof e.startAngle&&(e.startAngle=90),e.endAngle=e.startAngle+360,t.prototype._createModel.call(this)},e}(Ld);const Ed=Td;var Dd=function(t){function e(e){t.call(this),this.setOptions(e),this.initProperties()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){},e.prototype.setOptions=function(t){this.options=Object.assign({},this.options,t),this.quietZoneLength=this.options.addQuietZone?2*this.options.quietZoneLength:0},e.prototype.encode=function(t,e,o){var r=Lt(t)?String(t):t;return this.initValue(r,e,o),this.options.addQuietZone&&this.addQuietZone(),this.addData(),this.options.addQuietZone&&this.addQuietZone(),{baseUnit:this.baseUnit,pattern:this.pattern}},e.prototype.initValue=function(){},e.prototype.addQuietZone=function(){this.pattern.push(this.options.quietZoneLength||10)},e.prototype.addData=function(){},e.prototype.invalidCharacterError=function(t){throw new Error('Character "'+t+'" is not valid for symbology '+this.name+".")},e}($.Class);Qt(Dd,{quietZoneLength:10,addQuietZone:!0,addCheckSum:!0});var Nd=Object.assign,Rd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Nd(this,{name:"Code 11",characterMap:["111121","211121","121121","221111","112121","212111","122111","111221","211211","211111","112111"],cCheckSumTotal:10,kCheckSumTotal:9,kCheckSumMinLength:10,checkSumMod:11,DASH_VALUE:10,DASH:"-",START:"112211",STOP:"11221"})},e.prototype.initValue=function(t,e){this.pattern=[],this.value=t,this.width=e,this.totalUnits=0},e.prototype.addData=function(){var t=this.value;this.addPattern(this.START);for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.addCheckSum(),this.addPattern(this.STOP),this.setBaseUnit()},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(this.totalUnits+this.quietZoneLength)},e.prototype.addCheckSum=function(){var t=this.value,e=t.length,o=this.getWeightedSum(t,e,this.cCheckSumTotal)%this.checkSumMod;if(this.checksum=String(o),this.addPattern(this.characterMap[o]),++e>=this.kCheckSumMinLength){var r=(o+this.getWeightedSum(t,e,this.kCheckSumTotal))%this.checkSumMod;this.checksum+=r,this.addPattern(this.characterMap[r])}},e.prototype.getWeightedSum=function(t,e,o){for(var r=0,n=0;n<t.length;n++)r+=this.weightedValue(this.getValue(t.charAt(n)),e,n,o);return r},e.prototype.weightedValue=function(t,e,o,r){return((e-o)%r||r)*t},e.prototype.getValue=function(t){return isNaN(t)?(t!==this.DASH&&this.invalidCharacterError(t),this.DASH_VALUE):parseInt(t,10)},e.prototype.addCharacter=function(t){var e=this.getValue(t),o=this.characterMap[e];this.addPattern(o)},e.prototype.addPattern=function(t){for(var e,o=0;o<t.length;o++)e=parseInt(t.charAt(o),10),this.pattern.push(e),this.totalUnits+=e},e}(Dd);Qt(Rd,{addCheckSum:!0});var Fd=Object.assign,Ud=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Fd(this,{minBaseUnitLength:.7})},e.prototype.addData=function(){var t=this.value;this.addStart();for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.pushCheckSum(),this.addStop(),this.prepareValues()},e.prototype.addCharacter=function(t){var e=this.characterMap[t];e||this.invalidCharacterError(t),this.addBase(e)},e.prototype.addBase=function(){},e}(Dd),Kd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Fd(this,{name:"Code 39",checkSumMod:43,minRatio:2.5,maxRatio:3,gapWidth:1,splitCharacter:"|",patternMappings:{b:"1|",w:"1|",B:"ratio|",W:"ratio|"},characterMap:{0:{pattern:"bwbWBwBwb",value:0},1:{pattern:"BwbWbwbwB",value:1},2:{pattern:"bwBWbwbwB",value:2},3:{pattern:"BwBWbwbwb",value:3},4:{pattern:"bwbWBwbwB",value:4},5:{pattern:"BwbWBwbwb",value:5},6:{pattern:"bwBWBwbwb",value:6},7:{pattern:"bwbWbwBwB",value:7},8:{pattern:"BwbWbwBwb",value:8},9:{pattern:"bwBWbwBwb",value:9},A:{pattern:"BwbwbWbwB",value:10},B:{pattern:"bwBwbWbwB",value:11},C:{pattern:"BwBwbWbwb",value:12},D:{pattern:"bwbwBWbwB",value:13},E:{pattern:"BwbwBWbwb",value:14},F:{pattern:"bwBwBWbwb",value:15},G:{pattern:"bwbwbWBwB",value:16},H:{pattern:"BwbwbWBwb",value:17},I:{pattern:"bwBwbWBwb",value:18},J:{pattern:"bwbwBWBwb",value:19},K:{pattern:"BwbwbwbWB",value:20},L:{pattern:"bwBwbwbWB",value:21},M:{pattern:"BwBwbwbWb",value:22},N:{pattern:"bwbwBwbWB",value:23},O:{pattern:"BwbwBwbWb",value:24},P:{pattern:"bwBwBwbWb",value:25},Q:{pattern:"bwbwbwBWB",value:26},R:{pattern:"BwbwbwBWb",value:27},S:{pattern:"bwBwbwBWb",value:28},T:{pattern:"bwbwBwBWb",value:29},U:{pattern:"BWbwbwbwB",value:30},V:{pattern:"bWBwbwbwB",value:31},W:{pattern:"BWBwbwbwb",value:32},X:{pattern:"bWbwBwbwB",value:33},Y:{pattern:"BWbwBwbwb",value:34},Z:{pattern:"bWBwBwbwb",value:35},"-":{pattern:"bWbwbwBwB",value:36},".":{pattern:"BWbwbwBwb",value:37}," ":{pattern:"bWBwbwBwb",value:38},$:{pattern:"bWbWbWbwb",value:39},"/":{pattern:"bWbWbwbWb",value:40},"+":{pattern:"bWbwbWbWb",value:41},"%":{pattern:"bwbWbWbWb",value:42},START:{pattern:"bWbwBwBwb"}}})},e.prototype.initValue=function(t,e,o){this.width=e,this.height=o,this.value=t,this.dataLength=t.length,this.pattern=[],this.patternString=""},e.prototype.prepareValues=function(){var t,e=this.minBaseUnitLength,o=this.minRatio,r=Math.ceil(Math.max(.15*this.width,24)),n=this.maxRatio;if(this.height<r)throw new Error("Insufficient height for Code39 encoding: the current height is "+this.height+"px and the minimum height is "+r+"px.");for(t=this.getBaseUnit(n);t<e&&n>o;)n=parseFloat((n-.1).toFixed(1)),t=this.getBaseUnit(n);if(t<e){var i=Math.ceil(this.getBaseWidth(o)*e);throw new Error("Insufficient width for Code39 encoding: the current width is "+this.width+'px and the minimum width for value "'+this.value+'" is '+i+"px.")}this.ratio=n,this.baseUnit=t,this.patternString=this.patternString.substring(0,this.patternString.length-1),this.pattern=this.pattern.concat(this.patternString.replace(/ratio/g,n).split(this.splitCharacter))},e.prototype.getBaseUnit=function(t){return this.width/this.getBaseWidth(t)},e.prototype.getBaseWidth=function(t){var e=3*(t+2);return this.quietZoneLength+e*(this.dataLength+2)+this.gapWidth*(this.dataLength+1)},e.prototype.addStart=function(){this.addPattern(this.characterMap.START.pattern),this.addCharacterGap()},e.prototype.addBase=function(t){this.addPattern(t.pattern),this.addCharacterGap()},e.prototype.addStop=function(){this.addPattern(this.characterMap.START.pattern)},e.prototype.addPattern=function(t){for(var e=0;e<t.length;e++)this.patternString+=this.patternMappings[t.charAt(e)]},e.prototype.addCharacterGap=function(){this.patternString+=this.gapWidth+this.splitCharacter},e}(Ud);Qt(Kd,{addCheckSum:!1});var qd={addCharacter:function(t){this.characterMap[t]?this.addBase(this.characterMap[t]):t.charCodeAt(0)>127?this.invalidCharacterError(t):this.addExtended(t.charCodeAt(0))},addExtended:function(t){for(var e,o=this,r=0;r<this.extendedMappings.length;r++)if(e=o.extendedMappings[r].call(o,t)){for(var n=0;n<e.length;n++){var i=e[n];o.addBase(i)}return void(o.dataLength+=e.length-1)}},extendedMappings:[function(t){if(97<=t&&t<=122)return[this.characterMap[this.shiftCharacters[0]],this.characterMap[String.fromCharCode(t-32)]]},function(t){if(33<=t&&t<=58)return[this.characterMap[this.shiftCharacters[1]],this.characterMap[String.fromCharCode(t+32)]]},function(t){if(1<=t&&t<=26)return[this.characterMap[this.shiftCharacters[2]],this.characterMap[String.fromCharCode(t+64)]]},function(t){var e,o,r=this;if(this.specialAsciiCodes[t]){e=[];for(var n=0;n<this.specialAsciiCodes[t].length;n++)e.push(r.characterMap[r.shiftCharacters[3]]),e.push(r.characterMap[r.specialAsciiCodes[t][n]])}else o=6*Math.floor(t/32)+(t-27)%32+64,e=[this.characterMap[this.shiftCharacters[3]],this.characterMap[String.fromCharCode(o)]];return e}],specialAsciiCodes:{0:["U"],64:["V"],96:["W"],127:["T","X","Y","Z"]},shiftValuesAsciiCodes:{39:36,40:47,41:43,42:37},characterMap:{"+":!1,"/":!1,$:!1,"%":!1},shiftCharacters:["SHIFT0","SHIFT1","SHIFT2","SHIFT3"]},$d=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),it(this,qd,{name:"Code 39 extended",characterMap:{SHIFT0:{pattern:"bWbwbWbWb",value:41},SHIFT1:{pattern:"bWbWbwbWb",value:40},SHIFT2:{pattern:"bWbWbWbwb",value:39},SHIFT3:{pattern:"bwbWbWbWb",value:42}}})},e}(Kd),Xd=Object.assign,Gd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Xd(this,{name:"Code 93",cCheckSumTotal:20,kCheckSumTotal:15,checkSumMod:47,characterMap:{0:{pattern:"131112",value:0},1:{pattern:"111213",value:1},2:{pattern:"111312",value:2},3:{pattern:"111411",value:3},4:{pattern:"121113",value:4},5:{pattern:"121212",value:5},6:{pattern:"121311",value:6},7:{pattern:"111114",value:7},8:{pattern:"131211",value:8},9:{pattern:"141111",value:9},A:{pattern:"211113",value:10},B:{pattern:"211212",value:11},C:{pattern:"211311",value:12},D:{pattern:"221112",value:13},E:{pattern:"221211",value:14},F:{pattern:"231111",value:15},G:{pattern:"112113",value:16},H:{pattern:"112212",value:17},I:{pattern:"112311",value:18},J:{pattern:"122112",value:19},K:{pattern:"132111",value:20},L:{pattern:"111123",value:21},M:{pattern:"111222",value:22},N:{pattern:"111321",value:23},O:{pattern:"121122",value:24},P:{pattern:"131121",value:25},Q:{pattern:"212112",value:26},R:{pattern:"212211",value:27},S:{pattern:"211122",value:28},T:{pattern:"211221",value:29},U:{pattern:"221121",value:30},V:{pattern:"222111",value:31},W:{pattern:"112122",value:32},X:{pattern:"112221",value:33},Y:{pattern:"122121",value:34},Z:{pattern:"123111",value:35},"-":{pattern:"121131",value:36},".":{pattern:"311112",value:37}," ":{pattern:"311211",value:38},$:{pattern:"321111",value:39},"/":{pattern:"112131",value:40},"+":{pattern:"113121",value:41},"%":{pattern:"211131",value:42},SHIFT0:{pattern:"122211",value:46},SHIFT1:{pattern:"311121",value:45},SHIFT2:{pattern:"121221",value:43},SHIFT3:{pattern:"312111",value:44},START:{pattern:"111141"},TERMINATION_BAR:"1"}})},e.prototype.initValue=function(t,e,o){this.value=t,this.width=e,this.height=o,this.pattern=[],this.values=[],this.dataLength=t.length},e.prototype.prepareValues=function(){var t=Math.ceil(Math.max(.15*this.width,24));if(this.height<t)throw new Error("Insufficient height for Code93 encoding: the current height is "+this.height+"px, the minimum required height is "+t+"px.");if(this.setBaseUnit(),this.baseUnit<this.minBaseUnitLength){var e=Math.ceil(this.minBaseUnitLength*(this.width/this.baseUnit));throw new Error("Insufficient width for Code93 encoding: the current width is "+this.width+'px and the minimum required width for value "'+this.value+'" is '+e+"px.")}},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(9*(this.dataLength+2+2)+this.quietZoneLength+1)},e.prototype.addStart=function(){var t=this.characterMap.START.pattern;this.addPattern(t)},e.prototype.addStop=function(){this.addStart(),this.pattern.push(this.characterMap.TERMINATION_BAR)},e.prototype.addBase=function(t){this.addPattern(t.pattern),this.values.push(t.value)},e.prototype.pushCheckSum=function(){var t,e=this,o=this._getCheckValues();this.checksum=o.join("");for(var r=0;r<o.length;r++)t=e.characterMap[e._findCharacterByValue(o[r])],e.addPattern(t.pattern)},e.prototype._getCheckValues=function(){var t,e,o=this,r=this.values,n=r.length,i=0;for(e=n-1;e>=0;e--)i+=o.weightedValue(r[e],n-e,o.cCheckSumTotal);for(t=i%this.checkSumMod,i=this.weightedValue(t,1,this.kCheckSumTotal),e=n-1;e>=0;e--)i+=o.weightedValue(r[e],n-e+1,o.kCheckSumTotal);return[t,i%this.checkSumMod]},e.prototype._findCharacterByValue=function(t){for(var e in this.characterMap)if(this.characterMap[e].value===t)return e},e.prototype.weightedValue=function(t,e,o){return(e%o||o)*t},e.prototype.addPattern=function(t){for(var e,o=0;o<t.length;o++)e=parseInt(t.charAt(o),10),this.pattern.push(e)},e}(Ud),Yd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),it(this,qd,{name:"Code 93 extended",pushCheckSum:function(){var t,e=this,o=this._getCheckValues();this.checksum=o.join("");for(var r=0;r<o.length;r++)if(t=o[r],e.shiftValuesAsciiCodes[t])e.addExtended(e.shiftValuesAsciiCodes[t]);else{var n=e._findCharacterByValue(t);e.addPattern(e.characterMap[n].pattern)}}})},e}(Gd),Wd=/^\d+$/,Zd=Object.assign,Qd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Zd(this,{name:"Postnet",START:"2",VALID_CODE_LENGTHS:[5,9,11],DIGIT_SEPARATOR:"-",characterMap:["22111","11122","11212","11221","12112","12121","12211","21112","21121","21211"]})},e.prototype.initValue=function(t,e,o){this.height=o,this.width=e,this.baseHeight=o/2,this.value=t.replace(new RegExp(this.DIGIT_SEPARATOR,"g"),""),this.pattern=[],this.validate(this.value),this.checkSum=0,this.setBaseUnit()},e.prototype.addData=function(){var t=this.value;this.addPattern(this.START);for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.addCheckSum(),this.addPattern(this.START),this.pattern.pop()},e.prototype.addCharacter=function(t){var e=this.characterMap[t];this.checkSum+=parseInt(t,10),this.addPattern(e)},e.prototype.addCheckSum=function(){this.checksum=(10-this.checkSum%10)%10,this.addCharacter(this.checksum)},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(10*(this.value.length+1)+3+this.quietZoneLength)},e.prototype.validate=function(t){if(Wd.test(t)||this.invalidCharacterError(t.match(/[^0-9]/)[0]),!Ot(t.length,this.VALID_CODE_LENGTHS))throw new Error("Invalid value length. Valid lengths for the Postnet symbology are "+this.VALID_CODE_LENGTHS.join(",")+".")},e.prototype.addPattern=function(t){for(var e,o=this,r=0;r<t.length;r++)e=o.height-o.baseHeight*t.charAt(r),o.pattern.push({width:1,y1:e,y2:o.height}),o.pattern.push(1)},e}(Dd),Jd=/^\d+$/,tv=/^[a-z0-9]+$/i,ev=Object.assign,ov=function(t){function e(e){t.call(this),this.encoding=e,this.initProperties()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){},e.prototype.addStart=function(){},e.prototype.is=function(){},e.prototype.isCode=function(){return!1},e.prototype.move=function(){},e.prototype.pushState=function(){},e}($.Class),rv=function(t){function e(e,o){t.call(this,e),this.states=o,this._initMoves(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),it(this,{FNC4:"FNC4",SHIFT:98})},e.prototype.addStart=function(){this.encoding.addPattern(this.START)},e.prototype.is=function(t,e){var o=t.charCodeAt(e);return this.isCode(o)},e.prototype.move=function(t){for(var e=0;!this._moves[e].call(this,t)&&e<this._moves.length;)e++},e.prototype.pushState=function(t){var e,o=this.states,r=t.value,n=r.length;if(Ot("C",o)){var i=r.substr(t.index).match(/\d{4,}/g);i&&(n=r.indexOf(i[0],t.index))}for(;(e=t.value.charCodeAt(t.index))>=0&&this.isCode(e)&&t.index<n;)this.encoding.addPattern(this.getValue(e)),t.index++},e.prototype._initMoves=function(t){this._moves=[],Ot(this.FNC4,t)&&this._moves.push(this._moveFNC),Ot(this.shiftKey,t)&&this._moves.push(this._shiftState),this._moves.push(this._moveState)},e.prototype._moveFNC=function(t){if(t.fnc)return t.fnc=!1,t.previousState===this.key},e.prototype._shiftState=function(t){if(t.previousState===this.shiftKey&&(t.index+1>=t.value.length||this.encoding[this.shiftKey].is(t.value,t.index+1)))return this.encoding.addPattern(this.SHIFT),t.shifted=!0,!0},e.prototype._moveState=function(){return this.encoding.addPattern(this.MOVE),!0},e}(ov),nv={};nv.A=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{key:"A",shiftKey:"B",MOVE:101,START:103})},e.prototype.isCode=function(t){return 0<=t&&t<96},e.prototype.getValue=function(t){return t<32?t+64:t-32},e}(rv),nv.B=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{key:"B",shiftKey:"A",MOVE:100,START:104})},e.prototype.isCode=function(t){return 32<=t&&t<128},e.prototype.getValue=function(t){return t-32},e}(rv),nv.C=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{key:"C",MOVE:99,START:105})},e.prototype.addStart=function(){this.encoding.addPattern(this.START)},e.prototype.is=function(t,e){var o=uv(t,e,4);return(e+4<=t.length||2===t.length)&&Jd.test(o)},e.prototype.move=function(){this.encoding.addPattern(this.MOVE)},e.prototype.pushState=function(t){for(var e;(e=uv(t.value,t.index,2))&&Jd.test(e)&&2===e.length;)this.encoding.addPattern(parseInt(e,10)),t.index+=2},e.prototype.getValue=function(t){return t},e}(ov),nv.FNC4=function(t){function e(e,o){t.call(this,e),this._initSubStates(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{key:"FNC4",dependentStates:["A","B"]})},e.prototype.addStart=function(t){var e=t.value.charCodeAt(0)-128,o=this._getSubState(e);this.encoding[o].addStart()},e.prototype.is=function(t,e){var o=t.charCodeAt(e);return this.isCode(o)},e.prototype.isCode=function(t){return 128<=t&&t<256},e.prototype.pushState=function(t){var e,o=this._initSubState(t),r=this.encoding,n=o.value.length;if(t.index+=n,n<3)for(;o.index<n;o.index++)e=o.value.charCodeAt(o.index),o.state=this._getSubState(e),o.previousState!==o.state&&(o.previousState=o.state,r[o.state].move(o)),r.addPattern(r[o.state].MOVE),r.addPattern(r[o.state].getValue(e));else o.state!==o.previousState&&r[o.state].move(o),this._pushStart(o),r.pushData(o,this.subStates),t.index<t.value.length&&this._pushStart(o);t.fnc=!0,t.state=o.state},e.prototype._pushStart=function(t){this.encoding.addPattern(this.encoding[t.state].MOVE),this.encoding.addPattern(this.encoding[t.state].MOVE)},e.prototype._initSubState=function(t){var e={value:this._getAll(t.value,t.index),index:0};return e.state=this._getSubState(e.value.charCodeAt(0)),e.previousState=t.previousState===this.key?e.state:t.previousState,e},e.prototype._initSubStates=function(t){this.subStates=[];for(var e=0;e<t.length;e++)Ot(t[e],this.dependentStates)&&this.subStates.push(t[e])},e.prototype._getSubState=function(t){for(var e=this,o=0;o<this.subStates.length;o++)if(e.encoding[e.subStates[o]].isCode(t))return e.subStates[o]},e.prototype._getAll=function(t,e){for(var o,r="",n=e;(o=t.charCodeAt(n++))&&this.isCode(o);)r+=String.fromCharCode(o-128);return r},e}(ov),nv.FNC1=function(t){function e(e,o){t.call(this,e),this.states=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{key:"FNC1",startState:"C",startAI:"(",endAI:")",dependentStates:["C","B"],applicationIdentifiers:{22:{max:29,type:"alphanumeric"},402:{length:17},7004:{max:4,type:"alphanumeric"},242:{max:6,type:"alphanumeric"},8020:{max:25,type:"alphanumeric"},703:{min:3,max:30,type:"alphanumeric"},8008:{min:8,max:12,type:"alphanumeric"},253:{min:13,max:17,type:"alphanumeric"},8003:{min:14,max:30,type:"alphanumeric"},multiKey:[{ids:["15","17","8005","8100"],ranges:[[11,13],[310,316],[320,336],[340,369]],type:{length:6}},{ids:["240","241","250","251","400","401","403","7002","8004","8007","8110"],ranges:[[-9]],type:{max:30,type:"alphanumeric"}},{ids:["7001"],ranges:[[410,414]],type:{length:13}},{ids:["10","21","254","420","8002"],type:{max:20,type:"alphanumeric"}},{ids:["00","8006","8017","8018"],type:{length:18}},{ids:["01","02","8001"],type:{length:14}},{ids:["422"],ranges:[[424,426]],type:{length:3}},{ids:["20","8102"],type:{length:2}},{ids:["30","37"],type:{max:8,type:"alphanumeric"}},{ids:["390","392"],type:{max:15,type:"alphanumeric"}},{ids:["421","423"],type:{min:3,max:15,type:"alphanumeric"}},{ids:["391","393"],type:{min:3,max:18,type:"alphanumeric"}},{ids:["7003","8101"],type:{length:10}}]},START:102})},e.prototype.addStart=function(){this.encoding[this.startState].addStart()},e.prototype.is=function(){return Ot(this.key,this.states)},e.prototype.pushState=function(t){var e,o,r,n=this,i=this.encoding,a=t.value.replace(/\s/g,""),s=new RegExp("["+this.startAI+this.endAI+"]","g"),c=t.index,l={state:this.startState};for(i.addPattern(this.START);;){if(l.index=0,(e=(r=a.charAt(c)===n.startAI?2:0)>0?n.getBySeparator(a,c):n.getByLength(a,c)).ai.length)o=c+r+e.id.length+e.ai.length;else if((o=a.indexOf(n.startAI,c+1))<0){if(c+e.ai.max+e.id.length+r<a.length)throw new Error("Separators are required after variable length identifiers");o=a.length}if(l.value=a.substring(c,o).replace(s,""),n.validate(e,l.value),i.pushData(l,n.dependentStates),o>=a.length)break;c=o,l.state!==n.startState&&(i[n.startState].move(l),l.state=n.startState),e.ai.length||i.addPattern(n.START)}t.index=t.value.length},e.prototype.validate=function(t,e){var o=e.substr(t.id.length),r=t.ai;if(!r.type&&!Jd.test(o))throw new Error("Application identifier "+t.id+" is numeric only but contains non numeric character(s).");if("alphanumeric"===r.type&&!tv.test(o))throw new Error("Application identifier "+t.id+" is alphanumeric only but contains non alphanumeric character(s).");if(r.length&&r.length!==o.length)throw new Error("Application identifier "+t.id+" must be "+r.length+" characters long.");if(r.min&&r.min>o.length)throw new Error("Application identifier "+t.id+" must be at least "+r.min+" characters long.");if(r.max&&r.max<o.length)throw new Error("Application identifier "+t.id+" must be at most "+r.max+" characters long.")},e.prototype.getByLength=function(t,e){for(var o,r,n=2;n<=4;n++)if(o=uv(t,e,n),r=this.getApplicationIdentifier(o)||this.getApplicationIdentifier(o.substring(0,o.length-1)))return{id:o,ai:r};this.unsupportedAIError(o)},e.prototype.unsupportedAIError=function(t){throw new Error("'"+t+"' is not a supported Application Identifier")},e.prototype.getBySeparator=function(t,e){var o=t.indexOf(this.startAI,e),r=t.indexOf(this.endAI,o),n=t.substring(o+1,r),i=this.getApplicationIdentifier(n)||this.getApplicationIdentifier(n.substr(n.length-1));return i||this.unsupportedAIError(n),{ai:i,id:n}},e.prototype.getApplicationIdentifier=function(t){var e=this.applicationIdentifiers,o=e.multiKey;if(e[t])return e[t];for(var r=0;r<o.length;r++){if(o[r].ids&&Ot(t,o[r].ids))return o[r].type;if(o[r].ranges)for(var n=o[r].ranges,i=0;i<n.length;i++)if(n[i][0]<=t&&t<=n[i][1])return o[r].type}},e}(ov);var iv=function(t){function e(e){t.call(this,e),this._initStates()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{characterMap:[212222,222122,222221,121223,121322,131222,122213,122312,132212,221213,221312,231212,112232,122132,122231,113222,123122,123221,223211,221132,221231,213212,223112,312131,311222,321122,321221,312212,322112,322211,212123,212321,232121,111323,131123,131321,112313,132113,132311,211313,231113,231311,112133,112331,132131,113123,113321,133121,313121,211331,231131,213113,213311,213131,311123,311321,331121,312113,312311,332111,314111,221411,431111,111224,111422,121124,121421,141122,141221,112214,112412,122114,122411,142112,142211,241211,221114,413111,241112,134111,111242,121142,121241,114212,124112,124211,411212,421112,421211,212141,214121,412121,111143,111341,131141,114113,114311,411113,411311,113141,114131,311141,411131,211412,211214,211232,2331112],STOP:106})},e.prototype._initStates=function(){for(var t=this,e=0;e<this.states.length;e++)t[t.states[e]]=new nv[t.states[e]](t,t.states)},e.prototype.initValue=function(t,e,o){this.pattern=[],this.value=t,this.width=e,this.height=o,this.checkSum=0,this.totalUnits=0,this.index=0,this.position=1},e.prototype.addData=function(){var t={value:this.value,index:0,state:""};0!==this.value.length&&(t.state=t.previousState=this.getNextState(t,this.states),this.addStart(t),this.pushData(t,this.states),this.addCheckSum(),this.addStop(),this.setBaseUnit())},e.prototype.pushData=function(t,e){for(var o=this;o[t.state].pushState(t),!(t.index>=t.value.length);)if(t.shifted){var r=t.state;t.state=t.previousState,t.previousState=r,t.shifted=!1}else t.previousState=t.state,t.state=o.getNextState(t,e),o[t.state].move(t)},e.prototype.addStart=function(t){this[t.state].addStart(t),this.position=1},e.prototype.addCheckSum=function(){this.checksum=this.checkSum%103,this.addPattern(this.checksum)},e.prototype.addStop=function(){this.addPattern(this.STOP)},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(this.totalUnits+this.quietZoneLength)},e.prototype.addPattern=function(t){for(var e,o=this.characterMap[t].toString(),r=0;r<o.length;r++)e=parseInt(o.charAt(r),10),this.pattern.push(e),this.totalUnits+=e;this.checkSum+=t*this.position++},e.prototype.getNextState=function(t,e){for(var o=0;o<e.length;o++)if(this[e[o]].is(t.value,t.index))return e[o];this.invalidCharacterError(t.value.charAt(t.index))},e}(Dd),av=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{name:"Code 128 A",states:["A"]})},e}(iv),sv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{name:"Code 128 B",states:["B"]})},e}(iv),cv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{name:"Code 128 C",states:["C"]})},e}(iv),lv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{name:"Code 128",states:["C","B","A","FNC4"]})},e}(iv),hv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),ev(this,{name:"Code GS1-128",states:["FNC1","C","B"]})},e}(iv);function uv(t,e,o){return t.substring(e,e+o)}var pv=Object.assign,dv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),pv(this,{characterMap:["12121212","12121221","12122112","12122121","12211212","12211221","12212112","12212121","21121212","21121221"],START:"21",STOP:"121",checkSumType:"",checkSums:yv})},e.prototype.initValue=function(t,e){this.pattern=[],this.value=t,this.checkSumLength=0,this.width=e},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(12*(this.value.length+this.checkSumLength)+this.quietZoneLength+7)},e.prototype.addData=function(){var t=this.value;this.addPattern(this.START);for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.addCheckSum(),this.addPattern(this.STOP),this.setBaseUnit()},e.prototype.addCharacter=function(t){var e=this.characterMap[t];e||this.invalidCharacterError(t),this.addPattern(e)},e.prototype.addPattern=function(t){for(var e=0;e<t.length;e++)this.pattern.push(parseInt(t.charAt(e),10))},e.prototype.addCheckSum=function(){var t=this,e=this.checkSums[this.checkSumType].call(this.checkSums,this.value);this.checksum=e.join("");for(var o=0;o<e.length;o++)t.checkSumLength++,t.addPattern(t.characterMap[e[o]])},e}(Dd),vv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),pv(this,{name:"MSI Modulo10",checkSumType:"Modulo10"})},e}(dv),fv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),pv(this,{name:"MSI Modulo11",checkSumType:"Modulo11"})},e}(dv),mv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),pv(this,{name:"MSI Modulo10 Modulo10",checkSumType:"Modulo10Modulo10"})},e}(dv),gv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),pv(this,{name:"MSI Modulo11 Modulo10",checkSumType:"Modulo11Modulo10"})},e}(dv),yv={Modulo10:function(t){var e,o,r,n=[0,""],i=t.length%2;for(e=0;e<t.length;e++)n[(e+i)%2]+=parseInt(t.charAt(e),10);for(r=n[0],o=(2*n[1]).toString(),e=0;e<o.length;e++)r+=parseInt(o.charAt(e),10);return[(10-r%10)%10]},Modulo11:function(t){for(var e,o=0,r=t.length,n=0;n<r;n++)o+=(((r-n)%6||6)+1)*t.charAt(n);return 10!=(e=(11-o%11)%11)?[e]:[1,0]},Modulo11Modulo10:function(t){var e,o=this.Modulo11(t);return e=t+o[0],o.concat(this.Modulo10(e))},Modulo10Modulo10:function(t){var e,o=this.Modulo10(t);return e=t+o[0],o.concat(this.Modulo10(e))}},bv=Object.assign,xv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),bv(this,{name:"EAN 13",keyTable:["000000","001011","001101","001110","010011","011001","011100","010101","010110","011010"],characterMap:{digits:[[3,2,1,1],[2,2,2,1],[2,1,2,2],[1,4,1,1],[1,1,3,2],[1,2,3,1],[1,1,1,4],[1,3,1,2],[1,2,1,3],[3,1,1,2]],start:[1,1,1],middle:[1,1,1,1,1]}})},e.prototype.initValue=function(t,e,o){var r=String(t);if(12!==r.length||/\D/.test(r))throw new Error('The value of the "EAN13" encoding should be 12 symbols');this.pattern=[],this.options.height=o,this.baseUnit=e/(95+this.quietZoneLength),this.value=r,this.checksum=this.calculateChecksum(),this.leftKey=r[0],this.leftPart=r.substr(1,6),this.rightPart=r.substr(7)+this.checksum},e.prototype.addData=function(){this.addPieces(this.characterMap.start),this.addSide(this.leftPart,this.leftKey),this.addPieces(this.characterMap.middle),this.addSide(this.rightPart),this.addPieces(this.characterMap.start)},e.prototype.addSide=function(t,e){for(var o=this,r=0;r<t.length;r++)e&&parseInt(o.keyTable[e].charAt(r),10)?o.addPieces(Array.prototype.slice.call(o.characterMap.digits[t.charAt(r)]).reverse(),!0):o.addPieces(o.characterMap.digits[t.charAt(r)],!0)},e.prototype.addPieces=function(t,e){for(var o=this,r=0;r<t.length;r++)e?o.pattern.push({y1:0,y2:.95*o.options.height,width:t[r]}):o.pattern.push(t[r])},e.prototype.calculateChecksum=function(){for(var t=0,e=0,o=this.value.split("").reverse().join(""),r=0;r<o.length;r++)r%2?e+=parseInt(o.charAt(r),10):t+=parseInt(o.charAt(r),10);return(10-(3*t+e)%10)%10},e}(Dd),wv=Object.assign,_v=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),wv(this,{name:"EAN 8"})},e.prototype.initValue=function(t,e,o){if(7!==t.length||/\D/.test(t))throw new Error("Invalid value provided");this.value=t,this.options.height=o,this.checksum=this.calculateChecksum(this.value),this.leftPart=this.value.substr(0,4),this.rightPart=this.value.substr(4)+this.checksum,this.pattern=[],this.baseUnit=e/(67+this.quietZoneLength)},e}(xv),Cv={code11:Rd,code39:Kd,code39extended:$d,code93:Gd,code93extended:Yd,code128:lv,code128a:av,code128b:sv,code128c:cv};function Ov(t,e){var o=t.style.display;"canvas"===e&&(t.style.display="block");var r={width:t.clientWidth,height:t.clientHeight};return t.style.display=o,r}Cv["gs1-128"]=hv,Cv.msimod10=vv,Cv.msimod11=fv,Cv.msimod1010=mv,Cv.msimod1110=gv,Cv.postnet=Qd,Cv.ean8=_v,Cv.ean13=xv;var Sv=function(t){function e(e,o,r){void 0===r&&(r=xe),t.call(this),this.options=it({},this.options,o),this.element=e,this.onError=r,this._initElement(),this._initSurface(),this._setOptions(o),o&&Lt(o.value)&&this.redraw()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._destroySurface()},e.prototype._initElement=function(){U(this.element,"k-barcode")},e.prototype._initSurface=function(){var t=this.options,e=this.surface;e&&e.options.type===t.renderAs||(this._destroySurface(),this._initSurfaceElement(),this.surface=this._createSurface())},e.prototype._createSurface=function(){return $.drawing.Surface.create(this.surfaceElement,{type:this.options.renderAs})},e.prototype._destroySurface=function(){this.surface&&(this.surface.destroy(),this.surface=null,this._destroySurfaceElement())},e.prototype._initSurfaceElement=function(){this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.surfaceElement.style.position="relative",this.element.appendChild(this.surfaceElement))},e.prototype._destroySurfaceElement=function(){this.surfaceElement&&this.surfaceElement.parentNode&&(this.surfaceElement.parentNode.removeChild(this.surfaceElement),this.surfaceElement=null)},e.prototype.setOptions=function(t){this._setOptions(t),this._initSurface(),this.redraw()},e.prototype.redraw=function(){var t=this._getSize();this.surface.clear(),this.surface.setSize({width:t.width,height:t.height}),this.createVisual(),this.surface.draw(this.visual)},e.prototype.getSize=function(){return{width:this.element.offsetWidth,height:this.element.offsetHeight}},e.prototype._resize=function(){this.redraw()},e.prototype.createVisual=function(){this.visual=this._render()},e.prototype._render=function(){var t,e,o=this.options,r=o.value,n=o.text,i=ut(n.margin),a=this._getSize(),s=o.border||{},c=this.encoding,l=new yo(0,0,a.width,a.height).unpad(s.width).unpad(o.padding),h=l.height(),u=new $.drawing.Group;this.contentBox=l,u.append(this._getBackground(a)),n.visible&&(h-=$.drawing.util.measureText(r,{font:n.font}).height+i.top+i.bottom);try{t=c.encode(r,l.width(),h)}catch(t){return this.onError(t),u}return n.visible&&(e=r,o.checksum&&Lt(c.checksum)&&(e+=" "+c.checksum),u.append(this._getText(e))),this.barHeight=h,this._bandsGroup=this._getBands(t.pattern,t.baseUnit),u.append(this._bandsGroup),u},e.prototype.exportVisual=function(){return this._render()},e.prototype._getSize=function(){var t=Ov(this.element,this.options.renderAs),e=new $.geometry.Size(300,100);return t.width>0&&(e.width=t.width),t.height>0&&(e.height=t.height),this.options.width&&(e.width=this.options.width),this.options.height&&(e.height=this.options.height),e},e.prototype.value=function(t){if(!Lt(t))return this.options.value;this.options.value=String(t),this.redraw()},e.prototype._getBands=function(t,e){for(var o,r,n=this.contentBox,i=n.x1,a=new $.drawing.Group,s=0;s<t.length;s++){if(o=(r=at(t[s])?t[s]:{width:t[s],y1:0,y2:this.barHeight}).width*e,s%2){var c=$.geometry.Rect.fromPoints(new $.geometry.Point(i,r.y1+n.y1),new $.geometry.Point(i+o,r.y2+n.y1)),l=$.drawing.Path.fromRect(c,{fill:{color:this.options.color},stroke:null});a.append(l)}i+=o}return a},e.prototype._getBackground=function(t){var e=this.options,o=e.border||{},r=new yo(0,0,t.width,t.height).unpad(o.width/2);return $.drawing.Path.fromRect(r.toRect(),{fill:{color:e.background},stroke:{color:o.width?o.color:"",width:o.width,dashType:o.dashType}})},e.prototype._getText=function(t){var e=this.options.text,o=this._textbox=new $o(t,{font:e.font,color:e.color,align:"center",vAlign:"bottom",margin:e.margin});return o.reflow(this.contentBox),o.renderVisual(),o.visual},e.prototype._setOptions=function(t){if(this.type=(t.type||this.options.type).toLowerCase(),"upca"===this.type&&(this.type="ean13",t.value="0"+t.value),"upce"===this.type&&(this.type="ean8",t.value="0"+t.value),!Cv[this.type])throw new Error("Encoding '"+this.type+"' is not supported.");this.encoding=new Cv[this.type],this.options=it({},this.options,t)},e}($.Class);Qt(Sv,{name:"Barcode",renderAs:"svg",value:"",type:"code39",checksum:!1,width:0,height:0,color:"black",background:"white",text:{visible:!0,font:"16px Consolas, Monaco, Sans Mono, monospace, sans-serif",color:"black",margin:{top:0,bottom:0,left:0,right:0}},border:{width:0,dashType:"solid",color:"black"},padding:{top:0,bottom:0,left:0,right:0}});const zv=Sv;var Mv={width:500,height:100};const Pv=function(t,e){if(void 0===e&&(e=Mv),!t)throw new Error("Please specify barcode type to validate.");var o=t.toLowerCase(),r="";if("upca"===o?(o="ean13",r="0"):"upce"===o&&(o="ean8",r="0"),!Cv[o])throw new Error("Encoding '"+t+"' is not supported.");return function(t,e,o){return function(r){try{t.encode(o+r,e.width,e.height)}catch(t){return{valid:!1,error:t}}return{valid:!0}}}(new Cv[o],e,r)};var Vv=Object.assign;function Av(t,e){for(var o=[],r=0;r<t.length;)o.push(t.substring(r,r+e)),r+=e;return o}function jv(t,e){var o=Number(t).toString(2);return o.length<e&&(o=new Array(e-o.length+1).join(0)+o),o}function kv(t){return parseInt(t,2)}var Hv=function(t){function e(e){t.call(this),this.matrix=e,this.row=e.length-1,this.column=e.length-1,this.startColumn=this.column,this.dir=-1,this.c=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.move=function(){this.row+=this.dir*this.c,this.c^=1,this.column=this.startColumn-this.c},e.prototype.getNextCell=function(){for(var t=this;void 0!==this.matrix[this.row][this.column];)t.move(),(t.row<0||t.row>=t.matrix.length)&&(t.dir=-t.dir,t.startColumn-=8!==t.startColumn?2:3,t.column=t.startColumn,t.row=t.dir<0?t.matrix.length-1:0);return{row:this.row,column:this.column}},e.prototype.getNextRemainderCell=function(){if(this.move(),void 0===this.matrix[this.row][this.column])return{row:this.row,column:this.column}},e}($.Class),Iv=function(t){function e(e,o){t.call(this),this.dataString=e,this.version=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}($.Class),Bv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getEncodingResult=function(t,e){var o=function(t){var e,o=[],r=0,n=t;for(o.push(wf(n,cf,lf,hf,e)),e=o[0].mode,n=n.substr(o[0].modeString.length);n.length>0;){var i=wf(n,uf,pf,df,e);i.mode!==e?(e=i.mode,o.push(i),r++):o[r].modeString+=i.modeString,n=n.substr(i.modeString.length)}return o}(t),r=function(t){for(var e=0,o=0;o<t.length;o++)e+=Nv[t[o].mode].getStringBitsLength(t[o].modeString.length);return Math.ceil(e/8)}(o),n=_f(r,e),i=function(t,e){for(var o="",r=0;r<t.length;r++)o+=Nv[t[r].mode].encode(t[r].modeString,e);return o}(o,n);return new Iv(i,n)},e}($.Class),Lv=function(t){function e(){t.call(this),this.initProperties()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){Vv(this,{modeIndicator:"",bitsInCharacterCount:[]})},e.prototype.getVersionIndex=function(t){return t<10?0:t>26?2:1},e.prototype.getBitsCharacterCount=function(t){return this.bitsInCharacterCount[this.getVersionIndex(t||40)]},e.prototype.getModeCountString=function(t,e){return this.modeIndicator+jv(t,this.getBitsCharacterCount(e))},e.prototype.encode=function(){},e.prototype.getStringBitsLength=function(){},e.prototype.getValue=function(){},e}($.Class),Tv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Vv(this,{bitsInCharacterCount:[10,12,14],modeIndicator:"0001"})},e.prototype.getValue=function(t){return parseInt(t,10)},e.prototype.encode=function(t,e){var o,r=Av(t,3),n=this.getModeCountString(t.length,e);for(o=0;o<r.length-1;o++)n+=jv(r[o],10);return n+jv(r[o],1+3*r[o].length)},e.prototype.getStringBitsLength=function(t,e){var o=t%3;return 4+this.getBitsCharacterCount(e)+10*Math.floor(t/3)+3*o+(0===o?0:1)},e}(Lv),Ev=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Vv(this,{characters:{0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,G:16,H:17,I:18,J:19,K:20,L:21,M:22,N:23,O:24,P:25,Q:26,R:27,S:28,T:29,U:30,V:31,W:32,X:33,Y:34,Z:35," ":36,$:37,"%":38,"*":39,"+":40,"-":41,".":42,"/":43,":":44},bitsInCharacterCount:[9,11,13],modeIndicator:"0010"})},e.prototype.getValue=function(t){return this.characters[t]},e.prototype.encode=function(t,e){var o,r=Av(t,2),n=this.getModeCountString(t.length,e);for(o=0;o<r.length-1;o++)n+=jv(45*this.getValue(r[o].charAt(0))+this.getValue(r[o].charAt(1)),11);return n+jv(2===r[o].length?45*this.getValue(r[o].charAt(0))+this.getValue(r[o].charAt(1)):this.getValue(r[o].charAt(0)),1+5*r[o].length)},e.prototype.getStringBitsLength=function(t,e){return 4+this.getBitsCharacterCount(e)+11*Math.floor(t/2)+t%2*6},e}(Lv),Dv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Vv(this,{bitsInCharacterCount:[8,16,16],modeIndicator:"0100"})},e.prototype.getValue=function(t){var e=t.charCodeAt(0);if(e<=127||160<=e&&e<=255)return e;throw new Error('Unsupported character in QR Code: "'+t+'".')},e.prototype.encode=function(t,e){for(var o=this.getModeCountString(t.length,e),r=0;r<t.length;r++)o+=jv(this.getValue(t.charAt(r)),8);return o},e.prototype.getStringBitsLength=function(t,e){return 4+this.getBitsCharacterCount(e)+8*t},e}(Lv),Nv={};Nv.numeric=new Tv,Nv.alphanumeric=new Ev,Nv.byte=new Dv;var Rv=function(t){function e(){t.call(this),this.initProperties(),this.mode=Nv[this.encodingMode]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){Vv(this,{encodingMode:"byte",utfBOM:"111011111011101110111111",initialModeCountStringLength:20,ranges:[128,2048,65536,2097152,67108864]})},e.prototype.getEncodingResult=function(t,e){var o=this.encode(t),r=_f(this.getDataCodewordsCount(o),e),n=this.mode.getModeCountString(o.length/8,r)+o;return new Iv(n,r)},e.prototype.getDataCodewordsCount=function(t){var e=t.length;return Math.ceil((this.initialModeCountStringLength+e)/8)},e.prototype.encode=function(t){for(var e=this.utfBOM,o=0;o<t.length;o++)e+=this.encodeCharacter(t.charCodeAt(o));return e},e.prototype.encodeCharacter=function(t){var e=this.getBytesCount(t),o=e-1,r="";if(1===e)r=jv(t,8);else{for(var n=8-e,i=0;i<o;i++)r=jv(t>>6*i&63|128,8)+r;r=(t>>6*o|255>>n<<n).toString(2)+r}return r},e.prototype.getBytesCount=function(t){for(var e=this.ranges,o=0;o<e.length;o++)if(t<e[o])return o+1},e}($.Class),Fv=[{L:{groups:[[1,19]],totalDataCodewords:19,errorCodewordsPerBlock:7},M:{groups:[[1,16]],totalDataCodewords:16,errorCodewordsPerBlock:10},Q:{groups:[[1,13]],totalDataCodewords:13,errorCodewordsPerBlock:13},H:{groups:[[1,9]],totalDataCodewords:9,errorCodewordsPerBlock:17}},{L:{groups:[[1,34]],totalDataCodewords:34,errorCodewordsPerBlock:10},M:{groups:[[1,28]],totalDataCodewords:28,errorCodewordsPerBlock:16},Q:{groups:[[1,22]],totalDataCodewords:22,errorCodewordsPerBlock:22},H:{groups:[[1,16]],totalDataCodewords:16,errorCodewordsPerBlock:28}},{L:{groups:[[1,55]],totalDataCodewords:55,errorCodewordsPerBlock:15},M:{groups:[[1,44]],totalDataCodewords:44,errorCodewordsPerBlock:26},Q:{groups:[[2,17]],totalDataCodewords:34,errorCodewordsPerBlock:18},H:{groups:[[2,13]],totalDataCodewords:26,errorCodewordsPerBlock:22}},{L:{groups:[[1,80]],totalDataCodewords:80,errorCodewordsPerBlock:20},M:{groups:[[2,32]],totalDataCodewords:64,errorCodewordsPerBlock:18},Q:{groups:[[2,24]],totalDataCodewords:48,errorCodewordsPerBlock:26},H:{groups:[[4,9]],totalDataCodewords:36,errorCodewordsPerBlock:16}},{L:{groups:[[1,108]],totalDataCodewords:108,errorCodewordsPerBlock:26},M:{groups:[[2,43]],totalDataCodewords:86,errorCodewordsPerBlock:24},Q:{groups:[[2,15],[2,16]],totalDataCodewords:62,errorCodewordsPerBlock:18},H:{groups:[[2,11],[2,12]],totalDataCodewords:46,errorCodewordsPerBlock:22}},{L:{groups:[[2,68]],totalDataCodewords:136,errorCodewordsPerBlock:18},M:{groups:[[4,27]],totalDataCodewords:108,errorCodewordsPerBlock:16},Q:{groups:[[4,19]],totalDataCodewords:76,errorCodewordsPerBlock:24},H:{groups:[[4,15]],totalDataCodewords:60,errorCodewordsPerBlock:28}},{L:{groups:[[2,78]],totalDataCodewords:156,errorCodewordsPerBlock:20},M:{groups:[[4,31]],totalDataCodewords:124,errorCodewordsPerBlock:18},Q:{groups:[[2,14],[4,15]],totalDataCodewords:88,errorCodewordsPerBlock:18},H:{groups:[[4,13],[1,14]],totalDataCodewords:66,errorCodewordsPerBlock:26}},{L:{groups:[[2,97]],totalDataCodewords:194,errorCodewordsPerBlock:24},M:{groups:[[2,38],[2,39]],totalDataCodewords:154,errorCodewordsPerBlock:22},Q:{groups:[[4,18],[2,19]],totalDataCodewords:110,errorCodewordsPerBlock:22},H:{groups:[[4,14],[2,15]],totalDataCodewords:86,errorCodewordsPerBlock:26}},{L:{groups:[[2,116]],totalDataCodewords:232,errorCodewordsPerBlock:30},M:{groups:[[3,36],[2,37]],totalDataCodewords:182,errorCodewordsPerBlock:22},Q:{groups:[[4,16],[4,17]],totalDataCodewords:132,errorCodewordsPerBlock:20},H:{groups:[[4,12],[4,13]],totalDataCodewords:100,errorCodewordsPerBlock:24}},{L:{groups:[[2,68],[2,69]],totalDataCodewords:274,errorCodewordsPerBlock:18},M:{groups:[[4,43],[1,44]],totalDataCodewords:216,errorCodewordsPerBlock:26},Q:{groups:[[6,19],[2,20]],totalDataCodewords:154,errorCodewordsPerBlock:24},H:{groups:[[6,15],[2,16]],totalDataCodewords:122,errorCodewordsPerBlock:28}},{L:{groups:[[4,81]],totalDataCodewords:324,errorCodewordsPerBlock:20},M:{groups:[[1,50],[4,51]],totalDataCodewords:254,errorCodewordsPerBlock:30},Q:{groups:[[4,22],[4,23]],totalDataCodewords:180,errorCodewordsPerBlock:28},H:{groups:[[3,12],[8,13]],totalDataCodewords:140,errorCodewordsPerBlock:24}},{L:{groups:[[2,92],[2,93]],totalDataCodewords:370,errorCodewordsPerBlock:24},M:{groups:[[6,36],[2,37]],totalDataCodewords:290,errorCodewordsPerBlock:22},Q:{groups:[[4,20],[6,21]],totalDataCodewords:206,errorCodewordsPerBlock:26},H:{groups:[[7,14],[4,15]],totalDataCodewords:158,errorCodewordsPerBlock:28}},{L:{groups:[[4,107]],totalDataCodewords:428,errorCodewordsPerBlock:26},M:{groups:[[8,37],[1,38]],totalDataCodewords:334,errorCodewordsPerBlock:22},Q:{groups:[[8,20],[4,21]],totalDataCodewords:244,errorCodewordsPerBlock:24},H:{groups:[[12,11],[4,12]],totalDataCodewords:180,errorCodewordsPerBlock:22}},{L:{groups:[[3,115],[1,116]],totalDataCodewords:461,errorCodewordsPerBlock:30},M:{groups:[[4,40],[5,41]],totalDataCodewords:365,errorCodewordsPerBlock:24},Q:{groups:[[11,16],[5,17]],totalDataCodewords:261,errorCodewordsPerBlock:20},H:{groups:[[11,12],[5,13]],totalDataCodewords:197,errorCodewordsPerBlock:24}},{L:{groups:[[5,87],[1,88]],totalDataCodewords:523,errorCodewordsPerBlock:22},M:{groups:[[5,41],[5,42]],totalDataCodewords:415,errorCodewordsPerBlock:24},Q:{groups:[[5,24],[7,25]],totalDataCodewords:295,errorCodewordsPerBlock:30},H:{groups:[[11,12],[7,13]],totalDataCodewords:223,errorCodewordsPerBlock:24}},{L:{groups:[[5,98],[1,99]],totalDataCodewords:589,errorCodewordsPerBlock:24},M:{groups:[[7,45],[3,46]],totalDataCodewords:453,errorCodewordsPerBlock:28},Q:{groups:[[15,19],[2,20]],totalDataCodewords:325,errorCodewordsPerBlock:24},H:{groups:[[3,15],[13,16]],totalDataCodewords:253,errorCodewordsPerBlock:30}},{L:{groups:[[1,107],[5,108]],totalDataCodewords:647,errorCodewordsPerBlock:28},M:{groups:[[10,46],[1,47]],totalDataCodewords:507,errorCodewordsPerBlock:28},Q:{groups:[[1,22],[15,23]],totalDataCodewords:367,errorCodewordsPerBlock:28},H:{groups:[[2,14],[17,15]],totalDataCodewords:283,errorCodewordsPerBlock:28}},{L:{groups:[[5,120],[1,121]],totalDataCodewords:721,errorCodewordsPerBlock:30},M:{groups:[[9,43],[4,44]],totalDataCodewords:563,errorCodewordsPerBlock:26},Q:{groups:[[17,22],[1,23]],totalDataCodewords:397,errorCodewordsPerBlock:28},H:{groups:[[2,14],[19,15]],totalDataCodewords:313,errorCodewordsPerBlock:28}},{L:{groups:[[3,113],[4,114]],totalDataCodewords:795,errorCodewordsPerBlock:28},M:{groups:[[3,44],[11,45]],totalDataCodewords:627,errorCodewordsPerBlock:26},Q:{groups:[[17,21],[4,22]],totalDataCodewords:445,errorCodewordsPerBlock:26},H:{groups:[[9,13],[16,14]],totalDataCodewords:341,errorCodewordsPerBlock:26}},{L:{groups:[[3,107],[5,108]],totalDataCodewords:861,errorCodewordsPerBlock:28},M:{groups:[[3,41],[13,42]],totalDataCodewords:669,errorCodewordsPerBlock:26},Q:{groups:[[15,24],[5,25]],totalDataCodewords:485,errorCodewordsPerBlock:30},H:{groups:[[15,15],[10,16]],totalDataCodewords:385,errorCodewordsPerBlock:28}},{L:{groups:[[4,116],[4,117]],totalDataCodewords:932,errorCodewordsPerBlock:28},M:{groups:[[17,42]],totalDataCodewords:714,errorCodewordsPerBlock:26},Q:{groups:[[17,22],[6,23]],totalDataCodewords:512,errorCodewordsPerBlock:28},H:{groups:[[19,16],[6,17]],totalDataCodewords:406,errorCodewordsPerBlock:30}},{L:{groups:[[2,111],[7,112]],totalDataCodewords:1006,errorCodewordsPerBlock:28},M:{groups:[[17,46]],totalDataCodewords:782,errorCodewordsPerBlock:28},Q:{groups:[[7,24],[16,25]],totalDataCodewords:568,errorCodewordsPerBlock:30},H:{groups:[[34,13]],totalDataCodewords:442,errorCodewordsPerBlock:24}},{L:{groups:[[4,121],[5,122]],totalDataCodewords:1094,errorCodewordsPerBlock:30},M:{groups:[[4,47],[14,48]],totalDataCodewords:860,errorCodewordsPerBlock:28},Q:{groups:[[11,24],[14,25]],totalDataCodewords:614,errorCodewordsPerBlock:30},H:{groups:[[16,15],[14,16]],totalDataCodewords:464,errorCodewordsPerBlock:30}},{L:{groups:[[6,117],[4,118]],totalDataCodewords:1174,errorCodewordsPerBlock:30},M:{groups:[[6,45],[14,46]],totalDataCodewords:914,errorCodewordsPerBlock:28},Q:{groups:[[11,24],[16,25]],totalDataCodewords:664,errorCodewordsPerBlock:30},H:{groups:[[30,16],[2,17]],totalDataCodewords:514,errorCodewordsPerBlock:30}},{L:{groups:[[8,106],[4,107]],totalDataCodewords:1276,errorCodewordsPerBlock:26},M:{groups:[[8,47],[13,48]],totalDataCodewords:1e3,errorCodewordsPerBlock:28},Q:{groups:[[7,24],[22,25]],totalDataCodewords:718,errorCodewordsPerBlock:30},H:{groups:[[22,15],[13,16]],totalDataCodewords:538,errorCodewordsPerBlock:30}},{L:{groups:[[10,114],[2,115]],totalDataCodewords:1370,errorCodewordsPerBlock:28},M:{groups:[[19,46],[4,47]],totalDataCodewords:1062,errorCodewordsPerBlock:28},Q:{groups:[[28,22],[6,23]],totalDataCodewords:754,errorCodewordsPerBlock:28},H:{groups:[[33,16],[4,17]],totalDataCodewords:596,errorCodewordsPerBlock:30}},{L:{groups:[[8,122],[4,123]],totalDataCodewords:1468,errorCodewordsPerBlock:30},M:{groups:[[22,45],[3,46]],totalDataCodewords:1128,errorCodewordsPerBlock:28},Q:{groups:[[8,23],[26,24]],totalDataCodewords:808,errorCodewordsPerBlock:30},H:{groups:[[12,15],[28,16]],totalDataCodewords:628,errorCodewordsPerBlock:30}},{L:{groups:[[3,117],[10,118]],totalDataCodewords:1531,errorCodewordsPerBlock:30},M:{groups:[[3,45],[23,46]],totalDataCodewords:1193,errorCodewordsPerBlock:28},Q:{groups:[[4,24],[31,25]],totalDataCodewords:871,errorCodewordsPerBlock:30},H:{groups:[[11,15],[31,16]],totalDataCodewords:661,errorCodewordsPerBlock:30}},{L:{groups:[[7,116],[7,117]],totalDataCodewords:1631,errorCodewordsPerBlock:30},M:{groups:[[21,45],[7,46]],totalDataCodewords:1267,errorCodewordsPerBlock:28},Q:{groups:[[1,23],[37,24]],totalDataCodewords:911,errorCodewordsPerBlock:30},H:{groups:[[19,15],[26,16]],totalDataCodewords:701,errorCodewordsPerBlock:30}},{L:{groups:[[5,115],[10,116]],totalDataCodewords:1735,errorCodewordsPerBlock:30},M:{groups:[[19,47],[10,48]],totalDataCodewords:1373,errorCodewordsPerBlock:28},Q:{groups:[[15,24],[25,25]],totalDataCodewords:985,errorCodewordsPerBlock:30},H:{groups:[[23,15],[25,16]],totalDataCodewords:745,errorCodewordsPerBlock:30}},{L:{groups:[[13,115],[3,116]],totalDataCodewords:1843,errorCodewordsPerBlock:30},M:{groups:[[2,46],[29,47]],totalDataCodewords:1455,errorCodewordsPerBlock:28},Q:{groups:[[42,24],[1,25]],totalDataCodewords:1033,errorCodewordsPerBlock:30},H:{groups:[[23,15],[28,16]],totalDataCodewords:793,errorCodewordsPerBlock:30}},{L:{groups:[[17,115]],totalDataCodewords:1955,errorCodewordsPerBlock:30},M:{groups:[[10,46],[23,47]],totalDataCodewords:1541,errorCodewordsPerBlock:28},Q:{groups:[[10,24],[35,25]],totalDataCodewords:1115,errorCodewordsPerBlock:30},H:{groups:[[19,15],[35,16]],totalDataCodewords:845,errorCodewordsPerBlock:30}},{L:{groups:[[17,115],[1,116]],totalDataCodewords:2071,errorCodewordsPerBlock:30},M:{groups:[[14,46],[21,47]],totalDataCodewords:1631,errorCodewordsPerBlock:28},Q:{groups:[[29,24],[19,25]],totalDataCodewords:1171,errorCodewordsPerBlock:30},H:{groups:[[11,15],[46,16]],totalDataCodewords:901,errorCodewordsPerBlock:30}},{L:{groups:[[13,115],[6,116]],totalDataCodewords:2191,errorCodewordsPerBlock:30},M:{groups:[[14,46],[23,47]],totalDataCodewords:1725,errorCodewordsPerBlock:28},Q:{groups:[[44,24],[7,25]],totalDataCodewords:1231,errorCodewordsPerBlock:30},H:{groups:[[59,16],[1,17]],totalDataCodewords:961,errorCodewordsPerBlock:30}},{L:{groups:[[12,121],[7,122]],totalDataCodewords:2306,errorCodewordsPerBlock:30},M:{groups:[[12,47],[26,48]],totalDataCodewords:1812,errorCodewordsPerBlock:28},Q:{groups:[[39,24],[14,25]],totalDataCodewords:1286,errorCodewordsPerBlock:30},H:{groups:[[22,15],[41,16]],totalDataCodewords:986,errorCodewordsPerBlock:30}},{L:{groups:[[6,121],[14,122]],totalDataCodewords:2434,errorCodewordsPerBlock:30},M:{groups:[[6,47],[34,48]],totalDataCodewords:1914,errorCodewordsPerBlock:28},Q:{groups:[[46,24],[10,25]],totalDataCodewords:1354,errorCodewordsPerBlock:30},H:{groups:[[2,15],[64,16]],totalDataCodewords:1054,errorCodewordsPerBlock:30}},{L:{groups:[[17,122],[4,123]],totalDataCodewords:2566,errorCodewordsPerBlock:30},M:{groups:[[29,46],[14,47]],totalDataCodewords:1992,errorCodewordsPerBlock:28},Q:{groups:[[49,24],[10,25]],totalDataCodewords:1426,errorCodewordsPerBlock:30},H:{groups:[[24,15],[46,16]],totalDataCodewords:1096,errorCodewordsPerBlock:30}},{L:{groups:[[4,122],[18,123]],totalDataCodewords:2702,errorCodewordsPerBlock:30},M:{groups:[[13,46],[32,47]],totalDataCodewords:2102,errorCodewordsPerBlock:28},Q:{groups:[[48,24],[14,25]],totalDataCodewords:1502,errorCodewordsPerBlock:30},H:{groups:[[42,15],[32,16]],totalDataCodewords:1142,errorCodewordsPerBlock:30}},{L:{groups:[[20,117],[4,118]],totalDataCodewords:2812,errorCodewordsPerBlock:30},M:{groups:[[40,47],[7,48]],totalDataCodewords:2216,errorCodewordsPerBlock:28},Q:{groups:[[43,24],[22,25]],totalDataCodewords:1582,errorCodewordsPerBlock:30},H:{groups:[[10,15],[67,16]],totalDataCodewords:1222,errorCodewordsPerBlock:30}},{L:{groups:[[19,118],[6,119]],totalDataCodewords:2956,errorCodewordsPerBlock:30},M:{groups:[[18,47],[31,48]],totalDataCodewords:2334,errorCodewordsPerBlock:28},Q:{groups:[[34,24],[34,25]],totalDataCodewords:1666,errorCodewordsPerBlock:30},H:{groups:[[20,15],[61,16]],totalDataCodewords:1276,errorCodewordsPerBlock:30}}],Uv="0000",Kv="numeric",qv="alphanumeric",$v="byte",Xv={1:0},Gv={0:1},Yv={15:20,16:20,18:24,19:24,22:20,24:22,26:24,28:20,30:20,31:24,32:28,33:24,36:18,37:22,39:20,40:24},Wv=[1,0,1,1,1],Zv=[1,0,1],Qv={L:"01",M:"00",Q:"11",H:"10"},Jv=["11101100","00010001"],tf=93,ef=[function(t,e){return(t+e)%2==0},function(t,e){return t%2==0},function(t,e){return e%3==0},function(t,e){return(t+e)%3==0},function(t,e){return(Math.floor(t/2)+Math.floor(e/3))%2==0},function(t,e){return t*e%2+t*e%3==0},function(t,e){return(t*e%2+t*e%3)%2==0},function(t,e){return((t+e)%2+t*e%3)%2==0}],of=/^\d+/,rf="A-Z0-9 $%*+./:-",nf=new RegExp("^[A-Z $%*+./:-]+"),af=new RegExp("^["+rf+"]+"),sf=new RegExp("^[^"+rf+"]+"),cf=8,lf=5,hf=8,uf=17,pf=9,df=16,vf=[[1,0],[1,25,0]];function ff(t,e,o,r){for(var n=0;n<t.length;n++)t[n][o][r]=e}function mf(t,e,o,r){for(var n=0;n<ef.length;n++)t[n][o][r]=ef[n](o,r)?1^e:parseInt(e,10)}function gf(t,e){for(var o=[],r=t.length-2;r>=0;r--)o[r]=t[r]^e[r];return o}function yf(t,e){for(var o=[],r=0;r<t.length;r++)for(var n=0;n<e.length;n++)void 0===o[r+n]?o[r+n]=(t[r]+(e[n]>=0?e[n]:0))%255:o[r+n]=Xv[Gv[o[r+n]]^Gv[(t[r]+e[n])%255]];return o}function bf(t,e){var o=[],r=t.length-1;do{o[r]=Gv[(t[r]+e)%255],r--}while(void 0!==t[r]);return o}function xf(t,e){var o,r,n=vf[e-1],i=new Array(e).concat(t),a=new Array(i.length-n.length).concat(n),s=t.length,c=[];for(r=0;r<s;r++)o=bf(a,Xv[i[i.length-1]]),a.splice(0,1),i=gf(o,i);for(r=i.length-1;r>=0;r--)c[e-1-r]=jv(i[r],8);return c}function wf(t,e,o,r,n){var i,a,s=of.exec(t),c=s?s[0]:"",l=nf.exec(t),h=l?l[0]:"",u=af.exec(t),p=u?u[0]:"";return c&&(c.length>=e||t.length===c.length||c.length>=o&&!af.test(t.charAt(c.length)))?(i=Kv,a=c):p&&(t.length===p.length||p.length>=r||n===qv)?(i=qv,a=c||h):(i=$v,a=p?p+sf.exec(t.substring(p.length))[0]:sf.exec(t)[0]),{mode:i,modeString:a}}function _f(t,e){var o=0,r=Fv.length-1,n=Math.floor(Fv.length/2);do{t<Fv[n][e].totalDataCodewords?r=n:o=n,n=o+Math.floor((r-o)/2)}while(r-o>1);return t<=Fv[o][e].totalDataCodewords?n+1:r+1}function Cf(t,e,o){var r=kv(e),n=e.length-1,i=t<<n,a=jv(t,o-n),s=function(t,e){var o=e.toString(2).length,r=t.toString(2).length,n=t;do{r=(n^=e<<r-o).toString(2).length}while(r>=o);return n}(i,r);return a+jv(s,n)}function Of(t,e){return parseInt(t.charAt(e),10)}function Sf(t,e){var o,r,n=t[0],i=0,a=e.length;for(o=0,r=8;o<=8;o++)6!==o&&ff(t,Of(e,a-1-i++),o,r);for(o=8,r=7;r>=0;r--)6!==r&&ff(t,Of(e,a-1-i++),o,r);for(i=0,r=n.length-1,o=8;r>=n.length-8;r--)ff(t,Of(e,a-1-i++),o,r);for(ff(t,1,n.length-8,8),o=n.length-7,r=8;o<n.length;o++)ff(t,Of(e,a-1-i++),o,r)}function zf(t,e){for(var o,r,n,i=t[0].length,a=i-11,s=i-11,c=0;c<e.length;c++)o=Math.floor(c/3),r=c%3,ff(t,n=Of(e,e.length-c-1),0+o,a+r),ff(t,n,s+r,0+o)}function Mf(t,e,o,r){for(var n,i=e.length+2,a=e.length+1,s=0;s<e.length;s++)for(var c=s;c<i-s;c++)ff(t,n=e[s],o+c,r+s),ff(t,n,o+s,r+c),ff(t,n,o+a-c,r+a-s),ff(t,n,o+a-s,r+a-c)}function Pf(t,e,o,r){var n=o,i=r,a=t[0];do{ff(t,0,n,r),ff(t,0,o,i),n+=e[0],i+=e[1]}while(n>=0&&n<a.length)}function Vf(t,e,o,r,n){e[t][r]=(e[t][r]<<1^n)%128,e[t][r]===tf&&(o[t]+=40)}function Af(t,e,o,r,n,i){o[t][i]===r?n[t][i]++:(o[t][i]=r,n[t][i]>=5&&(e[t]+=3+n[t][i]-5),n[t][i]=1)}function jf(t,e){var o=Math.floor(t/e*100),r=o%5,n=Math.abs(o-r-50),i=Math.abs(o+5-r-50);return 10*Math.min(n/5,i/5)}function kf(t,e,o){var r=function(t){return t&&t.toLowerCase().indexOf("utf_8")>=0?new Rv:new Bv}(o),n=r.getEncodingResult(t,e),i=n.version,a=Fv[i-1][e],s=function(t,e){for(var o,r,n,i,a,s=0,c=[],l=[],h=e.groups,u=0;u<h.length;u++){n=h[u][0];for(var p=0;p<n;p++){r=h[u][1],o=[],i=[];for(var d=1;d<=r;d++)a=t.substring(s,s+8),o.push(a),i[r-d]=kv(a),s+=8;c.push(o),l.push(xf(i,e.errorCodewordsPerBlock))}}return[c,l]}(function(t,e){for(var o=8*e,r=0,n=0,i=t;i.length<o&&r<4;)i+=Uv.charAt(r++);for(i.length%8!=0&&(i+=new Array(9-i.length%8).join("0"));i.length<o;)i+=Jv[n],n^=1;return i}(n.dataString,a.totalDataCodewords),a),c=function(t){for(var e=[],o=17+4*t,r=0;r<ef.length;r++){e[r]=new Array(o);for(var n=0;n<o;n++)e[r][n]=new Array(o)}return e}(i);!function(t){var e=t[0].length;Mf(t,Wv,0,0),Pf(t,[-1,-1],7,7),Mf(t,Wv,e-7,0),Pf(t,[1,-1],e-8,7),Mf(t,Wv,0,e-7),Pf(t,[-1,1],7,e-8)}(c),function(t,e){if(!(e<2)){var o,r,n=t[0],i=n.length,a=Math.floor(e/7),s=[6],c=0;for((o=Yv[e])?r=(i-13-o)/a:o=r=(i-13)/(a+1),s.push(s[c++]+o);s[c]+r<i;)s.push(s[c++]+r);for(var l=0;l<s.length;l++)for(var h=0;h<s.length;h++)void 0===n[s[l]][s[h]]&&Mf(t,Zv,s[l]-2,s[h]-2)}}(c,i),function(t){for(var e=1,o=t[0].length,r=8;r<o-8;r++)ff(t,e,6,r),ff(t,e,r,6),e^=1}(c),i>=7&&zf(c,jv(0,18)),Sf(c,jv(0,15)),function(t,e){for(var o,r,n,i=new Hv(t[0]),a=0;a<e.length;a++)for(o=e[a],r=0;o.length>0;){for(var s=0;s<o.length;s++)for(var c=0;c<8;c++)n=i.getNextCell(),mf(t,o[s][r].charAt(c),n.row,n.column);for(r++;o[0]&&r===o[0].length;)o.splice(0,1)}for(;n=i.getNextRemainderCell();)mf(t,0,n.row,n.column)}(c,s);var l=function(t){var e,o,r=[],n=[],i=[],a=[],s=[],c=t[0].length;for(o=0;o<t.length;o++)r[o]=0,i[o]=0,s[o]=[0,0],a[o]=[0,0],n[o]=[];for(var l=0;l<c;l++)for(var h=0;h<c;h++)for(var u=0;u<t.length;u++)e=t[u],i[u]+=parseInt(e[l][h],10),n[u][0]===e[l][h]&&l+1<c&&h-1>=0&&e[l+1][h]===n[u][0]&&e[l+1][h-1]===n[u][0]&&(r[u]+=3),Vf(u,a,r,0,e[l][h]),Vf(u,a,r,1,e[h][l]),Af(u,r,n,e[l][h],s,0),Af(u,r,n,e[h][l],s,1);var p,d=c*c,v=Number.MAX_VALUE;for(o=0;o<r.length;o++)r[o]+=jf(i[o],d),r[o]<v&&(v=r[o],p=o);return p}(c),h=c[l];return i>=7&&zf([h],function(t){return Cf(t,"1111100100101",18)}(i)),Sf([h],function(t){var e,o="";if(0===kv(t))return"101010000010010";e=Cf(kv(t),"10100110111",15);for(var r=0;r<e.length;r++)o+=e.charAt(r)^"101010000010010".charAt(r);return o}(Qv[e]+jv(l,3))),h}!function(){var t,e;for(e=1;e<255;e++)(t=2*Gv[e-1])>255&&(t^=285),Gv[e]=t,Xv[t]=e;t=2*Gv[e-1]^285,Gv[e]=t,Gv[-1]=0}(),function(){for(var t=2;t<=68;t++){var e=vf[t-1],o=[t,0];vf[t]=yf(e,o)}}();var Hf=Math.round,If=[[0,1],[1,1],[1,2],[2,2],[2,1],[3,1],[3,0],[2,0],[2,-1],[1,-1],[1,0]],Bf=[[0,1],[1,1],[1,0]],Lf=function(t){function e(e,o,r){void 0===r&&(r=xe),t.call(this),this.options=it({},this.options,o),this.element=e,this.wrapper=this.element,this.onError=r,this._initElement(),this._initSurface(),this.setOptions(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._destroySurface()},e.prototype._initElement=function(){U(this.element,"k-qrcode")},e.prototype._initSurface=function(){var t=this.options,e=this.surface;e&&e.options.type===t.renderAs||(this._destroySurface(),this._initSurfaceElement(),this.surface=this._createSurface())},e.prototype._createSurface=function(){return $.drawing.Surface.create(this.surfaceElement,{type:this.options.renderAs})},e.prototype._destroySurface=function(){this.surface&&(this.surface.destroy(),this.surface=null,this._destroySurfaceElement())},e.prototype._initSurfaceElement=function(){this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.surfaceElement.style.position="relative",this.element.appendChild(this.surfaceElement))},e.prototype._destroySurfaceElement=function(){this.surfaceElement&&this.surfaceElement.parentNode&&(this.surfaceElement.parentNode.removeChild(this.surfaceElement),this.surfaceElement=null)},e.prototype.redraw=function(){var t=this._getSize();this.surface.clear(),this.surface.setSize({width:t,height:t}),this.createVisual(),this.surface.draw(this.visual)},e.prototype.getSize=function(){var t=this.element,e=t.clientWidth,o=t.clientHeight,r={width:0,height:0};return e>0&&(r.width=e),o&&(r.height=o),r},e.prototype._resize=function(){this.redraw()},e.prototype.createVisual=function(){this.visual=this._render()},e.prototype.exportVisual=function(){return this._render()},e.prototype._render=function(){var t,e,o,r,n,i=this._value,a=this.options.border||{},s=this.options.padding||0,c=a.width||0;a.width=c;var l=new $.drawing.Group;try{i&&(o=kf(i,this.options.errorCorrection,this.options.encoding),n=(r=this._getSize())-2*(c+s),t=this._calculateBaseUnit(n,o.length),e=c+s+(n-o.length*t)/2,l.append(this._renderBackground(r,a)),l.append(this._renderMatrix(o,t,e)),this._hasCustomLogo()?l.append(this._renderLogo(r,t)):this._isSwiss()&&l.append(this._renderSwissCode(r,t)))}catch(t){this.onError(t)}return l},e.prototype._renderLogo=function(t,e){var o,r=Hf(t/2),n=this._getLogoSize(7*e),i=this.options.overlay.imageUrl,a={x:r-n.width/2,y:r-n.height/2};return o=new $.geometry.Rect(new $.geometry.Point(a.x,a.y),new $.geometry.Size(n.width,n.height)),new $.drawing.Image(i,o)},e.prototype._renderSwissCode=function(t,e){var o=this._getLogoSize(7*e),r=(o=Math.max(o.width,o.height))/4,n=r/2,i=t/2,a={},s=new $.drawing.Group;return a.x=a.y=Math.ceil(i-e-o/2),s.append(this._renderShape(a,Math.ceil(o+2*e),Bf,"#fff")),a.x=a.y=i-o/2,s.append(this._renderShape(a,o,Bf,this.options.color)),a.x=i+n-o/2,a.y=i+n+r-o/2,s.append(this._renderShape(a,r,If,"#fff")),s},e.prototype._renderShape=function(t,e,o,r){var n=new $.drawing.MultiPath({fill:{color:r},stroke:null});n.moveTo(t.x,t.y);for(var i=0;i<o.length;i++)n.lineTo(t.x+e*o[i][0],t.y+e*o[i][1]);return n.close(),n},e.prototype._getSize=function(){var t;if(this.options.size)t=parseInt(this.options.size,10);else{var e=Ov(this.element,this.options.renderAs),o=Math.min(e.width,e.height);t=o>0?o:200}return t},e.prototype._calculateBaseUnit=function(t,e){var o=Math.floor(t/e);if(o<1){var r=Math.ceil(1*e);this.onError(new Error("Insufficient size for QR Code: the current size is "+t+"px and the minimum size is "+r+"px."))}else o*e>=t&&o-1>=1&&o--;return o},e.prototype._renderMatrix=function(t,e,o){for(var r=new $.drawing.MultiPath({fill:{color:this.options.color},stroke:null}),n=0;n<t.length;n++)for(var i=o+n*e,a=0;a<t.length;){for(;0===t[n][a]&&a<t.length;)a++;if(a<t.length){for(var s=a;1===t[n][a];)a++;var c=Hf(o+s*e),l=Hf(i),h=Hf(o+a*e),u=Hf(i+e);r.moveTo(c,l).lineTo(c,u).lineTo(h,u).lineTo(h,l).close()}}return r},e.prototype._renderBackground=function(t,e){var o=new yo(0,0,t,t).unpad(e.width/2);return $.drawing.Path.fromRect(o.toRect(),{fill:{color:this.options.background},stroke:{color:e.color,width:e.width}})},e.prototype.setOptions=function(t){var e=t||{};this.options=Vv(this.options,e),void 0!==t.value&&(this._value=String(this.options.value)),this._initSurface(),this.redraw()},e.prototype.value=function(t){if(void 0===t)return this._value;this._value=String(t),this.redraw()},e.prototype._hasCustomLogo=function(){return Boolean(this.options.overlay.imageUrl)},e.prototype._isSwiss=function(){return"swiss"===this.options.overlay.type},e.prototype._getLogoSize=function(t){var e=this.options.overlay.width,o=this.options.overlay.height;return e||o?e&&!o?o=e:!e&&o&&(e=o):e=o=t,{width:e,height:o}},e}($.Class);Qt(Lf,{name:"QRCode",renderAs:"svg",encoding:"ISO_8859_1",value:"",errorCorrection:"L",background:"#fff",color:"#000",size:"",padding:0,border:{color:"",width:0},overlay:{type:"image",imageUrl:"",width:0,height:0}});const Tf=Lf,Ef=function(t){return void 0===t&&(t="ISO_8859_1"),function(e){try{kf(e,"L",t)}catch(t){return{valid:!1,error:t}}return{valid:!0}}};var Df={WGS84:{a:6378137,b:6356752.314245179,f:.0033528106647474805,e:.08181919084262149}};function Nf(t){return t*t}var Rf=Math,Ff=Rf.abs,Uf=Rf.atan,Kf=Rf.atan2,qf=Rf.cos,$f=Rf.sin,Xf=Rf.tan,Gf=function(t){function e(e,o){t.call(this),this.initProperties(),1===arguments.length?(this.lat=e[0],this.lng=e[1]):(this.lat=e,this.lng=o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){it(this,{DISTANCE_ITERATIONS:100,DISTANCE_CONVERGENCE:1e-12,DISTANCE_PRECISION:2,FORMAT:"{0:N6}{1:N6}"})},e.prototype.toArray=function(){return[this.lat,this.lng]},e.prototype.equals=function(t){return t&&t.lat===this.lat&&t.lng===this.lng},e.prototype.clone=function(){return new e(this.lat,this.lng)},e.prototype.round=function(t){return this.lng=Xt(this.lng,t),this.lat=Xt(this.lat,t),this},e.prototype.wrap=function(){return this.lng=this.lng%180,this.lat=this.lat%90,this},e.prototype.distanceTo=function(t,e){return this.greatCircleTo(t,e).distance},e.prototype.destination=function(t,o,r){var n=$t(o),i=r||Df.WGS84,a=$t(this.lat),s=$t(this.lng),c=t/i.a,l=Rf.asin($f(a)*qf(c)+qf(a)*$f(c)*qf(n)),h=s+Kf($f(n)*$f(c)*qf(a),qf(c)-$f(a)*$f(l));return new e(Tt(l),Tt(h))},e.prototype.greatCircleTo=function(t,o){var r=e.create(r),n=o||Df.WGS84;if(!r||this.clone().round(8).equals(r.clone().round(8)))return{distance:0,azimuthFrom:0,azimuthTo:0};for(var i,a,s,c,l,h,u,p,d=n.a,v=n.b,f=n.f,m=$t(r.lng-this.lng),g=Uf((1-f)*Xf($t(this.lat))),y=$f(g),b=qf(g),x=Uf((1-f)*Xf($t(r.lat))),w=$f(x),_=qf(x),C=m,O=this.DISTANCE_ITERATIONS,S=!1;!S&&O-- >0;){a=$f(C),s=qf(C),c=Rf.sqrt(Nf(_*a)+Nf(b*w-y*_*s)),p=Kf(c,h=y*w+b*_*s);var z=b*_*a/c;u=0,0!=(l=1-Nf(z))&&(u=h-2*y*w/l),i=C;var M=f/16*l*(4+f*(4-3*l));C=m+(1-M)*f*z*(p+M*c*(u+M*h*(2*Nf(u)-1))),S=Ff(C-i)<=this.DISTANCE_CONVERGENCE}var P=l*(Nf(d)-Nf(v))/Nf(v),V=1+P/16384*(4096+P*(P*(320-175*P)-768)),A=P/1024*(256+P*(P*(74-47*P)-128)),j=A*c*(u+A/4*(h*(2*Nf(u)-1)-A/6*u*(4*Nf(c)-3)*(4*Nf(u)-3))),k=Kf(_*a,b*w-y*_*s),H=Kf(b*a,-y*_+b*w*s);return{distance:Xt(v*V*(p-j),this.DISTANCE_PRECISION),azimuthFrom:Tt(k),azimuthTo:Tt(H)}},e.prototype.toString=function(){return String(this.lat)+","+String(this.lng)},e.fromLngLat=function(t){return new e(t[1],t[0])},e.fromLatLng=function(t){return new e(t[0],t[1])},e.create=function(t,o){if(Lt(t))return t instanceof e?t.clone():1===arguments.length&&2===t.length?e.fromLatLng(t):new e(t,o)},e}($.Class),Yf=Math,Wf=Yf.atan,Zf=Yf.exp,Qf=Yf.pow,Jf=Yf.sin,tm=Yf.log,em=Yf.tan,om=$.geometry.Point,rm=Yf.PI,nm=rm/2,im=rm/4,am=rm/180,sm=Df.WGS84,cm=function(t){function e(e){t.call(this),this.initProperties(),this._initOptions(e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype.initProperties=function(){it(this,{MAX_LNG:180,MAX_LAT:85.0840590501,INVERSE_ITERATIONS:15,INVERSE_CONVERGENCE:1e-12})},e.prototype.forward=function(t,e){var o=this,r=o.options,n=r.datum.a,i=r.centralMeridian,a=Kt(t.lat,-o.MAX_LAT,o.MAX_LAT),s=e?Kt(t.lng,-o.MAX_LNG,o.MAX_LNG):t.lng,c=$t(s-i)*n,l=o._projectLat(a);return new om(c,l)},e.prototype._projectLat=function(t){var e=this.options.datum,o=e.e,r=e.a,n=$t(t),i=em(im+n/2),a=o*Jf(n),s=Qf((1-a)/(1+a),o/2);return r*tm(i*s)},e.prototype.inverse=function(t,e){var o=this,r=o.options,n=r.datum.a,i=r.centralMeridian,a=t.x/(am*n)+i,s=Kt(o._inverseY(t.y),-o.MAX_LAT,o.MAX_LAT);return e&&(a=Kt(a,-o.MAX_LNG,o.MAX_LNG)),new Gf(s,a)},e.prototype._inverseY=function(t){var e,o=this,r=o.options.datum,n=r.a,i=r.e,a=i/2,s=Zf(-t/n),c=nm-2*Wf(s);for(e=0;e<=o.INVERSE_ITERATIONS;e++){var l=i*Jf(c),h=Qf((1-l)/(1+l),a),u=nm-2*Wf(s*h)-c;if(c+=u,Yf.abs(u)<=o.INVERSE_CONVERGENCE)break}return Tt(c)},e}($.Class);Qt(cm,{centralMeridian:0,datum:sm});var lm=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),it(this,{MAX_LAT:85.0511287798})},e.prototype._projectLat=function(t){var e=this.options.datum.a,o=$t(t),r=em(im+o/2);return e*tm(r)},e.prototype._inverseY=function(t){var e=this.options.datum.a,o=Zf(-t/e);return Tt(nm-2*Wf(o))},e}(cm),hm=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.forward=function(t){return new om(t.lng,t.lat)},e.prototype.inverse=function(t){return new Gf(t.y,t.x)},e}($.Class),um=function(t){function e(){t.call(this);var e=this._proj=new lm,o=this.c=2*rm*e.options.datum.a;this._tm=$.geometry.transform().translate(.5,.5).scale(1/o,-1/o),this._itm=$.geometry.transform().scale(o,-o).translate(-.5,-.5)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toPoint=function(t,e,o){return this._proj.forward(t,o).transform(this._tm).scale(e||1)},e.prototype.toLocation=function(t,e,o){var r=t.clone().scale(1/(e||1)).transform(this._itm);return this._proj.inverse(r,o)},e}($.Class),pm=(function(t){function e(){t.call(this),this._proj=new cm}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toPoint=function(t){return this._proj.forward(t)},e.prototype.toLocation=function(t){return this._proj.inverse(t)}}($.Class),function(t){function e(){t.call(this),this._proj=new hm}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toPoint=function(t){return this._proj.forward(t)},e.prototype.toLocation=function(t){return this._proj.inverse(t)}}($.Class),Object.assign,function(t,e){return t.bind(e)}),dm=function(t){var e=document.createElement("div");return e.innerHTML=t,e.firstChild},vm=function(t){for(;t.firstChild;)t.removeChild(t.firstChild)},fm=function(t,e){e.insertBefore(t,e.firstChild)},mm=function(t){return t.replace(/([a-z][A-Z])/g,(function(t){return t.charAt(0)+"-"+t.charAt(1).toLowerCase()}))},gm=function(t){return t&&String(t).endsWith("px")?t:String(t)+"px"},ym=function(t,e){var o=t.prototype;o.events?e.forEach((function(t){o.events.indexOf(t)<0&&o.events.push(t)})):o.events=e},bm=function(t){var e=[];if(t)for(var o=mm(t).split("-"),r=0;r<o.length;r++)e.push("k-pos-"+o[r]);return e.join(" ")},xm=function(t){function e(e,o){t.call(this),this.element=e,this._initOptions(o),this.items=[],U(this.element,"k-widget k-attribution")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype.filter=function(t,e){this._extent=t,this._zoom=e,this._render()},e.prototype.add=function(t){var e=t;Lt(t)&&("string"==typeof t&&(e={text:t}),this.items.push(e),this._render())},e.prototype.remove=function(t){for(var e=[],o=0;o<this.items.length;o++){var r=this.items[o];r.text!==t&&e.push(r)}this.items=e,this._render()},e.prototype.clear=function(){this.items=[],vm(this.element)},e.prototype._render=function(){for(var t=[],e=0;e<this.items.length;e++){var o=this.items[e],r=this._itemText(o);""!==r&&t.push(r)}t.length>0?(vm(this.element),function(t,e){var o=document.createElement("div");for(o.innerHTML=t;o.childNodes.length>0;)e.appendChild(o.childNodes[0])}(t.join(this.options.separator),this.element),this.showElement()):this.hideElement()},e.prototype.hideElement=function(){this.element.style.display="none"},e.prototype.showElement=function(){this.element.style.display=""},e.prototype._itemText=function(t){var e="",o=this._inZoomLevel(t.minZoom,t.maxZoom),r=this._inArea(t.extent);return o&&r&&(e+=t.text),e},e.prototype._inZoomLevel=function(t,e){var o=Yt(t,-Number.MAX_VALUE),r=Yt(e,Number.MAX_VALUE);return this._zoom>o&&this._zoom<r},e.prototype._inArea=function(t){var e=!0;return t&&(e=t.contains(this._extent)),e},e}(Fe);Qt(xm,{name:"Attribution",separator:" | "});var wm={up:{className:"k-navigator-n",iconClass:"k-i-caret-alt-up"},down:{className:"k-navigator-s",iconClass:"k-i-caret-alt-down"},right:{className:"k-navigator-e",iconClass:"k-i-caret-alt-right"},left:{className:"k-navigator-w",iconClass:"k-i-caret-alt-left"}};function _m(t,e){var o='<button class="k-button k-button-square k-rounded-full k-button-flat k-button-flat-base k-icon-button '+wm[t].className+'" aria-label="move '+t+'">'+ie({icon:"caret-alt-"+t,iconClass:"k-button-icon",svgIcons:e.svgIcons,type:e.type})+"</button>";return dm(o)}var Cm=function(t){function e(e,o){t.call(this),this.element=e,this._initOptions(o);var r=_m("up",o.icons),n=_m("right",o.icons),i=_m("down",o.icons),a=_m("left",o.icons);this.element.appendChild(r),this.element.appendChild(n),this.element.appendChild(i),this.element.appendChild(a),U(this.element,"k-widget k-navigator"),je(this.element,"click",".k-button",pm(this._click,this));var s=this.element.parentNode.closest("[data-role]");this._keyroot=s||this.element,this._tabindex(this._keyroot),this._keydownHandler=pm(this._keydown,this),je(this._keyroot,"keydown",this._keydownHandler)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.dispose()},e.prototype.dispose=function(){ke(this._keyroot,"keydown",this._keydownHandler)},e.prototype._tabindex=function(t){var e=t||this.wrapper||this.element,o=this.element,r="tabindex",n=e.getAttribute(r)||o.getAttribute(r);o.removeAttribute(r),e.setAttribute(r,isNaN(n)?0:n)},e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype._pan=function(t,e){var o=this.options.panStep;this.trigger("pan",{x:t*o,y:e*o})},e.prototype._click=function(t){var e=0,o=0,r=t.currentTarget;r.matches(".k-navigator-n")?o=1:r.matches(".k-navigator-s")?o=-1:r.matches(".k-navigator-e")?e=1:r.matches(".k-navigator-w")&&(e=-1),this._pan(e,o),t.preventDefault()},e.prototype._keydown=function(t){switch(t.which){case we.UP:this._pan(0,1),t.preventDefault();break;case we.DOWN:this._pan(0,-1),t.preventDefault();break;case we.RIGHT:this._pan(1,0),t.preventDefault();break;case we.LEFT:this._pan(-1,0),t.preventDefault()}},e}(Fe);function Om(t,e,o){var r='<button class="k-button k-button-md k-rounded-md k-button-solid k-button-solid-base k-icon-button k-zoom-'+t+'" title="zoom-'+t+'" aria-label="zoom-'+t+'">'+ie({icon:e,iconClass:"k-button-icon",svgIcons:o.svgIcons,type:o.type})+"</button>";return dm(r)}Qt(Cm,{name:"Navigator",panStep:1}),ym(Cm,["pan"]);var Sm="change",zm=function(t){function e(e,o,r){t.call(this),this.element=e,this._initOptions(o);var n=Om("in","plus",r),i=Om("out","minus",r);this.element.appendChild(n),this.element.appendChild(i),this.element.setAttribute("role","group"),U(this.element,"k-widget k-zoom-control k-button-group k-group-horizontal"),this._clickHandler=this._click.bind(this),je(this.element,"click",".k-button",this._clickHandler);var a=this.element.parentNode.closest("[data-role]");this._keyroot=a||this.element,this._tabindex(this._keyroot),this._keydownHandler=this._keydown.bind(this),je(this._keyroot,"keydown",this._keydownHandler)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.element&&ke(this.element,"click",this._clickHandler),this._keyroot&&ke(this._keyroot,"keydown",this._keydownHandler)},e.prototype._tabindex=function(t){var e=t||this.wrapper||this.element,o=this.element,r="tabindex",n=e.getAttribute(r)||o.getAttribute(r);o.removeAttribute(r),e.setAttribute(r,isNaN(n)?0:n)},e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype._change=function(t){var e=this.options.zoomStep;this.trigger(Sm,{delta:t*e})},e.prototype._click=function(t){var e=1;wt(t.currentTarget,"k-zoom-out")&&(e=-1),this._change(e),t.preventDefault()},e.prototype._keydown=function(t){switch(t.which){case we.NUMPAD_PLUS:case 187:case 61:this._change(1);break;case we.NUMPAD_MINUS:case 189:case 173:this._change(-1)}},e}(Fe);Qt(zm,{name:"ZoomControl",zoomStep:1}),ym(zm,[Sm]);var Mm=Math,Pm=Mm.max,Vm=Mm.min,Am=function(t){function e(e,o){t.call(this);var r=Gf.create(e),n=Gf.create(o);r.lng+180>n.lng+180&&r.lat+90<n.lat+90?(this.se=r,this.nw=n):(this.se=n,this.nw=r)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var o={World:{configurable:!0}};return e.prototype.contains=function(t){var e=this.nw,o=this.se,r=Yt(t.lng,t[1]),n=Yt(t.lat,t[0]);return t&&r+180>=e.lng+180&&r+180<=o.lng+180&&n+90>=o.lat+90&&n+90<=e.lat+90},e.prototype.center=function(){var t=this.nw,e=this.se,o=t.lng+(e.lng-t.lng)/2,r=t.lat+(e.lat-t.lat)/2;return new Gf(r,o)},e.prototype.containsAny=function(t){for(var e=!1,o=0;o<t.length;o++)e=e||this.contains(t[o]);return e},e.prototype.include=function(t){var e=this.nw,o=this.se,r=Yt(t.lng,t[1]),n=Yt(t.lat,t[0]);e.lng=Vm(e.lng,r),e.lat=Pm(e.lat,n),o.lng=Pm(o.lng,r),o.lat=Vm(o.lat,n)},e.prototype.includeAll=function(t){for(var e=0;e<t.length;e++)this.include(t[e])},e.prototype.edges=function(){var t=this.nw,e=this.se;return{nw:this.nw,ne:new Gf(t.lat,e.lng),se:this.se,sw:new Gf(e.lat,t.lng)}},e.prototype.toArray=function(){var t=this.nw,e=this.se;return[t,new Gf(t.lat,e.lng),e,new Gf(e.lat,t.lng)]},e.prototype.overlaps=function(t){return this.containsAny(t.toArray())||t.containsAny(this.toArray())},e.create=function(t,o){return t instanceof e?t:t&&o?new e(t,o):t&&4===t.length&&!o?new e([t[0],t[1]],[t[2],t[3]]):void 0},o.World.get=function(){return new e([90,-180],[-90,180])},Object.defineProperties(e,o),e}($.Class),jm="centerChange",km=function(t){function e(e,o){t.call(this),this.widgetService=e,this.options=it({},this.options,o),this.offset={x:0,y:0}}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var o={anchor:{configurable:!0}};return e.prototype.show=function(t,e){this.location!==e.location&&(this.anchor=t,this.location=e.location,this.widgetService.notify("showTooltip",Object.assign({anchor:this.anchor},e)),this.visible=!0)},e.prototype.hide=function(){this.widgetService&&this.widgetService.notify("hideTooltip"),this.visible=!1,this.location=null},o.anchor.get=function(){return this._anchor},o.anchor.set=function(t){var e=this.widgetService.widget._toDocumentCoordinates({x:t.left-this.offset.x,y:t.top-this.offset.y});this._anchor={left:e.left,top:e.top}},e.prototype.destroy=function(){this.widgetService=null},Object.defineProperties(e.prototype,o),e}($.Class);Qt(km,{border:{width:1},opacity:1});var Hm=function(t){function e(e,o){t.call(this),this.support=He(),this._initOptions(o),this.map=e;var r=document.createElement("div");U(r,"k-layer"),r.style.zIndex=this.options.zIndex,r.style.opacity=this.options.opacity,this.element=r,e.scrollElement.appendChild(this.element),this._beforeReset=this._beforeReset.bind(this),this._reset=this._reset.bind(this),this._resize=this._resize.bind(this),this._panEnd=this._panEnd.bind(this),this._activate(),this._updateAttribution()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._deactivate()},e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype.show=function(){this.reset(),this._activate(),this._applyExtent(!0)},e.prototype.hide=function(){this._deactivate(),this._setVisibility(!1)},e.prototype.reset=function(){this._beforeReset(),this._reset()},e.prototype._reset=function(){this._applyExtent()},e.prototype._beforeReset=function(){},e.prototype._resize=function(){},e.prototype._panEnd=function(){this._applyExtent()},e.prototype._applyExtent=function(){var t=this.options,e=this.map.zoom(),o=!Lt(t.minZoom)||e>=t.minZoom,r=!Lt(t.maxZoom)||e<=t.maxZoom,n=Am.create(t.extent),i=!n||n.overlaps(this.map.extent());this._setVisibility(o&&r&&i)},e.prototype._setVisibility=function(t){this.element.style.display=t?"":"none"},e.prototype._activate=function(){var t=this.map;this._deactivate(),t.bind("beforeReset",this._beforeReset),t.bind("reset",this._reset),t.bind("resize",this._resize),t.bind("panEnd",this._panEnd)},e.prototype._deactivate=function(){var t=this.map;t.unbind("beforeReset",this._beforeReset),t.unbind("reset",this._reset),t.unbind("resize",this._resize),t.unbind("panEnd",this._panEnd)},e.prototype._updateAttribution=function(){var t=this.map.attribution;t&&t.add(this.options.attribution)},e.prototype._readData=function(){return this.options.data||[]},e.prototype._hasData=function(){return this._data&&this._data.length>0},e.prototype._layerIndex=function(){return(this.map.layers||[]).indexOf(this)},e}($.Class),Im=Math,Bm=$.geometry.Point;function Lm(t){return et(t)?t:vt.compile(t)}function Tm(t){return new Bm(Xt(t.x),Xt(t.y))}function Em(t){var e=t;return"string"!=typeof t&&(e+="px"),e}var Dm=function(t){function e(e,o){t.call(this,e,o),"string"==typeof this.options.subdomains&&(this.options.subdomains=this.options.subdomains.split(""));var r=this._viewType();this._view=new r(this.element,this.options)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){t.prototype.destroy.call(this),this._view.destroy(),this._view=null},e.prototype._beforeReset=function(){var t=this.map,e=t.locationToLayer(t.extent().nw).round();this._view.viewOrigin(e)},e.prototype._reset=function(){t.prototype._reset.call(this),this._updateView(),this._view.reset()},e.prototype._viewType=function(){return Nm},e.prototype._activate=function(){t.prototype._activate.call(this),this.support.mobileOS||(this._pan||(this._pan=(0,$.throttle)(this._render.bind(this),100)),this.map.bind("pan",this._pan))},e.prototype._deactivate=function(){t.prototype._deactivate.call(this),this._pan&&this.map.unbind("pan",this._pan)},e.prototype._updateView=function(){var t=this._view,e=this.map,o=e.extent(),r={nw:e.locationToLayer(o.nw).round(),se:e.locationToLayer(o.se).round()};t.center(e.locationToLayer(e.center())),t.extent(r),t.zoom(e.zoom())},e.prototype._resize=function(){this._render()},e.prototype._panEnd=function(e){t.prototype._panEnd.call(this,e),this._render()},e.prototype._render=function(){this._updateView(),this._view.render()},e}(Hm);Qt(Dm,{tileSize:256,subdomains:["a","b","c"],urlTemplate:"",zIndex:1});var Nm=function(t){function e(e,o){t.call(this),this.element=e,this._initOptions(o),this.pool=new Fm}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype.center=function(t){this._center=t},e.prototype.extent=function(t){this._extent=t},e.prototype.viewOrigin=function(t){this._viewOrigin=t},e.prototype.zoom=function(t){this._zoom=t},e.prototype.pointToTileIndex=function(t){return new Bm(Im.floor(t.x/this.options.tileSize),Im.floor(t.y/this.options.tileSize))},e.prototype.tileCount=function(){var t=this.size(),e=this.pointToTileIndex(this._extent.nw),o=this._extent.nw,r=this.indexToPoint(e).translate(-o.x,-o.y);return{x:Im.ceil((Im.abs(r.x)+t.width)/this.options.tileSize),y:Im.ceil((Im.abs(r.y)+t.height)/this.options.tileSize)}},e.prototype.size=function(){var t=this._extent.nw,e=this._extent.se.clone().translate(-t.x,-t.y);return{width:e.x,height:e.y}},e.prototype.indexToPoint=function(t){var e=t.x,o=t.y;return new Bm(e*this.options.tileSize,o*this.options.tileSize)},e.prototype.subdomainText=function(){var t=this.options.subdomains;return t[this.subdomainIndex++%t.length]},e.prototype.destroy=function(){vm(this.element),this.pool.empty()},e.prototype.reset=function(){this.pool.reset(),this.subdomainIndex=0,this.render()},e.prototype.render=function(){var t,e,o,r=this.tileCount(),n=this.pointToTileIndex(this._extent.nw);for(e=0;e<r.x;e++)for(o=0;o<r.y;o++)(t=this.createTile({x:n.x+e,y:n.y+o})).visible||t.show()},e.prototype.createTile=function(t){var e=this.tileOptions(t),o=this.pool.get(this._center,e);return o.element.parentNode||this.element.append(o.element),o},e.prototype.tileOptions=function(t){var e=this.wrapIndex(t),o=this.indexToPoint(t),r=this._viewOrigin,n=o.clone().translate(-r.x,-r.y);return{index:e,currentIndex:t,point:o,offset:Tm(n),zoom:this._zoom,size:this.options.tileSize,subdomain:this.subdomainText(),urlTemplate:this.options.urlTemplate,errorUrlTemplate:this.options.errorUrlTemplate}},e.prototype.wrapIndex=function(t){var e=Im.pow(2,this._zoom);return{x:this.wrapValue(t.x,e),y:Kt(t.y,0,e-1)}},e.prototype.wrapValue=function(t,e){var o=Im.abs(t)%e;return t>=0?o:e-(0===o?e:o)},e}($.Class),Rm=function(t){function e(e,o){t.call(this),this.id=e,this.visible=!0,this._initOptions(o),this.createElement(),this.show()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){var t=this.element,e=t?t.parentNode:null;t&&(e&&e.removeChild(t),this.element=null)},e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype.createElement=function(){var t=document.createElement("img"),e=this.options.size+"px";t.setAttribute("alt",""),t.style.position="absolute",t.style.display="block",t.style.width=t.style.maxWidth=e,t.style.height=t.style.maxHeight=e,this.element=t},e.prototype.show=function(){var t=this.element;t.style.top=Em(this.options.offset.y),t.style.left=Em(this.options.offset.x);var e=this.url();e&&t.setAttribute("src",e),t.style.visibility="visible",this.visible=!0},e.prototype.hide=function(){this.element.style.visibility="hidden",this.visible=!1},e.prototype.url=function(){return Lm(this.options.urlTemplate)(this.urlOptions())},e.prototype.errorUrl=function(){return Lm(this.options.errorUrlTemplate)(this.urlOptions())},e.prototype.urlOptions=function(){var t=this.options;return{zoom:t.zoom,subdomain:t.subdomain,z:t.zoom,x:t.index.x,y:t.index.y,s:t.subdomain,quadkey:t.quadkey,q:t.quadkey,culture:t.culture,c:t.culture}},e}($.Class);Qt(Rm,{urlTemplate:"",errorUrlTemplate:""});var Fm=function(t){function e(){t.call(this),this._items=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t,e){return this._items.length>=this.options.maxSize&&this._remove(t),this._create(e)},e.prototype.empty=function(){for(var t=this._items,e=0;e<t.length;e++)t[e].destroy();this._items=[]},e.prototype.reset=function(){for(var t=this._items,e=0;e<t.length;e++)t[e].hide()},e.prototype._create=function(t){for(var e,o=this._items,r=Ft(t.point.toString()+t.offset.toString()+t.zoom+t.urlTemplate),n=0;n<o.length;n++)if(o[n].id===r){e=o[n];break}return e?e.show():(e=new Rm(r,t),this._items.push(e)),e},e.prototype._remove=function(t){for(var e=this._items,o=-1,r=-1,n=0;n<e.length;n++){var i=e[n].options.point.distanceTo(t);i>o&&!e[n].visible&&(r=n,o=i)}-1!==r&&(e[r].destroy(),e.splice(r,1))},e}($.Class);Qt(Fm,{maxSize:100});var Um=Object.assign,Km="change",qm=function(t){function e(e,o){t.call(this);var r=this,n=e[0]||e;r.capture=!1,n.addEventListener?(Se.down.split(" ").forEach((function(t){n.addEventListener(t,pm(r._press,r),!0)})),Se.up.split(" ").forEach((function(t){n.addEventListener(t,pm(r._release,r),!0)}))):(Se.down.split(" ").forEach((function(t){n.attachEvent(t,pm(r._press,r))})),Se.up.split(" ").forEach((function(t){n.attachEvent(t,pm(r._release,r))}))),r.bind(["press","release"],o||{})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.captureNext=function(){this.capture=!0},e.prototype.cancelCapture=function(){this.capture=!1},e.prototype._press=function(t){this.trigger("press"),this.capture&&t.preventDefault()},e.prototype._release=function(t){var e=this;e.trigger("release"),e.capture&&(t.preventDefault(),e.cancelCapture())},e}(Fe),$m=function(t){function e(e){t.call(this);var o=this;o.forcedEnabled=!1,Um(o,e),o.scale=1,o.horizontal?(o.measure="offsetWidth",o.scrollSize="scrollWidth",o.axis="x"):(o.measure="offsetHeight",o.scrollSize="scrollHeight",o.axis="y")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.makeVirtual=function(){Um(this,{virtual:!0,forcedEnabled:!0,_virtualMin:0,_virtualMax:0})},e.prototype.virtualSize=function(t,e){this._virtualMin===t&&this._virtualMax===e||(this._virtualMin=t,this._virtualMax=e,this.update())},e.prototype.outOfBounds=function(t){return t>this.max||t<this.min},e.prototype.forceEnabled=function(){this.forcedEnabled=!0},e.prototype.getSize=function(){return this.container[this.measure]},e.prototype.getTotal=function(){return this.element[this.scrollSize]},e.prototype.rescale=function(t){this.scale=t},e.prototype.update=function(t){var e=this,o=e.virtual?e._virtualMax:e.getTotal(),r=o*e.scale,n=e.getSize();(0!==o||e.forcedEnabled)&&(e.max=e.virtual?-e._virtualMin:0,e.size=n,e.total=r,e.min=Math.min(e.max,n-r),e.minScale=n/o,e.centerOffset=(r-n)/2,e.enabled=e.forcedEnabled||r>n,t||e.trigger(Km,e))},e}(Fe),Xm=function(t){function e(e){t.call(this);var o=this;o.x=new $m(Um({horizontal:!0},e)),o.y=new $m(Um({horizontal:!1},e)),o.container=e.container,o.forcedMinScale=e.minScale,o.maxScale=e.maxScale||100,o.bind(Km,e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.rescale=function(t){this.x.rescale(t),this.y.rescale(t),this.refresh()},e.prototype.centerCoordinates=function(){return{x:Math.min(0,-this.x.centerOffset),y:Math.min(0,-this.y.centerOffset)}},e.prototype.refresh=function(){var t=this;t.x.update(),t.y.update(),t.enabled=t.x.enabled||t.y.enabled,t.minScale=t.forcedMinScale||Math.min(t.x.minScale,t.y.minScale),t.fitScale=Math.max(t.x.minScale,t.y.minScale),t.trigger(Km)},e}(Fe),Gm=function(t){function e(e){t.call(this),Um(this,e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.outOfBounds=function(){return this.dimension.outOfBounds(this.movable[this.axis])},e.prototype.dragMove=function(t){var e=this,o=e.dimension,r=e.axis,n=e.movable,i=n[r]+t;if(o.enabled){var a=t;(i<o.min&&t<0||i>o.max&&t>0)&&(a*=e.resistance),n.translateAxis(r,a),e.trigger(Km,e)}},e}(Fe),Ym=function(t){function e(e){t.call(this);var o,r,n,i,a=this;Um(a,{elastic:!0},e),n=a.elastic?.5:0,i=a.movable,a.x=o=new Gm({axis:"x",dimension:a.dimensions.x,resistance:n,movable:i}),a.y=r=new Gm({axis:"y",dimension:a.dimensions.y,resistance:n,movable:i}),a.userEvents.bind(["press","move","end","gesturestart","gesturechange"],{gesturestart:function(t){a.gesture=t,a.offset=Et(a.dimensions.container)},press:function(t){var e=t.event.target.closest("a");e&&e.matches("[data-navigate-on-press=true]")&&t.sender.cancel()},gesturechange:function(t){var e,n=a.gesture,s=n.center,c=t.center,l=t.distance/n.distance,h=a.dimensions.minScale,u=a.dimensions.maxScale;i.scale<=h&&l<1&&(l+=.8*(1-l)),i.scale*l>=u&&(l=u/i.scale);var p=i.x+a.offset.left,d=i.y+a.offset.top;e={x:(p-s.x)*l+c.x-p,y:(d-s.y)*l+c.y-d},i.scaleWith(l),o.dragMove(e.x),r.dragMove(e.y),a.dimensions.rescale(i.scale),a.gesture=t,t.preventDefault()},move:function(t){t.event.target.tagName.match(/textarea|input/i)||(o.dimension.enabled||r.dimension.enabled?(o.dragMove(t.x.delta),r.dragMove(t.y.delta),t.preventDefault()):t.touch.skip())},end:function(t){t.preventDefault()}})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}($.Class),Wm=function(t,e,o){return"translate3d("+t+"px,"+e+"px,0) scale("+o+")"},Zm=function(t){function e(e){t.call(this);var o=this;o.element=e,o.element.style.transformOrigin="left top",o.x=0,o.y=0,o.scale=1;var r=Wm(o.x,o.y,o.scale);o.element.style.transform=r,o._saveCoordinates(r)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.translateAxis=function(t,e){this[t]+=e,this.refresh()},e.prototype.scaleTo=function(t){this.scale=t,this.refresh()},e.prototype.scaleWith=function(t){this.scale*=t,this.refresh()},e.prototype.translate=function(t){this.x+=t.x,this.y+=t.y,this.refresh()},e.prototype.moveAxis=function(t,e){this[t]=e,this.refresh()},e.prototype.moveTo=function(t){Um(this,t),this.refresh()},e.prototype.refresh=function(){var t,e=this,o=e.x,r=e.y;e.round&&(o=Math.round(o),r=Math.round(r)),(t=Wm(o,r,e.scale))!==e.coordinates&&(e.element.style.transform=t,e._saveCoordinates(t),e.trigger(Km))},e.prototype._saveCoordinates=function(t){this.coordinates=t},e}(Fe),Qm=$.drawing.Group,Jm=function(t){function e(e,o){t.call(this,e,o),this._pan=pm(this._pan,this),this.surface=$.drawing.Surface.create(this.element,{width:e.scrollElement.clientWidth,height:e.scrollElement.clientHeight}),this._initRoot(),this.movable=new Zm(this.surface.element),this._markers=[],this._click=this._handler("shapeClick"),this.surface.bind("click",this._click),this._mouseleave=this._handler("shapeMouseLeave"),this.surface.bind("mouseleave",this._mouseleave),this.surface.bind("mouseenter",this._mouseenter.bind(this))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){t.prototype.destroy.call(this),this.surface.destroy()},e.prototype._reset=function(){t.prototype._reset.call(this),this._translateSurface(),this._data=this._readData(),this._hasData()&&this._load(this._data)},e.prototype._initRoot=function(){this._root=new Qm,this.surface.draw(this._root)},e.prototype._beforeReset=function(){this.surface.clear(),this._initRoot()},e.prototype._resize=function(){this.surface.size(this.map.size())},e.prototype._readData=function(){var e=t.prototype._readData.call(this);return"FeatureCollection"===e.type?e.features:"GeometryCollection"===e.type?e.geometries:e},e.prototype._load=function(t){this._data=t,this._clearMarkers(),this._loader||(this._loader=new tg(this.map,this.options.style,this));for(var e=new Qm,o=0;o<t.length;o++){var r=this._loader.parse(t[o]);r&&e.append(r)}this._root.clear(),this._root.append(e)},e.prototype.shapeCreated=function(t){var e=!1;if(t instanceof $.drawing.Circle&&this.map.options.renderPointsAsMarkers&&(e=Lt(this._createMarker(t))),!e){var o={layer:this,shape:t};e=this.map.trigger("shapeCreated",o)}return e},e.prototype.featureCreated=function(t){t.layer=this,this.map.trigger("shapeFeatureCreated",t)},e.prototype._createMarker=function(t){var e=this.map.markers.bind({location:t.location},t.dataItem);return e&&this._markers.push(e),e},e.prototype._clearMarkers=function(){for(var t=0;t<this._markers.length;t++)this.map.markers.remove(this._markers[t]);this._markers=[]},e.prototype._pan=function(){this._panning||(this._panning=!0,this.surface.suspendTracking())},e.prototype._panEnd=function(e){t.prototype._panEnd.call(this,e),this._translateSurface(),this.surface.resumeTracking(),this._panning=!1},e.prototype._translateSurface=function(){var t=this.map,e=t.locationToView(t.extent().nw);this.surface.translate&&(this.surface.translate(e),this.movable.moveTo({x:e.x,y:e.y}))},e.prototype._eventArgs=function(t){return{layer:this,layerIndex:this._layerIndex(),shape:t.element,shapeIndex:(this._data||[]).indexOf(t.element.dataItem),originalEvent:t.originalEvent}},e.prototype._handler=function(t){var e=this;return function(o){o.element&&e.map.trigger(t,e._eventArgs(o))}},e.prototype._mouseenter=function(t){if(t.element){this.map.trigger("shapeMouseEnter",this._eventArgs(t));var e=t.element,o=this._tooltipAnchor(t);this.map._tooltip.show(o,this._tooltipContext(e))}},e.prototype._tooltipContext=function(t){return{type:"shape",layerIndex:this._layerIndex(),className:"k-map-shape-tooltip",dataItem:t.dataItem,location:t.location}},e.prototype._tooltipAnchor=function(t){var e=this.map.eventOffset(t.originalEvent);return{top:e.y,left:e.x}},e.prototype._activate=function(){t.prototype._activate.call(this),this._panHandler=pm(this._pan,this),this.map.bind("pan",this.panHandler)},e.prototype._deactivate=function(){t.prototype._deactivate.call(this),this.map.unbind("pan",this._panHandler)},e}(Hm);Qt(Jm,{autoBind:!0,zIndex:100});var tg=function(t){function e(e,o,r){t.call(this),this.observer=r,this.locator=e,this.style=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.parse=function(t){var e=new Qm,o=!0;return"Feature"===t.type?(o=!1,this._loadGeometryTo(e,t.geometry,t),this._featureCreated(e,t)):this._loadGeometryTo(e,t,t),o&&e.children.length<2&&(e=e.children[0]),e},e.prototype._shapeCreated=function(t){var e=!1;return this.observer&&this.observer.shapeCreated&&(e=this.observer.shapeCreated(t)),e},e.prototype._featureCreated=function(t,e){this.observer&&this.observer.featureCreated&&this.observer.featureCreated({group:t,dataItem:e,properties:e.properties})},e.prototype._loadGeometryTo=function(t,e,o){var r,n,i=this,a=e.coordinates;switch(e.type){case"LineString":n=this._loadPolygon(t,[a],o),this._setLineFill(n);break;case"MultiLineString":for(r=0;r<a.length;r++)n=i._loadPolygon(t,[a[r]],o),i._setLineFill(n);break;case"Polygon":this._loadPolygon(t,a,o);break;case"MultiPolygon":for(r=0;r<a.length;r++)i._loadPolygon(t,a[r],o);break;case"Point":this._loadPoint(t,a,o);break;case"MultiPoint":for(r=0;r<a.length;r++)i._loadPoint(t,a[r],o)}},e.prototype._setLineFill=function(t){var e=t.segments;(e.length<4||!e[0].anchor().equals(Ut(e).anchor()))&&(t.options.fill=null)},e.prototype._loadShape=function(t,e){return this._shapeCreated(e)||t.append(e),e},e.prototype._loadPolygon=function(t,e,o){var r=this._buildPolygon(e);return r.dataItem=o,r.location=this.locator.viewToLocation(r.bbox().center()),this._loadShape(t,r)},e.prototype._buildPolygon=function(t){for(var e=new(t.length>1?$.drawing.MultiPath:$.drawing.Path)(this.style),o=0;o<t.length;o++)for(var r=0;r<t[o].length;r++){var n=this.locator.locationToView(Gf.fromLngLat(t[o][r]));0===r?e.moveTo(n.x,n.y):e.lineTo(n.x,n.y)}return e},e.prototype._loadPoint=function(t,e,o){var r=Gf.fromLngLat(e),n=this.locator.locationToView(r),i=new $.geometry.Circle(n,10),a=new $.drawing.Circle(i,this.style);return a.dataItem=o,a.location=r,this._loadShape(t,a)},e}($.Class),eg=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._readData=function(){return this.options.data||[]},e.prototype._load=function(t){var e=this;if(this._data=t,this.surface.clear(),0!==t.length){var o=this.options,r=bt(o.valueField),n=t.slice(0);n.sort((function(t,e){return r(e)-r(t)}));for(var i,a=this._scaleType(),s=bt(this.options.locationField),c=0;c<n.length;c++){var l=n[c],h=s(l),u=r(l);if(Lt(h)&&Lt(u)){i||(i=new a([0,u],[o.minSize,o.maxSize])),h=Gf.create(h);var p=e.map.locationToView(h),d=i.map(u),v=e._createSymbol({center:p,size:d,style:o.style,dataItem:l,location:h});v.dataItem=l,v.location=h,v.value=u,e._drawSymbol(v)}}}},e.prototype._scaleType=function(){var t=this.options.scale;return et(t)?t:rg[t]},e.prototype._createSymbol=function(t){var e=this.options.symbol;return et(e)||(e=ng[e]),e(t)},e.prototype._drawSymbol=function(t){var e={layer:this,shape:t};this.map.trigger("shapeCreated",e)||this.surface.draw(t)},e.prototype._tooltipContext=function(t){return{type:"bubble",layerIndex:this._layerIndex(),className:"k-map-bubble-tooltip",dataItem:t.dataItem,location:t.location,value:t.value}},e.prototype._tooltipAnchor=function(t){var e=t.element.bbox().center();return{top:e.y,left:e.x}},e}(Jm);Qt(eg,{locationField:"location",valueField:"value",minSize:0,maxSize:100,scale:"sqrt",symbol:"circle",zIndex:200});var og=function(t){function e(e,o){t.call(this),this._domain=e,this._range=o;var r=Math.sqrt(e[1])-Math.sqrt(e[0]),n=o[1]-o[0];this._ratio=n/r}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.map=function(t){var e=(Math.sqrt(t)-Math.sqrt(this._domain[0]))*this._ratio;return this._range[0]+e},e}($.Class),rg={sqrt:og},ng={circle:function(t){var e=new $.geometry.Circle(t.center,t.size/2);return new $.drawing.Circle(e,t.style)},square:function(t){var e=new $.drawing.Path(t.style),o=t.size/2,r=t.center;return e.moveTo(r.x-o,r.y-o).lineTo(r.x+o,r.y-o).lineTo(r.x+o,r.y+o).lineTo(r.x-o,r.y+o).close(),e}},ig="click",ag="mouseenter",sg="mouseleave",cg=Object.assign,lg="k-marker",hg="."+lg,ug=function(t){function e(e,o){t.call(this,e,o),this._markerClickHandler=pm(this._markerClick,this),je(this.element,ig,hg,this._markerClickHandler),this.items=[],this._load(this._readData())}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){t.prototype.destroy.call(this),ke(this.element,ig,this._markerClickHandler),this.clear()},e.prototype.add=function(t){if(!F(t))return this._addOne(t);for(var e=0;e<t.length;e++)this._addOne(t[e])},e.prototype.remove=function(t){t.destroy();var e=(this.items||[]).indexOf(t);e>-1&&this.items.splice(e,1)},e.prototype.clear=function(){for(var t=0;t<this.items.length;t++)this.items[t].destroy();this.items=[]},e.prototype.update=function(t){var e=t.location();if(e){t.showAt(this.map.locationToView(e));var o={marker:t,layer:this};this.map.trigger("markerActivate",o)}},e.prototype._reset=function(){t.prototype._reset.call(this);for(var e=this.items,o=0;o<e.length;o++)this.update(e[o])},e.prototype.bind=function(t,e){var o=pg.create(t,this.options);o.dataItem=e;var r={marker:o,layer:this};if(!this.map.trigger("markerCreated",r))return this.add(o),o},e.prototype._addOne=function(t){var e=pg.create(t,this.options);return e.addTo(this),e},e.prototype._readData=function(){return this.options.data||[]},e.prototype._load=function(t){this._data=t,this.clear();for(var e=bt(this.options.locationField),o=bt(this.options.titleField),r=0;r<t.length;r++){var n=t[r];this.bind({location:e(n),title:o(n)},n)}},e.prototype._markerClick=function(t){var e=t.currentTarget._kendoNode,o={layer:this,layerIndex:this._layerIndex(),marker:e,markerIndex:(this.items||[]).indexOf(e),originalEvent:t};this.map.trigger("markerClick",o)},e.prototype._markerMouseEnter=function(t){var e=this._createMarkerEventArgs(t);this.map.trigger("markerMouseEnter",e)},e.prototype._markerMouseLeave=function(t){var e=this._createMarkerEventArgs(t);this.map.trigger("markerMouseLeave",e)},e.prototype._createMarkerEventArgs=function(t){var e=t.marker;return cg({},{layer:this,layerIndex:this._layerIndex(),marker:e,markerIndex:(this.items||[]).indexOf(e)},t)},e}(Hm);Qt(ug,{zIndex:1e3,autoBind:!0,locationField:"location",titleField:"title",template:""});var pg=function(t){function e(e){t.call(this),this.options=e||{}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.layer=null,this.unbindEvents(),this.hide()},e.prototype.addTo=function(t){this.layer=t.markers||t,this.layer.items.push(this),this.layer.update(this)},e.prototype.location=function(t){return t?(this.options.location=Gf.create(t).toArray(),this.layer&&this.layer.update(this),this):Gf.create(this.options.location)},e.prototype.showAt=function(t){this.render(),this._anchor={left:Math.round(t.x),top:Math.round(t.y)},this.element.style.left=gm(this._anchor.left),this.element.style.top=gm(this._anchor.top)},e.prototype.hide=function(){this.element&&(this.element.remove(),this.element=null)},e.prototype.bindEvents=function(){this.element&&(this._mouseEnterHandler=pm(this._mouseEnter,this),je(this.element,ag,hg,this._mouseEnterHandler),this._mouseLeaveHandler=pm(this._mouseLeave,this),je(this.element,sg,hg,this._mouseLeaveHandler))},e.prototype.unbindEvents=function(){this.element&&(ke(this.element,ag,this._mouseEnterHandler),ke(this.element,sg,this._mouseLeaveHandler))},e.prototype.render=function(){if(!this.element){var t=this.options,e=this.layer,o=document.createElement("span");if(U(o,lg),this.options.template){var r=this._compileTemplate(this.options.template)(this.dataItem),n=dm(r);o.appendChild(n)}else if(t.svgIcon)ie(o,{icon:t.svgIcon,iconClass:"k-icon-xxl",svgIcons:this.options.icons.svgIcons,type:"svg"});else{var i={icon:"map-marker",iconClass:"k-icon-xxl",svgIcons:this.options.icons.svgIcons,type:this.options.icons.type};t.shape?"pinTarget"===t.shape?(i.icon="map-marker-target",ie(o,i)):"pin"===t.shape?ie(o,i):U(o,"k-icon k-icon-xxl k-i-marker-"+mm(t.shape||"pin")):ie(o,i)}t.title&&o.setAttribute("title",t.title);var a=t.attributes||{};Object.keys(a).forEach((function(t){o.setAttribute(t,a[t])})),o._kendoNode=this,o.style.zIndex=t.zIndex,this.element=o,e&&e.element.appendChild(this.element),this.bindEvents()}},e.prototype._mouseEnter=function(t){var e=this._createEventArgs(t);this.layer._markerMouseEnter(e),this.layer.map._tooltip.show({top:this._anchor.top-this.element.offsetHeight,left:this._anchor.left},this._tooltipContext())},e.prototype._tooltipContext=function(){return{type:"marker",layerIndex:this.layer._layerIndex(),className:"k-map-marker-tooltip",dataItem:this.dataItem,title:this.options.title,location:this.location()}},e.prototype._mouseLeave=function(t){var e=this._createEventArgs(t);this.layer._markerMouseLeave(e)},e.prototype._createEventArgs=function(t){return{marker:this,originalEvent:t}},e.prototype._compileTemplate=function(t){return vt.compile(t,{paramName:"dataItem",useWithBlock:!1})},e.create=function(t,o){return t instanceof e?t:new e(it({},o,t))},e}($.Class),dg=Object.assign;function vg(t){window.requestAnimationFrame(t)}var fg=function(t){function e(){t.call(this);var e=this;e._tickProxy=pm(e._tick,e),e._started=!1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.tick=function(){},e.prototype.done=function(){},e.prototype.onEnd=function(){},e.prototype.onCancel=function(){},e.prototype.start=function(){this.enabled()&&(this.done()?this.onEnd():(this._started=!0,vg(this._tickProxy)))},e.prototype.enabled=function(){return!0},e.prototype.cancel=function(){this._started=!1,this.onCancel()},e.prototype._tick=function(){var t=this;t._started&&(t.tick(),t.done()?(t._started=!1,t.onEnd()):vg(t._tickProxy))},e}($.Class),mg=function(t){function e(e){t.call(this),dg(this,e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.done=function(){return this.timePassed()>=this.duration},e.prototype.timePassed=function(){return Math.min(this.duration,Le()-this.startDate)},e.prototype.moveTo=function(t){var e=this,o=e.movable;e.initial=o[e.axis],e.delta=t.location-e.initial,e.duration="number"==typeof t.duration?t.duration:300,e.tick=e._easeProxy(t.ease),e.startDate=Le(),e.start()},e.prototype._easeProxy=function(t){var e=this;return function(){e.movable.moveAxis(e.axis,t(e.timePassed(),e.initial,e.delta,e.duration))}},e.easeOutExpo=function(t,e,o,r){return t===r?e+o:o*(1-Math.pow(2,-10*t/r))+e},e}(fg),gg=Object.assign,yg=Math.abs,bg="change",xg="scroll",wg=function(t){function e(e){t.call(this,e);var o=this;gg(o,e),o.userEvents.bind("gestureend",o.start.bind(this)),o.tapCapture.bind("press",o.cancel.bind(this))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.enabled=function(){return this.movable.scale<this.dimensions.minScale},e.prototype.done=function(){return this.dimensions.minScale-this.movable.scale<.01},e.prototype.tick=function(){var t=this.movable;t.scaleWith(1.1),this.dimensions.rescale(t.scale)},e.prototype.onEnd=function(){var t=this.movable;t.scaleTo(this.dimensions.minScale),this.dimensions.rescale(t.scale)},e}(fg),_g=function(t){function e(e){t.call(this);var o=this;gg(o,e,{transition:new mg({axis:e.axis,movable:e.movable,onEnd:function(){o._end()}})}),o.tapCapture.bind("press",(function(){o.cancel()})),o.userEvents.bind("end",pm(o.start,o)),o.userEvents.bind("gestureend",pm(o.start,o)),o.userEvents.bind("tap",pm(o.onEnd,o))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onCancel=function(){this.transition.cancel()},e.prototype.freeze=function(t){this.cancel(),this._moveTo(t)},e.prototype.onEnd=function(){var t=this;t.paneAxis.outOfBounds()?t._snapBack():t._end()},e.prototype.done=function(){return yg(this.velocity)<1},e.prototype.start=function(e){var o,r=this;r.dimension.enabled&&(r.paneAxis.outOfBounds()?r.transition._started?(r.transition.cancel(),r.velocity=Math.min(e.touch[r.axis].velocity*r.velocityMultiplier,55),t.prototype.start.call(this)):r._snapBack():(o=2===e.touch.id?0:e.touch[r.axis].velocity,r.velocity=Math.max(Math.min(o*r.velocityMultiplier,55),-55),r.tapCapture.captureNext(),t.prototype.start.call(this)))},e.prototype.tick=function(){var t=this,e=t.dimension,o=t.paneAxis.outOfBounds()?.5:t.friction,r=t.velocity*=o,n=t.movable[t.axis]+r;!t.elastic&&e.outOfBounds(n)&&(n=Math.max(Math.min(n,e.max),e.min),t.velocity=0),t.movable.moveAxis(t.axis,n)},e.prototype._end=function(){this.tapCapture.cancelCapture(),this.end()},e.prototype._snapBack=function(){var t=this,e=t.dimension,o=t.movable[t.axis]>e.max?e.max:e.min;t._moveTo(o)},e.prototype._moveTo=function(t){this.transition.moveTo({location:t,duration:500,ease:mg.easeOutExpo})},e}(fg),Cg=function(t){function e(e){t.call(this,e),gg(this,e,{origin:{},destination:{},offset:{}})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.tick=function(){this._updateCoordinates(),this.moveTo(this.origin)},e.prototype.done=function(){return yg(this.offset.y)<5&&yg(this.offset.x)<5},e.prototype.onEnd=function(){this.moveTo(this.destination),this.callback&&this.callback.call()},e.prototype.setCoordinates=function(t,e){this.offset={},this.origin=t,this.destination=e},e.prototype.setCallback=function(t){t&&et(t)?this.callback=t:t=void 0},e.prototype._updateCoordinates=function(){this.offset={x:(this.destination.x-this.origin.x)/4,y:(this.destination.y-this.origin.y)/4},this.origin={y:this.origin.y+this.offset.y,x:this.origin.x+this.offset.x}},e}(fg),Og=function(t){function e(e){t.call(this);var o=this,r="x"===e.axis,n=dm('<div class="km-touch-scrollbar km-'+(r?"horizontal":"vertical")+'-scrollbar" />');gg(o,e,{element:n,elementSize:0,movable:new Zm(n),scrollMovable:e.movable,alwaysVisible:e.alwaysVisible,size:r?"width":"height"}),o.scrollMovable.bind(bg,o.refresh.bind(o)),o.container.appendChild(n),e.alwaysVisible&&o.show()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.refresh=function(){var t=this,e=t.axis,o=t.dimension,r=o.size,n=t.scrollMovable,i=r/o.total,a=Math.round(-n[e]*i),s=Math.round(r*i);this.element.style.display=i>=1?"none":"",a+s>r?s=r-a:a<0&&(s+=a,a=0),t.elementSize!==s&&(t.element.style[t.size]=s+"px",t.elementSize=s),t.movable.moveAxis(e,a)},e.prototype.show=function(){this.element.style.opacity=.7,this.element.style.visibility="visible"},e.prototype.hide=function(){this.alwaysVisible||(this.element.style.opacity=0)},e}($.Class),Sg=function(t){function e(e,o){t.call(this);var r=this;this.element=e,this._initOptions(o);var n,i=(navigator.userAgent,(n=He().mobileOS).ios||n.android);r._native=r.options.useNative&&i;var a=dm('<div class="km-scroll-header"/>');if(r._native)return U(e,"km-native-scroller"),fm(a,e),void gg(r,{scrollElement:e,fixedContainer:e.children[0]});e.style.overflow="hidden",U(e,"km-scroll-wrapper"),function(t,e){for(t.appendChild(e);t.firstChild!==e;)e.appendChild(t.firstChild)}(e,dm('<div class="km-scroll-container"/>')),fm(a,e);var s=e.children[1],c=new qm(e),l=new Zm(s),h=new Xm({element:s,container:e,forcedEnabled:r.options.zoom}),u=this.options.avoidScrolling,p=new po(e,{touchAction:"none",allowSelection:!0,preventDragEvent:!0,captureUpIfMoved:!0,multiTouch:r.options.zoom,supportDoubleTap:r.options.supportDoubleTap,start:function(t){h.refresh();var e=yg(t.x.velocity),o=yg(t.y.velocity),n=2*e>=o,i=2*o>=e;!r.fixedContainer.contains(t.event.target)&&!u(t)&&r.enabled&&(h.x.enabled&&n||h.y.enabled&&i)?p.capture():p.cancel()}}),d=new Ym({movable:l,dimensions:h,userEvents:p,elastic:r.options.elastic}),v=new wg({movable:l,dimensions:h,userEvents:p,tapCapture:c}),f=new Cg({moveTo:function(t){r.scrollTo(t.x,t.y)}});l.bind(bg,(function(){r.scrollTop=-l.y,r.scrollLeft=-l.x,r.trigger(xg,{scrollTop:r.scrollTop,scrollLeft:r.scrollLeft})})),r.options.mousewheelScrolling&&(this._wheelScrollHandler=this._wheelScroll.bind(this),je(e,"wheel",this._wheelScrollHandler)),gg(r,{movable:l,dimensions:h,zoomSnapBack:v,animatedScroller:f,userEvents:p,pane:d,tapCapture:c,pulled:!1,enabled:!0,scrollElement:s,scrollTop:0,scrollLeft:0,fixedContainer:e.children[0]}),r._initAxis("x"),r._initAxis("y"),r._wheelEnd=function(){r._wheel=!1,r.userEvents.end(0,r._wheelY)},h.refresh(),r.options.pullToRefresh&&r._initPullToRefresh()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype._wheelScroll=function(t){if(!t.ctrlKey){this._wheel||(this._wheel=!0,this._wheelY=0,this.userEvents.press(0,this._wheelY)),clearTimeout(this._wheelTimeout),this._wheelTimeout=setTimeout(this._wheelEnd,50);var e=function(t){var e,o=t.wheelDeltaY;return t.wheelDelta?(void 0===o||o)&&(e=t.wheelDelta):t.detail&&t.axis===t.VERTICAL_AXIS&&(e=10*-t.detail),e}(t);e&&(this._wheelY+=e,this.userEvents.move(0,this._wheelY)),t.preventDefault()}},e.prototype.makeVirtual=function(){this.dimensions.y.makeVirtual()},e.prototype.virtualSize=function(t,e){this.dimensions.y.virtualSize(t,e)},e.prototype.height=function(){return this.dimensions.y.size},e.prototype.scrollHeight=function(){return this.scrollElement.scrollHeight},e.prototype.scrollWidth=function(){return this.scrollElement.scrollWidth},e.prototype._resize=function(){this._native||this.contentResized()},e.prototype.setOptions=function(t){this._initOptions(t),t.pullToRefresh&&this._initPullToRefresh()},e.prototype.reset=function(){this._native?this.scrollElement.scrollTop(0):(this.movable.moveTo({x:0,y:0}),this._scale(1))},e.prototype.contentResized=function(){this.dimensions.refresh(),this.pane.x.outOfBounds()&&this.movable.moveAxis("x",this.dimensions.x.min),this.pane.y.outOfBounds()&&this.movable.moveAxis("y",this.dimensions.y.min)},e.prototype.zoomOut=function(){var t=this.dimensions;t.refresh(),this._scale(t.fitScale),this.movable.moveTo(t.centerCoordinates())},e.prototype.enable=function(){this.enabled=!0},e.prototype.disable=function(){this.enabled=!1},e.prototype.scrollTo=function(t,e){this._native?(this.scrollElement.scrollLeft(yg(t)),this.scrollElement.scrollTop(yg(e))):(this.dimensions.refresh(),this.movable.moveTo({x:t,y:e}))},e.prototype.animatedScrollTo=function(t,e,o){var r,n;this._native?this.scrollTo(t,e):(r={x:this.movable.x,y:this.movable.y},n={x:t,y:e},this.animatedScroller.setCoordinates(r,n),this.animatedScroller.setCallback(o),this.animatedScroller.start())},e.prototype.pullHandled=function(){},e.prototype.destroy=function(){ke(this.element,"wheel",this._wheelScrollHandler),this.userEvents&&this.userEvents.destroy()},e.prototype._scale=function(t){this.dimensions.rescale(t),this.movable.scaleTo(t)},e.prototype._initPullToRefresh=function(){},e.prototype._dragEnd=function(){},e.prototype._paneChange=function(){},e.prototype._initAxis=function(t){var e=this,o=e.movable,r=e.dimensions[t],n=e.tapCapture,i=e.pane[t],a=new Og({axis:t,movable:o,dimension:r,container:e.element,alwaysVisible:e.options.visibleScrollHints});r.bind(bg,(function(){a.refresh()})),i.bind(bg,(function(){a.show()})),e[t+"inertia"]=new _g({axis:t,paneAxis:i,movable:o,tapCapture:n,userEvents:e.userEvents,dimension:r,elastic:e.options.elastic,friction:e.options.friction||.96,velocityMultiplier:e.options.velocityMultiplier||10,end:function(){a.hide(),e.trigger("scrollEnd",{axis:t,scrollTop:e.scrollTop,scrollLeft:e.scrollLeft})}})},e}(Fe);Qt(Sg,{name:"Scroller",zoom:!1,pullOffset:140,visibleScrollHints:!1,elastic:!0,useNative:!1,mousewheelScrolling:!0,avoidScrolling:function(){return!1},pullToRefresh:!1,messages:{pullTemplate:"Pull to refresh",releaseTemplate:"Release to refresh",refreshTemplate:"Refreshing"}}),ym(Sg,["pull",xg,"resize"]);var zg=function(t,e){void 0===e&&(e={}),this.sender=e.sender||t,this.widget=t,this.rtl=Boolean(e.rtl)};zg.prototype.notify=function(t,e){this.widget&&this.widget.trigger(t,e)};const Mg=zg;var Pg=Math,Vg=Pg.min,Ag=Pg.pow,jg=$.geometry.Point,kg="marker",Hg="location",Ig="wheel",Bg={bubble:eg,shape:Jm,tile:Dm};Bg[kg]=ug;var Lg=function(t){function e(e,o,r,n){void 0===o&&(o={}),void 0===r&&(r={}),void 0===n&&(n={}),t.call(this),this._init(e,o,r,n)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.scroller.destroy(),this._tooltip&&this._tooltip.destroy(),this.navigator&&this.navigator.destroy(),this.attribution&&this.attribution.destroy(),this.zoomControl&&this.zoomControl.destroy(),F(this.markers)?this.markers.forEach((function(t){t.destroy()})):this.markers.destroy();for(var e=0;e<this.layers.length;e++)this.layers[e].destroy();ke(this.element,Ig,this._mousewheelHandler),t.prototype.destroy.call(this)},e.prototype._init=function(t,e,o,r){void 0===e&&(e={}),void 0===o&&(o={}),void 0===r&&(r={}),this.support=He(),this.context=r,this.initObserver(r),this.initServices(r),this._notifyObserver("init"),this._initOptions(e),this._setEvents(e),this.crs=new um,this._initElement(t),this._viewOrigin=this._getOrigin(),this._tooltip=this._createTooltip(),this._initScroller(),this._initMarkers(),this._initControls(),this._initLayers(),this._reset();var n=(0,$.throttle)(this._mousewheel.bind(this),50);this._mousewheelHandler=function(t){t.preventDefault(),n(t)},je(this.element,Ig,this._mousewheelHandler)},e.prototype._initOptions=function(t){this.options=it({},this.options,t)},e.prototype._initElement=function(t){this.element=t,U(t,"k-map"),t.style.position="relative",t.setAttribute("data-role","map"),vm(t);var e=dm("<div />");this.element.appendChild(e)},e.prototype.initServices=function(t){void 0===t&&(t={}),this.widgetService=new Mg(this,t)},e.prototype.initObserver=function(t){void 0===t&&(t={}),this.observers=[],this.addObserver(t.observer)},e.prototype.addObserver=function(t){t&&this.observers.push(t)},e.prototype.removeObserver=function(t){var e=this.observers.indexOf(t);e>=0&&this.observers.splice(e,1)},e.prototype.requiresHandlers=function(t){for(var e=this.observers,o=0;o<e.length;o++)if(e[o].requiresHandlers(t))return!0},e.prototype.trigger=function(e,o){void 0===o&&(o={}),o.sender=this;for(var r=this.observers,n=!1,i=0;i<r.length;i++)r[i].trigger(e,o)&&(n=!0);return n||t.prototype.trigger.call(this,e,o),n},e.prototype._notifyObserver=function(t,e){void 0===e&&(e={}),e.sender=this;for(var o=this.observers,r=!1,n=0;n<o.length;n++)o[n].trigger(t,e)&&(r=!0);return r},e.prototype.zoom=function(t){var e,o=this.options;if(Lt(t)){var r=Pg.round(Kt(t,o.minZoom,o.maxZoom));o.zoom!==r&&(o.zoom=r,this.widgetService.notify("zoomChange",{zoom:o.zoom}),this._reset()),e=this}else e=o.zoom;return e},e.prototype.center=function(t){var e;if(t){var o=Gf.create(t),r=Gf.create(this.options.center);o.equals(r)||(this.options.center=o.toArray(),this.widgetService.notify(jm,{center:this.options.center}),this._reset()),e=this}else e=Gf.create(this.options.center);return e},e.prototype.extent=function(t){var e;return t?(this._setExtent(t),e=this):e=this._getExtent(),e},e.prototype.setOptions=function(t){void 0===t&&(t={});var e=this.element;this.destroy(),vm(e),this._init(e,t,{},this.context),this._reset()},e.prototype.locationToLayer=function(t,e){var o=!this.options.wraparound,r=Gf.create(t);return this.crs.toPoint(r,this._layerSize(e),o)},e.prototype.layerToLocation=function(t,e){var o=!this.options.wraparound,r=jg.create(t);return this.crs.toLocation(r,this._layerSize(e),o)},e.prototype.locationToView=function(t){var e=Gf.create(t),o=this.locationToLayer(this._viewOrigin);return this.locationToLayer(e).translateWith(o.scale(-1))},e.prototype.viewToLocation=function(t,e){var o=this.locationToLayer(this._getOrigin(),e),r=jg.create(t).clone().translateWith(o);return this.layerToLocation(r,e)},e.prototype.eventOffset=function(t){var e,o,r=Et(this.element);if(t.x&&t.x[Hg]||t.y&&t.y[Hg])e=t.x[Hg]-r.left,o=t.y[Hg]-r.top;else{var n=t.originalEvent||t;e=Yt(n.pageX,n.clientX)-r.left,o=Yt(n.pageY,n.clientY)-r.top}return new $.geometry.Point(e,o)},e.prototype.eventToView=function(t){var e=this.eventOffset(t);return this.locationToView(this.viewToLocation(e))},e.prototype.eventToLayer=function(t){return this.locationToLayer(this.eventToLocation(t))},e.prototype.eventToLocation=function(t){var e=this.eventOffset(t);return this.viewToLocation(e)},e.prototype.viewSize=function(){var t=this.element,e=this._layerSize(),o=t.clientWidth;return this.options.wraparound||(o=Vg(e,o)),{width:o,height:Vg(e,t.clientHeight)}},e.prototype.exportVisual=function(){return this._reset(),!1},e.prototype.hideTooltip=function(){this._tooltip&&this._tooltip.hide()},e.prototype._setOrigin=function(t,e){var o,r=this.viewSize(),n=this._origin=Gf.create(t);return(o=this.locationToLayer(n,e)).x+=r.width/2,o.y+=r.height/2,this.options.center=this.layerToLocation(o,e).toArray(),this.widgetService.notify(jm,{center:this.options.center}),this},e.prototype._getOrigin=function(t){var e,o=this.viewSize();return!t&&this._origin||((e=this.locationToLayer(this.center())).x-=o.width/2,e.y-=o.height/2,this._origin=this.layerToLocation(e)),this._origin},e.prototype._setExtent=function(t){var e=Am.create(t),o=e.se.clone();this.options.wraparound&&o.lng<0&&t.nw.lng>0&&(o.lng=180+(180+o.lng));var r=new Am(e.nw,o);this.center(r.center());var n,i=this.element.clientWidth,a=this.element.clientHeight;for(n=this.options.maxZoom;n>=this.options.minZoom;n--){var s=this.locationToLayer(r.nw,n),c=this.locationToLayer(r.se,n),l=Pg.abs(c.x-s.x),h=Pg.abs(c.y-s.y);if(l<=i&&h<=a)break}this.zoom(n)},e.prototype._getExtent=function(){var t=this._getOrigin(),e=this.locationToLayer(t),o=this.viewSize();e.x+=o.width,e.y+=o.height;var r=this.layerToLocation(e);return new Am(t,r)},e.prototype._zoomAround=function(t,e){this._setOrigin(this.layerToLocation(t,e),e),this.zoom(e)},e.prototype._initControls=function(){var t=this.options.controls;t.attribution&&this._createAttribution(t.attribution),this.support.mobileOS||(t.navigator&&this._createNavigator(t.navigator),t.zoom&&this._createZoomControl(t.zoom))},e.prototype._createControlElement=function(t,e){var o=t.position||e,r="."+bm(o).replace(" ","."),n=this.element.querySelector(".k-map-controls"+r)||[];if(0===n.length){var i=document.createElement("div");U(i,"k-map-controls "+bm(o)),n=i,this.element.appendChild(n)}var a=document.createElement("div");return n.appendChild(a),a},e.prototype._createAttribution=function(t){var e=this._createControlElement(t,"bottomRight");this.attribution=new xm(e,t)},e.prototype._createNavigator=function(t){var e=this._createControlElement(t,"topLeft"),o=this.navigator=new Cm(e,it({},t,{icons:this.options.icons}));this._navigatorPan=this._navigatorPan.bind(this),o.bind("pan",this._navigatorPan),this._navigatorCenter=this._navigatorCenter.bind(this),o.bind("center",this._navigatorCenter)},e.prototype._navigatorPan=function(t){var e=this.scroller,o=e.scrollLeft+t.x,r=e.scrollTop-t.y,n=this._virtualSize,i=this.element.clientWidth,a=this.element.clientHeight;o=Kt(o,n.x.min,n.x.max-i),r=Kt(r,n.y.min,n.y.max-a),this.scroller.one("scroll",pm(this._scrollEnd,this)),this.scroller.scrollTo(-o,-r)},e.prototype._navigatorCenter=function(){this.center(this.options.center)},e.prototype._createZoomControl=function(t){var e=this._createControlElement(t,"topLeft"),o=this.zoomControl=new zm(e,t,this.options.icons);this._zoomControlChange=this._zoomControlChange.bind(this),o.bind("change",this._zoomControlChange)},e.prototype._zoomControlChange=function(t){this.trigger("zoomStart",{originalEvent:t})||(this.zoom(this.zoom()+t.delta),this.trigger("zoomEnd",{originalEvent:t}))},e.prototype._initScroller=function(){var t=this.support.mobileOS?.93:.9,e=!1!==this.options.zoomable,o=this.scroller=new Sg(this.element.children[0],{friction:t,velocityMultiplier:5,zoom:e,mousewheelScrolling:!1,supportDoubleTap:!0});o.bind("scroll",pm(this._scroll,this)),o.bind("scrollEnd",pm(this._scrollEnd,this)),o.userEvents.bind("gesturestart",pm(this._scaleStart,this)),o.userEvents.bind("gestureend",pm(this._scale,this)),o.userEvents.bind("doubleTap",pm(this._doubleTap,this)),o.userEvents.bind("tap",pm(this._tap,this)),this.scrollElement=o.scrollElement},e.prototype._initLayers=function(){for(var t=this.options.layers,e=this.layers=[],o=0;o<t.length;o++){var r=t[o],n=this._createLayer(r);e.push(n)}},e.prototype._createLayer=function(t){var e=t.type||"shape",o=this.options.layerDefaults[e],r=e===kg?it({},this.options.markerDefaults,t,{icons:this.options.icons}):it({},o,t),n=new(0,Bg[e])(this,r);return e===kg&&(this.markers=n),n},e.prototype._createTooltip=function(){return new km(this.widgetService,this.options.tooltip)},e.prototype._initMarkers=function(){(this.options.layers||[]).filter((function(t){return t&&t.type===kg})).length>0||(this.markers=new ug(this,it({},this.options.markerDefaults,{icons:this.options.icons})),this.markers.add(this.options.markers))},e.prototype._scroll=function(t){var e=this.locationToLayer(this._viewOrigin).round(),o=t.sender.movable,r=new $.geometry.Point(o.x,o.y).scale(-1).scale(1/o.scale);e.x+=r.x,e.y+=r.y,this._scrollOffset=r,this._tooltip.offset=r,this.hideTooltip(),this._setOrigin(this.layerToLocation(e)),this.trigger("pan",{originalEvent:t,origin:this._getOrigin(),center:this.center()})},e.prototype._scrollEnd=function(t){this._scrollOffset&&this._panComplete()&&(this._scrollOffset=null,this._panEndTimestamp=Le(),this.trigger("panEnd",{originalEvent:t,origin:this._getOrigin(),center:this.center()}))},e.prototype._panComplete=function(){return Le()-(this._panEndTimestamp||0)>50},e.prototype._scaleStart=function(t){if(this.trigger("zoomStart",{originalEvent:t})){var e=t.touches[1];e&&e.cancel()}},e.prototype._scale=function(t){var e=this.scroller.movable.scale,o=this._scaleToZoom(e),r=new $.geometry.Point(t.center.x,t.center.y),n=this.viewToLocation(r,o),i=this.locationToLayer(n,o).translate(-r.x,-r.y);this._zoomAround(i,o),this.trigger("zoomEnd",{originalEvent:t})},e.prototype._scaleToZoom=function(t){var e=this._layerSize()*t/this.options.minSize,o=Pg.log(e)/Pg.log(2);return Pg.round(o)},e.prototype._reset=function(){this.attribution&&this.attribution.filter(this.center(),this.zoom()),this._viewOrigin=this._getOrigin(!0),this._resetScroller(),this.hideTooltip(),this.trigger("beforeReset"),this.trigger("reset")},e.prototype._resetScroller=function(){var t=this.scroller,e=t.dimensions.x,o=t.dimensions.y,r=this._layerSize(),n=this.extent().nw,i=this.locationToLayer(n).round();t.movable.round=!0,t.reset(),t.userEvents.cancel();var a=this.zoom();t.dimensions.forcedMinScale=Ag(2,this.options.minZoom-a),t.dimensions.maxScale=Ag(2,this.options.maxZoom-a);var s={min:-i.x,max:r-i.x},c={min:-i.y,max:r-i.y};if(this.options.wraparound&&(s.max=20*r,s.min=-s.max),!1===this.options.pannable){var l=this.viewSize();s.min=c.min=0,s.max=l.width,c.max=l.height}e.makeVirtual(),o.makeVirtual(),e.virtualSize(s.min,s.max),o.virtualSize(c.min,c.max),this._virtualSize={x:s,y:c}},e.prototype._renderLayers=function(){},e.prototype._layerSize=function(t){var e=Yt(t,this.options.zoom);return this.options.minSize*Ag(2,e)},e.prototype._tap=function(t){if(this._panComplete()){var e=this.eventOffset(t);this.hideTooltip(),this.trigger("click",{originalEvent:t,location:this.viewToLocation(e)})}},e.prototype._doubleTap=function(t){if(!1!==this.options.zoomable&&!this.trigger("zoomStart",{originalEvent:t})){var e=this.zoom()+1,o=this.eventOffset(t),r=this.viewToLocation(o),n=this.locationToLayer(r,e).translate(-o.x,-o.y);this._zoomAround(n,e),this.trigger("zoomEnd",{originalEvent:t})}},e.prototype._mousewheel=function(t){var e=kt(t)>0?-1:1,o=this.options,r=this.zoom(),n=Kt(r+e,o.minZoom,o.maxZoom);if(!1!==o.zoomable&&n!==r&&!this.trigger("zoomStart",{originalEvent:t})){var i=this.eventOffset(t),a=this.viewToLocation(i),s=this.locationToLayer(a,n).translate(-i.x,-i.y);this._zoomAround(s,n),this.trigger("zoomEnd",{originalEvent:t})}},e.prototype._toDocumentCoordinates=function(t){var e=Et(this.element);return{left:Xt(t.x+e.left),top:Xt(t.y+e.top)}},e}(Fe);Qt(Lg,{name:"Map",controls:{attribution:!0,navigator:{panStep:100},zoom:!0},layers:[],layerDefaults:{shape:{style:{fill:{color:"#fff"},stroke:{color:"#aaa",width:.5}}},bubble:{style:{fill:{color:"#fff",opacity:.5},stroke:{color:"#aaa",width:.5}}},marker:{shape:"pinTarget",tooltip:{position:"top"}}},center:[0,0],icons:{type:"font",svgIcons:{}},zoom:3,minSize:256,minZoom:1,maxZoom:19,markers:[],markerDefaults:{shape:"pinTarget",tooltip:{position:"top"}},wraparound:!0,renderPointsAsMarkers:!1}),ym(Lg,["beforeReset","click","markerActivate","markerClick","markerCreated","markerMouseEnter","markerMouseLeave","pan","panEnd","reset","shapeClick","shapeCreated","shapeFeatureCreated","shapeMouseEnter","shapeMouseLeave","zoomEnd","zoomStart"]);const Tg=Lg;var Eg=function(t,e){return t.map(e).reduce((function(t,e){return t+e}),0)},Dg=function(t,e){return t.y0===e.y0?t.index-e.index:t.y0+t.y1-e.y0-e.y1},Ng=function(t,e){return Dg(t.source,e.source)},Rg=function(t,e){return Dg(t.target,e.target)},Fg=function(t){return t.value};function Ug(t){t.forEach((function(t){t.targetLinks.forEach((function(t){t.source.sourceLinks.sort(Rg)})),t.sourceLinks.forEach((function(t){t.target.targetLinks.sort(Ng)}))}))}var Kg=function(t,e){return"left"===t.align?t.depth:"right"===t.align?e-t.height:t.sourceLinks.length?t.depth:e},qg=function(t){var e=t.nodesOptions,o=e.offset;void 0===o&&(o={});var r=e.align;this.data={nodes:t.nodes.map((function(t){return it({},{offset:o,align:r},t)})),links:t.links.map((function(t){return it({},t)}))},this.width=t.width,this.height=t.height,this.offsetX=t.offsetX||0,this.offsetY=t.offsetY||0,this.nodeWidth=t.nodesOptions.width,this.nodePadding=t.nodesOptions.padding,this.reverse=t.reverse,this.targetColumnIndex=t.targetColumnIndex,this.loops=t.loops,this.autoLayout=t.autoLayout};qg.prototype.calculate=function(){var t=this.data,e=t.nodes,o=t.links;this.connectLinksToNodes(e,o),this.calculateNodeValues(e);var r=this.calculateNodeHeights(e);if(r)return{nodes:[],links:[],columns:[],circularLinks:r};this.calculateNodeDepths(e);var n=this.calculateNodeColumns(e);return this.calculateNodeBreadths(n),this.applyNodesOffset(e),this.calculateLinkBreadths(e),Object.assign({},this.data,{columns:n})},qg.prototype.connectLinksToNodes=function(t,e){var o=new Map;t.forEach((function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[],t.id=void 0!==t.id?t.id:t.label.text,o.set(t.id,t)})),e.forEach((function(t){t.source=o.get(t.sourceId),t.target=o.get(t.targetId),t.source.sourceLinks.push(t),t.target.targetLinks.push(t)}))},qg.prototype.calculateNodeValues=function(t){t.forEach((function(t){t.value=Math.max(Eg(t.sourceLinks,Fg),Eg(t.targetLinks,Fg))}))},qg.prototype.calculateNodeDepths=function(t){for(var e=new Set(t),o=new Set,r=0;e.size;){for(var n=Array.from(e),i=0;i<n.length;i++){var a=n[i];a.depth=r;for(var s=0;s<a.sourceLinks.length;s++){var c=a.sourceLinks[s];o.add(c.target)}}r++,e=o,o=new Set}},qg.prototype.calculateNodeHeights=function(t){for(var e=t.length,o=new Set(t),r=new Set,n=0,i=function(t){t.height=n,t.targetLinks.forEach((function(t){r.add(t.source)}))};o.size;){if(o.forEach(i),++n>e)return!0;o=r,r=new Set}return!1},qg.prototype.calculateNodeColumns=function(t){for(var e,o,r=(e=t,o=function(t){return t.depth},Math.max.apply(null,e.map(o))),n=(this.width-this.offsetX-this.nodeWidth)/r,i=new Array(r+1),a=0;a<t.length;a++){var s=t[a],c=Math.max(0,Math.min(r,Kg(s,r)));s.x0=this.offsetX+c*n,s.x1=s.x0+this.nodeWidth,s.layer=c,i[c]=i[c]||[],i[c].push(s)}return i},qg.prototype.calculateNodeBreadths=function(t){var e,o,r=this,n=(e=t,o=function(t){return(r.height-r.offsetY-(t.length-1)*r.nodePadding)/Eg(t,Fg)},Math.min.apply(null,e.map(o)));if(t.forEach((function(t){var e=r.offsetY;t.forEach((function(t){t.y0=e,t.y1=e+t.value*n,e=t.y1+r.nodePadding,t.sourceLinks.forEach((function(t){t.width=t.value*n}))})),e=(r.height-e+r.nodePadding)/(t.length+1),t.forEach((function(t,o){t.y0+=e*(o+1),t.y1+=e*(o+1)}))})),!1!==this.autoLayout)for(var i=void 0!==this.loops?this.loops:t.length-1,a=this.targetColumnIndex||1,s=0;s<i;s++)r.reverse?(r.uncurlLinksToRight(t,a),r.uncurlLinksToLeft(t,a)):(r.uncurlLinksToLeft(t,a),r.uncurlLinksToRight(t,a));t.forEach(Ug)},qg.prototype.applyNodesOffset=function(t){t.forEach((function(t){var e=(t.offset?t.offset.left:0)||0,o=(t.offset?t.offset.top:0)||0;t.x0+=e,t.x1+=e,t.y0+=o,t.y1+=o}))},qg.prototype.calculateLinkBreadths=function(t){t.forEach((function(t){var e=t.sourceLinks,o=t.targetLinks,r=t.y0,n=r;e.forEach((function(t){t.x0=t.source.x1,t.y0=r+t.width/2,r+=t.width})),o.forEach((function(t){t.x1=t.target.x0,t.y1=n+t.width/2,n+=t.width}))}))},qg.prototype.uncurlLinksToRight=function(t,e){for(var o=this,r=t.length,n=e;n<r;n++){var i=t[n];i.forEach((function(t){var e=0,r=0;t.targetLinks.forEach((function(n){var i=n.value*(t.layer-n.source.layer);e+=o.targetTopPos(n.source,t)*i,r+=i}));var n=0===e?0:e/r-t.y0;t.y0+=n,t.y1+=n,Ug([t])})),i.sort(Dg),o.arrangeNodesVertically(i)}},qg.prototype.uncurlLinksToLeft=function(t,e){for(var o=this,r=t.length-1-e;r>=0;r--){for(var n=t[r],i=function(t){var e=n[t],r=0,i=0;e.sourceLinks.forEach((function(t){var n=t.value*(t.target.layer-e.layer);r+=o.sourceTopPos(e,t.target)*n,i+=n}));var a=0===r?0:r/i-e.y0;e.y0+=a,e.y1+=a,Ug([e])},a=0;a<n.length;a++)i(a);n.sort(Dg),o.arrangeNodesVertically(n)}},qg.prototype.arrangeNodesVertically=function(t){var e=t.length-1;this.arrangeUp(t,this.height,e),this.arrangeDown(t,this.offsetY,0)},qg.prototype.arrangeDown=function(t,e,o){for(var r=e,n=o;n<t.length;n++){var i=t[n],a=Math.max(0,r-i.y0);i.y0+=a,i.y1+=a,r=i.y1+this.nodePadding}},qg.prototype.arrangeUp=function(t,e,o){for(var r=e,n=o;n>=0;--n){var i=t[n],a=Math.max(0,i.y1-r);i.y0-=a,i.y1-=a,r=i.y0-this.nodePadding}},qg.prototype.sourceTopPos=function(t,e){for(var o=e.y0-(e.targetLinks.length-1)*this.nodePadding/2,r=0;r<e.targetLinks.length;r++){var n=e.targetLinks[r];if(n.source===t)break;o+=n.width+this.nodePadding}for(var i=0;i<t.sourceLinks.length;i++){var a=t.sourceLinks[i];if(a.target===e)break;o-=a.width}return o},qg.prototype.targetTopPos=function(t,e){for(var o=t.y0-(t.sourceLinks.length-1)*this.nodePadding/2,r=0;r<t.sourceLinks.length;r++){var n=t.sourceLinks[r];if(n.target===e)break;o+=n.width+this.nodePadding}for(var i=0;i<e.targetLinks.length;i++){var a=e.targetLinks[i];if(a.source===t)break;o-=a.width}return o};var $g=function(t){return new qg(t).calculate()};function Xg(t,e,o,r,n,i){var a=(i-e)*(o-t),s=(r-e)*(n-t);return a>s?1:a===s?0:-1}var Gg=function(t){function e(e){t.call(this),this.options=it({},this.options,e),this.createVisual()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createVisual=function(){this.visual=this.createElement()},e.prototype.exportVisual=function(){return this.visual},e.prototype.createElement=function(){var t=this,e=this.options.visual;return e?e({sender:this.getSender(),options:this.visualOptions(),createVisual:function(){return t.getElement()}}):this.getElement()},e.prototype.getSender=function(){return this},e}($.Class),Yg=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){return $.drawing.Path.fromRect(this.getRect(),this.visualOptions())},e.prototype.getRect=function(){var t=this.options.node;return new $.geometry.Rect([t.x0,t.y0],[t.x1-t.x0,t.y1-t.y0])},e.prototype.getLabelText=function(t){var e=t.labels.ariaTemplate;if(e)return e({node:t.node})},e.prototype.visualOptions=function(){var t=it({},this.options,this.options.node),e=this.getLabelText(t);return{fill:{color:t.color,opacity:t.opacity},stroke:{width:0},className:"k-sankey-node",role:"graphics-symbol",ariaRoleDescription:"Node",ariaLabel:e}},e.prototype.createFocusHighlight=function(){if(this.options.navigatable)return this._highlight=$.drawing.Path.fromRect(this.getRect(),{stroke:this.options.focusHighlight,visible:!1}),this._highlight},e.prototype.focus=function(t){if(this._highlight){var e=(t||{}).highlight;void 0===e&&(e=!0),e&&this._highlight.options.set("visible",!0);var o=this.options.node.id;this.visual.options.set("id",o),this.options.root()&&this.options.root().setAttribute(l,o)}},e.prototype.blur=function(){this._highlight&&(this._highlight.options.set("visible",!1),this.visual.options.set("id",""),this.options.root()&&this.options.root().removeAttribute(l))},e}(Gg),Wg=function(t,e,o){return t.color||e[o%e.length]},Zg=function(t,e,o,r){var n=it({},e,e.node);return it({},{color:Wg(t,o,r)},n,{node:t},{visual:t.visual,opacity:t.opacity,offset:t.offset,color:t.color})},Qg=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=this.options.link,e=t.x0,o=t.x1,r=t.y0,n=t.y1,i=(e+o)/2;return new $.drawing.Path(this.visualOptions()).moveTo(e,r).curveTo([i,r],[i,n],[o,n])},e.prototype.getLabelText=function(t){var e=t.labels.ariaTemplate;if(e)return e({link:t.link})},e.prototype.visualOptions=function(){var t=this.options,e=this.options.link,o=this.getLabelText(t);return{stroke:{width:t.link.width,color:e.color||t.color,opacity:Lt(e.opacity)?e.opacity:t.opacity},role:"graphics-symbol",ariaRoleDescription:"Link",ariaLabel:o}},e.prototype.createFocusHighlight=function(){if(this.options.navigatable){var t=this.options,e=t.link,o=t.rtl,r=e.x0,n=e.x1,i=e.y0,a=e.y1,s=(r+n)/2,c=e.width/2,l=function(t,e){var o,r,n,i,a,s,c=t.x0,l=t.x1,h=t.y0,u=t.y1,p=(c+l)/2,d=t.width,v=d/2,f=[[(c+p)/2,h-v],[(l+p)/2,u-v]],m=function(t,e){var o=t[0],r=o[0],n=o[1],i=t[1],a=i[0],s=i[1],c=e[0],l=e[1];return Math.abs((a-r)*(l-n)-(c-r)*(s-n))/Math.sqrt(Math.pow(a-r,2)+Math.pow(s-n,2))}(f,[p,(o=h+v,r=h+v,n=u+v,i=u+v,a=.5,s=.5,.25*o*s+3*r*a*.25+3*n*.25*s+.25*i*a)]),g=(d-m)/2,y=function(t,e){var o=t[0],r=o[0],n=o[1],i=t[1],a=i[0],s=i[1],c=e[0],l=c[0],h=c[1],u=e[1],p=u[0],d=u[1],v=Math.atan2(s-n,a-r),f=Math.atan2(d-h,p-l);return Math.abs(v-f)}(f,[[c,h-v],[p,h-v]]),b=g,x=Math.sin(y)*b,w=h-u>0?-1:1;return e&&(w=-w),w*Math.sqrt(b*b+x*x)}(e,o);this._highlight=new $.drawing.Path({stroke:this.options.focusHighlight,visible:!1}).moveTo(r,i+c).lineTo(r,i-c).curveTo([s+l,i-c],[s+l,a-c],[n,a-c]).lineTo(n,a+c).curveTo([s-l,a+c],[s-l,i+c],[r,i+c])}},e.prototype.focus=function(t){if(this._highlight){var e=(t||{}).highlight;void 0===e&&(e=!0),e&&this._highlight.options.set("visible",!0);var o=this.options.link.sourceId+"->"+this.options.link.targetId;this.visual.options.set("id",o),this.options.root()&&this.options.root().setAttribute(l,o)}},e.prototype.blur=function(){this._highlight&&(this._highlight.options.set("visible",!1),this.visual.options.set("id",""),this.options.root()&&this.options.root().removeAttribute(l))},e}(Gg),Jg="inside",ty="before",ey="after",oy=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=it({},this.options,this.options.node.label),e=t.node,o=t.diagramMinX,r=t.diagramMaxX,n=t.text,i=t.offset,a=t.rtl,s=t.position;if(a&&s!==Jg&&(s=s===ty?ey:ty),!t.visible||!n)return null;var c=new yo(e.x0,e.y0,e.x1,e.y1),l=this.visualOptions();a&&!l.align&&(l.align="right");var h=new $o(n,l);h.reflow(new yo);var u=h.box,p=c.center().y-u.height()/2,d=e.x1+u.width()>r,v=e.x0-u.width()<o,f=s===ty||s===Jg&&d?ty:ey;a&&(f=s===ey||s===Jg&&v?ey:ty);var m=[f===ty?e.x0-u.width():e.x1,p],g=new yo(m[0],m[1],m[0]+u.width(),m[1]+u.height());return g.translate(i.left||0,i.top||0),h.reflow(g),h.renderVisual(),h.visual},e.prototype.visualOptions=function(){var t=it({},this.options,this.options.node.label);return{color:t.color,font:t.font,border:t.border,margin:t.margin,padding:t.padding,align:t.align,paintOrder:t.paintOrder,stroke:t.stroke}},e}(Gg);Qt(oy,{position:Jg});var ry=function(t,e,o,r,n){return it({},e,{node:t,diagramMinX:r,diagramMaxX:n,rtl:o,visual:t.label.visual,visible:t.label.visible,margin:t.label.margin,padding:t.label.padding,border:t.label.border,align:t.label.align,offset:t.label.offset})},ny=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=this.options,e=t.drawingRect,o=t.text;if(!1===t.visible||!o)return null;var r=Yo.buildTitle(o,t);return r.reflow(e),r.renderVisual(),r.visual},e.prototype.createElement=function(){return this.getElement()},e}(Gg);Qt(ny,{align:p,border:{width:0},margin:ut(5),padding:ut(5)});var iy=function(t,e){return t.node.x0-e.node.x0!=0?t.node.x0-e.node.x0:t.node.y0-e.node.y0},ay=function(t,e){return t.node.x1-e.node.x1!=0?t.node.x1-e.node.x1:e.node.y0-t.node.y0},sy=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=this.options,e=t.drawingRect,o=t.rtl,r=t.nodes;void 0===r&&(r=[]);var n=t.item,i=t.position;if(!1===t.visible||!r.length)return null;var a=r.map((function(t){return{text:t.label&&t.label.text||"",area:{background:void 0!==n.areaBackground?n.areaBackground:t.color,opacity:void 0!==n.areaOpacity?n.areaOpacity:t.opacity},node:t}}));a.sort(function(t){return t?ay:iy}(o));var s=o&&i!==O&&i!==A,c=new Xl(Object.assign({},t,{data:a,reverse:s}),{rtl:o});return c.reflow(e),c.renderVisual(),c.visual},e.prototype.createElement=function(){return this.getElement()},e}(Gg);Qt(sy,{markers:{visible:!1},item:{type:di,cursor:N,opacity:1},position:u,align:p,accessibility:{role:"presentation",ariaLabel:null,ariaRoleDescription:null},border:{width:0}});var cy="link",ly="node",hy=function(t){function e(e,o,r){t.call(this),this._initTheme(r),this._setOptions(o),this._initElement(e),this._initSurface(),o&&o.data&&(this._redraw(),this._initResizeObserver(),this._initNavigation(e))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.unbind(),this._destroySurface(),this._destroyResizeObserver(),this.element&&(this.element.removeEventListener("keydown",this._keydownHandler),this.element.removeEventListener("focus",this._focusHandler),this.element.removeEventListener("mousedown",this._onDownHandler),this.element.removeEventListener("touchstart",this._onDownHandler),this.element.removeEventListener("pointerdown",this._onDownHandler)),this._focusState=null,this.element=null},e.prototype._initElement=function(t){this.element=t,U(t,["k-chart","k-sankey"]),t.setAttribute("role","graphics-document");var e=this.options.title;e.text&&t.setAttribute("aria-label",e.text),e.description&&t.setAttribute("aria-roledescription",e.description)},e.prototype._initSurface=function(){this.surface||(this._destroySurface(),this._initSurfaceElement(),this.surface=this._createSurface())},e.prototype._initNavigation=function(t){t.tabIndex=t.getAttribute("tabindex")||0,this.options.disableKeyboardNavigation||(this._keydownHandler=this._keydown.bind(this),this._focusHandler=this._focus.bind(this),this._blurHandler=this._blur.bind(this),this._onDownHandler=this._onDown.bind(this),t.addEventListener("keydown",this._keydownHandler),t.addEventListener("focus",this._focusHandler),t.addEventListener("blur",this._blurHandler),t.addEventListener("mousedown",this._onDownHandler),t.addEventListener("touchstart",this._onDownHandler),t.addEventListener("pointerdown",this._onDownHandler),this._focusState={node:this.firstFocusableNode(),link:null})},e.prototype.firstFocusableNode=function(){return this.columns[0][0]},e.prototype._initResizeObserver=function(){var t=this,e=new ResizeObserver((function(e){e.forEach((function(e){var o=e.contentRect,r=o.width,n=o.height;e.target!==t.element||t.size&&t.size.width===r&&t.size.height===n||(t.size={width:r,height:n},t.surface.setSize(t.size),t.resize=!0,t._redraw())}))}));this._resizeObserver=e,e.observe(this.element)},e.prototype._createSurface=function(){return $.drawing.Surface.create(this.surfaceElement,{mouseenter:this._mouseenter.bind(this),mouseleave:this._mouseleave.bind(this),mousemove:this._mousemove.bind(this),click:this._click.bind(this)})},e.prototype._initTheme=function(t){var e=t||this.theme||{};this.theme=e,this.options=it({},e,this.options)},e.prototype.setLinksOpacity=function(t){var e=this;this.linksVisuals.forEach((function(o){e.setOpacity(o,t,o.linkOptions.opacity)}))},e.prototype.setLinksInactivityOpacity=function(t){var e=this;this.linksVisuals.forEach((function(o){e.setOpacity(o,t,o.linkOptions.highlight.inactiveOpacity)}))},e.prototype.setOpacity=function(t,e,o){t.options.set("stroke",Object.assign({},t.options.stroke,{opacity:Lt(o)?o:e}))},e.prototype.trigger=function(e,o){var r=o.element.dataItem,n=o.element.type,i=Object.assign({},o,{type:e,targetType:n,dataItem:r});return t.prototype.trigger.call(this,e,i)},e.prototype._mouseenter=function(t){var e=t.element,o=e.type===cy,r=e.type===ly,n=Boolean(e.chartElement&&e.chartElement.options.node);if(!(o&&this.trigger("linkEnter",t)||r&&this.trigger("nodeEnter",t))){var i=this.options.links.highlight;if(o)this.setLinksInactivityOpacity(i.inactiveOpacity),this.setOpacity(e,i.opacity,e.linkOptions.highlight.opacity);else if(r)this.highlightLinks(e,i);else if(n){var a=this.nodesVisuals.get(e.chartElement.options.node.id);this.highlightLinks(a,i)}}},e.prototype._mouseleave=function(t){var e=this,o=t.element,r=o.type===cy,n=o.type===ly,i=Boolean(o.chartElement&&o.chartElement.options.node),a=t.originalEvent.relatedTarget;r&&a&&"text"===a.nodeName||((r||n)&&(this.tooltipTimeOut&&(clearTimeout(this.tooltipTimeOut),this.tooltipTimeOut=null),this.tooltipShown=!1,this.trigger("tooltipHide",t)),r&&this.trigger("linkLeave",t)||n&&this.trigger("nodeLeave",t)||(r||n||i)&&this.linksVisuals.forEach((function(t){e.setOpacity(t,e.options.links.opacity,t.linkOptions.opacity)})))},e.prototype._mousemove=function(t){var e=this,o=this.options.tooltip,r=o.followPointer,n=o.delay,i=t.element,a=i.type;if(!(a!==cy&&a!==ly||this.tooltipShown&&!r)){var s=t.originalEvent,c=this.element.getBoundingClientRect(),l=s.clientX-c.left<c.width/2,h=s.clientY-c.top<c.height/2;if(t.tooltipData={popupOffset:{left:s.pageX,top:s.pageY},popupAlign:{horizontal:l?"left":"right",vertical:h?"top":"bottom"}},a===ly){var u=i.dataItem,p=u.sourceLinks,d=u.targetLinks,v=d.length?d:p;t.nodeValue=v.reduce((function(t,e){return t+e.value}),0)}this.tooltipTimeOut&&(clearTimeout(this.tooltipTimeOut),this.tooltipTimeOut=null);var f=r&&this.tooltipShown?0:n;this.tooltipTimeOut=setTimeout((function(){e.trigger("tooltipShow",t),e.tooltipShown=!0,e.tooltipTimeOut=null}),f)}},e.prototype._click=function(t){var e=t.element,o=e.dataItem,r=e.type===cy,n=e.type===ly,i=this._focusState||{};if(n)!i.link&&this.sameNode(i.node,o)||(this._focusState={node:o,link:null},this._focusNode({highlight:!1})),this.trigger("nodeClick",t);else if(r){var a={sourceId:o.source.id,targetId:o.target.id,value:o.value};this.sameLink(i.link,a)||(this._focusState={node:o.source,link:a},this._focusLink({highlight:!1})),this.trigger("linkClick",t)}},e.prototype.sameNode=function(t,e){return t&&e&&t.id===e.id},e.prototype.sameLink=function(t,e){return t&&e&&t.sourceId===e.sourceId&&t.targetId===e.targetId},e.prototype._focusNode=function(t){this._cleanFocusHighlight();var e=this._focusState.node;this.models.map.get(e.id).focus(t)},e.prototype._focusLink=function(t){this._cleanFocusHighlight();var e=this._focusState.link;this.models.map.get(e.sourceId+"-"+e.targetId).focus(t)},e.prototype._focusNextNode=function(t){void 0===t&&(t=1);var e=this._focusState.node,o=this.columns.findIndex((function(t){return t.find((function(t){return t.id===e.id}))})),r=this.columns[o],n=r.findIndex((function(t){return t.id===e.id})),i=r[n+t];i&&(this._focusState.node=i,this._focusNode())},e.prototype._focusNextLink=function(t){void 0===t&&(t=1);var e=this._focusState.node,o=this._focusState.link,r=e.sourceLinks.findIndex((function(t){return t.sourceId===o.sourceId&&t.targetId===o.targetId})),n=e.targetLinks.findIndex((function(t){return t.sourceId===o.sourceId&&t.targetId===o.targetId}));if(-1!==r){var i=e.sourceLinks[r+t];i&&(this._focusState.link=i,this._focusLink())}else if(-1!==n){var a=e.targetLinks[n+t];a&&(this._focusState.link=a,this._focusLink())}},e.prototype._focusSourceNode=function(){var t=this._focusState.link,e=this.models.map.get(t.sourceId);this._focusState={node:e.options.node,link:null},this._focusNode()},e.prototype._focusTargetNode=function(){var t=this._focusState.link,e=this.models.map.get(t.targetId);this._focusState={node:e.options.node,link:null},this._focusNode()},e.prototype._focusSourceLink=function(){var t=this._focusState.node.sourceLinks[0];t&&(this._focusState.link=t,this._focusLink())},e.prototype._focusTargetLink=function(){var t=this._focusState.node.targetLinks[0];t&&(this._focusState.link=t,this._focusLink())},e.prototype._focus=function(){this._skipFocusHighlight||(this._focusState.link?this._focusLink():this._focusNode()),this._skipFocusHighlight=!1},e.prototype._blur=function(){this._cleanFocusHighlight()},e.prototype._onDown=function(){this._hasFocus()||(this._skipFocusHighlight=!0)},e.prototype._hasFocus=function(){return this.element.ownerDocument.activeElement===this.element},e.prototype._cleanFocusHighlight=function(){this.models.nodes.forEach((function(t){return t.blur()})),this.models.links.forEach((function(t){return t.blur()}))},e.prototype._keydown=function(t){var e=this["on"+t.key],o=this.options.rtl;o&&"ArrowLeft"===t.key?e=this.onArrowRight:o&&"ArrowRight"===t.key&&(e=this.onArrowLeft),e&&e.call(this,t)},e.prototype.onEscape=function(t){t.preventDefault(),this._focusState={node:this.firstFocusableNode(),link:null},this._focusNode()},e.prototype.onArrowDown=function(t){t.preventDefault(),this._focusState.link?this._focusNextLink(1):this._focusNextNode(1)},e.prototype.onArrowUp=function(t){t.preventDefault(),this._focusState.link?this._focusNextLink(-1):this._focusNextNode(-1)},e.prototype.onArrowLeft=function(t){t.preventDefault(),this._focusState.link?this._focusSourceNode():this._focusTargetLink()},e.prototype.onArrowRight=function(t){t.preventDefault(),this._focusState.link?this._focusTargetNode():this._focusSourceLink()},e.prototype.highlightLinks=function(t,e){var o=this;t&&(this.setLinksInactivityOpacity(e.inactiveOpacity),t.links.forEach((function(t){o.setOpacity(t,e.opacity,t.linkOptions.highlight.opacity)})))},e.prototype._destroySurface=function(){this.surface&&(this.surface.destroy(),this.surface=null,this._destroySurfaceElement())},e.prototype._destroyResizeObserver=function(){this._resizeObserver&&(this._resizeObserver.disconnect(),this._resizeObserver=null)},e.prototype._initSurfaceElement=function(){this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.element.appendChild(this.surfaceElement))},e.prototype._destroySurfaceElement=function(){this.surfaceElement&&this.surfaceElement.parentNode&&(this.surfaceElement.parentNode.removeChild(this.surfaceElement),this.surfaceElement=null)},e.prototype.setOptions=function(t,e){this._setOptions(t),this._initTheme(e),this._initSurface(),this._redraw()},e.prototype._redraw=function(){this.surface.clear();var t=this._getSize(),e=t.width,o=t.height;this.size={width:e,height:o},this.surface.setSize(this.size),this.createVisual(),this.surface.draw(this.visual)},e.prototype._getSize=function(){return this.element.getBoundingClientRect()},e.prototype.createVisual=function(){this.visual=this._render()},e.prototype.titleBox=function(t,e){return t&&!1!==t.visible&&t.text?new ny(Object.assign({},{drawingRect:e},t)).exportVisual().chartElement.box:null},e.prototype.legendBox=function(t,e,o){return t&&!1!==t.visible?new sy(Object.assign({},{nodes:e},t,{drawingRect:o})).exportVisual().chartElement.box:null},e.prototype.calculateSankey=function(t,e){var o=e.title,r=e.legend,n=e.data,i=e.nodes,a=e.labels,s=e.nodeColors,c=e.disableAutoLayout,l=e.disableKeyboardNavigation,h=e.rtl,p=!c,d=l?0:uy.width/2,v=new yo(0,0,t.width,t.height);v.unpad(d);var f=this.titleBox(o,v),m=v.clone();if(f){var g=f.height();o.position===I?(v.unpad({top:g}),m=new yo(0,g,t.width,t.height)):(v.shrink(0,g),m=new yo(0,0,t.width,t.height-g))}var y=this.legendBox(r,n.nodes,m),b=r&&r.position||sy.prototype.options.position;y&&(b===O&&v.unpad({left:y.width()}),b===A&&v.shrink(y.width(),0),b===I&&v.unpad({top:y.height()}),b===u&&v.shrink(0,y.height()));var x=$g(Object.assign({},t,{offsetX:0,offsetY:0,width:v.width(),height:v.height()})),w=x.nodes,_=x.circularLinks;if(_)return console.warn("Circular links detected. Kendo Sankey diagram does not support circular links."),{sankey:{nodes:[],links:[],columns:[[]],circularLinks:_},legendBox:y,titleBox:f};var C=new yo,S=w.reduce((function(t,e){return Math.min(t,e.x0)}),1/0),z=w.reduce((function(t,e){return Math.max(t,e.x1)}),0);w.forEach((function(t,e){if(h){var o=t.x0,r=t.x1;t.x0=z-r,t.x1=z-o}var n=Zg(t,i,s,e),c=new Yg(n);C.wrap(Uo(c.exportVisual().rawBBox()));var l=new oy(ry(t,a,h,S,z)).exportVisual();l&&C.wrap(Uo(l.rawBBox()))}));var M=v.x1,P=v.y1,V=v.width()+M,j=v.height()+P;if(V-=C.x2>v.width()?C.x2-v.width():0,j-=C.y2>v.height()?C.y2-v.height():0,M+=C.x1<0?-C.x1:0,P+=C.y1<0?-C.y1:0,!1===p)return{sankey:$g(Object.assign({},t,{offsetX:M,offsetY:P,width:V,height:j,autoLayout:!1})),legendBox:y,titleBox:f};if(this.resize&&p&&this.permutation)return this.resize=!1,{sankey:$g(Object.assign({},t,{offsetX:M,offsetY:P,width:V,height:j},this.permutation)),legendBox:y,titleBox:f};for(var k=$g(Object.assign({},t,{offsetX:M,offsetY:P,width:V,height:j,autoLayout:!1})).columns.length,H=[],B=function(e,o){var r=function(t){for(var e,o,r,n,i,a,s=0,c=t.length,l=0;l<c;l++)for(var h=t[l],u=l+1;u<c;u++){var p=t[u];o=p,void 0,void 0,void 0,void 0,r=Xg((e=h).x0,e.y0,e.x1,e.y1,o.x1,o.y1),n=Xg(e.x0,e.y0,e.x1,e.y1,o.x0,o.y0),i=Xg(e.x0,e.y0,o.x0,o.y0,o.x1,o.y1),a=Xg(e.x1,e.y1,o.x0,o.y0,o.x1,o.y1),r!==n&&i!==a&&(s+=Math.min(h.value,p.value))}return s}($g(Object.assign({},t,{offsetX:M,offsetY:P,width:V,height:j,loops:2,targetColumnIndex:e,reverse:o})).links);return H.push({crosses:r,reverse:o,targetColumnIndex:e}),0===r},L=1;L<=k-1&&!B(L,!1)&&!B(L,!0);L++);var T=Math.min.apply(null,H.map((function(t){return t.crosses}))),E=H.find((function(t){return t.crosses===T}));return this.permutation={targetColumnIndex:E.targetColumnIndex,reverse:E.reverse},{sankey:$g(Object.assign({},t,{offsetX:M,offsetY:P,width:V,height:j},this.permutation)),legendBox:y,titleBox:f}},e.prototype._render=function(t,e){var o=t||this.options,r=e||this,n=o.labels,i=o.nodes,a=o.links,s=o.nodeColors,c=o.title,l=o.legend,h=o.rtl,u=o.disableKeyboardNavigation,p=o.data,d=r.size,v=d.width,f=d.height,m=Object.assign({},p,{width:v,height:f,nodesOptions:i,title:c,legend:l}),g=this.calculateSankey(m,o),y=g.sankey,b=g.titleBox,x=g.legendBox;h&&function(t){var e=t.nodes,o=t.links,r=Math.min.apply(Math,e.map((function(t){return t.x0}))),n=Math.max.apply(Math,e.map((function(t){return t.x1})))-r;e.forEach((function(t){var e=n-(t.x1-2*r),o=n-(t.x0-2*r);t.x0=e,t.x1=o})),o.forEach((function(t){var e=n-(t.x1-2*r),o=n-(t.x0-2*r);t.x1=e,t.x0=o}))}(y);var w=y.nodes,_=y.links,C=y.columns;r.columns=C.map((function(t){var e=t.slice();return e.sort((function(t,e){return t.y0-e.y0})),e}));var O=new $.drawing.Group({clip:$.drawing.Path.fromRect(new $.geometry.Rect([0,0],[v,f]))});if(b){var S=new ny(Object.assign({},c,{drawingRect:b})).exportVisual();O.append(S)}if(y.circularLinks)return O;var z=new Map;r.nodesVisuals=z;var M={nodes:[],links:[],map:new Map};r.models=M;var P=[];w.forEach((function(t,e){var o=Zg(t,i,s,e);o.root=function(){return r.element},o.navigatable=!0!==u;var n=new Yg(o),a=n.exportVisual();a.links=[],a.type=ly,t.color=o.color,t.opacity=o.opacity,a.dataItem=Object.assign({},p.nodes[e],{color:o.color,opacity:o.opacity,sourceLinks:t.sourceLinks.map((function(t){return{sourceId:t.sourceId,targetId:t.targetId,value:t.value}})),targetLinks:t.targetLinks.map((function(t){return{sourceId:t.sourceId,targetId:t.targetId,value:t.value}}))}),z.set(t.id,a),M.nodes.push(n),M.map.set(t.id,n),O.append(a),n.createFocusHighlight(),n._highlight&&P.push(n._highlight)}));var V=_.slice().sort((function(t,e){return e.value-t.value})),A=[];r.linksVisuals=A,V.forEach((function(t){var e=t.source,o=t.target,n=z.get(e.id),i=z.get(o.id),s=function(t,e,o,r){var n=it({},e,{link:t,opacity:t.opacity,color:t.color,colorType:t.colorType,visual:t.visual,highlight:t.highlight});return"source"===n.colorType?n.color=o.options.fill.color:"target"===n.colorType&&(n.color=r.options.fill.color),n}(t,a,n,i);s.root=function(){return r.element},s.navigatable=!0!==u,s.rtl=h;var c=new Qg(s),l=c.exportVisual();l.type=cy,l.dataItem={source:Object.assign({},n.dataItem),target:Object.assign({},i.dataItem),value:t.value},l.linkOptions=s,A.push(l),n.links.push(l),i.links.push(l),M.links.push(c),M.map.set(e.id+"-"+o.id,c),c.createFocusHighlight(),c._highlight&&P.push(c._highlight),O.append(l)}));var j=w.reduce((function(t,e){return Math.min(t,e.x0)}),1/0),k=w.reduce((function(t,e){return Math.max(t,e.x1)}),0);if(w.forEach((function(t){var e=ry(t,n,h,j,k),o=new oy(e).exportVisual();o&&O.append(o)})),x){var H=new sy(Object.assign({},l,{rtl:h,drawingRect:x,nodes:w})).exportVisual();O.append(H)}if(0!==P.length){var I=new $.drawing.Group;I.append.apply(I,P),O.append(I)}return O},e.prototype.exportVisual=function(t){var e=t&&t.options?it({},this.options,t.options):this.options,o={size:{width:Lt(t&&t.width)?t.width:this.size.width,height:Lt(t&&t.height)?t.height:this.size.height}};return this._render(e,o)},e.prototype._setOptions=function(t){this.options=it({},this.options,t)},e}(Fe),uy={opacity:1,width:2,color:h};Qt(hy,{title:{position:I},labels:{visible:!0,margin:{left:8,right:8},padding:0,border:{width:0},paintOrder:"stroke",stroke:{lineJoin:"round",width:1},offset:{left:0,top:0}},nodes:{width:24,padding:16,opacity:1,align:"stretch",offset:{left:0,top:0},focusHighlight:Object.assign({},uy),labels:{ariaTemplate:function(t){return t.node.label.text}}},links:{colorType:"static",opacity:.4,highlight:{opacity:.8,inactiveOpacity:.2},focusHighlight:Object.assign({},uy),labels:{ariaTemplate:function(t){var e=t.link;return e.source.label.text+" to "+e.target.label.text}}},tooltip:{followPointer:!1,delay:200}});var py=function(t,e,o){var r=new Set,n=new Map,i=new Map;t.forEach((function(t){e.forEach((function(e){r.add(e.value(t))}));for(var a=0;a<e.length-1;a++){var s=e[a].value(t),c=e[a+1].value(t),l=s+"_"+c,h=o.value(t),u=n.get(l);void 0!==u?n.set(l,u+h):(n.set(l,h),i.set(l,{source:s,target:c}))}}));var a=new Map,s=Array.from(r).map((function(t,e){return a.set(t,e),{id:e,label:{text:String(t)}}})),c=Array.from(n).map((function(t){var e=t[0],o=t[1],r=i.get(e),n=r.source,s=r.target;return{sourceId:a.get(n),targetId:a.get(s),value:o}}));return{nodes:s,links:c}},dy=1.5,vy=.4,fy="#000",my="Arial, Helvetica, sans-serif",gy="11px "+my,yy="12px "+my,by="16px "+my,xy="transparent",wy="#fff",_y={type:Si},Cy={type:di},Oy=Object.assign({},Cy,{markers:{visible:!1},highlight:{visible:!1}}),Sy=function(){return{icon:{border:{width:1}},label:{font:yy,padding:3},line:{length:10,width:2},legendItem:Oy,visible:!0}},zy=function(){return{highlight:{markers:{border:{}}},line:{opacity:1,width:0},markers:{size:6,visible:!1},legendItem:Cy,opacity:.4}},My=function(){return{highlight:{markers:{border:{}}},line:{opacity:1,width:0},markers:{size:6,visible:!1},legendItem:Cy,opacity:.4}},Py=function(){return{outliersField:"",meanField:"",border:{_brightness:.8,width:1},downColor:wy,gap:1,highlight:{border:{opacity:1,width:2},whiskers:{width:3},mean:{width:2},median:{width:2}},mean:{width:2},median:{width:2},spacing:.3,whiskers:{width:2},legendItem:Oy}},Vy=function(){return{gap:dy,spacing:vy,target:{color:"#ff0000"},legendItem:Oy}},Ay=function(){return{width:2,legendItem:_y}},jy=function(){return{line:{opacity:1,width:0},markers:{size:6,visible:!1},legendItem:Cy,opacity:.5}},ky=function(){return{markers:{visible:!1},legendItem:_y,width:2}},Hy=function(){return{gap:.5,line:{color:fy,width:1},legendItem:Oy,spacing:vy}},Iy=function(){return{labels:{background:"",color:"",padding:{top:5,bottom:5,left:7,right:7}},legendItem:Oy}},By=Iy,Ly=function(t){return Object.assign({color:C,trendline:{},markers:{visible:!1},width:1,dashType:"longDash",legendItem:_y},t)},Ty=function(t){return{visible:!0,labels:{font:gy},overlay:t.gradients?{}:{gradient:"none"},area:zy(),rangeArea:My(),verticalRangeArea:My(),bar:{gap:dy,spacing:vy,legendItem:Oy},boxPlot:Py(),bubble:{border:{width:0},labels:{background:xy},legendItem:Oy,opacity:.6},bullet:Vy(),candlestick:{border:{_brightness:.8,width:1},downColor:wy,gap:1,highlight:{border:{opacity:1,width:2},line:{width:2}},line:{color:fy,width:1},legendItem:Oy,spacing:.3},column:{gap:dy,spacing:vy,legendItem:Oy},heatmap:{labels:{color:"",background:xy,visible:!0},highlight:{border:{width:0}},legendItem:Oy},pie:{labels:{background:"",color:"",padding:{top:5,bottom:5,left:7,right:7}},legendItem:Oy},donut:{margin:1,legendItem:Oy},funnel:Iy(),pyramid:By(),horizontalWaterfall:Hy(),line:Ay(),notes:Sy(),ohlc:{gap:1,highlight:{line:{opacity:1,width:3}},line:{width:1},legendItem:Oy,spacing:.3},radarArea:jy(),radarLine:ky(),radarColumn:{legendItem:Oy},polarArea:jy(),polarLine:ky(),polarScatter:{legendItem:_y},rangeBar:{gap:dy,spacing:vy,legendItem:Oy},rangeColumn:{gap:dy,spacing:vy,legendItem:Oy},scatter:{legendItem:_y},scatterLine:{width:1,legendItem:_y},verticalArea:zy(),verticalBoxPlot:Py(),verticalBullet:Vy(),verticalLine:Ay(),waterfall:Hy(),linearTrendline:Ly(),exponentialTrendline:Ly({style:"smooth"}),logarithmicTrendline:Ly({style:"smooth"}),polynomialTrendline:Ly({style:"smooth"}),powerTrendline:Ly({style:"smooth"}),movingAverageTrendline:Ly()}},Ey=function(t){return void 0===t&&(t={}),{axisDefaults:{labels:{font:yy},notes:Sy(),title:{font:by,margin:5}},categoryAxis:{majorGridLines:{visible:!0}},navigator:{pane:{height:90,margin:{top:10}}},seriesDefaults:Ty(t),title:{font:by},subtitle:{font:yy},legend:{labels:{font:yy}}}}},3201:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.PopupVue2=e.Popup=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(8895),s=o(3396),c=o(4549),l=o(5689),h=o(3461),u=o(9680),p=o(1621),d={left:-1e3,top:0},v="k-animation-container-shown",f="k-popup",m={name:"Popup",props:{appendTo:{type:String,default:""},anchor:{type:String,default:""},className:String,id:String,popupClass:String,collision:{type:Object,default:function(){return{horizontal:s.CollisionType.fit,vertical:s.CollisionType.flip}}},anchorAlign:{type:Object,default:function(){return{horizontal:s.AlignPoint.left,vertical:s.AlignPoint.bottom}}},popupAlign:{type:Object,default:function(){return{horizontal:s.AlignPoint.left,vertical:s.AlignPoint.top}}},offset:{type:Object,default:function(){return d}},show:{type:Boolean,default:!1},animate:{type:[Boolean,Object],default:function(){return!0}},direction:{type:String,default:"down"}},inject:{kCurrentZIndex:{default:null}},data:function(){return{hasMounted:!1}},created:function(){(0,u.validatePackage)(p.packageMetadata),this.mountedAppendTo=void 0,this.mountedAnchor=void 0,this._clonedElement=void 0,this._flipped=!1,this._offsetTop=0,this._offsetLeft=-1e3,this._exitingAnimation=!1,this._prevShow=!1,this._prevShow=this.$props.show,this._domService=new l.DOMService,this._alignService=new c.AlignService(this._domService),this._positionService=new h.PositionService(this._domService),this.reposition=(0,s.throttle)(this.reposition.bind(this),s.FRAME_DURATION)},setup:i?function(){return{v3:!!i}}:void 0,mounted:function(){u.canUseDOM&&(this.mountedAppendTo=this.appendTo?this.getParentRef(this.appendTo):document.body,this.mountedAnchor=this.anchor?this.getParentRef(this.anchor,!0):document.body),this._parentElement=this.$el.parentElement,this._clonedElement=this.$el.cloneNode(!0),this.hasMounted=!0,this.mountedAppendTo.appendChild(this.$el)},updated:function(){this._prevShow=this.$props.show},destroyed:i?void 0:function(){this.detachRepositionHandlers()},beforeDestroy:i?void 0:function(){this._parentElement&&this._parentElement.appendChild(this.$el)},unmounted:function(){this.detachRepositionHandlers()},beforeUnmount:function(){this._parentElement&&this._parentElement.appendChild(this.$el)},methods:{onOpened:function(){var t=this.$el;this.$props.show&&t.classList.add(v),this.attachRepositionHandlers(t),this.$emit("open",{target:this})},onClosing:function(){this.$props.show||this.$el.classList.remove(v),this.detachRepositionHandlers()},onClosed:function(){this._exitingAnimation&&(this._exitingAnimation=!1,this.$forceUpdate()),this.$emit("close",{target:this})},transitionDuration:function(){var t=this.$props.animate,e=0,o=0;return t&&(!0===t?e=o=void 0:(e=t.openDuration,o=t.closeDuration)),{transitionEnterDuration:e,transitionExitDuration:o}},getParentRef:function(t,e){for(var o=this.$parent;!o.$refs[t];){if(o&&o.kendoAnchorRef&&e)return o.kendoAnchorRef;if(!(o=o.$parent)&&u.canUseDOM)return document.getElementById(t)||document.body}return o.$refs[t].$el||o.$refs[t]},position:function(t,e,o){var r=t.anchorAlign,n=t.popupAlign,i=t.collision,a=t.offset,s=o?this.v3?this.mountedAnchor:this.getParentRef(o,!0):document.body,c=this._alignService.alignElement({anchor:o?s:void 0,element:e,elementAlign:n,anchorAlign:r,offset:a});return this._positionService.positionElement({anchor:s,anchorAlign:r,collisions:i,element:e,currentLocation:c,elementAlign:n})},calculatePosition:function(t,e){if(!e||!(0,s.isWindowAvailable)()||!u.canUseDOM)return{flipped:!1,offset:t.offset};var o=(0,u.getDefaultSlots)(this),r=document.createElement("div"),n=this.$el&&this.$el.firstChild&&this.$el.firstChild.firstChild?this.$el.firstChild.firstChild.cloneNode(!0):null,i=n&&n.getBoundingClientRect?n:this._clonedElement;if(i)r.appendChild(i);else{var a=this.v3?o&&o[0].props?o[0].props.class:"":o&&o[0].data?o[0].data.staticClass:"",c=this.v3?this.$props.popupClass?this.$props.popupClass:"":o&&o[0].data?o[0].data.class:"";r.innerHTML='<div class="k-animation-container k-animation-container-relative">\t\n <div class="k-popup k-animation-container k-animation-container-relative">\n <div class="'.concat(a," ").concat(c,'" >\n </div>\t\n </div>\t\n </div>')}if(e.appendChild(r),r&&r.firstChild){var l=r.firstChild;l.style.position="absolute",l.style.visibility="hidden",l.style.display="block",l.style.left="-1000",l.style.top="0";var h=this.v3?o&&o[0].props?o[0].props.style:{}:o[0].data?o[0].data.style:{};if(h)for(var p=0,d=Object.entries(h);p<d.length;p++){var v=d[p],f=v[0],m=v[1];l.style[f]=m}}var g=this.position(t,r.firstChild,this.$props.anchor);return r.parentNode.removeChild(r),g},attachRepositionHandlers:function(t){var e=this;this.detachRepositionHandlers(),this._scrollableParents=this._domService.scrollableParents(this.$props.anchor?this.mountedAnchor:t),this._scrollableParents.map((function(t){return t.addEventListener("scroll",e.reposition)})),window.addEventListener("resize",this.reposition)},detachRepositionHandlers:function(){var t=this;this._scrollableParents&&(this._scrollableParents.map((function(e){return e.removeEventListener("scroll",t.reposition)})),this._scrollableParents=void 0),window.removeEventListener("resize",this.reposition)},reposition:function(){this._clonedElement=this.$el.cloneNode(!0),this.$forceUpdate()},getCurrentZIndex:function(){return this.kCurrentZIndex?this.kCurrentZIndex+1:100}},render:function(t){var e=n||t,o=this.$props,r=o.className,i=o.popupClass,c=o.show,l=o.id,h=(0,u.getDefaultSlots)(this),p=this.v3||c?h:null,d=(0,s.isWindowAvailable)()?this.$props.appendTo?this.mountedAppendTo||this.getParentRef(this.$props.appendTo):document.body:void 0;if(this.$props.show){var v=this.calculatePosition(this.$props,d);this._offsetLeft=v.offset.left,this._offsetTop=v.offset.top,this._flipped=!!v.flipped}var m="down"===this.$props.direction?this._flipped?"up":"down":this._flipped?"down":"up",g=this.transitionDuration(),y=g.transitionEnterDuration,b=g.transitionExitDuration,x=this.getCurrentZIndex();return this._exitingAnimation=this._exitingAnimation||this._prevShow&&!c,this.hasMounted?c||this._exitingAnimation&&d?e(a.Slide,{id:l,attrs:this.v3?void 0:{id:l,role:this.appendTo?"":"region",componentChildClassName:[i,f],className:r,direction:m,transitionEnterDuration:y,transitionExitDuration:b,appear:c},role:this.appendTo?"":"region",componentChildClassName:[i,f],className:r,onEntered:this.onOpened,on:this.v3?void 0:{entered:this.onOpened,exiting:this.onClosing,exited:this.onClosed},onExiting:this.onClosing,onExited:this.onClosed,direction:m,style:{zIndex:x,position:"absolute",top:this._offsetTop+"px",left:this._offsetLeft+"px"},transitionEnterDuration:y,transitionExitDuration:b,appear:c},this.v3?function(){return[p]}:[p]):null:e("div",{style:{display:"none"},class:r},[e("div",{class:[i,f]},[h])])}};e.PopupVue2=m;var g=m;e.Popup=g},4866:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.PopupVue2=e.Popup=void 0;var r=o(3201);Object.defineProperty(e,"Popup",{enumerable:!0,get:function(){return r.Popup}}),Object.defineProperty(e,"PopupVue2",{enumerable:!0,get:function(){return r.PopupVue2}})},1621:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.packageMetadata=void 0,e.packageMetadata={name:"@progress/kendo-vue-popup",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1726209308,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},4549:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AlignService=void 0;var r=o(3396),n=function(){function t(t){this._dom=t}return t.prototype.alignElement=function(t){var e=t.anchor,o=t.element,r=t.anchorAlign,n=t.elementAlign,i=t.offset,a=this._dom.hasOffsetParent(o)?this.relativeRect(e,o,i):this.absoluteRect(e,o,i);return this._dom.align({anchorAlign:r,anchorRect:a,elementAlign:n,elementRect:this._dom.offset(o)})},t.prototype.absoluteRect=function(t,e,o){var n=this._dom,i=(0,r.eitherRect)(n.offset(t),o),a=n.stackingElementOffset(e),s=(0,r.removeStackingOffset)(i,a),c=n.stackingElementScroll(e),l=n.addScroll(s,c),h=this.elementScrollPosition(t,e),u=n.removeScroll(l,h);return u.left+=window.scrollX||window.pageXOffset,u.top+=window.scrollY||window.pageYOffset,u},t.prototype.elementScrollPosition=function(t,e){return t?{x:0,y:0}:this._dom.scrollPosition(e)},t.prototype.relativeRect=function(t,e,o){return(0,r.eitherRect)(this._dom.position(t,e),o)},t}();e.AlignService=n},5689:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DOMService=void 0;var r=o(5454),n=o(3396),i=function(){function t(){}return t.prototype.addOffset=function(t,e){return{left:t.left+e.left,top:t.top+e.top}},t.prototype.align=function(t){return(0,r.align)(t)},t.prototype.boundingOffset=function(t){return(0,r.boundingOffset)(t)},t.prototype.getWindow=function(){return(0,n.isWindowAvailable)()?window:null},t.prototype.isBodyOffset=function(t){return(0,r.isBodyOffset)(t)},t.prototype.hasOffsetParent=function(t){if(!t)return!1;var e=t.offsetParent;return e&&!("BODY"===e.nodeName&&"static"===window.getComputedStyle(e).position)},t.prototype.offset=function(t){return t?(0,r.offset)(t):null},t.prototype.staticOffset=function(t){if(!t)return null;var e=t.style,o=e.left,n=e.top;t.style.left="0px",t.style.top="0px";var i=(0,r.offset)(t);return t.style.left=o,t.style.top=n,i},t.prototype.position=function(t,e){if(!t||!e)return null;var o=(0,r.siblingContainer)(t,e);return(0,r.positionWithScroll)(t,o)},t.prototype.relativeOffset=function(t,e){return(0,r.applyLocationOffset)(this.offset(t),e,this.isBodyOffset(t))},t.prototype.addScroll=function(t,e){return(0,r.addScroll)(t,e)},t.prototype.removeScroll=function(t,e){return(0,r.removeScroll)(t,e)},t.prototype.restrictToView=function(t){return(0,r.restrictToView)(t)},t.prototype.scrollPosition=function(t){return(0,r.scrollPosition)(t)},t.prototype.scrollableParents=function(t){return(0,n.scrollableParents)(t)},t.prototype.stackingElementOffset=function(t){var e=this.getRelativeContextElement(t);return e?(0,r.offset)(e):null},t.prototype.stackingElementScroll=function(t){var e=this.getRelativeContextElement(t);return e?{x:e.scrollLeft,y:e.scrollTop}:{x:0,y:0}},t.prototype.stackingElementViewPort=function(t){var e=this.getRelativeContextElement(t);return e?{height:e.scrollHeight,width:e.scrollWidth}:null},t.prototype.getRelativeContextElement=function(t){if(!t||!n.HAS_RELATIVE_STACKING_CONTEXT)return null;for(var e=t.parentElement;e;){if("none"!==window.getComputedStyle(e).transform)return e;e=e.parentElement}return null},t.prototype.useRelativePosition=function(t){return!!this.getRelativeContextElement(t)},t.prototype.windowViewPort=function(t){return(0,r.getWindowViewPort)(t)},t.prototype.zIndex=function(t,e){return(0,n.zIndex)(t,e)},t.prototype.zoomLevel=function(){return(0,n.isDocumentAvailable)()&&(0,n.isWindowAvailable)()?parseFloat((document.documentElement.clientWidth/window.innerWidth).toFixed(2)):1},t.prototype.isZoomed=function(){return this.zoomLevel()>1},t}();e.DOMService=i},3461:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.PositionService=void 0;var r=o(3396),n=function(){function t(t){this._dom=t}return t.prototype.positionElement=function(t){var e=t.anchor,o=t.currentLocation,n=t.element,i=t.anchorAlign,a=t.elementAlign,s=t.collisions,c=this._dom,l=t.viewPort||c.stackingElementViewPort(n)||c.windowViewPort(n),h=(0,r.eitherRect)(c.offset(e),o),u=(0,r.replaceOffset)(c.staticOffset(n),o),p=this.elementRect(n,u),d=c.restrictToView({anchorAlign:i,anchorRect:h,collisions:s,elementAlign:a,elementRect:p,viewPort:l});return{flipped:d.flipped,offset:c.addOffset(u,d.offset)}},t.prototype.elementRect=function(t,e){return this._dom.removeScroll(e,this._dom.scrollPosition(t))},t}();e.PositionService=n},3396:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.throttle=e.AlignPoint=e.CollisionType=e.zIndex=e.HAS_RELATIVE_STACKING_CONTEXT=e.hasRelativeStackingContext=e.FRAME_DURATION=e.scrollableParents=e.OVERFLOW_REGEXP=e.hasBoundingRect=e.isWindowAvailable=e.isDocumentAvailable=e.isDifferentOffset=e.removeStackingOffset=e.replaceOffset=e.eitherRect=void 0;var r=o(5454);e.eitherRect=function(t,e){return t||{height:0,left:e.left,top:e.top,width:0}},e.replaceOffset=function(t,e){return e?{height:t.height,left:e.left,top:e.top,width:t.width}:t},e.removeStackingOffset=function(t,e){return e?{height:t.height,left:t.left-e.left,top:t.top-e.top,width:t.width}:t},e.isDifferentOffset=function(t,e){var o=t.left,r=t.top,n=e.left,i=e.top;return Math.abs(o-n)>=1||Math.abs(r-i)>=1},e.isDocumentAvailable=function(){return"undefined"!=typeof document&&!!document.body},e.isWindowAvailable=function(){return"undefined"!=typeof window},e.hasBoundingRect=function(t){return!!t.getBoundingClientRect},e.OVERFLOW_REGEXP=/auto|scroll/;var n=function(t){var e=window.getComputedStyle(t);return"".concat(e.overflow).concat(e.overflowX).concat(e.overflowY)};e.scrollableParents=function(t){var o=[];if(!(0,e.isDocumentAvailable)()||!(0,e.isWindowAvailable)())return o;for(var r=t.parentElement;r;)e.OVERFLOW_REGEXP.test(n(r))&&o.push(r),r=r.parentElement;return o.push(window),o},e.FRAME_DURATION=1e3/60,e.hasRelativeStackingContext=function(){if(!(0,e.isDocumentAvailable)())return!1;var t=document.createElement("div");if(t.style.transform="matrix(10, 0, 0, 10, 0, 0)",t.innerHTML="<div>child</div>",document.body.appendChild(t),t&&t.firstChild){var o=t.firstChild;o.style.position="fixed",o.style.top="".concat(10,"px")}var r=10!==t.children[0].getBoundingClientRect().top;return document.body.removeChild(t),r},e.HAS_RELATIVE_STACKING_CONTEXT=(0,e.hasRelativeStackingContext)(),e.zIndex=function(t,o){if(!t||!(0,e.isDocumentAvailable)()||!(0,e.isWindowAvailable)())return null;var n=(0,r.siblingContainer)(t,o);if(!n)return null;var i=[t].concat((0,r.parents)(t,n)).reduce((function(t,e){var o=e.style.zIndex||window.getComputedStyle(e).zIndex,r=parseInt(o,10);return r>t?r:t}),0);return i?i+1:null},e.CollisionType={fit:"fit",flip:"flip"},e.AlignPoint={left:"left",center:"center",right:"right",bottom:"bottom",top:"top"},e.throttle=function(t,e,o){var r,n,i,a;void 0===o&&(o={});var s=0;o=o||{};var c=function(){s=!1===o.leading?0:(new Date).getTime(),r=null,a=t.apply(n,i),r||(n=i=null)};return function(){var l=(new Date).getTime();s||!1!==o.leading||(s=l);var h=e-(l-s);return n=this,i=arguments,h<=0||h>e?(r&&(clearTimeout(r),r=null),s=l,a=t.apply(n,i),r||(n=i=null)):r||!1===o.trailing||(r=setTimeout(c,h)),a}}},5454:(t,e,o)=>{o.r(e),o.d(e,{AlignPoint:()=>r,Collision:()=>O,addScroll:()=>i,align:()=>n,alignElement:()=>q,applyLocationOffset:()=>a,boundingOffset:()=>d,domUtils:()=>K,getDocumentElement:()=>l,getWindow:()=>c,getWindowViewPort:()=>p,isBodyOffset:()=>f,offset:()=>m,offsetParent:()=>v,parentScrollPosition:()=>x,parents:()=>g,position:()=>w,positionElement:()=>$,positionWithScroll:()=>_,removeScroll:()=>C,restrictToView:()=>M,scrollPosition:()=>y,siblingContainer:()=>V,siblings:()=>P,utils:()=>L,zIndex:()=>A});const r={bottom:"bottom",center:"center",middle:"middle",left:"left",right:"right",top:"top"},n=function(t){var e=t.anchorRect,o=t.anchorAlign,n=t.elementRect,i=t.elementAlign,a=t.margin;void 0===a&&(a={});var s=o.horizontal,c=o.vertical,l=i.horizontal,h=i.vertical,u=a.horizontal||0,p=a.vertical||0,d=e.top,v=e.left;return c===r.bottom&&(d+=e.height),c!==r.center&&c!==r.middle||(d+=Math.round(e.height/2)),h===r.bottom&&(d-=n.height,p*=-1),h!==r.center&&h!==r.middle||(d-=Math.round(n.height/2),p*=-1),s===r.right&&(v+=e.width),s!==r.center&&s!==r.middle||(v+=Math.round(e.width/2)),l===r.right&&(v-=n.width,u*=-1),l!==r.center&&l!==r.middle||(v-=Math.round(n.width/2),u*=-1),{top:d+p,left:v+u}};function i(t,e){return{top:t.top+e.y,left:t.left+e.x,height:t.height,width:t.width}}function a(t,e,o){var r=t.top,n=t.left;return o&&(n=0,r=0),{top:r+e.top,left:n+e.left,height:t.height,width:t.width}}function s(t){return t.ownerDocument||t.document||t}const c=function(t){return s(t).defaultView},l=function(t){return s(t).documentElement};var h=0;function u(){if(!h&&"undefined"!=typeof document){var t=document.createElement("div");t.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",t.innerHTML=" ",document.body.appendChild(t),h=t.offsetWidth-t.scrollWidth,document.body.removeChild(t)}return h}function p(t){var e=c(t),o=l(t),r={height:e.innerHeight,width:e.innerWidth};return o.scrollHeight-o.clientHeight>0&&(r.width-=u()),r}const d=function(t){if(!t.getBoundingClientRect){var e=p(t);return{bottom:e.height,left:0,right:e.width,top:0}}var o=t.getBoundingClientRect();return{bottom:o.bottom,left:o.left,right:o.right,top:o.top}},v=function(t){for(var e=t.offsetParent;e&&"static"===e.style.position;)e=e.offsetParent;return e||l(t)},f=function(t){return v(t)===t.ownerDocument.body},m=function(t){var e=t.getBoundingClientRect(),o=e.left,r=e.top;return e.height||e.width||(e=function(t){var e=t.style,o=e.display,r=e.left,n=e.position;t.style.display="",t.style.left="-10000px",t.style.position="absolute";var i=t.getBoundingClientRect();return t.style.display=o,t.style.left=r,t.style.position=n,i}(t)),{top:r,left:o,height:e.height,width:e.width}};function g(t,e){for(var o=[],r=t.parentNode;r&&(o.push(r),r!==e);)r=r.parentNode;return o}function y(t){var e=l(t),o=c(t);return{x:o.pageXOffset||e.scrollLeft||0,y:o.pageYOffset||e.scrollTop||0}}function b(t){return t===(t.ownerDocument||{}).body?y(t):{x:t.scrollLeft,y:t.scrollTop}}function x(t){var e=v(t);return e?b(e):{x:0,y:0}}const w=function(t,e){var o=c(t),r=o.getComputedStyle(t),n=m(t),i=e||v(t),a=t.ownerDocument,s=i!==a.body&&i!==a.documentElement,l={top:0,left:0};if("fixed"!==r.position&&s){var h=o.getComputedStyle(i);(l=m(i)).top+=parseInt(h.borderTopWidth,10),l.left+=parseInt(h.borderLeftWidth,10)}return{top:n.top-l.top,left:n.left-l.left,height:n.height,width:n.width}};function _(t,e,o){void 0===o&&(o=1);var r=e?v(e):null,n=w(t,r),i=n.top,a=n.left,s=n.height,c=n.width,l=function(t,e){return t?b(t):x(e)}(r,t),h=l.x,u=l.y,p=t.ownerDocument,d=r===p.body||r===p.documentElement?1:o;return{top:i+u*d,left:a+h*d,height:s,width:c}}function C(t,e){return{top:t.top-e.y,left:t.left-e.x,height:t.height,width:t.width}}const O={fit:"fit",flip:"flip",none:"none"};var S=function(t,e,o){var r=0;return t+e>o&&(r=o-(t+e)),t<0&&(r=-t),r},z=function(t){var e=t.offset,o=t.size,n=t.anchorSize,i=t.viewPortSize,a=t.anchorAlignPoint,s=t.elementAlignPoint,c=t.margin,l=0,h=s===r.center||s===r.middle,u=a===r.center||a===r.middle,p=2*c;if(s!==a&&!h&&!u){var d=a===r.top||a===r.left;e<0&&d?e+(l=o+n+p)+o>i&&(l=0):e>=0&&!d&&(e+o>i&&(l+=-(n+o+p)),e+l<0&&(l=0))}return l};const M=function(t){var e=t.anchorRect,o=t.anchorAlign,r=t.elementRect,n=t.elementAlign,i=t.collisions,a=t.viewPort,s=t.margin;void 0===s&&(s={});var c=r.top,l=r.left,h=r.height,u=r.width,p=a.height,d=a.width,v=s.horizontal||0,f=s.vertical||0,m=0,g=0,y=i.vertical===O.fit,b=i.horizontal===O.fit,x=i.vertical===O.flip,w=i.horizontal===O.flip;y&&(g+=S(c,h,p)),b&&(m+=S(l,u,d)),x&&(g+=z({margin:f,offset:c,size:h,anchorSize:e.height,viewPortSize:p,anchorAlignPoint:o.vertical,elementAlignPoint:n.vertical})),w&&(m+=z({margin:v,offset:l,size:u,anchorSize:e.width,viewPortSize:d,anchorAlignPoint:o.horizontal,elementAlignPoint:n.horizontal}));var _=x&&0!==g,C=w&&0!==m,M=y&&0!==g,P=b&&0!==m;return{flipped:C||_,fitted:M||P,flip:{horizontal:C,vertical:_},fit:{horizontal:P,vertical:M},offset:{left:m,top:g}}};function P(t){for(var e=[],o=t.parentNode.firstElementChild;o;)o!==t&&e.push(o),o=o.nextElementSibling;return e}function V(t,e){for(var o,r,n=g(t),i=e;i&&(o=P(i),!(r=n.reduce((function(t,e){return t.concat(o.filter((function(t){return t===e})))}),[])[0]));)i=i.parentElement;return r}function A(t,e){if(!t||!e)return null;var o=V(t,e);if(!o)return null;var r=[t].concat(g(t,o)).reduce((function(t,e){var o=e.style.zIndex||window.getComputedStyle(e).zIndex,r=parseInt(o,10);return r>t?r:t}),0);return r?r+1:null}var j,k,H,I=(j=function(t){if(!B())return!1;var e=t?t.ownerDocument:document;if(!e||!e.body)return!1;var o=e.createElement("div");o.style.transform="matrix(10, 0, 0, 10, 0, 0)",o.innerHTML='<div style="position: fixed; top: 10px;">child</div>',e.body.appendChild(o);var r=10!==o.children[0].getBoundingClientRect().top;return e.body.removeChild(o),r},H=!1,function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return H||(k=j.apply(void 0,t),H=!0),k}),B=function(){return Boolean("undefined"!=typeof window&&window.document&&window.document.createElement)};const L={eitherRect:function(t,e){return t||{height:0,left:e.left,top:e.top,width:0}},scaleRect:function(t,e){return t&&1!==e?{height:t.height/e,left:t.left/e,top:t.top/e,width:t.width/e}:t},removeStackingOffset:function(t,e){return e?{height:t.height,left:t.left-e.left,top:t.top-e.top,width:t.width}:t},hasRelativeStackingContext:I,canUseDOM:B};var T=["font-size","font-family","font-stretch","font-style","font-weight","line-height"],E=function(){return L.canUseDOM()?window:null},D=/auto|scroll/,N=function(t){return function(t){return""+t.style.overflow+t.style.overflowX+t.style.overflowY}(t)||function(t){var e=window.getComputedStyle(t);return""+e.overflow+e.overflowX+e.overflowY}(t)},R=function(t){if(!t||!L.hasRelativeStackingContext())return null;for(var e=t.parentElement;e;){if("none"!==window.getComputedStyle(e).transform)return e;e=e.parentElement}return null},F=function(){return L.canUseDOM()&&parseFloat((document.documentElement.clientWidth/window.innerWidth).toFixed(2))||1},U={addOffset:function(t,e){return{left:t.left+e.left,top:t.top+e.top}},addScroll:i,align:n,boundingOffset:d,getFontStyles:function(t){var e=E();if(!e||!t)return[];var o=e.getComputedStyle(t);return T.map((function(t){return{key:t,value:o[t]}}))},getWindow:E,hasOffsetParent:function(t){return!!t&&Boolean(t.offsetParent)},offset:function(t){return t?m(t):null},offsetAtPoint:function(t,e){if(!t)return null;var o=t.style,r=o.left,n=o.top,i=o.transition;t.style.transition="none",t.style.left=e.left+"px",t.style.top=e.top+"px";var a=m(t);return t.style.left=r,t.style.top=n,t.offsetHeight,t.style.transition=i,a},position:function(t,e,o){return t&&e?_(t,e,o||1):null},removeScroll:C,restrictToView:M,scrollPosition:y,scrollableParents:function(t){var e=[];if(!L.canUseDOM())return e;for(var o=t.parentElement;o;)(D.test(N(o))||o.hasAttribute("data-scrollable"))&&e.push(o),o=o.parentElement;return e.push(window),e},getRelativeContextElement:R,stackingElementOffset:function(t){var e=R(t);return e?m(e):null},stackingElementScroll:function(t){var e=R(t);return e?{x:e.scrollLeft,y:e.scrollTop}:{x:0,y:0}},stackingElementViewPort:function(t){var e=R(t);return e?{height:e.scrollHeight,width:e.scrollWidth}:null},useRelativePosition:function(t){return Boolean(R(t))},windowViewPort:p,zoomLevel:F,isZoomed:function(){return F()>1},zIndex:function(t,e){if(!t||!L.canUseDOM())return null;var o=V(t,e);if(!o)return null;var r=[t].concat(g(t,o)).reduce((function(t,e){var o=e.style.zIndex||window.getComputedStyle(e).zIndex,r=parseInt(o,10);return r>t?r:t}),0);return r?r+1:null}};const K=U;const q=function(t){var e=t.anchor,o=t.element,r=t.anchorAlign,n=t.elementAlign,i=t.margin,a=t.offset,s=t.positionMode,c=t.scale||1,l="fixed"!==s&&K.hasOffsetParent(o)?function(t,e,o,r){var n=L.eitherRect(K.position(t,e,r),o);return L.scaleRect(n,r)}(e,o,a,c):function(t,e,o,r){var n=function(t,e){return t?{x:0,y:0}:K.scrollPosition(e)}(t,e),i=L.eitherRect(K.offset(t),o),a=2*r,s=K.stackingElementScroll(e);1!==r&&s&&(s.x/=a,s.y/=a);var c=K.stackingElementOffset(e);return 1!==r&&c&&(c.left/=a,c.top/=a),K.removeScroll(K.addScroll(L.removeStackingOffset(L.scaleRect(i,r),c),s),n)}(e,o,a,c),h=L.scaleRect(K.offset(o),c);return K.align({anchorAlign:r,anchorRect:l,elementAlign:n,elementRect:h,margin:i})},$=function(t){var e=t.anchor,o=t.currentLocation,r=t.element,n=t.anchorAlign,i=t.elementAlign,a=t.collisions,s=t.margin,c=t.scale||1,l=K.offsetAtPoint(r,o),h=L.scaleRect(l,c),u=L.scaleRect(K.offset(e),c),p=L.eitherRect(u,o),d=t.viewPort||K.windowViewPort(r);d.width=d.width/c,d.height=d.height/c;var v=K.restrictToView({anchorAlign:n,anchorRect:p,collisions:a,elementAlign:i,elementRect:h,margin:s,viewPort:d}),f=K.addOffset(o,v.offset);return{flip:v.flip,flipped:v.flipped,fit:v.fit,fitted:v.fitted,offset:f}}},2346:(t,e,o)=>{var r;function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(t,e,o){return(e=function(t){var e=function(t,e){if("object"!==(void 0===t?"undefined":n(t))||null===t)return t;var o=t[Symbol.toPrimitive];if(void 0!==o){var r=o.call(t,"string");if("object"!==(void 0===r?"undefined":n(r)))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===(void 0===e?"undefined":n(e))?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[e]=o,t}Object.defineProperty(e,"__esModule",{value:!0}),e.DraggableVue2=e.Draggable=void 0;var a=o(1895),s=(a.h,a.version&&"3"===a.version[0]),c=o(1154),l=o(5123),h=(i(r={emits:{press:null,drag:null,release:null},inheritAttrs:!1,created:function(){this.element=null;var t=c,e=void 0!==t&&t.Draggable?t:t.default;this.draggable=new e.Draggable({press:this.press,drag:this.drag,release:this.release})},setup:s?function(){return{v3:!!s}}:void 0,mounted:function(){this.$el&&(this.element=3===this.$el.nodeType||8===this.$el.nodeType?this.$el.nextElementSibling:this.$el,this.draggable.bindTo(this.element))},destroyed:s?void 0:function(){this.draggable.destroy()},unmounted:function(){this.draggable.destroy()},methods:{press:function(t){this.element&&this.$emit("press",t,this.element)},drag:function(t){this.element&&this.$emit("drag",t,this.element)},release:function(t){this.element&&this.$emit("release",t,this.element)}}},"setup",s?function(){return{v3:!!s}}:void 0),i(r,"render",(function(t){return(0,l.getDefaultSlots)(this)})),r);e.DraggableVue2=h;var u=h;e.Draggable=u},1685:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BrowserSupportService=void 0;var o=function(){return"undefined"!=typeof document?document:{}},r=function(){function t(){}return Object.defineProperty(t.prototype,"scrollbarWidth",{get:function(){var t=o();if(!this.scrollbar&&t&&t.createElement){var e=t.createElement("div");e.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",e.innerHTML=" ",t.body.appendChild(e),this.scrollbar=e.offsetWidth-e.scrollWidth,t.body.removeChild(e)}return this.scrollbar},enumerable:!1,configurable:!0}),t}();e.BrowserSupportService=r},8770:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.canUseDOM=void 0;var o=Boolean("undefined"!=typeof window&&window.document&&window.document.createElement);e.canUseDOM=o},3820:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.classNames=void 0;var r=o(4650);e.classNames=function(){for(var t=[],o=0;o<arguments.length;o++)t[o]=arguments[o];return t.filter((function(t){return!0!==t&&!!t})).map((function(t){return Array.isArray(t)?e.classNames.apply(void 0,t):(0,r.isObject)(t)?Object.keys(t).map((function(e,o){return t[o]||t[e]&&e||null})).filter((function(t){return null!==t})).join(" "):t})).filter((function(t){return!!t})).join(" ")}},920:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.cloneArray=e.cloneValue=e.cloneObject=e.clone=e.cloneDate=void 0;var r=o(4650);function n(t,e){for(var o in t)if(t.hasOwnProperty(o)){var r=t[o];e[o]=i(r,e[o])}}function i(t,o){if(Array.isArray(t))return a(t);if(t instanceof Date)return(0,e.cloneDate)(t);if(t&&(0,r.isObject)(t)){var i=o||{};return n(t,i),i}return t}function a(t){return t.map((function(t){return i(t,void 0)}))}e.cloneDate=function(t){return t?new Date(t.getTime()):null},e.clone=function(t){var e={};return n(t,e),e},e.cloneObject=n,e.cloneValue=i,e.cloneArray=a},6866:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.FIELD_REGEX=void 0,e.FIELD_REGEX=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g},5123:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getDefaultSlots=void 0,e.getDefaultSlots=function(t){var e=t.$slots.default;return t.v3&&e&&"function"==typeof e?e():e}},580:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.focusContainer=e.focusLastFocusableChild=e.focusFirstFocusableChild=e.lastFocusableChild=e.firstFocusableChild=void 0;var r=o(7385),n='input, [tabindex]:not([tabindex="-1"])';e.firstFocusableChild=function(t){if(t){var e=t.querySelectorAll(n);if(e.length&&e[0].focus)return e[0]}},e.lastFocusableChild=function(t){if(t){var e=t.querySelectorAll(n);if(e.length&&e[e.length-1].focus)return e[e.length-1]}},e.focusFirstFocusableChild=function(t){if(t){var e=t.querySelectorAll(n);e.length&&e[0].focus&&e[0].focus()}},e.focusLastFocusableChild=function(t){if(t){var e=t.querySelectorAll(n);e.length&&e[e.length-1].focus&&e[e.length-1].focus()}},e.focusContainer=function(t,o){var n=!0;if(t.keyCode!==r.Keys.enter&&t.target===o)return!1;if(t.keyCode===r.Keys.enter&&t.target===o)n=!0,setTimeout((function(){(0,e.focusFirstFocusableChild)(o)}),1);else if(t.keyCode===r.Keys.esc)n=!1,o.focus();else if(t.keyCode===r.Keys.tab){var i=(0,e.firstFocusableChild)(o),a=(0,e.lastFocusableChild)(o);a&&!t.shiftKey&&t.target===a&&(t.preventDefault(),i.focus()),i&&t.shiftKey&&t.target===i&&(t.preventDefault(),a.focus())}return n}},7733:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getActiveElement=e.getInnerActiveElement=void 0,e.getInnerActiveElement=function(t){var o=t.shadowRoot,r=t.contentDocument;return o&&o.activeElement?(0,e.getInnerActiveElement)(o.activeElement):r&&r.activeElement?(0,e.getInnerActiveElement)(r.activeElement):t},e.getActiveElement=function(t){if(t&&t.activeElement)return(0,e.getInnerActiveElement)(t.activeElement)}},1369:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getTabIndex=void 0,e.getTabIndex=function(t,e,o){var r="string"==typeof t?parseInt(t,void 0):t;if(NaN!==r)return void 0!==r?r:e?o?void 0:-1:0}},4504:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getter=void 0;var r=o(6866),n={undefined:function(){}};e.getter=function(t){if(n[t])return n[t];var e=[];return t.replace(r.FIELD_REGEX,(function(t,o,r,n){e.push(void 0!==o?o:r||n)})),n[t]=function(t){for(var o=t,r=0;r<e.length&&o;r++)o=o[e[r]];return o},n[t]}},5350:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.guid=void 0,e.guid=function(){var t,e,o="";for(t=0;t<32;t++)e=16*Math.random()|0,8!==t&&12!==t&&16!==t&&20!==t||(o+="-"),o+=(12===t?4:16===t?3&e|8:e).toString(16);return o}},4366:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.hasRelativeStackingContext=void 0;var r=o(8770);e.hasRelativeStackingContext=function(t){if(!r.canUseDOM)return!1;var e=t?t.ownerDocument:document;if(!e||!e.body)return!1;var o=e.createElement("div");o.style.transform="matrix(10, 0, 0, 10, 0, 0)";var n=e.createElement("div");n.appendChild(e.createTextNode("child")),n.style.position="fixed",n.style.top="10px",o.appendChild(n),e.body.appendChild(o);var i=10!==n.getBoundingClientRect().top;return e.body.removeChild(o),i}},7754:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.FontIconVue2=e.FontIcon=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a=o(1398),s={name:"KendoFontIcon",emits:{click:null},props:{name:String,themeColor:{type:String},size:{type:String},flip:{type:String},id:String,ariaLabel:String,title:String,tabIndex:Number},computed:{fontClassNames:function(){var t,e=this.$props,o=e.name,r=e.flip,n=e.size,i=e.themeColor;return(t={"k-icon":!0,"k-font-icon":!0})["k-i-"+o]=o,t["k-color-"+i]=i,t["k-flip-h"]="horizontal"===r||"both"===r,t["k-flip-v"]="vertical"===r||"both"===r,t[a.SIZE_CLASSES[n]]=n,t}},setup:i?function(){return{v3:!!i}}:void 0,render:function(t){var e=n||t,o=this.$props,r=o.id,i=o.title,a=o.tabIndex,s=o.ariaLabel;return e("span",{class:this.fontClassNames,id:r,attrs:this.v3?void 0:{id:r,title:i,"aria-label":s,tabIndex:a,role:"presentation"},title:i,"aria-label":s,tabIndex:a,role:"presentation",onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick}})},methods:{handleClick:function(t){this.$emit("click",t)}}};e.FontIconVue2=s;var c=s;e.FontIcon=c},3649:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.IconVue2=e.Icon=void 0;var n=o(1895),i=n.h,a=n.version&&"3"===n.version[0],s=o(7754),c=o(2128),l={name:"KendoIcon",emits:{click:null},inject:{kendoIcons:{default:{type:"svg",icons:{}}}},props:{name:String,icon:Object,title:String,themeColor:{type:String},size:{type:String},flip:{type:String},id:String,ariaLabel:String,viewBox:{type:String,default:"0 0 24 24"},tabIndex:Number},setup:a?function(){return{v3:!!a}}:void 0,render:function(t){var e=i||t,o=this.$props,n=o.name,a=o.icon,l=o.themeColor,h=o.size,u=o.flip,p=o.id,d=o.viewBox,v=o.tabIndex,f=o.title,m=o.ariaLabel,g=n&&this.kendoIcons&&this.kendoIcons.icons&&this.kendoIcons.icons[n]||a,y=this.kendoIcons&&"svg"===this.kendoIcons.type&&void 0!==g,b=this.kendoIcons&&this.kendoIcons.size?this.kendoIcons.size:h,x=this.kendoIcons&&this.kendoIcons.flip?this.kendoIcons.flip:u,w=n||(a&&a.name?a.name:void 0),_={themeColor:l,size:b,flip:x,id:p,tabIndex:v,title:f,ariaLabel:m},C=e(s.FontIcon,r(r({},_),{name:w,attrs:this.v3?void 0:r(r({},_),{name:w}),onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick}})),O=e(c.SvgIcon,r(r({},_),{icon:g,viewBox:d,name:w,attrs:this.v3?void 0:r(r({},_),{icon:g,viewBox:d,name:w}),onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick}}));return y?O:C},methods:{handleClick:function(t){this.$emit("click",t)}}};e.IconVue2=l;var h=l;e.Icon=h},2128:(t,e,o)=>{var r=function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.SvgIconVue2=e.SvgIcon=void 0;var n=o(1895),i=n.h,a=n.version&&"3"===n.version[0],s=o(1398),c=o(5123),l={name:"KendoSvgIcon",emits:{click:null},props:{name:String,icon:Object,themeColor:{type:String},size:{type:String},flip:{type:String},id:String,ariaLabel:String,title:String,viewBox:{type:String,default:"0 0 24 24"},tabIndex:Number,svgClassName:String,svgStyle:Object},computed:{wrapperClass:function(){var t,e=this.$props,o=e.name,r=e.flip,n=e.size,i=e.themeColor;return(t={"k-icon":!0,"k-svg-icon":!0})["k-color-"+i]=i,t["k-svg-i-"+o]=o,t["k-flip-h"]="horizontal"===r||"both"===r,t["k-flip-v"]="vertical"===r||"both"===r,t[s.SIZE_CLASSES[n]]=n,t}},setup:a?function(){return{v3:!!a}}:void 0,render:function(t){var e=i||t,o=(0,c.getDefaultSlots)(this),n=this.$props,a=n.svgClassName,s=n.icon,l=n.id,h=n.tabIndex,u=n.svgStyle,p=n.viewBox,d=n.title,v=n.ariaLabel,f=s?s.content:void 0,m={id:l,title:d,"aria-hidden":!0,tabIndex:h,ariaLabel:v,focusable:"false",xmlns:"http://www.w3.org/2000/svg",viewBox:s?s.viewBox:p},g=e("svg",r(r({},m),{attrs:this.v3?void 0:m,domProps:this.v3?void 0:{innerHTML:f},innerHTML:f,class:a,style:u}),s?[]:[o]);return e("span",{class:this.wrapperClass,onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick},"aria-hidden":!0,attrs:this.v3?void 0:{"aria-hidden":!0}},[g])},methods:{handleClick:function(t){this.$emit("click",t)}}};e.SvgIconVue2=l;var h=l;e.SvgIcon=h},1398:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SIZE_CLASSES=void 0,e.SIZE_CLASSES={default:"",xsmall:"k-icon-xs",small:"k-icon-sm",medium:"k-icon-md",large:"k-icon-lg",xlarge:"k-icon-xl",xxlarge:"k-icon-xxl",xxxlarge:"k-icon-xxxl"}},9451:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getIconName=void 0,e.getIconName=function(t){return t&&-1!==t.indexOf("k-i-")?t.split("k-i-")[1]:t}},9650:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},3763:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},1899:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},4650:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isObject=void 0,e.isObject=function(t){return"object"==typeof t}},6777:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getDir=e.isRtl=void 0;var r=o(8770);e.isRtl=function(t){return Boolean(r.canUseDOM&&t&&"rtl"===getComputedStyle(t).direction)},e.getDir=function(t,e){if(!e&&r.canUseDOM&&t){var o=window.getComputedStyle(t).direction;if(o)return o}return e}},7385:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Keys=void 0,e.Keys={backspace:8,tab:9,enter:13,shift:16,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46}},7681:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getListeners=e.hasListener=void 0,e.hasListener=function(t){if(this.v3){var e=Object.keys(this.$attrs).map((function(t){return t.toLowerCase()})).some((function(e){return e.endsWith(t.toLowerCase())})),o=Object.entries(this.$props).some((function(e){var o=e[0],r=e[1],n=o.toLowerCase();return void 0!==r&&n.startsWith("on")&&n.endsWith(t.toLowerCase())}));return e||o}return this.$listeners[t]},e.getListeners=function(){if(this.v3){var t={};for(var e in this.$attrs)e.startsWith("on")&&(t[e]=this.$attrs[e]);for(var e in this.$props)e.startsWith("on")&&(t[e]=this.$props[e]);return t}return this.$listeners}},9680:function(t,e,o){var r=this&&this.__createBinding||(Object.create?function(t,e,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(e,o);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,r,n)}:function(t,e,o,r){void 0===r&&(r=o),t[r]=e[o]}),n=this&&this.__exportStar||function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||r(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.shouldShowValidationUI=e.validatePackage=e.setter=e.getter=e.getDir=e.isRtl=e.getDefaultSlots=e.getTabIndex=e.templateDefinition=e.templateRendering=e.getTemplate=e.cloneDate=e.cloneObject=e.cloneValue=e.cloneArray=e.Draggable=e.clone=e.focusContainer=e.focusLastFocusableChild=e.lastFocusableChild=e.focusFirstFocusableChild=e.firstFocusableChild=e.canUseDOM=e.hasListener=e.getListeners=e.isObject=e.noop=e.Keys=e.guid=e.classNames=e.setRef=e.getRef=void 0;var i=o(3820);Object.defineProperty(e,"classNames",{enumerable:!0,get:function(){return i.classNames}});var a=o(5350);Object.defineProperty(e,"guid",{enumerable:!0,get:function(){return a.guid}});var s=o(7385);Object.defineProperty(e,"Keys",{enumerable:!0,get:function(){return s.Keys}});var c=o(8770);Object.defineProperty(e,"canUseDOM",{enumerable:!0,get:function(){return c.canUseDOM}});var l=o(9360);Object.defineProperty(e,"getRef",{enumerable:!0,get:function(){return l.getRef}}),Object.defineProperty(e,"setRef",{enumerable:!0,get:function(){return l.setRef}});var h=o(580);Object.defineProperty(e,"focusFirstFocusableChild",{enumerable:!0,get:function(){return h.focusFirstFocusableChild}}),Object.defineProperty(e,"focusLastFocusableChild",{enumerable:!0,get:function(){return h.focusLastFocusableChild}}),Object.defineProperty(e,"focusContainer",{enumerable:!0,get:function(){return h.focusContainer}}),Object.defineProperty(e,"firstFocusableChild",{enumerable:!0,get:function(){return h.firstFocusableChild}}),Object.defineProperty(e,"lastFocusableChild",{enumerable:!0,get:function(){return h.lastFocusableChild}});var u=o(2346);Object.defineProperty(e,"Draggable",{enumerable:!0,get:function(){return u.Draggable}});var p=o(920);Object.defineProperty(e,"clone",{enumerable:!0,get:function(){return p.clone}}),Object.defineProperty(e,"cloneArray",{enumerable:!0,get:function(){return p.cloneArray}}),Object.defineProperty(e,"cloneValue",{enumerable:!0,get:function(){return p.cloneValue}}),Object.defineProperty(e,"cloneObject",{enumerable:!0,get:function(){return p.cloneObject}}),Object.defineProperty(e,"cloneDate",{enumerable:!0,get:function(){return p.cloneDate}});var d=o(4650);Object.defineProperty(e,"isObject",{enumerable:!0,get:function(){return d.isObject}});var v=o(482);Object.defineProperty(e,"noop",{enumerable:!0,get:function(){return v.noop}});var f=o(4504);Object.defineProperty(e,"getter",{enumerable:!0,get:function(){return f.getter}});var m=o(9063);Object.defineProperty(e,"setter",{enumerable:!0,get:function(){return m.setter}});var g=o(7681);Object.defineProperty(e,"hasListener",{enumerable:!0,get:function(){return g.hasListener}}),Object.defineProperty(e,"getListeners",{enumerable:!0,get:function(){return g.getListeners}});var y=o(2337);Object.defineProperty(e,"templateRendering",{enumerable:!0,get:function(){return y.templateRendering}}),Object.defineProperty(e,"getTemplate",{enumerable:!0,get:function(){return y.getTemplate}}),Object.defineProperty(e,"templateDefinition",{enumerable:!0,get:function(){return y.templateDefinition}});var b=o(1369);Object.defineProperty(e,"getTabIndex",{enumerable:!0,get:function(){return b.getTabIndex}});var x=o(5123);Object.defineProperty(e,"getDefaultSlots",{enumerable:!0,get:function(){return x.getDefaultSlots}});var w=o(6777);Object.defineProperty(e,"isRtl",{enumerable:!0,get:function(){return w.isRtl}}),Object.defineProperty(e,"getDir",{enumerable:!0,get:function(){return w.getDir}});var _=o(7940);Object.defineProperty(e,"validatePackage",{enumerable:!0,get:function(){return _.validatePackage}}),Object.defineProperty(e,"shouldShowValidationUI",{enumerable:!0,get:function(){return _.shouldShowValidationUI}}),n(o(6484),e),n(o(3269),e),n(o(1685),e),n(o(5984),e),n(o(4366),e),n(o(3649),e),n(o(7754),e),n(o(2128),e),n(o(9451),e),n(o(9650),e),n(o(3763),e),n(o(1899),e),n(o(7956),e),n(o(7733),e),n(o(9642),e)},7956:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Navigation=e.FOCUSABLE_ELEMENTS=void 0,e.FOCUSABLE_ELEMENTS=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[contenteditable]"];var o=function(){function t(t){var e=this;this.rovingTabIndex=!0,this.update=function(){},this.focusNextIndex=function(t,o){var r=e.elements,n=r.indexOf(t)+o;n=n<0?r.length-1:n,e.focusElement(r[n%r.length],t)},this.tabIndex=t.tabIndex||0,this.root=t.root,this.selectors=t.selectors,this.rovingTabIndex=void 0===t.rovingTabIndex||t.rovingTabIndex,this.mouseEvents=t.mouseEvents||{},this.keyboardEvents=t.keyboardEvents||{}}return Object.defineProperty(t.prototype,"elements",{get:function(){return this.root?Array.from(this.root.querySelectorAll(this.selectors.join(","))):[]},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"first",{get:function(){return this.root&&this.root.querySelector(this.selectors.join(","))||null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"last",{get:function(){var t=this.elements;return t[t.length-1]||null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"current",{get:function(){return this.elements.find((function(t){return t.matches(":focus")}))||null},enumerable:!1,configurable:!0}),t.prototype.focusNext=function(t){this.focusNextIndex(t,1)},t.prototype.focusPrevious=function(t){this.focusNextIndex(t,-1)},t.prototype.triggerKeyboardEvent=function(t){var e=t.target instanceof Element&&t.target.closest(this.selectors.join(",")),o=" "===t.key?"Space":t.key,r=t.type;e&&this.keyboardEvents[r][o]&&this.keyboardEvents[r][o].call(void 0,e,this,t)},t.prototype.triggerMouseEvent=function(t){var e=t.target instanceof Element&&t.target.closest(this.selectors.join(",")),o=t.type;e&&this.mouseEvents[o].call(void 0,e,this,t)},t.prototype.focusElement=function(t,e){t&&(e&&(this.rovingTabIndex&&e.removeAttribute("tabindex"),e.classList.remove("k-focus")),this.rovingTabIndex&&t.setAttribute("tabindex",String(this.tabIndex)),t.focus({preventScroll:!0}))},t}();e.Navigation=o},482:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.noop=void 0,e.noop=function(){}},9360:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.setRef=e.getRef=void 0,e.getRef=function(t,e,o){return t.v3?t["".concat(e,"Ref")]:t.$refs["".concat(o||e)]},e.setRef=function(t,e,o){return t.v3?function(o){t["".concat(e,"Ref")]=o}:o||e}},5984:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.setScrollbarWidth=e.getScrollbarWidth=void 0;var r=o(1685),n=o(8770);e.getScrollbarWidth=function(){return!(!n.canUseDOM||!document.body)&&(new r.BrowserSupportService).scrollbarWidth},e.setScrollbarWidth=function(){if(!n.canUseDOM||!document.body)return!1;var t=(new r.BrowserSupportService).scrollbarWidth;document.body.style.setProperty("--kendo-scrollbar-width","".concat(t,"px"))}},9063:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.setter=void 0;var r=o(6866),n={undefined:function(t){return t}};e.setter=function(t){if(n[t])return n[t];var e=[];return t.replace(r.FIELD_REGEX,(function(t,o,r,n){e.push(void 0!==o?o:r||n)})),n[t]=function(t,o){for(var r=t,n=e.length-1,i=0;i<n&&r;i++)r=r[e[i]]=r[e[i]]||{};r[e[n]]=o},n[t]}},2337:function(t,e,o){var r=this&&this.__assign||function(){return r=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.transformListeners=e.getTemplate=e.templateRendering=e.templateDefinition=void 0;var n=o(1895),i=o(4650),a=n,s=a.version&&"3"===a.version[0];function c(t){if(!t)return t;for(var e={},o=Object.keys(t),r=0;r<o.length;r++){var n=o[r];e["on"+n.charAt(0).toUpperCase()+n.slice(1)]=t[n]}return e}e.templateDefinition={type:[String,Function,Object,Boolean],default:function(){}},e.templateRendering=function(t,e){if(t||!1===t){if(t.kt)return t;var o=s?this.$slots[t]||(t.toLowerCase?this.$slots[t.toLowerCase()]:null):this.$scopedSlots[t]||(t.toLowerCase?this.$scopedSlots[t.toLowerCase()]:null);return"string"==typeof t&&o?{kt:!0,type:"slot",render:o,listeners:e}:"string"==typeof t||(0,i.isObject)(t)||"function"==typeof t&&t.component?{kt:!0,type:"component",render:t,listeners:e}:{kt:!0,type:"renderFunction",render:t,listeners:e}}},e.getTemplate=function(t){var e,o,n,i=t.h,a=t.template,l=t.defaultRendering,h=t.defaultSlots,u=t.additionalProps,p=t.additionalListeners,d=t.swapDefaultSlots;if(!a||a&&!0===a.render)return l;if(s){var v=l?l.props:{};e=r(r({},a.listeners),c(p)),o=r(r(r({},v),u),e),n=r(r({},o),e)}else{var f=l&&l.componentOptions,m=f?l.componentOptions.listeners:{},g=f?l.componentOptions.propsData:{};e=r(r(r(r({},m),p),c(p)),a.listeners),n={props:o=r(r(r({},g),u),e),on:e}}if("slot"===a.type){var y=a.render({props:o,listeners:e,methods:e,defaultSlots:h});return s?y:y?y[0]:void 0}return"renderFunction"===a.type?d?a.render?a.render(i,l,h,o,e):void 0:a.render?a.render(i,l,o,e,h):void 0:i(a.render,n,s?function(){return[h]}:[h])},e.transformListeners=c},6484:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.kendoThemeMaps=void 0,e.kendoThemeMaps={sizeMap:{small:"sm",medium:"md",large:"lg"},roundedMap:{small:"sm",medium:"md",large:"lg"}}},3269:function(t,e){var o=this&&this.__assign||function(){return o=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},o.apply(this,arguments)},r=this&&this.__spreadArray||function(t,e,o){if(o||2===arguments.length)for(var r,n=0,i=e.length;n<i;n++)!r&&n in e||(r||(r=Array.prototype.slice.call(e,0,n)),r[n]=e[n]);return t.concat(r||Array.prototype.slice.call(e))};function n(t,e,n){var i;return n?o(o({},t),((i={})[e]=n.length?r([],n,!0):void 0,i)):t&&t[e]?r([],t[e],!0):[]}function i(t,e,o){if(t[e]){var r=n(t,e).map((function(t){return i(t,e,o)}));return o(n(t,e,r))}return o(t)}Object.defineProperty(e,"__esModule",{value:!0}),e.getNestedValue=e.getItemPath=e.extendDataItem=e.mapTreeItem=e.mapTree=void 0,e.mapTree=function(t,e,o){return r([],t.map((function(t){return i(t,e,o)})),!0)},e.mapTreeItem=function(t,e,o,r){for(var n=t,i=[],a=0;a<e.length;a++)n=n[e[a]],n=Array.isArray(n)?n:n[o],i.push(n);var s=i.length>1?i[i.length-2]:t,c=e[e.length-1],l=r(s[c]);s.splice(c,1,l)},e.extendDataItem=function(t,e,o){var r;return Object.assign({},t,t[e]?((r={})[e]=t[e].slice(),r):{},o||{})},e.getItemPath=function(t,e,o){var n=[],i=r([],e,!0);if(i.length){var a=t[i.shift()||0];for(n.push(a);i.length&&o;)a=a[o][i.shift()||0],n.push(a)}return n},e.getNestedValue=function(t,e){var o=t.split("."),r=e;return o.forEach((function(t){r=r?r[t]:void 0})),r}},7940:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.shouldShowValidationUI=e.validatePackage=void 0;var r=o(9302),n=["telerik.com","progress.com","stackblitz.io","csb.app","webcontainer.io"],i=r,a=void 0!==i&&i.validatePackage?i:i.default;e.validatePackage=function(t){if(a&&a.validatePackage)a.validatePackage(t);else{var e="License activation failed for ".concat(t.name,"\n");e+="The @progress/kendo-licensing script is not loaded.\n",e+="See ".concat(t.licensingDocsUrl," for more information.\n"),console.warn(e)}},e.shouldShowValidationUI=function(t){return!(n.some((function(t){var e;return null===(e=globalThis.document)||void 0===e?void 0:e.location.hostname.endsWith(t)}))||a&&a.validatePackage&&a.validatePackage(t))}},9642:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.WatermarkOverlayVue2=e.WatermarkOverlay=void 0;var r=o(1895),n=r.h,i=r.version&&"3"===r.version[0],a="https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-banner",s=new Array,c={name:"KendoWatermarkOverlay",setup:i?function(){return{v3:!!i}}:void 0,mounted:function(){if(this.bannerWrapper=this.$refs.banner,s.push(this.bannerWrapper),document&&document.body&&document.body.append(this.bannerWrapper),s.length>1)for(var t=1;t<s.length;t++)s[t].remove()},beforeDestroy:i?void 0:function(){this.bannerWrapper.remove(),s=[]},beforeUnmount:function(){this.bannerWrapper.remove(),s=[]},data:function(){return{watermarkStyles:{position:"absolute",width:"100%",height:"100%",top:0,left:0,right:0,bottom:0,opacity:.12,"z-index":101,"pointer-events":"none","background-image":"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABVxSURBVHgB7Z3tVRtJE4WL9zgANgLLGRCCnAGOADmCxRGgDFAGYiOADKQMIAGO9J8ji42g37mjqlUjBgOanpn+uM85sjC2sKzbVd1dVV0tQgghhBBCCCGEEEIIKRPn3Gn1GAlJmmN1pP558J6OX9540ejh4WGlX09OTk7+EZIclXYXlY43+vVflY7PH3wd9c+AY/Wvvcb9/b0bjUYOz/hBQpICmh1oOPrEa6l/4rTR337AhIMgTSqtzg+0m8gnof7p0mD8EzmGhkFwJiR6np6e7luLL9Q/RTDTBzF+7wfWg2CxWOCHjYVET6XTdLPZrFuLL9Q/NeCkoVUQ4/d+6Ijev1yof1rAUVMvQgjJHebrSRu+CEmWo/O8hISgCjStKpgiGoDWed4AUP/hwGf++Pi4hQYyFHgDzBP3T7A8b0uo/zD4+sMBy1CwWKR/YjF+fS/Uv2di0t/eEAdBT0QnvlD/PolR/xoOgu4JUd7bFdS/e6I1foODoFuqz3M2mUziFF+of5dEb/xGwyAYCwmCVuPNYv5MqX94Yl75NWKD4PLyEm92KqQoqH9Y8Bnis0zC+A14LbxxVqiVCfUPh678plxNFYQe5pjRgAgpDAv4IOAHJyCEkDJoiPaeCyG5UA1oRIYWHNivSSbV0wLq/zbQXz+bS8kV/AeZJ35NCcYPqH8zvv4VS8kVFou8phTjB9T/NcVt+zgI9rjQDRwTgPrvKcn5v4CDYIfT/vtFiS/UHxRr/AYHwQ4t9DiVwihZ/+KN36ATKJsS9U+utr9r/EGQdQSUNFKa/geZkImQ/2rHlznnQDG7oX9b9Xwl5AUl6G9oLcSSxl8Q/p4P13YJIaQMisvzEkJ2lJjnJyQY3lnoJGfNUvP8oUhZf7c70s2eCG1wL7uhRJ0iQnCveiDIhzf7t/f9IvP8IUhJfx/b9rErUkvgRVPIE1fv6xrvbzweu7OzM3d7e4v3OhfSilT092HMJzCxF4u43eWctfFvt1uHu9nxXvF1CWmtroldfx9W+HVErINAjX+M65ngAPxnOAJ1AiMhrUjBCdD4Oya2QYBlPwx8vV47WwFg+a+XZbrz83NzANz/ByBmJ0Dj74lYBgECfrbnt6U/DB/vC7388L2rqyu8vzshwYjRCdD4e8YfBLidVgYA0X7M9jB8PGazmbu5ualnfiz9dSAsufwPTwz6+5jjp/H3CD5ofPB9343u9v3u6+U+0jyY7eEA8Hx3d4c/QjvvMyGdMZT+TeA9wBHR+DPHUn3T6bRe7uMxn89tn18v/TH7O17gQEheYM9vEX7M9hbsg/FbHED3/IPPSISQgNhyE0au+7x7PPtOQFcB3PMTMjTYf4cyRN3zL2DgMHgs/7XU99acgDIWEgUh9W/4uWMh8QKBvCh8qxSR7fmxt0eEv8kJ6MzP8/2REFL/g59bp/o0xsMAb6xAnBB5Yr+6D3X9KOpBxP/ACWA0jFnoEw+h9D/4mYd5/pGQeAlRLFK95tJy+35578PDQ+0E9LAPi3wixAUsFmKRT6I0DIIPzdJuf6R3i+UeZnsz/nqjPx47/fMpZ/54OVb/g5/BZi4pY4Pgo8s2d3CkF0Z/cXFRL/+Xy2W9BdBUH4/5JsBn9W94PZu5pI77QzMOjepiNp/j71hO//fv31sr7qmtfT73i3xWjnvAZHhH/4nquXrLwB2bueSJ27Vmvodhq4df4BmzvQb3IPxWl/zgRl/DwZA4GrhdYFUHfbHE1y0enXsJ2FLfCnggvjqBejDoTI8o38ocgJAscNq8BY4fv/Uf+J46gjkdQcbA+19fXzs7zQfR8TWcgH+kFw/u+fMDKz/o3OQETk9PLcWLPSBbeeWELd91eb+CcTc5gXr6r9J8PNKbF/7S3z+6DYcvDasBOv6M0GUduNDfv+cEYPhjIVmA+I3Vc4gaOQzfHAECvb4joAPICCzlrIJP93h/dAIYDBQ/L8wBNC37rXUblv5CB5AfGvi5h6F7Ed9GJ2CZP0b780O1vreVnnhOAFsBOoCMscg/HMBbTsCO+grJFkvvHmYCSnYA/5MMcbsiH6TykNgfr9fry58/f0oltFxcXMj379+l+h42gBcnJyfr6iXfq1nhJ56FZIeuAq+fn59Xv379Oq0CgVJNBEIydAAavLv98ePHeSX4bfX1OQSv9noQ/a7y9A8HTuAcTqB63FSPZyE5Mq3GwOW3b99kNpu9+5e/fv2Kp3+FpAW8vB3cwbLOOvZYfl9LfGdW9KOn+mZCskZXhCuL9vtLfjvshd97hWArpn8TxGn5rhZzOL/gB19DYBzzxcEeTQEtGfArB7c7xbmyVu4YExoTuNcYEL6eCkkTxHYOmna4wzQfvq8z/+o949e940hIkjTp5/ZXjm/1+VQfr856UP/EcLtqr9s/OQENDl5+wPhH3nHQZK6mJjucNvNo2w+A+icC0jaY4a2LT5MT+Mye3+l58JSupiY7XIA2XtQ/IZw2f7D9v+X6D53AZ/f8LqGrqckOF7CNF/VPAF3Or6xvv53r951Amx5+DYOAXWEjxXXQxov6R4zTSzusht8OfABE+r3U39y1iPbbIODVX3ED4/Tagk8kENQ/QiyaC1Fg7PX6frm0Mk6/wUOQ8l799+j9I0cDwcF1ov4R4Xbde2vjxi92ogsPzPrY92szD7buJiQn3K6+v17q2yxvlV1u3+TRAn4jIYTkAfbymOWx1AcwfHMEXp5/JISQ9PEDd867ohvGbvt+cwRe6+5ee7ltNpuVf7yYdA8+68fHxy0+exkY6t8RGnSxJX19yAd7fWvhjEs7NOCHb2D9/+AGqO3HQGSeuD/8PD/GggwM9e8IBPCwr7ciHnzA6NrqtW5+4QRkIByLRXrDRXhXH/XvCKRccEuPX8mHD9jr7Vc7AV32D9rJh4Oge2I0foP6d8QHnADO9kdxYw8HQXfEbPwG9e+It5yAlvdG1beNgyA8KRi/Qf07oskJIEYQw8x/SMMgGAs5CmR0UjF+g/oHwh00YzAn0OZgT1/YINBU5VTIUeCzw2eYivEb1L8l7o1mDm7X220a48x/iNtVLE4dC5OOxu2794wlMaj/kbgAzRwIIQmS4p6PEBKIp6enexo/IYWCPdNms1nnbPxat7BwvH/+P7Dt08/kUjKH+hcOxGeeeI8f86lYSuZQ/8JhsciehoBv9rMi9VdcwZcucBCkVeEXmuL1dy0vbciBkgdBycZvFKs/8/x7ShwENP49xelP8V9T0iBgncdritGfxv82/iDIORJ+EAGfCKnJXn8a//to7fgy51y45sCX1P812erPZR8hBVMZ/Ax9+2j8hBSIHumcpXikkxBCBsXtz8QnUyXndvfz8Sx8AFLUnwTEveyKE32KyAK+7IYThqT0V88/o+cPBz7TVPLEJdb2d00y+pv4elHHTEgwUigWYaq3O6LXn56/e2IeBDT+7olWf4rfHzEOAurfH9HpT/H7J6ZBQP37Jxr9Kf5w+IMAt9PKQOB6NurfP4Prjyg/jX9Y8JnDAHE/vQwE/m0MQOrfP4PqX/3jp15Dj4kQQspCK5SK7OZDCCGEEBIfbneH4kgCoT9vLCQJguqPaD8CDdXzlZDogaEuFotgKSLL9uBnYmAJiZqg+vupPlzbJSR6YKSh8sSODVyTI5j+LO9NlxDFIqzzSJfW+jPPnz4Ng+DDGRvqnz5t9GeePxNsEHx2+U798+BY/e3FzPNnwLE6Uv88oI6EEEIIIYQQQgghhBBCCCGEEEIIIYQQQkiRoHyQxz/T51gdqX8evKfjlzdeNHp4eFjp15OTk5N/hCQHjoFWOt7o139VOj5/8HXUPwOO1f+/02ApXEhJmmnTzIP6p49r28wlRFMJMgwhmnlQ/3RB854g/RwaBgF7wkVOyGYe1D9N0L4vWDMXGwTaFHIsJGpgpF5TyIm0hPqnR6XTdLPZrF2oZi7aVIDePxFgqCH1ov6EEEIIITHRtl7jixBCkuToPH8ocGMQrihmiqh/8Jnjau6hrwen/sPQOs8fAgxA5on7xxcfBigDQf2HIUSdR6g3wmKRnolGfKH+QxCT/vaGOAh6Ijrxhfr3SYz613AQdE+04gv174Ng5b1dwUHQHTEbv0H9u6X6PGeTySTu69oaBsFYSCui9/we1L87tBpzFv1naoPg8vISA2AqpBX4DPFZxm78BvUn9awF8R07yrRGPf80pdmU+hNCyJHoYa4ZHSghhWEBXwT84ASEEFIGDdmec8mJ6j+EyNAiu/9YACC+fjaXkinU/21SSPW2BuIzT/waX/yKpWQK9W+mCOMHLBZ5TfbLPg/q/5pijN/gINhTnPhC/X1cwAauScFBUKbxG9R/h9P7F0rTv6bkQVCy8Rt0Aju00OtUSqTEQZBSbX/X0AmQF4Mg5wi4cRAJn0jhlKY/aUBrx5c558ANzYUvafx7StAfqxv0UKyer4QQUg5+zAfXdgkhpAxKqvMghHgUm+cPhdufhU/Oa+qRTp6Jb0HK+oOi8/whcC+74SSTIrJlH7vitCMl/RHcqx4I8uHN/u19v9w8f1swi6aWJ+aeLxyp6F+9r2u8v/F47M7Oztzt7S3e61xIe1IqFmGFX3hi19/tLuesjX+73brFYlG/V3xdQlq7F1JwAjT+7ohVfzX+Ma5ngwPwn+EI1AmMhLQnZidA4++e2PTHsh8Gvl6vna0AsPzXy1Ld+fm5OQDu/0MRoxOg8fdHLPoj4Gd7flv6w/DxvtDLD9+7urrC+7sTEhZ/EOB2WhkYE57G3w8x6I9oP2Z7GD4es9nM3dzc1DM/lv46FpZc/ncEBgEMD7XVMjB4DxiINP7+GEp/t7/voF7uI0WJ2R4OAM93d3f4I7TzPhNCSD5Yqm86ndbLfTzm87nt8+ulP2Z/x+vQCMkL7Pktwo/Z3oJ9MH6LA+ief/AVKSEkILbdgJHr3v4ez74T0FUA9/wxgP1XF0Lozx0LiZqQ+uuefwEDh8Fj+a+lvrfmBJSxkOGBEF4UNliKyFJ9usdjgCdSQupve37s7RHhb3ICOvPzfH8swDhD54kb8vwjIVESSn+/ug91/SjqQcT/wAlgNhiz0CcyQhaLsMgnPULoX73m0nL7fnnvw8ND7QT0sA+LfGKlYRB82ks7NnNIlmP1d/sjvVtsJTDbm/HXG/3x2OmfTznzR44NgmOX7Y7NHJLms/q7gyO9MPqLi4t6+b9cLustgKb6eMw3FdwfmjFggKg3X71l4I7NHJLmHf3PVPs5/o7l9H///r214p7a2udzv8hn5RgDShsN3Czg1SE4lom6xKO4heB2rdnvYdi6QljgGbO9BvfgOLa65Ac3+hpOBinjtHkDhMdv/Qe+p45gTkeQL7bUtwIeaK5OoJ4MdKZHlG9lDkBIPsDzQ/QmJ3B6emopHqwB2corQzDDX19fOzvNh7GAr+EE/CO9eHDPnxH+0t8/ugnBpWE1QOHzwpbvurxfwbibnEA9/VdpPh7pzQjs3yyfK2rkMHxzBAj0+I6ADiAvdFsHLvT37zkBGP5YSB6YA2ha9lvrJiz9hQ4gO7CVswo+jfH80QlgMqD2GaKC35unF88JYCtAB5AnGvi9h6F7GZ9GJ2CZP0b7M8XSO4eZADqAvLHIPxzAW07AjvpKYfxPCkBngevn5+fVr1+/TqtAoFQDQUieuF2RD1J5SOyP1+v15c+fP6Vy9HJxcSHfv3+X6nsIAF2cnJysq5d8r1YAP/EshVGEA6iYVkZ/+e3bN5nNZu/+5a9fv+LpXyHJocG72x8/fpxXDv+2+vocDr+K9cDp31UrvYcDJ3AOJ1A9bqrHs5D80BlhZdF+f8lvhz3we68QZMX0T3pglWcHd6Cjdeyx/L6W+M6s6EdP9c2ElIHbneJaWStnFIRoTOBe94D4eiokSZyW72oxl/MLfvA1jB6642CPpoCXDPhljO79RwffG6kj2OrzqT5e1Xo3vZ7EC2K7B0073GGaD9/XmX/1nvFT/4Rx2syjbT+AIW+gIZ/D7ao9b//kBDQ4ePkB46f+qeICtPFy2g8gpavJSwZpW8zw1sWnyQl8Zs9P/RPFBWzj5RK6mrxkTCfb/1uu/9AJfHbPT/0Tw3XQxqthELArcETocn5lffvtXL/vBNr08KP+CQFxvLbQEwmEDQJe/RQXTi/tsBp+O/AFEOn3Un9z1yLaT/0TQgNBwb20Zg/o/SPBsjkwShh7vb5fLq2M22/wEqS8V/+9sRBChsXtuvfWxo1f7EQnHpj1se/XZh5s3U1ITrhdfX+91LdZ3io73b7JqwX8RkIIyQPs5THLY6kPYPjmCLw8/0hI3iAd8/j4uN1sNisZGLwH/3gpCYcfuHPeFd0wdtv3myPwWnf32suR+veMn+fHBy8DA0fEPHF4NOhmS/r6kA/2+tbCHZd2aMAP38D6/8ENUNtP/XvERXhXn2OxSCcggId9vRXx4LNF12avdfsLJyADQf17IkbjNzgIwoOUK27p8Sv58Nl6vf1qJ6DL/kE7+VD/jonZ+A0OgvB8wAngbH8UN/ZQ/45IwfgNDoLwvOUEtLw3qr6N1D8wiOimYvxGwyAYC2lFkxNAjCCGmf8Q6h8QRHeR7knF+A0bBJqqmgr5NO6gGYc5gTYHe/qC+gfC7bv3jCUx3K5ibepYmPJp3BvNXNyut+M0xpn/EOpPyBG4AM1cCCEJkmLMhxASiKenp3saf4Fg2Vc9FsjpSuZo3hr/115r1lMAe+bNZrPO2fip/wH+nq9iKZkD8ZknLhfq79EQ8MneK7JYpGyov5JShV9oOAjKvnSjeP1LNn6j5EHgWl7akgPF6k/j31PiIGCef09x+jPP+5qSBgGd/2uKcgIHEdCJkBp/EOSaCaHxv00J+tdoDnRJ8V+jtePLHGshaPzvk7P+pGC47SOkYCqDn6FvH42fkAJxuyPdaN01FlIGbnc/37TkFE8o3L4nAmvHCyQ5/S3gw24oYXAvuyKxbLgwktK/xNr+rsFqKpU8sa78Zlz5hSMZ/Znq6Y4UikVMf72oYyYkGNHrT+PvnpgHAVd+3ROt/jT+/ohxEFD//ohOf4rfPzENAurfP1E5AVzPRPH7xx8EuJ1WBoDGPxyH+ruhjlTjbnR9AxMhvYLPHA4YGkjPIMpP4x+WIfUnhYMZx2voMRFCSFlohVqR3XwIIaQc3O5OtrGQJFC9RkKKRCsyRxICi/YuFgvs986ERA3Eh1ahUkT4GQg0Vc9XQqInqP6ODRyTA046VJ7Y1x/XdgmJnmD6M8+bLiGKRVjemy6t9WeeN30aBsGHI/bUP33a6M88bybYIPjs9o3658Gx+tuLmefNgGN1pP55QB0JIYQQQgghhBBCCJGy+T9ftRg+rVNPfAAAAABJRU5ErkJggg==')"},bannerStyles:{display:"flex",justifyContent:"center",alignItems:"center",position:"fixed",top:"16px",right:"16px",padding:"12px","border-radius":"4px","box-shadow":"0px 4px 5px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.03)","font-size":"14px","font-weight":400,"line-height":"20px","background-color":"#FFC000",color:"#1E1E1E","z-index":999999},bannerButtonStyles:{display:"inline-flex",position:"relative",border:"none","border-radius":"4px",padding:"5px","background-color":"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"},showBanner:!0}},methods:{onCloseBannerClick:function(){this.showBanner=!1,s=[]}},render:function(t){var e=n||t,o=this.showBanner&&e("div",{style:this.bannerStyles,ref:"banner"},[e("span",{style:{display:"flex",alignSelf:"center",marginRight:"8px"}},[e("svg",{width:"16",attrs:this.v3?void 0:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},height:"16",viewBox:"0 0 16 16",fill:"none"},[e("path",{"fill-rule":"evenodd",attrs:this.v3?void 0:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"},"clip-rule":"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"})])]),e("span",["No valid license found for Kendo UI for Vue. Learn how to activate your license."]),e("div",{style:{display:"flex",alignItems:"center",marginLeft:"24px"}},[e("a",{href:a,attrs:this.v3?void 0:{href:a},style:{marginRight:"8px",display:"flex"}},[e("button",{title:"Learn More",attrs:this.v3?void 0:{title:"Learn More"},style:this.bannerButtonStyles},[e("svg",{width:"16",attrs:this.v3?void 0:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},height:"16",viewBox:"0 0 16 16",fill:"none"},[e("path",{d:"M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",attrs:this.v3?void 0:{d:"M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",fill:"#1E1E1E"},fill:"#1E1E1E"})])])]),e("button",{title:"Close",attrs:this.v3?void 0:{title:"Close"},style:this.bannerButtonStyles,onClick:this.onCloseBannerClick,on:this.v3?void 0:{click:this.onCloseBannerClick}},[e("svg",{width:"16",attrs:this.v3?void 0:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},height:"16",viewBox:"0 0 16 16",fill:"none"},[e("path",{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",attrs:this.v3?void 0:{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",fill:"#1E1E1E"},fill:"#1E1E1E"})])])])]);return e("div",{style:this.watermarkStyles},[o])}};e.WatermarkOverlayVue2=c;var l=c;e.WatermarkOverlay=l},1154:(t,e,o)=>{o.r(e),o.d(e,{Draggable:()=>h,default:()=>p});var r=function(t,e){return function(o){return e(t(o))}},n=function(t,e,o){return t.addEventListener&&t.addEventListener(e,o)},i=function(t,e,o){return t&&t.removeEventListener&&t.removeEventListener(e,o)},a=function(){},s=function(t){return t.preventDefault()},c=/touch/;function l(t){return t.type.match(c)?{pageX:t.changedTouches[0].pageX,pageY:t.changedTouches[0].pageY,clientX:t.changedTouches[0].clientX,clientY:t.changedTouches[0].clientY,type:t.type,originalEvent:t,isTouch:!0}:{pageX:t.pageX,pageY:t.pageY,clientX:t.clientX,clientY:t.clientY,offsetX:t.offsetX,offsetY:t.offsetY,type:t.type,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,originalEvent:t}}var h=function(t){var e=this,o=t.press;void 0===o&&(o=a);var c=t.drag;void 0===c&&(c=a);var h=t.release;void 0===h&&(h=a);var u=t.mouseOnly;void 0===u&&(u=!1),this._pressHandler=r(l,o),this._dragHandler=r(l,c),this._releaseHandler=r(l,h),this._ignoreMouse=!1,this._mouseOnly=u,this._touchstart=function(t){1===t.touches.length&&e._pressHandler(t)},this._touchmove=function(t){1===t.touches.length&&e._dragHandler(t)},this._touchend=function(t){0===t.touches.length&&1===t.changedTouches.length&&(e._releaseHandler(t),e._ignoreMouse=!0,setTimeout(e._restoreMouse,2e3))},this._restoreMouse=function(){e._ignoreMouse=!1},this._mousedown=function(t){var o=t.which;o&&o>1||e._ignoreMouse||(n(e.document,"mousemove",e._mousemove),n(e.document,"mouseup",e._mouseup),e._pressHandler(t))},this._mousemove=function(t){e._dragHandler(t)},this._mouseup=function(t){i(e.document,"mousemove",e._mousemove),i(e.document,"mouseup",e._mouseup),e._releaseHandler(t)},this._pointerdown=function(t){t.isPrimary&&0===t.button&&(n(e.document,"pointermove",e._pointermove),n(e.document,"pointerup",e._pointerup),n(e.document,"pointercancel",e._pointerup),n(e.document,"contextmenu",s),e._pressHandler(t))},this._pointermove=function(t){t.isPrimary&&e._dragHandler(t)},this._pointerup=function(t){t.isPrimary&&(i(e.document,"pointermove",e._pointermove),i(e.document,"pointerup",e._pointerup),i(e.document,"pointercancel",e._pointerup),i(e.document,"contextmenu",s),e._releaseHandler(t))}},u={document:{configurable:!0}};h.supportPointerEvent=function(){return"undefined"!=typeof window&&window.PointerEvent},u.document.get=function(){return this._element?this._element.ownerDocument:document},h.prototype.cancelDrag=function(){i(this.document,"pointermove",this._pointermove),i(this.document,"pointerup",this._pointerup),i(this.document,"pointercancel",this._pointerup)},h.prototype.bindTo=function(t){t!==this._element&&(this._element&&this._unbindFromCurrent(),this._element=t,this._bindToCurrent())},h.prototype._bindToCurrent=function(){var t=this._element;this._usePointers()?n(t,"pointerdown",this._pointerdown):(n(t,"mousedown",this._mousedown),this._mouseOnly||(n(t,"touchstart",this._touchstart),n(t,"touchmove",this._touchmove),n(t,"touchend",this._touchend)))},h.prototype._unbindFromCurrent=function(){var t=this._element;if(this._usePointers())return i(t,"pointerdown",this._pointerdown),i(this.document,"pointermove",this._pointermove),i(this.document,"pointerup",this._pointerup),i(this.document,"contextmenu",s),void i(this.document,"pointercancel",this._pointerup);i(t,"mousedown",this._mousedown),this._mouseOnly||(i(t,"touchstart",this._touchstart),i(t,"touchmove",this._touchmove),i(t,"touchend",this._touchend))},h.prototype._usePointers=function(){return!this._mouseOnly&&h.supportPointerEvent()},h.prototype.update=function(t){var e=t.press;void 0===e&&(e=a);var o=t.drag;void 0===o&&(o=a);var n=t.release;void 0===n&&(n=a);var i=t.mouseOnly;void 0===i&&(i=!1),this._pressHandler=r(l,e),this._dragHandler=r(l,o),this._releaseHandler=r(l,n),this._mouseOnly=i},h.prototype.destroy=function(){this._unbindFromCurrent(),this._element=null},Object.defineProperties(h.prototype,u),h.default=h;const p=h},4407:t=>{t.exports=o},9302:t=>{t.exports=r},5725:t=>{t.exports=e},1895:e=>{e.exports=t}},i={};function a(t){var e=i[t];if(void 0!==e)return e.exports;var o=i[t]={exports:{}};return n[t].call(o.exports,o,o.exports,a),o.exports}return a.d=(t,e)=>{for(var o in e)a.o(e,o)&&!a.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),a.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},a(6545)})()}));
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("vue"),require("@progress/kendo-vue-intl"),require("@progress/kendo-charts"),require("@progress/kendo-vue-common"),require("@progress/kendo-vue-popup"),require("@progress/kendo-svg-icons")):"function"==typeof define&&define.amd?define(["exports","vue","@progress/kendo-vue-intl","@progress/kendo-charts","@progress/kendo-vue-common","@progress/kendo-vue-popup","@progress/kendo-svg-icons"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).KendoVueCharts={},t.Vue,t.KendoVueIntl,t.KendoCharts,t.KendoVueCommon,t.KendoVuePopup,t.KendoSvgIcons)}(this,(function(t,e,n,o,i,r,a){"use strict";function s(t,e){let n=t;for(;n&&n!==e;)n=n.parentNode;return!!n}function l(t){const e={...t};return Object.keys(e).forEach((t=>{void 0===e[t]&&delete e[t],"dataItems"===t&&(e.data=e[t],delete e[t]),"lineStyle"===t&&e[t]&&(e.style=e[t],delete e[t])})),e}const u=t=>void 0!==t&&!t;let d=class{constructor(t){this.target=t}};class c extends d{constructor(t,e){super(e),this.axis=t.axis,this.dataItem=t.dataItem,this.index=t.index,this.text=t.text,this.value=t.value}}class p extends d{constructor(){super(...arguments),this.prevented=!1}preventDefault(){this.prevented=!0}isDefaultPrevented(){return this.prevented}}let f=class extends p{constructor(t,e){super(e),this.axisRanges=t.axisRanges,this.nativeEvent=t.originalEvent}},h=class extends d{constructor(t,e){super(e),this.axisRanges=t.axisRanges,this.nativeEvent=t.originalEvent}},g=class extends p{constructor(t,e){super(e),this.axisRanges=t.axisRanges,this.nativeEvent=t.originalEvent}},y=class extends p{constructor(t,e){super(e),this.series=t.series,this.seriesIndex=t.seriesIndex,this.pointIndex=t.pointIndex,this.text=t.text}preventDefault(){super.preventDefault()}},b=class extends p{constructor(t,e){super(e),this.series=t.series,this.seriesIndex=t.seriesIndex,this.pointIndex=t.pointIndex,this.text=t.text}preventDefault(){super.preventDefault()}},m=class extends d{constructor(t,e){super(e),this.from=t.from,this.to=t.to}},v=class extends d{constructor(t,e){super(e),this.category=t.category,this.dataItem=t.dataItem,this.series=t.series,this.value=t.value,this.visual=t.visual}},S=class extends d{constructor(t,e){super(e),this.category=t.category,this.dataItem=t.dataItem,this.series=t.series,this.value=t.value,this.visual=t.visual}},C=class extends d{constructor(t,e){super(e),this.category=t.category,this.nativeEvent=t.originalEvent,this.value=t.value,this.x=t.x,this.y=t.y}},O=class extends d{constructor(t,e){super(e),this.category=t.category,this.nativeEvent=t.originalEvent,this.value=t.value,this.x=t.x,this.y=t.y}},j=class extends d{constructor(t,e){super(e)}},N=class extends p{constructor(t,e){super(e),this.axis=t.axis,this.from=t.from,this.to=t.to}},x=class extends d{constructor(t,e){super(e),this.axis=t.axis,this.from=t.from,this.to=t.to}},k=class extends p{constructor(t,e){super(e),this.axis=t.axis,this.from=t.from,this.to=t.to}},D=class extends d{constructor(t,e){super(e),this.category=t.category,this.dataItem=t.dataItem,this.nativeEvent=t.originalEvent,this.percentage=t.percentage,this.point=t.point,this.series=t.series,this.stackValue=t.stackValue,this.value=t.value}},K=class extends p{constructor(t,e){super(e),this.category=t.category,this.categoryPoints=t.categoryPoints,this.dataItem=t.dataItem,this.nativeEvent=t.originalEvent,this.percentage=t.percentage,this.point=t.point,this.series=t.series,this.stackValue=t.stackValue,this.value=t.value}},A=class extends p{constructor(t,e){super(e),this.axisRanges=t.axisRanges,this.delta=t.delta,this.nativeEvent=t.originalEvent}},I=class extends d{constructor(t,e){super(e),this.axisRanges=t.axisRanges,this.nativeEvent=t.originalEvent}},F=class extends p{constructor(t,e){super(e),this.axisRanges=t.axisRanges,this.nativeEvent=t.originalEvent}};const B={axisLabelClick:c,drag:f,dragEnd:h,dragStart:g,legendItemHover:y,legendItemClick:b,legendItemLeave:class extends p{constructor(t,e){super(e),this.series=t.series,this.seriesIndex=t.seriesIndex,this.pointIndex=t.pointIndex,this.text=t.text}preventDefault(){super.preventDefault()}},navigatorFilter:m,noteClick:v,noteHover:S,plotAreaClick:C,plotAreaHover:O,render:j,select:N,selectEnd:x,selectStart:k,seriesClick:D,seriesHover:K,zoom:A,zoomEnd:I,zoomStart:F};let L=class{constructor(t,e){this.sender=t,this.event=e}};const $=t=>`${t.fontWeight} ${t.fontSize} ${t.fontFamily}`,w=t=>window.getComputedStyle(t).backgroundColor,T=`\n <div class="k-var--primary"></div>\n <div class="k-var--base"></div>\n <div class="k-var--background"></div>\n\n <div class="k-var--normal-background"></div>\n <div class="k-var--normal-text-color"></div>\n <div class="k-var--hover-background"></div>\n <div class="k-var--hover-text-color"></div>\n <div class="k-var--selected-background"></div>\n <div class="k-var--selected-text-color"></div>\n <div class="k-var--chart-error-bars-background"></div>\n <div class="k-var--chart-notes-background"></div>\n <div class="k-var--chart-notes-border"></div>\n <div class="k-var--chart-notes-lines"></div>\n <div class="k-var--chart-crosshair-background"></div>\n\n <div class="k-var--chart-inactive"></div>\n <div class="k-var--chart-major-lines"></div>\n <div class="k-var--chart-minor-lines"></div>\n <div class="k-var--chart-area-opacity"></div>\n <div class="k-var--chart-area-inactive-opacity"></div>\n <div class="k-var--chart-line-inactive-opacity"></div>\n\n <div class="k-widget k-chart">\n <div class="k-var--chart-font"></div>\n <div class="k-var--chart-title-font"></div>\n <div class="k-var--chart-pane-title-font"></div>\n <div class="k-var--chart-label-font"></div>\n </div>\n\n <div class="k-var--series-unset"></div>\n <div class="k-var--series">\n ${(()=>{let t='\n <div class="k-var--series-a"></div>\n <div class="k-var--series-b"></div>\n <div class="k-var--series-c"></div>\n <div class="k-var--series-d"></div>\n <div class="k-var--series-e"></div>\n <div class="k-var--series-f"></div>\n';for(let e=0;e<30;e++)t+=`\n <div class="k-var--series-${e+1}"></div>`;return t})()}\n </div>\n`;let V=class{constructor(t){this.store=t}setStyle(t,e){this.store.dispatch({type:"set",payload:{field:t,value:e}})}setColors(){this.mapColor("axisDefaults.crosshair.color","chart-crosshair-background"),this.mapColor("axisDefaults.labels.color","normal-text-color"),this.mapColor("axisDefaults.line.color","chart-major-lines"),this.mapColor("axisDefaults.majorGridLines.color","chart-major-lines"),this.mapColor("axisDefaults.minorGridLines.color","chart-minor-lines"),this.mapColor("axisDefaults.notes.icon.background","chart-notes-background"),this.mapColor("axisDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("axisDefaults.notes.line.color","chart-notes-lines"),this.mapColor("axisDefaults.title.color","normal-text-color"),this.mapColor("chartArea.background","background"),this.mapColor("legend.inactiveItems.labels.color","chart-inactive"),this.mapColor("legend.inactiveItems.markers.color","chart-inactive"),this.mapColor("legend.labels.color","normal-text-color"),this.mapColor("seriesDefaults.boxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.boxPlot.mean.color","base"),this.mapColor("seriesDefaults.boxPlot.median.color","base"),this.mapColor("seriesDefaults.boxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.bullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.candlestick.downColor","normal-text-color"),this.mapColor("seriesDefaults.candlestick.line.color","normal-text-color"),this.mapColor("seriesDefaults.errorBars.color","chart-error-bars-background"),this.mapColor("seriesDefaults.horizontalWaterfall.line.color","chart-major-lines"),this.mapColor("seriesDefaults.icon.border.color","chart-major-lines"),this.mapColor("seriesDefaults.labels.background","background"),this.mapColor("seriesDefaults.labels.color","normal-text-color"),this.mapColor("seriesDefaults.notes.icon.background","chart-notes-background"),this.mapColor("seriesDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("seriesDefaults.notes.line.color","chart-notes-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.mean.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.median.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.verticalBullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.waterfall.line.color","chart-major-lines"),this.mapColor("title.color","normal-text-color");const t=parseFloat(this.queryStyle("chart-area-opacity").opacity);isNaN(t)||(this.setStyle("seriesDefaults.area.opacity",t),this.setStyle("seriesDefaults.radarArea.opacity",t),this.setStyle("seriesDefaults.verticalArea.opacity",t),this.setStyle("seriesDefaults.labels.opacity",t)),this.setInactiveOpacity(["area","verticalArea"],"chart-area-inactive-opacity"),this.setInactiveOpacity(["line","verticalLine"],"chart-line-inactive-opacity")}setFonts(){const t=$(this.queryStyle("chart-font")),e=$(this.queryStyle("chart-title-font")),n=$(this.queryStyle("chart-pane-title-font")),o=$(this.queryStyle("chart-label-font"));this.setStyle("axisDefaults.labels.font",o),this.setStyle("axisDefaults.notes.label.font",t),this.setStyle("axisDefaults.title.font",t),this.setStyle("legend.labels.font",t),this.setStyle("seriesDefaults.labels.font",o),this.setStyle("seriesDefaults.notes.label.font",t),this.setStyle("title.font",e),this.setStyle("paneDefaults.title.font",n)}setSeriesColors(){const t=this.element,e=[].slice.call(null==t?void 0:t.querySelectorAll(".k-var--series div")),n=w(null==t?void 0:t.querySelector(".k-var--series-unset")),o=e.reduce(((t,e)=>{const o=(t=>{const e=t.match(/series-([a-z])$/);if(null!==e)return(t=>t.toLowerCase().charCodeAt(0)-97)(e[1]);const n=t.split("--series-")[1];return parseInt(n,10)-1})(e.className),i=w(e);return i!==n&&(t[o]=i),t}),[]);this.setStyle("seriesColors",o)}mapColor(t,e){this.setStyle(t,this.queryStyle(e).backgroundColor)}queryStyle(t){const e=this.element;return window.getComputedStyle(null==e?void 0:e.querySelector(`.k-var--${t}`))}setInactiveOpacity(t,e){const n=parseFloat(this.queryStyle(e).opacity);!isNaN(n)&&n<1&&t.forEach((t=>this.setStyle(`seriesDefaults.${t}.highlight.inactiveOpacity`,n)))}};const E=1e3/60,R=(t,e)=>{if(!e.type)return{};switch(e.type){case"set":return z.themeItem(t,e);case"push":return Object.assign(t,e.payload);default:return t}},z={configurationItem:(t,e)=>t[e.chartKey]&&Object.keys(t[e.chartKey]).length?Object.assign(t,{[e.chartKey]:{...t[e.chartKey],...e.payload}}):Object.assign(t,{[e.chartKey]:e.payload}),collectionConfigurationItem(t,e){let n=!1;const[o,i]=e.chartCollectionIdxKey.split("_"),r=(e.parentKey?t[e.parentKey]&&t[e.parentKey][o]||[]:t[o]||[]).map(((t,o)=>parseInt(i,10)===o||e.payload&&e.payload.uid===t.uid?(n=!0,e.payload):t));if(!1===n&&!e.uid&&r.splice(parseInt(i,10),0,e.payload),e.uid){const t=r.findIndex((t=>t.uid===e.uid));t>-1&&r.splice(t,1)}return e.parentKey?Object.assign(t,{[e.parentKey]:{[o]:r}}):Object.assign(t,{[o]:r})},themeItem(t,e){let n={};const o=Object.assign(n,t),{field:i,value:r}=e.payload,a=i.split(".");let s=a.shift();for(;a.length>0;)n=n[s]=n[s]||{},s=a.shift();return n[s]=r,o}};let P=class{constructor(t,e){this.value=t.value,this.category=t.category,this.categoryIndex=t.categoryIx,this.series=t.series,this.dataItem=t.dataItem,this.percentage=t.percentage,this.runningTotal=t.runningTotal,this.total=t.total,this.low=t.low,this.high=t.high,this.xLow=t.xLow,this.xHigh=t.xHigh,this.yLow=t.yLow,this.yHigh=t.yHigh,this.point=t,this.format=((t.options||{}).tooltip||{}).format||e}get formattedValue(){return this.format?this.point.formatValue(this.format):String(this.value)}};const q=e.defineComponent({name:"KendoSharedTooltipPopup",props:{categoryText:String,colorMarker:{type:Boolean,default:void 0},colspan:Number,nameColumn:{type:Boolean,default:void 0},points:Array},render(){const{categoryText:t,colorMarker:n,colspan:o,nameColumn:i,points:r}=this.$props;return e.createVNode("table",null,[e.createVNode("thead",null,[e.createVNode("tr",null,[e.createVNode("th",{colspan:o},[t])])]),e.createVNode("tbody",null,[r.map(function(t,o){const r=e.h("span",{innerHTML:t.formattedValue});return e.createVNode("tr",{key:o},[n&&e.createVNode("td",null,[e.createVNode("span",{class:"k-chart-shared-tooltip-marker",style:{backgroundColor:t.series.color}},null)]),i&&e.createVNode("td",null,[t.series.name]),r])}.bind(this),this)])])}}),H={horizontal:"fit",vertical:"fit"},M="k-chart-tooltip",U=e.defineComponent({name:"KendoTooltipPopup",props:{className:String,popupShown:Boolean,popupAlign:{type:Object,default:function(){}},popupOffset:{type:Object},popupStyles:{type:Object},popupContent:Function},inject:{options:{default:{state:{}}},dispatchOptions:{default:null},observersState:{default:null},dispatchObservers:{default:null},childrenObserver:{default:null}},created(){this.chartObserver=new o.InstanceObserver(this,{onMouseLeave:"onChartMouseLeave"}),this.dispatchObservers({type:"add",payload:this.chartObserver})},mounted(){this.element=i.getRef(this,"element")},unmounted(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},render(){const t=i.getDefaultSlots(this),{popupShown:n,popupAlign:o,popupOffset:a,popupStyles:s,className:l}=this.$props,u=[M,l].join(" ").trim();return e.createVNode(r.Popup,{animate:!1,popupAlign:o,offset:a,show:n,collision:H,class:"k-chart-tooltip-wrapper"},{default:()=>[e.createVNode("div",{class:u,style:s,onMouseleave:this.onMouseLeave,ref:i.setRef(this,"element")},[t])]})},methods:{onChartMouseLeave(t){const{event:e}=t;return!!s(e.relatedTarget,this.element)},onMouseLeave(t){}}});const X="k-chart-shared-tooltip",Y="k-chart-tooltip-inverse",G=e.defineComponent({name:"KendoSeriesTooltip",data:()=>({popupShown:!1,popupAlign:void 0,popupOffset:void 0,popupContext:{},popupStyles:void 0,className:void 0,shared:void 0}),inject:{optionsState:{default:{}},observersState:{default:null},dispatchObservers:{default:null}},mounted(){this.chartObserver=new o.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),this.dispatchObservers({type:"add",payload:this.chartObserver})},unmounted(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},render(){let t;const n=this.popupShown?function(){const t=this.findRenderFunction();if(this.shared){const n=e.createVNode(q,{categoryText:this.popupContext.categoryText,colorMarker:this.popupContext.colorMarker,colspan:this.popupContext.colspan,nameColumn:this.popupContext.nameColumn,points:this.popupContext.points},null);return i.getTemplate.call(this,{h:e.h,template:t,defaultRendering:n,additionalProps:Object.assign({},this.popupContext)})}{const n=this.popupContext.point,o=this.findRenderFunctionByIndex(n.series.index),r=e.h("span",{innerHTML:this.popupContext.point.formattedValue});return null!==o?i.getTemplate.call(this,{h:e.h,template:o,defaultRendering:r,additionalProps:Object.assign({},this.popupContext)}):null!==t?i.getTemplate.call(this,{h:e.h,template:t,defaultRendering:r,additionalProps:Object.assign({},this.popupContext)}):r}}:Function.prototype,o=i.classNames({[X]:this.shared,[Y]:!!this.className});return e.createVNode(U,{popupShown:this.popupShown,popupAlign:this.popupAlign,popupOffset:this.popupOffset,popupStyles:this.popupStyles,className:o},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t=n.call(this))?t:{default:()=>[t]})},methods:{onShowTooltip(t){const{anchor:e,style:n,shared:o,className:i,crosshair:r}=t;let a;r||(a=o?this.createSharedTooltipContext(t):this.createTooltipContext(t),this.popupShown=!0,this.popupAlign=e.align,this.popupOffset=e.point,this.popupContext=a,this.popupStyles=n,this.className=i,this.shared=o)},onHideTooltip(){this.popupShown=!1,this.popupStyles={},this.className=void 0},createSharedTooltipContext(t){const{points:e,categoryText:n}=t,o=e.filter((t=>void 0!==t.series.name)).length>0,i=t.series.length>1;let r=1;return o&&r++,i&&r++,{categoryText:n,colorMarker:i,colspan:r,nameColumn:o,points:t.points.map((e=>new P(e,t.format)))}},createTooltipContext(t){const{point:e,format:n}=t;return{point:new P(e,n)}},findRenderFunctionByIndex(t){const e=this.optionsState.series;return void 0!==e&&Array.isArray(e)&&void 0!==e[t]&&e[t].hasOwnProperty("tooltip")&&e[t].tooltip.hasOwnProperty("render")?e[t].tooltip.render:null},findRenderFunction(){const t=this.optionsState.tooltip;return void 0!==t&&t.hasOwnProperty("render")?t.render:null}}});const W="k-chart-crosshair-tooltip",_="k-chart-tooltip-inverse",Z=e.defineComponent({name:"KendoCrosshairTooltip",props:{index:Number,name:String},data:()=>({popupShown:!1,popupAlign:void 0,popupOffset:void 0,popupContent:void 0,popupStyles:void 0,className:void 0}),inject:{optionsState:{default:{}},dispatchOptions:{default:null},observersStore:{default:null},dispatchObservers:{default:null},childrenObserver:{default:null}},created(){this.chartObserver=new o.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),this.dispatchObservers({type:"add",payload:this.chartObserver})},unmounted(){this.dispatchObservers({type:"remove",payload:this.chartObserver})},render(){const t=this.popupShown?this.popupContent:Function.prototype,n=i.classNames({[W]:!0,[_]:!!this.className});return e.createVNode(U,{popupShown:this.popupShown,popupAlign:this.popupAlign,popupOffset:this.popupOffset,popupStyles:this.popupStyles,className:n},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})},methods:{onShowTooltip(t){const{anchor:e,style:n,className:o,crosshair:i,axisName:r,axisIndex:a,value:s}=t,{name:l,index:u}=this.$props;i&&r===l&&a===u&&(this.popupShown=!0,this.popupAlign=e.align,this.popupOffset=e.point,this.popupContent=s,this.popupStyles=n,this.className=o)},onHideTooltip(){this.popupShown=!1,this.popupStyles={},this.className=void 0}}}),J=["categoryAxis","valueAxis","xAxis","yAxis"];function Q(t,e){const n=[];if(t[e]){const o=[].concat(t[e]);for(let t=0;t<o.length;t++){const i=(o[t].crosshair||{}).tooltip;i&&i.visible&&n.push({index:t,name:e})}}return n}const tt=e.defineComponent({name:"KendoCrosshairContainer",props:{optionsState:Object},computed:{tooltips(){return function(t){const e={};for(let n=0;n<J.length;n++){const o=Q(t,J[n]);for(let t=0;t<o.length;t++){const n=o[t];e[n.name+n.index]=n}}return e}(this.optionsState)}},render(){const t=Object.keys(this.tooltips).map((function(t){return e.createVNode(Z,{index:this.tooltips[t].index,name:this.tooltips[t].name,key:t},null)}),this);return e.createVNode("div",null,[t])}}),et={name:"@progress/kendo-vue-charts",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1628602492,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"},nt=e.defineComponent({name:"KendoBaseChart",props:{deriveOptionsFromParent:{type:Function,default:void 0},chartConstructor:{type:[Object,Function],default:void 0},className:String,chartStyle:Object,wrapper:String,getTarget:{type:Function,default:void 0},dataItems:{type:Array,default:void 0},dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:void 0},zoomable:{type:[Boolean,Object],default:void 0},seriesColors:{type:Array,default:void 0},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:void 0},panes:{type:Array,default:void 0},seriesDefaults:{type:Object,default:void 0},axisDefaults:{type:Object,default:void 0},allListeners:{type:Object,default:void 0},onLegenditemclick:Function,onBasechartevent:Function,onRefresh:Function},inject:{kendoIntlService:{default:null}},provide(){return{optionsState:this.optionsState,dispatchOptions:this.dispatchOptions,observersState:this.observersState,dispatchObservers:this.dispatchObservers,childrenObserver:this.childrenObserver,chartRefresh:this.refresh}},created(){this.chartInstance=null,this.element=null,this.suppressTransitions=!1,i.validatePackage(et),this.showLicenseWatermark=i.shouldShowValidationUI(et),this.themeStore=(t=>{let e,n,o=[];const r=r=>{e=t(e,r),i.canUseDOM&&(window.clearTimeout(n),n=window.setTimeout((()=>o.forEach((t=>t()))),E))};return r({}),{getState:()=>e,dispatch:r,subscribe:t=>(o.push(t),()=>o=o.filter((e=>e!==t)))}})(R),this.chartObserver=new o.InstanceObserver(this,{render:"onRender",legendItemClick:"onLegendItemClick"})},data(){return{optionsState:{},observersState:[],childrenObserver:new o.InstanceObserver(this,{onMouseLeave:"onChildMouseLeave"}),showLicenseWatermark:!1}},mounted(){this.element=i.getRef(this,"element"),((t,e)=>{const n=new V(t);if("undefined"==typeof document)return void t.dispatch({type:"push",payload:o.chartBaseTheme()});const i=n.element=document.createElement("div");i.style.display="none",i.innerHTML=T,document.body.appendChild(i);try{t.dispatch({type:"push",payload:o.chartBaseTheme()}),n.setColors(),n.setFonts(),n.setSeriesColors()}finally{document.body.removeChild(n.element),delete n.element,e()}})(this.themeStore,this.instantiateCoreChart),window.addEventListener("resize",this.onWindowResize)},unmounted(){this.onDestroyed()},updated(){if(null!==this.chartInstance){const t=n.provideIntlService(this),e=this.chartInstance.chartService;t.locale!==e._intlService.locale&&(this.chartInstance.chartService._intlService=t,this.chartInstance.chartService.format._intlService=t,this.chartInstance.noTransitionsRedraw()),this.refresh()}},render(){const t=i.getDefaultSlots(this),{chartStyle:n={},className:o,wrapper:r}=this.$props,a=Object.assign({},n,{position:"relative"}),s=this.showLicenseWatermark?e.createVNode(i.WatermarkOverlay,null,null):null;return e.h(r,{style:a,class:o,key:"chartElement"},[e.h(G,{key:"seriesTooltip"}),e.h(tt,{key:"crosshairTooltips",optionsState:{...this.optionsState}}),function(){return e.createVNode("div",{onMouseleave:this.onChartMouseLeave,ref:i.setRef(this,"element"),class:"k-chart-surface"},[t,s])}.call(this)])},methods:{dispatchOptions(t){((t,e)=>{e.chartCollectionIdxKey?z.collectionConfigurationItem(t,e):e.chartKey&&z.configurationItem(t,e)})(this.optionsState,t)},dispatchObservers(t){this.observersState=((t,e)=>{if(!e.type)return[];switch(e.type){case"add":return[...t,e.payload];case"remove":return t.filter((t=>t!==e.payload));default:return t}})(this.observersState,t)},onDestroyed(){null!==this.chartInstance&&(this.chartInstance.destroy(),this.chartInstance=null),window.removeEventListener("resize",this.onWindowResize)},getDirection(t){return void 0!==t?"rtl"===t:i.isRtl(this.element)},getChartOptions(){const{renderAs:t,pannable:e,zoomable:n,paneDefaults:o,panes:i,transitions:r,seriesColors:a,seriesDefaults:s,axisDefaults:l,deriveOptionsFromParent:u}=this.$props;let d={};return void 0!==t&&(d.renderAs=t),void 0!==e&&(d.pannable=e),void 0!==n&&(d.zoomable=n),void 0!==o&&(d.paneDefaults=o),void 0!==i&&(d.panes=i),void 0!==r&&(d.transitions=r),void 0!==a&&(d.seriesColors=a),void 0!==s&&(d.seriesDefaults=s),void 0!==l&&(d.axisDefaults=l),d=Object.assign(d,this.optionsState),u&&(d=u(d)),d},refresh(){if(null!==this.chartInstance){const t=this.themeStore.getState(),e=this.getChartOptions(),n=e.transitions;this.suppressTransitions&&(e.transitions=!1),i.hasListener.call(this,"refresh")?this.trigger("refresh",{chartOptions:e,themeOptions:t,chartInstance:this.chartInstance}):this.chartInstance.setOptions(e,t),this.suppressTransitions&&(e.transitions=n,this.suppressTransitions=!1)}},instantiateCoreChart(){const{dir:t,chartConstructor:e}=this.$props,o=this.getChartOptions();let i=null;this.element&&(i=this.element.lastElementChild,i&&this.element.removeChild(i)),this.chartInstance=new e(this.element,o,this.themeStore.getState(),{rtl:this.getDirection(t),intlService:n.provideIntlService(this),observer:this.chartObserver,sender:this}),this.element&&i&&this.element.appendChild(i)},trigger(t,e){const n=function(t,e,n){if(B[t])return new B[t](e,n)}(t,e,this.$props.getTarget()),o=this.observersState;let i=!1;for(let n=0;n<o.length;n++)o[n].trigger(t,e)&&(i=!0);return!1===i&&n?(this.$emit("basechartevent",t.toLowerCase(),n),n.isDefaultPrevented&&n.isDefaultPrevented()):i},triggerDomEvent(t,e){const n=this.observersState;let o=!1;for(let i=0;i<n.length;i++)n[i].trigger(t,e)&&(o=!0);return o},onRender(t){null!==this.chartInstance&&(this.surface=t.sender.surface,this.trigger("render",t))},hasListener(t){return!!this.$props.allListeners&&Object.keys(this.$props.allListeners).some((e=>-1!==e.toLowerCase().indexOf(t.toLowerCase())))},onLegendItemClick(t){if(null!==this.chartInstance)if(this.hasListener("legenditemclick"))this.$emit("legenditemclick",t);else{const{series:e}=this.optionsState;if(!e)return;let n={};const{seriesIndex:o,pointIndex:i}=t,r=e[o];if(void 0===i)n=Object.assign({},r,{visible:u(r.visible)});else{const t=r.pointVisibility=r.pointVisibility||[];t[i]=u(t[i]),n=Object.assign({},r)}this.dispatchOptions({chartCollectionIdxKey:`series_${o}`,payload:n}),this.suppressTransitions=!0,this.refresh()}},onWindowResize(){null!==this.chartInstance&&this.chartInstance.resize()},onChartMouseLeave(t){const e=function(t,e){return new L(t,e)}(this,t);this.triggerDomEvent("onMouseLeave",e)?t.preventDefault():null!==this.chartInstance&&this.chartInstance.hideElements()},onChildMouseLeave(t){const{event:e}=t;return this.chartInstance&&!s(e.relatedTarget,this.element)&&this.chartInstance.hideElements(),!1},requiresHandlers(t){for(let e=0;e<t.length;e++){const n=t[e];if(this.hasListener(n))return!0}return!1}}}),ot=e.defineComponent({name:"KendoDonutCenter",props:{render:[String,Function,Object]},data:()=>({donutCenterStyles:null}),inject:{optionsState:{default:{}},dispatchOptions:{default:null},dispatchObservers:{default:null},childrenObserver:{default:null}},created(){this.dispatchObservers({type:"add",payload:new o.InstanceObserver(this,{render:"onRender"})})},render(){const{render:t}=this.$props;let n=e.createVNode("span",null,null);const o=i.getTemplate.call(this,{h:e.h,template:t,defaultRendering:null});return t&&this.donutCenterStyles&&(n=e.createVNode("div",{class:"k-chart-donut-center",style:this.donutCenterStyles},[o])),n},methods:{onRender(t){const e=this.optionsState.series,n=Array.isArray(e)?e[0]:null,o=t.sender._plotArea.charts;if(!n||"donut"!==n.type||0===o[0].points.length)return;const i=o[0].points[0].sector,r=i.innerRadius,a=i.center.y-r,s=i.center.x-r,l=2*r;this.donutCenterStyles={height:l+"px",left:s+"px",top:a+"px",width:l+"px"}}}}),it=e.defineComponent({name:"KendoChart",props:{donutCenterRender:[String,Function,Object],dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:void 0},zoomable:{type:[Boolean,Object],default:void 0},seriesColors:{type:Array,default:void 0},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:void 0},panes:{type:Array,default:void 0},seriesDefaults:{type:Object,default:void 0},axisDefaults:{type:Object,default:void 0},onAxislabelclick:Function,onDrag:Function,onDragend:Function,onDragstart:Function,onLegenditemhover:Function,onLegenditemclick:Function,onNoteclick:Function,onNotehover:Function,onPlotareaclick:Function,onPlotareahover:Function,onRender:Function,onSelect:Function,onSelectend:Function,onSelectstart:Function,onSeriesclick:Function,onSerieshover:Function,onZoom:Function,onZoomend:Function,onZoomstart:Function},updated(){this.baseChart=i.getRef(this,"baseChart")},mounted(){this.baseChart=i.getRef(this,"baseChart")},methods:{chartInstance(){return null!==this.baseChart?this.baseChart.chartInstance:null},surface(){return null!==this.baseChart?this.baseChart.surface:null},element(){return null!==this.baseChart?this.baseChart.element:null},getTarget(){return this},handleBaseChartEvents(t,e){this.$emit(t,e)},handleLegendItemClick(t){this.$emit("legenditemclick",t)}},render(){const t=i.getDefaultSlots(this),{donutCenterRender:n,dir:r,renderAs:a,pannable:s,zoomable:l,seriesColors:u,transitions:d,paneDefaults:c,panes:p,seriesDefaults:f,axisDefaults:h}=this.$props,g=n?i.templateRendering.call(this,n,i.getListeners.call(this)):null;return e.createVNode(nt,{dir:r,renderAs:a,pannable:s,zoomable:l,seriesColors:u,transitions:d,paneDefaults:c,panes:p,seriesDefaults:f,axisDefaults:h,ref:i.setRef(this,"baseChart"),chartConstructor:o.Chart,getTarget:this.getTarget,wrapper:"div",class:i.classNames("k-chart k-widget"),onLegenditemclick:this.handleLegendItemClick,onBasechartevent:this.handleBaseChartEvents,allListeners:i.getListeners.call(this)},{default:()=>[t,e.createVNode(ot,{render:g},null)]})}});const rt=e.defineComponent({name:"KendoSparkline",props:{dataItems:{type:Array,default:function(){}},type:String,dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:function(){}},zoomable:{type:[Boolean,Object],default:function(){}},seriesColors:{type:Array,default:function(){}},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:function(){}},panes:{type:Array,default:function(){}},seriesDefaults:{type:Object,default:function(){}},axisDefaults:{type:Object,default:function(){}}},updated(){this.baseChart=i.getRef(this,"baseChart")},mounted(){this.baseChart=i.getRef(this,"baseChart")},methods:{chartInstance(){return null!==this.baseChart?this.baseChart.chartInstance:null},surface(){return null!==this.baseChart?this.baseChart.surface:null},element(){return null!==this.baseChart?this.baseChart.element:null},getTarget(){return this},deriveOptionsFromParent(t){const{type:e,dataItems:n}=this.$props,i=Object.assign({},t,{type:e,data:n});return o.Sparkline.normalizeOptions(i)},handleBaseChartEvents(t,e){this.$emit(t,e)}},render(){const t=i.getDefaultSlots(this),{dataItems:n,dir:r,renderAs:a,pannable:s,zoomable:l,seriesColors:u,transitions:d,paneDefaults:c,panes:p,seriesDefaults:f,axisDefaults:h}=this.$props;return e.createVNode(nt,{dataItems:n,dir:r,renderAs:a,pannable:s,zoomable:l,seriesColors:u,transitions:d,paneDefaults:c,panes:p,seriesDefaults:f,axisDefaults:h,ref:i.setRef(this,"baseChart"),chartConstructor:o.Sparkline,getTarget:this.getTarget,wrapper:"span",deriveOptionsFromParent:this.deriveOptionsFromParent,class:i.classNames("k-sparkline k-widget"),onBasechartevent:this.handleBaseChartEvents},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}});const at={autoBindElements:!0,liveDrag:!1,partialRedraw:!0},st=e.defineComponent({name:"KendoStockChart",props:{partialRedraw:{type:Boolean,default:void 0},dir:String,renderAs:{type:String,default:void 0,validator:function(t){return["svg","canvas"].includes(t)}},pannable:{type:[Boolean,Object],default:function(){}},zoomable:{type:[Boolean,Object],default:function(){}},seriesColors:{type:Array,default:function(){}},transitions:{type:Boolean,default:!0},paneDefaults:{type:Object,default:function(){}},panes:{type:Array,default:function(){}},seriesDefaults:{type:Object,default:function(){}},axisDefaults:{type:Object,default:function(){}}},updated(){this.baseChart=i.getRef(this,"baseChart")},mounted(){this.baseChart=i.getRef(this,"baseChart")},methods:{chartInstance(){return null!==this.baseChart?this.baseChart.chartInstance:null},surface(){return null!==this.baseChart?this.baseChart.surface:null},element(){return null!==this.baseChart?this.baseChart.element:null},getTarget(){return this},deriveOptionsFromParent(t){const e=Object.assign({},t.navigator||{},at);return Object.assign({},t,{navigator:e})},onRefresh(t,e,n){this.$props.partialRedraw?(n.applyOptions(t),n.bindCategories(),n.navigator.redrawSlaves()):n.setOptions(t,e)},handleBaseChartEvents(t,e){this.$emit(t,e)}},render(){const t=i.getDefaultSlots(this),{partialRedraw:n,dir:r,renderAs:a,pannable:s,zoomable:l,seriesColors:u,transitions:d,paneDefaults:c,panes:p,seriesDefaults:f,axisDefaults:h}=this.$props;return e.createVNode(nt,{dir:r,renderAs:a,pannable:s,zoomable:l,seriesColors:u,transitions:d,paneDefaults:c,panes:p,seriesDefaults:f,axisDefaults:h,ref:i.setRef(this,"baseChart"),chartConstructor:o.StockChart,getTarget:this.getTarget,wrapper:"div",deriveOptionsFromParent:this.deriveOptionsFromParent,onRefresh:this.onRefresh,class:i.classNames("k-stockchart k-widget"),onBasechartevent:this.handleBaseChartEvents},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),lt=e.defineComponent({name:"KendoConfiguration",props:{chartKey:String,config:{type:Object,default:function(){return{}}}},data:()=>({childState:{},index:null}),provide(){return{addChild:this.addChildOption,removeChild:this.removeChildOption,childOption:!0}},inject:{childOption:{default:null},addChild:{default:i.noop},removeChild:{default:i.noop},child:{default:{}},parentKey:{default:null},chartCollection:{default:null},dispatchOptions:{default:null},childrenObserver:{default:null}},created(){this.currentIndex=void 0,this.uid=i.guid(),this.addChild&&this.addChild({chartKey:this.$props.chartKey,payload:Object.assign({},this.$props.config),uid:this.uid})},mounted(){this.dispatch()},watch:{config(t,e){JSON.stringify(t)!==JSON.stringify(e)&&this.dispatch()}},unmounted(){this.onDestroyed()},render(){const t=i.getDefaultSlots(this);return e.createVNode("div",null,[t])},methods:{onDestroyed(){if(this.removeChild){this.removeChild({uid:this.uid});const{chartKey:t,parentStore:e,config:n}=this.$props;(e||this.dispatchOptions)({chartKey:t,parentKey:this.parentKey,chartCollectionIdxKey:this.chartCollection+"_",uid:this.uid})}},addChildOption(t){this.childState={...this.childState,[t.chartKey]:t.payload},this.dispatch()},removeChildOption(){this.childState={}},dispatch(){const{chartKey:t,parentStore:e,config:n}=this.$props,o=e||this.dispatchOptions;this.childOption?this.addChild({chartKey:t,payload:Object.assign({},n,this.childState)}):this.chartCollection?(this.currentIndex=this.child.collection.findIndex((t=>t.uid===this.uid)),o({chartKey:t,parentKey:this.parentKey,chartCollectionIdxKey:this.chartCollection+"_"+this.currentIndex,payload:Object.assign({},n,{uid:this.uid},this.childState)})):o({chartKey:t,payload:Object.assign({},n,this.childState)})}}}),ut=e.defineComponent({name:"KendoChartAxisDefaultsTitle",props:{background:String,border:{type:Object,default:void 0},color:String,font:String,margin:{type:[Object,Number],default:void 0},padding:{type:[Object,Number],default:void 0},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),dt=e.defineComponent({name:"KendoChartAxisDefaultsLabels",props:{content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:Boolean,padding:{type:[Object,Number],default:function(){}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),ct=e.defineComponent({name:"KendoChartAxisDefaultsCrosshair",props:{color:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"crosshair"},(function(){return t}))}}),pt=e.defineComponent({name:"KendoChartAxisDefaultsCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"tooltip"},(function(){return t}))}}),ft=e.defineComponent({name:"KendoChartCategoryAxisCrosshair",props:{color:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"crosshair"},(function(){return t}))}}),ht=e.defineComponent({name:"KendoChartCategoryAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"tooltip"},(function(){return t}))}}),gt=e.defineComponent({name:"KendoChartCategoryAxisSelect",props:{from:{type:[Object,Number,String],default:function(){}},max:{type:[Object,Number,String,Date],default:function(){}},min:{type:[Object,Number,String,Date],default:function(){}},mousewheel:{type:[Object,Boolean],default:function(){}},to:{type:[Object,Number,String],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"select"},(function(){return t}))}}),yt=e.defineComponent({name:"KendoChartCategoryAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),bt=e.defineComponent({name:"KendoChartCategoryAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:function(){}},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["start","end","onAxis",""].includes(t)}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),mt=e.defineComponent({name:"KendoChartCategoryAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),vt=e.defineComponent({name:"KendoChartCategoryAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),St=e.defineComponent({name:"KendoChartCategoryAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),Ct=e.defineComponent({name:"KendoChartCategoryAxisRangeLabels",props:{position:{type:String,default:void 0,validator:function(t){return["start","end","onAxis",""].includes(t)}},skip:Number,step:Number,visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"rangeLabels"},(function(){return t}))}}),Ot=e.defineComponent({name:"KendoChartPaneTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),jt=e.defineComponent({name:"KendoChartPaneDefaultsTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),Nt=e.defineComponent({name:"KendoChartLegendItem",props:{cursor:String,type:{type:String,default:function(){},validator:function(t){return["area","line"].includes(t)}},line:{type:Object,default:function(){}},area:{type:Object,default:function(){}},markers:{type:Object,default:function(){}},highlight:{type:Object,default:function(){}},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"item"},(function(){return t}))}}),xt=e.defineComponent({name:"KendoChartLegendTitle",props:{align:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom"].includes(t)}},text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),kt=e.defineComponent({name:"KendoChartLegendInactiveItems",props:{labels:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"inactiveItems"},(function(){return t}))}}),Dt=e.defineComponent({name:"KendoChartSeriesDefaultsItemTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:void 0},render:[String,Function,Object]},render(){const t=i.getDefaultSlots(this),n=l(this.$props),o=i.templateRendering.call(this,this.$props.render,i.getListeners.call(this));return e.h(lt,{config:{...n,render:o},chartKey:"tooltip"},(function(){return t}))}}),Kt=e.defineComponent({name:"KendoChartSeriesDefaultsLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),At=e.defineComponent({name:"KendoChartSeriesDefaultsLabelsFrom",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"from"},(function(){return t}))}}),It=e.defineComponent({name:"KendoChartSeriesDefaultsLabelsTo",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"to"},(function(){return t}))}}),Ft=e.defineComponent({name:"KendoChartSeriesDefaultsNotes",props:{line:{type:Object,default:function(){}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),Bt=e.defineComponent({name:"KendoChartSeriesDefaultsNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),Lt=e.defineComponent({name:"KendoChartSeriesDefaultsNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),$t=e.defineComponent({name:"KendoChartSeriesItemTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},render:[String,Function,Object],visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props),o=i.templateRendering.call(this,this.$props.render,i.getListeners.call(this));return e.h(lt,{config:{...n,render:o},chartKey:"tooltip"},(function(){return t}))}}),wt=e.defineComponent({name:"KendoChartSeriesItemOutliers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"outliers"},(function(){return t}))}}),Tt=e.defineComponent({name:"KendoChartSeriesNotes",props:{line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),Vt=e.defineComponent({name:"KendoChartSeriesMarkers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"markers"},(function(){return t}))}}),Et=e.defineComponent({name:"KendoChartSeriesLabels",props:{align:{type:String,default:function(){},validator:function(t){return["circle","column","center","right","left"].includes(t)}},background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},distance:Number,font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["auto","above","below","center","insideBase","insideEnd","left","outsideEnd","right","top","bottom"].includes(t)}},visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),Rt=e.defineComponent({name:"KendoChartSeriesHighlight",props:{border:{type:Object,default:function(){}},color:String,line:{type:Object,default:function(){}},opacity:Number,toggle:{type:Function,default:void 0},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"highlight"},(function(){return t}))}}),zt=e.defineComponent({name:"KendoChartSeriesExtremes",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"extremes"},(function(){return t}))}}),Pt=e.defineComponent({name:"KendoChartSeriesErrorBars",props:{color:String,endCaps:{type:Boolean,default:void 0},line:{type:Object,default:function(){}},value:String,visual:{type:Function,default:void 0},xValue:String,yValue:String},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"errorBars"},(function(){return t}))}}),qt=e.defineComponent({name:"KendoChartSeriesLabelsFrom",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"from"},(function(){return t}))}}),Ht=e.defineComponent({name:"KendoChartSeriesLabelsTo",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"to"},(function(){return t}))}}),Mt=e.defineComponent({name:"KendoChartSeriesNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),Ut=e.defineComponent({name:"KendoChartSeriesNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),Xt=e.defineComponent({name:"KendoChartValueAxisCrosshair",props:{color:String,opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"crosshair"},(function(){return t}))}}),Yt=e.defineComponent({name:"KendoChartValueAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"tooltip"},(function(){return t}))}}),Gt=e.defineComponent({name:"KendoChartValueAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),Wt=e.defineComponent({name:"KendoChartValueAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),_t=e.defineComponent({name:"KendoChartValueAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),Zt=e.defineComponent({name:"KendoChartValueAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),Jt=e.defineComponent({name:"KendoChartValueAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),Qt=e.defineComponent({name:"KendoChartXAxisCrosshair",props:{color:String,opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"crosshair"},(function(){return t}))}}),te=e.defineComponent({name:"KendoChartXAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:void 0},color:String,font:String,format:String,padding:{type:[Object,Number],default:void 0},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"tooltip"},(function(){return t}))}}),ee=e.defineComponent({name:"KendoChartXAxisTitle",props:{background:String,border:{type:Object,default:void 0},color:String,font:String,margin:{type:[Object,Number],default:void 0},padding:{type:[Object,Number],default:void 0},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),ne=e.defineComponent({name:"KendoChartXAxisLabels",props:{background:String,border:{type:Object,default:void 0},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:void 0},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:void 0},rotation:{type:[Object,Number,String],default:void 0},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),oe=e.defineComponent({name:"KendoChartXAxisNotes",props:{dataItems:{type:Array,default:void 0},line:{type:Object,default:void 0},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:void 0},label:{type:Object,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),ie=e.defineComponent({name:"KendoChartXAxisNotesIcon",props:{background:String,border:{type:Object,default:void 0},size:Number,type:{type:String,default:void 0,validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),re=e.defineComponent({name:"KendoChartXAxisNotesLabel",props:{background:String,border:{type:Object,default:void 0},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),ae=e.defineComponent({name:"KendoChartYAxisCrosshair",props:{color:String,opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"crosshair"},(function(){return t}))}}),se=e.defineComponent({name:"KendoChartYAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:void 0},color:String,font:String,format:String,padding:{type:[Object,Number],default:void 0},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"tooltip"},(function(){return t}))}}),le=e.defineComponent({name:"KendoChartYAxisTitle",props:{background:String,border:{type:Object,default:void 0},color:String,font:String,margin:{type:[Object,Number],default:void 0},padding:{type:[Object,Number],default:void 0},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),ue=e.defineComponent({name:"KendoChartYAxisLabels",props:{background:String,border:{type:Object,default:void 0},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:void 0},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:void 0},rotation:{type:[Object,Number,String],default:void 0},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),de=e.defineComponent({name:"KendoChartYAxisNotes",props:{dataItems:{type:Array,default:void 0},line:{type:Object,default:void 0},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:void 0},label:{type:Object,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),ce=e.defineComponent({name:"KendoChartYAxisNotesIcon",props:{background:String,border:{type:Object,default:void 0},size:Number,type:{type:String,default:void 0,validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),pe=e.defineComponent({name:"KendoChartYAxisNotesLabel",props:{background:String,border:{type:Object,default:void 0},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),fe=e.defineComponent({name:"KendoChartNavigatorCategoryAxisCrosshair",props:{color:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},opacity:Number,visible:{type:Boolean,default:!0},width:Number,tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"crosshair"},(function(){return t}))}}),he=e.defineComponent({name:"KendoChartNavigatorCategoryAxisCrosshairTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"tooltip"},(function(){return t}))}}),ge=e.defineComponent({name:"KendoChartNavigatorCategoryAxisSelect",props:{from:{type:[Object,Number,String],default:function(){}},max:{type:[Object,Number,String,Date],default:function(){}},min:{type:[Object,Number,String,Date],default:function(){}},mousewheel:{type:[Object,Boolean],default:function(){}},to:{type:[Object,Number,String],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"select"},(function(){return t}))}}),ye=e.defineComponent({name:"KendoChartNavigatorCategoryAxisTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["top","bottom","left","right","center"].includes(t)}},rotation:Number,text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),be=e.defineComponent({name:"KendoChartNavigatorCategoryAxisLabels",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},culture:String,dateFormats:{type:Object,default:function(){}},font:String,format:String,margin:{type:[Object,Number],default:function(){}},mirror:{type:Boolean,default:void 0},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["circle","column","center","right","left"].includes(t)}},rotation:{type:[Object,Number,String],default:function(){}},skip:Number,step:Number,visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),me=e.defineComponent({name:"KendoChartNavigatorCategoryAxisNotes",props:{dataItems:{type:Array,default:function(){}},line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),ve=e.defineComponent({name:"KendoChartNavigatorCategoryAxisNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),Se=e.defineComponent({name:"KendoChartNavigatorCategoryAxisNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["start","end","onAxis",""].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),Ce=e.defineComponent({name:"KendoChartNavigatorPaneTitle",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,margin:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","left","right"].includes(t)}},text:String,visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),Oe=e.defineComponent({name:"KendoChartNavigatorSeriesItemTooltip",props:{background:String,border:{type:Object,default:function(){}},color:String,font:String,format:String,padding:{type:[Object,Number],default:function(){}},render:[String,Function,Object],visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props),o=i.templateRendering.call(this,this.$props.render,i.getListeners.call(this));return e.h(lt,{config:{...n,render:o},chartKey:"tooltip"},(function(){return t}))}}),je=e.defineComponent({name:"KendoChartNavigatorSeriesItemOutliers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"outliers"},(function(){return t}))}}),Ne=e.defineComponent({name:"KendoChartNavigatorSeriesNotes",props:{line:{type:Object,default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right"].includes(t)}},visual:{type:Function,default:void 0},icon:{type:Object,default:function(){}},label:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"notes"},(function(){return t}))}}),xe=e.defineComponent({name:"KendoChartNavigatorSeriesMarkers",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"markers"},(function(){return t}))}}),ke=e.defineComponent({name:"KendoChartNavigatorSeriesLabels",props:{align:{type:String,default:function(){},validator:function(t){return["circle","column","center","right","left"].includes(t)}},background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},distance:Number,font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:void 0,validator:function(t){return["auto","above","below","center","insideBase","insideEnd","left","outsideEnd","right","top","bottom"].includes(t)}},visible:{type:Boolean,default:!0},visual:{type:Function,default:void 0},from:{type:Object,default:function(){}},to:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"labels"},(function(){return t}))}}),De=e.defineComponent({name:"KendoChartNavigatorSeriesHighlight",props:{border:{type:Object,default:function(){}},color:String,line:{type:Object,default:function(){}},opacity:Number,toggle:{type:Function,default:void 0},visible:{type:Boolean,default:void 0},visual:{type:Function,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"highlight"},(function(){return t}))}}),Ke=e.defineComponent({name:"KendoChartNavigatorSeriesExtremes",props:{background:String,border:{type:Object,default:function(){}},rotation:Number,size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"extremes"},(function(){return t}))}}),Ae=e.defineComponent({name:"KendoChartNavigatorSeriesErrorBars",props:{color:String,endCaps:{type:Boolean,default:void 0},line:{type:Object,default:function(){}},value:String,visual:{type:Function,default:void 0},xValue:String,yValue:String},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"errorBars"},(function(){return t}))}}),Ie=e.defineComponent({name:"KendoChartNavigatorSeriesLabelsFrom",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"from"},(function(){return t}))}}),Fe=e.defineComponent({name:"KendoChartNavigatorSeriesLabelsTo",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,margin:{type:[Object,Number],default:function(){}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["center","insideBase","insideEnd","outsideEnd"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"to"},(function(){return t}))}}),Be=e.defineComponent({name:"KendoChartNavigatorSeriesNotesLabel",props:{background:String,border:{type:Object,default:function(){}},color:String,content:{type:Function,default:void 0},font:String,format:String,position:{type:String,default:void 0,validator:function(t){return["inside","outside"].includes(t)}},rotation:Number,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"label"},(function(){return t}))}}),Le=e.defineComponent({name:"KendoChartNavigatorSeriesNotesIcon",props:{background:String,border:{type:Object,default:function(){}},size:Number,type:{type:String,default:function(){},validator:function(t){return["square","circle","triangle","cross"].includes(t)}},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"icon"},(function(){return t}))}}),$e=e.defineComponent({name:"KendoChartNavigatorCategoryAxis",props:{autoBaseUnitSteps:{type:Object,default:function(){}},axisCrossingValue:{type:[Object,Array,Date,Number],default:function(){}},background:{type:String,default:void 0},baseUnit:{type:String,default:function(){},validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},baseUnitStep:{type:[Number,String],default:function(){}},categories:{type:Array,default:function(){}},color:{type:String,default:void 0},justified:{type:Boolean,default:function(){}},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},max:{type:[Number,Object,String,Date],default:function(){}},maxDateGroups:{type:Number,default:void 0},maxDivisions:{type:Number,default:void 0},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},name:{type:String,default:function(){}},rangeLabels:{type:Object,default:function(){}},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:function(){}},roundToBaseUnit:{type:Boolean,default:function(){}},startAngle:{type:Number,default:void 0},type:{type:String,default:function(){},validator:function(t){return["category","date"].includes(t)}},visible:{type:Boolean,default:function(){}},weekStartDay:{type:Number,default:void 0},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},select:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"categoryAxis"},(function(){return t}))}}),we=e.defineComponent({name:"KendoChartNavigatorHint",props:{content:{type:Function,default:void 0},format:String,visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"hint"},(function(){return t}))}}),Te=e.defineComponent({name:"KendoChartNavigatorPane",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},clip:{type:Boolean,default:void 0},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},name:{type:String,default:void 0},padding:{type:[Object,Number],default:function(){}},title:{type:[Object,String],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"pane"},(function(){return t}))}}),Ve=e.defineComponent({name:"KendoChartNavigatorSelect",props:{from:{type:Date,default:function(){}},mousewheel:{type:[Object,Boolean],default:function(){}},to:{type:Date,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"select"},(function(){return t}))}}),Ee=e.defineComponent({name:"KendoCollectionConfiguration",props:{chartKey:String,parentKey:String,parentStore:Object},provide(){return{childOption:!1,chartCollection:this.$props.chartKey,parentKey:this.$props.parentKey,child:this.child,addChild:this.addChild,removeChild:this.removeChild}},inject:{dispatchOptions:{default:null},observersStore:{default:null},childrenObserver:{default:null}},created(){(0,this.dispatchOptions)({chartKey:this.$props.chartKey,payload:[]})},data:()=>({child:{collection:[]}}),render(){const t=i.getDefaultSlots(this);return e.createVNode("div",null,[t,e.createTextVNode(" ")])},methods:{addChild(t){this.child.collection.push(t)},removeChild(t){const e=this.child.collection.findIndex((e=>e.uid===t.uid));this.child.collection.splice(e,1)}}});const Re=e.defineComponent({name:"KendoChartNavigatorSeries",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"series",parentKey:"navigator"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),ze=e.defineComponent({name:"KendoChartNavigatorSeriesItem",props:{aggregate:{type:[String,Function,Object],default:function(){}},axis:String,border:{type:Object,default:function(){}},categoryAxis:String,categoryField:String,closeField:String,color:{type:[String,Function],default:function(){}},colorField:String,connectors:{type:Object,default:function(){}},currentField:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},dataItems:{type:Array,default:function(){}},downColor:String,downColorField:String,dynamicHeight:{type:Boolean,default:void 0},dynamicSlope:{type:Boolean,default:void 0},errorHighField:String,errorLowField:String,explodeField:String,field:String,fromField:String,gap:Number,highField:String,holeSize:Number,line:{type:Object,default:function(){}},lowField:String,lowerField:String,margin:{type:[Object,Number],default:function(){}},maxSize:Number,meanField:String,medianField:String,minSize:Number,missingValues:{type:String,default:function(){},validator:function(t){return["gap","interpolate","zero"].includes(t)}},name:String,neckRatio:Number,negativeColor:String,negativeValues:{type:Object,default:function(){}},noteTextField:String,opacity:Number,openField:String,outliersField:String,overlay:{type:Object,default:function(){}},padding:Number,q1Field:String,q3Field:String,segmentSpacing:Number,size:Number,sizeField:String,spacing:Number,stack:{type:[Boolean,String,Object],default:function(){}},startAngle:Number,lineStyle:{type:String,default:function(){},validator:function(t){return["normal","step","smooth"].includes(t)}},summaryField:String,target:{type:Object,default:function(){}},toField:String,type:{type:String,default:function(){},validator:function(t){return["area","bar","boxPlot","bubble","bullet","candlestick","column","donut","funnel","horizontalWaterfall","line","ohlc","pie","polarArea","polarLine","polarScatter","radarArea","radarColumn","radarLine","rangeArea","rangeBar","rangeColumn","scatter","scatterLine","verticalArea","verticalBoxPlot","verticalBullet","verticalLine","verticalRangeArea","waterfall"].includes(t)}},upperField:String,visible:{type:Boolean,default:void 0},visibleInLegend:{type:Boolean,default:void 0},visibleInLegendField:String,visual:{type:Function,default:void 0},width:Number,xAxis:String,xErrorHighField:String,xErrorLowField:String,xField:String,yAxis:String,yErrorHighField:String,yErrorLowField:String,yField:String,zIndex:Number,errorBars:{type:Object,default:function(){}},extremes:{type:Object,default:function(){}},highlight:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},markers:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},outliers:{type:Object,default:function(){}},tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}}),Pe=e.defineComponent({name:"KendoChartArea",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},opacity:{type:Number,default:void 0},width:{type:Number,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"chartArea"},(function(){return t}))}}),qe=e.defineComponent({name:"KendoChartAxisDefaults",props:{background:{type:String,default:void 0},color:{type:String,default:void 0},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},narrowRange:{type:Boolean,default:void 0},pane:{type:String,default:void 0},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:void 0},startAngle:{type:Number,default:void 0},visible:{type:Boolean,default:void 0},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"axisDefaults"},(function(){return t}))}});const He=e.defineComponent({name:"KendoChartCategoryAxis",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"categoryAxis"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),Me=e.defineComponent({name:"KendoChartCategoryAxisItem",props:{autoBaseUnitSteps:{type:Object,default:function(){}},axisCrossingValue:{type:[Object,Array,Date,Number],default:function(){}},background:{type:String,default:function(){}},baseUnit:{type:String,default:function(){},validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},baseUnitStep:{type:[Number,String],default:function(){}},categories:{type:[Array,Object],default:function(){}},color:{type:String,default:function(){}},justified:{type:Boolean,default:function(){}},line:{type:Object,default:function(){}},majorGridLines:{type:Object,default:function(){}},majorTicks:{type:Object,default:function(){}},max:{type:[Number,Object,String,Date],default:function(){}},maxDateGroups:{type:Number,default:function(){}},maxDivisions:{type:Number,default:function(){}},min:{type:[Number,Object,String,Date],default:function(){}},minorGridLines:{type:Object,default:function(){}},minorTicks:{type:Object,default:function(){}},name:{type:String,default:void 0},rangeLabels:{type:Object,default:function(){}},pane:{type:String,default:function(){}},plotBands:{type:Array,default:function(){}},reverse:{type:Boolean,default:function(){}},roundToBaseUnit:{type:Boolean,default:function(){}},startAngle:{type:Number,default:function(){}},type:{type:String,default:function(){},validator:function(t){return["category","date"].includes(t)}},visible:{type:Boolean,default:function(){}},weekStartDay:{type:Number,default:function(){}},crosshair:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},select:{type:Object,default:function(){}},title:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}}),Ue=e.defineComponent({name:"KendoChartLegend",props:{align:{type:String,default:function(){},validator:function(t){return["start","center","end"].includes(t)}},background:{type:String,default:void 0},border:{type:Object,default:function(){}},height:{type:Number,default:void 0},labels:{type:Object,default:function(){}},margin:{type:[Object,Number],default:function(){}},offsetX:{type:Number,default:void 0},offsetY:{type:Number,default:void 0},orientation:{type:String,default:function(){},validator:function(t){return["vertical","horizontal"].includes(t)}},padding:{type:[Object,Number],default:function(){}},position:{type:String,default:function(){},validator:function(t){return["top","bottom","left","right","custom"].includes(t)}},reverse:{type:Boolean,default:void 0},visible:{type:Boolean,default:!0},width:{type:Number,default:void 0},inactiveItems:{type:Object,default:function(){}},item:{type:Object,default:function(){}},spacing:{type:Number,default:void 0},title:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"legend"},(function(){return t}))}}),Xe=e.defineComponent({name:"KendoChartNavigator",props:{visible:{type:Boolean,default:!0},categoryAxis:{type:Object,default:function(){}},hint:{type:Object,default:function(){}},pane:{type:Object,default:function(){}},select:{type:Object,default:function(){}},series:{type:[Object,Array],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"navigator"},(function(){return t}))}}),Ye=e.defineComponent({name:"KendoChartPane",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},clip:{type:Boolean,default:void 0},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},name:{type:String,default:void 0},padding:{type:[Object,Number],default:function(){}},title:{type:[Object,String],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}}),Ge=e.defineComponent({name:"KendoChartPaneDefaults",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},clip:{type:Boolean,default:void 0},height:{type:Number,default:void 0},margin:{type:[Object,Number],default:function(){}},name:{type:String,default:void 0},padding:{type:[Object,Number],default:function(){}},title:{type:[Object,String],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"paneDefaults"},(function(){return t}))}});const We=e.defineComponent({name:"KendoChartPanes",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"panes"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),_e=e.defineComponent({name:"KendoChartPlotArea",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},margin:{type:[Object,Number],default:function(){}},opacity:{type:Number,default:void 0},padding:{type:[Object,Number],default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"plotArea"},(function(){return t}))}});const Ze=e.defineComponent({name:"KendoChartSeries",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"series"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),Je=e.defineComponent({name:"KendoChartSeriesDefaults",props:{border:{type:Object,default:function(){}},gap:Number,overlay:{type:Object,default:function(){}},spacing:Number,stack:{type:[Boolean,String,Object],default:function(){}},type:{type:String,default:function(){},validator:function(t){return["area","bar","boxPlot","bubble","bullet","candlestick","column","donut","funnel","horizontalWaterfall","line","ohlc","pie","polarArea","polarLine","polarScatter","radarArea","radarColumn","radarLine","rangeArea","rangeBar","rangeColumn","scatter","scatterLine","verticalArea","verticalBoxPlot","verticalBullet","verticalLine","verticalRangeArea","waterfall"].includes(t)}},visual:{type:Function,default:void 0},labels:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},tooltip:{type:Object,default:function(){}}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"seriesDefaults"},(function(){return t}))}}),Qe=e.defineComponent({name:"KendoChartSeriesItem",props:{autoFit:Boolean,aggregate:{type:[String,Function,Object],default:function(){}},axis:String,border:{type:Object,default:function(){}},categoryAxis:String,categoryField:String,closeField:String,color:{type:[String,Function],default:function(){}},colorField:String,connectors:{type:Object,default:function(){}},currentField:String,dashType:{type:String,default:function(){},validator:function(t){return["dash","dashDot","dot","longDash","longDashDot","longDashDotDot","solid"].includes(t)}},dataItems:{type:Array,default:function(){}},downColor:String,downColorField:String,dynamicHeight:{type:Boolean,default:void 0},dynamicSlope:{type:Boolean,default:void 0},errorHighField:String,errorLowField:String,explodeField:String,field:String,for:String,fromField:String,gap:Number,highField:String,holeSize:Number,line:{type:Object,default:function(){}},lowField:String,lowerField:String,margin:{type:[Object,Number],default:function(){}},maxSize:Number,meanField:String,medianField:String,minSize:Number,missingValues:{type:String,default:function(){},validator:function(t){return["gap","interpolate","zero"].includes(t)}},name:String,neckRatio:Number,negativeColor:String,negativeValues:{type:Object,default:function(){}},noteTextField:String,opacity:Number,openField:String,outliersField:String,overlay:{type:Object,default:function(){}},padding:Number,q1Field:String,q3Field:String,segmentSpacing:Number,size:Number,sizeField:String,spacing:Number,stack:{type:[Boolean,String,Object],default:function(){}},startAngle:Number,lineStyle:{type:String,default:function(){},validator:function(t){return["normal","step","smooth"].includes(t)}},summaryField:String,target:{type:Object,default:function(){}},toField:String,type:{type:String,default:function(){},validator:function(t){return["area","bar","boxPlot","bubble","bullet","candlestick","column","donut","funnel","pyramid","linearTrendline","movingAverageTrendline","horizontalWaterfall","line","ohlc","pie","polarArea","polarLine","polarScatter","radarArea","radarColumn","radarLine","rangeArea","rangeBar","rangeColumn","scatter","scatterLine","verticalArea","verticalBoxPlot","verticalBullet","verticalLine","verticalRangeArea","waterfall"].includes(t)}},upperField:String,visible:{type:Boolean,default:void 0},visibleInLegend:{type:Boolean,default:void 0},visibleInLegendField:String,visual:{type:Function,default:void 0},width:Number,xAxis:String,xErrorHighField:String,xErrorLowField:String,xField:String,yAxis:String,yErrorHighField:String,yErrorLowField:String,yField:String,zIndex:Number,errorBars:{type:Object,default:function(){}},extremes:{type:Object,default:function(){}},highlight:{type:Object,default:function(){}},labels:{type:Object,default:function(){}},markers:{type:Object,default:function(){}},legendItem:{type:Object,default:function(){}},notes:{type:Object,default:function(){}},outliers:{type:Object,default:function(){}},tooltip:{type:Object,default:function(){}}},inject:{chartRefresh:{default:i.noop}},watch:{dataItems:{handler(){this.chartRefresh()},deep:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}}),tn=e.defineComponent({name:"KendoChartTitle",props:{background:{type:String,default:void 0},border:{type:Object,default:void 0},margin:{type:[Object,Number],default:void 0},padding:{type:[Object,Number],default:void 0},align:{type:String,default:void 0,validator:function(t){return["center","left","right"].includes(t)}},color:{type:String,default:void 0},font:{type:String,default:void 0},position:{type:String,default:void 0,validator:function(t){return["top","bottom"].includes(t)}},text:{type:String,default:void 0},visible:{type:Boolean,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"title"},(function(){return t}))}}),en=e.defineComponent({name:"KendoChartTooltip",props:{background:{type:String,default:void 0},border:{type:Object,default:function(){}},padding:{type:[Object,Number],default:function(){}},color:{type:String,default:void 0},render:{type:[String,Function,Object],default:void 0},font:{type:String,default:void 0},format:{type:String,default:void 0},opacity:{type:Number,default:void 0},shared:{type:Boolean,default:void 0},visible:{type:Boolean,default:!0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props),o=i.templateRendering.call(this,this.$props.render,i.getListeners.call(this));return e.h(lt,{config:{...n,render:o},chartKey:"tooltip"},(function(){return t}))}});const nn=e.defineComponent({name:"KendoChartValueAxis",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"valueAxis"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),on=e.defineComponent({name:"KendoChartValueAxisItem",props:{axisCrossingValue:{type:[Array,Object,Date,Number],default:function(){}},background:{type:String,default:void 0},color:{type:String,default:void 0},line:{type:Object,default:void 0},majorGridLines:{type:Object,default:void 0},majorTicks:{type:Object,default:void 0},majorUnit:{type:Number,default:void 0},max:{type:[Number,Object,String,Date],default:void 0},min:{type:[Number,Object,String,Date],default:void 0},minorGridLines:{type:Object,default:void 0},minorTicks:{type:Object,default:void 0},minorUnit:{type:Number,default:void 0},name:{type:String,default:void 0},narrowRange:{type:Boolean,default:void 0},pane:{type:String,default:void 0},plotBands:{type:Array,default:void 0},reverse:{type:Boolean,default:void 0},type:{type:String,default:void 0,validator:function(t){return["numeric","log"].includes(t)}},visible:{type:Boolean,default:void 0},crosshair:{type:Object,default:void 0},labels:{type:Object,default:void 0},notes:{type:Object,default:void 0},title:{type:Object,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}});const rn=e.defineComponent({name:"KendoChartXAxis",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"xAxis"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),an=e.defineComponent({name:"KendoChartXAxisItem",props:{axisCrossingValue:{type:[Array,Object,Date,Number],default:function(){}},background:{type:String,default:void 0},baseUnit:{type:String,default:void 0,validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},color:{type:String,default:void 0},line:{type:Object,default:void 0},majorGridLines:{type:Object,default:void 0},majorTicks:{type:Object,default:void 0},majorUnit:{type:Number,default:void 0},max:{type:[Number,Object,String,Date],default:void 0},min:{type:[Number,Object,String,Date],default:void 0},minorGridLines:{type:Object,default:void 0},minorTicks:{type:Object,default:void 0},minorUnit:{type:Number,default:void 0},name:{type:String,default:void 0},narrowRange:{type:Boolean,default:void 0},pane:{type:String,default:void 0},plotBands:{type:Array,default:void 0},startAngle:{type:Number,default:void 0},reverse:{type:Boolean,default:void 0},type:{type:String,default:void 0,validator:function(t){return["numeric","log","date"].includes(t)}},visible:{type:Boolean,default:void 0},crosshair:{type:Object,default:void 0},labels:{type:Object,default:void 0},notes:{type:Object,default:void 0},title:{type:Object,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}});const sn=e.defineComponent({name:"KendoChartYAxis",render(){const t=i.getDefaultSlots(this);return e.createVNode(Ee,{chartKey:"yAxis"},function(t){return"function"==typeof t||"[object Object]"===Object.prototype.toString.call(t)&&!e.isVNode(t)}(t)?t:{default:()=>[t]})}}),ln=e.defineComponent({name:"KendoChartYAxisItem",props:{axisCrossingValue:{type:[Array,Object,Date,Number],default:void 0},background:{type:String,default:void 0},baseUnit:{type:String,default:void 0,validator:function(t){return["milliseconds","seconds","minutes","hours","days","weeks","months","years","auto","fit"].includes(t)}},color:{type:String,default:void 0},line:{type:Object,default:void 0},majorGridLines:{type:Object,default:void 0},majorTicks:{type:Object,default:void 0},majorUnit:{type:Number,default:void 0},max:{type:[Number,Object,String,Date],default:void 0},min:{type:[Number,Object,String,Date],default:void 0},minorGridLines:{type:Object,default:void 0},minorTicks:{type:Object,default:void 0},minorUnit:{type:Number,default:void 0},name:{type:String,default:void 0},narrowRange:{type:Boolean,default:void 0},pane:{type:String,default:void 0},plotBands:{type:Array,default:void 0},reverse:{type:Boolean,default:void 0},type:{type:String,default:void 0,validator:function(t){return["numeric","log","date"].includes(t)}},visible:{type:Boolean,default:void 0},crosshair:{type:Object,default:void 0},labels:{type:Object,default:void 0},notes:{type:Object,default:void 0},title:{type:Object,default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n},(function(){return t}))}}),un=e.defineComponent({name:"KendoChartZoomable",props:{mousewheel:{type:[Boolean,Object],default:void 0},selection:{type:[Boolean,Object],default:void 0}},render(){const t=i.getDefaultSlots(this),n=l(this.$props);return e.h(lt,{config:n,chartKey:"zoomable"},(function(){return t}))}}),dn=t=>`${t.fontWeight} ${t.fontSize} ${t.fontFamily}`,cn=t=>window.getComputedStyle(t).backgroundColor,pn=`\n <div class="k-var--background"></div>\n <div class="k-var--normal-text-color"></div>\n <div class="k-var--kendo-color-subtle"></div>\n\n <div class="k-widget k-chart">\n <div class="k-var--chart-font"></div>\n <div class="k-var--chart-title-font"></div>\n </div>\n <div class="k-var--series-unset"></div>\n <div class="k-var--series">\n ${(()=>{let t='\n <div class="k-var--series-a"></div>\n <div class="k-var--series-b"></div>\n <div class="k-var--series-c"></div>\n <div class="k-var--series-d"></div>\n <div class="k-var--series-e"></div>\n <div class="k-var--series-f"></div>\n';for(let e=0;e<30;e++)t+=`\n <div class="k-var--series-${e+1}"></div>`;return t})()}\n </div>\n`;class fn{constructor(t){this.store=t}setStyle(t,e){const n=t.split(".");let o=this.store;n.forEach(((t,e,n)=>{e<n.length-1&&(o=o[t]=o[t]||{})}));const i=n.pop();i&&(o[i]=e)}setColors(){this.mapColor("labels.color","normal-text-color"),this.mapColor("labels.stroke.color","background");this.element.querySelector(".k-var--kendo-color-subtle").style.color="var(--kendo-color-subtle)",this.mapColor("links.color","kendo-color-subtle","color"),this.mapColor("legend.labels.color","normal-text-color"),this.mapColor("title.color","normal-text-color")}setFonts(){const t=dn(this.queryStyle("chart-title-font")),e=dn(this.queryStyle("chart-font"));this.setStyle("title.font",t),this.setStyle("labels.font",e),this.setStyle("legend.labels.font",e)}setNodeColors(){const t=this.element;if(!t)return;const e=[].slice.call(t.querySelectorAll(".k-var--series div")),n=cn(t.querySelector(".k-var--series-unset")),o=e.reduce(((t,e)=>{const o=(t=>{const e=t.match(/series-([a-z])$/);if(null!==e)return(t=>t.toLowerCase().charCodeAt(0)-97)(e[1]);const n=t.split("--series-")[1];return parseInt(n,10)-1})(e.className),i=cn(e);return i!==n&&(t[o]=i),t}),[]);this.setStyle("nodeColors",o)}mapColor(t,e,n="backgroundColor"){this.setStyle(t,this.queryStyle(e)[n])}queryStyle(t){const e=this.element;return window.getComputedStyle(e.querySelector(`.k-var--${t}`))}}const hn="sankey.tooltipUnitFormat",gn={[hn]:"({0} units)"},yn={display:"flex",alignItems:"center"},bn=e.defineComponent({name:"Square",props:{color:String},render(){return e.createVNode("div",{style:{width:"15px",height:"15px","background-color":this.$props.color,display:"inline-flex",marginLeft:3}},null)}}),mn=e.defineComponent({name:"Text",props:{value:String},render(){return e.createVNode("span",{style:{margin:"0 3px"}},[this.$props.value])}}),vn=e.defineComponent({name:"Units",props:{value:Number},inject:{kendoLocalizationService:{default:null}},render(){const t=n.provideLocalizationService(this).toLanguageString(hn,gn[hn]),o=new n.IntlService("en").format(t,[this.$props.value||0]);return e.createVNode(mn,{value:o},null)}}),Sn=e.defineComponent({name:"NodeTooltipContent",props:{dataItem:Object,nodeValue:Number,dir:String},render(){const{color:t,label:n}=this.$props.dataItem;return e.createVNode("div",{style:yn,class:"k-tooltip-content"},[e.createVNode(bn,{color:t},null),e.createVNode(mn,{value:n.text},null),e.createVNode(vn,{value:this.$props.nodeValue},null)])}}),Cn=e.defineComponent({name:"LinkTooltipContent",props:{dataItem:Object,dir:String,nodeValue:Number},render(){const{dir:t,dataItem:n}=this.$props,{source:o,target:r,value:s}=n,l="rtl"===t?a.arrowLeftIcon:a.arrowRightIcon;return e.createVNode("div",{style:yn},[e.createVNode(bn,{color:o.color},null),e.createVNode(mn,{value:o.label.text},null),e.createVNode(i.Icon,{icon:l,name:l.name},null),e.createVNode(bn,{color:r.color},null),e.createVNode(mn,{value:r.label.text},null),e.createVNode(vn,{value:s},null)])}}),On=e.defineComponent({name:"SankeyTooltip",props:{eventData:Object,tooltipData:Object,nodeContent:[String,Object,Function],linkContent:[String,Object,Function],dir:String,offset:Number},data:()=>({top:"",left:"",visibility:"hidden"}),mounted(){this.element=i.getRef(this,"element"),this.showTooltip()},updated(){this.showTooltip()},methods:{showTooltip(){const{offset:t,tooltipData:e}=this.$props,n=this.element;if(!e||!n)return;const o=n.offsetWidth,i=n.offsetHeight,r={...e.popupOffset},a=e.popupAlign;r.left+="left"===a.horizontal?t:-1*t,"right"===a.horizontal&&(r.left-=o),"bottom"===a.vertical?r.top-=i+t:r.top+=t,this.$data.top=r.top+"px",this.$data.left=r.left+"px",this.$data.visibility=""}},render(){const{nodeContent:t,linkContent:n,dir:o,eventData:{dataItem:r,nodeValue:a,targetType:s}}=this.$props,l="node"===s?t:n,u="node"===s?Sn:Cn,d=i.getTemplate.call(this,{h:e.h,template:l,defaultRendering:e.createVNode(u,{dataItem:r,nodeValue:a,dir:o},null)});return e.createVNode("div",{ref:i.setRef(this,"element"),style:{top:this.top,left:this.left,visibility:this.visibility},class:"k-tooltip k-sankey-tooltip k-chart-tooltip k-chart-shared-tooltip",dir:o},[e.createVNode("div",{class:"k-tooltip-content"},[d])])}}),jn={visible:!0,offset:12},Nn=e.defineComponent({name:"KendoSankey",emits:{linkclick:null,linkenter:null,linkleave:null,nodeclick:null,nodeenter:null,nodeleave:null},inheritAttrs:!1,props:{dataNodes:{type:Array,required:!0},dataLinks:{type:Array,required:!0},disableAutoLayout:Boolean,disableKeyboardNavigation:Boolean,dir:String,labels:Object,legend:Object,links:Object,nodes:Object,title:Object,tooltip:Object},created(){i.validatePackage(et),this.instance=null},data:()=>({currentTooltip:null,currentDir:void 0}),watch:{dataNodes:function(){this.update(this)},dataLinks:function(){this.update(this)},links:function(){this.update(this)},nodes:function(){this.update(this)},labels:function(){this.update(this)},title:function(){this.update(this)},legend:function(){this.update(this)},disableAutoLayout:function(){this.update(this)},disableKeyboardNavigation:function(){this.update(this)},dir:function(){this.update(this)},tooltip:function(){this.update(this)}},computed:{sankeyClasses(){const t=this.$attrs.class;return{"k-chart k-sankey":!0,[t]:!!t}}},mounted(){this.element=i.getRef(this,"element"),this.currentDir=i.getDir(this.element,this.$props.dir),this.createSankey(this)},unmounted(){this.destroySankey()},methods:{exportVisual(t){return this.instance.exportVisual(t)},destroySankey(){this.instance&&(this.instance.destroy(),this.instance=null)},createSankey(){const t=this.element;if(!t)return;const e=this.sankeyOptions();((t,e)=>{const n={nodeColors:[]},o=new fn(n),i=o.element=t.createElement("div");i.style.display="none",i.innerHTML=pn,t.body.appendChild(i);try{o.setColors(),o.setFonts(),o.setNodeColors()}finally{t.body.removeChild(o.element),o.element=null,e(n)}})(t.ownerDocument,(n=>{this.instance=new o.Sankey(t,e,n),this.bindEvents(this.instance)}))},update(){this.instance&&this.instance.setOptions(this.sankeyOptions())},bindEvents(t){t.bind("nodeEnter",this.triggerEvent),t.bind("nodeLeave",this.triggerEvent),t.bind("linkEnter",this.triggerEvent),t.bind("linkLeave",this.triggerEvent),t.bind("nodeClick",this.triggerEvent),t.bind("linkClick",this.triggerEvent),t.bind("tooltipShow",this.onTooltipShow),t.bind("tooltipHide",this.onTooltipHide)},triggerEvent(t){const e={...t,target:this};this.$emit(t.type.toLowerCase(),e)},sankeyOptions(){const{dataNodes:t,dataLinks:e,links:n,nodes:o,labels:i,title:r,legend:a,disableAutoLayout:s,disableKeyboardNavigation:l,tooltip:u}=this.$props;return{data:{nodes:t,links:e},links:n,nodes:o,labels:i,title:r,legend:a,disableAutoLayout:s,disableKeyboardNavigation:l,rtl:"rtl"===this.currentDir,tooltip:{...jn,...u}}},onTooltipShow(t){const{visible:e}={...jn,...this.$props.tooltip};if(e){const e={tooltipData:t.tooltipData,eventData:{dataItem:t.dataItem,nodeValue:t.nodeValue,targetType:t.targetType}};this.currentTooltip=e}},onTooltipHide(){this.currentTooltip=null}},render(){const{nodeContent:t,linkContent:n,offset:o}=this.$props.tooltip||{},r=i.templateRendering.call(this,t,i.getListeners.call(this)),a=i.templateRendering.call(this,n,i.getListeners.call(this)),s=this.$props.dir||this.currentDir;return[e.createVNode("div",{ref:i.setRef(this,"element"),class:this.sankeyClasses,style:this.$attrs.style,dir:s},null),this.currentTooltip&&e.createVNode(On,{tooltipData:this.currentTooltip.tooltipData,eventData:this.currentTooltip.eventData,dir:s,offset:o||12,nodeContent:r,linkContent:a},null)]}}),xn=o.createSankeyData;t.AxisLabelClickEvent=c,t.Chart=it,t.ChartArea=Pe,t.ChartAxisDefaults=qe,t.ChartAxisDefaultsCrosshair=ct,t.ChartAxisDefaultsCrosshairTooltip=pt,t.ChartAxisDefaultsLabels=dt,t.ChartAxisDefaultsTitle=ut,t.ChartCategoryAxis=He,t.ChartCategoryAxisCrosshair=ft,t.ChartCategoryAxisCrosshairTooltip=ht,t.ChartCategoryAxisItem=Me,t.ChartCategoryAxisLabels=bt,t.ChartCategoryAxisNotes=mt,t.ChartCategoryAxisNotesIcon=vt,t.ChartCategoryAxisNotesLabel=St,t.ChartCategoryAxisRangeLabels=Ct,t.ChartCategoryAxisSelect=gt,t.ChartCategoryAxisTitle=yt,t.ChartLegend=Ue,t.ChartLegendInactiveItems=kt,t.ChartLegendItem=Nt,t.ChartLegendTitle=xt,t.ChartNavigator=Xe,t.ChartNavigatorCategoryAxis=$e,t.ChartNavigatorCategoryAxisCrosshair=fe,t.ChartNavigatorCategoryAxisCrosshairTooltip=he,t.ChartNavigatorCategoryAxisLabels=be,t.ChartNavigatorCategoryAxisNotes=me,t.ChartNavigatorCategoryAxisNotesIcon=ve,t.ChartNavigatorCategoryAxisNotesLabel=Se,t.ChartNavigatorCategoryAxisSelect=ge,t.ChartNavigatorCategoryAxisTitle=ye,t.ChartNavigatorHint=we,t.ChartNavigatorPane=Te,t.ChartNavigatorPaneTitle=Ce,t.ChartNavigatorSelect=Ve,t.ChartNavigatorSeries=Re,t.ChartNavigatorSeriesErrorBars=Ae,t.ChartNavigatorSeriesExtremes=Ke,t.ChartNavigatorSeriesHighlight=De,t.ChartNavigatorSeriesItem=ze,t.ChartNavigatorSeriesItemOutliers=je,t.ChartNavigatorSeriesItemTooltip=Oe,t.ChartNavigatorSeriesLabels=ke,t.ChartNavigatorSeriesLabelsFrom=Ie,t.ChartNavigatorSeriesLabelsTo=Fe,t.ChartNavigatorSeriesMarkers=xe,t.ChartNavigatorSeriesNotes=Ne,t.ChartNavigatorSeriesNotesIcon=Le,t.ChartNavigatorSeriesNotesLabel=Be,t.ChartPane=Ye,t.ChartPaneDefaults=Ge,t.ChartPaneDefaultsTitle=jt,t.ChartPaneTitle=Ot,t.ChartPanes=We,t.ChartPlotArea=_e,t.ChartSeries=Ze,t.ChartSeriesDefaults=Je,t.ChartSeriesDefaultsItemTooltip=Dt,t.ChartSeriesDefaultsLabels=Kt,t.ChartSeriesDefaultsLabelsFrom=At,t.ChartSeriesDefaultsLabelsTo=It,t.ChartSeriesDefaultsNotes=Ft,t.ChartSeriesDefaultsNotesIcon=Bt,t.ChartSeriesDefaultsNotesLabel=Lt,t.ChartSeriesErrorBars=Pt,t.ChartSeriesExtremes=zt,t.ChartSeriesHighlight=Rt,t.ChartSeriesItem=Qe,t.ChartSeriesItemOutliers=wt,t.ChartSeriesItemTooltip=$t,t.ChartSeriesLabels=Et,t.ChartSeriesLabelsFrom=qt,t.ChartSeriesLabelsTo=Ht,t.ChartSeriesMarkers=Vt,t.ChartSeriesNotes=Tt,t.ChartSeriesNotesIcon=Ut,t.ChartSeriesNotesLabel=Mt,t.ChartTitle=tn,t.ChartTooltip=en,t.ChartValueAxis=nn,t.ChartValueAxisCrosshair=Xt,t.ChartValueAxisCrosshairTooltip=Yt,t.ChartValueAxisItem=on,t.ChartValueAxisLabels=Wt,t.ChartValueAxisNotes=_t,t.ChartValueAxisNotesIcon=Zt,t.ChartValueAxisNotesLabel=Jt,t.ChartValueAxisTitle=Gt,t.ChartXAxis=rn,t.ChartXAxisCrosshair=Qt,t.ChartXAxisCrosshairTooltip=te,t.ChartXAxisItem=an,t.ChartXAxisLabels=ne,t.ChartXAxisNotes=oe,t.ChartXAxisNotesIcon=ie,t.ChartXAxisNotesLabel=re,t.ChartXAxisTitle=ee,t.ChartYAxis=sn,t.ChartYAxisCrosshair=ae,t.ChartYAxisCrosshairTooltip=se,t.ChartYAxisItem=ln,t.ChartYAxisLabels=ue,t.ChartYAxisNotes=de,t.ChartYAxisNotesIcon=ce,t.ChartYAxisNotesLabel=pe,t.ChartYAxisTitle=le,t.ChartZoomable=un,t.DragEndEvent=h,t.DragEvent=f,t.DragStartEvent=g,t.LegendItemClickEvent=b,t.LegendItemHoverEvent=y,t.NavigatorFilterEvent=m,t.NoteClickEvent=v,t.NoteHoverEvent=S,t.PlotAreaClickEvent=C,t.PlotAreaHoverEvent=O,t.RenderEvent=j,t.Sankey=Nn,t.SelectEndEvent=x,t.SelectEvent=N,t.SelectStartEvent=k,t.SeriesClickEvent=D,t.SeriesHoverEvent=K,t.Sparkline=rt,t.StockChart=st,t.TooltipPoint=P,t.ZoomEndEvent=I,t.ZoomEvent=A,t.ZoomStartEvent=F,t.createSankeyData=xn,t.exportVisual=(t,e={})=>{if(t&&null!==t.chartInstance())return t.chartInstance().exportVisual(e)},t.findAxisByName=(t,e)=>{if(t&&null!==t.chartInstance())return t.chartInstance().findAxisByName(e)},t.findPaneByIndex=(t,e)=>{if(t&&null!==t.chartInstance())return t.chartInstance().findPaneByIndex(e)},t.findPaneByName=(t,e)=>{if(t&&null!==t.chartInstance())return t.chartInstance().findPaneByName(e)}}));
|