Files
doneit-web/.angular/cache/14.2.12/babel-webpack/31a8c448e71ae760edee644b4d55e364.json
T
Eudes Inácio 53b71ea16f its working
2023-06-30 09:54:21 +01:00

1 line
33 KiB
JSON

{"ast":null,"code":"import { InjectionToken, Injectable, Optional, Inject, NgModule } from '@angular/core';\nimport { MAT_DATE_LOCALE } from '@angular/material/core';\nimport * as _rollupMoment from 'moment';\nimport _rollupMoment__default from 'moment';\nimport { NgxMatDateAdapter, NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';\n\n/**\r\n * @license\r\n * Copyright Google LLC All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://angular.io/license\r\n */\nimport * as ɵngcc0 from '@angular/core';\nconst moment = _rollupMoment__default || _rollupMoment;\n/** InjectionToken for moment date adapter to configure options. */\nconst NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS = new InjectionToken('NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS', {\n providedIn: 'root',\n factory: NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY\n});\n/** @docs-private */\nfunction NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY() {\n return {\n useUtc: false\n };\n}\n/** Creates an array and fills it with values. */\nfunction range(length, valueFunction) {\n const valuesArray = Array(length);\n for (let i = 0; i < length; i++) {\n valuesArray[i] = valueFunction(i);\n }\n return valuesArray;\n}\n/** Adapts Moment.js Dates for use with Angular Material. */\nclass NgxMatMomentAdapter extends NgxMatDateAdapter {\n constructor(dateLocale, _options) {\n super();\n this._options = _options;\n this.setLocale(dateLocale || moment.locale());\n }\n setLocale(locale) {\n super.setLocale(locale);\n let momentLocaleData = moment.localeData(locale);\n this._localeData = {\n firstDayOfWeek: momentLocaleData.firstDayOfWeek(),\n longMonths: momentLocaleData.months(),\n shortMonths: momentLocaleData.monthsShort(),\n dates: range(31, i => this.createDate(2017, 0, i + 1).format('D')),\n longDaysOfWeek: momentLocaleData.weekdays(),\n shortDaysOfWeek: momentLocaleData.weekdaysShort(),\n narrowDaysOfWeek: momentLocaleData.weekdaysMin()\n };\n }\n getYear(date) {\n return this.clone(date).year();\n }\n getMonth(date) {\n return this.clone(date).month();\n }\n getDate(date) {\n return this.clone(date).date();\n }\n getDayOfWeek(date) {\n return this.clone(date).day();\n }\n getMonthNames(style) {\n // Moment.js doesn't support narrow month names, so we just use short if narrow is requested.\n return style == 'long' ? this._localeData.longMonths : this._localeData.shortMonths;\n }\n getDateNames() {\n return this._localeData.dates;\n }\n getDayOfWeekNames(style) {\n if (style == 'long') {\n return this._localeData.longDaysOfWeek;\n }\n if (style == 'short') {\n return this._localeData.shortDaysOfWeek;\n }\n return this._localeData.narrowDaysOfWeek;\n }\n getYearName(date) {\n return this.clone(date).format('YYYY');\n }\n getFirstDayOfWeek() {\n return this._localeData.firstDayOfWeek;\n }\n getNumDaysInMonth(date) {\n return this.clone(date).daysInMonth();\n }\n clone(date) {\n return date.clone().locale(this.locale);\n }\n createDate(year, month, date) {\n // Moment.js will create an invalid date if any of the components are out of bounds, but we\n // explicitly check each case so we can throw more descriptive errors.\n if (month < 0 || month > 11) {\n throw Error(`Invalid month index \"${month}\". Month index has to be between 0 and 11.`);\n }\n if (date < 1) {\n throw Error(`Invalid date \"${date}\". Date has to be greater than 0.`);\n }\n const result = this._createMoment({\n year,\n month,\n date\n }).locale(this.locale);\n // If the result isn't valid, the date must have been out of bounds for this month.\n if (!result.isValid()) {\n throw Error(`Invalid date \"${date}\" for month with index \"${month}\".`);\n }\n return result;\n }\n today() {\n return this._createMoment().locale(this.locale);\n }\n parse(value, parseFormat) {\n if (value && typeof value == 'string') {\n return this._createMoment(value, parseFormat, this.locale);\n }\n return value ? this._createMoment(value).locale(this.locale) : null;\n }\n format(date, displayFormat) {\n date = this.clone(date);\n if (!this.isValid(date)) {\n throw Error('MomentDateAdapter: Cannot format invalid date.');\n }\n return date.format(displayFormat);\n }\n addCalendarYears(date, years) {\n return this.clone(date).add({\n years\n });\n }\n addCalendarMonths(date, months) {\n return this.clone(date).add({\n months\n });\n }\n addCalendarDays(date, days) {\n return this.clone(date).add({\n days\n });\n }\n toIso8601(date) {\n return this.clone(date).format();\n }\n /**\r\n * Returns the given value if given a valid Moment or null. Deserializes valid ISO 8601 strings\r\n * (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid Moments and empty\r\n * string into null. Returns an invalid date for all other values.\r\n */\n deserialize(value) {\n let date;\n if (value instanceof Date) {\n date = this._createMoment(value).locale(this.locale);\n } else if (this.isDateInstance(value)) {\n // Note: assumes that cloning also sets the correct locale.\n return this.clone(value);\n }\n if (typeof value === 'string') {\n if (!value) {\n return null;\n }\n date = this._createMoment(value, moment.ISO_8601).locale(this.locale);\n }\n if (date && this.isValid(date)) {\n return this._createMoment(date).locale(this.locale);\n }\n return super.deserialize(value);\n }\n isDateInstance(obj) {\n return moment.isMoment(obj);\n }\n isValid(date) {\n return this.clone(date).isValid();\n }\n invalid() {\n return moment.invalid();\n }\n getHour(date) {\n return date.hours();\n }\n getMinute(date) {\n return date.minutes();\n }\n getSecond(date) {\n return date.seconds();\n }\n setHour(date, value) {\n date.hours(value);\n }\n setMinute(date, value) {\n date.minutes(value);\n }\n setSecond(date, value) {\n date.seconds(value);\n }\n /** Creates a Moment instance while respecting the current UTC settings. */\n _createMoment(date, format, locale) {\n const {\n strict,\n useUtc\n } = this._options || {};\n return useUtc ? moment.utc(date, format, locale, strict) : moment(date, format, locale, strict);\n }\n}\nNgxMatMomentAdapter.ɵfac = function NgxMatMomentAdapter_Factory(t) {\n return new (t || NgxMatMomentAdapter)(ɵngcc0.ɵɵinject(MAT_DATE_LOCALE, 8), ɵngcc0.ɵɵinject(NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS, 8));\n};\nNgxMatMomentAdapter.ɵprov = /*@__PURE__*/ɵngcc0.ɵɵdefineInjectable({\n token: NgxMatMomentAdapter,\n factory: NgxMatMomentAdapter.ɵfac\n});\n/** @nocollapse */\nNgxMatMomentAdapter.ctorParameters = () => [{\n type: String,\n decorators: [{\n type: Optional\n }, {\n type: Inject,\n args: [MAT_DATE_LOCALE]\n }]\n}, {\n type: undefined,\n decorators: [{\n type: Optional\n }, {\n type: Inject,\n args: [NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }]\n}];\n(function () {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(NgxMatMomentAdapter, [{\n type: Injectable\n }], function () {\n return [{\n type: String,\n decorators: [{\n type: Optional\n }, {\n type: Inject,\n args: [MAT_DATE_LOCALE]\n }]\n }, {\n type: undefined,\n decorators: [{\n type: Optional\n }, {\n type: Inject,\n args: [NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }]\n }];\n }, null);\n})();\n\n/**\r\n * @license\r\n * Copyright Google LLC All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://angular.io/license\r\n */\nconst DEFAULT_DATE_INPUT = 'l, LTS';\nconst NGX_MAT_MOMENT_FORMATS = {\n parse: {\n dateInput: DEFAULT_DATE_INPUT\n },\n display: {\n dateInput: DEFAULT_DATE_INPUT,\n monthYearLabel: 'MMM YYYY',\n dateA11yLabel: 'LL',\n monthYearA11yLabel: 'MMMM YYYY'\n }\n};\n\n/**\r\n * @license\r\n * Copyright Google LLC All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://angular.io/license\r\n */\nclass NgxMomentDateModule {}\nNgxMomentDateModule.ɵfac = function NgxMomentDateModule_Factory(t) {\n return new (t || NgxMomentDateModule)();\n};\nNgxMomentDateModule.ɵmod = /*@__PURE__*/ɵngcc0.ɵɵdefineNgModule({\n type: NgxMomentDateModule\n});\nNgxMomentDateModule.ɵinj = /*@__PURE__*/ɵngcc0.ɵɵdefineInjector({\n providers: [{\n provide: NgxMatDateAdapter,\n useClass: NgxMatMomentAdapter,\n deps: [MAT_DATE_LOCALE, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }]\n});\n(function () {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(NgxMomentDateModule, [{\n type: NgModule,\n args: [{\n providers: [{\n provide: NgxMatDateAdapter,\n useClass: NgxMatMomentAdapter,\n deps: [MAT_DATE_LOCALE, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }]\n }]\n }], null, null);\n})();\nconst ɵ0 = NGX_MAT_MOMENT_FORMATS;\nclass NgxMatMomentModule {}\nNgxMatMomentModule.ɵfac = function NgxMatMomentModule_Factory(t) {\n return new (t || NgxMatMomentModule)();\n};\nNgxMatMomentModule.ɵmod = /*@__PURE__*/ɵngcc0.ɵɵdefineNgModule({\n type: NgxMatMomentModule\n});\nNgxMatMomentModule.ɵinj = /*@__PURE__*/ɵngcc0.ɵɵdefineInjector({\n providers: [{\n provide: NGX_MAT_DATE_FORMATS,\n useValue: ɵ0\n }],\n imports: [NgxMomentDateModule]\n});\n(function () {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(NgxMatMomentModule, [{\n type: NgModule,\n args: [{\n imports: [NgxMomentDateModule],\n providers: [{\n provide: NGX_MAT_DATE_FORMATS,\n useValue: ɵ0\n }]\n }]\n }], null, null);\n})();\n(function () {\n (typeof ngJitMode === \"undefined\" || ngJitMode) && ɵngcc0.ɵɵsetNgModuleScope(NgxMatMomentModule, {\n imports: [NgxMomentDateModule]\n });\n})();\n\n/*\r\n * Public API Surface of ngx-mat-moment-adapter\r\n */\n\n/**\r\n * Generated bundle index. Do not edit.\r\n */\n\nexport { NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY, NGX_MAT_MOMENT_FORMATS, NgxMatMomentAdapter, NgxMatMomentModule, NgxMomentDateModule, ɵ0 };","map":{"version":3,"names":["InjectionToken","Injectable","Optional","Inject","NgModule","MAT_DATE_LOCALE","_rollupMoment","_rollupMoment__default","NgxMatDateAdapter","NGX_MAT_DATE_FORMATS","ɵngcc0","moment","NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS","providedIn","factory","NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY","useUtc","range","length","valueFunction","valuesArray","Array","i","NgxMatMomentAdapter","constructor","dateLocale","_options","setLocale","locale","momentLocaleData","localeData","_localeData","firstDayOfWeek","longMonths","months","shortMonths","monthsShort","dates","createDate","format","longDaysOfWeek","weekdays","shortDaysOfWeek","weekdaysShort","narrowDaysOfWeek","weekdaysMin","getYear","date","clone","year","getMonth","month","getDate","getDayOfWeek","day","getMonthNames","style","getDateNames","getDayOfWeekNames","getYearName","getFirstDayOfWeek","getNumDaysInMonth","daysInMonth","Error","result","_createMoment","isValid","today","parse","value","parseFormat","displayFormat","addCalendarYears","years","add","addCalendarMonths","addCalendarDays","days","toIso8601","deserialize","Date","isDateInstance","ISO_8601","obj","isMoment","invalid","getHour","hours","getMinute","minutes","getSecond","seconds","setHour","setMinute","setSecond","strict","utc","ɵfac","NgxMatMomentAdapter_Factory","t","ɵɵinject","ɵprov","ɵɵdefineInjectable","token","ctorParameters","type","String","decorators","args","undefined","ngDevMode","ɵsetClassMetadata","DEFAULT_DATE_INPUT","NGX_MAT_MOMENT_FORMATS","dateInput","display","monthYearLabel","dateA11yLabel","monthYearA11yLabel","NgxMomentDateModule","NgxMomentDateModule_Factory","ɵmod","ɵɵdefineNgModule","ɵinj","ɵɵdefineInjector","providers","provide","useClass","deps","ɵ0","NgxMatMomentModule","NgxMatMomentModule_Factory","useValue","imports","ngJitMode","ɵɵsetNgModuleScope"],"sources":["C:/Users/eudes.inacio/GabineteDigital/gabinete-digital-fo/node_modules/@angular-material-components/moment-adapter/__ivy_ngcc__/fesm2015/angular-material-components-moment-adapter.js"],"sourcesContent":["import { InjectionToken, Injectable, Optional, Inject, NgModule } from '@angular/core';\nimport { MAT_DATE_LOCALE } from '@angular/material/core';\nimport * as _rollupMoment from 'moment';\nimport _rollupMoment__default from 'moment';\nimport { NgxMatDateAdapter, NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';\n\n/**\r\n * @license\r\n * Copyright Google LLC All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://angular.io/license\r\n */\r\nimport * as ɵngcc0 from '@angular/core';\nconst moment = _rollupMoment__default || _rollupMoment;\r\n/** InjectionToken for moment date adapter to configure options. */\r\nconst NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS = new InjectionToken('NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS', {\r\n providedIn: 'root',\r\n factory: NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY\r\n});\r\n/** @docs-private */\r\nfunction NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY() {\r\n return {\r\n useUtc: false\r\n };\r\n}\r\n/** Creates an array and fills it with values. */\r\nfunction range(length, valueFunction) {\r\n const valuesArray = Array(length);\r\n for (let i = 0; i < length; i++) {\r\n valuesArray[i] = valueFunction(i);\r\n }\r\n return valuesArray;\r\n}\r\n/** Adapts Moment.js Dates for use with Angular Material. */\r\nclass NgxMatMomentAdapter extends NgxMatDateAdapter {\r\n constructor(dateLocale, _options) {\r\n super();\r\n this._options = _options;\r\n this.setLocale(dateLocale || moment.locale());\r\n }\r\n setLocale(locale) {\r\n super.setLocale(locale);\r\n let momentLocaleData = moment.localeData(locale);\r\n this._localeData = {\r\n firstDayOfWeek: momentLocaleData.firstDayOfWeek(),\r\n longMonths: momentLocaleData.months(),\r\n shortMonths: momentLocaleData.monthsShort(),\r\n dates: range(31, (i) => this.createDate(2017, 0, i + 1).format('D')),\r\n longDaysOfWeek: momentLocaleData.weekdays(),\r\n shortDaysOfWeek: momentLocaleData.weekdaysShort(),\r\n narrowDaysOfWeek: momentLocaleData.weekdaysMin(),\r\n };\r\n }\r\n getYear(date) {\r\n return this.clone(date).year();\r\n }\r\n getMonth(date) {\r\n return this.clone(date).month();\r\n }\r\n getDate(date) {\r\n return this.clone(date).date();\r\n }\r\n getDayOfWeek(date) {\r\n return this.clone(date).day();\r\n }\r\n getMonthNames(style) {\r\n // Moment.js doesn't support narrow month names, so we just use short if narrow is requested.\r\n return style == 'long' ? this._localeData.longMonths : this._localeData.shortMonths;\r\n }\r\n getDateNames() {\r\n return this._localeData.dates;\r\n }\r\n getDayOfWeekNames(style) {\r\n if (style == 'long') {\r\n return this._localeData.longDaysOfWeek;\r\n }\r\n if (style == 'short') {\r\n return this._localeData.shortDaysOfWeek;\r\n }\r\n return this._localeData.narrowDaysOfWeek;\r\n }\r\n getYearName(date) {\r\n return this.clone(date).format('YYYY');\r\n }\r\n getFirstDayOfWeek() {\r\n return this._localeData.firstDayOfWeek;\r\n }\r\n getNumDaysInMonth(date) {\r\n return this.clone(date).daysInMonth();\r\n }\r\n clone(date) {\r\n return date.clone().locale(this.locale);\r\n }\r\n createDate(year, month, date) {\r\n // Moment.js will create an invalid date if any of the components are out of bounds, but we\r\n // explicitly check each case so we can throw more descriptive errors.\r\n if (month < 0 || month > 11) {\r\n throw Error(`Invalid month index \"${month}\". Month index has to be between 0 and 11.`);\r\n }\r\n if (date < 1) {\r\n throw Error(`Invalid date \"${date}\". Date has to be greater than 0.`);\r\n }\r\n const result = this._createMoment({ year, month, date }).locale(this.locale);\r\n // If the result isn't valid, the date must have been out of bounds for this month.\r\n if (!result.isValid()) {\r\n throw Error(`Invalid date \"${date}\" for month with index \"${month}\".`);\r\n }\r\n return result;\r\n }\r\n today() {\r\n return this._createMoment().locale(this.locale);\r\n }\r\n parse(value, parseFormat) {\r\n if (value && typeof value == 'string') {\r\n return this._createMoment(value, parseFormat, this.locale);\r\n }\r\n return value ? this._createMoment(value).locale(this.locale) : null;\r\n }\r\n format(date, displayFormat) {\r\n date = this.clone(date);\r\n if (!this.isValid(date)) {\r\n throw Error('MomentDateAdapter: Cannot format invalid date.');\r\n }\r\n return date.format(displayFormat);\r\n }\r\n addCalendarYears(date, years) {\r\n return this.clone(date).add({ years });\r\n }\r\n addCalendarMonths(date, months) {\r\n return this.clone(date).add({ months });\r\n }\r\n addCalendarDays(date, days) {\r\n return this.clone(date).add({ days });\r\n }\r\n toIso8601(date) {\r\n return this.clone(date).format();\r\n }\r\n /**\r\n * Returns the given value if given a valid Moment or null. Deserializes valid ISO 8601 strings\r\n * (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid Moments and empty\r\n * string into null. Returns an invalid date for all other values.\r\n */\r\n deserialize(value) {\r\n let date;\r\n if (value instanceof Date) {\r\n date = this._createMoment(value).locale(this.locale);\r\n }\r\n else if (this.isDateInstance(value)) {\r\n // Note: assumes that cloning also sets the correct locale.\r\n return this.clone(value);\r\n }\r\n if (typeof value === 'string') {\r\n if (!value) {\r\n return null;\r\n }\r\n date = this._createMoment(value, moment.ISO_8601).locale(this.locale);\r\n }\r\n if (date && this.isValid(date)) {\r\n return this._createMoment(date).locale(this.locale);\r\n }\r\n return super.deserialize(value);\r\n }\r\n isDateInstance(obj) {\r\n return moment.isMoment(obj);\r\n }\r\n isValid(date) {\r\n return this.clone(date).isValid();\r\n }\r\n invalid() {\r\n return moment.invalid();\r\n }\r\n getHour(date) {\r\n return date.hours();\r\n }\r\n getMinute(date) {\r\n return date.minutes();\r\n }\r\n getSecond(date) {\r\n return date.seconds();\r\n }\r\n setHour(date, value) {\r\n date.hours(value);\r\n }\r\n setMinute(date, value) {\r\n date.minutes(value);\r\n }\r\n setSecond(date, value) {\r\n date.seconds(value);\r\n }\r\n /** Creates a Moment instance while respecting the current UTC settings. */\r\n _createMoment(date, format, locale) {\r\n const { strict, useUtc } = this._options || {};\r\n return useUtc\r\n ? moment.utc(date, format, locale, strict)\r\n : moment(date, format, locale, strict);\r\n }\r\n}\nNgxMatMomentAdapter.ɵfac = function NgxMatMomentAdapter_Factory(t) { return new (t || NgxMatMomentAdapter)(ɵngcc0.ɵɵinject(MAT_DATE_LOCALE, 8), ɵngcc0.ɵɵinject(NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS, 8)); };\nNgxMatMomentAdapter.ɵprov = /*@__PURE__*/ ɵngcc0.ɵɵdefineInjectable({ token: NgxMatMomentAdapter, factory: NgxMatMomentAdapter.ɵfac });\r\n/** @nocollapse */\r\nNgxMatMomentAdapter.ctorParameters = () => [\r\n { type: String, decorators: [{ type: Optional }, { type: Inject, args: [MAT_DATE_LOCALE,] }] },\r\n { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS,] }] }\r\n];\n(function () { (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(NgxMatMomentAdapter, [{\n type: Injectable\n }], function () { return [{ type: String, decorators: [{\n type: Optional\n }, {\n type: Inject,\n args: [MAT_DATE_LOCALE]\n }] }, { type: undefined, decorators: [{\n type: Optional\n }, {\n type: Inject,\n args: [NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }] }]; }, null); })();\n\n/**\r\n * @license\r\n * Copyright Google LLC All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://angular.io/license\r\n */\r\nconst DEFAULT_DATE_INPUT = 'l, LTS';\r\nconst NGX_MAT_MOMENT_FORMATS = {\r\n parse: {\r\n dateInput: DEFAULT_DATE_INPUT,\r\n },\r\n display: {\r\n dateInput: DEFAULT_DATE_INPUT,\r\n monthYearLabel: 'MMM YYYY',\r\n dateA11yLabel: 'LL',\r\n monthYearA11yLabel: 'MMMM YYYY',\r\n },\r\n};\n\n/**\r\n * @license\r\n * Copyright Google LLC All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://angular.io/license\r\n */\r\nclass NgxMomentDateModule {\r\n}\nNgxMomentDateModule.ɵfac = function NgxMomentDateModule_Factory(t) { return new (t || NgxMomentDateModule)(); };\nNgxMomentDateModule.ɵmod = /*@__PURE__*/ ɵngcc0.ɵɵdefineNgModule({ type: NgxMomentDateModule });\nNgxMomentDateModule.ɵinj = /*@__PURE__*/ ɵngcc0.ɵɵdefineInjector({ providers: [\n {\n provide: NgxMatDateAdapter,\n useClass: NgxMatMomentAdapter,\n deps: [MAT_DATE_LOCALE, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }\n ] });\n(function () { (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(NgxMomentDateModule, [{\n type: NgModule,\n args: [{\n providers: [\n {\n provide: NgxMatDateAdapter,\n useClass: NgxMatMomentAdapter,\n deps: [MAT_DATE_LOCALE, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }\n ]\n }]\n }], null, null); })();\r\nconst ɵ0 = NGX_MAT_MOMENT_FORMATS;\r\nclass NgxMatMomentModule {\r\n}\nNgxMatMomentModule.ɵfac = function NgxMatMomentModule_Factory(t) { return new (t || NgxMatMomentModule)(); };\nNgxMatMomentModule.ɵmod = /*@__PURE__*/ ɵngcc0.ɵɵdefineNgModule({ type: NgxMatMomentModule });\nNgxMatMomentModule.ɵinj = /*@__PURE__*/ ɵngcc0.ɵɵdefineInjector({ providers: [{ provide: NGX_MAT_DATE_FORMATS, useValue: ɵ0 }], imports: [NgxMomentDateModule] });\n(function () { (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(NgxMatMomentModule, [{\n type: NgModule,\n args: [{\n imports: [NgxMomentDateModule],\n providers: [{ provide: NGX_MAT_DATE_FORMATS, useValue: ɵ0 }]\n }]\n }], null, null); })();\n(function () { (typeof ngJitMode === \"undefined\" || ngJitMode) && ɵngcc0.ɵɵsetNgModuleScope(NgxMatMomentModule, { imports: [NgxMomentDateModule] }); })();\n\n/*\r\n * Public API Surface of ngx-mat-moment-adapter\r\n */\n\n/**\r\n * Generated bundle index. Do not edit.\r\n */\n\nexport { NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY, NGX_MAT_MOMENT_FORMATS, NgxMatMomentAdapter, NgxMatMomentModule, NgxMomentDateModule, ɵ0 };\n\n"],"mappings":"AAAA,SAASA,cAAc,EAAEC,UAAU,EAAEC,QAAQ,EAAEC,MAAM,EAAEC,QAAQ,QAAQ,eAAe;AACtF,SAASC,eAAe,QAAQ,wBAAwB;AACxD,OAAO,KAAKC,aAAa,MAAM,QAAQ;AACvC,OAAOC,sBAAsB,MAAM,QAAQ;AAC3C,SAASC,iBAAiB,EAAEC,oBAAoB,QAAQ,8CAA8C;;AAEtG;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKC,MAAM,MAAM,eAAe;AACvC,MAAMC,MAAM,GAAGJ,sBAAsB,IAAID,aAAa;AACtD;AACA,MAAMM,mCAAmC,GAAG,IAAIZ,cAAc,CAAC,qCAAqC,EAAE;EAClGa,UAAU,EAAE,MAAM;EAClBC,OAAO,EAAEC;AACb,CAAC,CAAC;AACF;AACA,SAASA,2CAA2CA,CAAA,EAAG;EACnD,OAAO;IACHC,MAAM,EAAE;EACZ,CAAC;AACL;AACA;AACA,SAASC,KAAKA,CAACC,MAAM,EAAEC,aAAa,EAAE;EAClC,MAAMC,WAAW,GAAGC,KAAK,CAACH,MAAM,CAAC;EACjC,KAAK,IAAII,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGJ,MAAM,EAAEI,CAAC,EAAE,EAAE;IAC7BF,WAAW,CAACE,CAAC,CAAC,GAAGH,aAAa,CAACG,CAAC,CAAC;EACrC;EACA,OAAOF,WAAW;AACtB;AACA;AACA,MAAMG,mBAAmB,SAASf,iBAAiB,CAAC;EAChDgB,WAAWA,CAACC,UAAU,EAAEC,QAAQ,EAAE;IAC9B,KAAK,CAAC,CAAC;IACP,IAAI,CAACA,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACC,SAAS,CAACF,UAAU,IAAId,MAAM,CAACiB,MAAM,CAAC,CAAC,CAAC;EACjD;EACAD,SAASA,CAACC,MAAM,EAAE;IACd,KAAK,CAACD,SAAS,CAACC,MAAM,CAAC;IACvB,IAAIC,gBAAgB,GAAGlB,MAAM,CAACmB,UAAU,CAACF,MAAM,CAAC;IAChD,IAAI,CAACG,WAAW,GAAG;MACfC,cAAc,EAAEH,gBAAgB,CAACG,cAAc,CAAC,CAAC;MACjDC,UAAU,EAAEJ,gBAAgB,CAACK,MAAM,CAAC,CAAC;MACrCC,WAAW,EAAEN,gBAAgB,CAACO,WAAW,CAAC,CAAC;MAC3CC,KAAK,EAAEpB,KAAK,CAAC,EAAE,EAAGK,CAAC,IAAK,IAAI,CAACgB,UAAU,CAAC,IAAI,EAAE,CAAC,EAAEhB,CAAC,GAAG,CAAC,CAAC,CAACiB,MAAM,CAAC,GAAG,CAAC,CAAC;MACpEC,cAAc,EAAEX,gBAAgB,CAACY,QAAQ,CAAC,CAAC;MAC3CC,eAAe,EAAEb,gBAAgB,CAACc,aAAa,CAAC,CAAC;MACjDC,gBAAgB,EAAEf,gBAAgB,CAACgB,WAAW,CAAC;IACnD,CAAC;EACL;EACAC,OAAOA,CAACC,IAAI,EAAE;IACV,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACE,IAAI,CAAC,CAAC;EAClC;EACAC,QAAQA,CAACH,IAAI,EAAE;IACX,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACI,KAAK,CAAC,CAAC;EACnC;EACAC,OAAOA,CAACL,IAAI,EAAE;IACV,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACA,IAAI,CAAC,CAAC;EAClC;EACAM,YAAYA,CAACN,IAAI,EAAE;IACf,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACO,GAAG,CAAC,CAAC;EACjC;EACAC,aAAaA,CAACC,KAAK,EAAE;IACjB;IACA,OAAOA,KAAK,IAAI,MAAM,GAAG,IAAI,CAACzB,WAAW,CAACE,UAAU,GAAG,IAAI,CAACF,WAAW,CAACI,WAAW;EACvF;EACAsB,YAAYA,CAAA,EAAG;IACX,OAAO,IAAI,CAAC1B,WAAW,CAACM,KAAK;EACjC;EACAqB,iBAAiBA,CAACF,KAAK,EAAE;IACrB,IAAIA,KAAK,IAAI,MAAM,EAAE;MACjB,OAAO,IAAI,CAACzB,WAAW,CAACS,cAAc;IAC1C;IACA,IAAIgB,KAAK,IAAI,OAAO,EAAE;MAClB,OAAO,IAAI,CAACzB,WAAW,CAACW,eAAe;IAC3C;IACA,OAAO,IAAI,CAACX,WAAW,CAACa,gBAAgB;EAC5C;EACAe,WAAWA,CAACZ,IAAI,EAAE;IACd,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACR,MAAM,CAAC,MAAM,CAAC;EAC1C;EACAqB,iBAAiBA,CAAA,EAAG;IAChB,OAAO,IAAI,CAAC7B,WAAW,CAACC,cAAc;EAC1C;EACA6B,iBAAiBA,CAACd,IAAI,EAAE;IACpB,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACe,WAAW,CAAC,CAAC;EACzC;EACAd,KAAKA,CAACD,IAAI,EAAE;IACR,OAAOA,IAAI,CAACC,KAAK,CAAC,CAAC,CAACpB,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC;EAC3C;EACAU,UAAUA,CAACW,IAAI,EAAEE,KAAK,EAAEJ,IAAI,EAAE;IAC1B;IACA;IACA,IAAII,KAAK,GAAG,CAAC,IAAIA,KAAK,GAAG,EAAE,EAAE;MACzB,MAAMY,KAAK,CAAE,wBAAuBZ,KAAM,4CAA2C,CAAC;IAC1F;IACA,IAAIJ,IAAI,GAAG,CAAC,EAAE;MACV,MAAMgB,KAAK,CAAE,iBAAgBhB,IAAK,mCAAkC,CAAC;IACzE;IACA,MAAMiB,MAAM,GAAG,IAAI,CAACC,aAAa,CAAC;MAAEhB,IAAI;MAAEE,KAAK;MAAEJ;IAAK,CAAC,CAAC,CAACnB,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC;IAC5E;IACA,IAAI,CAACoC,MAAM,CAACE,OAAO,CAAC,CAAC,EAAE;MACnB,MAAMH,KAAK,CAAE,iBAAgBhB,IAAK,2BAA0BI,KAAM,IAAG,CAAC;IAC1E;IACA,OAAOa,MAAM;EACjB;EACAG,KAAKA,CAAA,EAAG;IACJ,OAAO,IAAI,CAACF,aAAa,CAAC,CAAC,CAACrC,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC;EACnD;EACAwC,KAAKA,CAACC,KAAK,EAAEC,WAAW,EAAE;IACtB,IAAID,KAAK,IAAI,OAAOA,KAAK,IAAI,QAAQ,EAAE;MACnC,OAAO,IAAI,CAACJ,aAAa,CAACI,KAAK,EAAEC,WAAW,EAAE,IAAI,CAAC1C,MAAM,CAAC;IAC9D;IACA,OAAOyC,KAAK,GAAG,IAAI,CAACJ,aAAa,CAACI,KAAK,CAAC,CAACzC,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC,GAAG,IAAI;EACvE;EACAW,MAAMA,CAACQ,IAAI,EAAEwB,aAAa,EAAE;IACxBxB,IAAI,GAAG,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC;IACvB,IAAI,CAAC,IAAI,CAACmB,OAAO,CAACnB,IAAI,CAAC,EAAE;MACrB,MAAMgB,KAAK,CAAC,gDAAgD,CAAC;IACjE;IACA,OAAOhB,IAAI,CAACR,MAAM,CAACgC,aAAa,CAAC;EACrC;EACAC,gBAAgBA,CAACzB,IAAI,EAAE0B,KAAK,EAAE;IAC1B,OAAO,IAAI,CAACzB,KAAK,CAACD,IAAI,CAAC,CAAC2B,GAAG,CAAC;MAAED;IAAM,CAAC,CAAC;EAC1C;EACAE,iBAAiBA,CAAC5B,IAAI,EAAEb,MAAM,EAAE;IAC5B,OAAO,IAAI,CAACc,KAAK,CAACD,IAAI,CAAC,CAAC2B,GAAG,CAAC;MAAExC;IAAO,CAAC,CAAC;EAC3C;EACA0C,eAAeA,CAAC7B,IAAI,EAAE8B,IAAI,EAAE;IACxB,OAAO,IAAI,CAAC7B,KAAK,CAACD,IAAI,CAAC,CAAC2B,GAAG,CAAC;MAAEG;IAAK,CAAC,CAAC;EACzC;EACAC,SAASA,CAAC/B,IAAI,EAAE;IACZ,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACR,MAAM,CAAC,CAAC;EACpC;EACA;AACJ;AACA;AACA;AACA;EACIwC,WAAWA,CAACV,KAAK,EAAE;IACf,IAAItB,IAAI;IACR,IAAIsB,KAAK,YAAYW,IAAI,EAAE;MACvBjC,IAAI,GAAG,IAAI,CAACkB,aAAa,CAACI,KAAK,CAAC,CAACzC,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC;IACxD,CAAC,MACI,IAAI,IAAI,CAACqD,cAAc,CAACZ,KAAK,CAAC,EAAE;MACjC;MACA,OAAO,IAAI,CAACrB,KAAK,CAACqB,KAAK,CAAC;IAC5B;IACA,IAAI,OAAOA,KAAK,KAAK,QAAQ,EAAE;MAC3B,IAAI,CAACA,KAAK,EAAE;QACR,OAAO,IAAI;MACf;MACAtB,IAAI,GAAG,IAAI,CAACkB,aAAa,CAACI,KAAK,EAAE1D,MAAM,CAACuE,QAAQ,CAAC,CAACtD,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC;IACzE;IACA,IAAImB,IAAI,IAAI,IAAI,CAACmB,OAAO,CAACnB,IAAI,CAAC,EAAE;MAC5B,OAAO,IAAI,CAACkB,aAAa,CAAClB,IAAI,CAAC,CAACnB,MAAM,CAAC,IAAI,CAACA,MAAM,CAAC;IACvD;IACA,OAAO,KAAK,CAACmD,WAAW,CAACV,KAAK,CAAC;EACnC;EACAY,cAAcA,CAACE,GAAG,EAAE;IAChB,OAAOxE,MAAM,CAACyE,QAAQ,CAACD,GAAG,CAAC;EAC/B;EACAjB,OAAOA,CAACnB,IAAI,EAAE;IACV,OAAO,IAAI,CAACC,KAAK,CAACD,IAAI,CAAC,CAACmB,OAAO,CAAC,CAAC;EACrC;EACAmB,OAAOA,CAAA,EAAG;IACN,OAAO1E,MAAM,CAAC0E,OAAO,CAAC,CAAC;EAC3B;EACAC,OAAOA,CAACvC,IAAI,EAAE;IACV,OAAOA,IAAI,CAACwC,KAAK,CAAC,CAAC;EACvB;EACAC,SAASA,CAACzC,IAAI,EAAE;IACZ,OAAOA,IAAI,CAAC0C,OAAO,CAAC,CAAC;EACzB;EACAC,SAASA,CAAC3C,IAAI,EAAE;IACZ,OAAOA,IAAI,CAAC4C,OAAO,CAAC,CAAC;EACzB;EACAC,OAAOA,CAAC7C,IAAI,EAAEsB,KAAK,EAAE;IACjBtB,IAAI,CAACwC,KAAK,CAAClB,KAAK,CAAC;EACrB;EACAwB,SAASA,CAAC9C,IAAI,EAAEsB,KAAK,EAAE;IACnBtB,IAAI,CAAC0C,OAAO,CAACpB,KAAK,CAAC;EACvB;EACAyB,SAASA,CAAC/C,IAAI,EAAEsB,KAAK,EAAE;IACnBtB,IAAI,CAAC4C,OAAO,CAACtB,KAAK,CAAC;EACvB;EACA;EACAJ,aAAaA,CAAClB,IAAI,EAAER,MAAM,EAAEX,MAAM,EAAE;IAChC,MAAM;MAAEmE,MAAM;MAAE/E;IAAO,CAAC,GAAG,IAAI,CAACU,QAAQ,IAAI,CAAC,CAAC;IAC9C,OAAOV,MAAM,GACPL,MAAM,CAACqF,GAAG,CAACjD,IAAI,EAAER,MAAM,EAAEX,MAAM,EAAEmE,MAAM,CAAC,GACxCpF,MAAM,CAACoC,IAAI,EAAER,MAAM,EAAEX,MAAM,EAAEmE,MAAM,CAAC;EAC9C;AACJ;AACAxE,mBAAmB,CAAC0E,IAAI,GAAG,SAASC,2BAA2BA,CAACC,CAAC,EAAE;EAAE,OAAO,KAAKA,CAAC,IAAI5E,mBAAmB,EAAEb,MAAM,CAAC0F,QAAQ,CAAC/F,eAAe,EAAE,CAAC,CAAC,EAAEK,MAAM,CAAC0F,QAAQ,CAACxF,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAAE,CAAC;AAC3MW,mBAAmB,CAAC8E,KAAK,GAAG,aAAc3F,MAAM,CAAC4F,kBAAkB,CAAC;EAAEC,KAAK,EAAEhF,mBAAmB;EAAET,OAAO,EAAES,mBAAmB,CAAC0E;AAAK,CAAC,CAAC;AACtI;AACA1E,mBAAmB,CAACiF,cAAc,GAAG,MAAM,CACvC;EAAEC,IAAI,EAAEC,MAAM;EAAEC,UAAU,EAAE,CAAC;IAAEF,IAAI,EAAEvG;EAAS,CAAC,EAAE;IAAEuG,IAAI,EAAEtG,MAAM;IAAEyG,IAAI,EAAE,CAACvG,eAAe;EAAG,CAAC;AAAE,CAAC,EAC9F;EAAEoG,IAAI,EAAEI,SAAS;EAAEF,UAAU,EAAE,CAAC;IAAEF,IAAI,EAAEvG;EAAS,CAAC,EAAE;IAAEuG,IAAI,EAAEtG,MAAM;IAAEyG,IAAI,EAAE,CAAChG,mCAAmC;EAAG,CAAC;AAAE,CAAC,CACxH;AACD,CAAC,YAAY;EAAE,CAAC,OAAOkG,SAAS,KAAK,WAAW,IAAIA,SAAS,KAAKpG,MAAM,CAACqG,iBAAiB,CAACxF,mBAAmB,EAAE,CAAC;IACzGkF,IAAI,EAAExG;EACV,CAAC,CAAC,EAAE,YAAY;IAAE,OAAO,CAAC;MAAEwG,IAAI,EAAEC,MAAM;MAAEC,UAAU,EAAE,CAAC;QAC3CF,IAAI,EAAEvG;MACV,CAAC,EAAE;QACCuG,IAAI,EAAEtG,MAAM;QACZyG,IAAI,EAAE,CAACvG,eAAe;MAC1B,CAAC;IAAE,CAAC,EAAE;MAAEoG,IAAI,EAAEI,SAAS;MAAEF,UAAU,EAAE,CAAC;QAClCF,IAAI,EAAEvG;MACV,CAAC,EAAE;QACCuG,IAAI,EAAEtG,MAAM;QACZyG,IAAI,EAAE,CAAChG,mCAAmC;MAC9C,CAAC;IAAE,CAAC,CAAC;EAAE,CAAC,EAAE,IAAI,CAAC;AAAE,CAAC,EAAE,CAAC;;AAEjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMoG,kBAAkB,GAAG,QAAQ;AACnC,MAAMC,sBAAsB,GAAG;EAC3B7C,KAAK,EAAE;IACH8C,SAAS,EAAEF;EACf,CAAC;EACDG,OAAO,EAAE;IACLD,SAAS,EAAEF,kBAAkB;IAC7BI,cAAc,EAAE,UAAU;IAC1BC,aAAa,EAAE,IAAI;IACnBC,kBAAkB,EAAE;EACxB;AACJ,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,mBAAmB,CAAC;AAE1BA,mBAAmB,CAACtB,IAAI,GAAG,SAASuB,2BAA2BA,CAACrB,CAAC,EAAE;EAAE,OAAO,KAAKA,CAAC,IAAIoB,mBAAmB,EAAE,CAAC;AAAE,CAAC;AAC/GA,mBAAmB,CAACE,IAAI,GAAG,aAAc/G,MAAM,CAACgH,gBAAgB,CAAC;EAAEjB,IAAI,EAAEc;AAAoB,CAAC,CAAC;AAC/FA,mBAAmB,CAACI,IAAI,GAAG,aAAcjH,MAAM,CAACkH,gBAAgB,CAAC;EAAEC,SAAS,EAAE,CACtE;IACIC,OAAO,EAAEtH,iBAAiB;IAC1BuH,QAAQ,EAAExG,mBAAmB;IAC7ByG,IAAI,EAAE,CAAC3H,eAAe,EAAEO,mCAAmC;EAC/D,CAAC;AACH,CAAC,CAAC;AACR,CAAC,YAAY;EAAE,CAAC,OAAOkG,SAAS,KAAK,WAAW,IAAIA,SAAS,KAAKpG,MAAM,CAACqG,iBAAiB,CAACQ,mBAAmB,EAAE,CAAC;IACzGd,IAAI,EAAErG,QAAQ;IACdwG,IAAI,EAAE,CAAC;MACCiB,SAAS,EAAE,CACP;QACIC,OAAO,EAAEtH,iBAAiB;QAC1BuH,QAAQ,EAAExG,mBAAmB;QAC7ByG,IAAI,EAAE,CAAC3H,eAAe,EAAEO,mCAAmC;MAC/D,CAAC;IAET,CAAC;EACT,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;AAAE,CAAC,EAAE,CAAC;AACzB,MAAMqH,EAAE,GAAGhB,sBAAsB;AACjC,MAAMiB,kBAAkB,CAAC;AAEzBA,kBAAkB,CAACjC,IAAI,GAAG,SAASkC,0BAA0BA,CAAChC,CAAC,EAAE;EAAE,OAAO,KAAKA,CAAC,IAAI+B,kBAAkB,EAAE,CAAC;AAAE,CAAC;AAC5GA,kBAAkB,CAACT,IAAI,GAAG,aAAc/G,MAAM,CAACgH,gBAAgB,CAAC;EAAEjB,IAAI,EAAEyB;AAAmB,CAAC,CAAC;AAC7FA,kBAAkB,CAACP,IAAI,GAAG,aAAcjH,MAAM,CAACkH,gBAAgB,CAAC;EAAEC,SAAS,EAAE,CAAC;IAAEC,OAAO,EAAErH,oBAAoB;IAAE2H,QAAQ,EAAEH;EAAG,CAAC,CAAC;EAAEI,OAAO,EAAE,CAACd,mBAAmB;AAAE,CAAC,CAAC;AACjK,CAAC,YAAY;EAAE,CAAC,OAAOT,SAAS,KAAK,WAAW,IAAIA,SAAS,KAAKpG,MAAM,CAACqG,iBAAiB,CAACmB,kBAAkB,EAAE,CAAC;IACxGzB,IAAI,EAAErG,QAAQ;IACdwG,IAAI,EAAE,CAAC;MACCyB,OAAO,EAAE,CAACd,mBAAmB,CAAC;MAC9BM,SAAS,EAAE,CAAC;QAAEC,OAAO,EAAErH,oBAAoB;QAAE2H,QAAQ,EAAEH;MAAG,CAAC;IAC/D,CAAC;EACT,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;AAAE,CAAC,EAAE,CAAC;AACzB,CAAC,YAAY;EAAE,CAAC,OAAOK,SAAS,KAAK,WAAW,IAAIA,SAAS,KAAK5H,MAAM,CAAC6H,kBAAkB,CAACL,kBAAkB,EAAE;IAAEG,OAAO,EAAE,CAACd,mBAAmB;EAAE,CAAC,CAAC;AAAE,CAAC,EAAE,CAAC;;AAEzJ;AACA;AACA;;AAEA;AACA;AACA;;AAEA,SAAS3G,mCAAmC,EAAEG,2CAA2C,EAAEkG,sBAAsB,EAAE1F,mBAAmB,EAAE2G,kBAAkB,EAAEX,mBAAmB,EAAEU,EAAE"},"metadata":{},"sourceType":"module"}