{"version":3,"sources":["node_modules/@progress/kendo-angular-charts/fesm2020/progress-kendo-angular-charts.mjs"],"sourcesContent":["/**-----------------------------------------------------------------------------------------\n* Copyright © 2024 Progress Software Corporation. All rights reserved.\n* Licensed under commercial license. See LICENSE.md in the project root for more information\n*-------------------------------------------------------------------------------------------*/\nimport * as i0 from '@angular/core';\nimport { Directive, Optional, Injectable, SimpleChange, TemplateRef, Component, ChangeDetectionStrategy, Input, ContentChild, ElementRef, ViewChild, ViewChildren, EventEmitter, Output, ContentChildren, LOCALE_ID, Inject, isDevMode, InjectionToken, HostBinding, forwardRef, NgModule } from '@angular/core';\nimport { isDocumentAvailable, shouldShowValidationUI, ResizeSensorComponent, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';\nimport * as i3 from '@progress/kendo-angular-intl';\nimport * as i4 from '@progress/kendo-angular-l10n';\nimport { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';\nimport { DateCategoryAxis, DateValueAxis, InstanceObserver, chartBaseTheme, Chart, StockChart, Sparkline, Sankey, createSankeyData } from '@progress/kendo-charts';\nimport { exportImage, exportSVG } from '@progress/kendo-drawing';\nimport { validatePackage } from '@progress/kendo-licensing';\nimport { Subject, BehaviorSubject, combineLatest, Subscription } from 'rxjs';\nimport { auditTime, tap } from 'rxjs/operators';\nimport * as i1 from '@progress/kendo-angular-popup';\nimport { PopupService, POPUP_CONTAINER } from '@progress/kendo-angular-popup';\nimport { NgStyle, NgFor, NgClass, NgIf, NgTemplateOutlet } from '@angular/common';\nimport { BreadCrumbComponent } from '@progress/kendo-angular-navigation';\nimport { homeIcon, arrowRightIcon, arrowLeftIcon } from '@progress/kendo-svg-icons';\nimport { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';\nimport { getter } from '@progress/kendo-common';\n\nconst dateCategoryAxisFormats = DateCategoryAxis.prototype.options.labels.dateFormats;\nconst dateValueAxisFormats = DateValueAxis.prototype.options.labels.dateFormats;\nconst dateFormats = {\n milliseconds: \"HH:mm:ss.SSS\",\n seconds: { time: 'medium' },\n minutes: { time: 'short' },\n hours: { time: 'short' },\n days: { skeleton: 'Md' },\n weeks: { skeleton: 'Md' },\n months: { skeleton: 'yyMMM' },\n years: { skeleton: 'y' }\n};\nObject.assign(dateCategoryAxisFormats, dateFormats);\nObject.assign(dateValueAxisFormats, dateFormats);\n\n/**\n * A directive which selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [Donut center template](slug:donut_seriestypes_charts#toc-using-the-center-template).\n */\nclass DonutCenterTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nDonutCenterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: DonutCenterTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nDonutCenterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: DonutCenterTemplateDirective, isStandalone: true, selector: \"[kendoChartDonutCenterTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: DonutCenterTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartDonutCenterTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * @hidden\n */\nclass ItemChange {\n constructor(sender, options) {\n this.sender = sender;\n this.options = options;\n }\n}\n/**\n * @hidden\n */\nclass CollectionService {\n constructor() {\n this.source = new Subject();\n this.onItemChange$ = this.source.asObservable();\n }\n notify(change) {\n this.source.next(change);\n }\n}\nCollectionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\nCollectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionService, decorators: [{\n type: Injectable\n }], ctorParameters: function () { return []; } });\n\n/**\n * @hidden\n */\nconst THROTTLE_MS = 1000 / 60;\n/**\n * @hidden\n */\nclass Change {\n constructor(key, value) {\n this.key = key;\n this.value = value;\n }\n}\n/**\n * @hidden\n */\nclass ConfigurationService {\n constructor(ngZone) {\n this.ngZone = ngZone;\n this.store = {};\n this.source = new BehaviorSubject({});\n this.initSource();\n }\n initSource() {\n this.onFastChange$ = this.source.asObservable();\n this.onChange$ = this.onFastChange$.pipe(auditTime(THROTTLE_MS));\n }\n push(store) {\n this.store = store;\n this.next();\n }\n notify(change) {\n this.set(change.key, change.value);\n this.next();\n }\n set(field, value) {\n let store = this.store;\n const parts = field.split('.');\n let key = parts.shift();\n while (parts.length > 0) {\n store = store[key] = store[key] || {};\n key = parts.shift();\n }\n store[key] = value;\n }\n next() {\n this.ngZone.runOutsideAngular(() => {\n this.source.next(this.store);\n });\n }\n}\nConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ConfigurationService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });\nConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ConfigurationService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ConfigurationService, decorators: [{\n type: Injectable\n }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });\n\n/**\n * @hidden\n */\nfunction copyChanges(changes, options) {\n for (const propertyName in changes) {\n if (!Object.hasOwnProperty.call(changes, propertyName)) {\n continue;\n }\n const value = changes[propertyName].currentValue;\n if (value === undefined) {\n delete options[propertyName];\n }\n else {\n options[propertyName] = value;\n }\n }\n}\n\n/**\n * @hidden\n */\nfunction toSimpleChanges(changes) {\n const result = {};\n for (const propertyName in changes) {\n if (!Object.hasOwnProperty.call(changes, propertyName)) {\n continue;\n }\n result[propertyName] = new SimpleChange(null, changes[propertyName], false);\n }\n return result;\n}\n\n/**\n * @hidden\n */\nclass CollectionItemComponent {\n constructor(configurationService, collectionService) {\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.options = {};\n this.hidden = false;\n this.subscription = configurationService.onFastChange$.subscribe(store => {\n this.options = store;\n this.notify();\n });\n }\n ngOnChanges(changes) {\n const store = this.configurationService.store;\n copyChanges(changes, store);\n this.configurationService.push(store);\n }\n /**\n * Updates the component fields with the specified values and refreshes the Chart.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * item.notifyChanges({ visible: true });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n ngOnDestroy() {\n this.subscription.unsubscribe();\n }\n notify() {\n if (!this.collectionService) {\n return;\n }\n this.collectionService.notify(new ItemChange(this, this.options));\n }\n}\nCollectionItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Directive });\nCollectionItemComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CollectionItemComponent, usesOnChanges: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionItemComponent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; } });\n\n/**\n * @hidden\n */\nclass SettingsComponent {\n constructor(configKey, configurationService) {\n this.configKey = configKey;\n this.configurationService = configurationService;\n this.store = {};\n if (configKey === undefined) {\n throw new Error('Configuration key not set');\n }\n }\n ngOnDestroy() {\n this.store = undefined;\n this.notify();\n }\n ngOnChanges(changes) {\n copyChanges(changes, this.store);\n this.notify();\n }\n /**\n * Updates the component fields with the specified values and refreshes the Chart.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * item.notifyChanges({ visible: true });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n markAsVisible() {\n this.store.visible = true;\n this.notify();\n }\n notify() {\n this.configurationService.notify(new Change(this.configKey, this.store));\n }\n}\nSettingsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SettingsComponent, deps: \"invalid\", target: i0.ɵɵFactoryTarget.Directive });\nSettingsComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SettingsComponent, usesOnChanges: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SettingsComponent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }]; } });\n\n/**\n * The configuration options of the Chart series tooltip\n * ([see example]({% slug tooltips_chart_charts %})).\n */\nclass SeriesTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n get seriesTooltipTemplateRef() {\n return this.seriesTooltipTemplate;\n }\n}\nSeriesTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTooltipComponent, isStandalone: true, selector: \"kendo-chart-series-item-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, queries: [{ propertyName: \"seriesTooltipTemplate\", first: true, predicate: TemplateRef, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }], seriesTooltipTemplate: [{\n type: ContentChild,\n args: [TemplateRef, { static: false }]\n }] } });\n\n/**\n * Represents the series [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for creating nested\n * [Drilldown](slug:drilldown_chart_charts) series.\n *\n * When the user clicks on a data point with drilldown data,\n * the Chart will create a new series based on this template.\n *\n * The template context is passes through the following fields:\n * - `drilldownValue`—The drilldown field value.\n * - `point`—The series point to drill down to.\n * - `series`—The series to drill down to.\n */\nclass SeriesDrilldownTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSeriesDrilldownTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDrilldownTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSeriesDrilldownTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDrilldownTemplateDirective, isStandalone: true, selector: \"[kendoChartDrilldownSeries]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDrilldownTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartDrilldownSeries]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\nconst toggle = (flag) => flag === undefined ? false : !flag;\n/**\n * The configuration component for a series item.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n /**\n * Toggles the series visibility and updates the parent Chart\n * without animated transitions.\n */\n toggleVisibility() {\n this.options.visible = toggle(this.options.visible);\n this.notify();\n }\n /**\n * Toggles the visibility of a point with the given index.\n * Applicable for the Pie, Donut, Funnel and Pyramid series.\n *\n * @param pointIndex - The zero-based index of the point to toggle.\n */\n togglePointVisibility(pointIndex) {\n const pv = this.options.pointVisibility = this.options.pointVisibility || {};\n pv[pointIndex] = toggle(pv[pointIndex]);\n this.notify();\n }\n get seriesTooltipTemplateRef() {\n if (this.seriesTooltip) {\n return this.seriesTooltip.seriesTooltipTemplateRef;\n }\n }\n}\nSeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesItemComponent, isStandalone: true, selector: \"kendo-chart-series-item\", inputs: { aggregate: \"aggregate\", autoFit: \"autoFit\", axis: \"axis\", border: \"border\", categoryAxis: \"categoryAxis\", categoryField: \"categoryField\", closeField: \"closeField\", color: \"color\", colorField: \"colorField\", connectors: \"connectors\", currentField: \"currentField\", dashType: \"dashType\", data: \"data\", downColor: \"downColor\", downColorField: \"downColorField\", drilldownField: \"drilldownField\", dynamicHeight: \"dynamicHeight\", dynamicSlope: \"dynamicSlope\", errorHighField: \"errorHighField\", errorLowField: \"errorLowField\", explodeField: \"explodeField\", field: \"field\", fromField: \"fromField\", gap: \"gap\", highField: \"highField\", holeSize: \"holeSize\", line: \"line\", lowField: \"lowField\", lowerField: \"lowerField\", margin: \"margin\", maxSize: \"maxSize\", mean: \"mean\", meanField: \"meanField\", median: \"median\", medianField: \"medianField\", minSize: \"minSize\", missingValues: \"missingValues\", name: \"name\", neckRatio: \"neckRatio\", negativeColor: \"negativeColor\", negativeValues: \"negativeValues\", noteTextField: \"noteTextField\", opacity: \"opacity\", openField: \"openField\", outliersField: \"outliersField\", overlay: \"overlay\", padding: \"padding\", q1Field: \"q1Field\", q3Field: \"q3Field\", segmentSpacing: \"segmentSpacing\", size: \"size\", sizeField: \"sizeField\", spacing: \"spacing\", stack: \"stack\", startAngle: \"startAngle\", style: \"style\", summaryField: \"summaryField\", target: \"target\", toField: \"toField\", type: \"type\", upperField: \"upperField\", visible: \"visible\", visibleInLegend: \"visibleInLegend\", visibleInLegendField: \"visibleInLegendField\", visual: \"visual\", width: \"width\", whiskers: \"whiskers\", xAxis: \"xAxis\", xErrorHighField: \"xErrorHighField\", xErrorLowField: \"xErrorLowField\", xField: \"xField\", yAxis: \"yAxis\", yErrorHighField: \"yErrorHighField\", yErrorLowField: \"yErrorLowField\", yField: \"yField\", zIndex: \"zIndex\", trendline: \"trendline\", for: \"for\", legendItem: \"legendItem\", errorBars: \"errorBars\", extremes: \"extremes\", highlight: \"highlight\", labels: \"labels\", markers: \"markers\", notes: \"notes\", outliers: \"outliers\", tooltip: \"tooltip\" }, providers: [ConfigurationService], queries: [{ propertyName: \"seriesTooltip\", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: \"drilldownTemplate\", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-series-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { aggregate: [{\n type: Input\n }], autoFit: [{\n type: Input\n }], axis: [{\n type: Input\n }], border: [{\n type: Input\n }], categoryAxis: [{\n type: Input\n }], categoryField: [{\n type: Input\n }], closeField: [{\n type: Input\n }], color: [{\n type: Input\n }], colorField: [{\n type: Input\n }], connectors: [{\n type: Input\n }], currentField: [{\n type: Input\n }], dashType: [{\n type: Input\n }], data: [{\n type: Input\n }], downColor: [{\n type: Input\n }], downColorField: [{\n type: Input\n }], drilldownField: [{\n type: Input\n }], dynamicHeight: [{\n type: Input\n }], dynamicSlope: [{\n type: Input\n }], errorHighField: [{\n type: Input\n }], errorLowField: [{\n type: Input\n }], explodeField: [{\n type: Input\n }], field: [{\n type: Input\n }], fromField: [{\n type: Input\n }], gap: [{\n type: Input\n }], highField: [{\n type: Input\n }], holeSize: [{\n type: Input\n }], line: [{\n type: Input\n }], lowField: [{\n type: Input\n }], lowerField: [{\n type: Input\n }], margin: [{\n type: Input\n }], maxSize: [{\n type: Input\n }], mean: [{\n type: Input\n }], meanField: [{\n type: Input\n }], median: [{\n type: Input\n }], medianField: [{\n type: Input\n }], minSize: [{\n type: Input\n }], missingValues: [{\n type: Input\n }], name: [{\n type: Input\n }], neckRatio: [{\n type: Input\n }], negativeColor: [{\n type: Input\n }], negativeValues: [{\n type: Input\n }], noteTextField: [{\n type: Input\n }], opacity: [{\n type: Input\n }], openField: [{\n type: Input\n }], outliersField: [{\n type: Input\n }], overlay: [{\n type: Input\n }], padding: [{\n type: Input\n }], q1Field: [{\n type: Input\n }], q3Field: [{\n type: Input\n }], segmentSpacing: [{\n type: Input\n }], size: [{\n type: Input\n }], sizeField: [{\n type: Input\n }], spacing: [{\n type: Input\n }], stack: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], style: [{\n type: Input\n }], summaryField: [{\n type: Input\n }], target: [{\n type: Input\n }], toField: [{\n type: Input\n }], type: [{\n type: Input\n }], upperField: [{\n type: Input\n }], visible: [{\n type: Input\n }], visibleInLegend: [{\n type: Input\n }], visibleInLegendField: [{\n type: Input\n }], visual: [{\n type: Input\n }], width: [{\n type: Input\n }], whiskers: [{\n type: Input\n }], xAxis: [{\n type: Input\n }], xErrorHighField: [{\n type: Input\n }], xErrorLowField: [{\n type: Input\n }], xField: [{\n type: Input\n }], yAxis: [{\n type: Input\n }], yErrorHighField: [{\n type: Input\n }], yErrorLowField: [{\n type: Input\n }], yField: [{\n type: Input\n }], zIndex: [{\n type: Input\n }], trendline: [{\n type: Input\n }], for: [{\n type: Input\n }], legendItem: [{\n type: Input\n }], errorBars: [{\n type: Input\n }], extremes: [{\n type: Input\n }], highlight: [{\n type: Input\n }], labels: [{\n type: Input\n }], markers: [{\n type: Input\n }], notes: [{\n type: Input\n }], outliers: [{\n type: Input\n }], tooltip: [{\n type: Input\n }], seriesTooltip: [{\n type: ContentChild,\n args: [SeriesTooltipComponent, { static: false }]\n }], drilldownTemplate: [{\n type: ContentChild,\n args: [SeriesDrilldownTemplateDirective, { static: false }]\n }] } });\n\nconst POSITION_MODE = 'absolute';\nconst COLLISION = { horizontal: \"fit\", vertical: \"fit\" };\n/**\n * @hidden\n */\nclass BaseTooltip {\n constructor(popupService, localizationService) {\n this.popupService = popupService;\n this.localizationService = localizationService;\n this.style = {};\n this.popupRef = null;\n }\n get active() {\n return this.popupRef !== null;\n }\n show(e) {\n const align = e.anchor.align;\n const offset = this.position(e.anchor.point);\n this.style = e.style;\n if (!this.popupRef) {\n this.popupRef = this.popupService.open(Object.assign({\n offset: offset,\n popupAlign: align,\n animate: this.animate,\n content: this.templateRef,\n collision: COLLISION,\n positionMode: POSITION_MODE\n }, this.popupSettings));\n if (this.localizationService.rtl) {\n this.popupRef.popupElement.setAttribute('dir', 'rtl');\n }\n this.onInit();\n }\n else {\n const popup = this.popupRef.popup.instance;\n popup.offset = offset;\n popup.popupAlign = align;\n }\n }\n onInit() {\n /* noop */\n }\n hide() {\n if (this.popupRef) {\n this.popupRef.close();\n this.popupRef = null;\n }\n }\n ngOnDestroy() {\n this.hide();\n }\n position(offset) {\n if (!this.popupSettings || !this.popupSettings.appendTo) {\n return offset;\n }\n const appendTo = this.popupSettings.appendTo.element.nativeElement;\n const bbox = appendTo.getBoundingClientRect();\n const { scrollLeft, scrollTop } = this.scrollOffset(appendTo);\n return {\n left: offset.left - bbox.left - scrollLeft,\n top: offset.top - bbox.top - scrollTop\n };\n }\n scrollOffset(element) {\n if (!element) {\n return null;\n }\n let scrollLeft = element.scrollLeft;\n let scrollTop = element.scrollTop;\n let parent = element.parentElement;\n while (parent) {\n scrollLeft += parent.scrollLeft;\n scrollTop += parent.scrollTop;\n parent = parent.parentElement;\n }\n return { scrollLeft, scrollTop };\n }\n}\nBaseTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseTooltip, deps: [{ token: i1.PopupService }, { token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });\nBaseTooltip.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: BaseTooltip, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseTooltip, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: i1.PopupService }, { type: i4.LocalizationService }]; } });\n\n/**\n * @hidden\n */\nfunction bodyFactory() {\n if (isDocumentAvailable()) {\n return new ElementRef(document.body);\n }\n}\n\n/**\n * @hidden\n */\nclass CrosshairTooltipComponent extends BaseTooltip {\n constructor(popupService, localizationService) {\n super(popupService, localizationService);\n this.animate = false;\n }\n show(e) {\n super.show(e);\n this.value = e.value;\n this.popupRef.popup.changeDetectorRef.detectChanges();\n }\n}\nCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipComponent, deps: [{ token: i1.PopupService }, { token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });\nCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-crosshair-tooltip\", inputs: { key: \"key\", popupSettings: \"popupSettings\" }, providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }], viewQueries: [{ propertyName: \"templateRef\", first: true, predicate: [\"content\"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `\n \n
\n {{ value }}\n
\n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }],\n selector: 'kendo-chart-crosshair-tooltip',\n template: `\n \n
\n {{ value }}\n
\n
\n `,\n standalone: true,\n imports: [NgStyle]\n }]\n }], ctorParameters: function () { return [{ type: i1.PopupService }, { type: i4.LocalizationService }]; }, propDecorators: { templateRef: [{\n type: ViewChild,\n args: ['content', { static: true }]\n }], key: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }] } });\n\nconst AXES = [\"categoryAxis\", \"valueAxis\", \"xAxis\", \"yAxis\"];\n/**\n * @hidden\n */\nclass CrosshairTooltipsContainerComponent {\n constructor() {\n this.tooltipKeys = [];\n this.tooltipsMap = {};\n }\n show(e) {\n const tooltipComponents = this.crossahirTooltipComponents.toArray();\n const axisName = e.axisName;\n const axisIndex = e.axisIndex;\n for (let idx = 0; idx < tooltipComponents.length; idx++) {\n if (tooltipComponents[idx].key === axisName + axisIndex) {\n tooltipComponents[idx].show(e);\n break;\n }\n }\n }\n hide() {\n const tooltipComponents = this.crossahirTooltipComponents.toArray();\n for (let idx = 0; idx < tooltipComponents.length; idx++) {\n tooltipComponents[idx].hide();\n }\n }\n get active() {\n return this.tooltipKeys.length > 0;\n }\n createCrosshairTooltips(options) {\n const newMap = this.mapTooltips(options);\n const map = this.tooltipsMap;\n for (const key in map) {\n if (!newMap[key]) {\n this.removeTooltip(key);\n delete map[key];\n }\n }\n for (const key in newMap) {\n if (!map[key]) {\n map[key] = newMap[key];\n this.tooltipKeys.push(key);\n }\n }\n }\n removeTooltip(key) {\n const keys = this.tooltipKeys;\n for (let idx = 0; idx < keys.length; idx++) {\n if (keys[idx] === key) {\n keys.splice(idx, 1);\n break;\n }\n }\n }\n mapTooltips(options) {\n const map = {};\n for (let idx = 0; idx < AXES.length; idx++) {\n const tooltips = this.axesCrosshairTooltipOptions(options, AXES[idx]);\n for (let tooltipIdx = 0; tooltipIdx < tooltips.length; tooltipIdx++) {\n const tooltip = tooltips[tooltipIdx];\n map[tooltip.name + tooltip.index] = tooltip;\n }\n }\n return map;\n }\n axesCrosshairTooltipOptions(options, name) {\n const result = [];\n if (options[name]) {\n const axes = [].concat(options[name]);\n for (let idx = 0; idx < axes.length; idx++) {\n const tooltip = (axes[idx].crosshair || {}).tooltip;\n if (tooltip && tooltip.visible) {\n result.push({\n index: idx,\n name: name\n });\n }\n }\n }\n return result;\n }\n}\nCrosshairTooltipsContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipsContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });\nCrosshairTooltipsContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CrosshairTooltipsContainerComponent, isStandalone: true, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: { popupSettings: \"popupSettings\" }, viewQueries: [{ propertyName: \"crossahirTooltipComponents\", predicate: CrosshairTooltipComponent, descendants: true }], ngImport: i0, template: `\n \n \n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgFor, selector: \"[ngFor][ngForOf]\", inputs: [\"ngForOf\", \"ngForTrackBy\", \"ngForTemplate\"] }, { kind: \"component\", type: CrosshairTooltipComponent, selector: \"kendo-chart-crosshair-tooltip\", inputs: [\"key\", \"popupSettings\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipsContainerComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'kendo-chart-crosshair-tooltips-container',\n template: `\n \n \n `,\n standalone: true,\n imports: [NgFor, CrosshairTooltipComponent]\n }]\n }], propDecorators: { popupSettings: [{\n type: Input\n }], crossahirTooltipComponents: [{\n type: ViewChildren,\n args: [CrosshairTooltipComponent]\n }] } });\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [series tooltip](slug:tooltips_chart_charts#toc-specifying-a-template).\n * The following context fields are frequently utilized:\n * - `let-category=\"category\"`—The category name.\n * - `let-dataItem=\"dataItem\"`—The original data item used to construct the point. It will be `null` if binding to an array.\n * - `let-series=\"series\"`—The data series.\n * - `let-value=\"value\"`—The value of the point (either a number or an object).\n * For the full list of available fields, refer to the [`TooltipTemplatePoint`](slug:api_charts_tooltiptemplatepoint).\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * Value is {{value}}\n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * }\n *\n * ```\n */\nclass SeriesTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSeriesTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSeriesTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTooltipTemplateDirective, isStandalone: true, selector: \"[kendoChartSeriesTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartSeriesTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [shared series tooltip](slug:tooltips_chart_charts#toc-shared-tooltip-customization).\n * The available fields in the template context are:\n * - `let-points=\"points\"`—An array of the [`TooltipTemplatePoints`](slug:api_charts_tooltiptemplatepoint) category.\n * - `let-category=\"category\"`—The category name.\n * - `let-categoryText=\"categoryText\"`—The category name as text.\n * - `let-nameColumn=\"nameColumn\"`—Returns a Boolean [`value`](slug:api_charts_seriesitemcomponent#toc-name) indicating whether the name property of the `SeriesItemComponent` is defined.\n * - `let-colorMarker=\"colorMarker\"`—Returns a Boolean value indicating whether one or more series colors are specified in the Chart. If the Chart contains only one `SeriesItemComponent`, the context field will return `false`.\n * - `let-colSpan=\"colSpan\"`—Specifies the number of columns covered by the tooltip. The default value is `1` and increases by `1` if `nameColumn` and `colorMarker` are set to `true`.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n *
{{ category }}
\n *
\n * {{ point.series.name }} : {{ point.value }}\n *
\n *
\n *
\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n *
\n * `\n * })\n * class AppComponent {\n * }\n *\n * ```\n */\nclass SharedTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSharedTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SharedTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSharedTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SharedTooltipTemplateDirective, isStandalone: true, selector: \"[kendoChartSharedTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SharedTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartSharedTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * The point that is passed to the tooltip template.\n */\nclass TooltipTemplatePoint {\n /**\n * @hidden\n */\n constructor(point, format, template) {\n this.value = point.value;\n this.category = point.category;\n this.categoryIndex = point.categoryIx;\n this.series = point.series;\n this.dataItem = point.dataItem;\n this.percentage = point.percentage;\n this.runningTotal = point.runningTotal;\n this.total = point.total;\n this.low = point.low;\n this.high = point.high;\n this.xLow = point.xLow;\n this.xHigh = point.xHigh;\n this.yLow = point.yLow;\n this.yHigh = point.yHigh;\n this.template = template;\n this.point = point;\n this.format = format;\n }\n /**\n * @hidden\n */\n get formattedValue() {\n return this.format ? this.point.formatValue(this.format) : String(this.value);\n }\n}\n\n/**\n * @hidden\n */\nfunction hasParent(element, parent) {\n let current = element;\n while (current && current !== parent) {\n current = current.parentNode;\n }\n return current ? true : false;\n}\n\n/**\n * @hidden\n */\nclass TooltipTemplateService {\n setTemplate(template) {\n this.template = template;\n }\n getTemplate(seriesIndex) {\n if (this.seriesTemplates && this.seriesTemplates[seriesIndex]) {\n return this.seriesTemplates[seriesIndex];\n }\n return this.template;\n }\n setSeriesTemplates(seriesTemplates) {\n this.seriesTemplates = seriesTemplates;\n }\n setSharedTemplate(sharedTemplate) {\n this.sharedTemplate = sharedTemplate;\n }\n getSharedTemplate() {\n return this.sharedTemplate;\n }\n}\nTooltipTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\nTooltipTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipTemplateService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipTemplateService, decorators: [{\n type: Injectable\n }] });\n\nconst SHARED_TOOLTIP_CLASS = 'k-chart-shared-tooltip';\nconst TOOLTIP_CLASS = \"k-chart-tooltip\";\n/**\n * @hidden\n */\nclass TooltipPopupComponent extends BaseTooltip {\n constructor(popupService, templateService, localizationService, ngZone) {\n super(popupService, localizationService);\n this.popupService = popupService;\n this.templateService = templateService;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.seriesTooltipContext = {};\n this.seriesSharedTooltipContext = {};\n this.animate = true;\n this.wrapperClass = 'k-chart-tooltip-wrapper';\n this.leave = new EventEmitter();\n this.popupClasses = {};\n }\n show(e) {\n this.shared = e.shared;\n this.popupClasses = Object.assign({\n [SHARED_TOOLTIP_CLASS]: e.shared,\n [TOOLTIP_CLASS]: true,\n [e.className]: !!e.className\n }, this.classNames);\n if (!e.shared) {\n this.seriesTooltipContext = new TooltipTemplatePoint(e.point, e.format);\n this.seriesTooltipTemplateRef = this.pointTemplateRef(e.point);\n }\n else {\n this.seriesSharedTooltipTemplateRef = this.templateService.getSharedTemplate()\n || this.defaultSharedTooltipTemplate.templateRef;\n this.seriesSharedTooltipContext = this.sharedTemplateContext(e);\n }\n super.show(e);\n }\n containsElement(element) {\n if (this.popupRef) {\n return hasParent(element, this.popupRef.popupElement);\n }\n }\n sharedTemplateContext(e) {\n const points = e.points;\n const nameColumn = points.filter((point) => typeof point.series.name !== 'undefined').length > 0;\n const colorMarker = e.series.length > 1;\n let colspan = 1;\n if (nameColumn) {\n colspan++;\n }\n if (colorMarker) {\n colspan++;\n }\n return {\n category: e.category,\n categoryText: e.categoryText,\n colorMarker: colorMarker,\n colspan: colspan,\n nameColumn: nameColumn,\n points: this.wrapPoints(e.points, e.format)\n };\n }\n pointTemplateRef(point) {\n return this.templateService.getTemplate(point.series.index) || this.defaultSeriesTooltipTemplate.templateRef;\n }\n wrapPoints(points, format) {\n const result = [];\n for (let idx = 0; idx < points.length; idx++) {\n const point = points[idx];\n const template = this.pointTemplateRef(point);\n const pointFormat = ((point.options || {}).tooltip || {}).format || format;\n result.push(new TooltipTemplatePoint(point, pointFormat, template));\n }\n return result;\n }\n onInit() {\n this.ngZone.runOutsideAngular(() => {\n this.mouseleaveSubscription = this.popupRef.popupElement.addEventListener('mouseleave', (args) => {\n this.leave.emit(args);\n });\n });\n this.popupRef.popupElement.className += ` ${this.wrapperClass}`;\n }\n hide() {\n if (this.mouseleaveSubscription) {\n this.mouseleaveSubscription();\n this.mouseleaveSubscription = null;\n }\n super.hide();\n }\n}\nTooltipPopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipPopupComponent, deps: [{ token: i1.PopupService }, { token: TooltipTemplateService }, { token: i4.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });\nTooltipPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: TooltipPopupComponent, isStandalone: true, selector: \"kendo-chart-tooltip-popup\", inputs: { animate: \"animate\", classNames: \"classNames\", popupSettings: \"popupSettings\", wrapperClass: \"wrapperClass\" }, outputs: { leave: \"leave\" }, providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }], viewQueries: [{ propertyName: \"defaultSeriesTooltipTemplate\", first: true, predicate: SeriesTooltipTemplateDirective, descendants: true }, { propertyName: \"defaultSharedTooltipTemplate\", first: true, predicate: SharedTooltipTemplateDirective, descendants: true }, { propertyName: \"templateRef\", first: true, predicate: [\"content\"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `\n \n
\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n \n \n \n
{{ categoryText }}
\n {{ point.series.name }}\n  \n \n \n \n
\n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgClass, selector: \"[ngClass]\", inputs: [\"class\", \"ngClass\"] }, { kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"directive\", type: NgTemplateOutlet, selector: \"[ngTemplateOutlet]\", inputs: [\"ngTemplateOutletContext\", \"ngTemplateOutlet\", \"ngTemplateOutletInjector\"] }, { kind: \"directive\", type: SeriesTooltipTemplateDirective, selector: \"[kendoChartSeriesTooltipTemplate]\" }, { kind: \"directive\", type: SharedTooltipTemplateDirective, selector: \"[kendoChartSharedTooltipTemplate]\" }, { kind: \"directive\", type: NgFor, selector: \"[ngFor][ngForOf]\", inputs: [\"ngForOf\", \"ngForTrackBy\", \"ngForTemplate\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipPopupComponent, decorators: [{\n type: Component,\n args: [{\n providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }],\n selector: 'kendo-chart-tooltip-popup',\n template: `\n \n
\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n \n \n \n
{{ categoryText }}
\n {{ point.series.name }}\n  \n \n \n \n
\n
\n `,\n standalone: true,\n imports: [NgClass, NgStyle, NgIf, NgTemplateOutlet, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, NgFor]\n }]\n }], ctorParameters: function () { return [{ type: i1.PopupService }, { type: TooltipTemplateService }, { type: i4.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { defaultSeriesTooltipTemplate: [{\n type: ViewChild,\n args: [SeriesTooltipTemplateDirective, { static: false }]\n }], defaultSharedTooltipTemplate: [{\n type: ViewChild,\n args: [SharedTooltipTemplateDirective, { static: false }]\n }], templateRef: [{\n type: ViewChild,\n args: ['content', { static: true }]\n }], animate: [{\n type: Input\n }], classNames: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], wrapperClass: [{\n type: Input\n }], leave: [{\n type: Output\n }] } });\n\n/**\n * @hidden\n */\nclass ChartInstanceObserver extends InstanceObserver {\n constructor(instance) {\n super(instance);\n this.handlerMap = {\n hideTooltip: 'onHideTooltip',\n legendItemClick: 'onLegendItemClick',\n render: 'onRender',\n showTooltip: 'onShowTooltip',\n init: 'onInit'\n };\n }\n}\n\n/**\n * Fallback theme in case the Theme Service fails\n * to read the variables from the main theme.\n *\n * @hidden\n */\nconst chartDefaultTheme = () => Object.assign({}, chartBaseTheme(), {\n axisDefaults: {\n crosshair: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n labels: {\n color: 'rgb(101, 101, 101)',\n font: '12px serif'\n },\n line: {\n color: 'rgba(0, 0, 0, 0.08)'\n },\n majorGridLines: {\n color: 'rgba(0, 0, 0, 0.08)'\n },\n minorGridLines: {\n color: 'rgba(0, 0, 0, 0.04)'\n },\n notes: {\n icon: {\n background: 'rgba(0, 0, 0, 0.5)',\n border: {\n color: 'rgba(0, 0, 0, 0.5)'\n }\n },\n line: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n label: {\n font: '14px serif'\n }\n },\n title: {\n color: 'rgb(101, 101, 101)',\n font: '14px serif'\n }\n },\n chartArea: {\n background: 'rgb(255, 255, 255)'\n },\n legend: {\n inactiveItems: {\n labels: {\n color: 'rgba(102, 102, 102, 0.5)'\n },\n markers: {\n color: 'rgba(102, 102, 102, 0.5)'\n }\n },\n labels: {\n color: 'rgb(101, 101, 101)',\n font: '14px serif'\n }\n },\n seriesDefaults: {\n boxPlot: {\n downColor: 'rgba(0, 0, 0, 0.08)',\n mean: {\n color: 'rgb(246, 246, 246)'\n },\n median: {\n color: 'rgb(246, 246, 246)'\n },\n whiskers: {\n color: 'rgb(255, 99, 88)'\n }\n },\n bullet: {\n target: {\n color: 'rgb(101, 101, 101)'\n }\n },\n candlestick: {\n downColor: 'rgb(101, 101, 101)',\n line: {\n color: 'rgb(101, 101, 101)'\n }\n },\n errorBars: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n horizontalWaterfall: {\n line: {\n color: 'rgba(0, 0, 0, 0.08)'\n }\n },\n icon: {\n border: {\n color: 'rgba(0, 0, 0, 0.08)'\n }\n },\n labels: {\n background: 'rgb(255, 255, 255)',\n color: 'rgb(101, 101, 101)',\n opacity: 0.8,\n font: '12px serif'\n },\n notes: {\n icon: {\n background: 'rgba(0, 0, 0, 0.5)',\n border: {\n color: 'rgba(0, 0, 0, 0.5)'\n }\n },\n line: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n label: {\n font: '14px serif'\n }\n },\n overlay: {\n gradient: \"none\"\n },\n verticalBoxPlot: {\n downColor: 'rgba(0, 0, 0, 0.08)',\n mean: {\n color: 'rgb(246, 246, 246)'\n },\n median: {\n color: 'rgb(246, 246, 246)'\n },\n whiskers: {\n color: 'rgb(255, 99, 88)'\n }\n },\n verticalBullet: {\n target: {\n color: 'rgb(101, 101, 101)'\n }\n },\n waterfall: {\n line: {\n color: 'rgba(0, 0, 0, 0.08)'\n }\n },\n area: {\n opacity: 0.8\n }\n },\n title: {\n color: 'rgb(101, 101, 101)',\n font: '16px serif'\n },\n seriesColors: [\n 'rgb(255, 99, 88)',\n 'rgb(255, 210, 70)',\n 'rgb(120, 210, 55)',\n 'rgb(40, 180, 200)',\n 'rgb(45, 115, 245)',\n 'rgb(170, 70, 190)'\n ]\n});\n\nconst font = (style) => `${style.fontWeight} ${style.fontSize} ${style.fontFamily}`;\nconst computedBackgroundColor = (element) => window.getComputedStyle(element).backgroundColor;\nconst letterPos = (letter) => letter.toLowerCase().charCodeAt(0) - 'a'.charCodeAt(0);\nconst seriesPos = (name) => {\n const alpha = name.match(/series-([a-z])$/);\n if (alpha !== null) {\n return letterPos(alpha[1]);\n }\n const num = name.split('--series-')[1];\n return parseInt(num, 10) - 1;\n};\nconst SERIES_COLORS = 30;\nconst seriesTemplate = () => {\n let template = `\n
\n
\n
\n
\n
\n
\n `;\n for (let i = 0; i < SERIES_COLORS; i++) {\n template += `\n
`;\n }\n return template;\n};\nconst template = () => `\n
\n
\n
\n
\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n
\n ${seriesTemplate()}\n
\n`;\n/**\n * @hidden\n */\nclass ThemeService extends ConfigurationService {\n constructor(ngZone) {\n super(ngZone);\n this.loaded = false;\n }\n loadTheme() {\n if (this.loaded || !isDocumentAvailable()) {\n return;\n }\n if (!this.readTheme()) {\n this.readDefaultTheme();\n }\n this.loaded = true;\n this.next();\n }\n reset() {\n this.store = {};\n this.loaded = false;\n this.loadTheme();\n }\n readTheme() {\n this.createElement();\n const available = this.queryColor('primary') !==\n this.queryColor('primary-contrast');\n try {\n if (available) {\n this.push(chartBaseTheme());\n this.setColors();\n this.setFonts();\n this.setSeriesColors();\n }\n }\n finally {\n this.destroyElement();\n }\n return available;\n }\n readDefaultTheme() {\n this.push(chartDefaultTheme());\n }\n createElement() {\n const container = this.element = document.createElement('div');\n container.style.display = 'none';\n container.innerHTML = template();\n document.body.appendChild(container);\n }\n destroyElement() {\n if (this.element) {\n document.body.removeChild(this.element);\n this.element = undefined;\n }\n }\n setStyle(key, value) {\n this.set(key, value);\n }\n setColors() {\n this.mapColor('axisDefaults.crosshair.color', 'chart-crosshair-background');\n this.mapColor('axisDefaults.labels.color', 'normal-text-color');\n this.mapColor('axisDefaults.line.color', 'chart-major-lines');\n this.mapColor('axisDefaults.majorGridLines.color', 'chart-major-lines');\n this.mapColor('axisDefaults.minorGridLines.color', 'chart-minor-lines');\n this.mapColor('axisDefaults.notes.icon.background', 'chart-notes-background');\n this.mapColor('axisDefaults.notes.icon.border.color', 'chart-notes-border');\n this.mapColor('axisDefaults.notes.line.color', 'chart-notes-lines');\n this.mapColor('axisDefaults.title.color', 'normal-text-color');\n this.mapColor('chartArea.background', 'background');\n this.mapColor('legend.inactiveItems.labels.color', 'chart-inactive');\n this.mapColor('legend.inactiveItems.markers.color', 'chart-inactive');\n this.mapColor('legend.labels.color', 'normal-text-color');\n this.mapColor('legend.title.color', 'normal-text-color');\n this.mapColor('seriesDefaults.boxPlot.downColor', 'chart-major-lines');\n this.mapColor('seriesDefaults.boxPlot.mean.color', 'base');\n this.mapColor('seriesDefaults.boxPlot.median.color', 'base');\n this.mapColor('seriesDefaults.boxPlot.whiskers.color', 'primary');\n this.mapColor('seriesDefaults.bullet.target.color', 'normal-text-color');\n this.mapColor('seriesDefaults.candlestick.downColor', 'normal-text-color');\n this.mapColor('seriesDefaults.candlestick.line.color', 'normal-text-color');\n this.mapColor('seriesDefaults.errorBars.color', 'chart-error-bars-background');\n this.mapColor('seriesDefaults.horizontalWaterfall.line.color', 'chart-major-lines');\n this.mapColor('seriesDefaults.icon.border.color', 'chart-major-lines');\n this.mapColor('seriesDefaults.labels.background', 'background');\n this.mapColor('seriesDefaults.labels.color', 'normal-text-color');\n this.mapColor('seriesDefaults.notes.icon.background', 'chart-notes-background');\n this.mapColor('seriesDefaults.notes.icon.border.color', 'chart-notes-border');\n this.mapColor('seriesDefaults.notes.line.color', 'chart-notes-lines');\n this.mapColor('seriesDefaults.verticalBoxPlot.downColor', 'chart-major-lines');\n this.mapColor('seriesDefaults.verticalBoxPlot.mean.color', 'base');\n this.mapColor('seriesDefaults.verticalBoxPlot.median.color', 'base');\n this.mapColor('seriesDefaults.verticalBoxPlot.whiskers.color', 'primary');\n this.mapColor('seriesDefaults.verticalBullet.target.color', 'normal-text-color');\n this.mapColor('seriesDefaults.waterfall.line.color', 'chart-major-lines');\n this.mapColor('title.color', 'normal-text-color');\n this.mapColor('subtitle.color', 'normal-text-color');\n // Sankey diagram\n this.mapColor('labels.color', 'normal-text-color');\n this.mapColor('labels.stroke.color', 'background');\n // 'k-var--kendo-color-subtle' class does not contain the --kendo-color-subtle variable style\n const element = this.element.querySelector('.k-var--kendo-color-subtle');\n element.style.color = 'var(--kendo-color-subtle)';\n this.mapColor('links.color', 'kendo-color-subtle', 'color');\n const opacity = parseFloat(this.queryStyle('chart-area-opacity').opacity);\n if (!isNaN(opacity)) {\n this.setStyle('seriesDefaults.area.opacity', opacity);\n this.setStyle('seriesDefaults.radarArea.opacity', opacity);\n this.setStyle('seriesDefaults.verticalArea.opacity', opacity);\n this.setStyle('seriesDefaults.labels.opacity', opacity);\n }\n this.setInactiveOpacity(['area', 'verticalArea'], 'chart-area-inactive-opacity');\n this.setInactiveOpacity(['line', 'verticalLine'], 'chart-line-inactive-opacity');\n }\n setInactiveOpacity(seriesTypes, selector) {\n const inactiveOpacity = parseFloat(this.queryStyle(selector).opacity);\n if (!isNaN(inactiveOpacity) && inactiveOpacity < 1) {\n seriesTypes.forEach(type => this.setStyle(`seriesDefaults.${type}.highlight.inactiveOpacity`, inactiveOpacity));\n }\n }\n setFonts() {\n const defaultFont = font(this.queryStyle('chart-font'));\n const titleFont = font(this.queryStyle('chart-title-font'));\n const paneTitleFont = font(this.queryStyle('chart-pane-title-font'));\n const labelFont = font(this.queryStyle('chart-label-font'));\n this.setStyle('axisDefaults.labels.font', labelFont);\n this.setStyle('axisDefaults.notes.label.font', defaultFont);\n this.setStyle('axisDefaults.title.font', defaultFont);\n this.setStyle('legend.labels.font', defaultFont);\n this.setStyle('seriesDefaults.labels.font', labelFont);\n this.setStyle('seriesDefaults.notes.label.font', defaultFont);\n this.setStyle('title.font', titleFont);\n this.setStyle('subtitle.font', paneTitleFont);\n this.setStyle('paneDefaults.title.font', paneTitleFont);\n // Sankey diagram\n this.setStyle('labels.font', defaultFont);\n }\n setSeriesColors() {\n const element = this.element;\n const series = [].slice.call(element.querySelectorAll('.k-var--series div'));\n const unsetColor = computedBackgroundColor(element.querySelector('.k-var--series-unset'));\n const seriesColors = series.reduce((arr, el) => {\n const pos = seriesPos(el.className);\n const color = computedBackgroundColor(el);\n if (color !== unsetColor) {\n arr[pos] = color;\n }\n return arr;\n }, [] // Will populate the series colors in this array\n );\n this.setStyle('seriesColors', seriesColors);\n }\n mapColor(key, varName, styleKey = 'backgroundColor') {\n this.setStyle(key, this.queryStyle(varName)[styleKey]);\n }\n queryColor(varName) {\n return this.queryStyle(varName).backgroundColor;\n }\n queryStyle(varName) {\n const element = this.element.querySelector(`.k-var--${varName}`);\n return window.getComputedStyle(element);\n }\n}\nThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ThemeService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });\nThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ThemeService, providedIn: 'root' });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ThemeService, decorators: [{\n type: Injectable,\n args: [{\n providedIn: 'root'\n }]\n }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });\n\n/**\n * @hidden\n */\nclass BaseEvent {\n /**\n * @hidden\n */\n constructor(sender) {\n this.sender = sender;\n }\n}\nBaseEvent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseEvent, deps: \"invalid\", target: i0.ɵɵFactoryTarget.Directive });\nBaseEvent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: BaseEvent, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseEvent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: undefined }]; } });\n\n/**\n * Arguments for the `axisLabelClick` event([see example](slug:events_chart)).\n */\nclass AxisLabelClickEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.dataItem = e.dataItem;\n this.index = e.index;\n this.text = e.text;\n this.value = e.value;\n }\n}\n\n/**\n * @hidden\n */\nclass PreventableEvent extends BaseEvent {\n constructor() {\n super(...arguments);\n this.prevented = false;\n }\n /**\n * Prevents the default action for a specified event.\n * In this way, the source component suppresses\n * the built-in behavior that follows the event.\n */\n preventDefault() {\n this.prevented = true;\n }\n /**\n * Returns `true` if the event was prevented\n * by any of its subscribers.\n *\n * @returns `true` if the default action was prevented.\n * Otherwise, returns `false`.\n */\n isDefaultPrevented() {\n return this.prevented;\n }\n}\nPreventableEvent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PreventableEvent, deps: null, target: i0.ɵɵFactoryTarget.Directive });\nPreventableEvent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PreventableEvent, usesInheritance: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PreventableEvent, decorators: [{\n type: Directive\n }] });\n\n/**\n * Arguments for the `drag` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass DragEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `dragEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass DragEndEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `dragStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass DragStartEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * @hidden\n */\nclass LegendEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.series = e.series;\n this.seriesIndex = e.seriesIndex;\n this.pointIndex = e.pointIndex;\n this.text = e.text;\n }\n}\n\n/**\n * Arguments for the `legendItemHover` event([see example](slug:events_chart)).\n */\nclass LegendItemHoverEvent extends LegendEvent {\n /**\n * If called, the series highlight is not shown as a result of hovering over the legend item.\n */\n preventDefault() {\n super.preventDefault();\n }\n}\n\n/* eslint-disable no-empty */\n/**\n * Arguments for the `legendItemLeave` event.\n */\nclass LegendItemLeaveEvent extends LegendEvent {\n /**\n * @hidden\n */\n preventDefault() {\n /* noop */\n }\n /**\n * @hidden\n */\n isDefaultPrevented() {\n return false;\n }\n}\n\n/**\n * @hidden\n */\nclass NoteEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.dataItem = e.dataItem;\n this.series = e.series;\n this.value = e.value;\n this.visual = e.visual;\n }\n}\n\n/**\n * Arguments for the `noteClick` event.\n */\nclass NoteClickEvent extends NoteEvent {\n}\n\n/**\n * Arguments for the `noteHover` event.\n */\nclass NoteHoverEvent extends NoteEvent {\n}\n\n/**\n * Arguments for the `noteLeave` event.\n */\nclass NoteLeaveEvent extends NoteEvent {\n}\n\n/**\n * Arguments for the `paneRender` event.\n */\nclass PaneRenderEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(args, sender) {\n super(sender);\n Object.assign(this, args);\n }\n}\n\n/**\n * Arguments for the `plotAreaClick` event([see example](slug:events_chart)).\n */\nclass PlotAreaClickEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.originalEvent = e.originalEvent;\n this.value = e.value;\n this.x = e.x;\n this.y = e.y;\n }\n}\n\n/**\n * Arguments for the `plotAreaHover` event([see example](slug:events_chart)).\n */\nclass PlotAreaHoverEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.originalEvent = e.originalEvent;\n this.value = e.value;\n this.x = e.x;\n this.y = e.y;\n }\n}\n\nclass PlotAreaLeaveEvent extends BaseEvent {\n}\n\n/**\n * Arguments for the `render` event([see example](slug:events_chart)).\n */\nclass RenderEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(_e, sender) {\n super(sender);\n }\n}\n\n/**\n * Arguments for the `select` event.\n */\nclass SelectEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n/**\n * Arguments for the `selectEnd` event.\n */\nclass SelectEndEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n/**\n * Arguments for the `selectStart` event.\n */\nclass SelectStartEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n/**\n * Arguments for the `seriesClick` event([see example](slug:events_chart)).\n */\nclass SeriesClickEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.dataItem = e.dataItem;\n this.originalEvent = e.originalEvent;\n this.percentage = e.percentage;\n this.point = e.point;\n this.series = e.series;\n this.stackValue = e.stackValue;\n this.value = e.value;\n }\n}\n\n/**\n * @hidden\n */\nclass SeriesEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.dataItem = e.dataItem;\n this.originalEvent = e.originalEvent;\n this.percentage = e.percentage;\n this.point = e.point;\n this.series = e.series;\n this.stackValue = e.stackValue;\n this.value = e.value;\n }\n}\n\n/**\n * Arguments for the `seriesHover` event([see example](slug:events_chart)).\n */\nclass SeriesHoverEvent extends SeriesEvent {\n}\n\n/**\n * Arguments for the `seriesOver` event.\n */\nclass SeriesOverEvent extends SeriesEvent {\n}\n\n/**\n * Arguments for the `seriesLeave` event.\n */\nclass SeriesLeaveEvent extends SeriesEvent {\n}\n\n/**\n * Arguments for the `zoom` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass ZoomEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.delta = e.delta;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `zoomEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass ZoomEndEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `zoomStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass ZoomStartEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\nconst EVENT_MAP$2 = {\n axisLabelClick: AxisLabelClickEvent,\n drag: DragEvent,\n dragEnd: DragEndEvent,\n dragStart: DragStartEvent,\n legendItemHover: LegendItemHoverEvent,\n legendItemLeave: LegendItemLeaveEvent,\n noteClick: NoteClickEvent,\n noteHover: NoteHoverEvent,\n noteLeave: NoteLeaveEvent,\n paneRender: PaneRenderEvent,\n plotAreaClick: PlotAreaClickEvent,\n plotAreaHover: PlotAreaHoverEvent,\n plotAreaLeave: PlotAreaLeaveEvent,\n render: RenderEvent,\n select: SelectEvent,\n selectEnd: SelectEndEvent,\n selectStart: SelectStartEvent,\n seriesClick: SeriesClickEvent,\n seriesHover: SeriesHoverEvent,\n seriesOver: SeriesOverEvent,\n seriesLeave: SeriesLeaveEvent,\n zoom: ZoomEvent,\n zoomEnd: ZoomEndEvent,\n zoomStart: ZoomStartEvent\n};\n/**\n * @hidden\n */\nlet InstanceEventService$1 = class InstanceEventService {\n create(name, args, sender) {\n if (EVENT_MAP$2[name]) {\n return new EVENT_MAP$2[name](args, sender);\n }\n }\n};\n\n/**\n * Arguments for the `legendItemClick` event([see example](slug:events_chart)).\n */\nclass LegendItemClickEvent extends LegendEvent {\n /**\n * If called, the series visibility is not toggled as a result of clicking the legend item.\n */\n preventDefault() {\n super.preventDefault();\n }\n}\n\n/**\n * @hidden\n */\nconst packageMetadata = {\n name: '@progress/kendo-angular-charts',\n productName: 'Kendo UI for Angular',\n productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],\n publishDate: 1728372467,\n version: '16.11.0',\n licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'\n};\n\n/**\n * @hidden\n */\nclass CollectionComponent {\n constructor(configKey, configurationService, collectionService) {\n this.configKey = configKey;\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.items = [];\n this.subscription = collectionService.onItemChange$.subscribe(changes => this.processChanges(changes));\n }\n ngOnDestroy() {\n this.subscription.unsubscribe();\n }\n ngAfterContentInit() {\n this.readItems();\n this.children.changes.subscribe(() => this.readItems());\n }\n processChanges(changes) {\n if (!this.children) {\n return;\n }\n const index = this.children.toArray().filter(s => !s.hidden).indexOf(changes.sender);\n if (index < 0) {\n return;\n }\n this.items[index] = changes.options;\n this.change();\n }\n readItems() {\n this.items = this.children.filter(s => !s.hidden).map(s => s.options);\n this.change();\n }\n change() {\n this.configurationService.notify(new Change(this.configKey, this.items.length === 0 ? undefined : this.items));\n }\n}\nCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionComponent, deps: \"invalid\", target: i0.ɵɵFactoryTarget.Directive });\nCollectionComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CollectionComponent, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionComponent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }, { type: CollectionService }]; } });\n\n/**\n * A collection of one or more series items. [See example](slug:series_chart_charts).\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesComponent extends CollectionComponent {\n constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {\n super('series', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.tooltipTemplateService = tooltipTemplateService;\n this.viewContainer = viewContainer;\n }\n ngAfterContentChecked() {\n this.readTooltipTemplates();\n }\n readTooltipTemplates() {\n const templates = this.children.map((item) => item.seriesTooltipTemplateRef);\n this.tooltipTemplateService.setSeriesTemplates(templates);\n }\n}\nSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });\nSeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesComponent, isStandalone: true, selector: \"kendo-chart-series\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: SeriesItemComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-series',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [SeriesItemComponent, { descendants: true }]\n }] } });\n\n/**\n * Arguments for the `drilldown` event.\n *\n * See [Drilldown Charts](slug:drilldown_chart_charts).\n */\nclass DrilldownEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.value = e.value;\n this.point = e.point;\n this.series = e.series;\n }\n}\n\n/**\n * @hidden\n */\nfunction hasObservers(emitter) {\n return emitter.observers.length > 0;\n}\n\n/**\n * The root Chart component.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * public legendVisible: boolean = true;\n * public seriesVisible: boolean = true;\n *\n * public toggleSeries(): void {\n * this.seriesVisible = !this.seriesVisible;\n * }\n *\n * public toggleLegend(): void {\n * this.legendVisible = !this.legendVisible;\n * }\n * }\n *\n * ```\n */\nclass ChartComponent {\n constructor(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer) {\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.element = element;\n this.intl = intl;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.instanceEventService = instanceEventService;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n /**\n * Fires when the user clicks an axis label ([see example](slug:events_chart)).\n */\n this.axisLabelClick = new EventEmitter();\n /**\n * Fires as long as the user is dragging the Chart with the mouse or through swipe gestures.\n */\n this.drag = new EventEmitter();\n /**\n * Fires when the user stops dragging the Chart.\n */\n this.dragEnd = new EventEmitter();\n /**\n * Fires when the user starts dragging the Chart.\n */\n this.dragStart = new EventEmitter();\n /**\n * Fires when the user hovers over a legend item ([see example](slug:events_chart)).\n */\n this.legendItemHover = new EventEmitter();\n /**\n * Fires when the cursor leaves a legend item.\n */\n this.legendItemLeave = new EventEmitter();\n /**\n * Fires when the user clicks a note.\n */\n this.noteClick = new EventEmitter();\n /**\n * Fires when the user hovers over a note.\n */\n this.noteHover = new EventEmitter();\n /**\n * Fires when the cursor leaves a note.\n */\n this.noteLeave = new EventEmitter();\n /**\n * Fires when a pane is rendered because the Chart is rendered, performs panning or zooming, or is exported with different options.\n * The event is used to render custom visuals in the panes.\n */\n this.paneRender = new EventEmitter();\n /**\n * Fires when the user clicks the plot area ([see example](slug:events_chart)).\n * The `click` event is triggered by the `tap` and `contextmenu` events.\n * To distinguish between the original events, inspect the `e.originalEvent.type` field.\n */\n this.plotAreaClick = new EventEmitter();\n /**\n * Fires when the user hovers the plot area ([see example](slug:events_chart)).\n */\n this.plotAreaHover = new EventEmitter();\n /**\n * Fires when the cursor leaves the plot area.\n */\n this.plotAreaLeave = new EventEmitter();\n /**\n * Fires when the Chart is ready to render on screen ([see example](slug:events_chart)).\n * For example, you can use it to remove loading indicators.\n * Any changes made to the options are ignored.\n */\n this.render = new EventEmitter();\n /**\n * Fires when the user modifies the selection.\n *\n * The range units include a generic axis category index (0-based) and a date axis represented by a date instance.\n */\n this.select = new EventEmitter();\n /**\n * Fires when the user completes the modification of the selection.\n *\n * The range units include a generic axis category index (0-based) and a date axis represented by a date instance.\n */\n this.selectEnd = new EventEmitter();\n /**\n * Fires when the user starts modifying the axis selection.\n *\n * The range units include a generic axis category index (0-based) and a date axis represented by a date instance.\n */\n this.selectStart = new EventEmitter();\n /**\n * Fires when the user clicks the Chart series.\n *\n * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_chart)).\n * To distinguish between the original events, inspect the `e.originalEvent.type` field.\n */\n this.seriesClick = new EventEmitter();\n /**\n * Fires when the user when the user wants to drill down on a specific point.\n */\n this.drilldown = new EventEmitter();\n /**\n * Fires when the user hovers the Chart series ([see example](slug:events_chart)).\n */\n this.seriesHover = new EventEmitter();\n /**\n * Fires when the cursor enters a series.\n */\n this.seriesOver = new EventEmitter();\n /**\n * Fires when the cursor leaves a series.\n */\n this.seriesLeave = new EventEmitter();\n /**\n * Fires as long as the user is zooming the Chart by using the mousewheel operation.\n */\n this.zoom = new EventEmitter();\n /**\n * Fires when the user stops zooming the Chart.\n */\n this.zoomEnd = new EventEmitter();\n /**\n * Fires when the user uses the mousewheel to zoom the Chart.\n */\n this.zoomStart = new EventEmitter();\n /**\n * Fires when a legend item is clicked before the selected series visibility is toggled.\n * Can be prevented.\n */\n this.legendItemClick = new EventEmitter();\n /**\n * Fires when the drill-down level has changed.\n */\n this.drilldownLevelChange = new EventEmitter();\n /**\n * Limits the automatic resizing of the Chart. Sets the maximum number of times per second\n * that the component redraws its content when the size of its container changes.\n * Defaults to `10`. To disable the automatic resizing, set it to `0`.\n *\n * @default 10\n */\n this.resizeRateLimit = 10;\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.theme = null;\n this.suppressTransitions = false;\n this.rtl = false;\n this.hostClasses = ['k-chart', 'k-widget'];\n this.drilldownState = [];\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n this.themeService.loadTheme();\n this.refreshWait();\n }\n /**\n * Gets or sets the current drill-down level for [Drilldown Charts](slug:drilldown_chart_charts).\n *\n * To return to a previous level, set the value to a number less than the current level.\n * To return to the root chart, set the value to 0.\n *\n * Setting the value to a number greater than the current level will have no effect.\n */\n get drilldownLevel() {\n return this.drilldownState.length;\n }\n set drilldownLevel(level) {\n const currentLevel = this.drilldownState.length;\n if (currentLevel <= level || !this.seriesComponents) {\n return;\n }\n const removed = this.drilldownState.slice(level);\n removed.forEach(view => view.destroy());\n this.drilldownState = this.drilldownState.slice(0, currentLevel - removed.length);\n this.seriesComponents.toArray().slice(-removed.length - 1).forEach(series => series.hidden = false);\n this.drilldownLevelChange.emit(level);\n }\n ngOnInit() {\n if (this.element) {\n this.hostClasses.forEach(name => {\n this.renderer.addClass(this.element.nativeElement, name);\n });\n this.renderer.setStyle(this.element.nativeElement, 'position', 'relative');\n }\n }\n ngAfterViewInit() {\n if (this.canRender) {\n this.ngZone.runOutsideAngular(() => {\n const chartMouseleave = this.renderer.listen(this.surfaceElement.nativeElement, 'mouseleave', this.chartMouseleave.bind(this));\n this.domSubscriptions = () => {\n chartMouseleave();\n };\n });\n }\n this.setDirection();\n this.subscriptions = this.intl.changes.subscribe(this.intlChange.bind(this));\n this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)));\n }\n onDrilldown(e) {\n const args = new DrilldownEvent(e, this);\n this.run(() => this.drilldown.emit(args));\n if (args.isDefaultPrevented()) {\n return;\n }\n const seriesCollection = this.seriesCollectionComponent.first;\n const seriesComponent = this.seriesComponents.find((sc) => sc.name === e.series.name);\n if (seriesComponent.drilldownTemplate) {\n seriesComponent.hidden = true;\n const view = seriesCollection.viewContainer.createEmbeddedView(seriesComponent.drilldownTemplate.templateRef, {\n drilldownValue: e.value,\n point: e.point,\n series: e.series\n });\n view.markForCheck();\n this.drilldownState.push(view);\n this.drilldownLevelChange.emit(this.drilldownLevel);\n }\n }\n ngAfterViewChecked() {\n if (this.instance && this.autoResize) {\n this.ngZone.runOutsideAngular(() => {\n clearTimeout(this.resizeTimeout);\n this.resizeTimeout = setTimeout(() => {\n this.resize();\n }, 0);\n });\n }\n }\n ngOnChanges(changes) {\n const store = this.configurationService.store;\n copyChanges(changes, store);\n store.popupSettings = null;\n this.configurationService.push(store);\n }\n /**\n * Updates the component fields with the specified values and refreshes the Chart.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * chart.notifyChanges({ title: { text: 'New Title' } });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n ngOnDestroy() {\n this.destroyed = true;\n if (this.optionsChange) {\n this.optionsChange.unsubscribe();\n }\n if (this.domSubscriptions) {\n this.domSubscriptions();\n this.domSubscriptions = null;\n }\n if (this.instance) {\n this.instance.destroy();\n this.instance = null;\n }\n if (this.subscriptions) {\n this.subscriptions.unsubscribe();\n }\n clearTimeout(this.resizeTimeout);\n clearTimeout(this.redrawTimeout);\n }\n createInstance(element, observer) {\n this.instance = new Chart(element, this.options, this.theme, {\n intlService: this.intl,\n observer: observer,\n rtl: this.rtl,\n sender: this\n });\n }\n /**\n * Exports the Chart as an image. The export operation is asynchronous and returns a promise.\n *\n * @param {ImageExportOptions} options - The parameters for the exported image.\n * @returns {Promise} - A promise that will be resolved with a PNG image encoded as a Data URI.\n */\n exportImage(options = {}) {\n return exportImage(this.exportVisual(options), options);\n }\n /**\n * Exports the Chart as an SVG document. The export operation is asynchronous and returns a promise.\n *\n * @param options - The parameters for the exported file.\n * @returns - A promise that will be resolved with an SVG document that is encoded as a Data URI.\n */\n exportSVG(options = {}) {\n return exportSVG(this.exportVisual(options), options);\n }\n /**\n * Exports the Chart as a Drawing `Scene`.\n *\n * @param options - The parameters for the export operation.\n * @returns - The root Group of the scene.\n */\n exportVisual(options = {}) {\n return this.instance.exportVisual(options);\n }\n /**\n * Returns the axis with the specified name.\n *\n * @param {string} name - The axis name.\n * @returns {ChartAxis} - The axis with a corresponding name.\n */\n findAxisByName(name) {\n if (this.instance) {\n return this.instance.findAxisByName(name);\n }\n }\n /**\n * Returns the pane at the specified index.\n *\n * @param {number} index - The pane index.\n * @returns {ChartPane} - The pane at the specified index.\n */\n findPaneByIndex(index) {\n if (this.instance) {\n return this.instance.findPaneByIndex(index);\n }\n }\n /**\n * Returns the pane with the specified name.\n *\n * @param {string} name - The name of the pane.\n * @returns {ChartPane} - The pane with the provided name.\n */\n findPaneByName(name) {\n if (this.instance) {\n return this.instance.findPaneByName(name);\n }\n }\n /**\n * Returns the plot area of the Chart.\n * @returns {ChartPlotArea} - The plot area of the Chart.\n */\n getPlotArea() {\n if (this.instance) {\n return this.instance.plotArea();\n }\n }\n /**\n * Highlights the series points or the segments of a Pie, Donut, Funnel or Pyramid charts.\n *\n * See [Series Highlight]({% slug serieshighlight_chart_charts %}) for more details (with an [example](slug:serieshighlight_chart_charts#toc-toggling-the-highlight-with-code)).\n * @param show - A Boolean value that indicates whether the highlight is shown or hidden.\n * @param filter - A string that represents the series or category name, an object with the series and category name, or a function which will be called for each point. The function should return `true` for the points for which the highlight is toggled.\n */\n toggleHighlight(show, filter) {\n if (this.instance) {\n this.instance.toggleHighlight(show, filter);\n }\n }\n /**\n * Hides the tooltip of the Chart.\n */\n hideTooltip() {\n if (this.instance) {\n this.instance.hideTooltip();\n }\n }\n /**\n * Shows the Chart tooltip of a specific point or the shared tooltip of a specific category.\n *\n * @param filter - The category for a shared tooltip or a function which will be called for each point until the function returns `true`.\n */\n showTooltip(filter) {\n if (this.instance) {\n this.instance.showTooltip(filter);\n }\n }\n init() {\n if (!this.canRender) {\n return;\n }\n const element = this.surfaceElement.nativeElement;\n const instanceObserver = new ChartInstanceObserver(this);\n this.createInstance(element, instanceObserver);\n }\n /**\n * Detects the size of the container and redraws the Chart.\n * Resizing is automatic unless you set the `resizeRateLimit` option to `0`.\n */\n resize() {\n if (this.instance) {\n this.instance.resize();\n }\n }\n /**\n * @hidden\n */\n onResize() {\n if (this.autoResize) {\n this.resize();\n }\n }\n /**\n * Reloads the Chart appearance settings from the current [Kendo UI Theme]({% slug themesandstyles %}).\n *\n * Call this method after loading a different theme stylesheet.\n */\n reloadTheme() {\n if (!this.instance) {\n return;\n }\n this.themeService.reset();\n this.instance.destroy();\n this.instance = null;\n }\n onLegendItemClick(e) {\n this.run(() => {\n const args = new LegendItemClickEvent(e, this);\n this.legendItemClick.emit(args);\n if (!args.isDefaultPrevented()) {\n const series = this.seriesComponents.toArray()[e.series.index];\n if (!series) {\n return;\n }\n if (e.pointIndex !== undefined) {\n series.togglePointVisibility(e.pointIndex);\n }\n else {\n series.toggleVisibility();\n }\n this.suppressTransitions = true;\n }\n }, hasObservers(this.legendItemClick), this.seriesComponents.length > 0);\n }\n onInit(e) {\n this.instance = e.sender;\n }\n onRender(e) {\n const donutCenterStyle = this.getDonutCenterStyle();\n this.run(() => {\n const args = new RenderEvent(e, this);\n this.surface = e.sender.surface;\n this.render.emit(args);\n this.donutCenterStyle = donutCenterStyle;\n }, hasObservers(this.render), this.donutCenterStyle !== donutCenterStyle);\n }\n onShowTooltip(e) {\n this.run(() => {\n if (!e.crosshair) {\n this.tooltipInstance.show(e);\n }\n else {\n this.crossahirTooltips.show(e);\n }\n }, !e.crosshair, true);\n }\n onHideTooltip(e) {\n if (!e.crosshair) {\n if (this.tooltipInstance.active) {\n this.tooltipInstance.hide();\n this.detectChanges();\n }\n }\n else if (this.crossahirTooltips.active) {\n this.crossahirTooltips.hide();\n this.detectChanges();\n }\n }\n trigger(name, e) {\n if (name === 'resize') {\n return;\n }\n if (name === 'drilldown') {\n this.onDrilldown(e);\n return;\n }\n const emitter = this.activeEmitter(name);\n if (emitter) {\n const args = this.instanceEventService.create(name, e, this);\n this.run(() => {\n emitter.emit(args);\n });\n return args.isDefaultPrevented && args.isDefaultPrevented();\n }\n }\n requiresHandlers(names) {\n for (let idx = 0; idx < names.length; idx++) {\n if (this.activeEmitter(names[idx])) {\n return true;\n }\n }\n return false;\n }\n refresh() {\n clearTimeout(this.redrawTimeout);\n this.updateDirection();\n this.crossahirTooltips.createCrosshairTooltips(this.options);\n this.setChartAreaSize();\n if (!this.instance) {\n this.init();\n return;\n }\n const transitions = this.options.transitions;\n if (this.suppressTransitions) {\n this.options.transitions = false;\n }\n this.updateOptions();\n if (this.suppressTransitions) {\n this.options.transitions = transitions;\n this.suppressTransitions = false;\n }\n }\n setChartAreaSize() {\n if (!this.element) {\n return;\n }\n const element = this.element.nativeElement;\n const chartArea = this.options.chartArea || {};\n if (chartArea.width) {\n element.style.width = `${chartArea.width}px`;\n }\n if (chartArea.height) {\n element.style.height = `${chartArea.height}px`;\n }\n }\n updateOptions() {\n this.instance.setOptions(this.options);\n }\n /**\n * @hidden\n */\n tooltipMouseleave(e) {\n const relatedTarget = e.relatedTarget;\n const chartElement = this.element.nativeElement;\n if (this.instance && (!relatedTarget || !hasParent(relatedTarget, chartElement))) {\n this.instance.hideElements();\n }\n }\n /**\n * @hidden\n */\n chartMouseleave(e) {\n const relatedTarget = e.relatedTarget;\n const chartElement = this.element.nativeElement;\n if (this.instance && (!relatedTarget || !(this.tooltipInstance.containsElement(relatedTarget) || hasParent(relatedTarget, chartElement))) &&\n !this.instance.handlingTap) {\n this.instance.hideElements();\n }\n }\n get canRender() {\n return isDocumentAvailable() && Boolean(this.surfaceElement);\n }\n get autoResize() {\n return this.resizeRateLimit > 0;\n }\n activeEmitter(name) {\n const emitter = this[name];\n if (emitter && emitter.emit && hasObservers(emitter)) {\n return emitter;\n }\n }\n getDonutCenterStyle() {\n if (!this.instance || !this.options || !this.options.series) {\n return;\n }\n const firstSeries = this.options.series[0];\n const charts = this.instance._plotArea.charts;\n if (!firstSeries || firstSeries.type !== 'donut' || !charts || charts[0].points.length === 0) {\n return;\n }\n const firstPoint = charts[0].points[0];\n const center = firstPoint.box.center();\n const radius = firstPoint.sector.innerRadius;\n const top = center.y - radius;\n const left = center.x - radius;\n const size = radius * 2;\n return {\n height: size + 'px',\n left: left + 'px',\n top: top + 'px',\n width: size + 'px'\n };\n }\n refreshWait() {\n this.ngZone.runOutsideAngular(() => {\n this.optionsChange = combineLatest(this.configurationService.onChange$, this.themeService.onChange$).pipe(tap((result) => {\n this.options = result[0];\n this.theme = result[1];\n }), auditTime(THROTTLE_MS))\n .subscribe(() => {\n this.refresh();\n });\n });\n }\n run(callback, inZone = true, detectChanges) {\n if (inZone) {\n if (detectChanges) {\n this.changeDetector.markForCheck();\n }\n this.ngZone.run(callback);\n }\n else {\n callback();\n if (detectChanges) {\n this.detectChanges();\n }\n }\n }\n detectChanges() {\n if (!this.destroyed) {\n this.changeDetector.detectChanges();\n }\n }\n intlChange() {\n if (this.instance) {\n this.deferredRedraw();\n }\n }\n rtlChange() {\n if (this.instance && this.rtl !== this.isRTL) {\n this.deferredRedraw();\n }\n }\n deferredRedraw() {\n this.ngZone.runOutsideAngular(() => {\n clearTimeout(this.redrawTimeout);\n this.redrawTimeout = setTimeout(() => {\n this.updateDirection();\n this.instance.noTransitionsRedraw();\n }, 0);\n });\n }\n updateDirection() {\n const current = this.isRTL;\n if (this.rtl !== current) {\n this.setDirection();\n if (this.instance) {\n this.instance.setDirection(current);\n }\n }\n }\n setDirection() {\n this.rtl = this.isRTL;\n if (this.element) {\n this.renderer.setAttribute(this.element.nativeElement, 'dir', this.rtl ? 'rtl' : 'ltr');\n }\n }\n get isRTL() {\n return Boolean(this.localizationService.rtl);\n }\n}\nChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: InstanceEventService$1 }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ChartComponent, isStandalone: true, selector: \"kendo-chart\", inputs: { pannable: \"pannable\", renderAs: \"renderAs\", seriesColors: \"seriesColors\", subtitle: \"subtitle\", title: \"title\", transitions: \"transitions\", zoomable: \"zoomable\", axisDefaults: \"axisDefaults\", categoryAxis: \"categoryAxis\", chartArea: \"chartArea\", legend: \"legend\", panes: \"panes\", paneDefaults: \"paneDefaults\", plotArea: \"plotArea\", series: \"series\", seriesDefaults: \"seriesDefaults\", tooltip: \"tooltip\", valueAxis: \"valueAxis\", xAxis: \"xAxis\", yAxis: \"yAxis\", resizeRateLimit: \"resizeRateLimit\", popupSettings: \"popupSettings\", drilldownLevel: \"drilldownLevel\" }, outputs: { axisLabelClick: \"axisLabelClick\", drag: \"drag\", dragEnd: \"dragEnd\", dragStart: \"dragStart\", legendItemHover: \"legendItemHover\", legendItemLeave: \"legendItemLeave\", noteClick: \"noteClick\", noteHover: \"noteHover\", noteLeave: \"noteLeave\", paneRender: \"paneRender\", plotAreaClick: \"plotAreaClick\", plotAreaHover: \"plotAreaHover\", plotAreaLeave: \"plotAreaLeave\", render: \"render\", select: \"select\", selectEnd: \"selectEnd\", selectStart: \"selectStart\", seriesClick: \"seriesClick\", drilldown: \"drilldown\", seriesHover: \"seriesHover\", seriesOver: \"seriesOver\", seriesLeave: \"seriesLeave\", zoom: \"zoom\", zoomEnd: \"zoomEnd\", zoomStart: \"zoomStart\", legendItemClick: \"legendItemClick\", drilldownLevelChange: \"drilldownLevelChange\" }, providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ], queries: [{ propertyName: \"donutCenterTemplate\", first: true, predicate: DonutCenterTemplateDirective, descendants: true }, { propertyName: \"seriesCollectionComponent\", predicate: SeriesComponent }, { propertyName: \"seriesComponents\", predicate: SeriesItemComponent, descendants: true }], viewQueries: [{ propertyName: \"tooltipInstance\", first: true, predicate: TooltipPopupComponent, descendants: true, static: true }, { propertyName: \"crossahirTooltips\", first: true, predicate: CrosshairTooltipsContainerComponent, descendants: true, static: true }, { propertyName: \"surfaceElement\", first: true, predicate: [\"surface\"], descendants: true, static: true }], exportAs: [\"kendoChart\"], usesOnChanges: true, ngImport: i0, template: `\n
\n \n \n \n \n \n
\n \n
\n\n
\n `, isInline: true, dependencies: [{ kind: \"component\", type: CrosshairTooltipsContainerComponent, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: [\"popupSettings\"] }, { kind: \"component\", type: TooltipPopupComponent, selector: \"kendo-chart-tooltip-popup\", inputs: [\"animate\", \"classNames\", \"popupSettings\", \"wrapperClass\"], outputs: [\"leave\"] }, { kind: \"component\", type: ResizeSensorComponent, selector: \"kendo-resize-sensor\", inputs: [\"rateLimit\"], outputs: [\"resize\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }, { kind: \"directive\", type: NgTemplateOutlet, selector: \"[ngTemplateOutlet]\", inputs: [\"ngTemplateOutletContext\", \"ngTemplateOutlet\", \"ngTemplateOutletInjector\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoChart',\n providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ],\n selector: 'kendo-chart',\n template: `\n
\n \n \n \n \n \n
\n \n
\n\n
\n `,\n standalone: true,\n imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, NgStyle, NgTemplateOutlet, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: ThemeService }, { type: i0.ElementRef }, { type: i3.IntlService }, { type: i4.LocalizationService }, { type: i0.NgZone }, { type: InstanceEventService$1 }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { pannable: [{\n type: Input\n }], renderAs: [{\n type: Input\n }], seriesColors: [{\n type: Input\n }], subtitle: [{\n type: Input\n }], title: [{\n type: Input\n }], transitions: [{\n type: Input\n }], zoomable: [{\n type: Input\n }], axisDefaults: [{\n type: Input\n }], categoryAxis: [{\n type: Input\n }], chartArea: [{\n type: Input\n }], legend: [{\n type: Input\n }], panes: [{\n type: Input\n }], paneDefaults: [{\n type: Input\n }], plotArea: [{\n type: Input\n }], series: [{\n type: Input\n }], seriesDefaults: [{\n type: Input\n }], tooltip: [{\n type: Input\n }], valueAxis: [{\n type: Input\n }], xAxis: [{\n type: Input\n }], yAxis: [{\n type: Input\n }], axisLabelClick: [{\n type: Output\n }], drag: [{\n type: Output\n }], dragEnd: [{\n type: Output\n }], dragStart: [{\n type: Output\n }], legendItemHover: [{\n type: Output\n }], legendItemLeave: [{\n type: Output\n }], noteClick: [{\n type: Output\n }], noteHover: [{\n type: Output\n }], noteLeave: [{\n type: Output\n }], paneRender: [{\n type: Output\n }], plotAreaClick: [{\n type: Output\n }], plotAreaHover: [{\n type: Output\n }], plotAreaLeave: [{\n type: Output\n }], render: [{\n type: Output\n }], select: [{\n type: Output\n }], selectEnd: [{\n type: Output\n }], selectStart: [{\n type: Output\n }], seriesClick: [{\n type: Output\n }], drilldown: [{\n type: Output\n }], seriesHover: [{\n type: Output\n }], seriesOver: [{\n type: Output\n }], seriesLeave: [{\n type: Output\n }], zoom: [{\n type: Output\n }], zoomEnd: [{\n type: Output\n }], zoomStart: [{\n type: Output\n }], legendItemClick: [{\n type: Output\n }], drilldownLevelChange: [{\n type: Output\n }], resizeRateLimit: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], drilldownLevel: [{\n type: Input\n }], seriesCollectionComponent: [{\n type: ContentChildren,\n args: [SeriesComponent]\n }], seriesComponents: [{\n type: ContentChildren,\n args: [SeriesItemComponent, { descendants: true }]\n }], donutCenterTemplate: [{\n type: ContentChild,\n args: [DonutCenterTemplateDirective, { static: false }]\n }], tooltipInstance: [{\n type: ViewChild,\n args: [TooltipPopupComponent, { static: true }]\n }], crossahirTooltips: [{\n type: ViewChild,\n args: [CrosshairTooltipsContainerComponent, { static: true }]\n }], surfaceElement: [{\n type: ViewChild,\n args: ['surface', { static: true }]\n }] } });\n\n/**\n * Specifies the `weekStartDay` of a [CategoryAxisItemComponent]({% slug api_charts_categoryaxisitemcomponent %}).\n */\nvar WeekStartDay;\n(function (WeekStartDay) {\n /**\n * Specifies Sunday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Sunday\"] = 0] = \"Sunday\";\n /**\n * Specifies Monday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Monday\"] = 1] = \"Monday\";\n /**\n * Specifies Tuesday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Tuesday\"] = 2] = \"Tuesday\";\n /**\n * Specifies Wednesday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Wednesday\"] = 3] = \"Wednesday\";\n /**\n * Specifies Thursday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Thursday\"] = 4] = \"Thursday\";\n /**\n * Specifies Friday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Friday\"] = 5] = \"Friday\";\n /**\n * Specifies Saturday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Saturday\"] = 6] = \"Saturday\";\n})(WeekStartDay || (WeekStartDay = {}));\n\n/**\n * The configuration component for an X axis\n * ([see example]({% slug api_charts_xaxiscomponent %})).\n */\nclass XAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService, intl, localeId) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.intl = intl;\n this.notifyChanges({ weekStartDay: intl.firstDay(localeId) });\n }\n}\nXAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: i3.IntlService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });\nXAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisItemComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item\", inputs: { axisCrossingValue: \"axisCrossingValue\", background: \"background\", baseUnit: \"baseUnit\", categories: \"categories\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", majorUnit: \"majorUnit\", max: \"max\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", minorUnit: \"minorUnit\", name: \"name\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", startAngle: \"startAngle\", type: \"type\", visible: \"visible\", weekStartDay: \"weekStartDay\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-x-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: i3.IntlService }, { type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }]; }, propDecorators: { axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], baseUnit: [{\n type: Input\n }], categories: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], majorUnit: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], minorUnit: [{\n type: Input\n }], name: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], weekStartDay: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more X-axis configuration components.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass XAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('xAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nXAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisComponent, isStandalone: true, selector: \"kendo-chart-x-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: XAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-x-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [XAxisItemComponent]\n }] } });\n\n/**\n * The crosshair configuration options\n * ([see example]({% slug api_charts_xaxiscomponent %})).\n */\nclass XAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nXAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-crosshair\", inputs: { color: \"color\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip.\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass XAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nXAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The axis labels configuration.\n */\nclass XAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", culture: \"culture\", dateFormats: \"dateFormats\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], culture: [{\n type: Input\n }], dateFormats: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the X-axis notes.\n * For an example on the basic usage of the XAxisNotesComponent,\n * refer to the [demo on the XAxisComponent]({% slug api_charts_xaxiscomponent %})\n * or to the documentation about the\n * [axis notes]({% slug notes_chart_charts %}#toc-axis-notes).\n */\nclass XAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass XAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass XAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the Scatter Chart X axis.\n */\nclass XAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration component for the Y axis\n * ([see example]({% slug api_charts_yaxiscomponent %})).\n */\nclass YAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nYAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisItemComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item\", inputs: { axisCrossingValue: \"axisCrossingValue\", background: \"background\", baseUnit: \"baseUnit\", categories: \"categories\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", majorUnit: \"majorUnit\", max: \"max\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", minorUnit: \"minorUnit\", name: \"name\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", type: \"type\", visible: \"visible\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-y-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], baseUnit: [{\n type: Input\n }], categories: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], majorUnit: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], minorUnit: [{\n type: Input\n }], name: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more Y-axis configuration components.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass YAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('yAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nYAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisComponent, isStandalone: true, selector: \"kendo-chart-y-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: YAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-y-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [YAxisItemComponent]\n }] } });\n\n/**\n * The crosshair configuration options\n * ([see example]({% slug api_charts_yaxiscomponent %})).\n */\nclass YAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nYAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-crosshair\", inputs: { color: \"color\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip.\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass YAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nYAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The axis labels configuration.\n */\nclass YAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", culture: \"culture\", dateFormats: \"dateFormats\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], culture: [{\n type: Input\n }], dateFormats: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the Y axis notes\n * ([see example]({% slug api_charts_yaxiscomponent %})).\n */\nclass YAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass YAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass YAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the Scatter Chart Y axis.\n */\nclass YAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * Specifies if the Chart can be zoomed.\n * Zooming is not available for the `Donut`, `Pie`, `Funnel`, `Pyramid`, `Polar`, and `Radar` series.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * ```\n */\nclass ZoomableComponent extends SettingsComponent {\n constructor(configurationService) {\n super('zoomable', configurationService);\n this.configurationService = configurationService;\n }\n}\nZoomableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ZoomableComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nZoomableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ZoomableComponent, isStandalone: true, selector: \"kendo-chart-zoomable\", inputs: { mousewheel: \"mousewheel\", selection: \"selection\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ZoomableComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-zoomable',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { mousewheel: [{\n type: Input\n }], selection: [{\n type: Input\n }] } });\n\n// Re-export event types\n\n/**\n * The arguments for the `navigatorFilter` event.\n */\nclass NavigatorFilterEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n// Re-export event types\n\n/**\n * @hidden\n */\nclass RootConfigurationService extends ConfigurationService {\n}\nRootConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: RootConfigurationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });\nRootConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: RootConfigurationService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: RootConfigurationService, decorators: [{\n type: Injectable\n }] });\n\nconst EVENT_MAP$1 = {\n navigatorFilter: NavigatorFilterEvent\n};\n/**\n * @hidden\n */\nclass StockInstanceEventService extends InstanceEventService$1 {\n create(name, args, sender) {\n if (EVENT_MAP$1[name]) {\n return new EVENT_MAP$1[name](args, sender);\n }\n return super.create(name, args, sender);\n }\n}\n\nconst NAVIGATOR_DEFAULTS = {\n autoBindElements: true,\n liveDrag: false,\n partialRedraw: true\n};\n/**\n * The root StockChart component.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass StockChartComponent extends ChartComponent {\n constructor(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer) {\n super(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer);\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.element = element;\n this.intl = intl;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.instanceEventService = instanceEventService;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n /**\n * @hidden\n */\n this.drilldown = new EventEmitter();\n /**\n * @hidden\n */\n this.drilldownLevelChange = new EventEmitter();\n /**\n * Fires when the navigator range is changed.\n */\n this.navigatorFilter = new EventEmitter();\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.redrawSlaves = false;\n this.hostClasses = ['k-chart', 'k-stockchart'];\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n }\n /**\n * @hidden\n */\n get drilldownLevel() {\n return this.drilldownState.length;\n }\n /**\n * If called, the navigator pane is not redrawn the next time the StockChart options are updated.\n * The method is useful if you need to update only the main series data for the selected period.\n */\n skipNavigatorRedraw() {\n this.redrawSlaves = true;\n }\n createInstance(element, observer) {\n this.applyNavigatorDefaults();\n if (this.isDevMode() && (this.options.zoomable || this.options.pannable)) {\n throw new Error('The pannable and zoomable options are not supported by the StockChart component.');\n }\n this.instance = new StockChart(element, this.options, this.theme, {\n intlService: this.intl,\n observer: observer,\n rtl: this.rtl,\n sender: this\n });\n }\n updateOptions() {\n this.applyNavigatorDefaults();\n if (this.redrawSlaves) {\n this.instance.applyOptions(this.options);\n this.instance.bindCategories();\n this.instance.navigator.redrawSlaves();\n }\n else {\n this.instance.setOptions(this.options);\n }\n this.redrawSlaves = false;\n }\n applyNavigatorDefaults() {\n this.options.navigator = Object.assign({}, this.options.navigator, NAVIGATOR_DEFAULTS);\n }\n isDevMode() {\n return isDevMode();\n }\n}\nStockChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: StockInstanceEventService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nStockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: StockChartComponent, isStandalone: true, selector: \"kendo-stockchart\", inputs: { navigator: \"navigator\", pannable: \"pannable\", zoomable: \"zoomable\", drilldownLevel: \"drilldownLevel\" }, outputs: { drilldown: \"drilldown\", drilldownLevelChange: \"drilldownLevelChange\", navigatorFilter: \"navigatorFilter\" }, providers: [\n ConfigurationService,\n TooltipTemplateService,\n { provide: RootConfigurationService, useExisting: ConfigurationService },\n StockInstanceEventService,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ], exportAs: [\"kendoStockChart\"], usesInheritance: true, ngImport: i0, template: `\n
\n \n \n \n \n \n\n
\n `, isInline: true, dependencies: [{ kind: \"component\", type: CrosshairTooltipsContainerComponent, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: [\"popupSettings\"] }, { kind: \"component\", type: TooltipPopupComponent, selector: \"kendo-chart-tooltip-popup\", inputs: [\"animate\", \"classNames\", \"popupSettings\", \"wrapperClass\"], outputs: [\"leave\"] }, { kind: \"component\", type: ResizeSensorComponent, selector: \"kendo-resize-sensor\", inputs: [\"rateLimit\"], outputs: [\"resize\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoStockChart',\n providers: [\n ConfigurationService,\n TooltipTemplateService,\n { provide: RootConfigurationService, useExisting: ConfigurationService },\n StockInstanceEventService,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ],\n selector: 'kendo-stockchart',\n template: `\n
\n \n \n \n \n \n\n
\n `,\n standalone: true,\n imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: ThemeService }, { type: i0.ElementRef }, { type: i3.IntlService }, { type: i4.LocalizationService }, { type: i0.NgZone }, { type: StockInstanceEventService }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { navigator: [{\n type: Input\n }], pannable: [{\n type: Input\n }], zoomable: [{\n type: Input\n }], drilldown: [{\n type: Output\n }], drilldownLevelChange: [{\n type: Output\n }], drilldownLevel: [{\n type: Input\n }], navigatorFilter: [{\n type: Output\n }] } });\n\n/**\n * @hidden\n */\nconst PREFIX = new InjectionToken('configuration prefix');\n/**\n * @hidden\n */\nclass PrefixConfigurationService extends ConfigurationService {\n constructor(rootService, prefix, ngZone) {\n super(ngZone);\n this.rootService = rootService;\n this.prefix = prefix;\n }\n push(store) {\n this.rootService.notify(new Change(this.prefix, store));\n }\n notify(change) {\n change.key = this.prefix + (change.key ? `.${change.key}` : '');\n this.rootService.notify(change);\n }\n}\nPrefixConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PrefixConfigurationService, deps: [{ token: RootConfigurationService }, { token: PREFIX }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });\nPrefixConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PrefixConfigurationService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PrefixConfigurationService, decorators: [{\n type: Injectable\n }], ctorParameters: function () { return [{ type: RootConfigurationService, decorators: [{\n type: Inject,\n args: [RootConfigurationService]\n }] }, { type: undefined, decorators: [{\n type: Inject,\n args: [PREFIX]\n }] }, { type: i0.NgZone }]; } });\n\n/**\n * The configuration options of the navigator\n * ([see runnable example](slug:overview_stockchart_charts)).\n *\n * @example\n * ```ts-no-run\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n *
\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n *

\n * \n * `\n * })\n * ```\n */\nclass NavigatorComponent extends SettingsComponent {\n constructor(configurationService) {\n super('', configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorComponent, isStandalone: true, selector: \"kendo-chart-navigator\", inputs: { position: \"position\", visible: \"visible\", categoryAxis: \"categoryAxis\", hint: \"hint\", pane: \"pane\", select: \"select\", series: \"series\" }, providers: [{ provide: PREFIX, useValue: 'navigator' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{ provide: PREFIX, useValue: 'navigator' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }],\n selector: 'kendo-chart-navigator',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { position: [{\n type: Input\n }], visible: [{\n type: Input\n }], categoryAxis: [{\n type: Input\n }], hint: [{\n type: Input\n }], pane: [{\n type: Input\n }], select: [{\n type: Input\n }], series: [{\n type: Input\n }] } });\n\n/**\n * The configuration component for a category axis ([see example]({% slug axes_chart_charts %})).\n */\nclass CategoryAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService, intl, localeId) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.notifyChanges({ weekStartDay: intl.firstDay(localeId) });\n }\n}\nCategoryAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: i3.IntlService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisItemComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item\", inputs: { autoBaseUnitSteps: \"autoBaseUnitSteps\", axisCrossingValue: \"axisCrossingValue\", background: \"background\", baseUnit: \"baseUnit\", baseUnitStep: \"baseUnitStep\", categories: \"categories\", color: \"color\", justified: \"justified\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", max: \"max\", maxDateGroups: \"maxDateGroups\", maxDivisions: \"maxDivisions\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", name: \"name\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", roundToBaseUnit: \"roundToBaseUnit\", startAngle: \"startAngle\", type: \"type\", visible: \"visible\", weekStartDay: \"weekStartDay\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", select: \"select\", title: \"title\", rangeLabels: \"rangeLabels\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-category-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: i3.IntlService }, { type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }]; }, propDecorators: { autoBaseUnitSteps: [{\n type: Input\n }], axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], baseUnit: [{\n type: Input\n }], baseUnitStep: [{\n type: Input\n }], categories: [{\n type: Input\n }], color: [{\n type: Input\n }], justified: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], max: [{\n type: Input\n }], maxDateGroups: [{\n type: Input\n }], maxDivisions: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], name: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], roundToBaseUnit: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], weekStartDay: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], select: [{\n type: Input\n }], title: [{\n type: Input\n }], rangeLabels: [{\n type: Input\n }] } });\n\n/**\n * The configuration component of the navigator category axis.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * \n * \n * \n * ```\n */\nclass NavigatorCategoryAxisComponent extends CategoryAxisItemComponent {\n constructor(configurationService, intl, localeId) {\n super(configurationService, null, intl, localeId);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisComponent, deps: [{ token: ConfigurationService }, { token: i3.IntlService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis\", providers: [{\n provide: PREFIX,\n useValue: 'navigator.categoryAxis'\n }, {\n provide: ConfigurationService,\n useClass: PrefixConfigurationService\n }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{\n provide: PREFIX,\n useValue: 'navigator.categoryAxis'\n }, {\n provide: ConfigurationService,\n useClass: PrefixConfigurationService\n }],\n selector: 'kendo-chart-navigator-category-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i3.IntlService }, { type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }]; } });\n\n/**\n * The crosshair configuration options ([see example]({% slug crosshairs_chart_charts %})).\n */\nclass CategoryAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nCategoryAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-crosshair\", inputs: { color: \"color\", dashType: \"dashType\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], dashType: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair.\n */\nclass NavigatorCategoryAxisCrosshairComponent extends CategoryAxisCrosshairComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-crosshair\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The options of the crosshair tooltip ([see example]({% slug crosshairs_chart_charts %})).\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass CategoryAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nCategoryAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip.\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass NavigatorCategoryAxisCrosshairTooltipComponent extends CategoryAxisCrosshairTooltipComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-crosshair-tooltip\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the axis labels ([see example]({% slug labels_chart_charts %})).\n */\nclass CategoryAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", culture: \"culture\", dateFormats: \"dateFormats\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], culture: [{\n type: Input\n }], dateFormats: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the axis labels.\n */\nclass NavigatorCategoryAxisLabelsComponent extends CategoryAxisLabelsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-labels\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the category axis notes ([see example]({% slug notes_chart_charts %}#toc-axis-notes)).\n */\nclass CategoryAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the category axis notes.\n */\nclass NavigatorCategoryAxisNotesComponent extends CategoryAxisNotesComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-notes\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The icon of the notes.\n */\nclass CategoryAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass NavigatorCategoryAxisNotesIconComponent extends CategoryAxisNotesIconComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-notes-icon\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The label of the notes.\n */\nclass CategoryAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass NavigatorCategoryAxisNotesLabelComponent extends CategoryAxisNotesLabelComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-notes-label\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The selected axis range. If set, the axis selection is enabled. The range is index-based and starts from zero.\n * Categories with indexes in the\n * ([`select.from`]({% slug api_charts_categoryaxisselectcomponent %}#toc-from)\n * —[`select.to`]({% slug api_charts_categoryaxisselectcomponent %}#toc-to)) range will be selected.\n * This means that the last category in the range will not be included in the selection.\n * If the categories are dates, the range has to be also specified with date values.\n */\nclass CategoryAxisSelectComponent extends SettingsComponent {\n constructor(configurationService) {\n super('select', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisSelectComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisSelectComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-select\", inputs: { from: \"from\", max: \"max\", min: \"min\", mousewheel: \"mousewheel\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisSelectComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-select',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { from: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], mousewheel: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The selected axis range. If set, the axis selection is enabled. The range is index-based and starts from zero.\n * Categories with indexes in the range (`select.from`, `select.to`) will be selected.\n * This means that the last category in the range will not be included in the selection.\n * If the categories are dates, the range has also to be specified with date values.\n */\nclass NavigatorCategoryAxisSelectComponent extends CategoryAxisSelectComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisSelectComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisSelectComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-select\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisSelectComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-select',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the category axis title.\n */\nclass CategoryAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the navigator category axis.\n */\nclass NavigatorCategoryAxisTitleComponent extends CategoryAxisTitleComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-title\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The default options of the navigator hint\n * ([see example](slug:overview_stockchart_charts)).\n */\nclass NavigatorHintComponent extends SettingsComponent {\n constructor(configurationService) {\n super('hint', configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorHintComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorHintComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorHintComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorHintComponent, isStandalone: true, selector: \"kendo-chart-navigator-hint\", inputs: { content: \"content\", format: \"format\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorHintComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-hint',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { content: [{\n type: Input\n }], format: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration component for a Chart pane.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * ```\n */\nclass PaneComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PaneComponent, isStandalone: true, selector: \"kendo-chart-pane, kendo-chart-panes-item\", inputs: { background: \"background\", border: \"border\", clip: \"clip\", height: \"height\", margin: \"margin\", name: \"name\", padding: \"padding\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-pane, kendo-chart-panes-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], clip: [{\n type: Input\n }], height: [{\n type: Input\n }], margin: [{\n type: Input\n }], name: [{\n type: Input\n }], padding: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration component of the navigator pane\n * ([see example](slug:overview_stockchart_charts)).\n */\nclass NavigatorPaneComponent extends PaneComponent {\n constructor(configurationService) {\n super(configurationService, null);\n this.configurationService = configurationService;\n }\n}\nNavigatorPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorPaneComponent, isStandalone: true, selector: \"kendo-chart-navigator-pane\", providers: [{ provide: PREFIX, useValue: 'navigator.pane' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{ provide: PREFIX, useValue: 'navigator.pane' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }],\n selector: 'kendo-chart-navigator-pane',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart pane title.\n */\nclass PanesTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nPanesTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPanesTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PanesTitleComponent, isStandalone: true, selector: \"kendo-chart-pane-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", position: \"position\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-pane-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the StockChart navigator pane.\n */\nclass NavigatorPaneTitleComponent extends PanesTitleComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorPaneTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorPaneTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorPaneTitleComponent, isStandalone: true, selector: \"kendo-chart-navigator-pane-title\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-pane-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * Specifies the initially selected range.\n * If no range is specified, the full range of values is rendered.\n */\nclass NavigatorSelectComponent extends SettingsComponent {\n constructor(configurationService) {\n super('select', configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSelectComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSelectComponent, isStandalone: true, selector: \"kendo-chart-navigator-select\", inputs: { from: \"from\", to: \"to\", mousewheel: \"mousewheel\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSelectComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-select',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { from: [{\n type: Input\n }], to: [{\n type: Input\n }], mousewheel: [{\n type: Input\n }] } });\n\n/**\n * The configuration component of a navigator series item\n * ([see example]({% slug overview_stockchart_charts %})).\n */\nclass NavigatorSeriesItemComponent extends SeriesItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nNavigatorSeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesItemComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item\", inputs: { drilldownField: \"drilldownField\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-navigator-series-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { drilldownField: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more navigator series items.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * public data: any[] = [];\n *\n * constructor() {\n * for (let idx = 0; idx < 100; idx++) {\n * this.data.push({\n * date: new Date(2017, 0, idx),\n * value: Math.random() * 100\n * });\n * }\n * }\n * }\n *\n * ```\n */\nclass NavigatorSeriesComponent extends SeriesComponent {\n constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {\n super(configurationService, collectionService, tooltipTemplateService, viewContainer);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.tooltipTemplateService = tooltipTemplateService;\n this.viewContainer = viewContainer;\n }\n readTooltipTemplates() {\n }\n}\nNavigatorSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesComponent, isStandalone: true, selector: \"kendo-chart-navigator-series\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: NavigatorSeriesItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-navigator-series',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [NavigatorSeriesItemComponent]\n }] } });\n\n/**\n * The error bars of the Chart series\n * ([see example]({% slug errorbars_chart_charts %})).\n */\nclass SeriesErrorBarsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('errorBars', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesErrorBarsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesErrorBarsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesErrorBarsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesErrorBarsComponent, isStandalone: true, selector: \"kendo-chart-series-item-error-bars\", inputs: { color: \"color\", endCaps: \"endCaps\", line: \"line\", value: \"value\", visual: \"visual\", xValue: \"xValue\", yValue: \"yValue\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesErrorBarsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-error-bars',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], endCaps: [{\n type: Input\n }], line: [{\n type: Input\n }], value: [{\n type: Input\n }], visual: [{\n type: Input\n }], xValue: [{\n type: Input\n }], yValue: [{\n type: Input\n }] } });\n\n/**\n * The error bars of the StockChart navigator series.\n */\nclass NavigatorSeriesErrorBarsComponent extends SeriesErrorBarsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesErrorBarsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesErrorBarsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesErrorBarsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesErrorBarsComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-error-bars\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesErrorBarsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-error-bars',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series extremes.\n * Applies to extreme outliers.\n * For more information, refer to [`series.outliers`]({% slug api_charts_seriesitemcomponent %}#toc-outliers).\n */\nclass SeriesExtremesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('extremes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesExtremesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesExtremesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesExtremesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesExtremesComponent, isStandalone: true, selector: \"kendo-chart-series-item-extremes\", inputs: { background: \"background\", border: \"border\", rotation: \"rotation\", size: \"size\", type: \"type\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesExtremesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-extremes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], rotation: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }] } });\n\n/**\n * The extremes configuration of the StockChart navigator series. Applies to extreme outliers.\n */\nclass NavigatorSeriesExtremesComponent extends SeriesExtremesComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesExtremesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesExtremesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesExtremesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesExtremesComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-extremes\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesExtremesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-extremes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The Chart series highlighting configuration options.\n */\nclass SeriesHighlightComponent extends SettingsComponent {\n constructor(configurationService) {\n super('highlight', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesHighlightComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesHighlightComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesHighlightComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesHighlightComponent, isStandalone: true, selector: \"kendo-chart-series-item-highlight\", inputs: { border: \"border\", color: \"color\", line: \"line\", markers: \"markers\", opacity: \"opacity\", toggle: \"toggle\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesHighlightComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-highlight',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { border: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], markers: [{\n type: Input\n }], opacity: [{\n type: Input\n }], toggle: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the StockChart series highlight.\n */\nclass NavigatorSeriesHighlightComponent extends SeriesHighlightComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesHighlightComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesHighlightComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesHighlightComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesHighlightComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-highlight\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesHighlightComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-highlight',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series label\n * ([see example]({% slug labels_chart_charts %})).\n */\nclass SeriesLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesLabelsComponent, isStandalone: true, selector: \"kendo-chart-series-item-labels\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", content: \"content\", ariaContent: \"ariaContent\", distance: \"distance\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", visible: \"visible\", visual: \"visual\", from: \"from\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], ariaContent: [{\n type: Input\n }], distance: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }], from: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The label configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesLabelsComponent extends SeriesLabelsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nNavigatorSeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesLabelsComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-labels\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The `from` label configuration of the Chart series.\n */\nclass SeriesLabelsFromComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels.from', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesLabelsFromComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsFromComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesLabelsFromComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesLabelsFromComponent, isStandalone: true, selector: \"kendo-chart-series-item-labels-from\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", position: \"position\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsFromComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-labels-from',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The `from` label configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesLabelsFromComponent extends SeriesLabelsFromComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nNavigatorSeriesLabelsFromComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsFromComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesLabelsFromComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesLabelsFromComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-labels-from\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsFromComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-labels-from',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The `to` label configuration of the Chart series.\n */\nclass SeriesLabelsToComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels.to', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesLabelsToComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsToComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesLabelsToComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesLabelsToComponent, isStandalone: true, selector: \"kendo-chart-series-item-labels-to\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", position: \"position\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsToComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-labels-to',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The `to` label configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesLabelsToComponent extends SeriesLabelsToComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nNavigatorSeriesLabelsToComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsToComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesLabelsToComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesLabelsToComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-labels-to\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsToComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-labels-to',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series marker.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesMarkersComponent extends SettingsComponent {\n constructor(configurationService) {\n super('markers', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesMarkersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesMarkersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesMarkersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesMarkersComponent, isStandalone: true, selector: \"kendo-chart-series-item-markers\", inputs: { background: \"background\", border: \"border\", rotation: \"rotation\", size: \"size\", type: \"type\", visible: \"visible\", visual: \"visual\", from: \"from\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesMarkersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-markers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], rotation: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }], from: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The marker configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesMarkersComponent extends SeriesMarkersComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesMarkersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesMarkersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesMarkersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesMarkersComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-markers\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesMarkersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-markers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The series notes configuration\n * ([see example]({% slug notes_chart_charts %})).\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesNotesComponent, isStandalone: true, selector: \"kendo-chart-series-item-notes\", inputs: { line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The notes configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesNotesComponent extends SeriesNotesComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesNotesComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-notes\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The icon of the notes.\n */\nclass SeriesNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesNotesIconComponent, isStandalone: true, selector: \"kendo-chart-series-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass NavigatorSeriesNotesIconComponent extends SeriesNotesIconComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesNotesIconComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-notes-icon\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The label of the notes.\n */\nclass SeriesNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-series-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass NavigatorSeriesNotesLabelComponent extends SeriesNotesLabelComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-notes-label\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series outliers.\n * Applies to mild outliers.\n * For more information, refer to the [`series.extremes`]({% slug api_charts_seriesitemcomponent %}#toc-extremes) option.\n */\nclass SeriesOutliersComponent extends SettingsComponent {\n constructor(configurationService) {\n super('outliers', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesOutliersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesOutliersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesOutliersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesOutliersComponent, isStandalone: true, selector: \"kendo-chart-series-item-outliers\", inputs: { background: \"background\", border: \"border\", rotation: \"rotation\", size: \"size\", type: \"type\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesOutliersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-outliers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], rotation: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }] } });\n\n/**\n * The outliers configuration of the StockChart navigator series. Applies to mild outliers.\n */\nclass NavigatorSeriesOutliersComponent extends SeriesOutliersComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesOutliersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesOutliersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesOutliersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesOutliersComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-outliers\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesOutliersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-outliers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The tooltip configuration of the StockChart navigator series.\n * The StockChart navigator series tooltip is displayed when the `navigator.series.tooltip.visible` option is set to `true`.\n */\nclass NavigatorSeriesTooltipComponent extends SeriesTooltipComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesTooltipComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-tooltip\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The root Chart component.\n *\n * @example\n * ```html\n * \n * \n * ```\n */\nclass SparklineComponent extends ChartComponent {\n constructor(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer) {\n super(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer);\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.element = element;\n this.intl = intl;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.instanceEventService = instanceEventService;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n /**\n * @hidden\n */\n this.drilldown = new EventEmitter();\n /**\n * @hidden\n */\n this.drilldownLevelChange = new EventEmitter();\n /**\n * @hidden\n */\n this.tooltipWrapperClass = 'k-sparkline-tooltip-wrapper';\n /**\n * @hidden\n */\n this.tooltipContentClasses = {\n 'k-sparkline-tooltip': true\n };\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.hostClasses = ['k-sparkline', 'k-widget'];\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n }\n /**\n * @hidden\n */\n get drilldownLevel() {\n return this.drilldownState.length;\n }\n createInstance(element, observer) {\n this.instance = new Sparkline(element, Sparkline.normalizeOptions(this.options), this.theme, {\n intlService: this.intl,\n observer: observer,\n rtl: this.rtl,\n sender: this\n });\n }\n updateOptions() {\n this.instance.setOptions(Sparkline.normalizeOptions(this.options));\n }\n}\nSparklineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: InstanceEventService$1 }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nSparklineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SparklineComponent, isStandalone: true, selector: \"kendo-sparkline\", inputs: { type: \"type\", data: \"data\", drilldownLevel: \"drilldownLevel\" }, outputs: { drilldown: \"drilldown\", drilldownLevelChange: \"drilldownLevelChange\" }, providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ], exportAs: [\"kendoSparkline\"], usesInheritance: true, ngImport: i0, template: `\n \n \n \n \n \n \n\n
\n `, isInline: true, dependencies: [{ kind: \"component\", type: CrosshairTooltipsContainerComponent, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: [\"popupSettings\"] }, { kind: \"component\", type: TooltipPopupComponent, selector: \"kendo-chart-tooltip-popup\", inputs: [\"animate\", \"classNames\", \"popupSettings\", \"wrapperClass\"], outputs: [\"leave\"] }, { kind: \"component\", type: ResizeSensorComponent, selector: \"kendo-resize-sensor\", inputs: [\"rateLimit\"], outputs: [\"resize\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoSparkline',\n providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ],\n selector: 'kendo-sparkline',\n template: `\n \n \n \n \n \n \n\n
\n `,\n standalone: true,\n imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: ThemeService }, { type: i0.ElementRef }, { type: i3.IntlService }, { type: i4.LocalizationService }, { type: i0.NgZone }, { type: InstanceEventService$1 }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { type: [{\n type: Input\n }], data: [{\n type: Input\n }], drilldown: [{\n type: Output\n }], drilldownLevelChange: [{\n type: Output\n }], drilldownLevel: [{\n type: Input\n }] } });\n\n/**\n * The default options for all Chart axes ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n * Accepts the options which are supported by [`categoryAxis`](slug:api_charts_categoryaxisitemcomponent),\n * [`valueAxis`](slug:api_charts_valueaxisitemcomponent),\n * [`xAxis`](slug:api_charts_xaxisitemcomponent),\n * and [`yAxis`](slug:api_charts_yaxisitemcomponent).\n *\n */\nclass AxisDefaultsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults', configurationService);\n this.configurationService = configurationService;\n }\n}\nAxisDefaultsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults\", inputs: { background: \"background\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", startAngle: \"startAngle\", visible: \"visible\", crosshair: \"crosshair\", labels: \"labels\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], visible: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The crosshair configuration options ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n */\nclass AxisDefaultsCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nAxisDefaultsCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsCrosshairComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-crosshair\", inputs: { color: \"color\", dashType: \"dashType\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], dashType: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The options of the crosshair tooltip ([see example]({% slug crosshairs_chart_charts %})).\n * The crosshair tooltip is displayed when the [`axisDefaults.crosshair.tooltip.visible`]({% slug api_charts_axisdefaultscrosshairtooltipcomponent %}#toc-visible)\n * option is set to `true`.\n */\nclass AxisDefaultsCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nAxisDefaultsCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the axis labels ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n */\nclass AxisDefaultsLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nAxisDefaultsLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsLabelsComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-labels\", inputs: { content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the axis title ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n */\nclass AxisDefaultsTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.title', configurationService);\n this.configurationService = configurationService;\n }\n}\nAxisDefaultsTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsTitleComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more category axis items.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * }\n * ```\n */\nclass CategoryAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('categoryAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nCategoryAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisComponent, isStandalone: true, selector: \"kendo-chart-category-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: CategoryAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-category-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [CategoryAxisItemComponent]\n }] } });\n\n/**\n * The configuration of the axis date range labels ([see example]({% slug labels_chart_charts %})).\n */\nclass CategoryAxisRangeLabelsComponent extends CategoryAxisLabelsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.configKey = 'rangeLabels';\n this.markAsVisible();\n }\n}\nCategoryAxisRangeLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisRangeLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisRangeLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisRangeLabelsComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-range-labels\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisRangeLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-range-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration options of the Chart area.\n * Represents the entire visible area of the Chart\n * ([see example]({% slug chartarea_chart_charts %})).\n */\nclass ChartAreaComponent extends SettingsComponent {\n constructor(configurationService) {\n super('chartArea', configurationService);\n this.configurationService = configurationService;\n }\n}\nChartAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartAreaComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nChartAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ChartAreaComponent, isStandalone: true, selector: \"kendo-chart-area\", inputs: { background: \"background\", border: \"border\", height: \"height\", margin: \"margin\", opacity: \"opacity\", width: \"width\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartAreaComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-area',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], height: [{\n type: Input\n }], margin: [{\n type: Input\n }], opacity: [{\n type: Input\n }], width: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart legend\n * ([see example]({% slug legend_chart_charts %})).\n */\nclass LegendComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nLegendComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nLegendComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LegendComponent, isStandalone: true, selector: \"kendo-chart-legend\", inputs: { align: \"align\", background: \"background\", border: \"border\", height: \"height\", labels: \"labels\", margin: \"margin\", offsetX: \"offsetX\", offsetY: \"offsetY\", orientation: \"orientation\", padding: \"padding\", position: \"position\", reverse: \"reverse\", visible: \"visible\", width: \"width\", markers: \"markers\", spacing: \"spacing\", inactiveItems: \"inactiveItems\", item: \"item\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-legend',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], height: [{\n type: Input\n }], labels: [{\n type: Input\n }], margin: [{\n type: Input\n }], offsetX: [{\n type: Input\n }], offsetY: [{\n type: Input\n }], orientation: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], reverse: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], markers: [{\n type: Input\n }], spacing: [{\n type: Input\n }], inactiveItems: [{\n type: Input\n }], item: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the inactive Chart legend items.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * \n * \n * ```\n */\nclass LegendInactiveItemsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend.inactiveItems', configurationService);\n this.configurationService = configurationService;\n }\n}\nLegendInactiveItemsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendInactiveItemsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nLegendInactiveItemsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LegendInactiveItemsComponent, isStandalone: true, selector: \"kendo-chart-legend-inactive-items\", inputs: { labels: \"labels\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendInactiveItemsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-legend-inactive-items',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { labels: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the Chart legend item.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * \n * \n * ```\n */\nclass LegendItemComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend.item', configurationService);\n this.configurationService = configurationService;\n }\n}\nLegendItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendItemComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nLegendItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LegendItemComponent, isStandalone: true, selector: \"kendo-chart-legend-item\", inputs: { cursor: \"cursor\", type: \"type\", line: \"line\", area: \"area\", markers: \"markers\", highlight: \"highlight\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-legend-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { cursor: [{\n type: Input\n }], type: [{\n type: Input\n }], line: [{\n type: Input\n }], area: [{\n type: Input\n }], markers: [{\n type: Input\n }], highlight: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The default options for all chart panes,\n * ([see example](slug:panes_chart_charts#toc-default-settings)).\n */\nclass PaneDefaultsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('paneDefaults', configurationService);\n this.configurationService = configurationService;\n }\n}\nPaneDefaultsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPaneDefaultsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PaneDefaultsComponent, isStandalone: true, selector: \"kendo-chart-pane-defaults\", inputs: { background: \"background\", border: \"border\", clip: \"clip\", height: \"height\", margin: \"margin\", padding: \"padding\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-pane-defaults',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], clip: [{\n type: Input\n }], height: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the pane default title.\n */\nclass PaneDefaultsTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('paneDefaults.title', configurationService);\n this.configurationService = configurationService;\n }\n}\nPaneDefaultsTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPaneDefaultsTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PaneDefaultsTitleComponent, isStandalone: true, selector: \"kendo-chart-pane-defaults-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", position: \"position\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-pane-defaults-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], position: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more pane configuration components.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * ...\n * \n * ```\n */\nclass PanesComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('panes', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nPanesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nPanesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PanesComponent, isStandalone: true, selector: \"kendo-chart-panes\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: PaneComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-panes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [PaneComponent]\n }] } });\n\n/**\n * The configuration options of the plot area\n * ([see example]({% slug plotarea_chart_charts %})).\n * The plot area is the area which displays the series.\n */\nclass PlotAreaComponent extends SettingsComponent {\n constructor(configurationService) {\n super('plotArea', configurationService);\n this.configurationService = configurationService;\n }\n}\nPlotAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PlotAreaComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPlotAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PlotAreaComponent, isStandalone: true, selector: \"kendo-chart-plot-area\", inputs: { background: \"background\", border: \"border\", margin: \"margin\", opacity: \"opacity\", padding: \"padding\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PlotAreaComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-plot-area',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], margin: [{\n type: Input\n }], opacity: [{\n type: Input\n }], padding: [{\n type: Input\n }] } });\n\n/**\n * The default options for all series\n * ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)).\n */\nclass SeriesDefaultsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsComponent, isStandalone: true, selector: \"kendo-chart-series-defaults\", inputs: { border: \"border\", gap: \"gap\", highlight: \"highlight\", overlay: \"overlay\", spacing: \"spacing\", stack: \"stack\", type: \"type\", visual: \"visual\", labels: \"labels\", notes: \"notes\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { border: [{\n type: Input\n }], gap: [{\n type: Input\n }], highlight: [{\n type: Input\n }], overlay: [{\n type: Input\n }], spacing: [{\n type: Input\n }], stack: [{\n type: Input\n }], type: [{\n type: Input\n }], visual: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the Chart series label.\n */\nclass SeriesDefaultsLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.labels', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsLabelsComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", visible: \"visible\", visual: \"visual\", from: \"from\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }], from: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The `from` label configuration of the Chart series.\n */\nclass SeriesDefaultsLabelsFromComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.labels.from', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsLabelsFromComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsFromComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsLabelsFromComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsLabelsFromComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-labels-from\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsFromComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-labels-from',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The `to` label configuration of the Chart series.\n */\nclass SeriesDefaultsLabelsToComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.labels.to', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsLabelsToComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsToComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsLabelsToComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsLabelsToComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-labels-to\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsToComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-labels-to',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the [`seriesDefaults`]({% slug api_charts_seriesdefaultscomponent %}) notes.\n */\nclass SeriesDefaultsNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsNotesComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-notes\", inputs: { line: \"line\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { line: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass SeriesDefaultsNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsNotesIconComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass SeriesDefaultsNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart series tooltip.\n */\nclass SeriesDefaultsTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsTooltipComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart trendline series\n * ([see example]({% slug trendlines_chart_charts %})).\n */\nclass SeriesTrendlineComponent extends SettingsComponent {\n constructor(configurationService) {\n super('trendline', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesTrendlineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesTrendlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTrendlineComponent, isStandalone: true, selector: \"kendo-chart-series-item-trendline\", inputs: { period: \"period\", order: \"order\", forecast: \"forecast\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-trendline',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { period: [{\n type: Input\n }], order: [{\n type: Input\n }], forecast: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart trendline forecast\n * ([see example]({% slug trendlines_chart_charts %})).\n */\nclass SeriesTrendlineForecastComponent extends SettingsComponent {\n constructor(configurationService) {\n super('forecast', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesTrendlineForecastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineForecastComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesTrendlineForecastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTrendlineForecastComponent, isStandalone: true, selector: \"kendo-chart-series-item-trendline-forecast\", inputs: { before: \"before\", after: \"after\", forecast: \"forecast\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineForecastComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-trendline-forecast',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { before: [{\n type: Input\n }], after: [{\n type: Input\n }], forecast: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart subtitle or text\n * ([see example]({% slug title_chart_charts %})).\n *\n * @example\n * ```html\n * \n * \n * \n * ```\n */\nclass SubtitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('subtitle', configurationService);\n this.configurationService = configurationService;\n }\n}\nSubtitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SubtitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSubtitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SubtitleComponent, isStandalone: true, selector: \"kendo-chart-subtitle\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", text: \"text\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SubtitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-subtitle',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart title or text\n * ([see example]({% slug title_chart_charts %})).\n *\n * @example\n * ```html\n * \n * \n * ...\n * \n * ```\n */\nclass TitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: TitleComponent, isStandalone: true, selector: \"kendo-chart-title\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", text: \"text\", description: \"description\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], description: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart series tooltip\n * ([see example]({% slug tooltips_chart_charts %})).\n */\nclass TooltipComponent extends SettingsComponent {\n constructor(configurationService, templateService) {\n super('tooltip', configurationService);\n this.configurationService = configurationService;\n this.templateService = templateService;\n this.markAsVisible();\n }\n ngAfterContentChecked() {\n this.templateService.setTemplate(this.seriesTooltipTemplate ? this.seriesTooltipTemplate.templateRef : null);\n this.templateService.setSharedTemplate(this.sharedTooltipTemplate ? this.sharedTooltipTemplate.templateRef : null);\n }\n}\nTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipComponent, deps: [{ token: ConfigurationService }, { token: TooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });\nTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: TooltipComponent, isStandalone: true, selector: \"kendo-chart-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", opacity: \"opacity\", padding: \"padding\", shared: \"shared\", visible: \"visible\" }, queries: [{ propertyName: \"seriesTooltipTemplate\", first: true, predicate: SeriesTooltipTemplateDirective, descendants: true }, { propertyName: \"sharedTooltipTemplate\", first: true, predicate: SharedTooltipTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'kendo-chart-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: TooltipTemplateService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], opacity: [{\n type: Input\n }], padding: [{\n type: Input\n }], shared: [{\n type: Input\n }], visible: [{\n type: Input\n }], seriesTooltipTemplate: [{\n type: ContentChild,\n args: [SeriesTooltipTemplateDirective, { static: false }]\n }], sharedTooltipTemplate: [{\n type: ContentChild,\n args: [SharedTooltipTemplateDirective, { static: false }]\n }] } });\n\n/**\n * The configuration component for a value axis.\n */\nclass ValueAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nValueAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisItemComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item\", inputs: { axisCrossingValue: \"axisCrossingValue\", background: \"background\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", majorUnit: \"majorUnit\", max: \"max\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", minorUnit: \"minorUnit\", name: \"name\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", type: \"type\", visible: \"visible\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-value-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], majorUnit: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], minorUnit: [{\n type: Input\n }], name: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more value axis configuration components.\n *\n * @example\n * ```html\n * \n * \n * ....\n * \n * \n * ```\n */\nclass ValueAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('valueAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nValueAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisComponent, isStandalone: true, selector: \"kendo-chart-value-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: ValueAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-value-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [ValueAxisItemComponent]\n }] } });\n\n/**\n * The crosshair configuration options ([see example]({% slug crosshairs_chart_charts %})).\n */\nclass ValueAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nValueAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-crosshair\", inputs: { color: \"color\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip ([see example]({% slug crosshairs_chart_charts %})).\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass ValueAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nValueAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The axis labels configuration.\n */\nclass ValueAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the value axis notes ([see example]({% slug notes_chart_charts %}#toc-axis-notes)).\n */\nclass ValueAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass ValueAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass ValueAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the value axis.\n */\nclass ValueAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * Navigation Breadcrumb component for Drilldown Charts.\n *\n * Use this component to implement navigation for [Drilldown Charts](slug:drilldown_chart_charts).\n * Use the `chart` input to link the Breadcrumb to the Chart instance.\n *\n */\nclass ChartBreadcrumbComponent {\n constructor() {\n /**\n * The definition of the breadcrumb root item.\n *\n * The default value is `{ icon: 'home', svgIcon: homeIcon, title: 'Home' }`.\n * (homeIcon is imported from '@progress/kendo-svg-icons')\n */\n this.rootItem = { icon: 'home', svgIcon: homeIcon, title: 'Home' };\n this.subscription = new Subscription();\n }\n ngOnInit() {\n this.items = [this.rootItem];\n if (this.chart) {\n this.subscription.add(this.chart.drilldown.subscribe(this.onDrilldown.bind(this)));\n this.subscription.add(this.chart.drilldownLevelChange.subscribe(this.onDrilldownLevelChange.bind(this)));\n }\n else if (isDevMode()) {\n throw new Error('Chart Breadcrumb: No Chart instance supplied. Please add a reference using the \"chart\" attribute. For example: \\n' +\n '\\n' +\n '');\n }\n }\n ngOnChanges(changes) {\n const rootItemChange = changes['rootItem'];\n if (rootItemChange && this.items) {\n this.items[0] = rootItemChange.currentValue;\n }\n }\n ngOnDestroy() {\n if (this.subscription) {\n this.subscription.unsubscribe();\n this.subscription = null;\n }\n }\n /**\n * @hidden\n */\n onItemClick(target) {\n this.chart.drilldownLevel = this.items.findIndex(item => item === target);\n }\n onDrilldown(e) {\n this.items = [...this.items, { text: e.point.category.toString() }];\n }\n onDrilldownLevelChange(level) {\n this.items = this.items.slice(0, level + 1);\n }\n}\nChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });\nChartBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ChartBreadcrumbComponent, isStandalone: true, selector: \"kendo-chart-breadcrumb\", inputs: { chart: \"chart\", rootItem: \"rootItem\" }, viewQueries: [{ propertyName: \"breadcrumb\", first: true, predicate: [\"breadcrumb\"], descendants: true, static: true }], exportAs: [\"kendoChartBreadcrumb\"], usesOnChanges: true, ngImport: i0, template: `\n \n \n `, isInline: true, dependencies: [{ kind: \"component\", type: BreadCrumbComponent, selector: \"kendo-breadcrumb\", inputs: [\"items\", \"separatorIcon\", \"separatorSVGIcon\", \"collapseMode\", \"size\"], outputs: [\"itemClick\"], exportAs: [\"kendoBreadCrumb\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{\n type: Component,\n args: [{\n exportAs: 'kendoChartBreadcrumb',\n selector: 'kendo-chart-breadcrumb',\n template: `\n \n \n `,\n standalone: true,\n imports: [BreadCrumbComponent]\n }]\n }], propDecorators: { chart: [{\n type: Input\n }], rootItem: [{\n type: Input\n }], breadcrumb: [{\n type: ViewChild,\n args: ['breadcrumb', { static: true }]\n }] } });\n\n/**\n * @hidden\n */\nclass SankeyBaseEvent extends PreventableEvent$1 {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super();\n this.sender = sender;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the node-related events of the [`SankeyComponent`]({% slug api_charts_sankeycomponent %}).\n */\nclass SankeyNodeEvent extends SankeyBaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(e, sender);\n this.dataItem = e.dataItem;\n }\n}\n\n/**\n * Arguments for the link-related events of the [`SankeyComponent`]({% slug api_charts_sankeycomponent %}).\n */\nclass SankeyLinkEvent extends SankeyBaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(e, sender);\n this.dataItem = e.dataItem;\n }\n}\n\nconst EVENT_MAP = {\n nodeEnter: SankeyNodeEvent,\n nodeLeave: SankeyNodeEvent,\n linkEnter: SankeyLinkEvent,\n linkLeave: SankeyLinkEvent,\n nodeClick: SankeyNodeEvent,\n linkClick: SankeyLinkEvent\n};\n/**\n * @hidden\n */\nclass InstanceEventService {\n create(name, args, sender) {\n return new EVENT_MAP[name](args, sender);\n }\n}\n\n/**\n * The context that is passed to the Sankey diagram Link tooltip template.\n */\nclass SankeyLinkTooltipTemplateContext {\n /**\n * @hidden\n */\n constructor(e) {\n const dataItem = e.dataItem;\n this.source = dataItem.source;\n this.target = dataItem.target;\n this.value = dataItem.value;\n }\n}\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [links tooltip](slug:tooltip_sankey#toc-specifying-a-link-tooltip-template).\n * The following context fields are frequently utilized:\n * - `let-source=\"source\"`—The link source data item..\n * - `let-target=\"target\"`—The link target data item.\n * - `let-value=\"value\"`—The link value.\n * For the full list of available fields, refer to the [`SankeyLinkTooltipTemplateContext`](slug:api_charts_sankeylinktooltiptemplatecontext).\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * Value is {{value}}\n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * }\n *\n * import { Component } from '@angular/core';\n * import { SankeyData } from '@progress/kendo-angular-charts';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * {{ source.label?.text }} - {{ target.label?.text }}: {{ value }}\n * \n * \n * \n * `,\n * })\n * export class AppComponent {\n * public data: SankeyData = {\n * nodes: [\n * { id: 1, label: { text: 'Linux' } },\n * { id: 0, label: { text: 'iOS'} },\n * { id: 2, label: { text: 'Mobile' } },\n * { id: 3, label: { text: 'Desktop' } },\n * ],\n * links: [\n * { sourceId: 0, targetId: 2, value: 1 },\n * { sourceId: 1, targetId: 2, value: 2 },\n * { sourceId: 1, targetId: 3, value: 3 },\n * ],\n * };\n * }\n *\n * ```\n */\nclass SankeyLinkTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSankeyLinkTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinkTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSankeyLinkTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLinkTooltipTemplateDirective, isStandalone: true, selector: \"[kendoSankeyLinkTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinkTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyLinkTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * The context that is passed to the Sankey diagram Node tooltip template.\n */\nclass SankeyNodeTooltipTemplateContext {\n /**\n * @hidden\n */\n constructor(e) {\n const dataItem = e.dataItem;\n this.label = dataItem.label;\n this.color = dataItem.color;\n this.value = e.nodeValue;\n }\n}\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [series tooltip](slug:tooltip_sankey#toc-specifying-a-node-tooltip-template).\n * The following context fields are frequently utilized:\n * - `let-color=\"color\"`—The node color.\n * - `let-label=\"label\"`—The node label data.\n * - `let-value=\"value\"`—The node value.\n * For the full list of available fields, refer to the [`SankeyNodeTooltipTemplateContext`](slug:api_charts_sankeynodetooltiptemplatecontext).\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n * import { SankeyData } from '@progress/kendo-angular-charts';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * {{ label.text }}: {{ value }}\n * \n * \n * `,\n * })\n * export class AppComponent {\n * public data: SankeyData = {\n * nodes: [\n * { id: 1, label: { text: 'Linux' } },\n * { id: 0, label: { text: 'iOS'} },\n * { id: 2, label: { text: 'Mobile' } },\n * { id: 3, label: { text: 'Desktop' } },\n * ],\n * links: [\n * { sourceId: 0, targetId: 2, value: 1 },\n * { sourceId: 1, targetId: 2, value: 2 },\n * { sourceId: 1, targetId: 3, value: 3 },\n * ],\n * };\n * }\n *\n * ```\n */\nclass SankeyNodeTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSankeyNodeTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodeTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSankeyNodeTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyNodeTooltipTemplateDirective, isStandalone: true, selector: \"[kendoSankeyNodeTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodeTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyNodeTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * @hidden\n */\nclass SankeyTooltipTemplateService {\n}\nSankeyTooltipTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\nSankeyTooltipTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipTemplateService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipTemplateService, decorators: [{\n type: Injectable\n }] });\n\n/**\n * @hidden\n */\nclass SquareSymbol {\n constructor() {\n this.size = 15;\n this.display = 'inline-flex';\n this.marginLeft = 3;\n }\n}\nSquareSymbol.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SquareSymbol, deps: [], target: i0.ɵɵFactoryTarget.Directive });\nSquareSymbol.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SquareSymbol, isStandalone: true, selector: \"[squareSymbol]\", inputs: { color: \"color\", size: \"size\" }, host: { properties: { \"style.backgroundColor\": \"this.color\", \"style.width.px\": \"this.size\", \"style.height.px\": \"this.size\", \"style.display\": \"this.display\", \"style.marginLeft.px\": \"this.marginLeft\" } }, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SquareSymbol, decorators: [{\n type: Directive,\n args: [{\n selector: '[squareSymbol]',\n standalone: true\n }]\n }], propDecorators: { color: [{\n type: Input\n }, {\n type: HostBinding,\n args: ['style.backgroundColor']\n }], size: [{\n type: Input\n }, {\n type: HostBinding,\n args: ['style.width.px']\n }, {\n type: HostBinding,\n args: ['style.height.px']\n }], display: [{\n type: HostBinding,\n args: ['style.display']\n }], marginLeft: [{\n type: HostBinding,\n args: ['style.marginLeft.px']\n }] } });\n\nconst DEFAULT_OFFSET = 12;\n/**\n * @hidden\n */\nclass SankeyTooltipPopupComponent extends BaseTooltip {\n constructor(element, popupService, templateService, localizationService, intlService, ngZone, renderer) {\n super(popupService, localizationService);\n this.element = element;\n this.popupService = popupService;\n this.templateService = templateService;\n this.localizationService = localizationService;\n this.intlService = intlService;\n this.ngZone = ngZone;\n this.renderer = renderer;\n this.animate = false;\n this.wrapperClass = 'k-chart-tooltip-wrapper';\n this.arrowIcon = arrowRightIcon;\n // TODO: Move to themes\n this.textStyle = { margin: '0 3px' };\n this.tooltipStyle = { display: 'flex', alignItems: 'center' };\n this.rtl = false;\n }\n onInit() {\n this.popupRef.popupElement.className += ` ${this.wrapperClass}`;\n }\n ngAfterViewInit() {\n this.setDirection();\n this.subscriptions = this.localizationService.changes.subscribe(this.rtlChange.bind(this));\n }\n ngOnDestroy() {\n super.ngOnDestroy();\n if (this.subscriptions) {\n this.subscriptions.unsubscribe();\n }\n }\n show(e) {\n this.isNode = e.targetType === 'node';\n this.isLink = e.targetType === 'link';\n this.nodeTooltipTemplateRef = this.templateService.nodeTemplate || this.defaultNodeTooltipTemplate.templateRef;\n this.nodeTooltipContext = new SankeyNodeTooltipTemplateContext(e);\n this.linkTooltipTemplateRef = this.templateService.linkTemplate || this.defaultLinkTooltipTemplate.templateRef;\n this.linkTooltipContext = new SankeyLinkTooltipTemplateContext(e);\n super.show({\n style: {\n position: 'static' // Override k-tooltip positioning\n },\n anchor: {\n align: e.tooltipData.popupAlign,\n point: this.tooltipAnchor(e),\n },\n });\n }\n tooltipAnchor(e) {\n const element = this.element.nativeElement;\n const size = { width: element.offsetWidth, height: element.offsetHeight };\n const anchor = { ...e.tooltipData.popupOffset };\n const popupAlign = e.tooltipData.popupAlign;\n const offset = this.offset || DEFAULT_OFFSET;\n anchor.left += (popupAlign.horizontal === 'left') ? offset : (-1 * offset);\n if (popupAlign.horizontal === 'right') {\n anchor.left -= size.width;\n }\n if (popupAlign.vertical === 'bottom') {\n anchor.top -= size.height + offset;\n }\n else {\n anchor.top += offset;\n }\n return anchor;\n }\n formatUnits(value) {\n return this.intlService.format(this.tooltipUnitFormat, value ?? 0);\n }\n rtlChange() {\n this.arrowIcon = this.rtl ? arrowLeftIcon : arrowRightIcon;\n }\n setDirection() {\n this.rtl = this.isRTL;\n if (this.element) {\n this.renderer.setAttribute(this.element.nativeElement, 'dir', this.rtl ? 'rtl' : 'ltr');\n }\n }\n get isRTL() {\n return Boolean(this.localizationService.rtl);\n }\n}\nSankeyTooltipPopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipPopupComponent, deps: [{ token: i0.ElementRef }, { token: i1.PopupService }, { token: SankeyTooltipTemplateService }, { token: i4.LocalizationService }, { token: i3.IntlService }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nSankeyTooltipPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyTooltipPopupComponent, isStandalone: true, selector: \"kendo-sankey-tooltip-popup\", inputs: { animate: \"animate\", popupSettings: \"popupSettings\", wrapperClass: \"wrapperClass\", tooltipUnitFormat: \"tooltipUnitFormat\", offset: \"offset\" }, providers: [\n PopupService,\n {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory,\n },\n ], viewQueries: [{ propertyName: \"defaultNodeTooltipTemplate\", first: true, predicate: SankeyNodeTooltipTemplateDirective, descendants: true }, { propertyName: \"defaultLinkTooltipTemplate\", first: true, predicate: SankeyLinkTooltipTemplateDirective, descendants: true }, { propertyName: \"templateRef\", first: true, predicate: [\"content\"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `\n \n
\n
\n \n \n \n \n
\n
\n
\n\n \n
\n
\n {{ label.text }}\n {{ formatUnits(value) }}\n
\n
\n\n \n
\n
\n {{ source.label?.text }}\n \n
\n {{ target.label?.text }}\n {{ formatUnits(value) }}\n
\n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"directive\", type: NgTemplateOutlet, selector: \"[ngTemplateOutlet]\", inputs: [\"ngTemplateOutletContext\", \"ngTemplateOutlet\", \"ngTemplateOutletInjector\"] }, { kind: \"directive\", type: SankeyNodeTooltipTemplateDirective, selector: \"[kendoSankeyNodeTooltipTemplate]\" }, { kind: \"directive\", type: SquareSymbol, selector: \"[squareSymbol]\", inputs: [\"color\", \"size\"] }, { kind: \"directive\", type: SankeyLinkTooltipTemplateDirective, selector: \"[kendoSankeyLinkTooltipTemplate]\" }, { kind: \"component\", type: IconWrapperComponent, selector: \"kendo-icon-wrapper\", inputs: [\"name\", \"svgIcon\", \"innerCssClass\", \"customFontClass\", \"size\"], exportAs: [\"kendoIconWrapper\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipPopupComponent, decorators: [{\n type: Component,\n args: [{\n providers: [\n PopupService,\n {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory,\n },\n ],\n selector: 'kendo-sankey-tooltip-popup',\n template: `\n \n
\n
\n \n \n \n \n
\n
\n
\n\n \n
\n
\n {{ label.text }}\n {{ formatUnits(value) }}\n
\n
\n\n \n
\n
\n {{ source.label?.text }}\n \n
\n {{ target.label?.text }}\n {{ formatUnits(value) }}\n
\n
\n `,\n standalone: true,\n imports: [NgStyle, NgIf, NgTemplateOutlet, SankeyNodeTooltipTemplateDirective, SquareSymbol, SankeyLinkTooltipTemplateDirective, IconWrapperComponent]\n }]\n }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.PopupService }, { type: SankeyTooltipTemplateService }, { type: i4.LocalizationService }, { type: i3.IntlService }, { type: i0.NgZone }, { type: i0.Renderer2 }]; }, propDecorators: { defaultNodeTooltipTemplate: [{\n type: ViewChild,\n args: [SankeyNodeTooltipTemplateDirective, { static: false }]\n }], defaultLinkTooltipTemplate: [{\n type: ViewChild,\n args: [SankeyLinkTooltipTemplateDirective, { static: false }]\n }], templateRef: [{\n type: ViewChild,\n args: ['content', { static: true }]\n }], animate: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], wrapperClass: [{\n type: Input\n }], tooltipUnitFormat: [{\n type: Input\n }], offset: [{\n type: Input\n }] } });\n\n/**\n * @hidden\n */\nclass Messages extends ComponentMessages {\n}\nMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });\nMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: Messages, selector: \"[kendoSankeyMessages]\", inputs: { tooltipUnitFormat: \"tooltipUnitFormat\" }, usesInheritance: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: Messages, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyMessages]'\n }]\n }], propDecorators: { tooltipUnitFormat: [{\n type: Input\n }] } });\n\n/**\n * @hidden\n */\nclass LocalizedMessagesDirective extends Messages {\n constructor(service) {\n super();\n this.service = service;\n }\n}\nLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });\nLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LocalizedMessagesDirective, isStandalone: true, selector: \"[kendoSankeyLocalizedMessages]\", providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => LocalizedMessagesDirective)\n }\n ], usesInheritance: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{\n type: Directive,\n args: [{\n providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => LocalizedMessagesDirective)\n }\n ],\n selector: '[kendoSankeyLocalizedMessages]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i4.LocalizationService }]; } });\n\n/**\n * The Sankey diagram component.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * `,\n * })\n * export class AppComponent {\n * public data: SankeyData = {\n * nodes: [\n * { id: 1, label: { text: 'Linux' } },\n * { id: 0, label: { text: 'iOS'} },\n * { id: 2, label: { text: 'Mobile' } },\n * { id: 3, label: { text: 'Desktop' } },\n * ],\n * links: [\n * { sourceId: 0, targetId: 2, value: 1 },\n * { sourceId: 1, targetId: 2, value: 2 },\n * { sourceId: 1, targetId: 3, value: 3 },\n * ],\n * };\n * }\n * ```\n */\nclass SankeyComponent {\n constructor(element, configurationService, themeService, localizationService, instanceEventService, ngZone, changeDetector, renderer, intlService) {\n this.element = element;\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.localizationService = localizationService;\n this.instanceEventService = instanceEventService;\n this.ngZone = ngZone;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n this.intlService = intlService;\n /**\n * If set to `false`, the Sankey keyboard navigation will be disabled.\n * By default, navigation is enabled.\n *\n * @default true\n */\n this.navigable = true;\n /**\n * Fires when the mouse pointer enters a node. Similar to the `mouseenter` event.\n */\n this.nodeEnter = new EventEmitter();\n /**\n * Fires when the mouse pointer leaves a node. Similar to the `mouseleave` event.\n */\n this.nodeLeave = new EventEmitter();\n /**\n * Fires when a node is clicked.\n */\n this.nodeClick = new EventEmitter();\n /**\n * Fires when the mouse pointer enters a link. Similar to the `mouseenter` event,\n */\n this.linkEnter = new EventEmitter();\n /**\n * Fires when the mouse pointer leaves a link. Similar to the `mouseleave` event.\n */\n this.linkLeave = new EventEmitter();\n /**\n * Fires when a link is clicked.\n */\n this.linkClick = new EventEmitter();\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.rtl = false;\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n this.themeService.loadTheme();\n this.refreshWait();\n }\n ngAfterViewInit() {\n this.setDirection();\n this.subscriptions = this.intlService.changes.subscribe(this.intlChange.bind(this));\n this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)));\n }\n ngOnChanges(changes) {\n const store = this.configurationService.store;\n copyChanges(changes, store);\n store.popupSettings = null;\n this.configurationService.push(store);\n }\n /**\n * Updates the component fields with the specified values and refreshes the widget.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * sankey.notifyChanges({ title: { text: 'New Title' } });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n ngOnDestroy() {\n this.destroyed = true;\n if (this.optionsChange) {\n this.optionsChange.unsubscribe();\n }\n if (this.instance) {\n this.instance.destroy();\n this.instance = null;\n }\n if (this.subscriptions) {\n this.subscriptions.unsubscribe();\n }\n clearTimeout(this.redrawTimeout);\n }\n /**\n * @hidden\n */\n messageFor(key) {\n return this.localizationService.get(key);\n }\n createInstance(element) {\n this.instance = new Sankey(element, this.instanceOptions, this.theme);\n ['nodeEnter', 'nodeLeave', 'nodeClick', 'linkEnter', 'linkLeave', 'linkClick'].forEach((eventName) => this.instance.bind(eventName, (e) => this.trigger(eventName, e)));\n this.instance.bind('tooltipShow', (e) => this.onShowTooltip(e));\n this.instance.bind('tooltipHide', () => this.onHideTooltip());\n }\n /**\n * Exports the Sankey diagram as an image. The export operation is asynchronous and returns a promise.\n *\n * @param {ImageExportOptions} options - The parameters for the exported image.\n * @returns {Promise} - A promise that will be resolved with a PNG image encoded as a Data URI.\n */\n exportImage(options = {}) {\n return exportImage(this.exportVisual(options), options);\n }\n /**\n * Exports the Sankey diagram as an SVG document. The export operation is asynchronous and returns a promise.\n *\n * @param options - The parameters for the exported file.\n * @returns - A promise that will be resolved with an SVG document that is encoded as a Data URI.\n */\n exportSVG(options = {}) {\n return exportSVG(this.exportVisual(options), options);\n }\n /**\n * Exports the visual of the Sankey component to a drawing group.\n *\n * @param options - The parameters for the export operation.\n * @returns - The root Group of the scene.\n */\n exportVisual(options = {}) {\n return this.instance.exportVisual(options);\n }\n init() {\n if (!this.canRender) {\n return;\n }\n const element = this.instanceElement.nativeElement;\n this.createInstance(element);\n }\n /**\n * Reloads the Sankey appearance settings from the current [Kendo UI Theme]({% slug themesandstyles %}).\n *\n * Call this method after loading a different theme stylesheet.\n */\n reloadTheme() {\n if (!this.instance) {\n return;\n }\n this.themeService.reset();\n this.instance.destroy();\n this.instance = null;\n }\n onShowTooltip(e) {\n this.run(() => {\n this.tooltipInstance.show(e);\n }, true, true);\n }\n onHideTooltip() {\n if (this.tooltipInstance.active) {\n this.tooltipInstance.hide();\n this.detectChanges();\n }\n }\n trigger(name, e) {\n const emitter = this.activeEmitter(name);\n if (emitter) {\n const args = this.instanceEventService.create(name, e, this);\n this.run(() => {\n emitter.emit(args);\n });\n return args.isDefaultPrevented && args.isDefaultPrevented();\n }\n }\n requiresHandlers(names) {\n for (let idx = 0; idx < names.length; idx++) {\n if (this.activeEmitter(names[idx])) {\n return true;\n }\n }\n return false;\n }\n refresh() {\n clearTimeout(this.redrawTimeout);\n if (!this.instance) {\n this.init();\n return;\n }\n this.updateOptions();\n }\n updateOptions() {\n this.instance.setOptions(this.instanceOptions);\n }\n get canRender() {\n return isDocumentAvailable() && Boolean(this.instanceElement);\n }\n get instanceOptions() {\n return { ...this.options, rtl: this.rtl, disableKeyboardNavigation: !this.navigable };\n }\n activeEmitter(name) {\n const emitter = this[name];\n if (emitter && emitter.emit && hasObservers(emitter)) {\n return emitter;\n }\n }\n refreshWait() {\n this.ngZone.runOutsideAngular(() => {\n this.optionsChange = combineLatest([this.configurationService.onChange$, this.themeService.onChange$])\n .pipe(tap((result) => {\n this.options = result[0];\n this.theme = this.loadTheme(result[1]);\n }), auditTime(THROTTLE_MS))\n .subscribe(() => {\n this.refresh();\n });\n });\n }\n loadTheme(chartTheme) {\n return {\n ...chartTheme,\n nodeColors: chartTheme.seriesColors,\n };\n }\n run(callback, inZone = true, detectChanges) {\n if (inZone) {\n if (detectChanges) {\n this.changeDetector.markForCheck();\n }\n this.ngZone.run(callback);\n }\n else {\n callback();\n if (detectChanges) {\n this.detectChanges();\n }\n }\n }\n detectChanges() {\n if (!this.destroyed) {\n this.changeDetector.detectChanges();\n }\n }\n intlChange() {\n if (this.instance) {\n this.refresh();\n }\n }\n rtlChange() {\n if (this.instance && this.rtl !== this.isRTL) {\n this.refresh();\n }\n }\n setDirection() {\n this.rtl = this.isRTL;\n if (this.element) {\n this.renderer.setAttribute(this.element.nativeElement, 'dir', this.rtl ? 'rtl' : 'ltr');\n }\n }\n get isRTL() {\n return Boolean(this.localizationService.rtl);\n }\n}\nSankeyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyComponent, deps: [{ token: i0.ElementRef }, { token: ConfigurationService }, { token: ThemeService }, { token: i4.LocalizationService }, { token: InstanceEventService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i3.IntlService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyComponent, isStandalone: true, selector: \"kendo-sankey\", inputs: { data: \"data\", links: \"links\", nodes: \"nodes\", labels: \"labels\", title: \"title\", legend: \"legend\", tooltip: \"tooltip\", disableAutoLayout: \"disableAutoLayout\", navigable: \"navigable\", popupSettings: \"popupSettings\" }, outputs: { nodeEnter: \"nodeEnter\", nodeLeave: \"nodeLeave\", nodeClick: \"nodeClick\", linkEnter: \"linkEnter\", linkLeave: \"linkLeave\", linkClick: \"linkClick\" }, providers: [\n ConfigurationService,\n LocalizationService,\n InstanceEventService,\n SankeyTooltipTemplateService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.sankey',\n },\n ], viewQueries: [{ propertyName: \"tooltipInstance\", first: true, predicate: SankeyTooltipPopupComponent, descendants: true, static: true }, { propertyName: \"instanceElement\", first: true, predicate: [\"instance\"], descendants: true, static: true }], exportAs: [\"kendoSankey\"], usesOnChanges: true, ngImport: i0, template: `\n \n
\n \n \n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: LocalizedMessagesDirective, selector: \"[kendoSankeyLocalizedMessages]\" }, { kind: \"component\", type: SankeyTooltipPopupComponent, selector: \"kendo-sankey-tooltip-popup\", inputs: [\"animate\", \"popupSettings\", \"wrapperClass\", \"tooltipUnitFormat\", \"offset\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoSankey',\n providers: [\n ConfigurationService,\n LocalizationService,\n InstanceEventService,\n SankeyTooltipTemplateService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.sankey',\n },\n ],\n selector: 'kendo-sankey',\n template: `\n \n
\n \n \n
\n `,\n standalone: true,\n imports: [LocalizedMessagesDirective, SankeyTooltipPopupComponent, NgIf, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: ConfigurationService }, { type: ThemeService }, { type: i4.LocalizationService }, { type: InstanceEventService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: i3.IntlService }]; }, propDecorators: { data: [{\n type: Input\n }], links: [{\n type: Input\n }], nodes: [{\n type: Input\n }], labels: [{\n type: Input\n }], title: [{\n type: Input\n }], legend: [{\n type: Input\n }], tooltip: [{\n type: Input\n }], disableAutoLayout: [{\n type: Input\n }], navigable: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], nodeEnter: [{\n type: Output\n }], nodeLeave: [{\n type: Output\n }], nodeClick: [{\n type: Output\n }], linkEnter: [{\n type: Output\n }], linkLeave: [{\n type: Output\n }], linkClick: [{\n type: Output\n }], tooltipInstance: [{\n type: ViewChild,\n args: [SankeyTooltipPopupComponent, { static: true }]\n }], instanceElement: [{\n type: ViewChild,\n args: ['instance', { static: true }]\n }] } });\n\n/**\n * Arguments for the `dataBound` event of the [`[kendoSankeyFlatBinding]`]({% slug api_charts_sankeyflatbindingdirective %}) directive.\n */\nclass SankeyFlatBindingDataBoundEvent {\n /**\n * @hidden\n */\n constructor(data) {\n this.data = data;\n }\n}\n\n/**\n * A directive which encapsulates the retrieval of the nodes and links when flat data is provided.\n *\n * See [Data Binding - Binding to Flat Data]({% slug data_binding_sankey %}#toc-binding-to-flat-data).\n */\nclass SankeyFlatBindingDirective {\n constructor(sankey) {\n this.sankey = sankey;\n /**\n * Represents the fields which identify the nodes.\n */\n this.dimensionFields = [];\n /**\n * Fires when the flat data has been converted to `SankeyData`.\n *\n * To customize the created nodes and links, modify the data.\n */\n this.dataBound = new EventEmitter();\n }\n ngOnChanges(changes) {\n if (!isChanged('data', changes, false)) {\n return;\n }\n if (this.dimensionFields?.length === 0) {\n throw new Error('kendoSankeyFlatBinding: dimensionFields is required');\n }\n if (!this.valueField) {\n throw new Error('kendoSankeyFlatBinding: valueField is required');\n }\n const dimensions = this.dimensionFields.map(field => ({ value: getter(field) }));\n const measure = { value: getter(this.valueField) };\n const data = createSankeyData(this.data, dimensions, measure);\n this.dataBound.emit(new SankeyFlatBindingDataBoundEvent(data));\n this.sankey.notifyChanges({ data });\n }\n}\nSankeyFlatBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyFlatBindingDirective, deps: [{ token: SankeyComponent }], target: i0.ɵɵFactoryTarget.Directive });\nSankeyFlatBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyFlatBindingDirective, isStandalone: true, selector: \"[kendoSankeyFlatBinding]\", inputs: { data: [\"kendoSankeyFlatBinding\", \"data\"], dimensionFields: \"dimensionFields\", valueField: \"valueField\" }, outputs: { dataBound: \"dataBound\" }, usesOnChanges: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyFlatBindingDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyFlatBinding]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: SankeyComponent }]; }, propDecorators: { data: [{\n type: Input,\n args: ['kendoSankeyFlatBinding']\n }], dimensionFields: [{\n type: Input\n }], valueField: [{\n type: Input\n }], dataBound: [{\n type: Output\n }] } });\n\n/**\n * The configuration options of the Sankey labels\n * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)).\n */\nclass SankeyLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLabelsComponent, isStandalone: true, selector: \"kendo-sankey-labels\", inputs: { visible: \"visible\", font: \"font\", color: \"color\", align: \"align\", position: \"position\", padding: \"padding\", margin: \"margin\", border: \"border\", offset: \"offset\", stroke: \"stroke\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { visible: [{\n type: Input\n }], font: [{\n type: Input\n }], color: [{\n type: Input\n }], align: [{\n type: Input\n }], position: [{\n type: Input\n }], padding: [{\n type: Input\n }], margin: [{\n type: Input\n }], border: [{\n type: Input\n }], offset: [{\n type: Input\n }], stroke: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey legend\n * ([see example]({% slug legend_sankey %})).\n */\nclass SankeyLegendComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSankeyLegendComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLegendComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyLegendComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLegendComponent, isStandalone: true, selector: \"kendo-sankey-legend\", inputs: { align: \"align\", background: \"background\", border: \"border\", height: \"height\", labels: \"labels\", margin: \"margin\", offsetX: \"offsetX\", offsetY: \"offsetY\", orientation: \"orientation\", padding: \"padding\", position: \"position\", reverse: \"reverse\", visible: \"visible\", width: \"width\", markers: \"markers\", spacing: \"spacing\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLegendComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-legend',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], height: [{\n type: Input\n }], labels: [{\n type: Input\n }], margin: [{\n type: Input\n }], offsetX: [{\n type: Input\n }], offsetY: [{\n type: Input\n }], orientation: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], reverse: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], markers: [{\n type: Input\n }], spacing: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey links\n * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)).\n */\nclass SankeyLinksComponent extends SettingsComponent {\n constructor(configurationService) {\n super('links', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyLinksComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinksComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyLinksComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLinksComponent, isStandalone: true, selector: \"kendo-sankey-links\", inputs: { colorType: \"colorType\", color: \"color\", opacity: \"opacity\", highlight: \"highlight\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinksComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-links',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { colorType: [{\n type: Input\n }], color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], highlight: [{\n type: Input\n }] } });\n\n/**\n * Custom component messages override default component messages.\n * @example\n * ```html\n * \n * \n * \n * ```\n */\nclass SankeyCustomMessagesComponent extends Messages {\n constructor(service) {\n super();\n this.service = service;\n }\n get override() {\n return true;\n }\n}\nSankeyCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyCustomMessagesComponent, deps: [{ token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyCustomMessagesComponent, isStandalone: true, selector: \"kendo-sankey-messages\", providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => SankeyCustomMessagesComponent)\n }\n ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyCustomMessagesComponent, decorators: [{\n type: Component,\n args: [{\n providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => SankeyCustomMessagesComponent)\n }\n ],\n selector: 'kendo-sankey-messages',\n template: ``,\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i4.LocalizationService }]; } });\n\n/**\n * The configuration options of the Sankey nodes\n * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)).\n */\nclass SankeyNodesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('nodes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyNodesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyNodesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyNodesComponent, isStandalone: true, selector: \"kendo-sankey-nodes\", inputs: { colorType: \"colorType\", color: \"color\", opacity: \"opacity\", offset: \"offset\", padding: \"padding\", width: \"width\", align: \"align\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-nodes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { colorType: [{\n type: Input\n }], color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], offset: [{\n type: Input\n }], padding: [{\n type: Input\n }], width: [{\n type: Input\n }], align: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey title or text\n * ([see example]({% slug title_sankey %})).\n *\n * @example\n * ```html\n * \n * \n * ...\n * \n * ```\n */\nclass SankeyTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyTitleComponent, isStandalone: true, selector: \"kendo-sankey-title\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", text: \"text\", description: \"description\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], description: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey tooltip\n * ([see example]({% slug tooltip_sankey %})).\n */\nclass SankeyTooltipComponent extends SettingsComponent {\n constructor(configurationService, templateService) {\n super('tooltip', configurationService);\n this.configurationService = configurationService;\n this.templateService = templateService;\n this.markAsVisible();\n }\n ngAfterContentChecked() {\n this.templateService.linkTemplate = this.linkTooltipTemplate?.templateRef;\n this.templateService.nodeTemplate = this.nodeTooltipTemplate?.templateRef;\n }\n}\nSankeyTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipComponent, deps: [{ token: ConfigurationService }, { token: SankeyTooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyTooltipComponent, isStandalone: true, selector: \"kendo-sankey-tooltip\", inputs: { followPointer: \"followPointer\", delay: \"delay\", offset: \"offset\", visible: \"visible\" }, queries: [{ propertyName: \"linkTooltipTemplate\", first: true, predicate: SankeyLinkTooltipTemplateDirective, descendants: true }, { propertyName: \"nodeTooltipTemplate\", first: true, predicate: SankeyNodeTooltipTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'kendo-sankey-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: SankeyTooltipTemplateService }]; }, propDecorators: { followPointer: [{\n type: Input\n }], delay: [{\n type: Input\n }], offset: [{\n type: Input\n }], visible: [{\n type: Input\n }], linkTooltipTemplate: [{\n type: ContentChild,\n args: [SankeyLinkTooltipTemplateDirective, { static: false }]\n }], nodeTooltipTemplate: [{\n type: ContentChild,\n args: [SankeyNodeTooltipTemplateDirective, { static: false }]\n }] } });\n\n/**\n * Utility array that contains all `Chart` related components and directives\n */\nconst KENDO_CHART = [\n ChartComponent,\n DonutCenterTemplateDirective,\n XAxisComponent,\n XAxisCrosshairComponent,\n XAxisCrosshairTooltipComponent,\n XAxisItemComponent,\n XAxisLabelsComponent,\n XAxisNotesComponent,\n XAxisNotesIconComponent,\n XAxisNotesLabelComponent,\n XAxisTitleComponent,\n YAxisComponent,\n YAxisCrosshairComponent,\n YAxisCrosshairTooltipComponent,\n YAxisItemComponent,\n YAxisLabelsComponent,\n YAxisNotesComponent,\n YAxisNotesIconComponent,\n YAxisNotesLabelComponent,\n YAxisTitleComponent,\n ZoomableComponent,\n TooltipPopupComponent,\n SeriesTooltipTemplateDirective,\n SharedTooltipTemplateDirective,\n CrosshairTooltipsContainerComponent,\n CrosshairTooltipComponent,\n AxisDefaultsComponent,\n AxisDefaultsCrosshairComponent,\n AxisDefaultsCrosshairTooltipComponent,\n AxisDefaultsLabelsComponent,\n AxisDefaultsTitleComponent,\n CategoryAxisComponent,\n CategoryAxisCrosshairComponent,\n CategoryAxisCrosshairTooltipComponent,\n CategoryAxisItemComponent,\n CategoryAxisLabelsComponent,\n CategoryAxisRangeLabelsComponent,\n CategoryAxisNotesComponent,\n CategoryAxisNotesIconComponent,\n CategoryAxisNotesLabelComponent,\n CategoryAxisSelectComponent,\n CategoryAxisTitleComponent,\n ChartAreaComponent,\n ChartBreadcrumbComponent,\n LegendComponent,\n LegendInactiveItemsComponent,\n LegendItemComponent,\n PaneComponent,\n PaneDefaultsComponent,\n PaneDefaultsTitleComponent,\n PanesComponent,\n PanesTitleComponent,\n PlotAreaComponent,\n SeriesComponent,\n SeriesDefaultsComponent,\n SeriesDefaultsLabelsComponent,\n SeriesDefaultsLabelsFromComponent,\n SeriesDefaultsLabelsToComponent,\n SeriesDefaultsNotesComponent,\n SeriesDefaultsNotesIconComponent,\n SeriesDefaultsNotesLabelComponent,\n SeriesDefaultsTooltipComponent,\n SeriesDrilldownTemplateDirective,\n SeriesErrorBarsComponent,\n SeriesExtremesComponent,\n SeriesHighlightComponent,\n SeriesItemComponent,\n SeriesLabelsComponent,\n SeriesLabelsFromComponent,\n SeriesLabelsToComponent,\n SeriesMarkersComponent,\n SeriesNotesComponent,\n SeriesNotesIconComponent,\n SeriesNotesLabelComponent,\n SeriesOutliersComponent,\n SeriesTooltipComponent,\n SeriesTrendlineComponent,\n SeriesTrendlineForecastComponent,\n SubtitleComponent,\n TitleComponent,\n TooltipComponent,\n ValueAxisComponent,\n ValueAxisCrosshairComponent,\n ValueAxisCrosshairTooltipComponent,\n ValueAxisItemComponent,\n ValueAxisLabelsComponent,\n ValueAxisNotesComponent,\n ValueAxisNotesIconComponent,\n ValueAxisNotesLabelComponent,\n ValueAxisTitleComponent\n];\n/**\n * Utility array that contains all `SparkLine` related components and directives\n */\nconst KENDO_SPARKLINE = [\n SparklineComponent\n];\n/**\n * Utility array that contains all `StockChart` related components and directives\n */\nconst KENDO_STOCKCHART = [\n StockChartComponent,\n NavigatorComponent,\n NavigatorCategoryAxisComponent,\n NavigatorCategoryAxisCrosshairComponent,\n NavigatorCategoryAxisCrosshairTooltipComponent,\n NavigatorCategoryAxisLabelsComponent,\n NavigatorCategoryAxisNotesComponent,\n NavigatorCategoryAxisNotesIconComponent,\n NavigatorCategoryAxisNotesLabelComponent,\n NavigatorCategoryAxisSelectComponent,\n NavigatorCategoryAxisTitleComponent,\n NavigatorHintComponent,\n NavigatorPaneComponent,\n NavigatorPaneTitleComponent,\n NavigatorSelectComponent,\n NavigatorSeriesComponent,\n NavigatorSeriesItemComponent,\n NavigatorSeriesErrorBarsComponent,\n NavigatorSeriesExtremesComponent,\n NavigatorSeriesHighlightComponent,\n NavigatorSeriesLabelsComponent,\n NavigatorSeriesLabelsFromComponent,\n NavigatorSeriesLabelsToComponent,\n NavigatorSeriesMarkersComponent,\n NavigatorSeriesNotesComponent,\n NavigatorSeriesNotesIconComponent,\n NavigatorSeriesNotesLabelComponent,\n NavigatorSeriesOutliersComponent,\n NavigatorSeriesTooltipComponent,\n TooltipPopupComponent,\n SeriesTooltipTemplateDirective,\n SharedTooltipTemplateDirective,\n CrosshairTooltipsContainerComponent,\n CrosshairTooltipComponent,\n AxisDefaultsComponent,\n AxisDefaultsCrosshairComponent,\n AxisDefaultsCrosshairTooltipComponent,\n AxisDefaultsLabelsComponent,\n AxisDefaultsTitleComponent,\n CategoryAxisComponent,\n CategoryAxisCrosshairComponent,\n CategoryAxisCrosshairTooltipComponent,\n CategoryAxisItemComponent,\n CategoryAxisLabelsComponent,\n CategoryAxisRangeLabelsComponent,\n CategoryAxisNotesComponent,\n CategoryAxisNotesIconComponent,\n CategoryAxisNotesLabelComponent,\n CategoryAxisSelectComponent,\n CategoryAxisTitleComponent,\n ChartAreaComponent,\n ChartBreadcrumbComponent,\n LegendComponent,\n LegendInactiveItemsComponent,\n LegendItemComponent,\n PaneComponent,\n PaneDefaultsComponent,\n PaneDefaultsTitleComponent,\n PanesComponent,\n PanesTitleComponent,\n PlotAreaComponent,\n SeriesComponent,\n SeriesDefaultsComponent,\n SeriesDefaultsLabelsComponent,\n SeriesDefaultsLabelsFromComponent,\n SeriesDefaultsLabelsToComponent,\n SeriesDefaultsNotesComponent,\n SeriesDefaultsNotesIconComponent,\n SeriesDefaultsNotesLabelComponent,\n SeriesDefaultsTooltipComponent,\n SeriesDrilldownTemplateDirective,\n SeriesErrorBarsComponent,\n SeriesExtremesComponent,\n SeriesHighlightComponent,\n SeriesItemComponent,\n SeriesLabelsComponent,\n SeriesLabelsFromComponent,\n SeriesLabelsToComponent,\n SeriesMarkersComponent,\n SeriesNotesComponent,\n SeriesNotesIconComponent,\n SeriesNotesLabelComponent,\n SeriesOutliersComponent,\n SeriesTooltipComponent,\n SeriesTrendlineComponent,\n SeriesTrendlineForecastComponent,\n SubtitleComponent,\n TitleComponent,\n TooltipComponent,\n ValueAxisComponent,\n ValueAxisCrosshairComponent,\n ValueAxisCrosshairTooltipComponent,\n ValueAxisItemComponent,\n ValueAxisLabelsComponent,\n ValueAxisNotesComponent,\n ValueAxisNotesIconComponent,\n ValueAxisNotesLabelComponent,\n ValueAxisTitleComponent\n];\n/**\n * Utility array that contains all `Sankey` related components and directives\n */\nconst KENDO_SANKEY = [\n SankeyComponent,\n SankeyTooltipPopupComponent,\n SankeyLinkTooltipTemplateDirective,\n SankeyNodeTooltipTemplateDirective,\n SankeyCustomMessagesComponent,\n LocalizedMessagesDirective,\n SankeyTitleComponent,\n SankeyLegendComponent,\n SankeyTooltipComponent,\n SankeyLinksComponent,\n SankeyNodesComponent,\n SankeyLabelsComponent,\n SankeyFlatBindingDirective\n];\n/**\n * Utility array that contains all `@progress/kendo-angular-charts` related components and directives\n */\nconst KENDO_CHARTS = [\n ...KENDO_CHART,\n ...KENDO_SPARKLINE,\n ...KENDO_STOCKCHART,\n ...KENDO_SANKEY\n];\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.\n *\n * Imports the ChartModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Chart component.\n * @example\n * ```ts\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { ChartModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, ChartModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass ChartModule {\n}\nChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, imports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent], exports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent] });\nChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, providers: [IconsService, ResizeBatchService, PopupService, ThemeService], imports: [ChartComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_CHART],\n exports: [...KENDO_CHART],\n providers: [IconsService, ResizeBatchService, PopupService, ThemeService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the StockChart component and directives.\n *\n * Imports the StockChartModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the StockChart component.\n *\n * @example\n * ```ts-no-run\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { StockChartModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, StockChartModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass StockChartModule {\n}\nStockChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nStockChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, imports: [StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent], exports: [StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, ChartModule] });\nStockChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, providers: [ThemeService, IconsService, PopupService, ResizeBatchService], imports: [StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, ChartModule] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_STOCKCHART],\n exports: [...KENDO_STOCKCHART, ChartModule],\n providers: [ThemeService, IconsService, PopupService, ResizeBatchService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Sparkline component and directives.\n *\n * Imports the SparklineModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Sparkline component.\n *\n * @example\n * ```ts-no-run\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { SparklineModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, SparklineModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass SparklineModule {\n}\nSparklineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nSparklineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, imports: [SparklineComponent], exports: [SparklineComponent, ChartModule] });\nSparklineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, providers: [ThemeService, IconsService, PopupService, ResizeBatchService], imports: [KENDO_SPARKLINE, ChartModule] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_SPARKLINE],\n exports: [...KENDO_SPARKLINE, ChartModule],\n providers: [ThemeService, IconsService, PopupService, ResizeBatchService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes all Chart components and directives.\n *\n * Imports the ChartsModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Charts components.\n *\n * @example\n * ```ts\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { ChartsModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, ChartsModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass ChartsModule {\n}\nChartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nChartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, imports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SparklineComponent, StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective], exports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SparklineComponent, StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective] });\nChartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, providers: [IconsService, ResizeBatchService, PopupService, ThemeService], imports: [ChartComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SparklineComponent, StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SankeyComponent, SankeyTooltipPopupComponent, SankeyCustomMessagesComponent, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_CHARTS],\n exports: [...KENDO_CHARTS],\n providers: [IconsService, ResizeBatchService, PopupService, ThemeService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Sparkline component and directives.\n *\n * Imports the SparklineModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Sparkline component.\n *\n * @example\n * ```ts-no-run\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { SparklineModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, SparklineModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass SankeyModule {\n}\nSankeyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nSankeyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, imports: [SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective], exports: [SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective] });\nSankeyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, providers: [IconsService, ResizeBatchService, PopupService, ThemeService], imports: [SankeyComponent, SankeyTooltipPopupComponent, SankeyCustomMessagesComponent, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_SANKEY],\n exports: [...KENDO_SANKEY],\n providers: [IconsService, ResizeBatchService, PopupService, ThemeService]\n }]\n }] });\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, InstanceEventService, KENDO_CHART, KENDO_CHARTS, KENDO_SANKEY, KENDO_SPARKLINE, KENDO_STOCKCHART, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, LocalizedMessagesDirective, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SankeyBaseEvent, SankeyComponent, SankeyCustomMessagesComponent, SankeyFlatBindingDataBoundEvent, SankeyFlatBindingDirective, SankeyLabelsComponent, SankeyLegendComponent, SankeyLinkEvent, SankeyLinkTooltipTemplateDirective, SankeyLinksComponent, SankeyModule, SankeyNodeEvent, SankeyNodeTooltipTemplateDirective, SankeyNodesComponent, SankeyTitleComponent, SankeyTooltipComponent, SankeyTooltipPopupComponent, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, ThemeService, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };\n\n"],"mappings":"22BAqBgD,IAAAA,GAAA,CAAA,SAAA,EAAA,SAAAC,GAAAC,EAAAC,EAAA,CAuqB9B,GAvqB8BD,EAAA,IA2BkEE,EAAA,EAAA,MAAA,CA0oB9B,EA1oB8BC,EAAA,CA4oBvG,EA5oBuGC,EA4oBjG,GAACJ,EAAA,EAAA,CAAA,IAAAK,EA5oBgGC,EAAA,EAAAC,EAAA,UAAAF,EAAAG,KA0oB/B,EA1oB+BC,EA4oBvG,EA5oBuGC,GAAA,IAAAL,EAAAM,MAAA,GA4oBvG,CAAC,CAAA,CAAA,SAAAC,GAAAZ,EAAAC,EAAA,CAmH4B,GAnH5BD,EAAA,GA5oBsGa,EAAA,EAAA,gCAAA,CA+vB3E,EAACb,EAAA,EAAA,CAAA,IAAAc,EAAAb,EAAAc,UAAAC,EA/vB0EV,EAAA,EAAAC,EAAA,MAAAO,CA8vBjC,EAAC,gBAAAE,EAAAC,aAA+B,CAAC,CAAA,CAAA,SAAAC,GAAAlB,EAAAC,EAAA,CAAA,CAAA,SAAAkB,GAAAnB,EAAAC,EAAA,CAsT7C,GAtT6CD,EAAA,GA9vBAoB,EAAA,EAAAF,GAAA,EAAA,EAAA,cAAA,CAojC9C,EAAClB,EAAA,EAAA,CAAA,IAAAK,EApjC6CC,EAAA,CAAA,EAAAC,EAAA,mBAAAF,EAAAgB,wBAmjC/C,EAAC,0BAAAhB,EAAAiB,oBACD,CAAC,CAAA,CAAA,SAAAC,GAAAvB,EAAAC,EAAA,CAAA,CAAA,SAAAuB,GAAAxB,EAAAC,EAAA,CAGO,GAHPD,EAAA,GApjC8CoB,EAAA,EAAAG,GAAA,EAAA,EAAA,cAAA,CAujCxC,EAACvB,EAAA,EAAA,CAAA,IAAAK,EAvjCuCC,EAAA,CAAA,EAAAC,EAAA,mBAAAF,EAAAoB,8BAsjCzC,EAAC,0BAAApB,EAAAqB,0BACD,CAAC,CAAA,CAAA,SAAAC,GAAA3B,EAAAC,EAAA,CAE5D,GAF4DD,EAAA,IAvjCwCE,EAAA,EAAA,MAAA,CAkjC3D,EAljC2DkB,EAAA,EAAAD,GAAA,EAAA,EAAA,KAAA,CAojC9C,EAAC,EAAAK,GAAA,EAAA,EAAA,KAAA,CAGK,EAvjCwCpB,EAyjCrG,GAACJ,EAAA,EAAA,CAAA,IAAAK,EAzjCoGC,EAAA,EAAAC,EAAA,UAAAF,EAAAuB,YAkjC9E,EAAC,UAAAvB,EAAAG,KAAiB,EAljC4DC,EAmjChC,EAnjCgCF,EAAA,OAAA,CAAAF,EAAAwB,MAmjChC,EAnjCgCpB,EAsjC3B,EAtjC2BF,EAAA,OAAAF,EAAAwB,MAsjC3B,CAAC,CAAA,CAAA,SAAAC,GAAA9B,EAAAC,EAAA,CAOtC,GAPsCD,EAAA,GAtjC0Ba,EAAA,EAAA,OAAA,CA6jCjE,EAACb,EAAA,EAAA,CAAA,IAAA+B,EAAA9B,EAAA+B,eA7jCgEzB,EAAA,YAAAwB,EAAAE,EA6jCzE,CAAC,CAAA,CAAA,SAAAC,GAAAlC,EAAAC,EAAA,CAMoG,GANpGD,EAAA,IA7jCwEE,EAAA,EAAA,IAmkC3E,EAnkC2EW,EAAA,EAAA,OAAA,CAmkCsB,EAnkCtBT,EAmkC2B,GAACJ,EAAA,EAAA,CAAA,IAAAmC,EAnkC5B7B,EAAA,EAAAS,UAAAN,EAmkCc,EAnkCd2B,GAAA,mBAAAD,EAAAE,OAAAC,KAmkCc,CAAC,CAAA,CAAA,SAAAC,GAAAvC,EAAAC,EAAA,CAnkCf,GAmkCeD,EAAA,IAnkCfwC,GAAA,CAqkCzC,EArkCyCrC,EAAA,CAqkClB,EArkCkBsC,GAAA,GAAAzC,EAAA,EAAA,CAAA,IAAAmC,EAAA7B,EAAA,CAAA,EAAAS,UAAAN,EAqkClB,EArkCkBiC,EAAAP,EAAAE,OAAAM,IAqkClB,CAAC,CAAA,CAAA,SAAAC,GAAA5C,EAAAC,EAAA,CAAAD,EAAA,IArkCiBwC,GAAA,CAskCzC,EAtkCyCrC,EAAA,EAAA,MAskCnC,EAtkCmCsC,GAAA,EAAA,CAAA,SAAAI,GAAA7C,EAAAC,EAAA,CAukC7F,GAvkC6FD,EAAA,IAAAE,EAAA,EAAA,IAokC5E,EApkC4EkB,EAAA,EAAAmB,GAAA,EAAA,EAAA,eAAA,CAqkCzC,EAAC,EAAAK,GAAA,EAAA,EAAA,eAAA,CACD,EAtkCyCxC,EAukC9F,GAACJ,EAAA,EAAA,CAAA,IAAAmC,EAvkC6F7B,EAAA,EAAAS,UAAAN,EAqkC3C,EArkC2CF,EAAA,OAAA4B,EAAAE,OAAAM,OAAAG,MAqkC3C,EArkC2CrC,EAskC3C,EAtkC2CF,EAAA,OAAA4B,EAAAE,OAAAM,OAAAG,MAskC3C,CAAC,CAAA,CAAA,SAAAC,GAAA/C,EAAAC,EAAA,CAAA,CAAA,SAAA+C,GAAAhD,EAAAC,EAAA,CAOvD,GAPuDD,EAAA,IAtkC0CE,EAAA,EAAA,IAkkCtE,EAlkCsEkB,EAAA,EAAAc,GAAA,EAAA,EAAA,KAAA,CAmkC3E,EAAC,EAAAW,GAAA,EAAA,EAAA,KAAA,CACF,EApkC4E3C,EAAA,EAAA,IAwkC/F,EAxkC+FkB,EAAA,EAAA2B,GAAA,EAAA,EAAA,cAAA,CA0kCrD,EA1kCqD3C,EA4kC9F,EACJ,GAACJ,EAAA,EAAA,CAAA,IAAAmC,EAAAlC,EAAAc,UAAAkC,EA7kCiG3C,EAAA,EAAA4C,EAAAD,EAAAE,YAAAC,EAAAH,EAAAI,WAAA5C,EAmkC7E,EAnkC6EF,EAAA,OAAA2C,CAmkC7E,EAnkC6EzC,EAokC9E,EApkC8EF,EAAA,OAAA6C,CAokC9E,EApkC8E3C,EAAA,CAykCjD,EAzkCiDF,EAAA,mBAAA4B,EAAAmB,QAykCjD,EAAC,0BAAAnB,CACN,CAAC,CAAA,CAAA,SAAAoB,GAAAvD,EAAAC,EAAA,CAI7C,GAJ6CD,EAAA,IA1kCqDE,EAAA,EAAA,OAgkCpG,EAAC,EAAA,IACA,EAAC,EAAA,IAA4B,EAjkCsEC,EAAA,CAikClD,EAjkCkDC,EAikC7C,EAAK,EAjkCwCgB,EAAA,EAAA4B,GAAA,EAAA,EAAA,KAAA,CAkkCtE,EAlkCsE5C,EA8kCnG,GAACJ,EAAA,EAAA,CAAA,IAAAwD,EAAAvD,EAAAwD,OAAAC,EAAAzD,EAAA0D,aAAAC,EAAA3D,EAAA4D,QA9kCkGpD,EAAA,CAikCvE,EAjkCuEqD,GAAA,UAAAF,CAAA,EAAAnD,EAikClD,EAjkCkDC,GAAA,IAAAgD,EAAA,GAikClD,EAjkCkDjD,EAkkCxE,EAlkCwEF,EAAA,UAAAiD,CAkkCxE,CAAC,CAAA,CAAA,IAAAO,GAAA,CAAA,SAAA,EAAA,SAAAC,GAAAhE,EAAAC,EAAA,CAAA,CAAA,SAAAgE,GAAAjE,EAAAC,EAAA,CA4uDjC,GA5uDiCD,EAAA,IAlkCuEE,EAAA,EAAA,MAAA,CA4yFA,EA5yFAkB,EAAA,EAAA4C,GAAA,EAAA,EAAA,cAAA,CA6yF3C,EA7yF2C5D,EA8yFzG,GAACJ,EAAA,EAAA,CAAA,IAAAgB,EA9yFwGV,EAAA,EAAAC,EAAA,UAAAS,EAAAkD,gBA4yFjD,EA5yFiDzD,EA6yF5C,EA7yF4CF,EAAA,mBAAAS,EAAAmD,oBAAAC,WA6yF5C,CAAC,CAAA,CAAA,SAAAC,GAAArE,EAAAC,EAAA,CAAAD,EAAA,GA7yF2Ca,EAAA,EAAA,MAAA,CAgzFjD,CAAC,CAAA,SAAAyD,GAAAtE,EAAAC,EAAA,CAAAD,EAAA,GAhzFgDa,EAAA,EAAA,MAAA,CAy8H7C,CAAC,CAAA,SAAA0D,GAAAvE,EAAAC,EAAA,CAAAD,EAAA,GAz8H4Ca,EAAA,EAAA,MAAA,CAsvL7C,CAAC,CAAA,IAAA2D,GAAA,CAAA,YAAA,EAAA,SAAAC,GAAAzE,EAAAC,EAAA,CAAA,CAAA,SAAAyE,GAAA1E,EAAAC,EAAA,CA08DjD,GA18DiDD,EAAA,GAtvL4CoB,EAAA,EAAAqD,GAAA,EAAA,EAAA,cAAA,CAgsP9F,EAACzE,EAAA,EAAA,CAAA,IAAAK,EAhsP6FC,EAAA,CAAA,EAAAC,EAAA,mBAAAF,EAAAsE,sBA6rPhD,EAAC,0BAAAtE,EAAAuE,kBAEE,CAAC,CAAA,CAAA,SAAAC,GAAA7E,EAAAC,EAAA,CAAA,CAAA,SAAA6E,GAAA9E,EAAAC,EAAA,CAOjD,GAPiDD,EAAA,GA/rP4CoB,EAAA,EAAAyD,GAAA,EAAA,EAAA,cAAA,CAssP9F,EAAC7E,EAAA,EAAA,CAAA,IAAAK,EAtsP6FC,EAAA,CAAA,EAAAC,EAAA,mBAAAF,EAAA0E,sBAmsPhD,EAAC,0BAAA1E,EAAA2E,kBAEE,CAAC,CAAA,CAAA,SAAAC,GAAAjF,EAAAC,EAAA,CAIpD,GAJoDD,EAAA,IArsP4CE,EAAA,EAAA,MAAA,CA0rPN,EAAC,EAAA,MAAA,CAC/D,EA3rPoEkB,EAAA,EAAAsD,GAAA,EAAA,EAAA,KAAA,CAgsP9F,EAAC,EAAAI,GAAA,EAAA,EAAA,KAAA,CAMD,EAtsP8F1E,EAwsP7F,EACJ,GAACJ,EAAA,EAAA,CAAA,IAAAK,EAzsPgGC,EAAA,EAAAC,EAAA,UAAAF,EAAAG,KA0rPP,EA1rPOC,EAAA,CA8rP9E,EA9rP8EF,EAAA,OAAAF,EAAA6E,MA8rP9E,EA9rP8EzE,EAosP9E,EApsP8EF,EAAA,OAAAF,EAAA8E,MAosP9E,CAAC,CAAA,CAAA,SAAAC,GAAApF,EAAAC,EAAA,CAanB,GAbmBD,EAAA,IApsP6EE,EAAA,EAAA,MAAA,CA6sPzE,EA7sPyEW,EAAA,EAAA,MAAA,CA8sP3D,EA9sP2DX,EAAA,EAAA,OAAA,CA+sPvE,EA/sPuEC,EAAA,CA+sPvD,EA/sPuDC,EA+sPhD,EA/sPgDF,EAAA,EAAA,OAAA,CAgtPvE,EAhtPuEC,EAAA,CAgtP/C,EAhtP+CC,EAgtPxC,EACzD,GAACJ,EAAA,EAAA,CAAA,IAAAqF,EAAApF,EAAAqC,MAAAgD,EAAArF,EAAAsF,MAAAC,EAAAvF,EAAAU,MAAAN,EAjtPgGC,EAAA,EAAAC,EAAA,UAAAF,EAAAoF,YA6sP1E,EA7sP0EhF,EA8sPlE,EA9sPkEF,EAAA,QAAA8E,CA8sPlE,EA9sPkE5E,EA+sPxE,EA/sPwEF,EAAA,UAAAF,EAAAqF,SA+sPxE,EA/sPwEjF,EA+sPvD,EA/sPuDiC,EAAA4C,EAAAK,IA+sPvD,EA/sPuDlF,EAgtPxE,EAhtPwEF,EAAA,UAAAF,EAAAqF,SAgtPxE,EAhtPwEjF,EAgtP/C,EAhtP+CiC,EAAArC,EAAAuF,YAAAJ,CAAA,CAgtP/C,CAAC,CAAA,CAAA,SAAAK,GAAA7F,EAAAC,EAAA,CAYlD,GAZkDD,EAAA,IAhtP8CE,EAAA,EAAA,MAAA,CAqtPzE,EArtPyEW,EAAA,EAAA,MAAA,CAstPpD,EAttPoDX,EAAA,EAAA,OAAA,CAutPvE,EAvtPuEC,EAAA,CAutP/C,EAvtP+CC,EAutPxC,EAvtPwCS,EAAA,EAAA,qBAAA,CAwtPZ,EAAC,EAAA,MAAA,CACzC,EAztPoDX,EAAA,EAAA,OAAA,CA0tPvE,EA1tPuEC,EAAA,CA0tP/C,EA1tP+CC,EA0tPxC,EA1tPwCF,EAAA,EAAA,OAAA,CA2tPvE,EA3tPuEC,EAAA,CA2tP/C,EA3tP+CC,EA2tPxC,EACzD,GAACJ,EAAA,EAAA,CAAA,IAAA8F,EAAA7F,EAAA8F,OAAAC,EAAA/F,EAAAgG,OAAAC,EAAAjG,EAAAU,MAAAN,EA5tPgGC,EAAA,EAAAC,EAAA,UAAAF,EAAAoF,YAqtP1E,EArtP0EhF,EAstP3D,EAttP2DF,EAAA,QAAAuF,EAAAxD,KAstP3D,EAttP2D7B,EAutPxE,EAvtPwEF,EAAA,UAAAF,EAAAqF,SAutPxE,EAvtPwEjF,EAutP/C,EAvtP+CiC,EAAAoD,EAAAP,OAAA,KAAA,KAAAO,EAAAP,MAAAI,IAutP/C,EAvtP+ClF,EAwtPxD,EAxtPwDF,EAAA,OAAAF,EAAA8F,UAAAxD,IAwtPxD,EAAC,UAAAtC,EAAA8F,SAAqB,EAxtPkC1F,EAytP3D,EAztP2DF,EAAA,QAAAyF,EAAA1D,KAytP3D,EAztP2D7B,EA0tPxE,EA1tPwEF,EAAA,UAAAF,EAAAqF,SA0tPxE,EA1tPwEjF,EA0tP/C,EA1tP+CiC,EAAAsD,EAAAT,OAAA,KAAA,KAAAS,EAAAT,MAAAI,IA0tP/C,EA1tP+ClF,EA2tPxE,EA3tPwEF,EAAA,UAAAF,EAAAqF,SA2tPxE,EA3tPwEjF,EA2tP/C,EA3tP+CiC,EAAArC,EAAAuF,YAAAM,CAAA,CA2tP/C,CAAC,CAAA,CAAA,IAAAE,GAAA,CAAA,UAAA,EAAA,SAAAC,GAAArG,EAAAC,EAAA,CAAAD,EAAA,GA3tP8Ca,EAAA,EAAA,MAAA,CAgpQ7C,CAAC,CAzqQtE,IAAMyF,GAA0BC,GAAiBC,UAAUC,QAAQC,OAAOC,YACpEC,GAAuBC,GAAcL,UAAUC,QAAQC,OAAOC,YAC9DA,GAAc,CAChBG,aAAc,eACdC,QAAS,CAAEC,KAAM,QAAS,EAC1BC,QAAS,CAAED,KAAM,OAAQ,EACzBE,MAAO,CAAEF,KAAM,OAAQ,EACvBG,KAAM,CAAEC,SAAU,IAAK,EACvBC,MAAO,CAAED,SAAU,IAAK,EACxBE,OAAQ,CAAEF,SAAU,OAAQ,EAC5BG,MAAO,CAAEH,SAAU,GAAI,CAC3B,EACAI,OAAOC,OAAOnB,GAAyBK,EAAW,EAClDa,OAAOC,OAAOb,GAAsBD,EAAW,EAE/C,IAKMe,IAA4B,IAAA,CAAlC,MAAMA,CAA6B,CAC/BC,YAAYvD,EAAa,CACrB,KAAKA,YAAcA,CACvB,CACJ,CACAsD,OAAAA,EAA6BE,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFH,GAARI,EAAyDC,EAAW,CAAA,CAAA,CAAA,EACtLL,EAA6BM,UADqFC,EAAA,CAAAC,KACJR,EAA4BS,UAAA,CAAA,CAAA,GAAA,gCAAA,EAAA,CAAA,EAAAC,WAAA,EAAA,CAAA,EANpIV,CAA4B,GAAA,EAoB5BW,GAAN,KAAiB,CACbV,YAAYW,EAAQ7B,EAAS,CACzB,KAAK6B,OAASA,EACd,KAAK7B,QAAUA,CACnB,CACJ,EAIM8B,GAAiB,IAAA,CAAvB,MAAMA,CAAkB,CACpBZ,aAAc,CACV,KAAK5B,OAAS,IAAIyC,GAClB,KAAKC,cAAgB,KAAK1C,OAAO2C,aAAa,CAClD,CACAC,OAAOC,EAAQ,CACX,KAAK7C,OAAO8C,KAAKD,CAAM,CAC3B,CACJ,CACAL,OAAAA,EAAkBX,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFU,EAAiB,EAChIA,EAAkBO,WAlCgGC,EAAA,CAAAC,MAkCCT,EAAiBU,QAAjBV,EAAiBX,SAAA,CAAA,EAV9HW,CAAiB,GAAA,EAkBjBW,GAAc,IAAO,GAIrBC,GAAN,KAAa,CACTxB,YAAYyB,EAAKzI,EAAO,CACpB,KAAKyI,IAAMA,EACX,KAAKzI,MAAQA,CACjB,CACJ,EAIM0I,GAAoB,IAAA,CAA1B,MAAMA,CAAqB,CACvB1B,YAAY2B,EAAQ,CAChB,KAAKA,OAASA,EACd,KAAKC,MAAQ,CAAC,EACd,KAAKxD,OAAS,IAAIyD,GAAgB,CAAC,CAAC,EACpC,KAAKC,WAAW,CACpB,CACAA,YAAa,CACT,KAAKC,cAAgB,KAAK3D,OAAO2C,aAAa,EAC9C,KAAKiB,UAAY,KAAKD,cAAcE,KAAKC,GAAUX,EAAW,CAAC,CACnE,CACAY,KAAKP,EAAO,CACR,KAAKA,MAAQA,EACb,KAAKV,KAAK,CACd,CACAF,OAAOC,EAAQ,CACX,KAAKmB,IAAInB,EAAOQ,IAAKR,EAAOjI,KAAK,EACjC,KAAKkI,KAAK,CACd,CACAkB,IAAIC,EAAOrJ,EAAO,CACd,IAAI4I,EAAQ,KAAKA,MACXU,EAAQD,EAAME,MAAM,GAAG,EACzBd,EAAMa,EAAME,MAAM,EACtB,KAAOF,EAAMG,OAAS,GAClBb,EAAQA,EAAMH,CAAG,EAAIG,EAAMH,CAAG,GAAK,CAAC,EACpCA,EAAMa,EAAME,MAAM,EAEtBZ,EAAMH,CAAG,EAAIzI,CACjB,CACAkI,MAAO,CACH,KAAKS,OAAOe,kBAAkB,IAAM,CAChC,KAAKtE,OAAO8C,KAAK,KAAKU,KAAK,CAC/B,CAAC,CACL,CACJ,CACAF,OAAAA,EAAqBzB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwB,GA1FAiB,EA0FyCC,CAAM,CAAA,CAAA,EACjKlB,EAAqBP,WA3F6FC,EAAA,CAAAC,MA2FIK,EAAoBJ,QAApBI,EAAoBzB,SAAA,CAAA,EApCpIyB,CAAoB,GAAA,EA4C1B,SAASmB,GAAYC,EAAShE,EAAS,CACnC,QAAWiE,KAAgBD,EAAS,CAChC,GAAI,CAACjD,OAAOmD,eAAeC,KAAKH,EAASC,CAAY,EACjD,SAEJ,IAAM/J,EAAQ8J,EAAQC,CAAY,EAAEG,aAChClK,IAAUmC,OACV,OAAO2D,EAAQiE,CAAY,EAG3BjE,EAAQiE,CAAY,EAAI/J,CAEhC,CACJ,CAKA,SAASmK,GAAgBL,EAAS,CAC9B,IAAMM,EAAS,CAAC,EAChB,QAAWL,KAAgBD,EAClBjD,OAAOmD,eAAeC,KAAKH,EAASC,CAAY,IAGrDK,EAAOL,CAAY,EAAI,IAAIM,GAAa,KAAMP,EAAQC,CAAY,EAAG,EAAK,GAE9E,OAAOK,CACX,CAEA,IAGME,IAAuB,IAAA,CAA7B,MAAMA,CAAwB,CAC1BtD,YAAYuD,EAAsBC,EAAmB,CACjD,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,EACzB,KAAK1E,QAAU,CAAC,EAChB,KAAK2E,OAAS,GACd,KAAKC,aAAeH,EAAqBxB,cAAc4B,UAAU/B,GAAS,CACtE,KAAK9C,QAAU8C,EACf,KAAKZ,OAAO,CAChB,CAAC,CACL,CACA4C,YAAYd,EAAS,CACjB,IAAMlB,EAAQ,KAAK2B,qBAAqB3B,MACxCiB,GAAYC,EAASlB,CAAK,EAC1B,KAAK2B,qBAAqBpB,KAAKP,CAAK,CACxC,CAaAiC,cAAcf,EAAS,CACnB,KAAKc,YAAYT,GAAgBL,CAAO,CAAC,CAC7C,CACAgB,aAAc,CACV,KAAKJ,aAAaK,YAAY,CAClC,CACA/C,QAAS,CACA,KAAKwC,mBAGV,KAAKA,kBAAkBxC,OAAO,IAAIN,GAAW,KAAM,KAAK5B,OAAO,CAAC,CACpE,CACJ,CACAwE,OAAAA,EAAwBrD,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoD,GA5KHnD,EA4K4CuB,CAAoB,EA5KhEvB,EA4K6ES,CAAiB,CAAA,CAAA,EAChN0C,EAAwBjD,UA7K0FC,EAAA,CAAAC,KA6KT+C,EAAuBU,SAAA,CA7KdC,CAAA,CAAA,CAAA,EAmI5GX,CAAuB,GAAA,EAkDvBY,GAAiB,IAAA,CAAvB,MAAMA,CAAkB,CACpBlE,YAAYmE,EAAWZ,EAAsB,CAIzC,GAHA,KAAKY,UAAYA,EACjB,KAAKZ,qBAAuBA,EAC5B,KAAK3B,MAAQ,CAAC,EACVuC,IAAchJ,OACd,MAAM,IAAIiJ,MAAM,2BAA2B,CAEnD,CACAN,aAAc,CACV,KAAKlC,MAAQzG,OACb,KAAK6F,OAAO,CAChB,CACA4C,YAAYd,EAAS,CACjBD,GAAYC,EAAS,KAAKlB,KAAK,EAC/B,KAAKZ,OAAO,CAChB,CAaA6C,cAAcf,EAAS,CACnB,KAAKc,YAAYT,GAAgBL,CAAO,CAAC,CAC7C,CACAuB,eAAgB,CACZ,KAAKzC,MAAM0C,QAAU,GACrB,KAAKtD,OAAO,CAChB,CACAA,QAAS,CACL,KAAKuC,qBAAqBvC,OAAO,IAAIQ,GAAO,KAAK2C,UAAW,KAAKvC,KAAK,CAAC,CAC3E,CACJ,CACAsC,OAAAA,EAAkBjE,UAAI,SAAAC,EAAA,CA7N4FqE,GAAA,CAAA,EA8NlHL,EAAkB7D,UA9NgGC,EAAA,CAAAC,KA8Nf2D,EAAiBF,SAAA,CA9NFC,CAAA,CAAA,CAAA,EAqL5GC,CAAiB,GAAA,EAkDjBM,IAAsB,IAAA,CAA5B,MAAMA,UAA+BN,CAAkB,CACnDlE,YAAYuD,EAAsB,CAC9B,MAAM,UAAWA,CAAoB,EACrC,KAAKA,qBAAuBA,EAC5B,KAAKc,cAAc,CACvB,CACA,IAAI3K,0BAA2B,CAC3B,OAAO,KAAK+K,qBAChB,CACJ,CACAD,OAAAA,EAAuBvE,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFsE,GAjPFrE,EAiP0CuB,CAAoB,CAAA,CAAA,EAChL8C,EAAuBE,UAlP2FC,EAAA,CAAApE,KAkPViE,EAAsBhE,UAAA,CAAA,CAAA,iCAAA,CAAA,EAAAoE,eAAA,SAAAvM,EAAAC,EAAAuM,EAAA,CAAyS,GAAzSxM,EAAA,GAlPZyM,EAAAD,EAkP0SzE,EAAW,CAAA,EAAA/H,EAAA,EAAA,CAAA,IAAA0M,EAlPrTC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAmM,sBAAAM,EAAAG,MAAA,CAAA,EAAAC,OAAA,CAAAC,WAAA,aAAAC,OAAA,SAAA1K,MAAA,QAAA2K,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAAlB,QAAA,SAAA,EAAA7D,WAAA,GAAAuD,SAAA,CAAAyB,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAjK,SAAA,SAAAtD,EAAAC,EAAA,CAAA,EAAAuN,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAuO5GtB,CAAsB,GAAA,EAoDtBuB,IAAgC,IAAA,CAAtC,MAAMA,CAAiC,CACnC/F,YAAYvD,EAAa,CACrB,KAAKA,YAAcA,CACvB,CACJ,CACAsJ,OAAAA,EAAiC9F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6F,GAhSZ5F,EAgSiEC,EAAW,CAAA,CAAA,CAAA,EAC9L2F,EAAiC1F,UAjSiFC,EAAA,CAAAC,KAiSAwF,EAAgCvF,UAAA,CAAA,CAAA,GAAA,4BAAA,EAAA,CAAA,EAAAC,WAAA,EAAA,CAAA,EAN5IsF,CAAgC,GAAA,EAiBhCC,GAAUC,GAASA,IAAS9K,OAAY,GAAQ,CAAC8K,EAajDC,GAAmB,IAAA,CAAzB,MAAMA,UAA4B5C,EAAwB,CACtDtD,YAAYuD,EAAsBC,EAAmB,CACjD,MAAMD,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CAKA2C,kBAAmB,CACf,KAAKrH,QAAQwF,QAAU0B,GAAO,KAAKlH,QAAQwF,OAAO,EAClD,KAAKtD,OAAO,CAChB,CAOAoF,sBAAsBC,EAAY,CAC9B,IAAMC,EAAK,KAAKxH,QAAQyH,gBAAkB,KAAKzH,QAAQyH,iBAAmB,CAAC,EAC3ED,EAAGD,CAAU,EAAIL,GAAOM,EAAGD,CAAU,CAAC,EACtC,KAAKrF,OAAO,CAChB,CACA,IAAItH,0BAA2B,CAC3B,GAAI,KAAK8M,cACL,OAAO,KAAKA,cAAc9M,wBAElC,CACJ,CACAwM,OAAAA,EAAoBjG,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgG,GAxVC/F,EAwVoCuB,CAAoB,EAxVxDvB,EAwVqES,CAAiB,CAAA,CAAA,EACxMsF,EAAoBxB,UAzV8FC,EAAA,CAAApE,KAyVb2F,EAAmB1F,UAAA,CAAA,CAAA,yBAAA,CAAA,EAAAoE,eAAA,SAAAvM,EAAAC,EAAAuM,EAAA,CAAmzE,GAAnzExM,EAAA,IAzVNyM,EAAAD,EAyV+qEL,GAAsB,CAAA,EAzVrsEM,EAAAD,EAyVyxEkB,GAAgC,CAAA,GAAA1N,EAAA,EAAA,CAAA,IAAA0M,EAzVzzEC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAkO,cAAAzB,EAAAG,OAAAF,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAmO,kBAAA1B,EAAAG,MAAA,CAAA,EAAAC,OAAA,CAAAuB,UAAA,YAAAC,QAAA,UAAAC,KAAA,OAAAvB,OAAA,SAAAwB,aAAA,eAAAC,cAAA,gBAAAC,WAAA,aAAApM,MAAA,QAAAqM,WAAA,aAAAC,WAAA,aAAAC,aAAA,eAAAC,SAAA,WAAAC,KAAA,OAAAC,UAAA,YAAAC,eAAA,iBAAAC,eAAA,iBAAAC,cAAA,gBAAAC,aAAA,eAAAC,eAAA,iBAAAC,cAAA,gBAAAC,aAAA,eAAAvF,MAAA,QAAAwF,UAAA,YAAAC,IAAA,MAAAC,UAAA,YAAAC,SAAA,WAAAC,KAAA,OAAAC,SAAA,WAAAC,WAAA,aAAAC,OAAA,SAAAC,QAAA,UAAAC,KAAA,OAAAC,UAAA,YAAAC,OAAA,SAAAC,YAAA,cAAAC,QAAA,UAAAC,cAAA,gBAAA3N,KAAA,OAAA4N,UAAA,YAAAC,cAAA,gBAAAC,eAAA,iBAAAC,cAAA,gBAAAC,QAAA,UAAAC,UAAA,YAAAC,cAAA,gBAAAC,QAAA,UAAA3D,QAAA,UAAA4D,QAAA,UAAAC,QAAA,UAAAC,eAAA,iBAAAC,KAAA,OAAAC,UAAA,YAAAC,QAAA,UAAAC,MAAA,QAAAC,WAAA,aAAA9Q,MAAA,QAAA+Q,aAAA,eAAAtL,OAAA,SAAAuL,QAAA,UAAAtJ,KAAA,OAAAuJ,WAAA,aAAAxF,QAAA,UAAAyF,gBAAA,kBAAAC,qBAAA,uBAAAC,OAAA,SAAAC,MAAA,QAAAC,SAAA,WAAAC,MAAA,QAAAC,gBAAA,kBAAAC,eAAA,iBAAAC,OAAA,SAAAC,MAAA,QAAAC,gBAAA,kBAAAC,eAAA,iBAAAC,OAAA,SAAAC,OAAA,SAAAC,UAAA,YAAAC,IAAA,MAAAC,WAAA,aAAAC,UAAA,YAAAC,SAAA,WAAAC,UAAA,YAAAnM,OAAA,SAAAoM,QAAA,UAAAC,MAAA,QAAAC,SAAA,WAAAC,QAAA,SAAA,EAAA7K,WAAA,GAAAuD,SAAA,CAAAuH,EAyVolE,CAAC7J,CAAoB,CAAC,EAzV1mE+D,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAjK,SAAA,SAAAtD,EAAAC,EAAA,CAAA,EAAAuN,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAyT5GI,CAAmB,GAAA,EAgOnBsF,GAAgB,WAChBC,GAAY,CAAEC,WAAY,MAAOC,SAAU,KAAM,EAIjDC,IAAW,IAAA,CAAjB,MAAMA,CAAY,CACd5L,YAAY6L,EAAcC,EAAqB,CAC3C,KAAKD,aAAeA,EACpB,KAAKC,oBAAsBA,EAC3B,KAAKjT,MAAQ,CAAC,EACd,KAAKkT,SAAW,IACpB,CACA,IAAIC,QAAS,CACT,OAAO,KAAKD,WAAa,IAC7B,CACAE,KAAKC,EAAG,CACJ,IAAMC,EAAQD,EAAEE,OAAOD,MACjBE,EAAS,KAAKC,SAASJ,EAAEE,OAAOG,KAAK,EAE3C,GADA,KAAK1T,MAAQqT,EAAErT,MACX,CAAC,KAAKkT,SACN,KAAKA,SAAW,KAAKF,aAAaW,KAAK3M,OAAOC,OAAO,CACjDuM,OAAQA,EACRI,WAAYN,EACZO,QAAS,KAAKA,QACdC,QAAS,KAAKlQ,YACdmQ,UAAWnB,GACXoB,aAAcrB,EAClB,EAAG,KAAKlS,aAAa,CAAC,EAClB,KAAKwS,oBAAoBgB,KACzB,KAAKf,SAASgB,aAAaC,aAAa,MAAO,KAAK,EAExD,KAAKC,OAAO,MAEX,CACD,IAAMC,EAAQ,KAAKnB,SAASmB,MAAMC,SAClCD,EAAMb,OAASA,EACfa,EAAMT,WAAaN,CACvB,CACJ,CACAc,QAAS,CACL,CAEJG,MAAO,CACC,KAAKrB,WACL,KAAKA,SAASsB,MAAM,EACpB,KAAKtB,SAAW,KAExB,CACAjI,aAAc,CACV,KAAKsJ,KAAK,CACd,CACAd,SAASD,EAAQ,CACb,GAAI,CAAC,KAAK/S,eAAiB,CAAC,KAAKA,cAAcgU,SAC3C,OAAOjB,EAEX,IAAMiB,EAAW,KAAKhU,cAAcgU,SAASC,QAAQC,cAC/CC,EAAOH,EAASI,sBAAsB,EACtC,CAAEC,WAAAA,EAAYC,UAAAA,CAAU,EAAI,KAAKC,aAAaP,CAAQ,EAC5D,MAAO,CACHQ,KAAMzB,EAAOyB,KAAOL,EAAKK,KAAOH,EAChCI,IAAK1B,EAAO0B,IAAMN,EAAKM,IAAMH,CACjC,CACJ,CACAC,aAAaN,EAAS,CAClB,GAAI,CAACA,EACD,OAAO,KAEX,IAAII,EAAaJ,EAAQI,WACrBC,EAAYL,EAAQK,UACpBI,EAAST,EAAQU,cACrB,KAAOD,GACHL,GAAcK,EAAOL,WACrBC,GAAaI,EAAOJ,UACpBI,EAASA,EAAOC,cAEpB,MAAO,CAAEN,WAAAA,EAAYC,UAAAA,CAAU,CACnC,CACJ,CACAhC,OAAAA,EAAY3L,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0L,GAvmBSzL,EAumBuB+N,CAAY,EAvmBnC/N,EAumBmDgO,CAAmB,CAAA,CAAA,EACxLvC,EAAYvL,UAxmBsGC,EAAA,CAAAC,KAwmBrBqL,CAAW,CAAA,EA1ElGA,CAAW,GAAA,EAkFjB,SAASwC,IAAc,CACnB,GAAIC,GAAoB,EACpB,OAAO,IAAIC,EAAWC,SAASC,IAAI,CAE3C,CAEA,IAGMC,IAAyB,IAAA,CAA/B,MAAMA,UAAkC7C,EAAY,CAChD5L,YAAY6L,EAAcC,EAAqB,CAC3C,MAAMD,EAAcC,CAAmB,EACvC,KAAKY,QAAU,EACnB,CACAT,KAAKC,EAAG,CACJ,MAAMD,KAAKC,CAAC,EACZ,KAAKlT,MAAQkT,EAAElT,MACf,KAAK+S,SAASmB,MAAMwB,kBAAkBC,cAAc,CACxD,CACJ,CACAF,OAAAA,EAA0BxO,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuO,GApoBLtO,EAooBmD+N,CAAY,EApoB/D/N,EAooB+EgO,CAAmB,CAAA,CAAA,EACpNM,EAA0B/J,UAroBwFC,EAAA,CAAApE,KAqoBPkO,EAAyBjO,UAAA,CAAA,CAAA,+BAAA,CAAA,EAAAoO,UAAA,SAAAvW,EAAAC,EAAA,CAroBlB,GAqoBkBD,EAAA,GAroBlBwW,EAAA1W,GAAA,CAAA,EAAAE,EAAA,EAAA,CAAA,IAAA0M,EAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAmE,YAAAsI,EAAAG,MAAA,CAAA,EAAAC,OAAA,CAAA1D,IAAA,MAAAnI,cAAA,eAAA,EAAAmH,WAAA,GAAAuD,SAAA,CAAAuH,EAqoBsJ,CAAC2C,EAAc,CAC3QY,QAASC,GACTC,WAAYZ,EAChB,CAAC,CAAC,EAxoBwG3I,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAqJ,OAAA,CAAA,CAAA,UAAA,EAAA,EAAA,CAAA,EAAA,kBAAA,4BAAA,EAAA,SAAA,CAAA,EAAAtT,SAAA,SAAAtD,EAAAC,EAAA,CAAAD,EAAA,GAAAoB,EAAA,EAAArB,GAAA,EAAA,EAAA,cAAA,KAAA,EAAA8W,EAyoBrF,CAAC,EAAAC,aAAA,CAKmCC,EAAO,EAAAvJ,cAAA,CAAA,CAAA,EArBlE4I,CAAyB,GAAA,EAiDzBY,GAAO,CAAC,eAAgB,YAAa,QAAS,OAAO,EAIrDC,GAAmC,IAAA,CAAzC,MAAMA,CAAoC,CACtCtP,aAAc,CACV,KAAKuP,YAAc,CAAA,EACnB,KAAKC,YAAc,CAAC,CACxB,CACAvD,KAAKC,EAAG,CACJ,IAAMuD,EAAoB,KAAKC,2BAA2BC,QAAQ,EAC5DC,EAAW1D,EAAE0D,SACbC,EAAY3D,EAAE2D,UACpB,QAASC,EAAM,EAAGA,EAAML,EAAkBhN,OAAQqN,IAC9C,GAAIL,EAAkBK,CAAG,EAAErO,MAAQmO,EAAWC,EAAW,CACrDJ,EAAkBK,CAAG,EAAE7D,KAAKC,CAAC,EAC7B,KACJ,CAER,CACAkB,MAAO,CACH,IAAMqC,EAAoB,KAAKC,2BAA2BC,QAAQ,EAClE,QAASG,EAAM,EAAGA,EAAML,EAAkBhN,OAAQqN,IAC9CL,EAAkBK,CAAG,EAAE1C,KAAK,CAEpC,CACA,IAAIpB,QAAS,CACT,OAAO,KAAKuD,YAAY9M,OAAS,CACrC,CACAsN,wBAAwBjR,EAAS,CAC7B,IAAMkR,EAAS,KAAKC,YAAYnR,CAAO,EACjCoR,EAAM,KAAKV,YACjB,QAAW/N,KAAOyO,EACTF,EAAOvO,CAAG,IACX,KAAK0O,cAAc1O,CAAG,EACtB,OAAOyO,EAAIzO,CAAG,GAGtB,QAAWA,KAAOuO,EACTE,EAAIzO,CAAG,IACRyO,EAAIzO,CAAG,EAAIuO,EAAOvO,CAAG,EACrB,KAAK8N,YAAYpN,KAAKV,CAAG,EAGrC,CACA0O,cAAc1O,EAAK,CACf,IAAM2O,EAAO,KAAKb,YAClB,QAASO,EAAM,EAAGA,EAAMM,EAAK3N,OAAQqN,IACjC,GAAIM,EAAKN,CAAG,IAAMrO,EAAK,CACnB2O,EAAKC,OAAOP,EAAK,CAAC,EAClB,KACJ,CAER,CACAG,YAAYnR,EAAS,CACjB,IAAMoR,EAAM,CAAC,EACb,QAASJ,EAAM,EAAGA,EAAMT,GAAK5M,OAAQqN,IAAO,CACxC,IAAMQ,EAAW,KAAKC,4BAA4BzR,EAASuQ,GAAKS,CAAG,CAAC,EACpE,QAASU,EAAa,EAAGA,EAAaF,EAAS7N,OAAQ+N,IAAc,CACjE,IAAMlF,EAAUgF,EAASE,CAAU,EACnCN,EAAI5E,EAAQtQ,KAAOsQ,EAAQmF,KAAK,EAAInF,CACxC,CACJ,CACA,OAAO4E,CACX,CACAK,4BAA4BzR,EAAS9D,EAAM,CACvC,IAAMoI,EAAS,CAAA,EACf,GAAItE,EAAQ9D,CAAI,EAAG,CACf,IAAM0V,EAAO,CAAA,EAAGC,OAAO7R,EAAQ9D,CAAI,CAAC,EACpC,QAAS8U,EAAM,EAAGA,EAAMY,EAAKjO,OAAQqN,IAAO,CACxC,IAAMxE,GAAWoF,EAAKZ,CAAG,EAAEc,WAAa,CAAC,GAAGtF,QACxCA,GAAWA,EAAQhH,SACnBlB,EAAOjB,KAAK,CACRsO,MAAOX,EACP9U,KAAMA,CACV,CAAC,CAET,CACJ,CACA,OAAOoI,CACX,CACJ,CACAkM,OAAAA,EAAoCrP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoP,EAAmC,EACpKA,EAAoC5K,UA7vB8EC,EAAA,CAAApE,KA6vBG+O,EAAmC9O,UAAA,CAAA,CAAA,0CAAA,CAAA,EAAAoO,UAAA,SAAAvW,EAAAC,EAAA,CAAwN,GAAxND,EAAA,GA7vBtCwW,EA6vBqOJ,GAAyB,CAAA,EAAApW,EAAA,EAAA,CAAA,IAAA0M,EA7vB9PC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAoX,2BAAA3K,EAAA,CAAA,EAAAI,OAAA,CAAA7L,cAAA,eAAA,EAAAmH,WAAA,GAAAuD,SAAA,CAAA0B,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAqJ,OAAA,CAAA,CAAA,EAAA,MAAA,gBAAA,EAAA,QAAA,SAAA,EAAA,CAAA,EAAA,MAAA,eAAA,CAAA,EAAAtT,SAAA,SAAAtD,EAAAC,EAAA,CAAAD,EAAA,GAAAoB,EAAA,EAAAR,GAAA,EAAA,EAAA,gCAAA,CA8vBA,EAACZ,EAAA,GA9vBDO,EAAA,UAAAN,EAAAiX,WA8vB9C,CAAC,EAAAJ,aAAA,CAEJ0B,GAAwHpC,EAAyB,EAAA5I,cAAA,CAAA,CAAA,EAlF5MyJ,CAAmC,GAAA,EAyInCwB,IAA8B,IAAA,CAApC,MAAMA,CAA+B,CACjC9Q,YAAYvD,EAAa,CACrB,KAAKA,YAAcA,CACvB,CACJ,CACAqU,OAAAA,EAA+B7Q,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4Q,GA5zBV3Q,EA4zB6DC,EAAW,CAAA,CAAA,CAAA,EAC1L0Q,EAA+BzQ,UA7zBmFC,EAAA,CAAAC,KA6zBFuQ,EAA8BtQ,UAAA,CAAA,CAAA,GAAA,kCAAA,EAAA,CAAA,EAAAC,WAAA,EAAA,CAAA,EANxIqQ,CAA8B,GAAA,EA+D9BC,IAA8B,IAAA,CAApC,MAAMA,CAA+B,CACjC/Q,YAAYvD,EAAa,CACrB,KAAKA,YAAcA,CACvB,CACJ,CACAsU,OAAAA,EAA+B9Q,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6Q,GA33BV5Q,EA23B6DC,EAAW,CAAA,CAAA,CAAA,EAC1L2Q,EAA+B1Q,UA53BmFC,EAAA,CAAAC,KA43BFwQ,EAA8BvQ,UAAA,CAAA,CAAA,GAAA,kCAAA,EAAA,CAAA,EAAAC,WAAA,EAAA,CAAA,EANxIsQ,CAA8B,GAAA,EAoB9BC,GAAN,KAA2B,CAIvBhR,YAAYuM,EAAOhH,EAAQ5J,EAAU,CACjC,KAAK3C,MAAQuT,EAAMvT,MACnB,KAAKiY,SAAW1E,EAAM0E,SACtB,KAAKC,cAAgB3E,EAAM4E,WAC3B,KAAKzW,OAAS6R,EAAM7R,OACpB,KAAK0W,SAAW7E,EAAM6E,SACtB,KAAKC,WAAa9E,EAAM8E,WACxB,KAAKC,aAAe/E,EAAM+E,aAC1B,KAAKC,MAAQhF,EAAMgF,MACnB,KAAKC,IAAMjF,EAAMiF,IACjB,KAAKC,KAAOlF,EAAMkF,KAClB,KAAKC,KAAOnF,EAAMmF,KAClB,KAAKC,MAAQpF,EAAMoF,MACnB,KAAKC,KAAOrF,EAAMqF,KAClB,KAAKC,MAAQtF,EAAMsF,MACnB,KAAKlW,SAAWA,EAChB,KAAK4Q,MAAQA,EACb,KAAKhH,OAASA,CAClB,CAIA,IAAIlL,gBAAiB,CACjB,OAAO,KAAKkL,OAAS,KAAKgH,MAAMuF,YAAY,KAAKvM,MAAM,EAAIwM,OAAO,KAAK/Y,KAAK,CAChF,CACJ,EAKA,SAASgZ,GAAUzE,EAASS,EAAQ,CAChC,IAAIiE,EAAU1E,EACd,KAAO0E,GAAWA,IAAYjE,GAC1BiE,EAAUA,EAAQC,WAEtB,MAAOD,EAAAA,CACX,CAEA,IAGME,GAAsB,IAAA,CAA5B,MAAMA,CAAuB,CACzBC,YAAYzW,EAAU,CAClB,KAAKA,SAAWA,CACpB,CACA0W,YAAYC,EAAa,CACrB,OAAI,KAAKC,iBAAmB,KAAKA,gBAAgBD,CAAW,EACjD,KAAKC,gBAAgBD,CAAW,EAEpC,KAAK3W,QAChB,CACA6W,mBAAmBD,EAAiB,CAChC,KAAKA,gBAAkBA,CAC3B,CACAE,kBAAkBC,EAAgB,CAC9B,KAAKA,eAAiBA,CAC1B,CACAC,mBAAoB,CAChB,OAAO,KAAKD,cAChB,CACJ,CACAP,OAAAA,EAAuBlS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiS,EAAsB,EAC1IA,EAAuBhR,WA58B2FC,EAAA,CAAAC,MA48BM8Q,EAAsB7Q,QAAtB6Q,EAAsBlS,SAAA,CAAA,EArBxIkS,CAAsB,GAAA,EA0BtBS,GAAuB,yBACvBC,GAAgB,kBAIhBC,GAAqB,IAAA,CAA3B,MAAMA,UAA8BlH,EAAY,CAC5C5L,YAAY6L,EAAckH,EAAiBjH,EAAqBnK,EAAQ,CACpE,MAAMkK,EAAcC,CAAmB,EACvC,KAAKD,aAAeA,EACpB,KAAKkH,gBAAkBA,EACvB,KAAKjH,oBAAsBA,EAC3B,KAAKnK,OAASA,EACd,KAAKhI,qBAAuB,CAAC,EAC7B,KAAKI,2BAA6B,CAAC,EACnC,KAAK2S,QAAU,GACf,KAAKsG,aAAe,0BACpB,KAAKC,MAAQ,IAAIC,EACjB,KAAKjZ,aAAe,CAAC,CACzB,CACAgS,KAAKC,EAAG,CACJ,KAAKhS,OAASgS,EAAEhS,OAChB,KAAKD,aAAe4F,OAAOC,OAAO,CAC9B,CAAC8S,EAAoB,EAAG1G,EAAEhS,OAC1B,CAAC2Y,EAAa,EAAG,GACjB,CAAC3G,EAAEiH,SAAS,EAAG,CAAC,CAACjH,EAAEiH,SACvB,EAAG,KAAKC,UAAU,EACblH,EAAEhS,QAKH,KAAKJ,+BAAiC,KAAKiZ,gBAAgBJ,kBAAkB,GACtE,KAAKU,6BAA6B5W,YACzC,KAAK1C,2BAA6B,KAAKuZ,sBAAsBpH,CAAC,IAN9D,KAAKvS,qBAAuB,IAAIqX,GAAqB9E,EAAEK,MAAOL,EAAE3G,MAAM,EACtE,KAAK7L,yBAA2B,KAAK6Z,iBAAiBrH,EAAEK,KAAK,GAOjE,MAAMN,KAAKC,CAAC,CAChB,CACAsH,gBAAgBjG,EAAS,CACrB,GAAI,KAAKxB,SACL,OAAOiG,GAAUzE,EAAS,KAAKxB,SAASgB,YAAY,CAE5D,CACAuG,sBAAsBpH,EAAG,CAErB,IAAMxQ,EADSwQ,EAAEpQ,OACS2X,OAAQlH,GAAU,OAAOA,EAAM7R,OAAOM,KAAS,GAAW,EAAEyH,OAAS,EACzFjH,EAAc0Q,EAAExR,OAAO+H,OAAS,EAClCvG,EAAU,EACd,OAAIR,GACAQ,IAEAV,GACAU,IAEG,CACH+U,SAAU/E,EAAE+E,SACZjV,aAAckQ,EAAElQ,aAChBR,YAAaA,EACbU,QAASA,EACTR,WAAYA,EACZI,OAAQ,KAAK4X,WAAWxH,EAAEpQ,OAAQoQ,EAAE3G,MAAM,CAC9C,CACJ,CACAgO,iBAAiBhH,EAAO,CACpB,OAAO,KAAKwG,gBAAgBV,YAAY9F,EAAM7R,OAAO+V,KAAK,GAAK,KAAKkD,6BAA6BlX,WACrG,CACAiX,WAAW5X,EAAQyJ,EAAQ,CACvB,IAAMnC,EAAS,CAAA,EACf,QAAS0M,EAAM,EAAGA,EAAMhU,EAAO2G,OAAQqN,IAAO,CAC1C,IAAMvD,EAAQzQ,EAAOgU,CAAG,EAClBnU,EAAW,KAAK4X,iBAAiBhH,CAAK,EACtCqH,IAAgBrH,EAAMzN,SAAW,CAAC,GAAGwM,SAAW,CAAC,GAAG/F,QAAUA,EACpEnC,EAAOjB,KAAK,IAAI6O,GAAqBzE,EAAOqH,EAAajY,CAAQ,CAAC,CACtE,CACA,OAAOyH,CACX,CACA6J,QAAS,CACL,KAAKtL,OAAOe,kBAAkB,IAAM,CAChC,KAAKmR,uBAAyB,KAAK9H,SAASgB,aAAa+G,iBAAiB,aAAeC,GAAS,CAC9F,KAAKd,MAAMe,KAAKD,CAAI,CACxB,CAAC,CACL,CAAC,EACD,KAAKhI,SAASgB,aAAaoG,WAAa,IAAI,KAAKH,YAAY,EACjE,CACA5F,MAAO,CACC,KAAKyG,yBACL,KAAKA,uBAAuB,EAC5B,KAAKA,uBAAyB,MAElC,MAAMzG,KAAK,CACf,CACJ,CACA0F,OAAAA,EAAsB7S,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4S,GA5iCD3S,EA4iC2C+N,CAAY,EA5iCvD/N,EA4iCoEgS,CAAsB,EA5iC1FhS,EA4iC0GgO,CAAmB,EA5iC7HhO,EA4iC6IyC,CAAM,CAAA,CAAA,EACrQkQ,EAAsBpO,UA7iC4FC,EAAA,CAAApE,KA6iCXuS,EAAqBtS,UAAA,CAAA,CAAA,2BAAA,CAAA,EAAAoO,UAAA,SAAAvW,EAAAC,EAAA,CA7iCV,GA6iCUD,EAAA,IA7iCVwW,EAgjChBiC,GAA8B,CAAA,EAhjCdjC,EAgjC6GkC,GAA8B,CAAA,EAhjC3IlC,EAAA1W,GAAA,CAAA,GAAAE,EAAA,EAAA,CAAA,IAAA0M,EAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAqb,6BAAA5O,EAAAG,OAAAF,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAA+a,6BAAAtO,EAAAG,OAAAF,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAmE,YAAAsI,EAAAG,MAAA,CAAA,EAAAC,OAAA,CAAAuH,QAAA,UAAA0G,WAAA,aAAA9Z,cAAA,gBAAA0Z,aAAA,cAAA,EAAAiB,QAAA,CAAAhB,MAAA,OAAA,EAAAxS,WAAA,GAAAuD,SAAA,CAAAuH,EA6iCuO,CAAC2C,EAAc,CAC5VY,QAASC,GACTC,WAAYZ,EAChB,CAAC,CAAC,EAhjCwG3I,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAqJ,OAAA,CAAA,CAAA,UAAA,EAAA,EAAA,CAAA,kCAAA,EAAA,EAAA,CAAA,kCAAA,EAAA,EAAA,CAAA,EAAA,UAAA,SAAA,EAAA,CAAA,EAAA,MAAA,EAAA,CAAA,EAAA,mBAAA,yBAAA,EAAA,CAAA,EAAA,WAAA,EAAA,CAAA,EAAA,QAAA,SAAA,EAAA,CAAA,EAAA,+BAAA,CAAA,EAAAtT,SAAA,SAAAtD,EAAAC,EAAA,CAAAD,EAAA,GAAAoB,EAAA,EAAAO,GAAA,EAAA,EAAA,cAAA,KAAA,EAAAkV,EAijCzF,EAAC,EAAA/U,GAAA,EAAA,EAAA,cAAA,CAW0D,EAAC,EAAAyB,GAAA,EAAA,EAAA,cAAA,CAGgG,CAAC,EAAAuT,aAAA,CAiBrH+E,GAA2F9E,GAAkF+E,EAAiGC,GAAoKtD,GAA4GC,GAA4GF,EAAK,EAAAhL,cAAA,CAAA,CAAA,EA1H1sBiN,CAAqB,GAAA,EA+LrBuB,GAAN,cAAoCC,EAAiB,CACjDtU,YAAYmN,EAAU,CAClB,MAAMA,CAAQ,EACd,KAAKoH,WAAa,CACdC,YAAa,gBACbC,gBAAiB,oBACjBC,OAAQ,WACRC,YAAa,gBACbC,KAAM,QACV,CACJ,CACJ,EAQMC,GAAoBA,IAAMhV,OAAOC,OAAO,CAAC,EAAGgV,GAAe,EAAG,CAChEC,aAAc,CACVnE,UAAW,CACPjW,MAAO,oBACX,EACAoE,OAAQ,CACJpE,MAAO,qBACP2K,KAAM,YACV,EACA2C,KAAM,CACFtN,MAAO,qBACX,EACAqa,eAAgB,CACZra,MAAO,qBACX,EACAsa,eAAgB,CACZta,MAAO,qBACX,EACAyQ,MAAO,CACH8J,KAAM,CACF9P,WAAY,qBACZC,OAAQ,CACJ1K,MAAO,oBACX,CACJ,EACAsN,KAAM,CACFtN,MAAO,oBACX,EACAiD,MAAO,CACH0H,KAAM,YACV,CACJ,EACA6P,MAAO,CACHxa,MAAO,qBACP2K,KAAM,YACV,CACJ,EACA8P,UAAW,CACPhQ,WAAY,oBAChB,EACAiQ,OAAQ,CACJC,cAAe,CACXvW,OAAQ,CACJpE,MAAO,0BACX,EACAwQ,QAAS,CACLxQ,MAAO,0BACX,CACJ,EACAoE,OAAQ,CACJpE,MAAO,qBACP2K,KAAM,YACV,CACJ,EACAiQ,eAAgB,CACZC,QAAS,CACLnO,UAAW,sBACXiB,KAAM,CACF3N,MAAO,oBACX,EACA6N,OAAQ,CACJ7N,MAAO,oBACX,EACAwP,SAAU,CACNxP,MAAO,kBACX,CACJ,EACA8a,OAAQ,CACJnX,OAAQ,CACJ3D,MAAO,oBACX,CACJ,EACA+a,YAAa,CACTrO,UAAW,qBACXY,KAAM,CACFtN,MAAO,oBACX,CACJ,EACAqQ,UAAW,CACPrQ,MAAO,oBACX,EACAgb,oBAAqB,CACjB1N,KAAM,CACFtN,MAAO,qBACX,CACJ,EACAua,KAAM,CACF7P,OAAQ,CACJ1K,MAAO,qBACX,CACJ,EACAoE,OAAQ,CACJqG,WAAY,qBACZzK,MAAO,qBACPqO,QAAS,GACT1D,KAAM,YACV,EACA8F,MAAO,CACH8J,KAAM,CACF9P,WAAY,qBACZC,OAAQ,CACJ1K,MAAO,oBACX,CACJ,EACAsN,KAAM,CACFtN,MAAO,oBACX,EACAiD,MAAO,CACH0H,KAAM,YACV,CACJ,EACA6D,QAAS,CACLyM,SAAU,MACd,EACAC,gBAAiB,CACbxO,UAAW,sBACXiB,KAAM,CACF3N,MAAO,oBACX,EACA6N,OAAQ,CACJ7N,MAAO,oBACX,EACAwP,SAAU,CACNxP,MAAO,kBACX,CACJ,EACAmb,eAAgB,CACZxX,OAAQ,CACJ3D,MAAO,oBACX,CACJ,EACAob,UAAW,CACP9N,KAAM,CACFtN,MAAO,qBACX,CACJ,EACAqb,KAAM,CACFhN,QAAS,EACb,CACJ,EACAmM,MAAO,CACHxa,MAAO,qBACP2K,KAAM,YACV,EACA2Q,aAAc,CACV,mBACA,oBACA,oBACA,oBACA,oBACA,mBAAmB,CAE3B,CAAC,EAEK3Q,GAAQzM,GAAU,GAAGA,EAAMqd,UAAU,IAAIrd,EAAMsd,QAAQ,IAAItd,EAAMud,UAAU,GAC3EC,GAA2B9I,GAAY+I,OAAOC,iBAAiBhJ,CAAO,EAAEiJ,gBACxEC,GAAaC,GAAWA,EAAOC,YAAY,EAAEC,WAAW,CAAC,EAAI,GAC7DC,GAAa7b,GAAS,CACxB,IAAM8b,EAAQ9b,EAAK+b,MAAM,iBAAiB,EAC1C,GAAID,IAAU,KACV,OAAOL,GAAUK,EAAM,CAAC,CAAC,EAE7B,IAAME,EAAMhc,EAAKuH,MAAM,WAAW,EAAE,CAAC,EACrC,OAAO0U,SAASD,EAAK,EAAE,EAAI,CAC/B,EACME,GAAgB,GAChBC,GAAiBA,IAAM,CACzB,IAAIxb,EAAW;;;;;;;IAQf,QAASyb,EAAI,EAAGA,EAAIF,GAAeE,IAC/Bzb,GAAY;kCACcyb,EAAI,CAAC,WAEnC,OAAOzb,CACX,EACMA,GAAWA,IAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoCfwb,GAAe,CAAC;;EAMlBE,IAAY,IAAA,CAAlB,MAAMA,UAAqB3V,CAAqB,CAC5C1B,YAAY2B,EAAQ,CAChB,MAAMA,CAAM,EACZ,KAAK2V,OAAS,EAClB,CACAC,WAAY,CACJ,KAAKD,QAAU,CAACjJ,GAAoB,IAGnC,KAAKmJ,UAAU,GAChB,KAAKC,iBAAiB,EAE1B,KAAKH,OAAS,GACd,KAAKpW,KAAK,EACd,CACAwW,OAAQ,CACJ,KAAK9V,MAAQ,CAAC,EACd,KAAK0V,OAAS,GACd,KAAKC,UAAU,CACnB,CACAC,WAAY,CACR,KAAKG,cAAc,EACnB,IAAMC,EAAY,KAAKC,WAAW,SAAS,IACvC,KAAKA,WAAW,kBAAkB,EACtC,GAAI,CACID,IACA,KAAKzV,KAAK2S,GAAe,CAAC,EAC1B,KAAKgD,UAAU,EACf,KAAKC,SAAS,EACd,KAAKC,gBAAgB,EAE7B,QAAC,CAEG,KAAKC,eAAe,CACxB,CACA,OAAOL,CACX,CACAH,kBAAmB,CACf,KAAKtV,KAAK0S,GAAkB,CAAC,CACjC,CACA8C,eAAgB,CACZ,IAAMO,EAAY,KAAK3K,QAAUgB,SAASoJ,cAAc,KAAK,EAC7DO,EAAUrf,MAAMsf,QAAU,OAC1BD,EAAUE,UAAYzc,GAAS,EAC/B4S,SAASC,KAAK6J,YAAYH,CAAS,CACvC,CACAD,gBAAiB,CACT,KAAK1K,UACLgB,SAASC,KAAK8J,YAAY,KAAK/K,OAAO,EACtC,KAAKA,QAAUpS,OAEvB,CACAod,SAAS9W,EAAKzI,EAAO,CACjB,KAAKoJ,IAAIX,EAAKzI,CAAK,CACvB,CACA8e,WAAY,CACR,KAAKU,SAAS,+BAAgC,4BAA4B,EAC1E,KAAKA,SAAS,4BAA6B,mBAAmB,EAC9D,KAAKA,SAAS,0BAA2B,mBAAmB,EAC5D,KAAKA,SAAS,oCAAqC,mBAAmB,EACtE,KAAKA,SAAS,oCAAqC,mBAAmB,EACtE,KAAKA,SAAS,qCAAsC,wBAAwB,EAC5E,KAAKA,SAAS,uCAAwC,oBAAoB,EAC1E,KAAKA,SAAS,gCAAiC,mBAAmB,EAClE,KAAKA,SAAS,2BAA4B,mBAAmB,EAC7D,KAAKA,SAAS,uBAAwB,YAAY,EAClD,KAAKA,SAAS,oCAAqC,gBAAgB,EACnE,KAAKA,SAAS,qCAAsC,gBAAgB,EACpE,KAAKA,SAAS,sBAAuB,mBAAmB,EACxD,KAAKA,SAAS,qBAAsB,mBAAmB,EACvD,KAAKA,SAAS,mCAAoC,mBAAmB,EACrE,KAAKA,SAAS,oCAAqC,MAAM,EACzD,KAAKA,SAAS,sCAAuC,MAAM,EAC3D,KAAKA,SAAS,wCAAyC,SAAS,EAChE,KAAKA,SAAS,qCAAsC,mBAAmB,EACvE,KAAKA,SAAS,uCAAwC,mBAAmB,EACzE,KAAKA,SAAS,wCAAyC,mBAAmB,EAC1E,KAAKA,SAAS,iCAAkC,6BAA6B,EAC7E,KAAKA,SAAS,gDAAiD,mBAAmB,EAClF,KAAKA,SAAS,mCAAoC,mBAAmB,EACrE,KAAKA,SAAS,mCAAoC,YAAY,EAC9D,KAAKA,SAAS,8BAA+B,mBAAmB,EAChE,KAAKA,SAAS,uCAAwC,wBAAwB,EAC9E,KAAKA,SAAS,yCAA0C,oBAAoB,EAC5E,KAAKA,SAAS,kCAAmC,mBAAmB,EACpE,KAAKA,SAAS,2CAA4C,mBAAmB,EAC7E,KAAKA,SAAS,4CAA6C,MAAM,EACjE,KAAKA,SAAS,8CAA+C,MAAM,EACnE,KAAKA,SAAS,gDAAiD,SAAS,EACxE,KAAKA,SAAS,6CAA8C,mBAAmB,EAC/E,KAAKA,SAAS,sCAAuC,mBAAmB,EACxE,KAAKA,SAAS,cAAe,mBAAmB,EAChD,KAAKA,SAAS,iBAAkB,mBAAmB,EAEnD,KAAKA,SAAS,eAAgB,mBAAmB,EACjD,KAAKA,SAAS,sBAAuB,YAAY,EAEjD,IAAMjL,EAAU,KAAKA,QAAQkL,cAAc,4BAA4B,EACvElL,EAAQ1U,MAAM8B,MAAQ,4BACtB,KAAK6d,SAAS,cAAe,qBAAsB,OAAO,EAC1D,IAAMxP,EAAU0P,WAAW,KAAKC,WAAW,oBAAoB,EAAE3P,OAAO,EACnE4P,MAAM5P,CAAO,IACd,KAAKuP,SAAS,8BAA+BvP,CAAO,EACpD,KAAKuP,SAAS,mCAAoCvP,CAAO,EACzD,KAAKuP,SAAS,sCAAuCvP,CAAO,EAC5D,KAAKuP,SAAS,gCAAiCvP,CAAO,GAE1D,KAAK6P,mBAAmB,CAAC,OAAQ,cAAc,EAAG,6BAA6B,EAC/E,KAAKA,mBAAmB,CAAC,OAAQ,cAAc,EAAG,6BAA6B,CACnF,CACAA,mBAAmBC,EAAaC,EAAU,CACtC,IAAMC,EAAkBN,WAAW,KAAKC,WAAWI,CAAQ,EAAE/P,OAAO,EAChE,CAAC4P,MAAMI,CAAe,GAAKA,EAAkB,GAC7CF,EAAYG,QAAQ1Y,GAAQ,KAAKgY,SAAS,kBAAkBhY,CAAI,6BAA8ByY,CAAe,CAAC,CAEtH,CACAjB,UAAW,CACP,IAAMmB,EAAc5T,GAAK,KAAKqT,WAAW,YAAY,CAAC,EAChDQ,EAAY7T,GAAK,KAAKqT,WAAW,kBAAkB,CAAC,EACpDS,EAAgB9T,GAAK,KAAKqT,WAAW,uBAAuB,CAAC,EAC7DU,EAAY/T,GAAK,KAAKqT,WAAW,kBAAkB,CAAC,EAC1D,KAAKJ,SAAS,2BAA4Bc,CAAS,EACnD,KAAKd,SAAS,gCAAiCW,CAAW,EAC1D,KAAKX,SAAS,0BAA2BW,CAAW,EACpD,KAAKX,SAAS,qBAAsBW,CAAW,EAC/C,KAAKX,SAAS,6BAA8Bc,CAAS,EACrD,KAAKd,SAAS,kCAAmCW,CAAW,EAC5D,KAAKX,SAAS,aAAcY,CAAS,EACrC,KAAKZ,SAAS,gBAAiBa,CAAa,EAC5C,KAAKb,SAAS,0BAA2Ba,CAAa,EAEtD,KAAKb,SAAS,cAAeW,CAAW,CAC5C,CACAlB,iBAAkB,CACd,IAAMzK,EAAU,KAAKA,QACf7S,EAAS,CAAA,EAAG4e,MAAMrW,KAAKsK,EAAQgM,iBAAiB,oBAAoB,CAAC,EACrEC,EAAanD,GAAwB9I,EAAQkL,cAAc,sBAAsB,CAAC,EAClFxC,EAAevb,EAAO+e,OAAO,CAACC,EAAKC,IAAO,CAC5C,IAAMC,EAAM/C,GAAU8C,EAAGxG,SAAS,EAC5BxY,EAAQ0b,GAAwBsD,CAAE,EACxC,OAAIhf,IAAU6e,IACVE,EAAIE,CAAG,EAAIjf,GAER+e,CACX,EAAG,CAAA,CACH,EACA,KAAKnB,SAAS,eAAgBtC,CAAY,CAC9C,CACAuC,SAAS/W,EAAKoY,EAASC,EAAW,kBAAmB,CACjD,KAAKvB,SAAS9W,EAAK,KAAKkX,WAAWkB,CAAO,EAAEC,CAAQ,CAAC,CACzD,CACAjC,WAAWgC,EAAS,CAChB,OAAO,KAAKlB,WAAWkB,CAAO,EAAErD,eACpC,CACAmC,WAAWkB,EAAS,CAChB,IAAMtM,EAAU,KAAKA,QAAQkL,cAAc,WAAWoB,CAAO,EAAE,EAC/D,OAAOvD,OAAOC,iBAAiBhJ,CAAO,CAC1C,CACJ,CACA8J,OAAAA,EAAapX,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmX,GAtiDQ1U,EAsiDyBC,CAAM,CAAA,CAAA,EACjJyU,EAAalW,WAviDqGC,EAAA,CAAAC,MAuiDJgW,EAAY/V,QAAZ+V,EAAYpX,UAAA8Z,WAAc,MAAM,CAAA,EAhKxI1C,CAAY,GAAA,EA2KZ2C,GAAS,IAAA,CAAf,MAAMA,CAAU,CAIZha,YAAYW,EAAQ,CAChB,KAAKA,OAASA,CAClB,CACJ,CACAqZ,OAAAA,EAAU/Z,UAAI,SAAAC,EAAA,CA1jDoGqE,GAAA,CAAA,EA2jDlHyV,EAAU3Z,UA3jDwGC,EAAA,CAAAC,KA2jDvByZ,CAAS,CAAA,EAT9FA,CAAS,GAAA,EAiBTC,GAAN,cAAkCD,CAAU,CAIxCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKiG,KAAOsF,EAAEtF,KACd,KAAKwK,SAAWlF,EAAEkF,SAClB,KAAKX,MAAQvE,EAAEuE,MACf,KAAKzS,KAAOkO,EAAElO,KACd,KAAKhF,MAAQkT,EAAElT,KACnB,CACJ,EAKMkhB,GAAgB,IAAA,CAAtB,MAAMA,UAAyBF,CAAU,CACrCha,aAAc,CACV,MAAM,GAAGma,SAAS,EAClB,KAAKC,UAAY,EACrB,CAMAC,gBAAiB,CACb,KAAKD,UAAY,EACrB,CAQAE,oBAAqB,CACjB,OAAO,KAAKF,SAChB,CACJ,CACAF,OAAAA,EAAiBja,WAAI,IAAA,CAAA,IAAAsa,EAAA,OAAA,SAAAra,EAAA,CAAA,OAAAqa,IAAAA,EA5mD6FC,GA4mDJN,CAAgB,IAAAha,GAAhBga,CAAgB,CAAA,CAAA,GAAA,EAC9HA,EAAiB7Z,UA7mDiGC,EAAA,CAAAC,KA6mDhB2Z,EAAgBlW,SAAA,CA7mDAyB,CAAA,CAAA,CAAA,EAolD5GyU,CAAgB,GAAA,EAiChBO,GAAN,cAAwBP,CAAiB,CAIrCla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK+Z,WAAaxO,EAAEwO,WACpB,KAAKC,cAAgBzO,EAAEyO,aAC3B,CACJ,EAKMC,GAAN,cAA2BZ,CAAU,CAIjCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK+Z,WAAaxO,EAAEwO,WACpB,KAAKC,cAAgBzO,EAAEyO,aAC3B,CACJ,EAKME,GAAN,cAA6BX,CAAiB,CAI1Cla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK+Z,WAAaxO,EAAEwO,WACpB,KAAKC,cAAgBzO,EAAEyO,aAC3B,CACJ,EAKMG,GAAN,cAA0BZ,CAAiB,CAIvCla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKjG,OAASwR,EAAExR,OAChB,KAAK4X,YAAcpG,EAAEoG,YACrB,KAAKjM,WAAa6F,EAAE7F,WACpB,KAAKrI,KAAOkO,EAAElO,IAClB,CACJ,EAKM+c,GAAN,cAAmCD,EAAY,CAI3CT,gBAAiB,CACb,MAAMA,eAAe,CACzB,CACJ,EAMMW,GAAN,cAAmCF,EAAY,CAI3CT,gBAAiB,CACb,CAKJC,oBAAqB,CACjB,MAAO,EACX,CACJ,EAKMW,GAAN,cAAwBjB,CAAU,CAI9Bha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKsQ,SAAW/E,EAAE+E,SAClB,KAAKG,SAAWlF,EAAEkF,SAClB,KAAK1W,OAASwR,EAAExR,OAChB,KAAK1B,MAAQkT,EAAElT,MACf,KAAKiR,OAASiC,EAAEjC,MACpB,CACJ,EAKMiR,GAAN,cAA6BD,EAAU,CAAA,EAMjCE,GAAN,cAA6BF,EAAU,CAAA,EAMjCG,GAAN,cAA6BH,EAAU,CAAA,EAMjCI,GAAN,cAA8BrB,CAAU,CAIpCha,YAAY+T,EAAMpT,EAAQ,CACtB,MAAMA,CAAM,EACZd,OAAOC,OAAO,KAAMiU,CAAI,CAC5B,CACJ,EAKMuH,GAAN,cAAiCtB,CAAU,CAIvCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKsQ,SAAW/E,EAAE+E,SAClB,KAAK0J,cAAgBzO,EAAEyO,cACvB,KAAK3hB,MAAQkT,EAAElT,MACf,KAAKuiB,EAAIrP,EAAEqP,EACX,KAAKC,EAAItP,EAAEsP,CACf,CACJ,EAKMC,GAAN,cAAiCzB,CAAU,CAIvCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKsQ,SAAW/E,EAAE+E,SAClB,KAAK0J,cAAgBzO,EAAEyO,cACvB,KAAK3hB,MAAQkT,EAAElT,MACf,KAAKuiB,EAAIrP,EAAEqP,EACX,KAAKC,EAAItP,EAAEsP,CACf,CACJ,EAEME,GAAN,cAAiC1B,CAAU,CAAA,EAMrC2B,GAAN,cAA0B3B,CAAU,CAIhCha,YAAY4b,EAAIjb,EAAQ,CACpB,MAAMA,CAAM,CAChB,CACJ,EAKMkb,GAAN,cAA0B3B,CAAiB,CAIvCla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKiG,KAAOsF,EAAEtF,KACd,KAAKkV,KAAO5P,EAAE4P,KACd,KAAKC,GAAK7P,EAAE6P,EAChB,CACJ,EAKMC,GAAN,cAA6BhC,CAAU,CAInCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKiG,KAAOsF,EAAEtF,KACd,KAAKkV,KAAO5P,EAAE4P,KACd,KAAKC,GAAK7P,EAAE6P,EAChB,CACJ,EAKME,GAAN,cAA+B/B,CAAiB,CAI5Cla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKiG,KAAOsF,EAAEtF,KACd,KAAKkV,KAAO5P,EAAE4P,KACd,KAAKC,GAAK7P,EAAE6P,EAChB,CACJ,EAKMG,GAAN,cAA+BlC,CAAU,CAIrCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKsQ,SAAW/E,EAAE+E,SAClB,KAAKG,SAAWlF,EAAEkF,SAClB,KAAKuJ,cAAgBzO,EAAEyO,cACvB,KAAKtJ,WAAanF,EAAEmF,WACpB,KAAK9E,MAAQL,EAAEK,MACf,KAAK7R,OAASwR,EAAExR,OAChB,KAAKyhB,WAAajQ,EAAEiQ,WACpB,KAAKnjB,MAAQkT,EAAElT,KACnB,CACJ,EAKMojB,GAAN,cAA0BlC,CAAiB,CAIvCla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKsQ,SAAW/E,EAAE+E,SAClB,KAAKG,SAAWlF,EAAEkF,SAClB,KAAKuJ,cAAgBzO,EAAEyO,cACvB,KAAKtJ,WAAanF,EAAEmF,WACpB,KAAK9E,MAAQL,EAAEK,MACf,KAAK7R,OAASwR,EAAExR,OAChB,KAAKyhB,WAAajQ,EAAEiQ,WACpB,KAAKnjB,MAAQkT,EAAElT,KACnB,CACJ,EAKMqjB,GAAN,cAA+BD,EAAY,CAAA,EAMrCE,GAAN,cAA8BF,EAAY,CAAA,EAMpCG,GAAN,cAA+BH,EAAY,CAAA,EAMrCI,GAAN,cAAwBtC,CAAiB,CAIrCla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK+Z,WAAaxO,EAAEwO,WACpB,KAAK+B,MAAQvQ,EAAEuQ,MACf,KAAK9B,cAAgBzO,EAAEyO,aAC3B,CACJ,EAKM+B,GAAN,cAA2B1C,CAAU,CAIjCha,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK+Z,WAAaxO,EAAEwO,WACpB,KAAKC,cAAgBzO,EAAEyO,aAC3B,CACJ,EAKMgC,GAAN,cAA6BzC,CAAiB,CAI1Cla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK+Z,WAAaxO,EAAEwO,WACpB,KAAKC,cAAgBzO,EAAEyO,aAC3B,CACJ,EAEMiC,GAAc,CAChBC,eAAgB5C,GAChB6C,KAAMrC,GACNsC,QAASnC,GACToC,UAAWnC,GACXoC,gBAAiBlC,GACjBmC,gBAAiBlC,GACjBmC,UAAWjC,GACXkC,UAAWjC,GACXkC,UAAWjC,GACXkC,WAAYjC,GACZkC,cAAejC,GACfkC,cAAe/B,GACfgC,cAAe/B,GACfhH,OAAQiH,GACR+B,OAAQ7B,GACR8B,UAAW3B,GACX4B,YAAa3B,GACb4B,YAAa3B,GACb4B,YAAazB,GACb0B,WAAYzB,GACZ0B,YAAazB,GACb0B,KAAMzB,GACN0B,QAASxB,GACTyB,UAAWxB,EACf,EAIIyB,GAAyB,KAA2B,CACpDC,OAAOrjB,EAAM+Y,EAAMpT,EAAQ,CACvB,GAAIic,GAAY5hB,CAAI,EAChB,OAAO,IAAI4hB,GAAY5hB,CAAI,EAAE+Y,EAAMpT,CAAM,CAEjD,CACJ,EAKM2d,GAAN,cAAmCxD,EAAY,CAI3CT,gBAAiB,CACb,MAAMA,eAAe,CACzB,CACJ,EAKMkE,GAAkB,CACpBvjB,KAAM,iCACNwjB,YAAa,uBACbC,aAAc,CAAC,iBAAkB,iBAAiB,EAClDC,YAAa,WACbC,QAAS,UACTC,iBAAkB,sDACtB,EAKMC,IAAmB,IAAA,CAAzB,MAAMA,CAAoB,CACtB7e,YAAYmE,EAAWZ,EAAsBC,EAAmB,CAC5D,KAAKW,UAAYA,EACjB,KAAKZ,qBAAuBA,EAC5B,KAAKC,kBAAoBA,EACzB,KAAKsb,MAAQ,CAAA,EACb,KAAKpb,aAAeF,EAAkB1C,cAAc6C,UAAUb,GAAW,KAAKic,eAAejc,CAAO,CAAC,CACzG,CACAgB,aAAc,CACV,KAAKJ,aAAaK,YAAY,CAClC,CACAib,oBAAqB,CACjB,KAAKC,UAAU,EACf,KAAKC,SAASpc,QAAQa,UAAU,IAAM,KAAKsb,UAAU,CAAC,CAC1D,CACAF,eAAejc,EAAS,CACpB,GAAI,CAAC,KAAKoc,SACN,OAEJ,IAAMzO,EAAQ,KAAKyO,SAASvP,QAAQ,EAAE8D,OAAO0L,GAAK,CAACA,EAAE1b,MAAM,EAAE2b,QAAQtc,EAAQnC,MAAM,EAC/E8P,EAAQ,IAGZ,KAAKqO,MAAMrO,CAAK,EAAI3N,EAAQhE,QAC5B,KAAKmC,OAAO,EAChB,CACAge,WAAY,CACR,KAAKH,MAAQ,KAAKI,SAASzL,OAAO0L,GAAK,CAACA,EAAE1b,MAAM,EAAEyM,IAAIiP,GAAKA,EAAErgB,OAAO,EACpE,KAAKmC,OAAO,CAChB,CACAA,QAAS,CACL,KAAKsC,qBAAqBvC,OAAO,IAAIQ,GAAO,KAAK2C,UAAW,KAAK2a,MAAMrc,SAAW,EAAItH,OAAY,KAAK2jB,KAAK,CAAC,CACjH,CACJ,CACAD,OAAAA,EAAoB5e,UAAI,SAAAC,EAAA,CAhiE0FqE,GAAA,CAAA,EAiiElHsa,EAAoBxe,UAjiE8FC,EAAA,CAAAC,KAiiEbse,CAAmB,CAAA,EAnClHA,CAAmB,GAAA,EAqDnBQ,IAAe,IAAA,CAArB,MAAMA,UAAwBR,EAAoB,CAC9C7e,YAAYuD,EAAsBC,EAAmB8b,EAAwBC,EAAe,CACxF,MAAM,SAAUhc,EAAsBC,CAAiB,EACvD,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,EACzB,KAAK8b,uBAAyBA,EAC9B,KAAKC,cAAgBA,CACzB,CACAC,uBAAwB,CACpB,KAAKC,qBAAqB,CAC9B,CACAA,sBAAuB,CACnB,IAAMC,EAAY,KAAKR,SAAShP,IAAKyP,GAASA,EAAKjmB,wBAAwB,EAC3E,KAAK4lB,uBAAuB9M,mBAAmBkN,CAAS,CAC5D,CACJ,CACAL,OAAAA,EAAgBpf,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmf,GAnkEKlf,EAmkE4BuB,CAAoB,EAnkEhDvB,EAmkE6DS,CAAiB,EAnkE9ET,EAmkE2FgS,CAAsB,EAnkEjHhS,EAmkEiIyf,EAAgB,CAAA,CAAA,EACnQP,EAAgB3a,UApkEkGC,EAAA,CAAApE,KAokEjB8e,EAAe7e,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAoE,eAAA,SAAAvM,EAAAC,EAAAuM,EAAA,CAA0J,GAA1JxM,EAAA,GApkEEyM,EAAAD,EAokEqIqB,EAAmB,CAAA,EAAA7N,EAAA,EAAA,CAAA,IAAA0M,EApkExJC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAA4mB,SAAAna,EAAA,CAAA,EAAAtE,WAAA,GAAAuD,SAAA,CAAAuH,EAokE+D,CAAC3K,CAAiB,CAAC,EApkElF6E,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAjK,SAAA,SAAAtD,EAAAC,EAAA,CAAA,EAAAuN,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmjE5GuZ,CAAe,GAAA,EAqCfQ,GAAN,cAA6B3F,CAAiB,CAI1Cla,YAAYkM,EAAGvL,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAK3H,MAAQkT,EAAElT,MACf,KAAKuT,MAAQL,EAAEK,MACf,KAAK7R,OAASwR,EAAExR,MACpB,CACJ,EAKA,SAASolB,GAAaC,EAAS,CAC3B,OAAOA,EAAQC,UAAUvd,OAAS,CACtC,CAEA,IAsCMwd,IAAc,IAAA,CAApB,MAAMA,CAAe,CACjBjgB,YAAYuD,EAAsB2c,EAAc3S,EAAS4S,EAAMrU,EAAqBnK,EAAQye,EAAsBC,EAAgBC,EAAU,CACxI,KAAK/c,qBAAuBA,EAC5B,KAAK2c,aAAeA,EACpB,KAAK3S,QAAUA,EACf,KAAK4S,KAAOA,EACZ,KAAKrU,oBAAsBA,EAC3B,KAAKnK,OAASA,EACd,KAAKye,qBAAuBA,EAC5B,KAAKC,eAAiBA,EACtB,KAAKC,SAAWA,EAIhB,KAAKzD,eAAiB,IAAI3J,EAI1B,KAAK4J,KAAO,IAAI5J,EAIhB,KAAK6J,QAAU,IAAI7J,EAInB,KAAK8J,UAAY,IAAI9J,EAIrB,KAAK+J,gBAAkB,IAAI/J,EAI3B,KAAKgK,gBAAkB,IAAIhK,EAI3B,KAAKiK,UAAY,IAAIjK,EAIrB,KAAKkK,UAAY,IAAIlK,EAIrB,KAAKmK,UAAY,IAAInK,EAKrB,KAAKoK,WAAa,IAAIpK,EAMtB,KAAKqK,cAAgB,IAAIrK,EAIzB,KAAKsK,cAAgB,IAAItK,EAIzB,KAAKuK,cAAgB,IAAIvK,EAMzB,KAAKwB,OAAS,IAAIxB,EAMlB,KAAKwK,OAAS,IAAIxK,EAMlB,KAAKyK,UAAY,IAAIzK,EAMrB,KAAK0K,YAAc,IAAI1K,EAOvB,KAAK2K,YAAc,IAAI3K,EAIvB,KAAKqN,UAAY,IAAIrN,EAIrB,KAAK4K,YAAc,IAAI5K,EAIvB,KAAK6K,WAAa,IAAI7K,EAItB,KAAK8K,YAAc,IAAI9K,EAIvB,KAAK+K,KAAO,IAAI/K,EAIhB,KAAKgL,QAAU,IAAIhL,EAInB,KAAKiL,UAAY,IAAIjL,EAKrB,KAAKuB,gBAAkB,IAAIvB,EAI3B,KAAKsN,qBAAuB,IAAItN,EAQhC,KAAKuN,gBAAkB,GAIvB,KAAKC,qBAAuB,GAC5B,KAAKC,MAAQ,KACb,KAAKC,oBAAsB,GAC3B,KAAK9T,IAAM,GACX,KAAK+T,YAAc,CAAC,UAAW,UAAU,EACzC,KAAKC,eAAiB,CAAA,EACtB,IAAMC,EAAUC,GAAgBzC,EAAe,EAC/C,KAAKmC,qBAAuBO,GAAuBF,CAAO,EAC1D,KAAKb,aAAa3I,UAAU,EAC5B,KAAK2J,YAAY,CACrB,CASA,IAAIC,gBAAiB,CACjB,OAAO,KAAKL,eAAere,MAC/B,CACA,IAAI0e,eAAeC,EAAO,CACtB,IAAMC,EAAe,KAAKP,eAAere,OACzC,GAAI4e,GAAgBD,GAAS,CAAC,KAAKE,iBAC/B,OAEJ,IAAMC,EAAU,KAAKT,eAAexH,MAAM8H,CAAK,EAC/CG,EAAQtI,QAAQuI,GAAQA,EAAKC,QAAQ,CAAC,EACtC,KAAKX,eAAiB,KAAKA,eAAexH,MAAM,EAAG+H,EAAeE,EAAQ9e,MAAM,EAChF,KAAK6e,iBAAiB3R,QAAQ,EAAE2J,MAAM,CAACiI,EAAQ9e,OAAS,CAAC,EAAEwW,QAAQve,GAAUA,EAAO+I,OAAS,EAAK,EAClG,KAAK+c,qBAAqBxM,KAAKoN,CAAK,CACxC,CACAM,UAAW,CACH,KAAKnU,UACL,KAAKsT,YAAY5H,QAAQje,GAAQ,CAC7B,KAAKslB,SAASqB,SAAS,KAAKpU,QAAQC,cAAexS,CAAI,CAC3D,CAAC,EACD,KAAKslB,SAAS/H,SAAS,KAAKhL,QAAQC,cAAe,WAAY,UAAU,EAEjF,CACAoU,iBAAkB,CACV,KAAKC,WACL,KAAKlgB,OAAOe,kBAAkB,IAAM,CAChC,IAAMof,EAAkB,KAAKxB,SAASyB,OAAO,KAAKC,eAAexU,cAAe,aAAc,KAAKsU,gBAAgBG,KAAK,IAAI,CAAC,EAC7H,KAAKC,iBAAmB,IAAM,CAC1BJ,EAAgB,CACpB,CACJ,CAAC,EAEL,KAAKK,aAAa,EAClB,KAAKC,cAAgB,KAAKjC,KAAKrd,QAAQa,UAAU,KAAK0e,WAAWJ,KAAK,IAAI,CAAC,EAC3E,KAAKG,cAAcE,IAAI,KAAKxW,oBAAoBhJ,QAAQa,UAAU,KAAK4e,UAAUN,KAAK,IAAI,CAAC,CAAC,CAChG,CACAO,YAAYtW,EAAG,CACX,IAAM6H,EAAO,IAAI8L,GAAe3T,EAAG,IAAI,EAEvC,GADA,KAAKuW,IAAI,IAAM,KAAKlC,UAAUvM,KAAKD,CAAI,CAAC,EACpCA,EAAKuG,mBAAmB,EACxB,OAEJ,IAAMoI,EAAmB,KAAKC,0BAA0Bzd,MAClD0d,EAAkB,KAAKtB,iBAAiBuB,KAAMC,GAAOA,EAAG9nB,OAASkR,EAAExR,OAAOM,IAAI,EACpF,GAAI4nB,EAAgBnc,kBAAmB,CACnCmc,EAAgBnf,OAAS,GACzB,IAAM+d,EAAOkB,EAAiBnD,cAAcwD,mBAAmBH,EAAgBnc,kBAAkBhK,YAAa,CAC1GumB,eAAgB9W,EAAElT,MAClBuT,MAAOL,EAAEK,MACT7R,OAAQwR,EAAExR,MACd,CAAC,EACD8mB,EAAKyB,aAAa,EAClB,KAAKnC,eAAe3e,KAAKqf,CAAI,EAC7B,KAAKhB,qBAAqBxM,KAAK,KAAKmN,cAAc,CACtD,CACJ,CACA+B,oBAAqB,CACb,KAAK/V,UAAY,KAAKgW,YACtB,KAAKxhB,OAAOe,kBAAkB,IAAM,CAChC0gB,aAAa,KAAKC,aAAa,EAC/B,KAAKA,cAAgBC,WAAW,IAAM,CAClC,KAAKC,OAAO,CAChB,EAAG,CAAC,CACR,CAAC,CAET,CACA3f,YAAYd,EAAS,CACjB,IAAMlB,EAAQ,KAAK2B,qBAAqB3B,MACxCiB,GAAYC,EAASlB,CAAK,EAC1BA,EAAMtI,cAAgB,KACtB,KAAKiK,qBAAqBpB,KAAKP,CAAK,CACxC,CAaAiC,cAAcf,EAAS,CACnB,KAAKc,YAAYT,GAAgBL,CAAO,CAAC,CAC7C,CACAgB,aAAc,CACV,KAAK0f,UAAY,GACb,KAAKC,eACL,KAAKA,cAAc1f,YAAY,EAE/B,KAAKme,mBACL,KAAKA,iBAAiB,EACtB,KAAKA,iBAAmB,MAExB,KAAK/U,WACL,KAAKA,SAASsU,QAAQ,EACtB,KAAKtU,SAAW,MAEhB,KAAKiV,eACL,KAAKA,cAAcre,YAAY,EAEnCqf,aAAa,KAAKC,aAAa,EAC/BD,aAAa,KAAKM,aAAa,CACnC,CACAC,eAAepW,EAASqW,EAAU,CAC9B,KAAKzW,SAAW,IAAI0W,GAAMtW,EAAS,KAAKzO,QAAS,KAAK6hB,MAAO,CACzDmD,YAAa,KAAK3D,KAClByD,SAAUA,EACV9W,IAAK,KAAKA,IACVnM,OAAQ,IACZ,CAAC,CACL,CAOAojB,YAAYjlB,EAAU,CAAC,EAAG,CACtB,OAAOilB,GAAY,KAAKC,aAAallB,CAAO,EAAGA,CAAO,CAC1D,CAOAmlB,UAAUnlB,EAAU,CAAC,EAAG,CACpB,OAAOmlB,GAAU,KAAKD,aAAallB,CAAO,EAAGA,CAAO,CACxD,CAOAklB,aAAallB,EAAU,CAAC,EAAG,CACvB,OAAO,KAAKqO,SAAS6W,aAAallB,CAAO,CAC7C,CAOAolB,eAAelpB,EAAM,CACjB,GAAI,KAAKmS,SACL,OAAO,KAAKA,SAAS+W,eAAelpB,CAAI,CAEhD,CAOAmpB,gBAAgB1T,EAAO,CACnB,GAAI,KAAKtD,SACL,OAAO,KAAKA,SAASgX,gBAAgB1T,CAAK,CAElD,CAOA2T,eAAeppB,EAAM,CACjB,GAAI,KAAKmS,SACL,OAAO,KAAKA,SAASiX,eAAeppB,CAAI,CAEhD,CAKAqpB,aAAc,CACV,GAAI,KAAKlX,SACL,OAAO,KAAKA,SAASmX,SAAS,CAEtC,CAQAC,gBAAgBtY,EAAMwH,EAAQ,CACtB,KAAKtG,UACL,KAAKA,SAASoX,gBAAgBtY,EAAMwH,CAAM,CAElD,CAIAe,aAAc,CACN,KAAKrH,UACL,KAAKA,SAASqH,YAAY,CAElC,CAMAG,YAAYlB,EAAQ,CACZ,KAAKtG,UACL,KAAKA,SAASwH,YAAYlB,CAAM,CAExC,CACAmB,MAAO,CACH,GAAI,CAAC,KAAKiN,UACN,OAEJ,IAAMtU,EAAU,KAAKyU,eAAexU,cAC9BgX,EAAmB,IAAInQ,GAAsB,IAAI,EACvD,KAAKsP,eAAepW,EAASiX,CAAgB,CACjD,CAKAjB,QAAS,CACD,KAAKpW,UACL,KAAKA,SAASoW,OAAO,CAE7B,CAIAkB,UAAW,CACH,KAAKtB,YACL,KAAKI,OAAO,CAEpB,CAMAmB,aAAc,CACL,KAAKvX,WAGV,KAAK+S,aAAaxI,MAAM,EACxB,KAAKvK,SAASsU,QAAQ,EACtB,KAAKtU,SAAW,KACpB,CACAwX,kBAAkBzY,EAAG,CACjB,KAAKuW,IAAI,IAAM,CACX,IAAM1O,EAAO,IAAIuK,GAAqBpS,EAAG,IAAI,EAE7C,GADA,KAAKuI,gBAAgBT,KAAKD,CAAI,EAC1B,CAACA,EAAKuG,mBAAmB,EAAG,CAC5B,IAAM5f,EAAS,KAAK4mB,iBAAiB3R,QAAQ,EAAEzD,EAAExR,OAAO+V,KAAK,EAC7D,GAAI,CAAC/V,EACD,OAEAwR,EAAE7F,aAAelL,OACjBT,EAAO0L,sBAAsB8F,EAAE7F,UAAU,EAGzC3L,EAAOyL,iBAAiB,EAE5B,KAAKya,oBAAsB,EAC/B,CACJ,EAAGd,GAAa,KAAKrL,eAAe,EAAG,KAAK6M,iBAAiB7e,OAAS,CAAC,CAC3E,CACAwK,OAAOf,EAAG,CACN,KAAKiB,SAAWjB,EAAEvL,MACtB,CACAikB,SAAS1Y,EAAG,CACR,IAAM3P,EAAmB,KAAKsoB,oBAAoB,EAClD,KAAKpC,IAAI,IAAM,CACX,IAAM1O,EAAO,IAAI4H,GAAYzP,EAAG,IAAI,EACpC,KAAK4Y,QAAU5Y,EAAEvL,OAAOmkB,QACxB,KAAKpQ,OAAOV,KAAKD,CAAI,EACrB,KAAKxX,iBAAmBA,CAC5B,EAAGujB,GAAa,KAAKpL,MAAM,EAAG,KAAKnY,mBAAqBA,CAAgB,CAC5E,CACAwoB,cAAc7Y,EAAG,CACb,KAAKuW,IAAI,IAAM,CACNvW,EAAE0E,UAIH,KAAKoU,kBAAkB/Y,KAAKC,CAAC,EAH7B,KAAK+Y,gBAAgBhZ,KAAKC,CAAC,CAKnC,EAAG,CAACA,EAAE0E,UAAW,EAAI,CACzB,CACAsU,cAAchZ,EAAG,CACRA,EAAE0E,UAME,KAAKoU,kBAAkBhZ,SAC5B,KAAKgZ,kBAAkB5X,KAAK,EAC5B,KAAKuB,cAAc,GAPf,KAAKsW,gBAAgBjZ,SACrB,KAAKiZ,gBAAgB7X,KAAK,EAC1B,KAAKuB,cAAc,EAO/B,CACAwW,QAAQnqB,EAAMkR,EAAG,CACb,GAAIlR,IAAS,SACT,OAEJ,GAAIA,IAAS,YAAa,CACtB,KAAKwnB,YAAYtW,CAAC,EAClB,MACJ,CACA,IAAM6T,EAAU,KAAKqF,cAAcpqB,CAAI,EACvC,GAAI+kB,EAAS,CACT,IAAMhM,EAAO,KAAKqM,qBAAqB/B,OAAOrjB,EAAMkR,EAAG,IAAI,EAC3D,YAAKuW,IAAI,IAAM,CACX1C,EAAQ/L,KAAKD,CAAI,CACrB,CAAC,EACMA,EAAKuG,oBAAsBvG,EAAKuG,mBAAmB,CAC9D,CACJ,CACA+K,iBAAiBC,EAAO,CACpB,QAASxV,EAAM,EAAGA,EAAMwV,EAAM7iB,OAAQqN,IAClC,GAAI,KAAKsV,cAAcE,EAAMxV,CAAG,CAAC,EAC7B,MAAO,GAGf,MAAO,EACX,CACAyV,SAAU,CAKN,GAJAnC,aAAa,KAAKM,aAAa,EAC/B,KAAK8B,gBAAgB,EACrB,KAAKR,kBAAkBjV,wBAAwB,KAAKjR,OAAO,EAC3D,KAAK2mB,iBAAiB,EAClB,CAAC,KAAKtY,SAAU,CAChB,KAAKyH,KAAK,EACV,MACJ,CACA,IAAM8Q,EAAc,KAAK5mB,QAAQ4mB,YAC7B,KAAK9E,sBACL,KAAK9hB,QAAQ4mB,YAAc,IAE/B,KAAKC,cAAc,EACf,KAAK/E,sBACL,KAAK9hB,QAAQ4mB,YAAcA,EAC3B,KAAK9E,oBAAsB,GAEnC,CACA6E,kBAAmB,CACf,GAAI,CAAC,KAAKlY,QACN,OAEJ,IAAMA,EAAU,KAAKA,QAAQC,cACvB4H,EAAY,KAAKtW,QAAQsW,WAAa,CAAC,EACzCA,EAAUlL,QACVqD,EAAQ1U,MAAMqR,MAAQ,GAAGkL,EAAUlL,KAAK,MAExCkL,EAAUwQ,SACVrY,EAAQ1U,MAAM+sB,OAAS,GAAGxQ,EAAUwQ,MAAM,KAElD,CACAD,eAAgB,CACZ,KAAKxY,SAAS0Y,WAAW,KAAK/mB,OAAO,CACzC,CAIAgnB,kBAAkB5Z,EAAG,CACjB,IAAM6Z,EAAgB7Z,EAAE6Z,cAClBC,EAAe,KAAKzY,QAAQC,cAC9B,KAAKL,WAAa,CAAC4Y,GAAiB,CAAC/T,GAAU+T,EAAeC,CAAY,IAC1E,KAAK7Y,SAAS8Y,aAAa,CAEnC,CAIAnE,gBAAgB5V,EAAG,CACf,IAAM6Z,EAAgB7Z,EAAE6Z,cAClBC,EAAe,KAAKzY,QAAQC,cAC9B,KAAKL,WAAa,CAAC4Y,GAAiB,EAAE,KAAKd,gBAAgBzR,gBAAgBuS,CAAa,GAAK/T,GAAU+T,EAAeC,CAAY,KAClI,CAAC,KAAK7Y,SAAS+Y,aACf,KAAK/Y,SAAS8Y,aAAa,CAEnC,CACA,IAAIpE,WAAY,CACZ,OAAOxT,GAAoB,GAAK8X,EAAQ,KAAKnE,cACjD,CACA,IAAImB,YAAa,CACb,OAAO,KAAK1C,gBAAkB,CAClC,CACA2E,cAAcpqB,EAAM,CAChB,IAAM+kB,EAAU,KAAK/kB,CAAI,EACzB,GAAI+kB,GAAWA,EAAQ/L,MAAQ8L,GAAaC,CAAO,EAC/C,OAAOA,CAEf,CACA8E,qBAAsB,CAClB,GAAI,CAAC,KAAK1X,UAAY,CAAC,KAAKrO,SAAW,CAAC,KAAKA,QAAQpE,OACjD,OAEJ,IAAM0rB,EAAc,KAAKtnB,QAAQpE,OAAO,CAAC,EACnC2rB,EAAS,KAAKlZ,SAASmZ,UAAUD,OACvC,GAAI,CAACD,GAAeA,EAAY7lB,OAAS,SAAW,CAAC8lB,GAAUA,EAAO,CAAC,EAAEvqB,OAAO2G,SAAW,EACvF,OAEJ,IAAM8jB,EAAaF,EAAO,CAAC,EAAEvqB,OAAO,CAAC,EAC/B0qB,EAASD,EAAWE,IAAID,OAAO,EAC/BE,EAASH,EAAWI,OAAOC,YAC3B7Y,EAAMyY,EAAOhL,EAAIkL,EACjB5Y,EAAO0Y,EAAOjL,EAAImL,EAClBnd,EAAOmd,EAAS,EACtB,MAAO,CACHd,OAAQrc,EAAO,KACfuE,KAAMA,EAAO,KACbC,IAAKA,EAAM,KACX7D,MAAOX,EAAO,IAClB,CACJ,CACA2X,aAAc,CACV,KAAKvf,OAAOe,kBAAkB,IAAM,CAChC,KAAK+gB,cAAgBoD,GAAc,KAAKtjB,qBAAqBvB,UAAW,KAAKke,aAAale,SAAS,EAAEC,KAAK6kB,GAAK1jB,GAAW,CACtH,KAAKtE,QAAUsE,EAAO,CAAC,EACvB,KAAKud,MAAQvd,EAAO,CAAC,CACzB,CAAC,EAAGlB,GAAUX,EAAW,CAAC,EACrBoC,UAAU,IAAM,CACjB,KAAK4hB,QAAQ,CACjB,CAAC,CACL,CAAC,CACL,CACA9C,IAAIsE,EAAUC,EAAS,GAAMrY,EAAe,CACpCqY,GACIrY,GACA,KAAK0R,eAAe4C,aAAa,EAErC,KAAKthB,OAAO8gB,IAAIsE,CAAQ,IAGxBA,EAAS,EACLpY,GACA,KAAKA,cAAc,EAG/B,CACAA,eAAgB,CACP,KAAK6U,WACN,KAAKnD,eAAe1R,cAAc,CAE1C,CACA0T,YAAa,CACL,KAAKlV,UACL,KAAK8Z,eAAe,CAE5B,CACA1E,WAAY,CACJ,KAAKpV,UAAY,KAAKL,MAAQ,KAAKoa,OACnC,KAAKD,eAAe,CAE5B,CACAA,gBAAiB,CACb,KAAKtlB,OAAOe,kBAAkB,IAAM,CAChC0gB,aAAa,KAAKM,aAAa,EAC/B,KAAKA,cAAgBJ,WAAW,IAAM,CAClC,KAAKkC,gBAAgB,EACrB,KAAKrY,SAASga,oBAAoB,CACtC,EAAG,CAAC,CACR,CAAC,CACL,CACA3B,iBAAkB,CACd,IAAMvT,EAAU,KAAKiV,MACjB,KAAKpa,MAAQmF,IACb,KAAKkQ,aAAa,EACd,KAAKhV,UACL,KAAKA,SAASgV,aAAalQ,CAAO,EAG9C,CACAkQ,cAAe,CACX,KAAKrV,IAAM,KAAKoa,MACZ,KAAK3Z,SACL,KAAK+S,SAAStT,aAAa,KAAKO,QAAQC,cAAe,MAAO,KAAKV,IAAM,MAAQ,KAAK,CAE9F,CACA,IAAIoa,OAAQ,CACR,MAAOf,EAAQ,KAAKra,oBAAoBgB,GAC5C,CACJ,CACAmT,OAAAA,EAAehgB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+f,GA3xFM9f,EA2xF0BuB,CAAoB,EA3xF9CvB,EA2xF2DkX,EAAY,EA3xFvElX,EA2xFuFmO,CAAU,EA3xFjGnO,EA2xFiHinB,CAAW,EA3xF5HjnB,EA2xF4IgO,CAAmB,EA3xF/JhO,EA2xF+KyC,CAAM,EA3xFrLzC,EA2xFkMie,EAAsB,EA3xFxNje,EA2xFwOknB,EAAiB,EA3xFzPlnB,EA2xFyQmnB,EAAS,CAAA,CAAA,EACpYrH,EAAevb,UA5xFmGC,EAAA,CAAApE,KA4xFlB0f,EAAczf,UAAA,CAAA,CAAA,aAAA,CAAA,EAAAoE,eAAA,SAAAvM,EAAAC,EAAAuM,EAAA,CASkK,GATlKxM,EAAA,IA5xFIyM,EAAAD,EAqyFlC9E,GAA4B,CAAA,EAryFM+E,EAAAD,EAqyFyEwa,GAAe,CAAA,EAryFxFva,EAAAD,EAqyF2IqB,EAAmB,CAAA,GAAA7N,EAAA,EAAA,CAAA,IAAA0M,EAryF9JC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAkE,oBAAAuI,EAAAG,OAAAF,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAqqB,0BAAA5d,GAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAAgpB,iBAAAvc,EAAA,CAAA,EAAA6J,UAAA,SAAAvW,EAAAC,EAAA,CAAA,GAAAD,EAAA,IAAAwW,EAqyF+PiE,EAAqB,CAAA,EAryFpRjE,EAqyFsXS,EAAmC,CAAA,EAryFzZT,EAAAzS,GAAA,CAAA,GAAA/D,EAAA,EAAA,CAAA,IAAA0M,EAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAA2sB,gBAAAlgB,EAAAG,OAAAF,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAA0sB,kBAAAjgB,EAAAG,OAAAF,EAAAD,EAAAE,EAAA,CAAA,IAAA3M,EAAA0pB,eAAAjd,EAAAG,MAAA,CAAA,EAAAC,OAAA,CAAAoiB,SAAA,WAAAC,SAAA,WAAAvR,aAAA,eAAAwR,SAAA,WAAAtS,MAAA,QAAAuQ,YAAA,cAAAgC,SAAA,WAAA3S,aAAA,eAAAlO,aAAA,eAAAuO,UAAA,YAAAC,OAAA,SAAAsS,MAAA,QAAAC,aAAA,eAAAtD,SAAA,WAAA5pB,OAAA,SAAA6a,eAAA,iBAAAjK,QAAA,UAAAuc,UAAA,YAAAzd,MAAA,QAAAI,MAAA,QAAAiW,gBAAA,kBAAAnnB,cAAA,gBAAA6nB,eAAA,gBAAA,EAAAlN,QAAA,CAAA4I,eAAA,iBAAAC,KAAA,OAAAC,QAAA,UAAAC,UAAA,YAAAC,gBAAA,kBAAAC,gBAAA,kBAAAC,UAAA,YAAAC,UAAA,YAAAC,UAAA,YAAAC,WAAA,aAAAC,cAAA,gBAAAC,cAAA,gBAAAC,cAAA,gBAAA/I,OAAA,SAAAgJ,OAAA,SAAAC,UAAA,YAAAC,YAAA,cAAAC,YAAA,cAAA0C,UAAA,YAAAzC,YAAA,cAAAC,WAAA,aAAAC,YAAA,cAAAC,KAAA,OAAAC,QAAA,UAAAC,UAAA,YAAA1J,gBAAA,kBAAA+L,qBAAA,sBAAA,EAAAsH,SAAA,CAAA,YAAA,EAAArnB,WAAA,GAAAuD,SAAA,CAAAuH,EA4xFi1C,CAC37C7J,EACAyQ,EACAiM,GACAjQ,EACA,CACIW,QAASiZ,GACTC,SAAU,aACd,CAAC,CACJ,EAryF6G/jB,EAAAyB,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAqJ,OAAA,CAAA,CAAA,UAAA,EAAA,EAAA,CAAA,EAAA,iBAAA,EAAA,CAAA,EAAA,eAAA,EAAA,CAAA,EAAA,QAAA,eAAA,EAAA,CAAA,EAAA,SAAA,WAAA,EAAA,CAAA,QAAA,uBAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,wBAAA,GAAA,EAAA,MAAA,EAAA,CAAA,EAAA,uBAAA,EAAA,SAAA,EAAA,CAAA,EAAA,kBAAA,EAAA,CAAA,wBAAA,EAAA,CAAA,EAAAtT,SAAA,SAAAtD,EAAAC,EAAA,CAAA,GAAAD,EAAA,EAAA,CAAA,IAAA4vB,EAAAC,GAAA,EAAAhvB,EAAA,EAAA,MAAA,EAAA,CAsyFnE,EAAC,EAAA,2CAAA,CAEF,EAxyFoEX,EAAA,EAAA,4BAAA,CAyyFhB,EAzyFgB4vB,EAAA,QAAA,SAAAC,EAAA,CAAFC,OAAEC,EAAAL,CAAA,EAAAM,EAyyF1EjwB,EAAAwtB,kBAAAsC,CAAwB,CAAC,CAAA,CAAA,EAzyFiD3vB,EA0yFnF,EA1yFmFF,EAAA,EAAA,sBAAA,CA2yFtC,EA3yFsC4vB,EAAA,SAAA,UAAA,CAAFE,OAAEC,EAAAL,CAAA,EAAAM,EA2yF/EjwB,EAAAmsB,SAAS,CAAC,CAAA,CAAA,EA3yFqEhsB,EA2yFhB,EA3yFgBgB,EAAA,EAAA6C,GAAA,EAAA,EAAA,MAAA,CA4yFA,EAAC,EAAAI,GAAA,EAAA,EAAA,MAAA,CAIxD,CAAC,CAAArE,EAAA,IAhzFsDS,EAAA,CAuyFtC,EAvyFsCF,EAAA,gBAAAN,EAAAgB,aAuyFtC,EAvyFsCR,EAyyFjB,EAzyFiBF,EAAA,gBAAAN,EAAAgB,aAyyFjB,EAzyFiBR,EA2yFvC,EA3yFuCF,EAAA,YAAAN,EAAAmoB,eA2yFvC,EA3yFuC3nB,EA4yFF,EA5yFEF,EAAA,OAAAN,EAAAiE,kBAAAjE,EAAAkE,mBA4yFF,EA5yFE1D,EAgzFzD,EAhzFyDF,EAAA,OAAAN,EAAAooB,oBAgzFzD,EAAC,EAAAvR,aAAA,CACKG,EAAmJwD,EAAmL0V,GAAiIrU,EAAiG/E,GAAkFgF,GAAoKqU,EAAyB,EAAA5iB,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAhqBh3Bma,CAAc,GAAA,EA41BpB,IAIMyI,IAAkB,IAAA,CAAxB,MAAMA,UAA2BC,EAAwB,CACrDC,YAAYC,EAAsBC,EAAmBC,EAAMC,EAAU,CACjE,MAAMH,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,EACzB,KAAKC,KAAOA,EACZ,KAAKE,cAAc,CAAEC,aAAcH,EAAKI,SAASH,CAAQ,CAAE,CAAC,CAChE,CACJ,CACAN,OAAAA,EAAmBU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFX,GA1/FEY,EA0/FkCC,CAAoB,EA1/FtDD,EA0/FmEE,CAAiB,EA1/FpFF,EA0/FoGG,CAAW,EA1/F/GH,EA0/F4HI,EAAS,CAAA,CAAA,EACvPhB,EAAmBiB,UA3/F+FC,EAAA,CAAAC,KA2/FdnB,EAAkBoB,UAAA,CAAA,CAAA,yBAAA,CAAA,EAAAC,OAAA,CAAAC,kBAAA,oBAAAC,WAAA,aAAAC,SAAA,WAAAC,WAAA,aAAAC,MAAA,QAAAC,KAAA,OAAAC,eAAA,iBAAAC,WAAA,aAAAC,UAAA,YAAAC,IAAA,MAAAC,IAAA,MAAAC,eAAA,iBAAAC,WAAA,aAAAC,UAAA,YAAAC,KAAA,OAAAC,YAAA,cAAAC,KAAA,OAAAC,UAAA,YAAAC,QAAA,UAAAC,WAAA,aAAAtB,KAAA,OAAAuB,QAAA,UAAAlC,aAAA,eAAAmC,UAAA,YAAAC,OAAA,SAAAC,MAAA,QAAAC,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CA3/FJC,EA2/F8qB,CAACpC,CAAoB,CAAC,EA3/FpsBqC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAi/F5G1D,CAAkB,GAAA,EAkGlB2D,IAAc,IAAA,CAApB,MAAMA,UAAuBC,EAAoB,CAC7C1D,YAAYC,EAAsBC,EAAmB,CACjD,MAAM,QAASD,EAAsBC,CAAiB,EACtD,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACAuD,OAAAA,EAAejD,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgD,GA1lGM/C,EA0lG0BC,CAAoB,EA1lG9CD,EA0lG2DE,CAAiB,CAAA,CAAA,EAC9L6C,EAAe1C,UA3lGmGC,EAAA,CAAAC,KA2lGlBwC,EAAcvC,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAAyJ,GAAzJP,EAAA,GA3lGIQ,EAAAD,EA2lGmI9D,GAAkB,CAAA,EAAAuD,EAAA,EAAA,CAAA,IAAAS,EA3lGrJC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAW,SAAAH,EAAA,CAAA,EAAAjB,WAAA,GAAAC,SAAA,CAAAC,EA2lG6D,CAACnC,CAAiB,CAAC,EA3lGhFoC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmlG5GC,CAAc,GAAA,EA2BdS,IAAuB,IAAA,CAA7B,MAAMA,UAAgCC,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAF,OAAAA,EAAwB1D,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFyD,GArnGHxD,EAqnG4CC,CAAoB,CAAA,CAAA,EAClLuD,EAAwBnD,UAtnG0FC,EAAA,CAAAC,KAsnGTiD,EAAuBhD,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAK,MAAA,QAAA6C,QAAA,UAAA7B,QAAA,UAAA8B,MAAA,QAAAC,QAAA,SAAA,EAAA1B,WAAA,GAAAC,SAAA,CAtnGdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8mG5GU,CAAuB,GAAA,EAiCvBM,IAA8B,IAAA,CAApC,MAAMA,UAAuCL,CAAkB,CAC3DnE,YAAYC,EAAsB,CAC9B,MAAM,oBAAqBA,CAAoB,EAC/C,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAI,OAAAA,EAA+BhE,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+D,GAtpGV9D,EAspG0DC,CAAoB,CAAA,CAAA,EAChM6D,EAA+BzD,UAvpGmFC,EAAA,CAAAC,KAupGFuD,EAA8BtD,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAvpG5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA+oG5GgB,CAA8B,GAAA,EAoC9BK,IAAoB,IAAA,CAA1B,MAAMA,UAA6BV,CAAkB,CACjDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACA4E,OAAAA,EAAqBrE,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoE,GAzrGAnE,EAyrGsCC,CAAoB,CAAA,CAAA,EAC5KkE,EAAqB9D,UA1rG6FC,EAAA,CAAAC,KA0rGZ4D,EAAoB3D,UAAA,CAAA,CAAA,gCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAC,QAAA,UAAAC,YAAA,cAAAN,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAC,OAAA,SAAAN,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAC,KAAA,OAAAC,KAAA,OAAA9C,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CA1rGRE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmrG5GqB,CAAoB,GAAA,EA2DpBW,IAAmB,IAAA,CAAzB,MAAMA,UAA4BrB,CAAkB,CAChDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAuF,OAAAA,EAAoBhF,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+E,GApvGC9E,EAovGoCC,CAAoB,CAAA,CAAA,EAC1K6E,EAAoBzE,UArvG8FC,EAAA,CAAAC,KAqvGbuE,EAAmBtE,UAAA,CAAA,CAAA,+BAAA,CAAA,EAAAC,OAAA,CAAAsE,KAAA,OAAAhE,KAAA,OAAA0D,SAAA,WAAAI,OAAA,SAAAG,KAAA,OAAAC,MAAA,OAAA,EAAA9C,WAAA,GAAAC,SAAA,CArvGNE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8uG5GgC,CAAmB,GAAA,EAiCnBI,IAAuB,IAAA,CAA7B,MAAMA,UAAgCzB,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,aAAcA,CAAoB,EACxC,KAAKA,qBAAuBA,CAChC,CACJ,CACA2F,OAAAA,EAAwBpF,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmF,GArxGHlF,EAqxG4CC,CAAoB,CAAA,CAAA,EAClLiF,EAAwB7E,UAtxG0FC,EAAA,CAAAC,KAsxGT2E,EAAuB1E,UAAA,CAAA,CAAA,oCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAoB,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAtxGdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA+wG5GoC,CAAuB,GAAA,EA+BvBE,IAAwB,IAAA,CAA9B,MAAMA,UAAiC3B,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,CAChC,CACJ,CACA6F,OAAAA,EAAyBtF,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqF,GApzGJpF,EAozG8CC,CAAoB,CAAA,CAAA,EACpLmF,EAAyB/E,UArzGyFC,EAAA,CAAAC,KAqzGR6E,EAAwB5E,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAQ,SAAA,WAAAC,SAAA,WAAA5C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CArzGhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8yG5GsC,CAAwB,GAAA,EAuCxBC,IAAmB,IAAA,CAAzB,MAAMA,UAA4B5B,CAAkB,CAChDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACA8F,OAAAA,EAAoBvF,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFsF,GA31GCrF,EA21GoCC,CAAoB,CAAA,CAAA,EAC1KoF,EAAoBhF,UA51G8FC,EAAA,CAAAC,KA41Gb8E,EAAmB7E,UAAA,CAAA,CAAA,+BAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAY,KAAA,OAAAxD,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CA51GNE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAq1G5GuC,CAAmB,GAAA,EA4CnBE,IAAkB,IAAA,CAAxB,MAAMA,UAA2BlG,EAAwB,CACrDC,YAAYC,EAAsBC,EAAmB,CACjD,MAAMD,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACA+F,OAAAA,EAAmBzF,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwF,GAx4GEvF,EAw4GkCC,CAAoB,EAx4GtDD,EAw4GmEE,CAAiB,CAAA,CAAA,EACtMqF,EAAmBlF,UAz4G+FC,EAAA,CAAAC,KAy4GdgF,EAAkB/E,UAAA,CAAA,CAAA,yBAAA,CAAA,EAAAC,OAAA,CAAAC,kBAAA,oBAAAC,WAAA,aAAAC,SAAA,WAAAC,WAAA,aAAAC,MAAA,QAAAC,KAAA,OAAAC,eAAA,iBAAAC,WAAA,aAAAC,UAAA,YAAAC,IAAA,MAAAC,IAAA,MAAAC,eAAA,iBAAAC,WAAA,aAAAC,UAAA,YAAAC,KAAA,OAAAC,YAAA,cAAAC,KAAA,OAAAC,UAAA,YAAAC,QAAA,UAAArB,KAAA,OAAAuB,QAAA,UAAAC,UAAA,YAAAC,OAAA,SAAAC,MAAA,QAAAC,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CAz4GJC,EAy4GsnB,CAACpC,CAAoB,CAAC,EAz4G5oBqC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAi4G5GyC,CAAkB,GAAA,EAyFlBC,IAAc,IAAA,CAApB,MAAMA,UAAuBxC,EAAoB,CAC7C1D,YAAYC,EAAsBC,EAAmB,CACjD,MAAM,QAASD,EAAsBC,CAAiB,EACtD,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACAgG,OAAAA,EAAe1F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFyF,GAj+GMxF,EAi+G0BC,CAAoB,EAj+G9CD,EAi+G2DE,CAAiB,CAAA,CAAA,EAC9LsF,EAAenF,UAl+GmGC,EAAA,CAAAC,KAk+GlBiF,EAAchF,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAAyJ,GAAzJP,EAAA,GAl+GIQ,EAAAD,EAk+GmIqC,GAAkB,CAAA,EAAA5C,EAAA,EAAA,CAAA,IAAAS,EAl+GrJC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAW,SAAAH,EAAA,CAAA,EAAAjB,WAAA,GAAAC,SAAA,CAAAC,EAk+G6D,CAACnC,CAAiB,CAAC,EAl+GhFoC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA09G5G0C,CAAc,GAAA,EA2BdC,IAAuB,IAAA,CAA7B,MAAMA,UAAgChC,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA+B,OAAAA,EAAwB3F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0F,GA5/GHzF,EA4/G4CC,CAAoB,CAAA,CAAA,EAClLwF,EAAwBpF,UA7/G0FC,EAAA,CAAAC,KA6/GTkF,EAAuBjF,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAK,MAAA,QAAA6C,QAAA,UAAA7B,QAAA,UAAA8B,MAAA,QAAAC,QAAA,SAAA,EAAA1B,WAAA,GAAAC,SAAA,CA7/GdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAq/G5G2C,CAAuB,GAAA,EAiCvBC,IAA8B,IAAA,CAApC,MAAMA,UAAuCjC,CAAkB,CAC3DnE,YAAYC,EAAsB,CAC9B,MAAM,oBAAqBA,CAAoB,EAC/C,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAgC,OAAAA,EAA+B5F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2F,GA7hHV1F,EA6hH0DC,CAAoB,CAAA,CAAA,EAChMyF,EAA+BrF,UA9hHmFC,EAAA,CAAAC,KA8hHFmF,EAA8BlF,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA9hH5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAshH5G4C,CAA8B,GAAA,EAoC9BC,IAAoB,IAAA,CAA1B,MAAMA,UAA6BlC,CAAkB,CACjDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACAoG,OAAAA,EAAqB7F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4F,GAhkHA3F,EAgkHsCC,CAAoB,CAAA,CAAA,EAC5K0F,EAAqBtF,UAjkH6FC,EAAA,CAAAC,KAikHZoF,EAAoBnF,UAAA,CAAA,CAAA,gCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAC,QAAA,UAAAC,YAAA,cAAAN,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAC,OAAA,SAAAN,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAC,KAAA,OAAAC,KAAA,OAAA9C,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAjkHRE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA0jH5G6C,CAAoB,GAAA,EAwDpBC,IAAmB,IAAA,CAAzB,MAAMA,UAA4BnC,CAAkB,CAChDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAqG,OAAAA,EAAoB9F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6F,GAxnHC5F,EAwnHoCC,CAAoB,CAAA,CAAA,EAC1K2F,EAAoBvF,UAznH8FC,EAAA,CAAAC,KAynHbqF,EAAmBpF,UAAA,CAAA,CAAA,+BAAA,CAAA,EAAAC,OAAA,CAAAsE,KAAA,OAAAhE,KAAA,OAAA0D,SAAA,WAAAI,OAAA,SAAAG,KAAA,OAAAC,MAAA,OAAA,EAAA9C,WAAA,GAAAC,SAAA,CAznHNE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAknH5G8C,CAAmB,GAAA,EAiCnBC,IAAuB,IAAA,CAA7B,MAAMA,UAAgCpC,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,aAAcA,CAAoB,EACxC,KAAKA,qBAAuBA,CAChC,CACJ,CACAsG,OAAAA,EAAwB/F,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8F,GAzpHH7F,EAypH4CC,CAAoB,CAAA,CAAA,EAClL4F,EAAwBxF,UA1pH0FC,EAAA,CAAAC,KA0pHTsF,EAAuBrF,UAAA,CAAA,CAAA,oCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAoB,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA1pHdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmpH5G+C,CAAuB,GAAA,EA+BvBC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCrC,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,CAChC,CACJ,CACAuG,OAAAA,EAAyBhG,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+F,GAxrHJ9F,EAwrH8CC,CAAoB,CAAA,CAAA,EACpL6F,EAAyBzF,UAzrHyFC,EAAA,CAAAC,KAyrHRuF,EAAwBtF,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAQ,SAAA,WAAAC,SAAA,WAAA5C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAzrHhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAkrH5GgD,CAAwB,GAAA,EAuCxBC,IAAmB,IAAA,CAAzB,MAAMA,UAA4BtC,CAAkB,CAChDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAwG,OAAAA,EAAoBjG,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgG,GA/tHC/F,EA+tHoCC,CAAoB,CAAA,CAAA,EAC1K8F,EAAoB1F,UAhuH8FC,EAAA,CAAAC,KAguHbwF,EAAmBvF,UAAA,CAAA,CAAA,+BAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAY,KAAA,OAAAxD,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAhuHNE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAytH5GiD,CAAmB,GAAA,EAoDnBC,IAAiB,IAAA,CAAvB,MAAMA,UAA0BvC,CAAkB,CAC9CnE,YAAYC,EAAsB,CAC9B,MAAM,WAAYA,CAAoB,EACtC,KAAKA,qBAAuBA,CAChC,CACJ,CACAyG,OAAAA,EAAkBlG,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiG,GAnxHGhG,EAmxHgCC,CAAoB,CAAA,CAAA,EACtK+F,EAAkB3F,UApxHgGC,EAAA,CAAAC,KAoxHfyF,EAAiBxF,UAAA,CAAA,CAAA,sBAAA,CAAA,EAAAC,OAAA,CAAAwF,WAAA,aAAAC,UAAA,WAAA,EAAA/D,WAAA,GAAAC,SAAA,CApxHFE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA6wH5GkD,CAAiB,GAAA,EA2BjBG,GAAN,cAAmCC,CAAU,CAIzC9G,YAAY+G,EAAGC,EAAQ,CACnB,MAAMA,CAAM,EACZ,KAAKC,KAAOF,EAAEE,KACd,KAAKC,GAAKH,EAAEG,EAChB,CACJ,EAOMC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCxG,CAAqB,CAAA,CAE5DwG,OAAAA,EAAyB3G,WAAI,IAAA,CAAA,IAAA4G,EAAA,OAAA,SAAA3G,EAAA,CAAA,OAAA2G,IAAAA,EA1zHqFC,GA0zHIF,CAAwB,IAAA1G,GAAxB0G,CAAwB,CAAA,CAAA,GAAA,EAC9IA,EAAyBG,WA3zHyFC,EAAA,CAAAC,MA2zHQL,EAAwBM,QAAxBN,EAAwB3G,SAAA,CAAA,EAH5I2G,CAAwB,GAAA,EAQxBO,GAAc,CAChBC,gBAAiBd,EACrB,EAIMe,GAAN,cAAwCC,EAAuB,CAC3DC,OAAO5F,EAAM6F,EAAMf,EAAQ,CACvB,OAAIU,GAAYxF,CAAI,EACT,IAAIwF,GAAYxF,CAAI,EAAE6F,EAAMf,CAAM,EAEtC,MAAMc,OAAO5F,EAAM6F,EAAMf,CAAM,CAC1C,CACJ,EAEMgB,GAAqB,CACvBC,iBAAkB,GAClBC,SAAU,GACVC,cAAe,EACnB,EAsBMC,IAAmB,IAAA,CAAzB,MAAMA,UAA4BC,EAAe,CAC7CrI,YAAYC,EAAsBqI,EAAcC,EAASpI,EAAMqI,EAAqBC,EAAQC,EAAsBC,EAAgBC,EAAU,CACxI,MAAM3I,EAAsBqI,EAAcC,EAASpI,EAAMqI,EAAqBC,EAAQC,EAAsBC,EAAgBC,CAAQ,EACpI,KAAK3I,qBAAuBA,EAC5B,KAAKqI,aAAeA,EACpB,KAAKC,QAAUA,EACf,KAAKpI,KAAOA,EACZ,KAAKqI,oBAAsBA,EAC3B,KAAKC,OAASA,EACd,KAAKC,qBAAuBA,EAC5B,KAAKC,eAAiBA,EACtB,KAAKC,SAAWA,EAIhB,KAAKC,UAAY,IAAIC,EAIrB,KAAKC,qBAAuB,IAAID,EAIhC,KAAKnB,gBAAkB,IAAImB,EAI3B,KAAKE,qBAAuB,GAC5B,KAAKC,aAAe,GACpB,KAAKC,YAAc,CAAC,UAAW,cAAc,EAC7C,IAAMC,EAAUC,GAAgBC,EAAe,EAC/C,KAAKL,qBAAuBM,GAAuBH,CAAO,CAC9D,CAIA,IAAII,gBAAiB,CACjB,OAAO,KAAKC,eAAeC,MAC/B,CAKAC,qBAAsB,CAClB,KAAKT,aAAe,EACxB,CACAU,eAAepB,EAASqB,EAAU,CAE9B,GADA,KAAKC,uBAAuB,EACxB,KAAKC,UAAU,IAAM,KAAKC,QAAQC,UAAY,KAAKD,QAAQE,UAC3D,MAAM,IAAIC,MAAM,kFAAkF,EAEtG,KAAKC,SAAW,IAAIC,GAAW7B,EAAS,KAAKwB,QAAS,KAAKM,MAAO,CAC9DC,YAAa,KAAKnK,KAClByJ,SAAUA,EACVW,IAAK,KAAKA,IACVvD,OAAQ,IACZ,CAAC,CACL,CACAwD,eAAgB,CACZ,KAAKX,uBAAuB,EACxB,KAAKZ,cACL,KAAKkB,SAASM,aAAa,KAAKV,OAAO,EACvC,KAAKI,SAASO,eAAe,EAC7B,KAAKP,SAASQ,UAAU1B,aAAa,GAGrC,KAAKkB,SAASS,WAAW,KAAKb,OAAO,EAEzC,KAAKd,aAAe,EACxB,CACAY,wBAAyB,CACrB,KAAKE,QAAQY,UAAYE,OAAOC,OAAO,CAAC,EAAG,KAAKf,QAAQY,UAAW3C,EAAkB,CACzF,CACA8B,WAAY,CACR,OAAOA,GAAU,CACrB,CACJ,CACA1B,OAAAA,EAAoB5H,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2H,GAt7HC1H,EAs7HoCC,CAAoB,EAt7HxDD,EAs7HqEqK,EAAY,EAt7HjFrK,EAs7HiGsK,CAAU,EAt7H3GtK,EAs7H2HG,CAAW,EAt7HtIH,EAs7HsJuK,CAAmB,EAt7HzKvK,EAs7HyLwK,CAAM,EAt7H/LxK,EAs7H4MkH,EAAyB,EAt7HrOlH,EAs7HqPyK,EAAiB,EAt7HtQzK,EAs7HsR0K,EAAS,CAAA,CAAA,EACjZhD,EAAoBrH,UAv7H8FC,EAAA,CAAAC,KAu7HbmH,EAAmBlH,UAAA,CAAA,CAAA,kBAAA,CAAA,EAAAC,OAAA,CAAAwJ,UAAA,YAAAV,SAAA,WAAAD,SAAA,WAAAT,eAAA,gBAAA,EAAA8B,QAAA,CAAAxC,UAAA,YAAAE,qBAAA,uBAAApB,gBAAA,iBAAA,EAAA2D,SAAA,CAAA,iBAAA,EAAAzI,WAAA,GAAAC,SAAA,CAv7HNC,EAu7H8S,CACxZpC,EACA4K,EACA,CAAEC,QAASrE,GAA0BsE,YAAa9K,CAAqB,EACvEiH,GACAqD,EACA,CACIO,QAASE,GACTC,SAAU,aACd,CAAC,CACJ,EAj8H6G3I,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAyI,OAAA,CAAA,CAAA,UAAA,EAAA,EAAA,CAAA,EAAA,iBAAA,EAAA,CAAA,EAAA,eAAA,EAAA,CAAA,EAAA,QAAA,eAAA,EAAA,CAAA,EAAA,QAAA,EAAA,CAAA,wBAAA,GAAA,EAAA,MAAA,EAAA,CAAA,wBAAA,EAAA,CAAA,EAAAxI,SAAA,SAAAC,EAAAC,EAAA,CAAA,GAAAD,EAAA,EAAA,CAAA,IAAAwI,EAAAC,GAAA,EAAAC,EAAA,EAAA,MAAA,EAAA,CAk8H/D,EAAC,EAAA,2CAAA,CAEF,EAp8HgEC,EAAA,EAAA,4BAAA,CAq8HZ,EAr8HYC,EAAA,QAAA,SAAAC,EAAA,CAAFC,OAAEC,EAAAP,CAAA,EAAAQ,EAq8HtE/I,EAAAgJ,kBAAAJ,CAAwB,CAAC,CAAA,CAAA,EAr8H6CK,EAs8H/E,EAt8H+EP,EAAA,EAAA,sBAAA,CAu8HhE,EAv8HgEC,EAAA,SAAA,UAAA,CAAFE,OAAEC,EAAAP,CAAA,EAAAQ,EAu8H3E/I,EAAAkJ,SAAS,CAAC,CAAA,CAAA,EAv8HiED,EAu8H1C,EAv8H0CE,EAAA,EAAAC,GAAA,EAAA,EAAA,MAAA,CAy8HnD,CAAC,CAAArJ,EAAA,IAz8HkDsJ,EAAA,CAm8HlC,EAn8HkCC,EAAA,gBAAAtJ,EAAAuJ,aAm8HlC,EAn8HkCF,EAq8Hb,EAr8HaC,EAAA,gBAAAtJ,EAAAuJ,aAq8Hb,EAr8HaF,EAAA,CAy8HrD,EAz8HqDC,EAAA,OAAAtJ,EAAA0F,oBAy8HrD,EAAC,EAAA8D,aAAA,CACGC,EAAmJC,EAAmLC,GAAiIC,EAAiGC,EAAyB,EAAA5J,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAjG5nB4E,CAAmB,GAAA,EAmJnBgF,GAAS,IAAIC,GAAe,sBAAsB,EAIlDC,IAA0B,IAAA,CAAhC,MAAMA,UAAmC3M,CAAqB,CAC1DX,YAAYuN,EAAaC,EAAQ/E,EAAQ,CACrC,MAAMA,CAAM,EACZ,KAAK8E,YAAcA,EACnB,KAAKC,OAASA,CAClB,CACAC,KAAKC,EAAO,CACR,KAAKH,YAAYI,OAAO,IAAIC,GAAO,KAAKJ,OAAQE,CAAK,CAAC,CAC1D,CACAC,OAAOE,EAAQ,CACXA,EAAOC,IAAM,KAAKN,QAAUK,EAAOC,IAAM,IAAID,EAAOC,GAAG,GAAK,IAC5D,KAAKP,YAAYI,OAAOE,CAAM,CAClC,CACJ,CACAP,OAAAA,EAA2B9M,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6M,GA9gINS,EA8gIkD5G,EAAwB,EA9gI1E4G,EA8gIuFX,EAAM,EA9gI7FW,EA8gI6G7C,CAAM,CAAA,CAAA,EACrOoC,EAA2BhG,WA/gIuFC,EAAA,CAAAC,MA+gIU8F,EAA0B7F,QAA1B6F,EAA0B9M,SAAA,CAAA,EAfhJ8M,CAA0B,GAAA,EAkE1BU,IAAkB,IAAA,CAAxB,MAAMA,UAA2B7J,CAAkB,CAC/CnE,YAAYC,EAAsB,CAC9B,MAAM,GAAIA,CAAoB,EAC9B,KAAKA,qBAAuBA,CAChC,CACJ,CACA+N,OAAAA,EAAmBxN,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuN,GAxkIEtN,EAwkIkCC,CAAoB,CAAA,CAAA,EACxKqN,EAAmBjN,UAzkI+FC,EAAA,CAAAC,KAykId+M,EAAkB9M,UAAA,CAAA,CAAA,uBAAA,CAAA,EAAAC,OAAA,CAAAgE,SAAA,WAAA3C,QAAA,UAAAyL,aAAA,eAAAC,KAAA,OAAA9L,KAAA,OAAA+L,OAAA,SAAAC,OAAA,QAAA,EAAAvL,WAAA,GAAAC,SAAA,CAzkIJC,EAykI4N,CAAC,CAAEyI,QAAS4B,GAAQzB,SAAU,WAAY,EAAG,CAAEH,QAAS7K,EAAsB0N,SAAUf,EAA2B,CAAC,CAAC,EAzkIjVtK,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAkkI5GwK,CAAkB,GAAA,EAoClBM,IAAyB,IAAA,CAA/B,MAAMA,UAAkCvO,EAAwB,CAC5DC,YAAYC,EAAsBC,EAAmBC,EAAMC,EAAU,CACjE,MAAMH,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,EACzB,KAAKG,cAAc,CAAEC,aAAcH,EAAKI,SAASH,CAAQ,CAAE,CAAC,CAChE,CACJ,CACAkO,OAAAA,EAA0B9N,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6N,GA9mIL5N,EA8mIgDC,CAAoB,EA9mIpED,EA8mIiFE,CAAiB,EA9mIlGF,EA8mIkHG,CAAW,EA9mI7HH,EA8mI0II,EAAS,CAAA,CAAA,EACrQwN,EAA0BvN,UA/mIwFC,EAAA,CAAAC,KA+mIPqN,EAAyBpN,UAAA,CAAA,CAAA,gCAAA,CAAA,EAAAC,OAAA,CAAAoN,kBAAA,oBAAAnN,kBAAA,oBAAAC,WAAA,aAAAC,SAAA,WAAAkN,aAAA,eAAAjN,WAAA,aAAAC,MAAA,QAAAiN,UAAA,YAAAhN,KAAA,OAAAC,eAAA,iBAAAC,WAAA,aAAAE,IAAA,MAAA6M,cAAA,gBAAAC,aAAA,eAAA7M,IAAA,MAAAC,eAAA,iBAAAC,WAAA,aAAAE,KAAA,OAAAE,KAAA,OAAAC,UAAA,YAAAC,QAAA,UAAAsM,gBAAA,kBAAArM,WAAA,aAAAtB,KAAA,OAAAuB,QAAA,UAAAlC,aAAA,eAAAmC,UAAA,YAAAC,OAAA,SAAAC,MAAA,QAAAwL,OAAA,SAAAvL,MAAA,QAAAiM,YAAA,aAAA,EAAAhM,WAAA,GAAAC,SAAA,CA/mIlBC,EA+mIq2B,CAACpC,CAAoB,CAAC,EA/mI33BqC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAsmI5G8K,CAAyB,GAAA,EAwGzBQ,IAA8B,IAAA,CAApC,MAAMA,UAAuCR,EAA0B,CACnEtO,YAAYC,EAAsBE,EAAMC,EAAU,CAC9C,MAAMH,EAAsB,KAAME,EAAMC,CAAQ,EAChD,KAAKH,qBAAuBA,CAChC,CACJ,CACA6O,OAAAA,EAA+BtO,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqO,GAptIVpO,EAotI0DC,CAAoB,EAptI9ED,EAotI8FG,CAAW,EAptIzGH,EAotIsHI,EAAS,CAAA,CAAA,EACjPgO,EAA+B/N,UArtImFC,EAAA,CAAAC,KAqtIF6N,EAA8B5N,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CArtI5BC,EAqtI8G,CAAC,CACrNyI,QAAS4B,GACTzB,SAAU,wBACd,EAAG,CACCH,QAAS7K,EACT0N,SAAUf,EACd,CAAC,CAAC,EA3tIwGtK,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8sI5GsL,CAA8B,GAAA,EAqC9BC,IAA8B,IAAA,CAApC,MAAMA,UAAuC5K,CAAkB,CAC3DnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA2K,OAAAA,EAA+BvO,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFsO,GA1vIVrO,EA0vI0DC,CAAoB,CAAA,CAAA,EAChMoO,EAA+BhO,UA3vImFC,EAAA,CAAAC,KA2vIF8N,EAA8B7N,UAAA,CAAA,CAAA,0CAAA,CAAA,EAAAC,OAAA,CAAAK,MAAA,QAAAwN,SAAA,WAAA3K,QAAA,UAAA7B,QAAA,UAAA8B,MAAA,QAAAC,QAAA,SAAA,EAAA1B,WAAA,GAAAC,SAAA,CA3vI5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmvI5GuL,CAA8B,GAAA,EAkC9BE,IAAuC,IAAA,CAA7C,MAAMA,UAAgDF,EAA+B,CACjF/O,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAgP,OAAAA,EAAwCzO,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwO,GA3xInBvO,EA2xI4EC,CAAoB,CAAA,CAAA,EAClNsO,EAAwClO,UA5xI0EC,EAAA,CAAAC,KA4xIOgO,EAAuC/N,UAAA,CAAA,CAAA,+CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA5xI9CE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAqxI5GyL,CAAuC,GAAA,EAsBvCC,IAAqC,IAAA,CAA3C,MAAMA,UAA8C/K,CAAkB,CAClEnE,YAAYC,EAAsB,CAC9B,MAAM,oBAAqBA,CAAoB,EAC/C,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA8K,OAAAA,EAAsC1O,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFyO,GAlzIjBxO,EAkzIwEC,CAAoB,CAAA,CAAA,EAC9MuO,EAAsCnO,UAnzI4EC,EAAA,CAAAC,KAmzIKiO,EAAqChO,UAAA,CAAA,CAAA,kDAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAnzI1CE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA2yI5G0L,CAAqC,GAAA,EAqCrCC,IAA8C,IAAA,CAApD,MAAMA,UAAuDD,EAAsC,CAC/FlP,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAkP,OAAAA,EAA+C3O,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0O,GAt1I1BzO,EAs1I0FC,CAAoB,CAAA,CAAA,EAChOwO,EAA+CpO,UAv1ImEC,EAAA,CAAAC,KAu1IckO,EAA8CjO,UAAA,CAAA,CAAA,uDAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAv1I5DE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAg1I5G2L,CAA8C,GAAA,EAqB9CC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCjL,CAAkB,CACxDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACAmP,OAAAA,EAA4B5O,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2O,GA32IP1O,EA22IoDC,CAAoB,CAAA,CAAA,EAC1LyO,EAA4BrO,UA52IsFC,EAAA,CAAAC,KA42ILmO,EAA2BlO,UAAA,CAAA,CAAA,uCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAC,QAAA,UAAAC,YAAA,cAAAN,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAC,OAAA,SAAAN,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAC,KAAA,OAAAC,KAAA,OAAA9C,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CA52ItBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAq2I5G4L,CAA2B,GAAA,EAuD3BC,IAAoC,IAAA,CAA1C,MAAMA,UAA6CD,EAA4B,CAC3EpP,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAoP,OAAAA,EAAqC7O,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4O,GAl6IhB3O,EAk6IsEC,CAAoB,CAAA,CAAA,EAC5M0O,EAAqCtO,UAn6I6EC,EAAA,CAAAC,KAm6IIoO,EAAoCnO,UAAA,CAAA,CAAA,4CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAn6IxCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA45I5G6L,CAAoC,GAAA,EAqBpCC,IAA0B,IAAA,CAAhC,MAAMA,UAAmCnL,CAAkB,CACvDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAqP,OAAAA,EAA2B9O,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6O,GAv7IN5O,EAu7IkDC,CAAoB,CAAA,CAAA,EACxL2O,EAA2BvO,UAx7IuFC,EAAA,CAAAC,KAw7INqO,EAA0BpO,UAAA,CAAA,CAAA,sCAAA,CAAA,EAAAC,OAAA,CAAAsE,KAAA,OAAAhE,KAAA,OAAA0D,SAAA,WAAAI,OAAA,SAAAG,KAAA,OAAAC,MAAA,OAAA,EAAA9C,WAAA,GAAAC,SAAA,CAx7IpBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAi7I5G8L,CAA0B,GAAA,EAiC1BC,IAAmC,IAAA,CAAzC,MAAMA,UAA4CD,EAA2B,CACzEtP,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAsP,OAAAA,EAAoC/O,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8O,GAx9If7O,EAw9IoEC,CAAoB,CAAA,CAAA,EAC1M4O,EAAoCxO,UAz9I8EC,EAAA,CAAAC,KAy9IGsO,EAAmCrO,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAz9ItCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAk9I5G+L,CAAmC,GAAA,EAqBnCC,IAA8B,IAAA,CAApC,MAAMA,UAAuCrL,CAAkB,CAC3DnE,YAAYC,EAAsB,CAC9B,MAAM,aAAcA,CAAoB,EACxC,KAAKA,qBAAuBA,CAChC,CACJ,CACAuP,OAAAA,EAA+BhP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+O,GA7+IV9O,EA6+I0DC,CAAoB,CAAA,CAAA,EAChM6O,EAA+BzO,UA9+ImFC,EAAA,CAAAC,KA8+IFuO,EAA8BtO,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAoB,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA9+I5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAu+I5GgM,CAA8B,GAAA,EA+B9BC,IAAuC,IAAA,CAA7C,MAAMA,UAAgDD,EAA+B,CACjFxP,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAwP,OAAAA,EAAwCjP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgP,GA5gJnB/O,EA4gJ4EC,CAAoB,CAAA,CAAA,EAClN8O,EAAwC1O,UA7gJ0EC,EAAA,CAAAC,KA6gJOwO,EAAuCvO,UAAA,CAAA,CAAA,gDAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA7gJ9CE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAsgJ5GiM,CAAuC,GAAA,EAqBvCC,IAA+B,IAAA,CAArC,MAAMA,UAAwCvL,CAAkB,CAC5DnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,CAChC,CACJ,CACAyP,OAAAA,EAAgClP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiP,GAjiJXhP,EAiiJ4DC,CAAoB,CAAA,CAAA,EAClM+O,EAAgC3O,UAliJkFC,EAAA,CAAAC,KAkiJDyO,EAA+BxO,UAAA,CAAA,CAAA,4CAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAQ,SAAA,WAAAC,SAAA,WAAA5C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAliJ9BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA2hJ5GkM,CAA+B,GAAA,EAuC/BC,IAAwC,IAAA,CAA9C,MAAMA,UAAiDD,EAAgC,CACnF1P,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA0P,OAAAA,EAAyCnP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFkP,GAxkJpBjP,EAwkJ8EC,CAAoB,CAAA,CAAA,EACpNgP,EAAyC5O,UAzkJyEC,EAAA,CAAAC,KAykJQ0O,EAAwCzO,UAAA,CAAA,CAAA,iDAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAzkJhDE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAkkJ5GmM,CAAwC,GAAA,EA0BxCC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCzL,CAAkB,CACxDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACA2P,OAAAA,EAA4BpP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmP,GAlmJPlP,EAkmJoDC,CAAoB,CAAA,CAAA,EAC1LiP,EAA4B7O,UAnmJsFC,EAAA,CAAAC,KAmmJL2O,EAA2B1O,UAAA,CAAA,CAAA,uCAAA,CAAA,EAAAC,OAAA,CAAA8F,KAAA,OAAApF,IAAA,MAAAC,IAAA,MAAA6E,WAAA,aAAAO,GAAA,IAAA,EAAArE,WAAA,GAAAC,SAAA,CAnmJtBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA4lJ5GoM,CAA2B,GAAA,EAkC3BC,IAAoC,IAAA,CAA1C,MAAMA,UAA6CD,EAA4B,CAC3E5P,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA4P,OAAAA,EAAqCrP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoP,GApoJhBnP,EAooJsEC,CAAoB,CAAA,CAAA,EAC5MkP,EAAqC9O,UAroJ6EC,EAAA,CAAAC,KAqoJI4O,EAAoC3O,UAAA,CAAA,CAAA,4CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAroJxCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8nJ5GqM,CAAoC,GAAA,EAqBpCC,IAA0B,IAAA,CAAhC,MAAMA,UAAmC3L,CAAkB,CACvDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACA6P,OAAAA,EAA2BtP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqP,GAzpJNpP,EAypJkDC,CAAoB,CAAA,CAAA,EACxLmP,EAA2B/O,UA1pJuFC,EAAA,CAAAC,KA0pJN6O,EAA0B5O,UAAA,CAAA,CAAA,sCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAY,KAAA,OAAAxD,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CA1pJpBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmpJ5GsM,CAA0B,GAAA,EA2C1BC,IAAmC,IAAA,CAAzC,MAAMA,UAA4CD,EAA2B,CACzE9P,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA8P,OAAAA,EAAoCvP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFsP,GApsJfrP,EAosJoEC,CAAoB,CAAA,CAAA,EAC1MoP,EAAoChP,UArsJ8EC,EAAA,CAAAC,KAqsJG8O,EAAmC7O,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CArsJtCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8rJ5GuM,CAAmC,GAAA,EAsBnCC,IAAsB,IAAA,CAA5B,MAAMA,UAA+B7L,CAAkB,CACnDnE,YAAYC,EAAsB,CAC9B,MAAM,OAAQA,CAAoB,EAClC,KAAKA,qBAAuBA,CAChC,CACJ,CACA+P,OAAAA,EAAuBxP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuP,GA1tJFtP,EA0tJ0CC,CAAoB,CAAA,CAAA,EAChLqP,EAAuBjP,UA3tJ2FC,EAAA,CAAAC,KA2tJV+O,EAAsB9O,UAAA,CAAA,CAAA,4BAAA,CAAA,EAAAC,OAAA,CAAA2D,QAAA,UAAAH,OAAA,SAAAnC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA3tJZE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAotJ5GwM,CAAsB,GAAA,EAwCtBC,IAAa,IAAA,CAAnB,MAAMA,UAAsBlQ,EAAwB,CAChDC,YAAYC,EAAsBC,EAAmB,CACjD,MAAMD,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACA+P,OAAAA,EAAczP,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwP,GAnwJOvP,EAmwJwBC,CAAoB,EAnwJ5CD,EAmwJyDE,CAAiB,CAAA,CAAA,EAC5LqP,EAAclP,UApwJoGC,EAAA,CAAAC,KAowJnBgP,EAAa/O,UAAA,CAAA,CAAA,kBAAA,EAAA,CAAA,wBAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAyL,KAAA,OAAAC,OAAA,SAAAlL,OAAA,SAAA/C,KAAA,OAAA0C,QAAA,UAAAhC,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CApwJMC,EAowJ6O,CAACpC,CAAoB,CAAC,EApwJnQqC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA4vJ5GyM,CAAa,GAAA,EAwCbG,IAAsB,IAAA,CAA5B,MAAMA,UAA+BH,EAAc,CAC/CjQ,YAAYC,EAAsB,CAC9B,MAAMA,EAAsB,IAAI,EAChC,KAAKA,qBAAuBA,CAChC,CACJ,CACAmQ,OAAAA,EAAuB5P,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2P,GA1yJF1P,EA0yJ0CC,CAAoB,CAAA,CAAA,EAChLyP,EAAuBrP,UA3yJ2FC,EAAA,CAAAC,KA2yJVmP,EAAsBlP,UAAA,CAAA,CAAA,4BAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA3yJZC,EA2yJqF,CAAC,CAAEyI,QAAS4B,GAAQzB,SAAU,gBAAiB,EAAG,CAAEH,QAAS7K,EAAsB0N,SAAUf,EAA2B,CAAC,CAAC,EA3yJ/MtK,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAoyJ5G4M,CAAsB,GAAA,EAsBtBC,IAAmB,IAAA,CAAzB,MAAMA,UAA4BlM,CAAkB,CAChDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAoQ,OAAAA,EAAoB7P,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4P,GAh0JC3P,EAg0JoCC,CAAoB,CAAA,CAAA,EAC1K0P,EAAoBtP,UAj0J8FC,EAAA,CAAAC,KAi0JboP,EAAmBnP,UAAA,CAAA,CAAA,wBAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAE,SAAA,WAAAa,KAAA,OAAAxD,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAj0JNE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA0zJ5G6M,CAAmB,GAAA,EAuCnBC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCD,EAAoB,CAC1DrQ,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAqQ,OAAAA,EAA4B9P,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6P,GAv2JP5P,EAu2JoDC,CAAoB,CAAA,CAAA,EAC1L2P,EAA4BvP,UAx2JsFC,EAAA,CAAAC,KAw2JLqP,EAA2BpP,UAAA,CAAA,CAAA,kCAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAx2JtBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAi2J5G8M,CAA2B,GAAA,EAsB3BC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCpM,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACAsQ,OAAAA,EAAyB/P,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8P,GA73JJ7P,EA63J8CC,CAAoB,CAAA,CAAA,EACpL4P,EAAyBxP,UA93JyFC,EAAA,CAAAC,KA83JRsP,EAAwBrP,UAAA,CAAA,CAAA,8BAAA,CAAA,EAAAC,OAAA,CAAA8F,KAAA,OAAAC,GAAA,KAAAP,WAAA,YAAA,EAAA9D,WAAA,GAAAC,SAAA,CA93JhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAu3J5G+M,CAAwB,GAAA,EA4BxBC,IAA4B,IAAA,CAAlC,MAAMA,UAAqCC,CAAoB,CAC3DzQ,YAAYC,EAAsBC,EAAmB,CACjD,MAAMD,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACAsQ,OAAAA,EAA6BhQ,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+P,GA15JR9P,EA05JsDC,CAAoB,EA15J1ED,EA05JuFE,CAAiB,CAAA,CAAA,EAC1N4P,EAA6BzP,UA35JqFC,EAAA,CAAAC,KA25JJuP,EAA4BtP,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAuP,eAAA,gBAAA,EAAA7N,WAAA,GAAAC,SAAA,CA35JxBC,EA25JsJ,CAACpC,CAAoB,CAAC,EA35J5KqC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAm5J5GgN,CAA4B,GAAA,EAyD5BG,IAAwB,IAAA,CAA9B,MAAMA,UAAiCC,EAAgB,CACnD5Q,YAAYC,EAAsBC,EAAmB2Q,EAAwBC,EAAe,CACxF,MAAM7Q,EAAsBC,EAAmB2Q,EAAwBC,CAAa,EACpF,KAAK7Q,qBAAuBA,EAC5B,KAAKC,kBAAoBA,EACzB,KAAK2Q,uBAAyBA,EAC9B,KAAKC,cAAgBA,CACzB,CACAC,sBAAuB,CACvB,CACJ,CACAJ,OAAAA,EAAyBnQ,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFkQ,GAv9JJjQ,EAu9J8CC,CAAoB,EAv9JlED,EAu9J+EE,CAAiB,EAv9JhGF,EAu9J6G6K,CAAsB,EAv9JnI7K,EAu9JmJsQ,EAAgB,CAAA,CAAA,EACrRL,EAAyB5P,UAx9JyFC,EAAA,CAAAC,KAw9JR0P,EAAwBzP,UAAA,CAAA,CAAA,8BAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAA6K,GAA7KP,EAAA,GAx9JhBQ,EAAAD,EAw9JiK4M,GAA4B,CAAA,EAAAnN,EAAA,EAAA,CAAA,IAAAS,EAx9J7LC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAW,SAAAH,EAAA,CAAA,EAAAjB,WAAA,GAAAC,SAAA,CAAAC,EAw9J2F,CAACnC,CAAiB,CAAC,EAx9J9GoC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA48J5GmN,CAAwB,GAAA,EA+BxBM,IAAwB,IAAA,CAA9B,MAAMA,UAAiC9M,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,CAChC,CACJ,CACAgR,OAAAA,EAAyBzQ,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwQ,GAj/JJvQ,EAi/J8CC,CAAoB,CAAA,CAAA,EACpLsQ,EAAyBlQ,UAl/JyFC,EAAA,CAAAC,KAk/JRgQ,EAAwB/P,UAAA,CAAA,CAAA,oCAAA,CAAA,EAAAC,OAAA,CAAAK,MAAA,QAAA0P,QAAA,UAAAzP,KAAA,OAAA0P,MAAA,QAAA5L,OAAA,SAAA6L,OAAA,SAAAC,OAAA,QAAA,EAAAxO,WAAA,GAAAC,SAAA,CAl/JhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA2+J5GyN,CAAwB,GAAA,EAmCxBK,IAAiC,IAAA,CAAvC,MAAMA,UAA0CL,EAAyB,CACrEjR,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAqR,OAAAA,EAAkC9Q,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6Q,GAphKb5Q,EAohKgEC,CAAoB,CAAA,CAAA,EACtM2Q,EAAkCvQ,UArhKgFC,EAAA,CAAAC,KAqhKCqQ,EAAiCpQ,UAAA,CAAA,CAAA,8CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CArhKlCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8gK5G8N,CAAiC,GAAA,EAuBjCC,IAAuB,IAAA,CAA7B,MAAMA,UAAgCpN,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,WAAYA,CAAoB,EACtC,KAAKA,qBAAuBA,CAChC,CACJ,CACAsR,OAAAA,EAAwB/Q,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8Q,GA3iKH7Q,EA2iK4CC,CAAoB,CAAA,CAAA,EAClL4Q,EAAwBxQ,UA5iK0FC,EAAA,CAAAC,KA4iKTsQ,EAAuBrQ,UAAA,CAAA,CAAA,kCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAW,SAAA,WAAAS,KAAA,OAAA5E,KAAA,MAAA,EAAA4B,WAAA,GAAAC,SAAA,CA5iKdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAqiK5G+N,CAAuB,GAAA,EA+BvBC,IAAgC,IAAA,CAAtC,MAAMA,UAAyCD,EAAwB,CACnEvR,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAuR,OAAAA,EAAiChR,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+Q,GA1kKZ9Q,EA0kK8DC,CAAoB,CAAA,CAAA,EACpM6Q,EAAiCzQ,UA3kKiFC,EAAA,CAAAC,KA2kKAuQ,EAAgCtQ,UAAA,CAAA,CAAA,4CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA3kKhCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAokK5GgO,CAAgC,GAAA,EAqBhCC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCtN,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,CAChC,CACJ,CACAwR,OAAAA,EAAyBjR,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgR,GA/lKJ/Q,EA+lK8CC,CAAoB,CAAA,CAAA,EACpL8Q,EAAyB1Q,UAhmKyFC,EAAA,CAAAC,KAgmKRwQ,EAAwBvQ,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAsD,OAAA,SAAAjD,MAAA,QAAAC,KAAA,OAAAiQ,QAAA,UAAArN,QAAA,UAAAsN,OAAA,SAAAnP,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAhmKhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAylK5GiO,CAAwB,GAAA,EAqCxBG,IAAiC,IAAA,CAAvC,MAAMA,UAA0CH,EAAyB,CACrEzR,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA2R,OAAAA,EAAkCpR,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmR,GApoKblR,EAooKgEC,CAAoB,CAAA,CAAA,EACtMiR,EAAkC7Q,UAroKgFC,EAAA,CAAAC,KAqoKC2Q,EAAiC1Q,UAAA,CAAA,CAAA,6CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAroKlCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8nK5GoO,CAAiC,GAAA,EAsBjCC,IAAqB,IAAA,CAA3B,MAAMA,UAA8B1N,CAAkB,CAClDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAyN,OAAAA,EAAsBrR,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoR,GA3pKDnR,EA2pKwCC,CAAoB,CAAA,CAAA,EAC9KkR,EAAsB9Q,UA5pK4FC,EAAA,CAAAC,KA4pKX4Q,EAAqB3Q,UAAA,CAAA,CAAA,gCAAA,CAAA,EAAAC,OAAA,CAAA2Q,MAAA,QAAAzQ,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAiN,YAAA,cAAAC,SAAA,WAAAtN,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAA5C,QAAA,UAAA+C,OAAA,SAAA0B,KAAA,OAAAC,GAAA,IAAA,EAAArE,WAAA,GAAAC,SAAA,CA5pKVE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAopK5GqO,CAAqB,GAAA,EAwDrBI,IAA8B,IAAA,CAApC,MAAMA,UAAuCJ,EAAsB,CAC/D7R,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA6N,OAAAA,EAA+BzR,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwR,GAntKVvR,EAmtK0DC,CAAoB,CAAA,CAAA,EAChMsR,EAA+BlR,UAptKmFC,EAAA,CAAAC,KAotKFgR,EAA8B/Q,UAAA,CAAA,CAAA,0CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAptK5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA4sK5GyO,CAA8B,GAAA,EAsB9BC,IAAyB,IAAA,CAA/B,MAAMA,UAAkC/N,CAAkB,CACtDnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA8N,OAAAA,EAA0B1R,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFyR,GAzuKLxR,EAyuKgDC,CAAoB,CAAA,CAAA,EACtLuR,EAA0BnR,UA1uKwFC,EAAA,CAAAC,KA0uKPiR,EAAyBhR,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAA3C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA1uKlBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAkuK5G0O,CAAyB,GAAA,EA0CzBC,IAAkC,IAAA,CAAxC,MAAMA,UAA2CD,EAA0B,CACvElS,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA+N,OAAAA,EAAmC3R,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0R,GAnxKdzR,EAmxKkEC,CAAoB,CAAA,CAAA,EACxMwR,EAAmCpR,UApxK+EC,EAAA,CAAAC,KAoxKEkR,EAAkCjR,UAAA,CAAA,CAAA,+CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CApxKpCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA4wK5G2O,CAAkC,GAAA,EAsBlCC,IAAuB,IAAA,CAA7B,MAAMA,UAAgCjO,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAgO,OAAAA,EAAwB5R,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2R,GAzyKH1R,EAyyK4CC,CAAoB,CAAA,CAAA,EAClLyR,EAAwBrR,UA1yK0FC,EAAA,CAAAC,KA0yKTmR,EAAuBlR,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAA3C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA1yKdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAkyK5G4O,CAAuB,GAAA,EA0CvBC,IAAgC,IAAA,CAAtC,MAAMA,UAAyCD,EAAwB,CACnEpS,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAiO,OAAAA,EAAiC7R,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4R,GAn1KZ3R,EAm1K8DC,CAAoB,CAAA,CAAA,EACpM0R,EAAiCtR,UAp1KiFC,EAAA,CAAAC,KAo1KAoR,EAAgCnR,UAAA,CAAA,CAAA,6CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAp1KhCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA40K5G6O,CAAgC,GAAA,EAiChCC,IAAsB,IAAA,CAA5B,MAAMA,UAA+BnO,CAAkB,CACnDnE,YAAYC,EAAsB,CAC9B,MAAM,UAAWA,CAAoB,EACrC,KAAKA,qBAAuBA,CAChC,CACJ,CACAqS,OAAAA,EAAuB9R,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6R,GAn3KF5R,EAm3K0CC,CAAoB,CAAA,CAAA,EAChL2R,EAAuBvR,UAp3K2FC,EAAA,CAAAC,KAo3KVqR,EAAsBpR,UAAA,CAAA,CAAA,iCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAW,SAAA,WAAAS,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,UAAA+C,OAAA,SAAA0B,KAAA,OAAAC,GAAA,IAAA,EAAArE,WAAA,GAAAC,SAAA,CAp3KZE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA62K5G8O,CAAsB,GAAA,EAuCtBC,IAA+B,IAAA,CAArC,MAAMA,UAAwCD,EAAuB,CACjEtS,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAsS,OAAAA,EAAgC/R,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8R,GA15KX7R,EA05K4DC,CAAoB,CAAA,CAAA,EAClM4R,EAAgCxR,UA35KkFC,EAAA,CAAAC,KA25KDsR,EAA+BrR,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA35K9BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAo5K5G+O,CAA+B,GAAA,EAiC/BC,IAAoB,IAAA,CAA1B,MAAMA,UAA6BrO,CAAkB,CACjDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAuS,OAAAA,EAAqBhS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+R,GA37KA9R,EA27KsCC,CAAoB,CAAA,CAAA,EAC5K6R,EAAqBzR,UA57K6FC,EAAA,CAAAC,KA47KZuR,EAAoBtR,UAAA,CAAA,CAAA,+BAAA,CAAA,EAAAC,OAAA,CAAAM,KAAA,OAAA0D,SAAA,WAAAI,OAAA,SAAAG,KAAA,OAAAC,MAAA,OAAA,EAAA9C,WAAA,GAAAC,SAAA,CA57KRE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAq7K5GgP,CAAoB,GAAA,EA+BpBC,IAA6B,IAAA,CAAnC,MAAMA,UAAsCD,EAAqB,CAC7DxS,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACAwS,OAAAA,EAA8BjS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgS,GA19KT/R,EA09KwDC,CAAoB,CAAA,CAAA,EAC9L8R,EAA8B1R,UA39KoFC,EAAA,CAAAC,KA29KHwR,EAA6BvR,UAAA,CAAA,CAAA,yCAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA39K1BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAo9K5GiP,CAA6B,GAAA,EAqB7BC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCvO,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,aAAcA,CAAoB,EACxC,KAAKA,qBAAuBA,CAChC,CACJ,CACAyS,OAAAA,EAAyBlS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiS,GA/+KJhS,EA++K8CC,CAAoB,CAAA,CAAA,EACpL+R,EAAyB3R,UAh/KyFC,EAAA,CAAAC,KAg/KRyR,EAAwBxR,UAAA,CAAA,CAAA,oCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAoB,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAh/KhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAy+K5GkP,CAAwB,GAAA,EA+BxBC,IAAiC,IAAA,CAAvC,MAAMA,UAA0CD,EAAyB,CACrE1S,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA0S,OAAAA,EAAkCnS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFkS,GA9gLbjS,EA8gLgEC,CAAoB,CAAA,CAAA,EACtMgS,EAAkC5R,UA/gLgFC,EAAA,CAAAC,KA+gLC0R,EAAiCzR,UAAA,CAAA,CAAA,8CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA/gLlCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAwgL5GmP,CAAiC,GAAA,EAqBjCC,IAAyB,IAAA,CAA/B,MAAMA,UAAkCzO,CAAkB,CACtDnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,CAChC,CACJ,CACA2S,OAAAA,EAA0BpS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmS,GAniLLlS,EAmiLgDC,CAAoB,CAAA,CAAA,EACtLiS,EAA0B7R,UApiLwFC,EAAA,CAAAC,KAoiLP2R,EAAyB1R,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAQ,SAAA,WAAAC,SAAA,WAAA5C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CApiLlBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA6hL5GoP,CAAyB,GAAA,EAuCzBC,IAAkC,IAAA,CAAxC,MAAMA,UAA2CD,EAA0B,CACvE5S,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA4S,OAAAA,EAAmCrS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoS,GA1kLdnS,EA0kLkEC,CAAoB,CAAA,CAAA,EACxMkS,EAAmC9R,UA3kL+EC,EAAA,CAAAC,KA2kLE4R,EAAkC3R,UAAA,CAAA,CAAA,+CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CA3kLpCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAokL5GqP,CAAkC,GAAA,EAuBlCC,IAAuB,IAAA,CAA7B,MAAMA,UAAgC3O,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,WAAYA,CAAoB,EACtC,KAAKA,qBAAuBA,CAChC,CACJ,CACA6S,OAAAA,EAAwBtS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqS,GAjmLHpS,EAimL4CC,CAAoB,CAAA,CAAA,EAClLmS,EAAwB/R,UAlmL0FC,EAAA,CAAAC,KAkmLT6R,EAAuB5R,UAAA,CAAA,CAAA,kCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAW,SAAA,WAAAS,KAAA,OAAA5E,KAAA,MAAA,EAAA4B,WAAA,GAAAC,SAAA,CAlmLdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA2lL5GsP,CAAuB,GAAA,EA+BvBC,IAAgC,IAAA,CAAtC,MAAMA,UAAyCD,EAAwB,CACnE9S,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA8S,OAAAA,EAAiCvS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFsS,GAhoLZrS,EAgoL8DC,CAAoB,CAAA,CAAA,EACpMoS,EAAiChS,UAjoLiFC,EAAA,CAAAC,KAioLA8R,EAAgC7R,UAAA,CAAA,CAAA,4CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAjoLhCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA0nL5GuP,CAAgC,GAAA,EAsBhCC,IAA+B,IAAA,CAArC,MAAMA,UAAwCC,EAAuB,CACjEjT,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,CAChC,CACJ,CACA+S,OAAAA,EAAgCxS,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuS,GAtpLXtS,EAspL4DC,CAAoB,CAAA,CAAA,EAClMqS,EAAgCjS,UAvpLkFC,EAAA,CAAAC,KAupLD+R,EAA+B9R,UAAA,CAAA,CAAA,2CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAvpL9BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAgpL5GwP,CAA+B,GAAA,EA2B/BE,IAAkB,IAAA,CAAxB,MAAMA,UAA2B7K,EAAe,CAC5CrI,YAAYC,EAAsBqI,EAAcC,EAASpI,EAAMqI,EAAqBC,EAAQC,EAAsBC,EAAgBC,EAAU,CACxI,MAAM3I,EAAsBqI,EAAcC,EAASpI,EAAMqI,EAAqBC,EAAQC,EAAsBC,EAAgBC,CAAQ,EACpI,KAAK3I,qBAAuBA,EAC5B,KAAKqI,aAAeA,EACpB,KAAKC,QAAUA,EACf,KAAKpI,KAAOA,EACZ,KAAKqI,oBAAsBA,EAC3B,KAAKC,OAASA,EACd,KAAKC,qBAAuBA,EAC5B,KAAKC,eAAiBA,EACtB,KAAKC,SAAWA,EAIhB,KAAKC,UAAY,IAAIC,EAIrB,KAAKC,qBAAuB,IAAID,EAIhC,KAAKqK,oBAAsB,8BAI3B,KAAKC,sBAAwB,CACzB,sBAAuB,EAC3B,EAIA,KAAKpK,qBAAuB,GAC5B,KAAKE,YAAc,CAAC,cAAe,UAAU,EAC7C,IAAMC,EAAUC,GAAgBC,EAAe,EAC/C,KAAKL,qBAAuBM,GAAuBH,CAAO,CAC9D,CAIA,IAAII,gBAAiB,CACjB,OAAO,KAAKC,eAAeC,MAC/B,CACAE,eAAepB,EAASqB,EAAU,CAC9B,KAAKO,SAAW,IAAIkJ,GAAU9K,EAAS8K,GAAUC,iBAAiB,KAAKvJ,OAAO,EAAG,KAAKM,MAAO,CACzFC,YAAa,KAAKnK,KAClByJ,SAAUA,EACVW,IAAK,KAAKA,IACVvD,OAAQ,IACZ,CAAC,CACL,CACAwD,eAAgB,CACZ,KAAKL,SAASS,WAAWyI,GAAUC,iBAAiB,KAAKvJ,OAAO,CAAC,CACrE,CACJ,CACAmJ,OAAAA,EAAmB1S,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFyS,GAnuLExS,EAmuLkCC,CAAoB,EAnuLtDD,EAmuLmEqK,EAAY,EAnuL/ErK,EAmuL+FsK,CAAU,EAnuLzGtK,EAmuLyHG,CAAW,EAnuLpIH,EAmuLoJuK,CAAmB,EAnuLvKvK,EAmuLuLwK,CAAM,EAnuL7LxK,EAmuL0MmH,EAAsB,EAnuLhOnH,EAmuLgPyK,EAAiB,EAnuLjQzK,EAmuLiR0K,EAAS,CAAA,CAAA,EAC5Y8H,EAAmBnS,UApuL+FC,EAAA,CAAAC,KAouLdiS,EAAkBhS,UAAA,CAAA,CAAA,iBAAA,CAAA,EAAAC,OAAA,CAAAF,KAAA,OAAAwE,KAAA,OAAA8D,eAAA,gBAAA,EAAA8B,QAAA,CAAAxC,UAAA,YAAAE,qBAAA,sBAAA,EAAAuC,SAAA,CAAA,gBAAA,EAAAzI,WAAA,GAAAC,SAAA,CApuLJC,EAouL+N,CACzUpC,EACA4K,EACA1D,GACAoD,EACA,CACIO,QAASE,GACTC,SAAU,aACd,CAAC,CACJ,EA7uL6G3I,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAyI,OAAA,CAAA,CAAA,UAAA,EAAA,EAAA,CAAA,EAAA,iBAAA,EAAA,CAAA,EAAA,eAAA,EAAA,CAAA,EAAA,QAAA,UAAA,eAAA,aAAA,eAAA,EAAA,CAAA,EAAA,QAAA,EAAA,CAAA,wBAAA,GAAA,EAAA,MAAA,EAAA,CAAA,wBAAA,EAAA,CAAA,EAAAxI,SAAA,SAAAC,EAAAC,EAAA,CAAA,GAAAD,EAAA,EAAA,CAAA,IAAAwI,EAAAC,GAAA,EAAAC,EAAA,EAAA,OAAA,EAAA,CA8uL7D,EAAC,EAAA,2CAAA,CAEJ,EAhvLgEC,EAAA,EAAA,4BAAA,CAkvLE,EAlvLFC,EAAA,QAAA,SAAAC,EAAA,CAAFC,OAAEC,EAAAP,CAAA,EAAAQ,EAkvLxD/I,EAAAgJ,kBAAAJ,CAAwB,CAAC,CAAA,CAAA,EAlvL+BK,EAmvL/E,EAnvL+EP,EAAA,EAAA,sBAAA,CAovLhE,EApvLgEC,EAAA,SAAA,UAAA,CAAFE,OAAEC,EAAAP,CAAA,EAAAQ,EAovL3E/I,EAAAkJ,SAAS,CAAC,CAAA,CAAA,EApvLiED,EAovL1C,EApvL0CE,EAAA,EAAA8G,GAAA,EAAA,EAAA,MAAA,CAsvLnD,CAAC,CAAAlQ,EAAA,IAtvLkDsJ,EAAA,CA+uLlC,EA/uLkCC,EAAA,gBAAAtJ,EAAAuJ,aA+uLlC,EA/uLkCF,EAivL/D,EAjvL+DC,EAAA,UAAA,EAivL/D,EAAC,eAAAtJ,EAAA6P,mBAAoC,EAAC,aAAA7P,EAAA8P,qBAC1C,EAAC,gBAAA9P,EAAAuJ,aAAmE,EAlvLDF,EAAA,CAsvLrD,EAtvLqDC,EAAA,OAAAtJ,EAAA0F,oBAsvLrD,EAAC,EAAA8D,aAAA,CACGC,EAAmJC,EAAmLC,GAAiIC,EAAiGC,EAAyB,EAAA5J,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA5E5nB0P,CAAkB,GAAA,EA+HlBM,IAAqB,IAAA,CAA3B,MAAMA,UAA8BrP,CAAkB,CAClDnE,YAAYC,EAAsB,CAC9B,MAAM,eAAgBA,CAAoB,EAC1C,KAAKA,qBAAuBA,CAChC,CACJ,CACAuT,OAAAA,EAAsBhT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+S,GAhzLD9S,EAgzLwCC,CAAoB,CAAA,CAAA,EAC9K6S,EAAsBzS,UAjzL4FC,EAAA,CAAAC,KAizLXuS,EAAqBtS,UAAA,CAAA,CAAA,2BAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAG,MAAA,QAAAC,KAAA,OAAAC,eAAA,iBAAAC,WAAA,aAAAI,eAAA,iBAAAC,WAAA,aAAAG,YAAA,cAAAC,KAAA,OAAAC,UAAA,YAAAC,QAAA,UAAAC,WAAA,aAAAC,QAAA,UAAAC,UAAA,YAAAC,OAAA,SAAAE,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CAjzLVE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA0yL5GgQ,CAAqB,GAAA,EAqDrBC,IAA8B,IAAA,CAApC,MAAMA,UAAuCtP,CAAkB,CAC3DnE,YAAYC,EAAsB,CAC9B,MAAM,yBAA0BA,CAAoB,EACpD,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAqP,OAAAA,EAA+BjT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgT,GAt2LV/S,EAs2L0DC,CAAoB,CAAA,CAAA,EAChM8S,EAA+B1S,UAv2LmFC,EAAA,CAAAC,KAu2LFwS,EAA8BvS,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAAC,OAAA,CAAAK,MAAA,QAAAwN,SAAA,WAAA3K,QAAA,UAAA7B,QAAA,UAAA8B,MAAA,QAAAC,QAAA,SAAA,EAAA1B,WAAA,GAAAC,SAAA,CAv2L5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA+1L5GiQ,CAA8B,GAAA,EAoC9BC,IAAqC,IAAA,CAA3C,MAAMA,UAA8CvP,CAAkB,CAClEnE,YAAYC,EAAsB,CAC9B,MAAM,iCAAkCA,CAAoB,EAC5D,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAsP,OAAAA,EAAsClT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiT,GA14LjBhT,EA04LwEC,CAAoB,CAAA,CAAA,EAC9M+S,EAAsC3S,UA34L4EC,EAAA,CAAAC,KA24LKyS,EAAqCxS,UAAA,CAAA,CAAA,6CAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA34L1CE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAm4L5GkQ,CAAqC,GAAA,EAoCrCC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCxP,CAAkB,CACxDnE,YAAYC,EAAsB,CAC9B,MAAM,sBAAuBA,CAAoB,EACjD,KAAKA,qBAAuBA,CAChC,CACJ,CACA0T,OAAAA,EAA4BnT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFkT,GA76LPjT,EA66LoDC,CAAoB,CAAA,CAAA,EAC1LgT,EAA4B5S,UA96LsFC,EAAA,CAAAC,KA86LL0S,EAA2BzS,UAAA,CAAA,CAAA,kCAAA,CAAA,EAAAC,OAAA,CAAA2D,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAC,OAAA,SAAAN,QAAA,UAAAQ,SAAA,WAAAC,KAAA,OAAAC,KAAA,OAAA9C,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CA96LtBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAu6L5GmQ,CAA2B,GAAA,EA2C3BC,IAA0B,IAAA,CAAhC,MAAMA,UAAmCzP,CAAkB,CACvDnE,YAAYC,EAAsB,CAC9B,MAAM,qBAAsBA,CAAoB,EAChD,KAAKA,qBAAuBA,CAChC,CACJ,CACA2T,OAAAA,EAA2BpT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmT,GAx9LNlT,EAw9LkDC,CAAoB,CAAA,CAAA,EACxLiT,EAA2B7S,UAz9LuFC,EAAA,CAAAC,KAy9LN2S,EAA0B1S,UAAA,CAAA,CAAA,iCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAY,KAAA,OAAAxD,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAz9LpBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAk9L5GoQ,CAA0B,GAAA,EAkE1BC,IAAqB,IAAA,CAA3B,MAAMA,UAA8BnQ,EAAoB,CACpD1D,YAAYC,EAAsBC,EAAmB,CACjD,MAAM,eAAgBD,EAAsBC,CAAiB,EAC7D,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACA2T,OAAAA,EAAsBrT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoT,GA3hMDnT,EA2hMwCC,CAAoB,EA3hM5DD,EA2hMyEE,CAAiB,CAAA,CAAA,EAC5MiT,EAAsB9S,UA5hM4FC,EAAA,CAAAC,KA4hMX4S,EAAqB3S,UAAA,CAAA,CAAA,2BAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAAuK,GAAvKP,EAAA,GA5hMVQ,EAAAD,EA4hMwJ0K,GAAyB,CAAA,EAAAjL,EAAA,EAAA,CAAA,IAAAS,EA5hMjLC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAW,SAAAH,EAAA,CAAA,EAAAjB,WAAA,GAAAC,SAAA,CAAAC,EA4hMkF,CAACnC,CAAiB,CAAC,EA5hMrGoC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAohM5GqQ,CAAqB,GAAA,EA0BrBC,IAAgC,IAAA,CAAtC,MAAMA,UAAyC1E,EAA4B,CACvEpP,YAAYC,EAAsB,CAC9B,MAAMA,CAAoB,EAC1B,KAAKA,qBAAuBA,EAC5B,KAAK8T,UAAY,cACjB,KAAK3P,cAAc,CACvB,CACJ,CACA0P,OAAAA,EAAiCtT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqT,GAtjMZpT,EAsjM8DC,CAAoB,CAAA,CAAA,EACpMmT,EAAiC/S,UAvjMiFC,EAAA,CAAAC,KAujMA6S,EAAgC5S,UAAA,CAAA,CAAA,6CAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAvjMhCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA8iM5GsQ,CAAgC,GAAA,EAyBhCE,IAAkB,IAAA,CAAxB,MAAMA,UAA2B7P,CAAkB,CAC/CnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,CAChC,CACJ,CACA+T,OAAAA,EAAmBxT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuT,GA7kMEtT,EA6kMkCC,CAAoB,CAAA,CAAA,EACxKqT,EAAmBjT,UA9kM+FC,EAAA,CAAAC,KA8kMd+S,EAAkB9S,UAAA,CAAA,CAAA,kBAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAA0L,OAAA,SAAAlL,OAAA,SAAAZ,QAAA,UAAAC,MAAA,OAAA,EAAAzB,WAAA,GAAAC,SAAA,CA9kMJE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAukM5GwQ,CAAkB,GAAA,EAkClBC,IAAe,IAAA,CAArB,MAAMA,UAAwB9P,CAAkB,CAC5CnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACA6P,OAAAA,EAAgBzT,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwT,GAhnMKvT,EAgnM4BC,CAAoB,CAAA,CAAA,EAClKsT,EAAgBlT,UAjnMkGC,EAAA,CAAAC,KAinMjBgT,EAAe/S,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAC,OAAA,CAAA2Q,MAAA,QAAAzQ,WAAA,aAAAoD,OAAA,SAAA0L,OAAA,SAAAzN,OAAA,SAAAuC,OAAA,SAAAiP,QAAA,UAAAC,QAAA,UAAAC,YAAA,cAAAxP,QAAA,UAAAO,SAAA,WAAA7C,QAAA,UAAAE,QAAA,UAAA8B,MAAA,QAAAoN,QAAA,UAAA2C,QAAA,UAAAC,cAAA,gBAAAC,KAAA,OAAA3R,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CAjnMEE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAymM5GyQ,CAAe,GAAA,EAsEfO,IAA4B,IAAA,CAAlC,MAAMA,UAAqCrQ,CAAkB,CACzDnE,YAAYC,EAAsB,CAC9B,MAAM,uBAAwBA,CAAoB,EAClD,KAAKA,qBAAuBA,CAChC,CACJ,CACAuU,OAAAA,EAA6BhU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+T,GArrMR9T,EAqrMsDC,CAAoB,CAAA,CAAA,EAC5L6T,EAA6BzT,UAtrMqFC,EAAA,CAAAC,KAsrMJuT,EAA4BtT,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAuB,OAAA,QAAA,EAAAG,WAAA,GAAAC,SAAA,CAtrMxBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA+qM5GgR,CAA4B,GAAA,EAiC5BC,IAAmB,IAAA,CAAzB,MAAMA,UAA4BtQ,CAAkB,CAChDnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,CAChC,CACJ,CACAwU,OAAAA,EAAoBjU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgU,GAttMC/T,EAstMoCC,CAAoB,CAAA,CAAA,EAC1K8T,EAAoB1T,UAvtM8FC,EAAA,CAAAC,KAutMbwT,EAAmBvT,UAAA,CAAA,CAAA,yBAAA,CAAA,EAAAC,OAAA,CAAAuT,OAAA,SAAAzT,KAAA,OAAAQ,KAAA,OAAAkT,KAAA,OAAAjD,QAAA,UAAAkD,UAAA,YAAArP,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAvtMNE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAgtM5GiR,CAAmB,GAAA,EAoCnBI,IAAqB,IAAA,CAA3B,MAAMA,UAA8B1Q,CAAkB,CAClDnE,YAAYC,EAAsB,CAC9B,MAAM,eAAgBA,CAAoB,EAC1C,KAAKA,qBAAuBA,CAChC,CACJ,CACA4U,OAAAA,EAAsBrU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoU,GA1vMDnU,EA0vMwCC,CAAoB,CAAA,CAAA,EAC9KkU,EAAsB9T,UA3vM4FC,EAAA,CAAAC,KA2vMX4T,EAAqB3T,UAAA,CAAA,CAAA,2BAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAyL,KAAA,OAAAC,OAAA,SAAAlL,OAAA,SAAAL,QAAA,UAAAhC,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CA3vMVE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAovM5GqR,CAAqB,GAAA,EAmCrBC,IAA0B,IAAA,CAAhC,MAAMA,UAAmC3Q,CAAkB,CACvDnE,YAAYC,EAAsB,CAC9B,MAAM,qBAAsBA,CAAoB,EAChD,KAAKA,qBAAuBA,CAChC,CACJ,CACA6U,OAAAA,EAA2BtU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqU,GA7xMNpU,EA6xMkDC,CAAoB,CAAA,CAAA,EACxLmU,EAA2B/T,UA9xMuFC,EAAA,CAAAC,KA8xMN6T,EAA0B5T,UAAA,CAAA,CAAA,iCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAE,SAAA,WAAA3C,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CA9xMpBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAuxM5GsR,CAA0B,GAAA,EAgD1BC,IAAc,IAAA,CAApB,MAAMA,UAAuBrR,EAAoB,CAC7C1D,YAAYC,EAAsBC,EAAmB,CACjD,MAAM,QAASD,EAAsBC,CAAiB,EACtD,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACA6U,OAAAA,EAAevU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFsU,GA90MMrU,EA80M0BC,CAAoB,EA90M9CD,EA80M2DE,CAAiB,CAAA,CAAA,EAC9LmU,EAAehU,UA/0MmGC,EAAA,CAAAC,KA+0MlB8T,EAAc7T,UAAA,CAAA,CAAA,mBAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAAmJ,GAAnJP,EAAA,GA/0MIQ,EAAAD,EA+0MkIqM,GAAa,CAAA,EAAA5M,EAAA,EAAA,CAAA,IAAAS,EA/0M/IC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAW,SAAAH,EAAA,CAAA,EAAAjB,WAAA,GAAAC,SAAA,CAAAC,EA+0M4D,CAACnC,CAAiB,CAAC,EA/0M/EoC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAu0M5GuR,CAAc,GAAA,EA4BdC,IAAiB,IAAA,CAAvB,MAAMA,UAA0B7Q,CAAkB,CAC9CnE,YAAYC,EAAsB,CAC9B,MAAM,WAAYA,CAAoB,EACtC,KAAKA,qBAAuBA,CAChC,CACJ,CACA+U,OAAAA,EAAkBxU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuU,GAz2MGtU,EAy2MgCC,CAAoB,CAAA,CAAA,EACtKqU,EAAkBjU,UA12MgGC,EAAA,CAAAC,KA02Mf+T,EAAiB9T,UAAA,CAAA,CAAA,uBAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAQ,OAAA,SAAAZ,QAAA,UAAAO,QAAA,SAAA,EAAA/B,WAAA,GAAAC,SAAA,CA12MFE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAm2M5GwR,CAAiB,GAAA,EAgCjBC,IAAuB,IAAA,CAA7B,MAAMA,UAAgC9Q,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,iBAAkBA,CAAoB,EAC5C,KAAKA,qBAAuBA,CAChC,CACJ,CACAgV,OAAAA,EAAwBzU,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwU,GAz4MHvU,EAy4M4CC,CAAoB,CAAA,CAAA,EAClLsU,EAAwBlU,UA14M0FC,EAAA,CAAAC,KA04MTgU,EAAuB/T,UAAA,CAAA,CAAA,6BAAA,CAAA,EAAAC,OAAA,CAAAsD,OAAA,SAAAyQ,IAAA,MAAAN,UAAA,YAAAO,QAAA,UAAAd,QAAA,UAAAe,MAAA,QAAAnU,KAAA,OAAAsE,OAAA,SAAA7C,OAAA,SAAAC,MAAA,QAAA4B,QAAA,SAAA,EAAA1B,WAAA,GAAAC,SAAA,CA14MdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAm4M5GyR,CAAuB,GAAA,EA2CvBI,IAA6B,IAAA,CAAnC,MAAMA,UAAsClR,CAAkB,CAC1DnE,YAAYC,EAAsB,CAC9B,MAAM,wBAAyBA,CAAoB,EACnD,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAiR,OAAAA,EAA8B7U,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4U,GAr7MT3U,EAq7MwDC,CAAoB,CAAA,CAAA,EAC9L0U,EAA8BtU,UAt7MoFC,EAAA,CAAAC,KAs7MHoU,EAA6BnU,UAAA,CAAA,CAAA,oCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAL,QAAA,UAAApC,QAAA,UAAA+C,OAAA,SAAA0B,KAAA,OAAAC,GAAA,IAAA,EAAArE,WAAA,GAAAC,SAAA,CAt7M1BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA86M5G6R,CAA6B,GAAA,EA8C7BC,IAAiC,IAAA,CAAvC,MAAMA,UAA0CnR,CAAkB,CAC9DnE,YAAYC,EAAsB,CAC9B,MAAM,6BAA8BA,CAAoB,EACxD,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAkR,OAAAA,EAAkC9U,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6U,GAn+Mb5U,EAm+MgEC,CAAoB,CAAA,CAAA,EACtM2U,EAAkCvU,UAp+MgFC,EAAA,CAAAC,KAo+MCqU,EAAiCpU,UAAA,CAAA,CAAA,yCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAL,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAp+MlCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA49M5G8R,CAAiC,GAAA,EAwCjCC,IAA+B,IAAA,CAArC,MAAMA,UAAwCpR,CAAkB,CAC5DnE,YAAYC,EAAsB,CAC9B,MAAM,2BAA4BA,CAAoB,EACtD,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAmR,OAAAA,EAAgC/U,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8U,GA3gNX7U,EA2gN4DC,CAAoB,CAAA,CAAA,EAClM4U,EAAgCxU,UA5gNkFC,EAAA,CAAAC,KA4gNDsU,EAA+BrU,UAAA,CAAA,CAAA,uCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAL,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA5gN9BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAogN5G+R,CAA+B,GAAA,EAwC/BC,IAA4B,IAAA,CAAlC,MAAMA,UAAqCrR,CAAkB,CACzDnE,YAAYC,EAAsB,CAC9B,MAAM,uBAAwBA,CAAoB,EAClD,KAAKA,qBAAuBA,CAChC,CACJ,CACAuV,OAAAA,EAA6BhV,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+U,GAljNR9U,EAkjNsDC,CAAoB,CAAA,CAAA,EAC5L6U,EAA6BzU,UAnjNqFC,EAAA,CAAAC,KAmjNJuU,EAA4BtU,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAM,KAAA,OAAA8D,OAAA,SAAAG,KAAA,OAAAC,MAAA,OAAA,EAAA9C,WAAA,GAAAC,SAAA,CAnjNxBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA4iN5GgS,CAA4B,GAAA,EA6B5BC,IAAgC,IAAA,CAAtC,MAAMA,UAAyCtR,CAAkB,CAC7DnE,YAAYC,EAAsB,CAC9B,MAAM,4BAA6BA,CAAoB,EACvD,KAAKA,qBAAuBA,CAChC,CACJ,CACAwV,OAAAA,EAAiCjV,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgV,GA/kNZ/U,EA+kN8DC,CAAoB,CAAA,CAAA,EACpM8U,EAAiC1U,UAhlNiFC,EAAA,CAAAC,KAglNAwU,EAAgCvU,UAAA,CAAA,CAAA,wCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAoB,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAhlNhCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAykN5GiS,CAAgC,GAAA,EA+BhCC,IAAiC,IAAA,CAAvC,MAAMA,UAA0CvR,CAAkB,CAC9DnE,YAAYC,EAAsB,CAC9B,MAAM,6BAA8BA,CAAoB,EACxD,KAAKA,qBAAuBA,CAChC,CACJ,CACAyV,OAAAA,EAAkClV,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiV,GA9mNbhV,EA8mNgEC,CAAoB,CAAA,CAAA,EACtM+U,EAAkC3U,UA/mNgFC,EAAA,CAAAC,KA+mNCyU,EAAiCxU,UAAA,CAAA,CAAA,yCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAQ,SAAA,WAAAC,SAAA,WAAA5C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA/mNlCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAwmN5GkS,CAAiC,GAAA,EAuCjCC,IAA8B,IAAA,CAApC,MAAMA,UAAuCxR,CAAkB,CAC3DnE,YAAYC,EAAsB,CAC9B,MAAM,yBAA0BA,CAAoB,EACpD,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAuR,OAAAA,EAA+BnV,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFkV,GAtpNVjV,EAspN0DC,CAAoB,CAAA,CAAA,EAChMgV,EAA+B5U,UAvpNmFC,EAAA,CAAAC,KAupNF0U,EAA8BzU,UAAA,CAAA,CAAA,qCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAvpN5BE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA+oN5GmS,CAA8B,GAAA,EAqC9BC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCzR,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,CAChC,CACJ,CACA2V,OAAAA,EAAyBpV,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmV,GA1rNJlV,EA0rN8CC,CAAoB,CAAA,CAAA,EACpLiV,EAAyB7U,UA3rNyFC,EAAA,CAAAC,KA2rNR2U,EAAwB1U,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAA0U,OAAA,SAAAC,MAAA,QAAAC,SAAA,UAAA,EAAAlT,WAAA,GAAAC,SAAA,CA3rNhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAorN5GoS,CAAwB,GAAA,EA4BxBI,IAAgC,IAAA,CAAtC,MAAMA,UAAyC7R,CAAkB,CAC7DnE,YAAYC,EAAsB,CAC9B,MAAM,WAAYA,CAAoB,EACtC,KAAKA,qBAAuBA,CAChC,CACJ,CACA+V,OAAAA,EAAiCxV,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFuV,GAttNZtV,EAstN8DC,CAAoB,CAAA,CAAA,EACpMqV,EAAiCjV,UAvtNiFC,EAAA,CAAAC,KAutNA+U,EAAgC9U,UAAA,CAAA,CAAA,4CAAA,CAAA,EAAAC,OAAA,CAAA8U,OAAA,SAAAC,MAAA,QAAAH,SAAA,UAAA,EAAAlT,WAAA,GAAAC,SAAA,CAvtNhCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAgtN5GwS,CAAgC,GAAA,EAmChCG,IAAiB,IAAA,CAAvB,MAAMA,UAA0BhS,CAAkB,CAC9CnE,YAAYC,EAAsB,CAC9B,MAAM,WAAYA,CAAoB,EACtC,KAAKA,qBAAuBA,CAChC,CACJ,CACAkW,OAAAA,EAAkB3V,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0V,GAzvNGzV,EAyvNgCC,CAAoB,CAAA,CAAA,EACtKwV,EAAkBpV,UA1vNgGC,EAAA,CAAAC,KA0vNfkV,EAAiBjV,UAAA,CAAA,CAAA,sBAAA,CAAA,EAAAC,OAAA,CAAA2Q,MAAA,QAAAzQ,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAa,KAAA,OAAAxD,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA1vNFE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmvN5G2S,CAAiB,GAAA,EAkDjBC,IAAc,IAAA,CAApB,MAAMA,UAAuBjS,CAAkB,CAC3CnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAmW,OAAAA,EAAe5V,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2V,GA3yNM1V,EA2yN0BC,CAAoB,CAAA,CAAA,EAChKyV,EAAerV,UA5yNmGC,EAAA,CAAAC,KA4yNlBmV,EAAclV,UAAA,CAAA,CAAA,mBAAA,CAAA,EAAAC,OAAA,CAAA2Q,MAAA,QAAAzQ,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAa,KAAA,OAAAqQ,YAAA,cAAA7T,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA5yNIE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAqyN5G4S,CAAc,GAAA,EA4CdE,IAAgB,IAAA,CAAtB,MAAMA,UAAyBnS,CAAkB,CAC7CnE,YAAYC,EAAsBsW,EAAiB,CAC/C,MAAM,UAAWtW,CAAoB,EACrC,KAAKA,qBAAuBA,EAC5B,KAAKsW,gBAAkBA,EACvB,KAAKnS,cAAc,CACvB,CACAoS,uBAAwB,CACpB,KAAKD,gBAAgBE,YAAY,KAAKC,sBAAwB,KAAKA,sBAAsBC,YAAc,IAAI,EAC3G,KAAKJ,gBAAgBK,kBAAkB,KAAKC,sBAAwB,KAAKA,sBAAsBF,YAAc,IAAI,CACrH,CACJ,CACAL,OAAAA,EAAiB9V,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6V,GA71NI5V,EA61N8BC,CAAoB,EA71NlDD,EA61N+D6K,CAAsB,CAAA,CAAA,EACvM+K,EAAiBvV,UA91NiGC,EAAA,CAAAC,KA81NhBqV,EAAgBpV,UAAA,CAAA,CAAA,qBAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAA4c,GAA5cP,EAAA,IA91NAQ,EAAAD,EA81NwTkT,GAA8B,CAAA,EA91NtVjT,EAAAD,EA81N8amT,GAA8B,CAAA,GAAA1T,EAAA,EAAA,CAAA,IAAAS,EA91N5cC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAoT,sBAAA5S,EAAAkT,OAAAjT,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAuT,sBAAA/S,EAAAkT,MAAA,CAAA,EAAA7V,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAN,QAAA,UAAAO,QAAA,UAAAqS,OAAA,SAAAzU,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAAAE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,CAAA,CAAA,EAi1N5G+S,CAAgB,GAAA,EAkDhBY,IAAsB,IAAA,CAA5B,MAAMA,UAA+BnX,EAAwB,CACzDC,YAAYC,EAAsBC,EAAmB,CACjD,MAAMD,EAAsBC,CAAiB,EAC7C,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACAgX,OAAAA,EAAuB1W,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFyW,GA14NFxW,EA04N0CC,CAAoB,EA14N9DD,EA04N2EE,CAAiB,CAAA,CAAA,EAC9MsW,EAAuBnW,UA34N2FC,EAAA,CAAAC,KA24NViW,EAAsBhW,UAAA,CAAA,CAAA,6BAAA,CAAA,EAAAC,OAAA,CAAAC,kBAAA,oBAAAC,WAAA,aAAAG,MAAA,QAAAC,KAAA,OAAAC,eAAA,iBAAAC,WAAA,aAAAC,UAAA,YAAAC,IAAA,MAAAC,IAAA,MAAAC,eAAA,iBAAAC,WAAA,aAAAC,UAAA,YAAAC,KAAA,OAAAC,YAAA,cAAAC,KAAA,OAAAC,UAAA,YAAAC,QAAA,UAAArB,KAAA,OAAAuB,QAAA,UAAAC,UAAA,YAAAC,OAAA,SAAAC,MAAA,QAAAC,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CA34NZC,EA24NklB,CAACpC,CAAoB,CAAC,EA34NxmBqC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAm4N5G0T,CAAsB,GAAA,EA8EtBC,IAAkB,IAAA,CAAxB,MAAMA,UAA2BzT,EAAoB,CACjD1D,YAAYC,EAAsBC,EAAmB,CACjD,MAAM,YAAaD,EAAsBC,CAAiB,EAC1D,KAAKD,qBAAuBA,EAC5B,KAAKC,kBAAoBA,CAC7B,CACJ,CACAiX,OAAAA,EAAmB3W,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0W,GAx9NEzW,EAw9NkCC,CAAoB,EAx9NtDD,EAw9NmEE,CAAiB,CAAA,CAAA,EACtMuW,EAAmBpW,UAz9N+FC,EAAA,CAAAC,KAy9NdkW,EAAkBjW,UAAA,CAAA,CAAA,wBAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAAiK,GAAjKP,EAAA,GAz9NJQ,EAAAD,EAy9N+IsT,GAAsB,CAAA,EAAA7T,EAAA,EAAA,CAAA,IAAAS,EAz9NrKC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAW,SAAAH,EAAA,CAAA,EAAAjB,WAAA,GAAAC,SAAA,CAAAC,EAy9NyE,CAACnC,CAAiB,CAAC,EAz9N5FoC,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAi9N5G2T,CAAkB,GAAA,EA0BlBC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCjT,CAAkB,CACxDnE,YAAYC,EAAsB,CAC9B,MAAM,YAAaA,CAAoB,EACvC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAgT,OAAAA,EAA4B5W,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2W,GAl/NP1W,EAk/NoDC,CAAoB,CAAA,CAAA,EAC1LyW,EAA4BrW,UAn/NsFC,EAAA,CAAAC,KAm/NLmW,EAA2BlW,UAAA,CAAA,CAAA,uCAAA,CAAA,EAAAC,OAAA,CAAAK,MAAA,QAAA6C,QAAA,UAAA7B,QAAA,UAAA8B,MAAA,QAAAC,QAAA,SAAA,EAAA1B,WAAA,GAAAC,SAAA,CAn/NtBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA2+N5G4T,CAA2B,GAAA,EAiC3BC,IAAkC,IAAA,CAAxC,MAAMA,UAA2ClT,CAAkB,CAC/DnE,YAAYC,EAAsB,CAC9B,MAAM,oBAAqBA,CAAoB,EAC/C,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAiT,OAAAA,EAAmC7W,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4W,GAnhOd3W,EAmhOkEC,CAAoB,CAAA,CAAA,EACxM0W,EAAmCtW,UAphO+EC,EAAA,CAAAC,KAohOEoW,EAAkCnW,UAAA,CAAA,CAAA,+CAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAC,OAAA,SAAAC,QAAA,UAAApC,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAphOpCE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA4gO5G6T,CAAkC,GAAA,EAoClCC,IAAwB,IAAA,CAA9B,MAAMA,UAAiCnT,CAAkB,CACrDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACAqX,OAAAA,EAAyB9W,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6W,GAtjOJ5W,EAsjO8CC,CAAoB,CAAA,CAAA,EACpL2W,EAAyBvW,UAvjOyFC,EAAA,CAAAC,KAujORqW,EAAwBpW,UAAA,CAAA,CAAA,oCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAM,OAAA,SAAAC,OAAA,SAAAN,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAC,KAAA,OAAAC,KAAA,OAAA9C,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAvjOhBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAgjO5G8T,CAAwB,GAAA,EAmDxBC,IAAuB,IAAA,CAA7B,MAAMA,UAAgCpT,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAsX,OAAAA,EAAwB/W,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8W,GAzmOH7W,EAymO4CC,CAAoB,CAAA,CAAA,EAClL4W,EAAwBxW,UA1mO0FC,EAAA,CAAAC,KA0mOTsW,EAAuBrW,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAsE,KAAA,OAAAhE,KAAA,OAAA0D,SAAA,WAAAI,OAAA,SAAAG,KAAA,OAAAC,MAAA,OAAA,EAAA9C,WAAA,GAAAC,SAAA,CA1mOdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmmO5G+T,CAAuB,GAAA,EAiCvBC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCrT,CAAkB,CACxDnE,YAAYC,EAAsB,CAC9B,MAAM,aAAcA,CAAoB,EACxC,KAAKA,qBAAuBA,CAChC,CACJ,CACAuX,OAAAA,EAA4BhX,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+W,GA1oOP9W,EA0oOoDC,CAAoB,CAAA,CAAA,EAC1L6W,EAA4BzW,UA3oOsFC,EAAA,CAAAC,KA2oOLuW,EAA2BtW,UAAA,CAAA,CAAA,wCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAoB,KAAA,OAAA5E,KAAA,OAAAuB,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA3oOtBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAooO5GgU,CAA2B,GAAA,EA+B3BC,IAA4B,IAAA,CAAlC,MAAMA,UAAqCtT,CAAkB,CACzDnE,YAAYC,EAAsB,CAC9B,MAAM,cAAeA,CAAoB,EACzC,KAAKA,qBAAuBA,CAChC,CACJ,CACAwX,OAAAA,EAA6BjX,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFgX,GAzqOR/W,EAyqOsDC,CAAoB,CAAA,CAAA,EAC5L8W,EAA6B1W,UA1qOqFC,EAAA,CAAAC,KA0qOJwW,EAA4BvW,UAAA,CAAA,CAAA,yCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAsD,QAAA,UAAAJ,KAAA,OAAAC,OAAA,SAAAQ,SAAA,WAAAC,SAAA,WAAA5C,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA1qOxBE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAmqO5GiU,CAA4B,GAAA,EAuC5BC,IAAuB,IAAA,CAA7B,MAAMA,UAAgCvT,CAAkB,CACpDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAyX,OAAAA,EAAwBlX,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFiX,GAhtOHhX,EAgtO4CC,CAAoB,CAAA,CAAA,EAClL+W,EAAwB3W,UAjtO0FC,EAAA,CAAAC,KAitOTyW,EAAuBxW,UAAA,CAAA,CAAA,mCAAA,CAAA,EAAAC,OAAA,CAAAE,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAC,SAAA,WAAAY,KAAA,OAAAxD,QAAA,UAAA+C,OAAA,QAAA,EAAA1C,WAAA,GAAAC,SAAA,CAjtOdE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA0sO5GkU,CAAuB,GAAA,EA+CvBC,IAAwB,IAAA,CAA9B,MAAMA,CAAyB,CAC3B3X,aAAc,CAOV,KAAK4X,SAAW,CAAElS,KAAM,OAAQmS,QAASC,GAAUlV,MAAO,MAAO,EACjE,KAAKmV,aAAe,IAAIC,EAC5B,CACAC,UAAW,CAEP,GADA,KAAKC,MAAQ,CAAC,KAAKN,QAAQ,EACvB,KAAKO,MACL,KAAKJ,aAAaK,IAAI,KAAKD,MAAMtP,UAAUwP,UAAU,KAAKC,YAAYC,KAAK,IAAI,CAAC,CAAC,EACjF,KAAKR,aAAaK,IAAI,KAAKD,MAAMpP,qBAAqBsP,UAAU,KAAKG,uBAAuBD,KAAK,IAAI,CAAC,CAAC,UAElGzO,GAAU,EACf,MAAM,IAAII,MAAM;;wBAEa,CAErC,CACAuO,YAAYC,EAAS,CACjB,IAAMC,EAAiBD,EAAQ,SAC3BC,GAAkB,KAAKT,QACvB,KAAKA,MAAM,CAAC,EAAIS,EAAeC,aAEvC,CACAC,aAAc,CACN,KAAKd,eACL,KAAKA,aAAae,YAAY,EAC9B,KAAKf,aAAe,KAE5B,CAIAgB,YAAYC,EAAQ,CAChB,KAAKb,MAAM5O,eAAiB,KAAK2O,MAAMe,UAAU1E,GAAQA,IAASyE,CAAM,CAC5E,CACAV,YAAYvR,EAAG,CACX,KAAKmR,MAAQ,CAAC,GAAG,KAAKA,MAAO,CAAElS,KAAMe,EAAEmS,MAAMC,SAASC,SAAS,CAAE,CAAC,CACtE,CACAZ,uBAAuBa,EAAO,CAC1B,KAAKnB,MAAQ,KAAKA,MAAMoB,MAAM,EAAGD,EAAQ,CAAC,CAC9C,CACJ,CACA1B,OAAAA,EAAyBnX,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFkX,EAAwB,EAC9IA,EAAyB5W,UA1yOyFC,EAAA,CAAAC,KA0yOR0W,EAAwBzW,UAAA,CAAA,CAAA,wBAAA,CAAA,EAAAqY,UAAA,SAAAlW,EAAAC,EAAA,CA1yOhB,GA0yOgBD,EAAA,GA1yOhBmW,EAAAC,GAAA,CAAA,EAAApW,EAAA,EAAA,CAAA,IAAAS,EAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAoW,WAAA5V,EAAAkT,MAAA,CAAA,EAAA7V,OAAA,CAAAgX,MAAA,QAAAP,SAAA,UAAA,EAAAtM,SAAA,CAAA,sBAAA,EAAAzI,WAAA,GAAAC,SAAA,CAAA6W,EAAA1W,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAyI,OAAA,CAAA,CAAA,EAAA,YAAA,OAAA,CAAA,EAAAxI,SAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,IAAA2I,EAAA,EAAA,mBAAA,CA2yOvC,EA3yOuCC,EAAA,YAAA,SAAAC,EAAA,CAAA,OA2yO3D5I,EAAAyV,YAAA7M,CAAkB,CAAC,CAAA,EA3yOwCK,EA4yOxF,GAAClJ,EAAA,GA5yOuFuJ,EAAA,QAAAtJ,EAAA4U,KA2yO1E,CAAC,EAAApL,aAAA,CAEwB8M,EAAmB,EAAArW,cAAA,CAAA,CAAA,EApD9EoU,CAAwB,GAAA,EA6ExBkC,GAAN,cAA8BC,EAAmB,CAI7C9Z,YAAY+G,EAAGC,EAAQ,CACnB,MAAM,EACN,KAAKA,OAASA,EACd,KAAK+S,cAAgBhT,EAAEgT,aAC3B,CACJ,EAKMC,GAAN,cAA8BH,EAAgB,CAI1C7Z,YAAY+G,EAAGC,EAAQ,CACnB,MAAMD,EAAGC,CAAM,EACf,KAAKiT,SAAWlT,EAAEkT,QACtB,CACJ,EAKMC,GAAN,cAA8BL,EAAgB,CAI1C7Z,YAAY+G,EAAGC,EAAQ,CACnB,MAAMD,EAAGC,CAAM,EACf,KAAKiT,SAAWlT,EAAEkT,QACtB,CACJ,EAEME,GAAY,CACdC,UAAWJ,GACXK,UAAWL,GACXM,UAAWJ,GACXK,UAAWL,GACXM,UAAWR,GACXS,UAAWP,EACf,EAIMQ,GAAN,KAA2B,CACvB5S,OAAO5F,EAAM6F,EAAMf,EAAQ,CACvB,OAAO,IAAImT,GAAUjY,CAAI,EAAE6F,EAAMf,CAAM,CAC3C,CACJ,EAKM2T,GAAN,KAAuC,CAInC3a,YAAY+G,EAAG,CACX,IAAMkT,EAAWlT,EAAEkT,SACnB,KAAKW,OAASX,EAASW,OACvB,KAAK5B,OAASiB,EAASjB,OACvB,KAAK7H,MAAQ8I,EAAS9I,KAC1B,CACJ,EAoEM0J,IAAkC,IAAA,CAAxC,MAAMA,CAAmC,CACrC7a,YAAY2W,EAAa,CACrB,KAAKA,YAAcA,CACvB,CACJ,CACAkE,OAAAA,EAAmCra,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFoa,GAl9Odna,EAk9OqEoa,EAAW,CAAA,CAAA,CAAA,EAClMD,EAAmCE,UAn9O+EC,EAAA,CAAA/Z,KAm9OE4Z,EAAkC3Z,UAAA,CAAA,CAAA,GAAA,iCAAA,EAAA,CAAA,EAAA2B,WAAA,EAAA,CAAA,EANhJgY,CAAkC,GAAA,EAoBlCI,GAAN,KAAuC,CAInCjb,YAAY+G,EAAG,CACX,IAAMkT,EAAWlT,EAAEkT,SACnB,KAAKtU,MAAQsU,EAAStU,MACtB,KAAKnE,MAAQyY,EAASzY,MACtB,KAAK2P,MAAQpK,EAAEmU,SACnB,CACJ,EA6CMC,IAAkC,IAAA,CAAxC,MAAMA,CAAmC,CACrCnb,YAAY2W,EAAa,CACrB,KAAKA,YAAcA,CACvB,CACJ,CACAwE,OAAAA,EAAmC3a,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0a,GA7hPdza,EA6hPqEoa,EAAW,CAAA,CAAA,CAAA,EAClMK,EAAmCJ,UA9hP+EC,EAAA,CAAA/Z,KA8hPEka,EAAkCja,UAAA,CAAA,CAAA,GAAA,iCAAA,EAAA,CAAA,EAAA2B,WAAA,EAAA,CAAA,EANhJsY,CAAkC,GAAA,EAoBlCC,IAA4B,IAAA,CAAlC,MAAMA,CAA6B,CAAA,CAEnCA,OAAAA,EAA6B5a,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF2a,EAA4B,EACtJA,EAA6B9T,WA/iPqFC,EAAA,CAAAC,MA+iPY4T,EAA4B3T,QAA5B2T,EAA4B5a,SAAA,CAAA,EAHpJ4a,CAA4B,GAAA,EAW5BC,IAAY,IAAA,CAAlB,MAAMA,CAAa,CACfrb,aAAc,CACV,KAAK6F,KAAO,GACZ,KAAKyV,QAAU,cACf,KAAKC,WAAa,CACtB,CACJ,CACAF,OAAAA,EAAa7a,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4a,EAAY,EACtHA,EAAaN,UA/jPqGC,EAAA,CAAA/Z,KA+jPpBoa,EAAYna,UAAA,CAAA,CAAA,GAAA,eAAA,EAAA,CAAA,EAAAsa,SAAA,GAAAC,aAAA,SAAApY,EAAAC,EAAA,CAAAD,EAAA,GA/jPQqY,GAAA,mBAAApY,EAAA9B,KA+jPT,EAAC,QAAA8B,EAAAuC,KAAA,IAAD,EAAC,SAAAvC,EAAAuC,KAAA,IAAD,EAAC,UAAAvC,EAAAgY,OAAD,EAAC,cAAAhY,EAAAiY,WAAA,IAAD,CAAC,EAAApa,OAAA,CAAAK,MAAA,QAAAqE,KAAA,MAAA,EAAAhD,WAAA,EAAA,CAAA,EARpGwY,CAAY,GAAA,EAoCZM,GAAiB,GAIjBC,IAA2B,IAAA,CAAjC,MAAMA,UAAoCC,EAAY,CAClD7b,YAAYuI,EAASuT,EAAcvF,EAAiB/N,EAAqB8B,EAAa7B,EAAQG,EAAU,CACpG,MAAMkT,EAActT,CAAmB,EACvC,KAAKD,QAAUA,EACf,KAAKuT,aAAeA,EACpB,KAAKvF,gBAAkBA,EACvB,KAAK/N,oBAAsBA,EAC3B,KAAK8B,YAAcA,EACnB,KAAK7B,OAASA,EACd,KAAKG,SAAWA,EAChB,KAAKmT,QAAU,GACf,KAAKC,aAAe,0BACpB,KAAKC,UAAYC,GAEjB,KAAKC,UAAY,CAAElX,OAAQ,OAAQ,EACnC,KAAKmX,aAAe,CAAEd,QAAS,OAAQe,WAAY,QAAS,EAC5D,KAAK9R,IAAM,EACf,CACA+R,QAAS,CACL,KAAKC,SAASC,aAAaC,WAAa,IAAI,KAAKT,YAAY,EACjE,CACAU,iBAAkB,CACd,KAAKC,aAAa,EAClB,KAAKC,cAAgB,KAAKpU,oBAAoBkQ,QAAQL,UAAU,KAAKwE,UAAUtE,KAAK,IAAI,CAAC,CAC7F,CACAM,aAAc,CACV,MAAMA,YAAY,EACd,KAAK+D,eACL,KAAKA,cAAc9D,YAAY,CAEvC,CACAgE,KAAK/V,EAAG,CACJ,KAAKgW,OAAShW,EAAEiW,aAAe,OAC/B,KAAKC,OAASlW,EAAEiW,aAAe,OAC/B,KAAKE,uBAAyB,KAAK3G,gBAAgB4G,cAAgB,KAAKC,2BAA2BzG,YACnG,KAAK0G,mBAAqB,IAAIpC,GAAiClU,CAAC,EAChE,KAAKuW,uBAAyB,KAAK/G,gBAAgBgH,cAAgB,KAAKC,2BAA2B7G,YACnG,KAAK8G,mBAAqB,IAAI9C,GAAiC5T,CAAC,EAChE,MAAM+V,KAAK,CACPY,MAAO,CACHvY,SAAU,QACd,EACAwY,OAAQ,CACJ7L,MAAO/K,EAAE6W,YAAYC,WACrB3E,MAAO,KAAK4E,cAAc/W,CAAC,CAC/B,CACJ,CAAC,CACL,CACA+W,cAAc/W,EAAG,CACb,IAAMwB,EAAU,KAAKA,QAAQwV,cACvBlY,EAAO,CAAEvB,MAAOiE,EAAQyV,YAAa7N,OAAQ5H,EAAQ0V,YAAa,EAClEN,EAASO,GAAA,GAAKnX,EAAE6W,YAAYO,aAC5BN,EAAa9W,EAAE6W,YAAYC,WAC3BO,EAAS,KAAKA,QAAUzC,GAC9BgC,OAAAA,EAAOU,MAASR,EAAWS,aAAe,OAAUF,EAAU,GAAKA,EAC/DP,EAAWS,aAAe,UAC1BX,EAAOU,MAAQxY,EAAKvB,OAEpBuZ,EAAWU,WAAa,SACxBZ,EAAOa,KAAO3Y,EAAKsK,OAASiO,EAG5BT,EAAOa,KAAOJ,EAEXT,CACX,CACAc,YAAYtN,EAAO,CACf,OAAO,KAAK7G,YAAY3F,OAAO,KAAK+Z,kBAAmBvN,GAAS,CAAC,CACrE,CACA0L,WAAY,CACR,KAAKZ,UAAY,KAAK1R,IAAMoU,GAAgBzC,EAChD,CACAS,cAAe,CACX,KAAKpS,IAAM,KAAKqU,MACZ,KAAKrW,SACL,KAAKK,SAASiW,aAAa,KAAKtW,QAAQwV,cAAe,MAAO,KAAKxT,IAAM,MAAQ,KAAK,CAE9F,CACA,IAAIqU,OAAQ,CACR,MAAOE,EAAQ,KAAKtW,oBAAoB+B,GAC5C,CACJ,CACAqR,OAAAA,EAA4Bpb,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmb,GAjrPPlb,EAirPuDsK,CAAU,EAjrPjEtK,EAirPiFqe,CAAY,EAjrP7Fre,EAirP0G0a,EAA4B,EAjrPtI1a,EAirPsJuK,CAAmB,EAjrPzKvK,EAirPyLG,CAAW,EAjrPpMH,EAirPoNwK,CAAM,EAjrP1NxK,EAirP0O0K,EAAS,CAAA,CAAA,EACrWwQ,EAA4B7a,UAlrPsFC,EAAA,CAAAC,KAkrPL2a,EAA2B1a,UAAA,CAAA,CAAA,4BAAA,CAAA,EAAAqY,UAAA,SAAAlW,EAAAC,EAAA,CAlrPtB,GAkrPsBD,EAAA,IAlrPtBmW,EAwrPvB2B,GAAkC,CAAA,EAxrPX3B,EAwrPwGqB,GAAkC,CAAA,EAxrP1IrB,EAAAwF,GAAA,CAAA,GAAA3b,EAAA,EAAA,CAAA,IAAAS,EAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAA8Z,2BAAAtZ,EAAAkT,OAAAjT,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAka,2BAAA1Z,EAAAkT,OAAAjT,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAqT,YAAA7S,EAAAkT,MAAA,CAAA,EAAA7V,OAAA,CAAA4a,QAAA,UAAAlP,cAAA,gBAAAmP,aAAA,eAAA0C,kBAAA,oBAAAN,OAAA,QAAA,EAAAvb,WAAA,GAAAC,SAAA,CAAAC,EAkrPuP,CACjWgc,EACA,CACIvT,QAASyT,GACTC,WAAYC,EAChB,CAAC,CACJ,EAxrP6Gnc,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAyI,OAAA,CAAA,CAAA,UAAA,EAAA,EAAA,CAAA,iCAAA,EAAA,EAAA,CAAA,iCAAA,EAAA,EAAA,CAAA,EAAA,YAAA,mBAAA,kBAAA,yBAAA,EAAA,SAAA,EAAA,CAAA,EAAA,mBAAA,EAAA,CAAA,EAAA,MAAA,EAAA,CAAA,EAAA,mBAAA,yBAAA,EAAA,CAAA,EAAA,SAAA,EAAA,CAAA,eAAA,GAAA,EAAA,OAAA,EAAA,CAAA,EAAA,OAAA,SAAA,CAAA,EAAAxI,SAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAAoJ,EAAA,EAAA2S,GAAA,EAAA,EAAA,cAAA,KAAA,EAAAC,EAyrPrF,EAAC,EAAAC,GAAA,EAAA,EAAA,cAAA,CAmB2E,EAAC,EAAAC,GAAA,GAAA,GAAA,cAAA,CAQG,CAAC,EAAAzS,aAAA,CAU7C0S,GAAkFtS,EAAiGuS,GAAoKtE,GAA+GE,GAAkGR,GAA+G6E,EAAoB,EAAAnc,cAAA,CAAA,CAAA,EA/HtuBqY,CAA2B,GAAA,EA6M3B+D,IAAQ,IAAA,CAAd,MAAMA,UAAiBC,EAAkB,CAAA,CAEzCD,OAAAA,EAASnf,WAAI,IAAA,CAAA,IAAAqf,EAAA,OAAA,SAAApf,EAAA,CAAA,OAAAof,IAAAA,EA9yPqGxY,GA8yPZsY,CAAQ,IAAAlf,GAARkf,CAAQ,CAAA,CAAA,GAAA,EAC9GA,EAAS5E,UA/yPyGC,EAAA,CAAA/Z,KA+yPxB0e,EAAQze,UAAA,CAAA,CAAA,GAAA,sBAAA,EAAA,CAAA,EAAAC,OAAA,CAAAud,kBAAA,mBAAA,EAAA5b,SAAA,CA/yPgBE,CAAA,CAAA,CAAA,EA4yP5G2c,CAAQ,GAAA,EAgBRG,IAA0B,IAAA,CAAhC,MAAMA,UAAmCH,EAAS,CAC9C3f,YAAY+f,EAAS,CACjB,MAAM,EACN,KAAKA,QAAUA,CACnB,CACJ,CACAD,OAAAA,EAA2Btf,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFqf,GAl0PNpf,EAk0PqDuK,CAAmB,CAAA,CAAA,EAC1L6U,EAA2B/E,UAn0PuFC,EAAA,CAAA/Z,KAm0PN6e,EAA0B5e,UAAA,CAAA,CAAA,GAAA,+BAAA,EAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAn0PpBC,EAm0PiG,CAC3M,CACIyI,QAASmU,GACTlU,YAAauU,GAAW,IAAMF,CAA0B,CAC5D,CAAC,CACJ,EAx0P6G9c,CAAA,CAAA,CAAA,EA4zP5G8c,CAA0B,GAAA,EA0D1BG,IAAe,IAAA,CAArB,MAAMA,CAAgB,CAClBjgB,YAAYuI,EAAStI,EAAsBqI,EAAcE,EAAqBE,EAAsBD,EAAQE,EAAgBC,EAAU0B,EAAa,CAC/I,KAAK/B,QAAUA,EACf,KAAKtI,qBAAuBA,EAC5B,KAAKqI,aAAeA,EACpB,KAAKE,oBAAsBA,EAC3B,KAAKE,qBAAuBA,EAC5B,KAAKD,OAASA,EACd,KAAKE,eAAiBA,EACtB,KAAKC,SAAWA,EAChB,KAAK0B,YAAcA,EAOnB,KAAK4V,UAAY,GAIjB,KAAK9F,UAAY,IAAItR,EAIrB,KAAKuR,UAAY,IAAIvR,EAIrB,KAAK0R,UAAY,IAAI1R,EAIrB,KAAKwR,UAAY,IAAIxR,EAIrB,KAAKyR,UAAY,IAAIzR,EAIrB,KAAK2R,UAAY,IAAI3R,EAIrB,KAAKE,qBAAuB,GAC5B,KAAKuB,IAAM,GACX,IAAMpB,EAAUC,GAAgBC,EAAe,EAC/C,KAAKL,qBAAuBM,GAAuBH,CAAO,EAC1D,KAAKb,aAAa6X,UAAU,EAC5B,KAAKC,YAAY,CACrB,CACA1D,iBAAkB,CACd,KAAKC,aAAa,EAClB,KAAKC,cAAgB,KAAKtS,YAAYoO,QAAQL,UAAU,KAAKgI,WAAW9H,KAAK,IAAI,CAAC,EAClF,KAAKqE,cAAcxE,IAAI,KAAK5P,oBAAoBkQ,QAAQL,UAAU,KAAKwE,UAAUtE,KAAK,IAAI,CAAC,CAAC,CAChG,CACAE,YAAYC,EAAS,CACjB,IAAMhL,EAAQ,KAAKzN,qBAAqByN,MACxC4S,GAAY5H,EAAShL,CAAK,EAC1BA,EAAMb,cAAgB,KACtB,KAAK5M,qBAAqBwN,KAAKC,CAAK,CACxC,CAaArN,cAAcqY,EAAS,CACnB,KAAKD,YAAY8H,GAAgB7H,CAAO,CAAC,CAC7C,CACAG,aAAc,CACV,KAAK2H,UAAY,GACb,KAAKC,eACL,KAAKA,cAAc3H,YAAY,EAE/B,KAAK3O,WACL,KAAKA,SAASuW,QAAQ,EACtB,KAAKvW,SAAW,MAEhB,KAAKyS,eACL,KAAKA,cAAc9D,YAAY,EAEnC6H,aAAa,KAAKC,aAAa,CACnC,CAIAC,WAAW/S,EAAK,CACZ,OAAO,KAAKtF,oBAAoBsY,IAAIhT,CAAG,CAC3C,CACAnE,eAAepB,EAAS,CACpB,KAAK4B,SAAW,IAAI4W,GAAOxY,EAAS,KAAKyY,gBAAiB,KAAK3W,KAAK,EACpE,CAAC,YAAa,YAAa,YAAa,YAAa,YAAa,WAAW,EAAE4W,QAASC,GAAc,KAAK/W,SAASoO,KAAK2I,EAAYna,GAAM,KAAKoa,QAAQD,EAAWna,CAAC,CAAC,CAAC,EACtK,KAAKoD,SAASoO,KAAK,cAAgBxR,GAAM,KAAKqa,cAAcra,CAAC,CAAC,EAC9D,KAAKoD,SAASoO,KAAK,cAAe,IAAM,KAAK8I,cAAc,CAAC,CAChE,CAOAC,YAAYvX,EAAU,CAAC,EAAG,CACtB,OAAOuX,GAAY,KAAKC,aAAaxX,CAAO,EAAGA,CAAO,CAC1D,CAOAyX,UAAUzX,EAAU,CAAC,EAAG,CACpB,OAAOyX,GAAU,KAAKD,aAAaxX,CAAO,EAAGA,CAAO,CACxD,CAOAwX,aAAaxX,EAAU,CAAC,EAAG,CACvB,OAAO,KAAKI,SAASoX,aAAaxX,CAAO,CAC7C,CACA0X,MAAO,CACH,GAAI,CAAC,KAAKC,UACN,OAEJ,IAAMnZ,EAAU,KAAKoZ,gBAAgB5D,cACrC,KAAKpU,eAAepB,CAAO,CAC/B,CAMAqZ,aAAc,CACL,KAAKzX,WAGV,KAAK7B,aAAauZ,MAAM,EACxB,KAAK1X,SAASuW,QAAQ,EACtB,KAAKvW,SAAW,KACpB,CACAiX,cAAcra,EAAG,CACb,KAAK+a,IAAI,IAAM,CACX,KAAKC,gBAAgBjF,KAAK/V,CAAC,CAC/B,EAAG,GAAM,EAAI,CACjB,CACAsa,eAAgB,CACR,KAAKU,gBAAgBC,SACrB,KAAKD,gBAAgBE,KAAK,EAC1B,KAAKC,cAAc,EAE3B,CACAf,QAAQjf,EAAM6E,EAAG,CACb,IAAMob,EAAU,KAAKC,cAAclgB,CAAI,EACvC,GAAIigB,EAAS,CACT,IAAMpa,EAAO,KAAKW,qBAAqBZ,OAAO5F,EAAM6E,EAAG,IAAI,EAC3D,YAAK+a,IAAI,IAAM,CACXK,EAAQE,KAAKta,CAAI,CACrB,CAAC,EACMA,EAAKua,oBAAsBva,EAAKua,mBAAmB,CAC9D,CACJ,CACAC,iBAAiBC,EAAO,CACpB,QAASC,EAAM,EAAGA,EAAMD,EAAM/Y,OAAQgZ,IAClC,GAAI,KAAKL,cAAcI,EAAMC,CAAG,CAAC,EAC7B,MAAO,GAGf,MAAO,EACX,CACAC,SAAU,CAEN,GADA/B,aAAa,KAAKC,aAAa,EAC3B,CAAC,KAAKzW,SAAU,CAChB,KAAKsX,KAAK,EACV,MACJ,CACA,KAAKjX,cAAc,CACvB,CACAA,eAAgB,CACZ,KAAKL,SAASS,WAAW,KAAKoW,eAAe,CACjD,CACA,IAAIU,WAAY,CACZ,OAAOiB,GAAoB,GAAK7D,EAAQ,KAAK6C,eACjD,CACA,IAAIX,iBAAkB,CAClB,OAAO4B,GAAA1E,GAAA,GAAK,KAAKnU,SAAV,CAAmBQ,IAAK,KAAKA,IAAKsY,0BAA2B,CAAC,KAAK3C,SAAU,EACxF,CACAkC,cAAclgB,EAAM,CAChB,IAAMigB,EAAU,KAAKjgB,CAAI,EACzB,GAAIigB,GAAWA,EAAQE,MAAQS,GAAaX,CAAO,EAC/C,OAAOA,CAEf,CACA/B,aAAc,CACV,KAAK3X,OAAOsa,kBAAkB,IAAM,CAChC,KAAKtC,cAAgBuC,GAAc,CAAC,KAAK/iB,qBAAqBgjB,UAAW,KAAK3a,aAAa2a,SAAS,CAAC,EAChGC,KAAKC,GAAKC,GAAW,CACtB,KAAKrZ,QAAUqZ,EAAO,CAAC,EACvB,KAAK/Y,MAAQ,KAAK8V,UAAUiD,EAAO,CAAC,CAAC,CACzC,CAAC,EAAGC,GAAUC,EAAW,CAAC,EACrBjL,UAAU,IAAM,CACjB,KAAKqK,QAAQ,CACjB,CAAC,CACL,CAAC,CACL,CACAvC,UAAUoD,EAAY,CAClB,OAAOX,GAAA1E,GAAA,GACAqF,GADA,CAEHC,WAAYD,EAAWE,YAC3B,EACJ,CACA3B,IAAI4B,EAAUC,EAAS,GAAMzB,EAAe,CACpCyB,GACIzB,GACA,KAAKvZ,eAAeib,aAAa,EAErC,KAAKnb,OAAOqZ,IAAI4B,CAAQ,IAGxBA,EAAS,EACLxB,GACA,KAAKA,cAAc,EAG/B,CACAA,eAAgB,CACP,KAAK1B,WACN,KAAK7X,eAAeuZ,cAAc,CAE1C,CACA7B,YAAa,CACL,KAAKlW,UACL,KAAKuY,QAAQ,CAErB,CACA7F,WAAY,CACJ,KAAK1S,UAAY,KAAKI,MAAQ,KAAKqU,OACnC,KAAK8D,QAAQ,CAErB,CACA/F,cAAe,CACX,KAAKpS,IAAM,KAAKqU,MACZ,KAAKrW,SACL,KAAKK,SAASiW,aAAa,KAAKtW,QAAQwV,cAAe,MAAO,KAAKxT,IAAM,MAAQ,KAAK,CAE9F,CACA,IAAIqU,OAAQ,CACR,MAAOE,EAAQ,KAAKtW,oBAAoB+B,GAC5C,CACJ,CACA0V,OAAAA,EAAgBzf,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFwf,GA1nQKvf,EA0nQ+BsK,CAAU,EA1nQzCtK,EA0nQsDC,CAAoB,EA1nQ1ED,EA0nQuFqK,EAAY,EA1nQnGrK,EA0nQmHuK,CAAmB,EA1nQtIvK,EA0nQmJga,EAAoB,EA1nQvKha,EA0nQuLwK,CAAM,EA1nQ7LxK,EA0nQ6MyK,EAAiB,EA1nQ9NzK,EA0nQ8O0K,EAAS,EA1nQvP1K,EA0nQuQG,CAAW,CAAA,CAAA,EACpYof,EAAgBlf,UA3nQkGC,EAAA,CAAAC,KA2nQjBgf,EAAe/e,UAAA,CAAA,CAAA,cAAA,CAAA,EAAAqY,UAAA,SAAAlW,EAAAC,EAAA,CA3nQE,GA2nQFD,EAAA,IA3nQEmW,EAooQlCoC,GAA2B,CAAA,EApoQOpC,EAAAqK,GAAA,CAAA,GAAAxgB,EAAA,EAAA,CAAA,IAAAS,EAAAC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAye,gBAAAje,EAAAkT,OAAAjT,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAqe,gBAAA7d,EAAAkT,MAAA,CAAA,EAAA7V,OAAA,CAAAsE,KAAA,OAAAqe,MAAA,QAAAC,MAAA,QAAArhB,OAAA,SAAAE,MAAA,QAAAohB,OAAA,SAAAzf,QAAA,UAAA0f,kBAAA,oBAAA/D,UAAA,YAAArT,cAAA,eAAA,EAAAxB,QAAA,CAAA+O,UAAA,YAAAC,UAAA,YAAAG,UAAA,YAAAF,UAAA,YAAAC,UAAA,YAAAE,UAAA,WAAA,EAAAnP,SAAA,CAAA,aAAA,EAAAzI,WAAA,GAAAC,SAAA,CAAAC,EA2nQwb,CACliBpC,EACAsK,EACAyP,GACAU,GACA,CACI5P,QAASE,GACTC,SAAU,cACd,CAAC,CACJ,EApoQ6GgO,EAAA1W,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAyI,OAAAA,IAAA,CAAA,IAAAsY,EAAAA,OAAAA,EAwoQnFC,oIAAW,CAAA,CAAA,WAAA,EAAA,EAAA,CAAA,+BAAA,GAAA,oBAAAD,CAAA,EAAA,CAAA,EAAA,gBAAA,mBAAA,EAAA,CAAA,wBAAA,GAAA,EAAA,MAAA,EAAA,CAAA,wBAAA,EAAA,CAAA,CAAA,EAAA9gB,SAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,IAxoQwE+gB,GAAA,EAAA,CAyoQ3F,EAzoQ2FrY,EAAA,EAAA,MAAA,KAAA,CA0oQtF,EAAC,EAAA,6BAAA,CAKO,EA/oQ8EU,EAAA,EAAA4X,GAAA,EAAA,EAAA,MAAA,CAgpQnD,GAAChhB,EAAA,IAhpQkDsJ,EAAA,CA4oQxE,EA5oQwEC,EAAA,gBAAAtJ,EAAAuJ,aA4oQxE,EAAC,oBAAAvJ,EAAAud,WAAA,mBAAA,CACqB,EA7oQkDlU,EAgpQrD,EAhpQqDC,EAAA,OAAAtJ,EAAA0F,oBAgpQrD,EAAC,EAAA8D,aAAA,CACGgT,GAAqGlE,GAAuL1O,EAAiGC,EAAyB,EAAA5J,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA3Rjdyc,CAAe,GAAA,EAwWfqE,GAAN,KAAsC,CAIlCtkB,YAAYyF,EAAM,CACd,KAAKA,KAAOA,CAChB,CACJ,EAOM8e,IAA0B,IAAA,CAAhC,MAAMA,CAA2B,CAC7BvkB,YAAYwkB,EAAQ,CAChB,KAAKA,OAASA,EAId,KAAKC,gBAAkB,CAAA,EAMvB,KAAKC,UAAY,IAAI5b,CACzB,CACA2P,YAAYC,EAAS,CACjB,GAAI,CAACiM,GAAU,OAAQjM,EAAS,EAAK,EACjC,OAEJ,GAAI,KAAK+L,iBAAiBhb,SAAW,EACjC,MAAM,IAAIS,MAAM,qDAAqD,EAEzE,GAAI,CAAC,KAAK0a,WACN,MAAM,IAAI1a,MAAM,gDAAgD,EAEpE,IAAM2a,EAAa,KAAKJ,gBAAgBK,IAAIC,IAAU,CAAE5T,MAAO6T,GAAOD,CAAK,CAAE,EAAE,EACzEE,EAAU,CAAE9T,MAAO6T,GAAO,KAAKJ,UAAU,CAAE,EAC3Cnf,EAAOyf,GAAiB,KAAKzf,KAAMof,EAAYI,CAAO,EAC5D,KAAKP,UAAUrC,KAAK,IAAIiC,GAAgC7e,CAAI,CAAC,EAC7D,KAAK+e,OAAOnkB,cAAc,CAAEoF,KAAAA,CAAK,CAAC,CACtC,CACJ,CACA8e,OAAAA,EAA2B/jB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF8jB,GA3wQN7jB,EA2wQkDuf,EAAe,CAAA,CAAA,EACnLsE,EAA2BxJ,UA5wQuFC,EAAA,CAAA/Z,KA4wQNsjB,EAA0BrjB,UAAA,CAAA,CAAA,GAAA,yBAAA,EAAA,CAAA,EAAAC,OAAA,CAAAsE,KAAA,CAAA,EAAA,yBAAA,MAAA,EAAAgf,gBAAA,kBAAAG,WAAA,YAAA,EAAAvZ,QAAA,CAAAqZ,UAAA,WAAA,EAAA7hB,WAAA,GAAAC,SAAA,CA5wQpB6W,CAAA,CAAA,CAAA,EA4uQ5G4K,CAA0B,GAAA,EAsD1BY,IAAqB,IAAA,CAA3B,MAAMA,UAA8BhhB,CAAkB,CAClDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,CAChC,CACJ,CACAklB,OAAAA,EAAsB3kB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF0kB,GAxyQDzkB,EAwyQwCC,CAAoB,CAAA,CAAA,EAC9KwkB,EAAsBpkB,UAzyQ4FC,EAAA,CAAAC,KAyyQXkkB,EAAqBjkB,UAAA,CAAA,CAAA,qBAAA,CAAA,EAAAC,OAAA,CAAAqB,QAAA,UAAAkC,KAAA,OAAAlD,MAAA,QAAAsQ,MAAA,QAAA3M,SAAA,WAAAP,QAAA,UAAAK,OAAA,SAAAR,OAAA,SAAA2Z,OAAA,SAAAgH,OAAA,QAAA,EAAAviB,WAAA,GAAAC,SAAA,CAzyQVE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAkyQ5G2hB,CAAqB,GAAA,EA0CrBE,IAAqB,IAAA,CAA3B,MAAMA,UAA8BlhB,CAAkB,CAClDnE,YAAYC,EAAsB,CAC9B,MAAM,SAAUA,CAAoB,EACpC,KAAKA,qBAAuBA,EAC5B,KAAKmE,cAAc,CACvB,CACJ,CACAihB,OAAAA,EAAsB7kB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF4kB,GAn1QD3kB,EAm1QwCC,CAAoB,CAAA,CAAA,EAC9K0kB,EAAsBtkB,UAp1Q4FC,EAAA,CAAAC,KAo1QXokB,EAAqBnkB,UAAA,CAAA,CAAA,qBAAA,CAAA,EAAAC,OAAA,CAAA2Q,MAAA,QAAAzQ,WAAA,aAAAoD,OAAA,SAAA0L,OAAA,SAAAzN,OAAA,SAAAuC,OAAA,SAAAiP,QAAA,UAAAC,QAAA,UAAAC,YAAA,cAAAxP,QAAA,UAAAO,SAAA,WAAA7C,QAAA,UAAAE,QAAA,UAAA8B,MAAA,QAAAoN,QAAA,UAAA2C,QAAA,UAAAzR,MAAA,OAAA,EAAAC,WAAA,GAAAC,SAAA,CAp1QVE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA40Q5G6hB,CAAqB,GAAA,EAyDrBC,IAAoB,IAAA,CAA1B,MAAMA,UAA6BnhB,CAAkB,CACjDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAqlB,OAAAA,EAAqB9kB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF6kB,GA34QA5kB,EA24QsCC,CAAoB,CAAA,CAAA,EAC5K2kB,EAAqBvkB,UA54Q6FC,EAAA,CAAAC,KA44QZqkB,EAAoBpkB,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAC,OAAA,CAAAokB,UAAA,YAAA/jB,MAAA,QAAA6C,QAAA,UAAAuQ,UAAA,WAAA,EAAA/R,WAAA,GAAAC,SAAA,CA54QRE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAq4Q5G8hB,CAAoB,GAAA,EAmCpBE,IAA6B,IAAA,CAAnC,MAAMA,UAAsC7F,EAAS,CACjD3f,YAAY+f,EAAS,CACjB,MAAM,EACN,KAAKA,QAAUA,CACnB,CACA,IAAI0F,UAAW,CACX,MAAO,EACX,CACJ,CACAD,OAAAA,EAA8BhlB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyF+kB,GAj7QT9kB,EAi7Q2DuK,CAAmB,CAAA,CAAA,EAChMua,EAA8BzkB,UAl7QoFC,EAAA,CAAAC,KAk7QHukB,EAA6BtkB,UAAA,CAAA,CAAA,uBAAA,CAAA,EAAA2B,WAAA,GAAAC,SAAA,CAl7Q1BC,EAk7Q8F,CACxM,CACIyI,QAASmU,GACTlU,YAAauU,GAAW,IAAMwF,CAA6B,CAC/D,CAAC,CACJ,EAv7Q6GxiB,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,CAAA,CAAA,EAw6Q5GiiB,CAA6B,GAAA,EAmC7BE,IAAoB,IAAA,CAA1B,MAAMA,UAA6BvhB,CAAkB,CACjDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACAylB,OAAAA,EAAqBllB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFilB,GAj9QAhlB,EAi9QsCC,CAAoB,CAAA,CAAA,EAC5K+kB,EAAqB3kB,UAl9Q6FC,EAAA,CAAAC,KAk9QZykB,EAAoBxkB,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAC,OAAA,CAAAokB,UAAA,YAAA/jB,MAAA,QAAA6C,QAAA,UAAA+Z,OAAA,SAAAxZ,QAAA,UAAAN,MAAA,QAAAwN,MAAA,OAAA,EAAAjP,WAAA,GAAAC,SAAA,CAl9QRE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EA28Q5GkiB,CAAoB,GAAA,EA4CpBC,IAAoB,IAAA,CAA1B,MAAMA,UAA6BxhB,CAAkB,CACjDnE,YAAYC,EAAsB,CAC9B,MAAM,QAASA,CAAoB,EACnC,KAAKA,qBAAuBA,CAChC,CACJ,CACA0lB,OAAAA,EAAqBnlB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFklB,GA7/QAjlB,EA6/QsCC,CAAoB,CAAA,CAAA,EAC5KglB,EAAqB5kB,UA9/Q6FC,EAAA,CAAAC,KA8/QZ0kB,EAAoBzkB,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAC,OAAA,CAAA2Q,MAAA,QAAAzQ,WAAA,aAAAoD,OAAA,SAAAjD,MAAA,QAAAkD,KAAA,OAAAO,OAAA,SAAAL,QAAA,UAAAO,SAAA,WAAAa,KAAA,OAAAqQ,YAAA,cAAA7T,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CA9/QRE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,EAAAC,gBAAA,CAAA,CAAA,EAu/Q5GmiB,CAAoB,GAAA,EA4CpBC,IAAsB,IAAA,CAA5B,MAAMA,UAA+BzhB,CAAkB,CACnDnE,YAAYC,EAAsBsW,EAAiB,CAC/C,MAAM,UAAWtW,CAAoB,EACrC,KAAKA,qBAAuBA,EAC5B,KAAKsW,gBAAkBA,EACvB,KAAKnS,cAAc,CACvB,CACAoS,uBAAwB,CACpB,KAAKD,gBAAgBgH,aAAe,KAAKsI,qBAAqBlP,YAC9D,KAAKJ,gBAAgB4G,aAAe,KAAK2I,qBAAqBnP,WAClE,CACJ,CACAiP,OAAAA,EAAuBplB,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFmlB,GA/iRFllB,EA+iR0CC,CAAoB,EA/iR9DD,EA+iR2E0a,EAA4B,CAAA,CAAA,EACzNwK,EAAuB7kB,UAhjR2FC,EAAA,CAAAC,KAgjRV2kB,EAAsB1kB,UAAA,CAAA,CAAA,sBAAA,CAAA,EAAAyC,eAAA,SAAAN,EAAAC,EAAAM,EAAA,CAA6X,GAA7XP,EAAA,IAhjRZQ,EAAAD,EAgjR+OiX,GAAkC,CAAA,EAhjRjRhX,EAAAD,EAgjRuWuX,GAAkC,CAAA,GAAA9X,EAAA,EAAA,CAAA,IAAAS,EAhjRzYC,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAuiB,oBAAA/hB,EAAAkT,OAAAjT,EAAAD,EAAAE,EAAA,CAAA,IAAAV,EAAAwiB,oBAAAhiB,EAAAkT,MAAA,CAAA,EAAA7V,OAAA,CAAA4kB,cAAA,gBAAAC,MAAA,QAAA5H,OAAA,SAAA5b,QAAA,SAAA,EAAAK,WAAA,GAAAC,SAAA,CAAAE,EAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,CAAA,CAAA,EAmiR5GqiB,CAAsB,GAAA,EAwCtBK,GAAc,CAChB5d,GACA6d,GACAziB,GACAS,GACAM,GACA1E,GACA+E,GACAW,GACAI,GACAE,GACAC,GACAG,GACAC,GACAC,GACAH,GACAI,GACAC,GACAC,GACAC,GACAC,GACAC,GACAsG,EACA8J,GACAC,GACAhK,EACAoZ,GACA3S,GACAC,GACAC,GACAC,GACAC,GACAC,GACA9E,GACAG,GACAZ,GACAc,GACA0E,GACAxE,GACAE,GACAE,GACAE,GACAE,GACAkE,GACA2D,GACA1D,GACAO,GACAC,GACAxE,GACA4E,GACAC,GACAC,GACA1E,GACA2E,GACApE,GACAqE,GACAI,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAyQ,GACAnV,GACAM,GACAE,GACAhB,EACAoB,GACAK,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAG,GACA2C,GACAI,GACAG,GACAC,GACAE,GACAa,GACAC,GACAC,GACAH,GACAI,GACAC,GACAC,GACAC,GACAC,EAAuB,EAKrB2O,GAAkB,CACpBnT,EAAkB,EAKhBoT,GAAmB,CACrBle,GACA4F,GACAc,GACAG,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAC,GACAI,GACAE,GACAC,GACAI,GACAH,GACAc,GACAE,GACAI,GACAK,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAC,GACAhG,EACA8J,GACAC,GACAhK,EACAoZ,GACA3S,GACAC,GACAC,GACAC,GACAC,GACAC,GACA9E,GACAG,GACAZ,GACAc,GACA0E,GACAxE,GACAE,GACAE,GACAE,GACAE,GACAkE,GACA2D,GACA1D,GACAO,GACAC,GACAxE,GACA4E,GACAC,GACAC,GACA1E,GACA2E,GACApE,GACAqE,GACAI,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAyQ,GACAnV,GACAM,GACAE,GACAhB,EACAoB,GACAK,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAG,GACA2C,GACAI,GACAG,GACAC,GACAE,GACAa,GACAC,GACAC,GACAH,GACAI,GACAC,GACAC,GACAC,GACAC,EAAuB,EAKrB6O,GAAe,CACjBtG,GACArE,GACAf,GACAM,GACAqK,GACA1F,GACA6F,GACAN,GACAO,GACAN,GACAI,GACAP,GACAZ,EAA0B,EAKxBiC,GAAe,CACjB,GAAGP,GACH,GAAGI,GACH,GAAGC,GACH,GAAGC,EAAY,EAqHnB,IAuBME,IAAY,IAAA,CAAlB,MAAMA,CAAa,CAAA,CAEnBA,OAAAA,EAAaC,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFF,EAAY,EACtHA,EAAaG,UA57RqGC,GAAA,CAAAC,KA47RPL,CAAY,CAAA,EACvHA,EAAaM,UA77RqGC,GAAA,CAAAC,UA67RkB,CAACC,GAAcC,GAAoBC,EAAcC,EAAY,EAACC,QAAA,CAAYC,GAAgBC,GAAgBC,GAAyBC,GAAgCC,GAAoBC,GAAsBC,GAAqBC,GAAyBC,GAA0BC,GAAqBC,GAAgBC,GAAyBC,GAAgCC,GAAoBC,GAAsBC,GAAqBC,GAAyBC,GAA0BC,GAAqBC,GAAmBC,EAAuBC,EAAqCC,GAA2BC,GAAuBC,GAAgCC,GAAuCC,GAA6BC,GAA4BC,GAAuBC,GAAgCC,GAAuCC,GAA2BC,GAA6BC,GAAkCC,GAA4BC,GAAgCC,GAAiCC,GAA6BC,GAA4BC,GAAoBC,GAA0BC,GAAiBC,GAA8BC,GAAqBC,GAAeC,GAAuBC,GAA4BC,GAAgBC,GAAqBC,GAAmBC,GAAiBC,GAAyBC,GAA+BC,GAAmCC,GAAiCC,GAA8BC,GAAkCC,GAAmCC,GAAgCC,GAA0BC,GAAyBC,GAA0BC,EAAqBC,GAAuBC,GAA2BC,GAAyBC,GAAwBC,GAAsBC,GAA0BC,GAA2BC,GAAyBC,GAAwBC,GAA0BC,GAAkCC,GAAmBC,GAAgBC,GAAkBC,GAAoBC,GAA6BC,GAAoCC,GAAwBC,GAA0BC,GAAyBC,GAA6BC,GAA8BC,GAAyBC,GAAoBC,GAAqBC,GAAoBC,GAAgCC,GAAyCC,GAAgDC,GAAsCC,GAAqCC,GAAyCC,GAA0CC,GAAsCC,GAAqCC,GAAwBC,GAAwBC,GAA6BC,GAA0BC,GAA0BC,GAA8BC,GAAmCC,GAAkCC,GAAmCC,GAAgCC,GAAoCC,GAAkCC,GAAiCC,GAA+BC,GAAmCC,GAAoCC,GAAkCC,GAAiC/F,EAAuBC,EAAqCC,GAA2BC,GAAuBC,GAAgCC,GAAuCC,GAA6BC,GAA4BC,GAAuBC,GAAgCC,GAAuCC,GAA2BC,GAA6BC,GAAkCC,GAA4BC,GAAgCC,GAAiCC,GAA6BC,GAA4BC,GAAoBC,GAA0BC,GAAiBC,GAA8BC,GAAqBC,GAAeC,GAAuBC,GAA4BC,GAAgBC,GAAqBC,GAAmBC,GAAiBC,GAAyBC,GAA+BC,GAAmCC,GAAiCC,GAA8BC,GAAkCC,GAAmCC,GAAgCC,GAA0BC,GAAyBC,GAA0BC,EAAqBC,GAAuBC,GAA2BC,GAAyBC,GAAwBC,GAAsBC,GAA0BC,GAA2BC,GAAyBC,GAAwBC,GAA0BC,GAAkCC,GAAmBC,GAAgBC,GAAkBC,GAAoBC,GAA6BC,GAAoCC,GAAwBC,GAA0BC,GAAyBC,GAA6BC,GAA8BC,GAAyB+B,GAAiBC,GAA6BC,GAA+BC,GAAsBC,GAAuBC,GAAwBC,GAAsBC,GAAsBC,EAAqB,CAAA,CAAA,EAJhvK1I,CAAY,GAAA","names":["_c0","CrosshairTooltipComponent_ng_template_0_Template","rf","ctx","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ctx_r0","ɵɵnextContext","ɵɵproperty","style","ɵɵadvance","ɵɵtextInterpolate1","value","CrosshairTooltipsContainerComponent_kendo_chart_crosshair_tooltip_0_Template","ɵɵelement","key_r1","$implicit","ctx_r1","popupSettings","TooltipPopupComponent_ng_template_0_1_ng_template_0_Template","TooltipPopupComponent_ng_template_0_1_Template","ɵɵtemplate","seriesTooltipTemplateRef","seriesTooltipContext","TooltipPopupComponent_ng_template_0_2_ng_template_0_Template","TooltipPopupComponent_ng_template_0_2_Template","seriesSharedTooltipTemplateRef","seriesSharedTooltipContext","TooltipPopupComponent_ng_template_0_Template","popupClasses","shared","TooltipPopupComponent_ng_template_2_Template","formattedValue_r2","formattedValue","ɵɵsanitizeHtml","TooltipPopupComponent_ng_template_3_tr_4_td_1_Template","point_r3","ɵɵstyleProp","series","color","TooltipPopupComponent_ng_template_3_tr_4_td_2_ng_container_1_Template","ɵɵelementContainerStart","ɵɵelementContainerEnd","ɵɵtextInterpolate","name","TooltipPopupComponent_ng_template_3_tr_4_td_2_ng_container_2_Template","TooltipPopupComponent_ng_template_3_tr_4_td_2_Template","undefined","TooltipPopupComponent_ng_template_3_tr_4_ng_template_4_Template","TooltipPopupComponent_ng_template_3_tr_4_Template","ctx_r3","colorMarker_r5","colorMarker","nameColumn_r6","nameColumn","template","TooltipPopupComponent_ng_template_3_Template","points_r7","points","categoryText_r8","categoryText","colspan_r9","colspan","ɵɵattribute","_c1","ChartComponent_div_5_ng_template_1_Template","ChartComponent_div_5_Template","donutCenterStyle","donutCenterTemplate","templateRef","ChartComponent_div_6_Template","StockChartComponent_div_5_Template","SparklineComponent_div_5_Template","_c2","SankeyTooltipPopupComponent_ng_template_0_2_ng_template_0_Template","SankeyTooltipPopupComponent_ng_template_0_2_Template","nodeTooltipTemplateRef","nodeTooltipContext","SankeyTooltipPopupComponent_ng_template_0_3_ng_template_0_Template","SankeyTooltipPopupComponent_ng_template_0_3_Template","linkTooltipTemplateRef","linkTooltipContext","SankeyTooltipPopupComponent_ng_template_0_Template","isNode","isLink","SankeyTooltipPopupComponent_ng_template_2_Template","color_r2","label_r3","label","value_r4","tooltipStyle","textStyle","text","formatUnits","SankeyTooltipPopupComponent_ng_template_3_Template","source_r5","source","target_r6","target","value_r7","arrowIcon","_c3","SankeyComponent_div_4_Template","dateCategoryAxisFormats","DateCategoryAxis","prototype","options","labels","dateFormats","dateValueAxisFormats","DateValueAxis","milliseconds","seconds","time","minutes","hours","days","skeleton","weeks","months","years","Object","assign","DonutCenterTemplateDirective","constructor","ɵfac","__ngFactoryType__","ɵɵdirectiveInject","TemplateRef","ɵdir","ɵɵdefineDirective","type","selectors","standalone","ItemChange","sender","CollectionService","Subject","onItemChange$","asObservable","notify","change","next","ɵprov","ɵɵdefineInjectable","token","factory","THROTTLE_MS","Change","key","ConfigurationService","ngZone","store","BehaviorSubject","initSource","onFastChange$","onChange$","pipe","auditTime","push","set","field","parts","split","shift","length","runOutsideAngular","ɵɵinject","NgZone","copyChanges","changes","propertyName","hasOwnProperty","call","currentValue","toSimpleChanges","result","SimpleChange","CollectionItemComponent","configurationService","collectionService","hidden","subscription","subscribe","ngOnChanges","notifyChanges","ngOnDestroy","unsubscribe","features","ɵɵNgOnChangesFeature","SettingsComponent","configKey","Error","markAsVisible","visible","ɵɵinvalidFactory","SeriesTooltipComponent","seriesTooltipTemplate","ɵcmp","ɵɵdefineComponent","contentQueries","dirIndex","ɵɵcontentQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","first","inputs","background","border","font","format","padding","ɵɵInheritDefinitionFeature","ɵɵStandaloneFeature","decls","vars","encapsulation","changeDetection","SeriesDrilldownTemplateDirective","toggle","flag","SeriesItemComponent","toggleVisibility","togglePointVisibility","pointIndex","pv","pointVisibility","seriesTooltip","drilldownTemplate","aggregate","autoFit","axis","categoryAxis","categoryField","closeField","colorField","connectors","currentField","dashType","data","downColor","downColorField","drilldownField","dynamicHeight","dynamicSlope","errorHighField","errorLowField","explodeField","fromField","gap","highField","holeSize","line","lowField","lowerField","margin","maxSize","mean","meanField","median","medianField","minSize","missingValues","neckRatio","negativeColor","negativeValues","noteTextField","opacity","openField","outliersField","overlay","q1Field","q3Field","segmentSpacing","size","sizeField","spacing","stack","startAngle","summaryField","toField","upperField","visibleInLegend","visibleInLegendField","visual","width","whiskers","xAxis","xErrorHighField","xErrorLowField","xField","yAxis","yErrorHighField","yErrorLowField","yField","zIndex","trendline","for","legendItem","errorBars","extremes","highlight","markers","notes","outliers","tooltip","ɵɵProvidersFeature","POSITION_MODE","COLLISION","horizontal","vertical","BaseTooltip","popupService","localizationService","popupRef","active","show","e","align","anchor","offset","position","point","open","popupAlign","animate","content","collision","positionMode","rtl","popupElement","setAttribute","onInit","popup","instance","hide","close","appendTo","element","nativeElement","bbox","getBoundingClientRect","scrollLeft","scrollTop","scrollOffset","left","top","parent","parentElement","PopupService","LocalizationService","bodyFactory","isDocumentAvailable","ElementRef","document","body","CrosshairTooltipComponent","changeDetectorRef","detectChanges","viewQuery","ɵɵviewQuery","provide","POPUP_CONTAINER","useFactory","consts","ɵɵtemplateRefExtractor","dependencies","NgStyle","AXES","CrosshairTooltipsContainerComponent","tooltipKeys","tooltipsMap","tooltipComponents","crossahirTooltipComponents","toArray","axisName","axisIndex","idx","createCrosshairTooltips","newMap","mapTooltips","map","removeTooltip","keys","splice","tooltips","axesCrosshairTooltipOptions","tooltipIdx","index","axes","concat","crosshair","NgFor","SeriesTooltipTemplateDirective","SharedTooltipTemplateDirective","TooltipTemplatePoint","category","categoryIndex","categoryIx","dataItem","percentage","runningTotal","total","low","high","xLow","xHigh","yLow","yHigh","formatValue","String","hasParent","current","parentNode","TooltipTemplateService","setTemplate","getTemplate","seriesIndex","seriesTemplates","setSeriesTemplates","setSharedTemplate","sharedTemplate","getSharedTemplate","SHARED_TOOLTIP_CLASS","TOOLTIP_CLASS","TooltipPopupComponent","templateService","wrapperClass","leave","EventEmitter","className","classNames","defaultSharedTooltipTemplate","sharedTemplateContext","pointTemplateRef","containsElement","filter","wrapPoints","defaultSeriesTooltipTemplate","pointFormat","mouseleaveSubscription","addEventListener","args","emit","outputs","NgClass","NgIf","NgTemplateOutlet","ChartInstanceObserver","InstanceObserver","handlerMap","hideTooltip","legendItemClick","render","showTooltip","init","chartDefaultTheme","chartBaseTheme","axisDefaults","majorGridLines","minorGridLines","icon","title","chartArea","legend","inactiveItems","seriesDefaults","boxPlot","bullet","candlestick","horizontalWaterfall","gradient","verticalBoxPlot","verticalBullet","waterfall","area","seriesColors","fontWeight","fontSize","fontFamily","computedBackgroundColor","window","getComputedStyle","backgroundColor","letterPos","letter","toLowerCase","charCodeAt","seriesPos","alpha","match","num","parseInt","SERIES_COLORS","seriesTemplate","i","ThemeService","loaded","loadTheme","readTheme","readDefaultTheme","reset","createElement","available","queryColor","setColors","setFonts","setSeriesColors","destroyElement","container","display","innerHTML","appendChild","removeChild","setStyle","mapColor","querySelector","parseFloat","queryStyle","isNaN","setInactiveOpacity","seriesTypes","selector","inactiveOpacity","forEach","defaultFont","titleFont","paneTitleFont","labelFont","slice","querySelectorAll","unsetColor","reduce","arr","el","pos","varName","styleKey","providedIn","BaseEvent","AxisLabelClickEvent","PreventableEvent","arguments","prevented","preventDefault","isDefaultPrevented","ɵPreventableEvent_BaseFactory","ɵɵgetInheritedFactory","DragEvent","axisRanges","originalEvent","DragEndEvent","DragStartEvent","LegendEvent","LegendItemHoverEvent","LegendItemLeaveEvent","NoteEvent","NoteClickEvent","NoteHoverEvent","NoteLeaveEvent","PaneRenderEvent","PlotAreaClickEvent","x","y","PlotAreaHoverEvent","PlotAreaLeaveEvent","RenderEvent","_e","SelectEvent","from","to","SelectEndEvent","SelectStartEvent","SeriesClickEvent","stackValue","SeriesEvent","SeriesHoverEvent","SeriesOverEvent","SeriesLeaveEvent","ZoomEvent","delta","ZoomEndEvent","ZoomStartEvent","EVENT_MAP$2","axisLabelClick","drag","dragEnd","dragStart","legendItemHover","legendItemLeave","noteClick","noteHover","noteLeave","paneRender","plotAreaClick","plotAreaHover","plotAreaLeave","select","selectEnd","selectStart","seriesClick","seriesHover","seriesOver","seriesLeave","zoom","zoomEnd","zoomStart","InstanceEventService$1","create","LegendItemClickEvent","packageMetadata","productName","productCodes","publishDate","version","licensingDocsUrl","CollectionComponent","items","processChanges","ngAfterContentInit","readItems","children","s","indexOf","SeriesComponent","tooltipTemplateService","viewContainer","ngAfterContentChecked","readTooltipTemplates","templates","item","ViewContainerRef","DrilldownEvent","hasObservers","emitter","observers","ChartComponent","themeService","intl","instanceEventService","changeDetector","renderer","drilldown","drilldownLevelChange","resizeRateLimit","showLicenseWatermark","theme","suppressTransitions","hostClasses","drilldownState","isValid","validatePackage","shouldShowValidationUI","refreshWait","drilldownLevel","level","currentLevel","seriesComponents","removed","view","destroy","ngOnInit","addClass","ngAfterViewInit","canRender","chartMouseleave","listen","surfaceElement","bind","domSubscriptions","setDirection","subscriptions","intlChange","add","rtlChange","onDrilldown","run","seriesCollection","seriesCollectionComponent","seriesComponent","find","sc","createEmbeddedView","drilldownValue","markForCheck","ngAfterViewChecked","autoResize","clearTimeout","resizeTimeout","setTimeout","resize","destroyed","optionsChange","redrawTimeout","createInstance","observer","Chart","intlService","exportImage","exportVisual","exportSVG","findAxisByName","findPaneByIndex","findPaneByName","getPlotArea","plotArea","toggleHighlight","instanceObserver","onResize","reloadTheme","onLegendItemClick","onRender","getDonutCenterStyle","surface","onShowTooltip","crossahirTooltips","tooltipInstance","onHideTooltip","trigger","activeEmitter","requiresHandlers","names","refresh","updateDirection","setChartAreaSize","transitions","updateOptions","height","setOptions","tooltipMouseleave","relatedTarget","chartElement","hideElements","handlingTap","Boolean","firstSeries","charts","_plotArea","firstPoint","center","box","radius","sector","innerRadius","combineLatest","tap","callback","inZone","deferredRedraw","isRTL","noTransitionsRedraw","IntlService","ChangeDetectorRef","Renderer2","pannable","renderAs","subtitle","zoomable","panes","paneDefaults","valueAxis","exportAs","L10N_PREFIX","useValue","_r1","ɵɵgetCurrentView","ɵɵlistener","$event","i0","ɵɵrestoreView","ɵɵresetView","ResizeSensorComponent","WatermarkOverlayComponent","XAxisItemComponent","CollectionItemComponent","constructor","configurationService","collectionService","intl","localeId","notifyChanges","weekStartDay","firstDay","ɵfac","__ngFactoryType__","ɵɵdirectiveInject","ConfigurationService","CollectionService","IntlService","LOCALE_ID","ɵcmp","ɵɵdefineComponent","type","selectors","inputs","axisCrossingValue","background","baseUnit","categories","color","line","majorGridLines","majorTicks","majorUnit","max","min","minorGridLines","minorTicks","minorUnit","name","narrowRange","pane","plotBands","reverse","startAngle","visible","crosshair","labels","notes","title","standalone","features","ɵɵProvidersFeature","ɵɵInheritDefinitionFeature","ɵɵStandaloneFeature","decls","vars","template","rf","ctx","encapsulation","changeDetection","XAxisComponent","CollectionComponent","contentQueries","dirIndex","ɵɵcontentQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","children","XAxisCrosshairComponent","SettingsComponent","markAsVisible","opacity","width","tooltip","XAxisCrosshairTooltipComponent","border","font","format","padding","XAxisLabelsComponent","content","culture","dateFormats","margin","mirror","position","rotation","skip","step","visual","XAxisNotesComponent","data","icon","label","XAxisNotesIconComponent","size","XAxisNotesLabelComponent","XAxisTitleComponent","text","YAxisItemComponent","YAxisComponent","YAxisCrosshairComponent","YAxisCrosshairTooltipComponent","YAxisLabelsComponent","YAxisNotesComponent","YAxisNotesIconComponent","YAxisNotesLabelComponent","YAxisTitleComponent","ZoomableComponent","mousewheel","selection","NavigatorFilterEvent","BaseEvent","e","sender","from","to","RootConfigurationService","ɵRootConfigurationService_BaseFactory","ɵɵgetInheritedFactory","ɵprov","ɵɵdefineInjectable","token","factory","EVENT_MAP$1","navigatorFilter","StockInstanceEventService","InstanceEventService$1","create","args","NAVIGATOR_DEFAULTS","autoBindElements","liveDrag","partialRedraw","StockChartComponent","ChartComponent","themeService","element","localizationService","ngZone","instanceEventService","changeDetector","renderer","drilldown","EventEmitter","drilldownLevelChange","showLicenseWatermark","redrawSlaves","hostClasses","isValid","validatePackage","packageMetadata","shouldShowValidationUI","drilldownLevel","drilldownState","length","skipNavigatorRedraw","createInstance","observer","applyNavigatorDefaults","isDevMode","options","zoomable","pannable","Error","instance","StockChart","theme","intlService","rtl","updateOptions","applyOptions","bindCategories","navigator","setOptions","Object","assign","ThemeService","ElementRef","LocalizationService","NgZone","ChangeDetectorRef","Renderer2","outputs","exportAs","TooltipTemplateService","provide","useExisting","L10N_PREFIX","useValue","consts","_r1","ɵɵgetCurrentView","ɵɵelement","ɵɵelementStart","ɵɵlistener","$event","i0","ɵɵrestoreView","ɵɵresetView","tooltipMouseleave","ɵɵelementEnd","onResize","ɵɵtemplate","StockChartComponent_div_5_Template","ɵɵadvance","ɵɵproperty","popupSettings","dependencies","CrosshairTooltipsContainerComponent","TooltipPopupComponent","ResizeSensorComponent","NgIf","WatermarkOverlayComponent","PREFIX","InjectionToken","PrefixConfigurationService","rootService","prefix","push","store","notify","Change","change","key","ɵɵinject","NavigatorComponent","categoryAxis","hint","select","series","useClass","CategoryAxisItemComponent","autoBaseUnitSteps","baseUnitStep","justified","maxDateGroups","maxDivisions","roundToBaseUnit","rangeLabels","NavigatorCategoryAxisComponent","CategoryAxisCrosshairComponent","dashType","NavigatorCategoryAxisCrosshairComponent","CategoryAxisCrosshairTooltipComponent","NavigatorCategoryAxisCrosshairTooltipComponent","CategoryAxisLabelsComponent","NavigatorCategoryAxisLabelsComponent","CategoryAxisNotesComponent","NavigatorCategoryAxisNotesComponent","CategoryAxisNotesIconComponent","NavigatorCategoryAxisNotesIconComponent","CategoryAxisNotesLabelComponent","NavigatorCategoryAxisNotesLabelComponent","CategoryAxisSelectComponent","NavigatorCategoryAxisSelectComponent","CategoryAxisTitleComponent","NavigatorCategoryAxisTitleComponent","NavigatorHintComponent","PaneComponent","clip","height","NavigatorPaneComponent","PanesTitleComponent","NavigatorPaneTitleComponent","NavigatorSelectComponent","NavigatorSeriesItemComponent","SeriesItemComponent","drilldownField","NavigatorSeriesComponent","SeriesComponent","tooltipTemplateService","viewContainer","readTooltipTemplates","ViewContainerRef","SeriesErrorBarsComponent","endCaps","value","xValue","yValue","NavigatorSeriesErrorBarsComponent","SeriesExtremesComponent","NavigatorSeriesExtremesComponent","SeriesHighlightComponent","markers","toggle","NavigatorSeriesHighlightComponent","SeriesLabelsComponent","align","ariaContent","distance","NavigatorSeriesLabelsComponent","SeriesLabelsFromComponent","NavigatorSeriesLabelsFromComponent","SeriesLabelsToComponent","NavigatorSeriesLabelsToComponent","SeriesMarkersComponent","NavigatorSeriesMarkersComponent","SeriesNotesComponent","NavigatorSeriesNotesComponent","SeriesNotesIconComponent","NavigatorSeriesNotesIconComponent","SeriesNotesLabelComponent","NavigatorSeriesNotesLabelComponent","SeriesOutliersComponent","NavigatorSeriesOutliersComponent","NavigatorSeriesTooltipComponent","SeriesTooltipComponent","SparklineComponent","tooltipWrapperClass","tooltipContentClasses","Sparkline","normalizeOptions","SparklineComponent_div_5_Template","AxisDefaultsComponent","AxisDefaultsCrosshairComponent","AxisDefaultsCrosshairTooltipComponent","AxisDefaultsLabelsComponent","AxisDefaultsTitleComponent","CategoryAxisComponent","CategoryAxisRangeLabelsComponent","configKey","ChartAreaComponent","LegendComponent","offsetX","offsetY","orientation","spacing","inactiveItems","item","LegendInactiveItemsComponent","LegendItemComponent","cursor","area","highlight","PaneDefaultsComponent","PaneDefaultsTitleComponent","PanesComponent","PlotAreaComponent","SeriesDefaultsComponent","gap","overlay","stack","SeriesDefaultsLabelsComponent","SeriesDefaultsLabelsFromComponent","SeriesDefaultsLabelsToComponent","SeriesDefaultsNotesComponent","SeriesDefaultsNotesIconComponent","SeriesDefaultsNotesLabelComponent","SeriesDefaultsTooltipComponent","SeriesTrendlineComponent","period","order","forecast","SeriesTrendlineForecastComponent","before","after","SubtitleComponent","TitleComponent","description","TooltipComponent","templateService","ngAfterContentChecked","setTemplate","seriesTooltipTemplate","templateRef","setSharedTemplate","sharedTooltipTemplate","SeriesTooltipTemplateDirective","SharedTooltipTemplateDirective","first","shared","ValueAxisItemComponent","ValueAxisComponent","ValueAxisCrosshairComponent","ValueAxisCrosshairTooltipComponent","ValueAxisLabelsComponent","ValueAxisNotesComponent","ValueAxisNotesIconComponent","ValueAxisNotesLabelComponent","ValueAxisTitleComponent","ChartBreadcrumbComponent","rootItem","svgIcon","homeIcon","subscription","Subscription","ngOnInit","items","chart","add","subscribe","onDrilldown","bind","onDrilldownLevelChange","ngOnChanges","changes","rootItemChange","currentValue","ngOnDestroy","unsubscribe","onItemClick","target","findIndex","point","category","toString","level","slice","viewQuery","ɵɵviewQuery","_c2","breadcrumb","ɵɵNgOnChangesFeature","BreadCrumbComponent","SankeyBaseEvent","PreventableEvent$1","originalEvent","SankeyNodeEvent","dataItem","SankeyLinkEvent","EVENT_MAP","nodeEnter","nodeLeave","linkEnter","linkLeave","nodeClick","linkClick","InstanceEventService","SankeyLinkTooltipTemplateContext","source","SankeyLinkTooltipTemplateDirective","TemplateRef","ɵdir","ɵɵdefineDirective","SankeyNodeTooltipTemplateContext","nodeValue","SankeyNodeTooltipTemplateDirective","SankeyTooltipTemplateService","SquareSymbol","display","marginLeft","hostVars","hostBindings","ɵɵstyleProp","DEFAULT_OFFSET","SankeyTooltipPopupComponent","BaseTooltip","popupService","animate","wrapperClass","arrowIcon","arrowRightIcon","textStyle","tooltipStyle","alignItems","onInit","popupRef","popupElement","className","ngAfterViewInit","setDirection","subscriptions","rtlChange","show","isNode","targetType","isLink","nodeTooltipTemplateRef","nodeTemplate","defaultNodeTooltipTemplate","nodeTooltipContext","linkTooltipTemplateRef","linkTemplate","defaultLinkTooltipTemplate","linkTooltipContext","style","anchor","tooltipData","popupAlign","tooltipAnchor","nativeElement","offsetWidth","offsetHeight","__spreadValues","popupOffset","offset","left","horizontal","vertical","top","formatUnits","tooltipUnitFormat","arrowLeftIcon","isRTL","setAttribute","Boolean","PopupService","_c0","POPUP_CONTAINER","useFactory","bodyFactory","SankeyTooltipPopupComponent_ng_template_0_Template","ɵɵtemplateRefExtractor","SankeyTooltipPopupComponent_ng_template_2_Template","SankeyTooltipPopupComponent_ng_template_3_Template","NgStyle","NgTemplateOutlet","IconWrapperComponent","Messages","ComponentMessages","ɵMessages_BaseFactory","LocalizedMessagesDirective","service","forwardRef","SankeyComponent","navigable","loadTheme","refreshWait","intlChange","copyChanges","toSimpleChanges","destroyed","optionsChange","destroy","clearTimeout","redrawTimeout","messageFor","get","Sankey","instanceOptions","forEach","eventName","trigger","onShowTooltip","onHideTooltip","exportImage","exportVisual","exportSVG","init","canRender","instanceElement","reloadTheme","reset","run","tooltipInstance","active","hide","detectChanges","emitter","activeEmitter","emit","isDefaultPrevented","requiresHandlers","names","idx","refresh","isDocumentAvailable","__spreadProps","disableKeyboardNavigation","hasObservers","runOutsideAngular","combineLatest","onChange$","pipe","tap","result","auditTime","THROTTLE_MS","chartTheme","nodeColors","seriesColors","callback","inZone","markForCheck","_c3","links","nodes","legend","disableAutoLayout","i18n_0","$localize","ɵɵelementContainer","SankeyComponent_div_4_Template","SankeyFlatBindingDataBoundEvent","SankeyFlatBindingDirective","sankey","dimensionFields","dataBound","isChanged","valueField","dimensions","map","field","getter","measure","createSankeyData","SankeyLabelsComponent","stroke","SankeyLegendComponent","SankeyLinksComponent","colorType","SankeyCustomMessagesComponent","override","SankeyNodesComponent","SankeyTitleComponent","SankeyTooltipComponent","linkTooltipTemplate","nodeTooltipTemplate","followPointer","delay","KENDO_CHART","DonutCenterTemplateDirective","CrosshairTooltipComponent","SeriesDrilldownTemplateDirective","KENDO_SPARKLINE","KENDO_STOCKCHART","KENDO_SANKEY","KENDO_CHARTS","ChartsModule","ɵfac","__ngFactoryType__","ɵmod","ɵɵdefineNgModule","type","ɵinj","ɵɵdefineInjector","providers","IconsService","ResizeBatchService","PopupService","ThemeService","imports","ChartComponent","XAxisComponent","XAxisCrosshairComponent","XAxisCrosshairTooltipComponent","XAxisItemComponent","XAxisLabelsComponent","XAxisNotesComponent","XAxisNotesIconComponent","XAxisNotesLabelComponent","XAxisTitleComponent","YAxisComponent","YAxisCrosshairComponent","YAxisCrosshairTooltipComponent","YAxisItemComponent","YAxisLabelsComponent","YAxisNotesComponent","YAxisNotesIconComponent","YAxisNotesLabelComponent","YAxisTitleComponent","ZoomableComponent","TooltipPopupComponent","CrosshairTooltipsContainerComponent","CrosshairTooltipComponent","AxisDefaultsComponent","AxisDefaultsCrosshairComponent","AxisDefaultsCrosshairTooltipComponent","AxisDefaultsLabelsComponent","AxisDefaultsTitleComponent","CategoryAxisComponent","CategoryAxisCrosshairComponent","CategoryAxisCrosshairTooltipComponent","CategoryAxisItemComponent","CategoryAxisLabelsComponent","CategoryAxisRangeLabelsComponent","CategoryAxisNotesComponent","CategoryAxisNotesIconComponent","CategoryAxisNotesLabelComponent","CategoryAxisSelectComponent","CategoryAxisTitleComponent","ChartAreaComponent","ChartBreadcrumbComponent","LegendComponent","LegendInactiveItemsComponent","LegendItemComponent","PaneComponent","PaneDefaultsComponent","PaneDefaultsTitleComponent","PanesComponent","PanesTitleComponent","PlotAreaComponent","SeriesComponent","SeriesDefaultsComponent","SeriesDefaultsLabelsComponent","SeriesDefaultsLabelsFromComponent","SeriesDefaultsLabelsToComponent","SeriesDefaultsNotesComponent","SeriesDefaultsNotesIconComponent","SeriesDefaultsNotesLabelComponent","SeriesDefaultsTooltipComponent","SeriesErrorBarsComponent","SeriesExtremesComponent","SeriesHighlightComponent","SeriesItemComponent","SeriesLabelsComponent","SeriesLabelsFromComponent","SeriesLabelsToComponent","SeriesMarkersComponent","SeriesNotesComponent","SeriesNotesIconComponent","SeriesNotesLabelComponent","SeriesOutliersComponent","SeriesTooltipComponent","SeriesTrendlineComponent","SeriesTrendlineForecastComponent","SubtitleComponent","TitleComponent","TooltipComponent","ValueAxisComponent","ValueAxisCrosshairComponent","ValueAxisCrosshairTooltipComponent","ValueAxisItemComponent","ValueAxisLabelsComponent","ValueAxisNotesComponent","ValueAxisNotesIconComponent","ValueAxisNotesLabelComponent","ValueAxisTitleComponent","SparklineComponent","StockChartComponent","NavigatorComponent","NavigatorCategoryAxisComponent","NavigatorCategoryAxisCrosshairComponent","NavigatorCategoryAxisCrosshairTooltipComponent","NavigatorCategoryAxisLabelsComponent","NavigatorCategoryAxisNotesComponent","NavigatorCategoryAxisNotesIconComponent","NavigatorCategoryAxisNotesLabelComponent","NavigatorCategoryAxisSelectComponent","NavigatorCategoryAxisTitleComponent","NavigatorHintComponent","NavigatorPaneComponent","NavigatorPaneTitleComponent","NavigatorSelectComponent","NavigatorSeriesComponent","NavigatorSeriesItemComponent","NavigatorSeriesErrorBarsComponent","NavigatorSeriesExtremesComponent","NavigatorSeriesHighlightComponent","NavigatorSeriesLabelsComponent","NavigatorSeriesLabelsFromComponent","NavigatorSeriesLabelsToComponent","NavigatorSeriesMarkersComponent","NavigatorSeriesNotesComponent","NavigatorSeriesNotesIconComponent","NavigatorSeriesNotesLabelComponent","NavigatorSeriesOutliersComponent","NavigatorSeriesTooltipComponent","SankeyComponent","SankeyTooltipPopupComponent","SankeyCustomMessagesComponent","SankeyTitleComponent","SankeyLegendComponent","SankeyTooltipComponent","SankeyLinksComponent","SankeyNodesComponent","SankeyLabelsComponent"],"x_google_ignoreList":[0]}