From 91893fc2febc531820aed5e7cfee370437b226a2 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Mon, 19 Aug 2019 08:28:00 +0300 Subject: Version 1.4.4.0 base line --- Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c | 2 +- Software/Stubs Collection/stubs/embeddedparametersbuild.cs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c b/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c index 5193ac1c5..399131a93 100644 --- a/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c +++ b/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c @@ -20,7 +20,7 @@ typedef struct } TangoVersion_t; -TangoVersion_t _gTangoVersion = {1,4,3,85}; +TangoVersion_t _gTangoVersion = {1,4,4,0}; #define BUILD_DATE __DATE__ char Dat[50] = BUILD_DATE; char _gTangoName [MAX_STRING_LEN] = "Tango01 ";//d diff --git a/Software/Stubs Collection/stubs/embeddedparametersbuild.cs b/Software/Stubs Collection/stubs/embeddedparametersbuild.cs index ff970f3b2..0cff841cd 100644 --- a/Software/Stubs Collection/stubs/embeddedparametersbuild.cs +++ b/Software/Stubs Collection/stubs/embeddedparametersbuild.cs @@ -84,19 +84,24 @@ configurationParameters.PowerOffTemperatureLimit = 50; //general parameters, ORDER MUST BE PRESERVED!!!! //check the dispensers hard limit alarms Double checkHardLimitAlarms = new Double(); + checkHardLimitAlarms = 1.0; configurationParameters.GeneralParameters.Add(checkHardLimitAlarms); Double checkCurrentAlarms = new Double(); + checkCurrentAlarms = 0.0; configurationParameters.GeneralParameters.Add(checkCurrentAlarms); //check the tamper alarms Double checkTamperAlarms = new Double(); + checkTamperAlarms = 1.0; configurationParameters.GeneralParameters.Add(checkTamperAlarms); Double checkMotorAlarms = new Double(); + checkMotorAlarms = 1.0; configurationParameters.GeneralParameters.Add(checkMotorAlarms); + Double WinderBackToBaseTime = new Double(); WinderBackToBaseTime = 800.0; configurationParameters.GeneralParameters.Add(WinderBackToBaseTime); -- cgit v1.3.1 From 273f22b3f02a22ad8ab8e0566e6d86d653e0e7b4 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Mon, 19 Aug 2019 08:32:55 +0300 Subject: Version 1.4.4.0 base line --- .../Embedded/Common/SWUpdate/FileSystem.c | 4 +- .../Embedded_SW/Embedded/Common/SW_Info/SW_Info.c | 2 +- .../Embedded/Drivers/ADC_Sampling/ADC_VOC_Sensor.c | 5 +- .../Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c | 1 + .../Embedded/Drivers/FPGA/FPGA_SPI_Comm.c | 57 ++++++++++- .../Embedded/Drivers/FPGA/FPGA_SPI_Comm.h | 1 + .../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c | 3 + .../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c | 3 +- .../Embedded_SW/Embedded/Drivers/Motors/Motor.h | 2 + .../Embedded/Drivers/flash_ram/FlashProgram.c | 4 +- .../Embedded/Drivers/flash_ram/MCU_E2Prom.c | 4 +- .../Embedded/Modules/Control/MillisecTask.c | 1 + .../Embedded/Modules/Diagnostics/Diagnostics.c | 104 ++++++++++--------- .../Embedded/Modules/Diagnostics/Diagnostics.h | 10 +- .../Embedded/Modules/General/GeneralHardware.c | 38 +++++-- .../Embedded/Modules/General/MachineStatus.c | 12 ++- .../Embedded/Modules/General/MachineStatus.h | 1 + .../Embedded/Modules/Heaters/Heaters_print.c | 10 +- .../Embedded_SW/Embedded/Modules/IDS/IDS_print.c | 6 +- .../Embedded/Modules/Stubs_Handler/Progress.c | 6 ++ .../Embedded/Modules/Thread/ThreadLoad.c | 3 + .../Embedded/Modules/Thread/Thread_Winder.c | 2 +- .../Embedded/Modules/Thread/Thread_print.c | 2 +- .../Initialization/PowerOffSequence.c | 5 +- .../Embedded/StateMachines/Printing/JobSTM.c | 110 +++++++++++---------- 25 files changed, 265 insertions(+), 131 deletions(-) diff --git a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c index 48e29e54c..4396f6da1 100644 --- a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c +++ b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c @@ -547,10 +547,10 @@ uint32_t GetFilesRequestFunc(MessageContainer* requestContainer) GetFilesResponse response = GET_FILES_RESPONSE__INIT; - #define MAX_NUM_OF_FILES 10 + #define MAX_NUM_OF_FILES 20 DIR dir; FILINFO* fno[MAX_NUM_OF_FILES]; - char FullPath[MAX_NUM_OF_FILES][100]; + char FullPath[MAX_NUM_OF_FILES][60]; int i,NumOfFiles = 0; FRESULT Fresult = FR_OK; diff --git a/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c b/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c index c717bfc8b..399131a93 100644 --- a/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c +++ b/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c @@ -20,7 +20,7 @@ typedef struct } TangoVersion_t; -TangoVersion_t _gTangoVersion = {1,4,3,8}; +TangoVersion_t _gTangoVersion = {1,4,4,0}; #define BUILD_DATE __DATE__ char Dat[50] = BUILD_DATE; char _gTangoName [MAX_STRING_LEN] = "Tango01 ";//d diff --git a/Software/Embedded_SW/Embedded/Drivers/ADC_Sampling/ADC_VOC_Sensor.c b/Software/Embedded_SW/Embedded/Drivers/ADC_Sampling/ADC_VOC_Sensor.c index 07956e80d..7eccf5c58 100644 --- a/Software/Embedded_SW/Embedded/Drivers/ADC_Sampling/ADC_VOC_Sensor.c +++ b/Software/Embedded_SW/Embedded/Drivers/ADC_Sampling/ADC_VOC_Sensor.c @@ -33,7 +33,7 @@ void VOCAlarmsInit(void) void CalculateVOCAlarms(void) { - int i,slope1=0,slope2=0,slopeindex=0; + int i,slope1=0,/*slope2=0,*/slopeindex=0; double a; bool alarmstate = false; for (i = 0; i< MAX_VOC_SAMPLES; i++) @@ -41,7 +41,7 @@ void CalculateVOCAlarms(void) a += Gas_PPM[i]; if(i!=0) { - slope2 = slope1; + //slope2 = slope1; slope1 = Gas_PPM[i]-Gas_PPM[i-1]; if ((slope1>0)&&(slope1 > VOC_Slope)) { @@ -173,6 +173,7 @@ uint8_t Calculate_Gas_Power_Consumption() // WHS CalculateVOCAlarms(); } Report("Calculate_Gas_Power_Consumption",__FILE__,__LINE__,(int)i,RpWarning,VOC_Index,0); + Report("Calculate_Gas_Data Sample,VADC,Vsense",__FILE__,VsampleInBits,(int)VADC,RpWarning,(int)(VSensor*1000),0); return i;//PPM } diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c index ceff20ea8..c16b1f21f 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c @@ -747,6 +747,7 @@ uint32_t SecondaryPumpCallBackFunction(uint32_t IfIndex, uint32_t BusyFlag) else Report("Remove control callback failed",__FILE__,__LINE__,(int)SecondaryPumpControlId,RpWarning,(int)SecondaryPumpCallBackFunction,0); + return OK; } void PumpActivation(uint32_t seconds) diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.c b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.c index 3c9ae591a..e5c92f75e 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.c +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.c @@ -12,6 +12,7 @@ #include "drivers/Heater/TemperatureSensor.h" #include "PMR/Hardware/HardwareMotor.pb-c.h" #include "PMR/Hardware/HardwareDancerType.pb-c.h" +#include extern TempSensorResponseStruct TempSensorResponse[MAX_TEMPERATURE_SENSOR_ID]; #include @@ -577,7 +578,7 @@ uint32_t FPGA_MotorConfig_callback(TimerMotors_t _motorId, uint32_t ReadValue) */ - CM_VM = MotorDriverResponse[_motorId].DriverMode; + CM_VM = MotorDriverResponse[_motorId].DriverMode;// 1<<3 or 0<<3 temp |= (!x_SYNC_EN | CM_VM | good | x_SYNC_SEL_1)<<16; MillisecWriteToMotor(_motorId, temp, 4, FPGA_MotorConfig_callback); break; @@ -1827,3 +1828,57 @@ void Change_Motor_SPI_Direction(TimerMotors_t _motorId, SPI_MOT_DRIVER_DIRECTION F2_Moto_Driver_SPI_DIRECTION1 = F2_SPI_Direction1.ushort; F3_Moto_Driver_SPI_DIRECTION1 = F3_SPI_Direction1.ushort; } + + +extern bool MotorConfigState[NUM_OF_MOTORS]; + +uint32_t Power_Step_01_Mode(TimerMotors_t _motorId, MOTDRIVER_MODE New_Mode) +{ + /* + POWERSTEP01 + 1. need support in machine studio + create new parameters file the (for current and voltage modes) + 2. The default mode is voltage for dispensers and + DH_LID + DRYER_LID and Current for all the rest. + 3. I order to change mode need to: + a. Stop the motor + MotorDriverRequest[_motorId].Stop = Hard_Hiz; + FPGA_SetMotStop(motorId); + b. call the function Combined_Motor_Driver_Mode(motorId, New_Mode)/ Combined_dispenser_Driver_Mode(Disp_ID, New_Mode)// Current or Voltage + c. change the step to MOTOR_CONFIG_INIT and call the function MotorConfig( motorId, &MotorsCfg[motorId]) + d. read the STEP_MODE register and verify that the CM_VM bit 0 for Voltage mode and 1 for current mode + */ + uint32_t status = OK; + uint8_t MicroStepsReg = 0, CM_VM = 0;; + + if((New_Mode != MotorDriverResponse[_motorId].DriverMode) && (MotorDriverResponse[_motorId].DriverType == CombinrdMotDriver)) + { + MotorConfigState[_motorId] = false; + + //Stop the motor + MotorDriverRequest[_motorId].Stop = Hard_Hiz; + FPGA_SetMotStop(_motorId); + + //Change the flag mode + Combined_Motor_Driver_Mode(_motorId, New_Mode); + + //Set the new configuration according to the flag mode + ConfigStages[_motorId] = MOTOR_CONFIG_INIT; + MotorConfig( _motorId, &MotorsCfg[_motorId]); + delayms(50); + //read the CM_VM bit + MotorGetMicroStepsFromFPGA(_motorId); + delayms(5); + MicroStepsReg = MotorGetMicroStepsFromFPGA_Res(_motorId); + + CM_VM = (MicroStepsReg & 0x08); + + if(((New_Mode == Voltage) && (CM_VM != Voltage)) || ((New_Mode == Current) && (CM_VM != Current))) + { + status = ERROR; + } + } + + + return status; + +} + diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h index 366485c95..b84a94b07 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h @@ -43,6 +43,7 @@ extern SPI Fpga_Spi[NUM_OF_MOTORS]; void FPGA_SetGoToPosition(TimerMotors_t _motorId);//GoTo void Change_Motor_SPI_Direction(TimerMotors_t _motorId, SPI_MOT_DRIVER_DIRECTION Spi_Direction); +uint32_t Power_Step_01_Mode(TimerMotors_t _motorId, MOTDRIVER_MODE New_Mode); void FPGA_SetMotPowerStwp01GateCfg(TimerMotors_t _motorId); void FPGA_SetGoToDirPosition(TimerMotors_t _motorId);//GoTo_DIR command diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c b/Software/Embedded_SW/Embedded/Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c index 79ec46b18..00f4d73d6 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c @@ -18,6 +18,9 @@ #include "Modules/Control/MillisecTask.h" #include "Common/SWUpdate/FirmwareUpgrade.h" +#include "heaters/heaters_ex.h" +#include "StateMachines/Initialization/InitSequence.h" + extern short int main_vme(); FPGA_JTAG_GPIO FPGA_JTAG; diff --git a/Software/Embedded_SW/Embedded/Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c b/Software/Embedded_SW/Embedded/Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c index a26813c4a..159ae372e 100644 --- a/Software/Embedded_SW/Embedded/Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c +++ b/Software/Embedded_SW/Embedded/Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c @@ -327,10 +327,11 @@ uint32_t Read_Heaters_Current(HEATERS_CURRENT Heater_ID) //0-8 uint32_t Read_Head_MixChip_Heaters_Current(HEATERS_CURRENT Heater_ID) //0-5 { uint32_t Status = OK; + /* uint32_t I2C_Slave_Add; uint32_t Channel; uint32_t VsampleInBits; - +*/ /* * zone Heater No. Power Current Shunt Resistor I2C ID I2C Address I2C * Dyer_Head zone_1 2 30W 1.25A 0.025 ohm 2 0x40 3 diff --git a/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.h b/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.h index ee64fb9d8..8be217a92 100644 --- a/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.h +++ b/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.h @@ -235,5 +235,7 @@ uint32_t MotorGoTo(TimerMotors_t _motorIdn, uint32_t Steps); void Combined_Motor_Driver_Mode(TimerMotors_t _motorId, MOTDRIVER_MODE New_Mode);// New_mode: Current or Voltage void Combined_dispenser_Driver_Mode(uint8_t Dispenser_ID, MOTDRIVER_MODE New_Mode);// New_mode: Current or Voltage +uint32_t MotorGetMicroStepsFromFPGA_Res(TimerMotors_t _motorId); + void test_Home_Pos(); #endif /* DRIVERS_MOTOR_H_ */ diff --git a/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c b/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c index 3c84ed049..b0b835342 100644 --- a/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c +++ b/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c @@ -5,8 +5,10 @@ * Author: shlomo */ -#include "driverlib/rom.h" +//#include #include "include.h" +#include "driverlib/rom.h" +#include "driverlib/flash.h" #include #include "FlashProgram.h" diff --git a/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c b/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c index f227dcd32..6f9ae4676 100644 --- a/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c +++ b/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c @@ -43,7 +43,7 @@ float MCU_E2PromReadMidtank_A(int MidtankId) float Data; if (MidtankId>=NUM_OF_MIDTANKS) { - Report("MCU_E2PromReadMidtank error",__FILE__,__LINE__,Address,RpWarning,(int)Data,0); + Report("MCU_E2PromReadMidtank error",__FILE__,__LINE__,Address,RpWarning,(int)MidtankId,0); return ERROR; } EEPROMRead((uint32_t *)&Data,Address*4, 4); @@ -57,7 +57,7 @@ float MCU_E2PromReadMidtank_B(int MidtankId) float Data; if (MidtankId>=NUM_OF_MIDTANKS) { - Report("MCU_E2PromReadMidtank error",__FILE__,__LINE__,Address,RpWarning,(int)Data,0); + Report("MCU_E2PromReadMidtank error",__FILE__,__LINE__,Address,RpWarning,(int)MidtankId,0); return ERROR; } EEPROMRead((uint32_t *)&Data,Address*4, 4); diff --git a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c index 07f2f13f7..8e67de0f1 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c @@ -42,6 +42,7 @@ #include "modules/thread/thread_ex.h" #include "modules/ids/ids_ex.h" #include "modules/Diagnostics/Diagnostics.h" +#include "Modules/General/MachineStatus.h" #include "drivers/Flash_Memory/Flash_Memory.h" #include "drivers/Flash_Memory/fatfs/ff.h" diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c index da928e8ae..aaa6f9a50 100644 --- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c +++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c @@ -49,6 +49,8 @@ #include +#include "diagnostics.h" + extern F2_CTRL_REG F2_CTRL_Reg; char DiagnosticsToken[36+1] = {0}; @@ -63,26 +65,17 @@ uint32_t Diagnostics_TenMiliControlTrigger(uint32_t IfIndex, uint32_t ReadValue) uint32_t Diagnostics_OneSecControlTrigger(uint32_t IfIndex, uint32_t ReadValue); uint32_t DispensersCollection(uint32_t IfIndex, uint32_t ReadValue); -//#define REDUCED_DIAGNOSTICS DiagnosticsMonitors DiagnosticsMonitor = DIAGNOSTICS_MONITORS__INIT; #define DIAGNOSTICS_LIMIT 3 #define DIAGNOSTICS_DANCER_LIMIT 30 int DiagnosticsIndex = 0; -#ifdef REDUCED_DIAGNOSTICS -int DiagnosticCollectionLimit = 1; //number of data samples to collect before sending to the host -#else int DiagnosticCollectionLimit = 2; //number of data samples to collect before sending to the host -#endif //int DiagnosticLimit = eHundredMillisecond; //frequency of data collection //int DiagnosticFastLimit = eTenMillisecond; //frequency of data collection -#ifdef REDUCED_DIAGNOSTICS -int DiagnosticLimit =eOneSecond; //frequency of data collection -#else int DiagnosticLimit =eHundredMillisecond; //frequency of data collection -#endif + int DiagnosticFastLimit = eTenMillisecond; //frequency of data collection -//#define TEN_MSEC_COLLECTION //DigitalPin DigitalPinArray[1][DIAGNOSTICS_LIMIT+1]; double dancer1angle[DIAGNOSTICS_LIMIT+1]; double dancer2angle[DIAGNOSTICS_LIMIT+1]; @@ -109,6 +102,7 @@ double dispensermotorfrequency[MAX_SYSTEM_DISPENSERS][DIAGNOSTICS_LIMIT+1]; double dispenserspressure[MAX_SYSTEM_DISPENSERS][DIAGNOSTICS_LIMIT+1]; double MidTankpressure[MAX_SYSTEM_DISPENSERS][1]; double HeatersCurrent[NUM_OF_CURRENT_HEATERS][1]; +double VOC_Sensor; DoubleArray DispenserFreq[MAX_SYSTEM_DISPENSERS]; DoubleArray DiagnosticsDispenserPressure[MAX_SYSTEM_DISPENSERS]; @@ -154,6 +148,8 @@ int diag_index=0; uint32_t diag_size[MAX_DIAG_LOG]; uint32_t diag_time[MAX_DIAG_LOG]; +Diagnostic_Mode DiagnosticMode = Diagnostic_Normal_Mode; + /******************** CODE ********************************************/ //********************************************************************** @@ -192,14 +188,35 @@ void DiagnosticsInit(void) return; } +/*typedef enum +{ + Diagnostic_Minimal_Mode, + Diagnostic_Normal_Mode, + Diagnostic_Extended_Mode, + Diagnostic_Extreme_Mode +}Diagnostic_Mode; +if (DiagnosticMode == Diagnostic_Minimal_Mode) +if (DiagnosticMode == Diagnostic_Normal_Mode) +if (DiagnosticMode == Diagnostic_Extended_Mode) +if (DiagnosticMode == Diagnostic_Extreme_Mode) +*/ +void SetDiagnosticMode(Diagnostic_Mode Mode) +{ + DiagnosticMode = Mode; + REPORT_MSG(Mode,"Diagnostic Mode set"); +} void SetDiagnosticCollectionLimit(int limit) { if ((limit)&&(limit<= DIAGNOSTICS_LIMIT)) DiagnosticCollectionLimit = limit; -#ifdef REDUCED_DIAGNOSTICS + DiagnosticLimit =eHundredMillisecond; //frequency of data collection + + if (DiagnosticMode <= Diagnostic_Normal_Mode) + { DiagnosticCollectionLimit = 1; //overrule - send at least once every second -#endif + DiagnosticLimit =eOneSecond; //frequency of data collection + } } uint8_t HeaterCounterIndex[MAX_HEATERS_NUM]= {0,0,0,0,0,0,0,0,0,0}; @@ -340,7 +357,6 @@ void DiagnosticTenMsecCollection(void) { if (DiagnosticsActive == false) return; -//#ifdef TEN_MSEC_COLLECTION /*if (JobIsActive()== false) return;*/ DiagnosticLoadDancer(WINDER_DANCER,Control_Read_Dancer_Position(WINDER_DANCER, 0,0)); @@ -352,7 +368,6 @@ void DiagnosticTenMsecCollection(void) DiagnosticLoadDancerError(FEEDER_DANCER,ThreadGetMotorCalculatedError(FEEDER_DANCER)); //DiagnosticLoadSpeedSensor(getSensorSpeedData()); -//#endif } void DiagnosticOneSecCollection(void) { @@ -388,19 +403,20 @@ void Diagnostic100msecCollection(void) return; //DiagnosticLoadSpeedSensor(getSensorSpeedData()); -#ifndef REDUCED_DIAGNOSTICS -#ifndef TEN_MSEC_COLLECTION - DiagnosticTenMsecCollection(); //call the 10msec function every 100 msec to reduce transport -#endif - //if (JobIsActive()) + if (DiagnosticMode == Diagnostic_Extreme_Mode) + DiagnosticTenMsecCollection(); //call the 10msec function every 100 msec to reduce transport + + if (DiagnosticMode >= Diagnostic_Extended_Mode) { - DiagnosticLoadMotor(FEEDER_MOTOR, ThreadGetMotorSpeed (FEEDER_MOTOR)); - DiagnosticLoadMotor(DRYER_MOTOR, ThreadGetMotorSpeed (DRYER_MOTOR)); - DiagnosticLoadMotor(POOLER_MOTOR, ThreadGetMotorSpeed (POOLER_MOTOR)); - DiagnosticLoadMotor(WINDER_MOTOR, ThreadGetMotorSpeed (WINDER_MOTOR)); - DiagnosticLoadMotor(SCREW_MOTOR, ThreadGetMotorSpeed (SCREW_MOTOR)); + if (JobIsActive()) + { + DiagnosticLoadMotor(FEEDER_MOTOR, ThreadGetMotorSpeed (FEEDER_MOTOR)); + DiagnosticLoadMotor(DRYER_MOTOR, ThreadGetMotorSpeed (DRYER_MOTOR)); + DiagnosticLoadMotor(POOLER_MOTOR, ThreadGetMotorSpeed (POOLER_MOTOR)); + DiagnosticLoadMotor(WINDER_MOTOR, ThreadGetMotorSpeed (WINDER_MOTOR)); + DiagnosticLoadMotor(SCREW_MOTOR, ThreadGetMotorSpeed (SCREW_MOTOR)); + } } -#endif /* DiagnosticLoadTemperature(HARDWARE_PID_CONTROL_TYPE__MixerHeater, MillisecGetTemperatures( MIXER_PT100)); DiagnosticLoadTemperature(HARDWARE_PID_CONTROL_TYPE__HeadHeaterZ1, MillisecGetTemperatures(TEMP_SENSE_ANALOG_DYEINGH_TEMP1)); @@ -425,13 +441,14 @@ void Diagnostic100msecCollection(void) MidTankpressure[i][0] = 1.00-(IDS_Dispenser_Data[i].consumedinnanolitter/5800000); } */ -#ifndef REDUCED_DIAGNOSTICS - for (i=0;i= Diagnostic_Extended_Mode)) { DiagnosticsMonitor.n_dancer1angle = DancerCounterIndex[0]; DiagnosticsMonitor.n_dancer2angle = DancerCounterIndex[1]; @@ -538,7 +554,6 @@ void SendDiagnostics(void) DiagnosticsMonitor.n_windermotor = MotorCounterIndex[WINDER_MOTOR]; DiagnosticsMonitor.n_screwmotor = MotorCounterIndex[SCREW_MOTOR]; } -#endif DiagnosticsMonitor.mixertemperature = HeaterTemperature[HARDWARE_PID_CONTROL_TYPE__MixerHeater]; DiagnosticsMonitor.headzone1temperature = HeaterTemperature[HARDWARE_PID_CONTROL_TYPE__HeadHeaterZ1]; DiagnosticsMonitor.headzone2temperature = HeaterTemperature[HARDWARE_PID_CONTROL_TYPE__HeadHeaterZ2]; @@ -654,6 +669,10 @@ void SendDiagnostics(void) DiagnosticsMonitor.n_headzone5_6heatercurrent = 1; DiagnosticsMonitor.headzone5_6heatercurrent = HeatersCurrent[HEATER_HEAD_CURRENT_ZONE_5_6]; + VOC_Sensor = (double) getGasReading(); + DiagnosticsMonitor.n_filterdeltapressure = 1; + DiagnosticsMonitor.filterdeltapressure = &VOC_Sensor; + response.monitors = &DiagnosticsMonitor; //response.digitalpins = DigitalPinArray; response.n_componentsstates = 0; @@ -734,12 +753,10 @@ uint32_t DiagnosticsStart(void) DiagnosticsControlId = AddControlCallback(Diagnostics_ControlTrigger,DiagnosticLimit,TemplateDataReadCBFunction,0,0,0); else LOG_ERROR(DiagnosticsControlId,"Diagnostics restarted"); -#ifdef TEN_MSEC_COLLECTION if (Diagnostics10MSControlId == 0xFF) Diagnostics10MSControlId = AddControlCallback(Diagnostics_TenMiliControlTrigger,DiagnosticFastLimit,TemplateDataReadCBFunction,0,0,0); else LOG_ERROR(DiagnosticsControlId,"Diagnostics restarted"); -#endif if (Diagnostics1SecControlId == 0xFF) Diagnostics1SecControlId = AddControlCallback(Diagnostics_OneSecControlTrigger,eOneSecond,TemplateDataReadCBFunction,0,0,0); else @@ -823,13 +840,14 @@ uint32_t Diagnostics_TenMiliControlTrigger(uint32_t IfIndex, uint32_t ReadValue) { DiagnosticsMessageStruc Message; - //send message to the Millisec task - Message.messageId = DiagnosticsTenMiliTrigger; - Message.msglen = sizeof(DiagnosticsMessageStruc); - if (DiagnosticsMsgQ != NULL) - Mailbox_post(DiagnosticsMsgQ , &Message, BIOS_NO_WAIT); - - + if (DiagnosticMode == Diagnostic_Extreme_Mode) + { + //send message to the Millisec task + Message.messageId = DiagnosticsTenMiliTrigger; + Message.msglen = sizeof(DiagnosticsMessageStruc); + if (DiagnosticsMsgQ != NULL) + Mailbox_post(DiagnosticsMsgQ , &Message, BIOS_NO_WAIT); + } return OK; } @@ -869,9 +887,7 @@ void DiagnosticsTask(UArg arg0, UArg arg1) Diagnostic100msecCollection(); break; case DiagnosticsTenMiliTrigger: -#ifdef TEN_MSEC_COLLECTION DiagnosticTenMsecCollection(); -#endif break; case DiagnosticsOneSecTrigger: DiagnosticOneSecCollection(); diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h index a68731eea..d6d515598 100644 --- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h +++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h @@ -12,9 +12,17 @@ extern bool blowervolatgedisplay; extern bool midtankDisplay; extern double voltage; -extern uint8_t* diagnosticscontainer_buffer; +extern char* diagnosticscontainer_buffer; +typedef enum +{ + Diagnostic_Minimal_Mode, + Diagnostic_Normal_Mode, + Diagnostic_Extended_Mode, + Diagnostic_Extreme_Mode +}Diagnostic_Mode; +void SetDiagnosticMode(Diagnostic_Mode Mode); uint32_t StartDiagnosticsRequestFunc(MessageContainer* requestContainer); uint32_t StopDiagnosticsRequestFunc(MessageContainer* requestContainer); diff --git a/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c b/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c index f5e33ed14..5a706e25c 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c +++ b/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c @@ -185,6 +185,7 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) EmbeddedParameters->dispenserpresegmentwfcf = 80; EmbeddedParameters->has_startheatingoninitsequence = true; EmbeddedParameters->startheatingoninitsequence = true; //set to true shlomo 14/5/2019 + EmbeddedParameters->n_generalparameters = 7; EmbeddedParameters->generalparameters = malloc (sizeof(double)*10); if (EmbeddedParameters->generalparameters) { @@ -194,6 +195,7 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) EmbeddedParameters->generalparameters[3] = 0.0; //CheckMotorAlarms EmbeddedParameters->generalparameters[4] = 800.0; //Winder homing time at end of job EmbeddedParameters->generalparameters[5] = 1000.0; //Dispenser initial pressure speed + EmbeddedParameters->generalparameters[6] = Diagnostic_Normal_Mode; //Diagnostic Mode SetDiagnosticMode } EmbeddedParameters->has_currentalarmlowlimit = true; EmbeddedParameters->currentalarmlowlimit = 0.80; @@ -270,8 +272,15 @@ uint32_t EmbeddedParametersInit(void) } } + if (EmbeddedParameters->n_generalparameters >= 6) + { + IDS_Dispenser_SetBackLashValues(EmbeddedParameters->initialdispenserpressure, EmbeddedParameters->initialdispensertimeout, EmbeddedParameters->initialdispensertimelag,EmbeddedParameters->generalparameters[5]); + } + else + { + IDS_Dispenser_SetBackLashValues(EmbeddedParameters->initialdispenserpressure, EmbeddedParameters->initialdispensertimeout, EmbeddedParameters->initialdispensertimelag,900); + } IDS_Dispenser_SetTimeOutValues(EmbeddedParameters->closevalvetimeout, EmbeddedParameters->openvalvetimeout); - IDS_Dispenser_SetBackLashValues(EmbeddedParameters->initialdispenserpressure, EmbeddedParameters->initialdispensertimeout, EmbeddedParameters->initialdispensertimelag,EmbeddedParameters->generalparameters[5]); IDS_Dispenser_SetPrepareValues(EmbeddedParameters->dispenserbuildpressurespeed, EmbeddedParameters->dispenserbuildpressurelimit, EmbeddedParameters->dispenserbuildpressuretimeout, EmbeddedParameters->dispenserbuildpressurelag); IDS_Dispenser_SetPreSegmentWFCFValues(EmbeddedParameters->dispenserpresegmentwfcf, EmbeddedParameters->ids_presegment_wfcf_timebeforesegment); IDS_Dispenser_SetPreSegmentCleaningValues(EmbeddedParameters->ids_cleaningspeed,EmbeddedParameters->ids_cleaningstartspraypresegmenttime ,EmbeddedParameters->ids_cleaningstopbeforesegmenttime,EmbeddedParameters->ids_leftcleaningmotorspeed,EmbeddedParameters->ids_rightcleaningmotorspeed); @@ -284,15 +293,24 @@ uint32_t EmbeddedParametersInit(void) PowerOffSetTemperatureThreshold(EmbeddedParameters->powerofftemperaturelimit); InitSequenceSetStartHeating (EmbeddedParameters->startheatingoninitsequence); - bool checkHardLimitAlarms, checkCurrentAlarms, checkTamperAlarms, checkMotorAlarms; - checkHardLimitAlarms = (EmbeddedParameters->generalparameters[0] < 0.5)?false:true; - checkCurrentAlarms = (EmbeddedParameters->generalparameters[1] < 0.5)?false:true; - checkTamperAlarms = (EmbeddedParameters->generalparameters[2] < 0.5)?false:true; - checkMotorAlarms = (EmbeddedParameters->generalparameters[3] < 0.5)?false:true; - AlarmHandlingSetFlags(checkHardLimitAlarms,checkCurrentAlarms,checkTamperAlarms,checkMotorAlarms); - SetWinderBackToBaseTime((uint32_t) EmbeddedParameters->generalparameters[4]); - - + bool checkHardLimitAlarms = false, checkCurrentAlarms = false, checkTamperAlarms = false, checkMotorAlarms = false; + if (EmbeddedParameters->n_generalparameters >= 4) + { + checkHardLimitAlarms = (EmbeddedParameters->generalparameters[0] < 0.5)?false:true; + checkCurrentAlarms = (EmbeddedParameters->generalparameters[1] < 0.5)?false:true; + checkTamperAlarms = (EmbeddedParameters->generalparameters[2] < 0.5)?false:true; + checkMotorAlarms = (EmbeddedParameters->generalparameters[3] < 0.5)?false:true; + AlarmHandlingSetFlags(checkHardLimitAlarms,checkCurrentAlarms,checkTamperAlarms,checkMotorAlarms); + } + if (EmbeddedParameters->n_generalparameters >= 5) + SetWinderBackToBaseTime((uint32_t) EmbeddedParameters->generalparameters[4]); + if (EmbeddedParameters->n_generalparameters >= 7) + { + if(EmbeddedParameters->generalparameters[6]<0.5) SetDiagnosticMode(Diagnostic_Minimal_Mode); + else if(EmbeddedParameters->generalparameters[6]<1.5) SetDiagnosticMode(Diagnostic_Normal_Mode); + else if(EmbeddedParameters->generalparameters[6]<2.5) SetDiagnosticMode(Diagnostic_Extended_Mode); + else if(EmbeddedParameters->generalparameters[6]<3.5) SetDiagnosticMode(Diagnostic_Extreme_Mode); + } PowerIdleSetParameters(EmbeddedParameters->switchtoidletimeinseconds,EmbeddedParameters->idledriertemperature,EmbeddedParameters->idleheadtemperature,EmbeddedParameters->idlemixertemperature); return Fresult; diff --git a/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.c b/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.c index 56f88a040..7949ee0c2 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.c +++ b/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.c @@ -19,6 +19,10 @@ #include "PMR/MachineStatus/MachineState.pb-c.h" #include "PMR/MachineStatus/IDSPackLevel.pb-c.h" +#include "drivers/I2C_Communication/ADC_MUX/ADC_MUX.h" + +#include "Modules/General/MachineStatus.h" + #include "modules/ids/ids_ex.h" MachineState StoredMachineStatus = MACHINE_STATE__Ready; @@ -103,6 +107,10 @@ uint32_t MachineUpdateInitFunc(MessageContainer* requestContainer) start_machine_status_update_request__free_unpacked(request,NULL); return status; } +void MachineUpdateStopReporting(void) +{ + MachineUpdateToken[0] = 0; +} uint32_t StopMachineUpdateFunc(MessageContainer* requestContainer) { @@ -125,8 +133,4 @@ uint32_t StopMachineUpdateFunc(MessageContainer* requestContainer) return OK; } -void MachineUpdateStopReporting(void) -{ - MachineUpdateToken[0] = 0; -} diff --git a/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.h b/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.h index 7530c5bcd..489a8f638 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.h +++ b/Software/Embedded_SW/Embedded/Modules/General/MachineStatus.h @@ -13,6 +13,7 @@ uint32_t MachineUpdateInitFunc(MessageContainer* requestContainer); uint32_t StopMachineUpdateFunc(MessageContainer* requestContainer); void SetMachineStatus (MachineState State); +int MachineUpdateResponseFunc(void); diff --git a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c index 4789db31f..050bb65b8 100644 --- a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c +++ b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c @@ -196,11 +196,11 @@ void HeatersControlStop(void) //{eOneSecond,ALARM_SOURCE_TYPE__TemperatureAlarm,TEMP_SENSE_AN_ENCLOSURETEMP1, 0,40,true,DEBUG_LOG_CATEGORY__Warning,0xFF,0,EVENT_TYPE__MACHINE_INTERNAL_OVERTEMPERATURE }, //{eOneSecond,ALARM_SOURCE_TYPE__TemperatureAlarm,TEMP_SENSE_AN_ENCLOSURETEMP2, 1,40,true,DEBUG_LOG_CATEGORY__Warning,0xFF,0,EVENT_TYPE__MACHINE_INTERNAL_OVERTEMPERATURE }, typedef enum{ - ENCLOSURE_INTERNAL_TEMP, - CABINET_INTERNAL_TEMP, - MAIN_CARD_INTERNAL_TEMP, + INTERNAL_ENCLOSURE_TEMP, + INTERNAL_CABINET_TEMP, + INTERNAL_MAIN_CARD_TEMP, MAX_INTERNAL_ALARMS -}; +}InternalTemperatureTestPointsEnum; int InternalAlarmCounter[MAX_INTERNAL_ALARMS] = {0,0,0}; uint32_t InternalId2PT100Id[MAX_INTERNAL_ALARMS] = {TEMP_SENSE_AN_ENCLOSURETEMP1,TEMP_SENSE_AN_ENCLOSURETEMP1,0xFF}; int32_t InternalOverHeatCounter [MAX_INTERNAL_ALARMS] = {0,0,0}; @@ -557,7 +557,7 @@ void PrepareACHeater(int HeaterId,uint32_t Frequency, uint32_t SetTemperatue) HeaterCmd[HeaterId].targettemperatue = 0; AlarmHandlingSetAlarm(HeaterEventType[HeaterId], true); - return ERROR; + return; } } diff --git a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c index 4f60cfa14..0de3fa1f3 100644 --- a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c +++ b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c @@ -649,7 +649,7 @@ c. Go to step 2.a x Segment.BrushStopsCount. IDS_Active = true; Valve_Set(VALVE_MIXCHIP_WASTECH, Mixer_Waste); - JobTicket* JobTicket = JobDetails; + //JobTicket* JobTicket = JobDetails; for (Motor_i = 0;Motor_i < MAX_SYSTEM_DISPENSERS;Motor_i++) @@ -814,7 +814,7 @@ c. Go to step 2.a x Segment.BrushStopsCount. Report("IDS_PreSegmentPrepare_Callback SafeRemoveControlCallback",__FILE__,DispenserPrepareControlId,InterSegmentStepsCount,RpWarning,(int)NumOfActiveDispensers,0); SafeRemoveControlCallback(DispenserPrepareControlId, IDS_Prepare_Callback ); DispenserPrepareControlId = 0xFF; - + PreSegmentWCFStarted = true; setRapidPressureRead(false); } return OK; @@ -979,7 +979,7 @@ uint32_t IDS_Cleaning_Stop_Cleaning_Solution (callback_fptr callback); //IDS_Cleaning_Center_And_Stop_Rockers (int timeout,callback_fptr callback); } } - if ((InterSegmentStartWFCFDispensers > 10000)&&(InterSegmentStartWFCFDispensers == (InterSegmentStepsCount+10000))) + if ((InterSegmentStartWFCFDispensers > 12000)&&(InterSegmentStartWFCFDispensers == (InterSegmentStepsCount+12000))) { //start prepare 4 seconds before wcf IDSPresegmentPrepareStart(); diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 153ab0e43..b47c49cc0 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -37,6 +37,12 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) response.has_progress = true; } else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) { response.progress = Calculate_Pitot_Pressure(true); diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c b/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c index 7d4b66dfb..1f9897905 100644 --- a/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c +++ b/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c @@ -17,6 +17,9 @@ #include "Modules/General/process.h" #include "Modules/control/pidalgo.h" +#include "Modules/heaters/heaters_ex.h" +#include "StateMachines/Initialization/InitSequence.h" + #include "PMR/Hardware/HardwareMotor.pb-c.h" #include "PMR/Hardware/HardwareMotorType.pb-c.h" #include "PMR/Hardware/HardwareDancerType.pb-c.h" diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c index c5e124ad3..e01d12a05 100644 --- a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c +++ b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c @@ -282,7 +282,7 @@ uint32_t Screw100msecDirectionChange(uint32_t deviceID, uint32_t BusyFlag) double temp,tempScrewSpeed; double screw_horizontal_speed = 0; double RotationsPerSecond; - double Averagewinderspeed = 0; + //double Averagewinderspeed = 0; // { // TotalWinderSpeed-=WinderMotorSpeed[WinderMotorSpeedCounter]; diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c index 9e77f2de8..59542ec38 100644 --- a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c +++ b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c @@ -451,7 +451,7 @@ uint32_t ThreadControlCBFunction(uint32_t IfIndex, uint32_t ReadValue) //read value is the dancer angle int i,index=MAX_THREAD_MOTORS_NUM; int DancerId; - int32_t TranslatedReadValue, avreageSampleValue = 0,avreageMotorSampleValue = 0; + int32_t TranslatedReadValue, avreageSampleValue = 0;//,avreageMotorSampleValue = 0; //double tempcalcspeed = 0; double calculated_speed; double NormalizedError; diff --git a/Software/Embedded_SW/Embedded/StateMachines/Initialization/PowerOffSequence.c b/Software/Embedded_SW/Embedded/StateMachines/Initialization/PowerOffSequence.c index 73421f142..3e2fe32be 100644 --- a/Software/Embedded_SW/Embedded/StateMachines/Initialization/PowerOffSequence.c +++ b/Software/Embedded_SW/Embedded/StateMachines/Initialization/PowerOffSequence.c @@ -119,8 +119,6 @@ uint32_t PowerOffHeadCleanCallback(uint32_t DispenserId, uint32_t ReadValue) /*******************************************************************************************************/ uint32_t PowerOffHeadClean(void) { - uint32_t status; - //TBD ThreadCleaningJobFunc(50); if (PowerOffHeadCleanControlId != 0xFF) @@ -141,6 +139,8 @@ uint32_t PowerOffDispenserHomingCallback(uint32_t DispenserId, uint32_t ReadValu { DispenserHomingActive[DispenserId] = false; REPORT_MSG (DispenserId, "PowerOffDispenserHomingCallback"); + + return OK; } #define TI_DISPENSER_ID 4 #define DEFAULT_MIXER_CLEANING_SPEED 1000 @@ -174,6 +174,7 @@ uint32_t PowerOffMixerFlushDispenserStopCallback(void) REPORT_MSG (PowerOffMachineState, "PowerOffMixerFlushDispenserStopCallback"); IDS_Dispenser_Start_Motor_and_Open_Valve(TI_DISPENSER_ID,DEFAULT_MIXER_CLEANING_SPEED,NULL); PowerOffHeadCleanControlId = AddControlCallback( PowerOffMixerFlushCallback,DEFAULT_MIXER_CLEANING_TIMEOUT , TemplateDataReadCBFunction,0,0, 0 ); + return OK; } /*******************************************************************************************************/ uint32_t PowerOffMixerFlush(void) diff --git a/Software/Embedded_SW/Embedded/StateMachines/Printing/JobSTM.c b/Software/Embedded_SW/Embedded/StateMachines/Printing/JobSTM.c index af795d91c..3720b884a 100644 --- a/Software/Embedded_SW/Embedded/StateMachines/Printing/JobSTM.c +++ b/Software/Embedded_SW/Embedded/StateMachines/Printing/JobSTM.c @@ -61,6 +61,8 @@ #include "StateMachines/Initialization/PowerIdle.h" +#include "drivers/Motors/Motor.h" + #include "./printingSTM.h" #include "modules/thread/thread_ex.h" #include "modules/AlarmHandling/AlarmHandling.h" @@ -418,60 +420,68 @@ uint32_t ThreadCleaningJobFunc(int speed) } else { - memcpy(&CopyConfigured,&Configured,sizeof(CopyConfigured)); - //set the job handler to ignore heaters, ids and waste in the state machine - Configured[Module_Thread] = true; - Configured[Module_Winder] = true; - Configured[Module_IDS] = false; - Configured[Module_Heaters] = false; - Configured[Module_Waste] = false; - //set the requested speed without changing other process parameters - memcpy (&ProcessParametersCopy,&ProcessParametersKeep,sizeof(ProcessParameters)); - if(speed) - ProcessParametersCopy.dyeingspeed = speed; - else - ProcessParametersCopy.dyeingspeed = 40; - if (HandleProcessParameters(&ProcessParametersCopy)!= OK) + if (isMotorConfigured(CLEANER_DISPENSER + HARDWARE_MOTOR_TYPE__MOTO_DISPENSER_1)==false) { - status = FAILED; + status = ERROR; + LOG_ERROR(JobIsActive(),"Jog No cleaner dispenser"); } else { - //load essential job prameters to enable thread running - Ticket.uploadstrategy = JOB_UPLOAD_STRATEGY__Default; - Ticket.n_segments = 1; - Ticket.enableintersegment = true; - Ticket.intersegmentlength = 200; - n_segments = 2; - Ticket.segments = my_malloc(sizeof(Ticket.segments)*2); - TSegment = my_malloc(sizeof(JobSegment)); - Tspool = my_malloc(sizeof(JobSpool)); - TbrushStop = my_malloc(sizeof(JobBrushStop)); - TSegment->length = 200.0; - TSegment->n_brushstops = 1; - TSegment->brushstops = my_malloc(sizeof(TSegment->brushstops)); - TSegment->brushstops[0] = TbrushStop; - Tdispenser = my_malloc(sizeof(JobDispenser)); - - TbrushStop->has_index =true; - TbrushStop->index = 0; - TbrushStop->n_dispensers = 1; - TbrushStop->dispensers = my_malloc(sizeof(TbrushStop->dispensers)); - TbrushStop->dispensers[0] = Tdispenser; - Tdispenser->nanolitterpersecond = 10000; - Tdispenser->nanoliterperpulse = 2.34; - Tdispenser->dispenserstepdivision = DISPENSER_STEP_DIVISION__Auto; - Ticket.segments[0] = TSegment; - Ticket.segments[1] = TSegment; - Tspool->backingrate = 32; - Tspool->bottombackingrate = 32; - Tspool->segmentoffsetpulses = 1000; - Tspool->startoffsetpulses = 220; - Tspool->rotationsperpassage = 3.1415926*2; - Ticket.spool = Tspool; - CurrentJob = &Ticket; - InternalWindingConfigMessage(Tspool); - StartJob(&Ticket); + memcpy(&CopyConfigured,&Configured,sizeof(CopyConfigured)); + //set the job handler to ignore heaters, ids and waste in the state machine + Configured[Module_Thread] = true; + Configured[Module_Winder] = true; + Configured[Module_IDS] = false; + Configured[Module_Heaters] = false; + Configured[Module_Waste] = false; + //set the requested speed without changing other process parameters + memcpy (&ProcessParametersCopy,&ProcessParametersKeep,sizeof(ProcessParameters)); + if(speed) + ProcessParametersCopy.dyeingspeed = speed; + else + ProcessParametersCopy.dyeingspeed = 40; + if (HandleProcessParameters(&ProcessParametersCopy)!= OK) + { + status = FAILED; + } + else + { + //load essential job prameters to enable thread running + Ticket.uploadstrategy = JOB_UPLOAD_STRATEGY__Default; + Ticket.n_segments = 1; + Ticket.enableintersegment = true; + Ticket.intersegmentlength = 200; + n_segments = 2; + Ticket.segments = my_malloc(sizeof(Ticket.segments)*2); + TSegment = my_malloc(sizeof(JobSegment)); + Tspool = my_malloc(sizeof(JobSpool)); + TbrushStop = my_malloc(sizeof(JobBrushStop)); + TSegment->length = 200.0; + TSegment->n_brushstops = 1; + TSegment->brushstops = my_malloc(sizeof(TSegment->brushstops)); + TSegment->brushstops[0] = TbrushStop; + Tdispenser = my_malloc(sizeof(JobDispenser)); + + TbrushStop->has_index =true; + TbrushStop->index = 0; + TbrushStop->n_dispensers = 1; + TbrushStop->dispensers = my_malloc(sizeof(TbrushStop->dispensers)); + TbrushStop->dispensers[0] = Tdispenser; + Tdispenser->nanolitterpersecond = 10000; + Tdispenser->nanoliterperpulse = 2.34; + Tdispenser->dispenserstepdivision = DISPENSER_STEP_DIVISION__Auto; + Ticket.segments[0] = TSegment; + Ticket.segments[1] = TSegment; + Tspool->backingrate = 32; + Tspool->bottombackingrate = 32; + Tspool->segmentoffsetpulses = 1000; + Tspool->startoffsetpulses = 220; + Tspool->rotationsperpassage = 3.1415926*2; + Ticket.spool = Tspool; + CurrentJob = &Ticket; + InternalWindingConfigMessage(Tspool); + StartJob(&Ticket); + } } } return status; -- cgit v1.3.1 From 6ef1da888e2fee2c1c6373c894bfb6861cc3d526 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Mon, 19 Aug 2019 16:16:24 +0300 Subject: fix microstep and prepare for motor type change --- .../Embedded/Drivers/FPGA/FPGA_SPI_Comm.h | 1 + .../Embedded_SW/Embedded/Drivers/Motors/Motor.c | 2 +- .../Embedded_SW/Embedded/Modules/General/process.c | 22 +++++++++----- .../Embedded/Modules/IDS/IDS_dispenser.c | 20 +------------ .../Embedded_SW/Embedded/Modules/IDS/IDS_maint.c | 34 ++++++++++++++++------ .../stubs/file read from machine.cs | 7 +++-- 6 files changed, 47 insertions(+), 39 deletions(-) diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h index b84a94b07..0f6e60796 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_SPI_Comm.h @@ -48,4 +48,5 @@ uint32_t Power_Step_01_Mode(TimerMotors_t _motorId, MOTDRIVER_MODE New_Mode); void FPGA_SetMotPowerStwp01GateCfg(TimerMotors_t _motorId); void FPGA_SetGoToDirPosition(TimerMotors_t _motorId);//GoTo_DIR command +extern bool Extended_Motor_Param; diff --git a/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.c b/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.c index d8ba1f045..5e972dec6 100644 --- a/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.c +++ b/Software/Embedded_SW/Embedded/Drivers/Motors/Motor.c @@ -529,7 +529,7 @@ void Combined_dispenser_Driver_Mode(uint8_t Dispenser_ID, MOTDRIVER_MODE New_Mod { assert(Dispenser_ID < MAX_DISPENSER_NUM); - Combined_Motor_Driver_Mode(Dispenser_ID + 5, New_Mode);//dispenser ID -> motor id + Combined_Motor_Driver_Mode(Dispenser_ID + HARDWARE_MOTOR_TYPE__MOTO_DISPENSER_1, New_Mode);//dispenser ID -> motor id } void test_Home_Pos() diff --git a/Software/Embedded_SW/Embedded/Modules/General/process.c b/Software/Embedded_SW/Embedded/Modules/General/process.c index 39e87ed6a..d62d117a0 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/process.c +++ b/Software/Embedded_SW/Embedded/Modules/General/process.c @@ -258,14 +258,22 @@ uint32_t LoadProcessParamsFromFile(void) UploadProcessParametersRequest* request = upload_process_parameters_request__unpack(NULL, Bytes, buffer); ProcessParameters* ProcessParams = request->processparameters; - if ((ProcessParams->dryerzone1temp > 0.1)&&(ProcessParams->headzone2temp > 0.1)&&(ProcessParams->headzone3temp > 0.1)&&(ProcessParams->headzone4temp > 0.1))//NOT turning off heaters + if ((request!= NULL)&&(ProcessParams!=NULL)) { - Bytes = sizeof(ProcessParameters); - EraseFlashSection(PROCESS_PARAMETERS_MAP_IN_FLASH,Bytes+4); - ReadAppAndProgram(PROCESS_PARAMETERS_MAP_IN_FLASH, 4,&Bytes); - ReadAppAndProgram(PROCESS_PARAMETERS_MAP_IN_FLASH+4, Bytes, ProcessParams); - REPORT_MSG(Bytes,"ProcessParameters Bytes write to flash"); - free (buffer); + if ((ProcessParams->dryerzone1temp > 0.1)&&(ProcessParams->headzone2temp > 0.1)&&(ProcessParams->headzone3temp > 0.1)&&(ProcessParams->headzone4temp > 0.1))//NOT turning off heaters + { + Bytes = sizeof(ProcessParameters); + EraseFlashSection(PROCESS_PARAMETERS_MAP_IN_FLASH,Bytes+4); + ReadAppAndProgram(PROCESS_PARAMETERS_MAP_IN_FLASH, 4,&Bytes); + ReadAppAndProgram(PROCESS_PARAMETERS_MAP_IN_FLASH+4, Bytes, ProcessParams); + REPORT_MSG(Bytes,"ProcessParameters Bytes write to flash"); + free (buffer); + } + } + else + { + Report("process parameters not loaded",__FILE__,__LINE__,(int)request,RpWarning,(int)request,0); + return ERROR; } } diff --git a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c index 2f563d7d1..6c055c1a6 100644 --- a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c +++ b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c @@ -235,7 +235,7 @@ void IDS_Dispenser_Content_Init (void) dispenser_running_data__init(&IDS_Dispenser_Data[i]); dispenserdata[i] = &IDS_Dispenser_Data[i]; IDS_Dispenser_Data[i].nanolitterperpulse = DEFAULT_NANOLITER_PER_PULSE; - IDS_Dispenser_Data[i].microsteps = MotorsCfg[HW_Motor_Id].microstep;; + IDS_Dispenser_Data[i].microsteps = MotorsCfg[HW_Motor_Id].microstep; } //================================== @@ -375,24 +375,6 @@ void IDS_Dispenser_RefillEnded (char DispenserId,char MicroSteps) IDS_Dispenser_Data[DispenserId].consumedinnanolitter = 0; Report("IDS_Dispenser_RefillEnded",__FILE__,__LINE__,(int)DispenserId,RpWarning,(int)IDS_Dispenser_Data[DispenserId].numberofrefills,0); } -void IDS_Dispenser_PrimingEnded (char DispenserId,char MicroSteps) -{ - assert (DispenserIdindex, MidTank_Dispenser); + KeepMicrostep[DispenserId] = MotorsCfg[MotorId].microstep; + if (Extended_Motor_Param == true) + Combined_dispenser_Driver_Mode(DispenserId,Current); MotorSetMicroStep(MotorId, 1); SysCtlDelay(180000); //open dry air valve in the dispenser @@ -227,7 +234,9 @@ uint32_t IDS_Dispenser_Alarm_On (uint8_t DispenserId) status |= MotorAbortMovetoLimitSwitch(MotorId); Valve_Set(IDS_Id_to_AirValve[DispenserId], Atm_MidTank_OFF); Enable_MidTank_Pressure_Reading(DispenserId); - status |= MotorSetMicroStep(DispenserId, MotorsCfg[DispenserId].microstep); + if (Extended_Motor_Param == true) + Combined_dispenser_Driver_Mode(DispenserId,Voltage); + status |= MotorSetMicroStep(MotorId, KeepMicrostep[DispenserId]); status |= MotorStop(DispenserId, Hard_Hiz); CurrentDispenserSpeed[DispenserId] = 0; JobEndReason = JOB_OUT_OF_DYE; @@ -270,7 +279,9 @@ uint32_t IDS_StopHomeDispenser (uint32_t DispenserId) Lubricant_2Way_Valve (STOP); } PrimingActive[DispenserId] = false; - MotorSetMicroStep(MotorId, MotorsCfg[MotorId].microstep); + if (Extended_Motor_Param == true) + Combined_dispenser_Driver_Mode(DispenserId,Voltage); + MotorSetMicroStep(MotorId, KeepMicrostep[DispenserId]); CurrentDispenserSpeed[DispenserId] = 0; CurrentDispenserSpeed[DispenserId] = 0; } @@ -297,7 +308,7 @@ uint32_t IDS_StopHomeDispenserBuildPressure (uint32_t DispenserId) //close dry air valve in the dispenser Valve_Set(IDS_Id_to_AirValve[DispenserId], Atm_MidTank_OFF); Disable_MidTank_Pressure_Reading(DispenserId); - //MotorSetMicroStep(motorId, MotorsCfg[motorId].microstep); + // MotorSetMicroStep(motorId, KeepMicrostep[DispenserId]); if (HomingRequestCallback[DispenserId]) { HomingRequestCallback[DispenserId](DispenserId,0); @@ -343,14 +354,16 @@ uint32_t IDS_EmptyDispenserCallback(uint32_t motorId, uint32_t ReadValue) MotorStop(motorId,Hard_Hiz); CurrentDispenserSpeed[DispenserId] = 0; - MotorSetMicroStep(motorId, MotorsCfg[motorId].microstep); + if (Extended_Motor_Param == true) + Combined_dispenser_Driver_Mode(DispenserId,Voltage); + MotorSetMicroStep(motorId, KeepMicrostep[DispenserId]); PrimingActive[DispenserId]= false; if (DispenserId == LUBRICANT_DISPENSER) { Lubricant_2Way_Valve (STOP); } Report("End Priming",__FILE__,millisecondCounter,(int)DispenserId,RpWarning,(int)DispenserHomingTime[DispenserId],0); - //MotorSetMicroStep(motorId, MotorsCfg[motorId].microstep); + // MotorSetMicroStep(motorId, KeepMicrostep[DispenserId]); if (HomingRequestCallback[DispenserId]) { HomingRequestCallback[DispenserId](DispenserId,0); @@ -376,9 +389,12 @@ uint32_t IDS_EmptyDispenser (uint32_t DispenserId, uint32_t speed , callback_fpt { //open dispenser valve dispenser to midtank direction Control3WayValvesWithCallback ((Valves_t)DispenserId, Dispenser_Mixer, NULL); //direction: MidTank_Dispenser or Dispenser_Mixer + if (Extended_Motor_Param == true) + Combined_dispenser_Driver_Mode(DispenserId,Current); //Valve_Set((Valves_t) request->index, Dispenser_Mixer); + KeepMicrostep[DispenserId] = MotorsCfg[MotorId].microstep; MotorSetMicroStep(MotorId, 1); - SysCtlDelay(180000); + Task_sleep(100); //open dry air valve in the dispenser //Valve_Set(IDS_Id_to_AirValve[DispenserId], Atm_MidTank_ON); if (DispenserId == LUBRICANT_DISPENSER) diff --git a/Software/Stubs Collection/stubs/file read from machine.cs b/Software/Stubs Collection/stubs/file read from machine.cs index e4c43b905..7298c3c98 100644 --- a/Software/Stubs Collection/stubs/file read from machine.cs +++ b/Software/Stubs Collection/stubs/file read from machine.cs @@ -38,6 +38,8 @@ fileChunkDownloadResponse.IsCanceled = false; long chunk_size = response2.MaxChunkLength; stubManager.Write( chunk_size+" \r\n"); + + byte[] chunk = new byte[chunk_size]; FileStream fs = new FileStream("C:\\Temp\\GenHwCfg.cfg",FileMode.Create); bool done = false; @@ -48,14 +50,13 @@ fileChunkDownloadResponse.IsCanceled = false; FileChunkDownloadRequest fileChunkDownloadRequest = new FileChunkDownloadRequest(); fileChunkDownloadRequest.DownloadID = response2.DownloadID; var response3 = stubManager.Run(fileChunkDownloadRequest); - byte[] chunk = new byte[response3.Buffer.Length]; - response3.Buffer.CopyTo(chunk,0); + response3.Buffer.CopyTo(chunk,location); stubManager.Write("Length "+ response3.Buffer.Length + "\n\n"); fs.Write(chunk,location,response3.Buffer.Length); if (response3.Buffer.Length Date: Mon, 19 Aug 2019 19:02:58 +0300 Subject: PPC Graphic changes --- .../Views/JobView.xaml | 6 +-- .../Tango.PPC.Jobs/Controls/JobSummeryViewer.xaml | 2 +- .../Tango.PPC.Jobs/Views/JobSummeryView.xaml | 7 ++-- .../PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml | 2 +- .../PPC/Modules/Tango.PPC.Jobs/Views/JobsView.xaml | 10 ++--- .../Notifications/DefaultNotificationProvider.cs | 5 +++ .../PPC/Tango.PPC.UI/Views/LayoutView.xaml | 4 +- .../Tango.Integration/Operation/MachineStatuses.cs | 2 +- .../Tango.Touch/Controls/MessageBoxVM.cs | 13 ++++++ .../Tango.Touch/Controls/TouchPanel.xaml | 49 +++++++++++++++++++++- .../Tango.Touch/Resources/Colors.xaml | 4 +- .../Visual_Studio/Tango.Touch/Resources/Fonts.xaml | 4 +- 12 files changed, 87 insertions(+), 21 deletions(-) diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml index 54a3b72a9..6b1156ece 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml @@ -621,7 +621,7 @@ Winding Method - + @@ -631,7 +631,7 @@ Spool - + @@ -753,7 +753,7 @@ MEDIA - + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/JobSummeryViewer.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/JobSummeryViewer.xaml index fd0a63456..830718cb6 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/JobSummeryViewer.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/JobSummeryViewer.xaml @@ -89,7 +89,7 @@ - + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml index ac2d5b3be..ad60c46ca 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml @@ -12,7 +12,7 @@ mc:Ignorable="d" d:DesignHeight="1280" d:DesignWidth="800" d:DataContext="{d:DesignInstance Type=vm:JobSummeryViewVM, IsDesignTimeCreatable=False}" DataContext="{x:Static global:ViewModelLocator.JobSummeryViewVM}"> - + @@ -22,7 +22,7 @@ - + @@ -40,7 +40,6 @@ DYE - @@ -92,7 +91,7 @@ - + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml index ec21ebade..1c7e48bfa 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml @@ -648,7 +648,7 @@ - + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobsView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobsView.xaml index 5b9c234f0..c615583bc 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobsView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobsView.xaml @@ -292,9 +292,9 @@ - + - + + diff --git a/Software/Visual_Studio/Tango.Touch/Resources/Colors.xaml b/Software/Visual_Studio/Tango.Touch/Resources/Colors.xaml index c8a6d0e8d..39a2fd502 100644 --- a/Software/Visual_Studio/Tango.Touch/Resources/Colors.xaml +++ b/Software/Visual_Studio/Tango.Touch/Resources/Colors.xaml @@ -17,8 +17,8 @@ #E7E8E9 #dbe0e8 - #B8B8B8 - #5E5E5E + #d8d8d9 + #7c7c7d #6EFFFFFF #28BDBDBD diff --git a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml index a4732966e..0d01c6777 100644 --- a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml +++ b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml @@ -4,6 +4,7 @@ xmlns:local="clr-namespace:Tango.Touch.Resources"> Flexo + 14 16 @@ -22,5 +23,6 @@ 26 18 - 27 + Flexo Medium + 22 \ No newline at end of file -- cgit v1.3.1 From ce8cf84d1e8fd8484debb3ee88c64a14a0eaba47 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Tue, 20 Aug 2019 10:36:59 +0300 Subject: TCC application layouts bugs --- .../App/TCC/src/app/Components/statistics/statistics.component.html | 6 +++--- .../App/TCC/src/app/components/results/results.component.html | 6 +++++- .../App/TCC/src/app/components/results/results.component.scss | 4 ++++ Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/index.html | 2 +- .../TCC/Tango.TCC.Service/Bundles/main.7e8808ff33db42fab266.js | 1 + .../TCC/Tango.TCC.Service/Bundles/main.826fac31276dc923ae22.js | 1 - 6 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.7e8808ff33db42fab266.js delete mode 100644 Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.826fac31276dc923ae22.js diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/Components/statistics/statistics.component.html b/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/Components/statistics/statistics.component.html index f1dd455a4..101aa70d4 100644 --- a/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/Components/statistics/statistics.component.html +++ b/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/Components/statistics/statistics.component.html @@ -56,10 +56,10 @@ -
-
+
+
+ margin-left: 1em; ">
\ No newline at end of file diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.html b/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.html index 93e75d632..1525869e9 100644 --- a/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.html +++ b/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.html @@ -41,6 +41,8 @@
+
+
@@ -92,10 +94,12 @@
- +
+
+ diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.scss b/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.scss index b4062571b..47bacbd54 100644 --- a/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.scss +++ b/Software/Visual_Studio/TCC/Tango.TCC.Service/App/TCC/src/app/components/results/results.component.scss @@ -137,4 +137,8 @@ mat-form-field { ::ng-deep .cdk-overlay-pane { /* Do you changes here */ width: auto !important; +} +.table-container { + max-height: calc(100vh - 280px); // or height:calc(100vh - 155px); depending on your need change + overflow: auto; } \ No newline at end of file diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/index.html b/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/index.html index c3c587457..fe82e399b 100644 --- a/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/index.html +++ b/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/index.html @@ -13,5 +13,5 @@ - + diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.7e8808ff33db42fab266.js b/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.7e8808ff33db42fab266.js new file mode 100644 index 000000000..f7e30fce1 --- /dev/null +++ b/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.7e8808ff33db42fab266.js @@ -0,0 +1 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{"+s0g":function(t,e,n){!function(t){"use strict";var e="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;t.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"\xe9\xe9n minuut",mm:"%d minuten",h:"\xe9\xe9n uur",hh:"%d uur",d:"\xe9\xe9n dag",dd:"%d dagen",M:"\xe9\xe9n maand",MM:"%d maanden",y:"\xe9\xe9n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},"//9w":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("se",{months:"o\u0111\u0111ajagem\xe1nnu_guovvam\xe1nnu_njuk\u010dam\xe1nnu_cuo\u014bom\xe1nnu_miessem\xe1nnu_geassem\xe1nnu_suoidnem\xe1nnu_borgem\xe1nnu_\u010dak\u010dam\xe1nnu_golggotm\xe1nnu_sk\xe1bmam\xe1nnu_juovlam\xe1nnu".split("_"),monthsShort:"o\u0111\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\u010dak\u010d_golg_sk\xe1b_juov".split("_"),weekdays:"sotnabeaivi_vuoss\xe1rga_ma\u014b\u014beb\xe1rga_gaskavahkku_duorastat_bearjadat_l\xe1vvardat".split("_"),weekdaysShort:"sotn_vuos_ma\u014b_gask_duor_bear_l\xe1v".split("_"),weekdaysMin:"s_v_m_g_d_b_L".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT",nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s gea\u017ees",past:"ma\u014bit %s",s:"moadde sekunddat",ss:"%d sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta m\xe1nnu",MM:"%d m\xe1nut",y:"okta jahki",yy:"%d jagit"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},"/X5v":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("x-pseudo",{months:"J~\xe1\xf1\xfa\xe1~r\xfd_F~\xe9br\xfa~\xe1r\xfd_~M\xe1rc~h_\xc1p~r\xedl_~M\xe1\xfd_~J\xfa\xf1\xe9~_J\xfal~\xfd_\xc1\xfa~g\xfast~_S\xe9p~t\xe9mb~\xe9r_\xd3~ct\xf3b~\xe9r_\xd1~\xf3v\xe9m~b\xe9r_~D\xe9c\xe9~mb\xe9r".split("_"),monthsShort:"J~\xe1\xf1_~F\xe9b_~M\xe1r_~\xc1pr_~M\xe1\xfd_~J\xfa\xf1_~J\xfal_~\xc1\xfag_~S\xe9p_~\xd3ct_~\xd1\xf3v_~D\xe9c".split("_"),monthsParseExact:!0,weekdays:"S~\xfa\xf1d\xe1~\xfd_M\xf3~\xf1d\xe1\xfd~_T\xfa\xe9~sd\xe1\xfd~_W\xe9d~\xf1\xe9sd~\xe1\xfd_T~h\xfars~d\xe1\xfd_~Fr\xedd~\xe1\xfd_S~\xe1t\xfar~d\xe1\xfd".split("_"),weekdaysShort:"S~\xfa\xf1_~M\xf3\xf1_~T\xfa\xe9_~W\xe9d_~Th\xfa_~Fr\xed_~S\xe1t".split("_"),weekdaysMin:"S~\xfa_M\xf3~_T\xfa_~W\xe9_T~h_Fr~_S\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[T~\xf3d\xe1~\xfd \xe1t] LT",nextDay:"[T~\xf3m\xf3~rr\xf3~w \xe1t] LT",nextWeek:"dddd [\xe1t] LT",lastDay:"[\xdd~\xe9st~\xe9rd\xe1~\xfd \xe1t] LT",lastWeek:"[L~\xe1st] dddd [\xe1t] LT",sameElse:"L"},relativeTime:{future:"\xed~\xf1 %s",past:"%s \xe1~g\xf3",s:"\xe1 ~f\xe9w ~s\xe9c\xf3~\xf1ds",ss:"%d s~\xe9c\xf3\xf1~ds",m:"\xe1 ~m\xed\xf1~\xfat\xe9",mm:"%d m~\xed\xf1\xfa~t\xe9s",h:"\xe1~\xf1 h\xf3~\xfar",hh:"%d h~\xf3\xfars",d:"\xe1 ~d\xe1\xfd",dd:"%d d~\xe1\xfds",M:"\xe1 ~m\xf3\xf1~th",MM:"%d m~\xf3\xf1t~hs",y:"\xe1 ~\xfd\xe9\xe1r",yy:"%d \xfd~\xe9\xe1rs"},dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},0:function(t,e,n){t.exports=n("zUnb")},"0mo+":function(t,e,n){!function(t){"use strict";var e={1:"\u0f21",2:"\u0f22",3:"\u0f23",4:"\u0f24",5:"\u0f25",6:"\u0f26",7:"\u0f27",8:"\u0f28",9:"\u0f29",0:"\u0f20"},n={"\u0f21":"1","\u0f22":"2","\u0f23":"3","\u0f24":"4","\u0f25":"5","\u0f26":"6","\u0f27":"7","\u0f28":"8","\u0f29":"9","\u0f20":"0"};t.defineLocale("bo",{months:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54".split("_"),monthsShort:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54".split("_"),weekdays:"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74_\u0f42\u0f5f\u0f60\u0f0b\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b".split("_"),weekdaysShort:"\u0f49\u0f72\u0f0b\u0f58\u0f0b_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b_\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b_\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b_\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74_\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b_\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b".split("_"),weekdaysMin:"\u0f49\u0f72\u0f0b\u0f58\u0f0b_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b_\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b_\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b_\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74_\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b_\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[\u0f51\u0f72\u0f0b\u0f62\u0f72\u0f44] LT",nextDay:"[\u0f66\u0f44\u0f0b\u0f49\u0f72\u0f53] LT",nextWeek:"[\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f55\u0fb2\u0f42\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58], LT",lastDay:"[\u0f41\u0f0b\u0f66\u0f44] LT",lastWeek:"[\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f55\u0fb2\u0f42\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f58] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0f63\u0f0b",past:"%s \u0f66\u0f94\u0f53\u0f0b\u0f63",s:"\u0f63\u0f58\u0f0b\u0f66\u0f44",ss:"%d \u0f66\u0f90\u0f62\u0f0b\u0f46\u0f0d",m:"\u0f66\u0f90\u0f62\u0f0b\u0f58\u0f0b\u0f42\u0f45\u0f72\u0f42",mm:"%d \u0f66\u0f90\u0f62\u0f0b\u0f58",h:"\u0f46\u0f74\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f42\u0f45\u0f72\u0f42",hh:"%d \u0f46\u0f74\u0f0b\u0f5a\u0f7c\u0f51",d:"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f45\u0f72\u0f42",dd:"%d \u0f49\u0f72\u0f53\u0f0b",M:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f45\u0f72\u0f42",MM:"%d \u0f5f\u0fb3\u0f0b\u0f56",y:"\u0f63\u0f7c\u0f0b\u0f42\u0f45\u0f72\u0f42",yy:"%d \u0f63\u0f7c"},preparse:function(t){return t.replace(/[\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\u0f29\u0f20]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c|\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66|\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44|\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42|\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"===e&&t>=4||"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44"===e&&t<5||"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42"===e?t+12:t},meridiem:function(t,e,n){return t<4?"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c":t<10?"\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66":t<17?"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44":t<20?"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42":"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"},week:{dow:0,doy:6}})}(n("wd/R"))},"0tRk":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("pt-br",{months:"Janeiro_Fevereiro_Mar\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Ter\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\xe1bado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_S\xe1b".split("_"),weekdaysMin:"Do_2\xaa_3\xaa_4\xaa_5\xaa_6\xaa_S\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xe0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xe0s] HH:mm"},calendar:{sameDay:"[Hoje \xe0s] LT",nextDay:"[Amanh\xe3 \xe0s] LT",nextWeek:"dddd [\xe0s] LT",lastDay:"[Ontem \xe0s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[\xdaltimo] dddd [\xe0s] LT":"[\xdaltima] dddd [\xe0s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"h\xe1 %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xeas",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba"})}()},"1op0":function(t,e,n){var i,r;r=function(t){var e;(e=t).ajax=function(t){var n=e.merge(!0,{url:!1,type:"GET",dataType:"json",success:!1,error:!1,data:!1,headers:{}},t);t={json:"application/json",xml:"application/xml",text:"text/plain",octet:"application/octet-stream"};var i=new XMLHttpRequest;if(!n.url)return!1;i.open(n.type.toUpperCase(),n.url,!0),i.setRequestHeader("Content-Type",t[n.dataType]||t.text),e.objectEach(n.headers,function(t,e){i.setRequestHeader(e,t)}),i.onreadystatechange=function(){var t;if(4===i.readyState){if(200===i.status){if(t=i.responseText,"json"===n.dataType)try{t=JSON.parse(t)}catch(e){return void(n.error&&n.error(i,e))}return n.success&&n.success(t)}n.error&&n.error(i,i.responseText)}};try{n.data=JSON.stringify(n.data)}catch(r){}i.send(n.data||!0)},function(t){var e=t.win,n=e.navigator,i=e.document,r=e.URL||e.webkitURL||e,o=/Edge\/\d+/.test(n.userAgent);t.dataURLtoBlob=function(t){if((t=t.match(/data:([^;]*)(;base64)?,([0-9A-Za-z+\/]+)/))&&3',r=this.options,o=e?1.1.toLocaleString()[1]:".",a=i(r.exporting.useMultiLevelHeaders,!0);e=this.getDataRows(a);var l=0,s=a?e.shift():null,u=e.shift(),c=function(t,e,n,r){var a=i(r,"");return e="text"+(e?" "+e:""),"number"==typeof a?(a=a.toString(),","===o&&(a=a.replace(".",o)),e="number"):r||(e="empty"),"<"+t+(n?" "+n:"")+' class="'+e+'">'+a+""};!1!==r.exporting.tableCaption&&(n+=''+i(r.exporting.tableCaption,r.title.text?r.title.text.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'").replace(/\//g,"/"):"Chart")+"");for(var d=0,h=e.length;dl&&(l=e[d].length);return n+=function(t,e,n){var i="",o=0;n=n||e&&e.length;var l,s,u=0;if(s=a&&t&&e){t:if(s=t.length,e.length===s){for(;s--;)if(t[s]!==e[s]){s=!1;break t}s=!0}else s=!1;s=!s}if(s){for(i+="";o"}return i+""}(s,u,Math.max(l,u.length)),n+="",e.forEach(function(t){n+="";for(var e=0;e"}),t.fireEvent(this,"afterGetTable",e={html:n+=""}),e.html},t.Chart.prototype.downloadCSV=function(){var t=this.getCSV(!0);l(e(t,"text/csv")||"data:text/csv,\ufeff"+encodeURIComponent(t),this.getFilename()+".csv")},t.Chart.prototype.downloadXLS=function(){var t='\x3c!--[if gte mso 9]>Ark1td{border:none;font-family: Calibri, sans-serif;} .number{mso-number-format:"0.00";} .text{ mso-number-format:"@";}'+this.getTable(!0)+"";l(e(t,"application/vnd.ms-excel")||"data:application/vnd.ms-excel;base64,"+r.btoa(unescape(encodeURIComponent(t))),this.getFilename()+".xls")},t.Chart.prototype.viewData=function(){this.dataTableDiv||(this.dataTableDiv=o.createElement("div"),this.dataTableDiv.className="highcharts-data-table",this.renderTo.parentNode.insertBefore(this.dataTableDiv,this.renderTo.nextSibling)),this.dataTableDiv.innerHTML=this.getTable()},t.Chart.prototype.openInCloud=function(){var e,n;(function e(n){Object.keys(n).forEach(function(i){"function"==typeof n[i]&&delete n[i],t.isObject(n[i])&&e(n[i])})})(e=t.merge(this.userOptions)),e={name:e.title&&e.title.text||"Chart title",options:e,settings:{constructor:"Chart",dataProvider:{csv:this.getCSV()}}},n=JSON.stringify(e),function(){var t=o.createElement("form");o.body.appendChild(t),t.method="post",t.action="https://cloud-api.highcharts.com/openincloud",t.target="_blank";var e=o.createElement("input");e.type="hidden",e.name="chart",e.value=n,t.appendChild(e),t.submit(),o.body.removeChild(t)}()};var s=t.getOptions().exporting;s&&(t.extend(s.menuItemDefinitions,{downloadCSV:{textKey:"downloadCSV",onclick:function(){this.downloadCSV()}},downloadXLS:{textKey:"downloadXLS",onclick:function(){this.downloadXLS()}},viewData:{textKey:"viewData",onclick:function(){this.viewData()}},openInCloud:{textKey:"openInCloud",onclick:function(){this.openInCloud()}}}),s.buttons.contextButton.menuItems.push("separator","downloadCSV","downloadXLS","viewData","openInCloud")),a.map&&(a.map.prototype.exportKey="name"),a.mapbubble&&(a.mapbubble.prototype.exportKey="name"),a.treemap&&(a.treemap.prototype.exportKey="name")}(t)},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},"1rYy":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("hy-am",{months:{format:"\u0570\u0578\u0582\u0576\u057e\u0561\u0580\u056b_\u0583\u0565\u057f\u0580\u057e\u0561\u0580\u056b_\u0574\u0561\u0580\u057f\u056b_\u0561\u057a\u0580\u056b\u056c\u056b_\u0574\u0561\u0575\u056b\u057d\u056b_\u0570\u0578\u0582\u0576\u056b\u057d\u056b_\u0570\u0578\u0582\u056c\u056b\u057d\u056b_\u0585\u0563\u0578\u057d\u057f\u0578\u057d\u056b_\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580\u056b_\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b_\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056b_\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b".split("_"),standalone:"\u0570\u0578\u0582\u0576\u057e\u0561\u0580_\u0583\u0565\u057f\u0580\u057e\u0561\u0580_\u0574\u0561\u0580\u057f_\u0561\u057a\u0580\u056b\u056c_\u0574\u0561\u0575\u056b\u057d_\u0570\u0578\u0582\u0576\u056b\u057d_\u0570\u0578\u0582\u056c\u056b\u057d_\u0585\u0563\u0578\u057d\u057f\u0578\u057d_\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580_\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580_\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580_\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580".split("_")},monthsShort:"\u0570\u0576\u057e_\u0583\u057f\u0580_\u0574\u0580\u057f_\u0561\u057a\u0580_\u0574\u0575\u057d_\u0570\u0576\u057d_\u0570\u056c\u057d_\u0585\u0563\u057d_\u057d\u057a\u057f_\u0570\u056f\u057f_\u0576\u0574\u0562_\u0564\u056f\u057f".split("_"),weekdays:"\u056f\u056b\u0580\u0561\u056f\u056b_\u0565\u0580\u056f\u0578\u0582\u0577\u0561\u0562\u0569\u056b_\u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b_\u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b_\u0570\u056b\u0576\u0563\u0577\u0561\u0562\u0569\u056b_\u0578\u0582\u0580\u0562\u0561\u0569_\u0577\u0561\u0562\u0561\u0569".split("_"),weekdaysShort:"\u056f\u0580\u056f_\u0565\u0580\u056f_\u0565\u0580\u0584_\u0579\u0580\u0584_\u0570\u0576\u0563_\u0578\u0582\u0580\u0562_\u0577\u0562\u0569".split("_"),weekdaysMin:"\u056f\u0580\u056f_\u0565\u0580\u056f_\u0565\u0580\u0584_\u0579\u0580\u0584_\u0570\u0576\u0563_\u0578\u0582\u0580\u0562_\u0577\u0562\u0569".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0569.",LLL:"D MMMM YYYY \u0569., HH:mm",LLLL:"dddd, D MMMM YYYY \u0569., HH:mm"},calendar:{sameDay:"[\u0561\u0575\u057d\u0585\u0580] LT",nextDay:"[\u057e\u0561\u0572\u0568] LT",lastDay:"[\u0565\u0580\u0565\u056f] LT",nextWeek:function(){return"dddd [\u0585\u0580\u0568 \u056a\u0561\u0574\u0568] LT"},lastWeek:function(){return"[\u0561\u0576\u0581\u0561\u056e] dddd [\u0585\u0580\u0568 \u056a\u0561\u0574\u0568] LT"},sameElse:"L"},relativeTime:{future:"%s \u0570\u0565\u057f\u0578",past:"%s \u0561\u057c\u0561\u057b",s:"\u0574\u056b \u0584\u0561\u0576\u056b \u057e\u0561\u0575\u0580\u056f\u0575\u0561\u0576",ss:"%d \u057e\u0561\u0575\u0580\u056f\u0575\u0561\u0576",m:"\u0580\u0578\u057a\u0565",mm:"%d \u0580\u0578\u057a\u0565",h:"\u056a\u0561\u0574",hh:"%d \u056a\u0561\u0574",d:"\u0585\u0580",dd:"%d \u0585\u0580",M:"\u0561\u0574\u056b\u057d",MM:"%d \u0561\u0574\u056b\u057d",y:"\u057f\u0561\u0580\u056b",yy:"%d \u057f\u0561\u0580\u056b"},meridiemParse:/\u0563\u056b\u0577\u0565\u0580\u057e\u0561|\u0561\u057c\u0561\u057e\u0578\u057f\u057e\u0561|\u0581\u0565\u0580\u0565\u056f\u057e\u0561|\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576/,isPM:function(t){return/^(\u0581\u0565\u0580\u0565\u056f\u057e\u0561|\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576)$/.test(t)},meridiem:function(t){return t<4?"\u0563\u056b\u0577\u0565\u0580\u057e\u0561":t<12?"\u0561\u057c\u0561\u057e\u0578\u057f\u057e\u0561":t<17?"\u0581\u0565\u0580\u0565\u056f\u057e\u0561":"\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576"},dayOfMonthOrdinalParse:/\d{1,2}|\d{1,2}-(\u056b\u0576|\u0580\u0564)/,ordinal:function(t,e){switch(e){case"DDD":case"w":case"W":case"DDDo":return 1===t?t+"-\u056b\u0576":t+"-\u0580\u0564";default:return t}},week:{dow:1,doy:7}})}()},"1xZ4":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ca",{months:{standalone:"gener_febrer_mar\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de mar\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._mar\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[dem\xe0 a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aqu\xed %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|\xe8|a)/,ordinal:function(t,e){var n=1===t?"r":2===t?"n":3===t?"r":4===t?"t":"\xe8";return"w"!==e&&"W"!==e||(n="a"),t+n},week:{dow:1,doy:4}})}()},"2BfV":function(t,e,n){var i,r;r=function(t){!function(t){function e(){var t=Array.prototype.slice.call(arguments),e=-Number.MAX_VALUE;return t.forEach(function(t){if(null!=t&&void 0!==t.length&&0=(n.options.boostThreshold||Number.MAX_VALUE)&&++i);return t.boostForceChartBoost=o&&(r===t.series.length&&0a||0>e)&&(e=0),(!n||n>a)&&(n=a),t.drawArrays(t[(i||"points").toUpperCase()],e/l,(n-e)/l),0))},allocate:function(t){u=-1,s=new Float32Array(4*t)},push:function(t,e,n,i){s&&(s[++u]=t,s[++u]=e,s[++u]=n,s[++u]=i)}}}function o(e,n){var i=e.chartWidth,o=e.chartHeight,a=e,l=e.seriesGroup||n.group;return d.implementation.hasFeature("www.http://w3.org/TR/SVG11/feature#Extensibility","1.1"),(a=e.isChartSeriesBoosting()?e:n).renderTarget||(a.canvas=C,a.renderTarget=e.renderer.image("",0,0,i,o).addClass("highcharts-boost-canvas").add(l),a.boostClear=function(){a.renderTarget.attr({href:""})},a.boostCopy=function(){a.boostResizeTarget(),a.renderTarget.attr({href:a.canvas.toDataURL("image/png")})},a.boostResizeTarget=function(){(a.renderTargetFo||a.renderTarget).attr({x:0,y:0,width:i=e.chartWidth,height:o=e.chartHeight}).css({pointerEvents:"none",mixedBlendMode:"normal",opacity:1}),a instanceof t.Chart&&a.markerGroup.translate(e.plotLeft,e.plotTop)},a.boostClipRect=e.renderer.clipRect(),(a.renderTargetFo||a.renderTarget).clip(a.boostClipRect),a instanceof t.Chart&&(a.markerGroup=a.renderer.g().add(l),a.markerGroup.translate(n.xAxis.pos,n.yAxis.pos))),a.canvas.width=i,a.canvas.height=o,a.boostClipRect.attr(e.getBoostClipRect(a)),a.boostResizeTarget(),a.boostClear(),a.ogl||(a.ogl=function(e){function n(t){var e;return t.isSeriesBoosting?(e=((e=!!t.options.stacking)?t.data:t.xData||t.options.xData||t.processedXData||t.options.data).length,"treemap"===t.type?e*=12:"heatmap"===t.type?e*=6:L[t.type]&&(e*=2),e):0}function i(){p.clear(p.COLOR_BUFFER_BIT|p.DEPTH_BUFFER_BIT)}function o(){S=[],b.data=_=[],v=[],h&&h.destroy()}function a(t){c&&(c.setUniform("xAxisTrans",t.transA),c.setUniform("xAxisMin",t.min),c.setUniform("xAxisMinPad",t.minPixelPadding),c.setUniform("xAxisPointRange",t.pointRange),c.setUniform("xAxisLen",t.len),c.setUniform("xAxisPos",t.pos),c.setUniform("xAxisCVSCoord",!t.horiz))}function l(t){c&&(c.setUniform("yAxisTrans",t.transA),c.setUniform("yAxisMin",t.min),c.setUniform("yAxisMinPad",t.minPixelPadding),c.setUniform("yAxisPointRange",t.pointRange),c.setUniform("yAxisLen",t.len),c.setUniform("yAxisPos",t.pos),c.setUniform("yAxisCVSCoord",!t.horiz))}function s(t,e){c.setUniform("hasThreshold",t),c.setUniform("translatedThreshold",e)}function u(n){return!!n&&(m=n.chartWidth||800,g=n.chartHeight||400,!!(p&&m&&g&&c)&&(T.debug.timeRendering&&console.time("gl rendering"),p.canvas.width=m,p.canvas.height=g,c.bind(),p.viewport(0,0,m,g),c.setPMatrix([2/m,0,0,0,0,-2/g,0,0,0,0,-2,0,-1,1,-1,1]),c.setPlotHeight(n.plotHeight),12*((u.marker?u.marker.radius:10)||10));if(d=C[d&&d.symbol||e.series.symbol]||C.circle,!(0===e.segments.length||e.segmentslength&&e.segments[0].from===e.segments[0].to)){if(d.isReady&&(p.bindTexture(p.TEXTURE_2D,d.handle),c.setTexture(d.handle)),n.styledMode?d=e.series.markerGroup&&e.series.markerGroup.getStyle("fill"):(d=e.series.pointAttribs&&e.series.pointAttribs().fill||e.series.color,u.colorByPoint&&(d=e.series.chart.options.colors[i])),e.series.fillOpacity&&u.fillOpacity&&(d=new f(d).setOpacity(k(u.fillOpacity,1)).get()),d=t.color(d).rgba,T.useAlpha||(d[3]=1),"lines"===e.drawMode&&T.useAlpha&&1>d[3]&&(d[3]/=10),"add"===u.boostBlending?(p.blendFunc(p.SRC_ALPHA,p.ONE),p.blendEquation(p.FUNC_ADD)):"mult"===u.boostBlending||"multiply"===u.boostBlending?p.blendFunc(p.DST_COLOR,p.ZERO):"darken"===u.boostBlending?(p.blendFunc(p.ONE,p.ONE),p.blendEquation(p.FUNC_MIN)):p.blendFuncSeparate(p.SRC_ALPHA,p.ONE_MINUS_SRC_ALPHA,p.ONE,p.ONE_MINUS_SRC_ALPHA),c.reset(),0e.node.levelDynamic)return 1;if(t.node.levelDynamicn.zMax&&(n.zMax=u[2]),u[2]n.zMax&&(n.zMax=D[B]),D[B]=w&&U<=k&&(q=!0),W&&W>=w&&W<=k&&(X=!0),g?(Y&&(p=u.slice(1,3)),m=p[0],p=p[1]):b&&(I=u.x,m=(p=u.stackY)-u.y),null!=M&&null!=S&&(J=p>=M&&p<=S),I>k&&H.xw&&(j.x=I,j.y=p),null!==p||!R)if(null!==p&&(J||q||X)){if(I>=w&&I<=k&&(Z=!0),Z||q||X){if(!T.useGPUTranslations&&(n.skipTranslation=!0,I=A.toPixels(I,!0),(p=E.toPixels(p,!0))>P&&(p=P),I>O&&"points"===n.drawMode))continue;K&&(u=m,!1!==m&&void 0!==m||(u=0>p?p:0),g||b||(u=Math.max($,M)),T.useGPUTranslations||(u=E.toPixels(u,!0)),r(I,u,0,0,!1)),n.hasMarkers&&Z&&!1!==F&&(e.closestPointRangePx=Math.min(e.closestPointRangePx,Math.abs(I-F))),!T.useGPUTranslations&&!T.usePreallocated&&F&&1>Math.abs(I-F)&&z&&1>Math.abs(p-z)?T.debug.showSkipSummary&&++N:(v.step&&!Q&&r(I,z,0,2,!1),r(I,p,0,"bubble"===e.type?f||1:2,!1),F=I,z=p,V=!0,Q=!1)}}else a()}else a();T.debug.showSkipSummary&&console.log("skipped points:",N),V||!1===R||"line_strip"!==e.drawMode||(j.x-Number.MAX_VALUE&&s(H))}o()}}(e,S[S.length-1]),T.debug.timeSeriesProcessing&&console.timeEnd("building "+e.type+" series")},setSize:function(t,e){m===t&&g===e||!c||(m=t,g=e,c.bind(),c.setPMatrix([2/m,0,0,0,0,-2/g,0,0,0,0,-2,0,-1,1,-1,1]))},inited:function(){return M},setThreshold:s,init:function(e,n){function i(t,e){var n={isReady:!1,texture:d.createElement("canvas"),handle:p.createTexture()},i=n.texture.getContext("2d");C[t]=n,n.texture.width=512,n.texture.height=512,i.mozImageSmoothingEnabled=!1,i.webkitImageSmoothingEnabled=!1,i.msImageSmoothingEnabled=!1,i.imageSmoothingEnabled=!1,i.strokeStyle="rgba(255, 255, 255, 0)",i.fillStyle="#FFF",e(i);try{p.activeTexture(p.TEXTURE0),p.bindTexture(p.TEXTURE_2D,n.handle),p.texImage2D(p.TEXTURE_2D,0,p.RGBA,p.RGBA,p.UNSIGNED_BYTE,n.texture),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_WRAP_S,p.CLAMP_TO_EDGE),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_WRAP_T,p.CLAMP_TO_EDGE),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_MAG_FILTER,p.LINEAR),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_MIN_FILTER,p.LINEAR),p.bindTexture(p.TEXTURE_2D,null),n.isReady=!0}catch(r){}}var a=0,l=["webgl","experimental-webgl","moz-webgl","webkit-3d"];if(M=!1,!e)return!1;for(T.debug.timeSetup&&console.time("gl setup");a 0.0 ? (value - zMin) / zRange : 0.5;\nif (bubbleSizeByArea && pos > 0.0){\npos = sqrt(pos);\n}\nradius = ceil(bubbleMinSize + pos * (bubbleMaxSize - bubbleMinSize)) / 2.0;\n}\nreturn radius * 2.0;\n}\nfloat translate(float val,\nfloat pointPlacement,\nfloat localA,\nfloat localMin,\nfloat minPixelPadding,\nfloat pointRange,\nfloat len,\nbool cvsCoord\n){\nfloat sign = 1.0;\nfloat cvsOffset = 0.0;\nif (cvsCoord) {\nsign *= -1.0;\ncvsOffset = len;\n}\nreturn sign * (val - localMin) * localA + cvsOffset + \n(sign * minPixelPadding);\n}\nfloat xToPixels(float value){\nif (skipTranslation){\nreturn value;// + xAxisPos;\n}\nreturn translate(value, 0.0, xAxisTrans, xAxisMin, xAxisMinPad, xAxisPointRange, xAxisLen, xAxisCVSCoord);// + xAxisPos;\n}\nfloat yToPixels(float value, float checkTreshold){\nfloat v;\nif (skipTranslation){\nv = value;// + yAxisPos;\n} else {\nv = translate(value, 0.0, yAxisTrans, yAxisMin, yAxisMinPad, yAxisPointRange, yAxisLen, yAxisCVSCoord);// + yAxisPos;\nif (v > plotHeight) {\nv = plotHeight;\n}\n}\nif (checkTreshold > 0.0 && hasThreshold) {\nv = min(v, translatedThreshold);\n}\nreturn v;\n}\nvoid main(void) {\nif (isBubble){\ngl_PointSize = bubbleRadius();\n} else {\ngl_PointSize = pSize;\n}\nvColor = aColor;\nif (isInverted) {\ngl_Position = uPMatrix * vec4(xToPixels(aVertexPosition.y) + yAxisPos, yToPixels(aVertexPosition.x, aVertexPosition.z) + xAxisPos, 0.0, 1.0);\n} else {\ngl_Position = uPMatrix * vec4(xToPixels(aVertexPosition.x) + xAxisPos, yToPixels(aVertexPosition.y, aVertexPosition.z) + yAxisPos, 0.0, 1.0);\n}\n}","vertex"),o=i("precision highp float;\nuniform vec4 fillColor;\nvarying highp vec2 position;\nvarying highp vec4 vColor;\nuniform sampler2D uSampler;\nuniform bool isCircle;\nuniform bool hasColor;\nvoid main(void) {\nvec4 col = fillColor;\nvec4 tcol;\nif (hasColor) {\ncol = vColor;\n}\nif (isCircle) {\ntcol = texture2D(uSampler, gl_PointCoord.st);\ncol *= tcol;\nif (tcol.r < 0.0) {\ndiscard;\n} else {\ngl_FragColor = col;\n}\n} else {\ngl_FragColor = col;\n}\n}","fragment");return r&&o?(a=e.createProgram(),e.attachShader(a,r),e.attachShader(a,o),e.linkProgram(a),e.getProgramParameter(a,e.LINK_STATUS)?(e.useProgram(a),e.bindAttribLocation(a,0,"aVertexPosition"),l=t("uPMatrix"),s=t("pSize"),u=t("fillColor"),c=t("isBubble"),d=t("bubbleSizeAbs"),h=t("bubbleSizeByArea"),y=t("uSampler"),p=t("skipTranslation"),f=t("isCircle"),m=t("isInverted"),g=t("plotHeight"),!0):(v.push(e.getProgramInfoLog(a)),n(),a=!1)):(a=!1,n(),!1)}function o(t,n){e&&a&&(t=_[t]=_[t]||e.getUniformLocation(a,t),e.uniform1f(t,n))}var a,l,s,u,c,d,h,p,f,m,g,y,_={},v=[];return!(e&&!r())&&{psUniform:function(){return s},pUniform:function(){return l},fillColorUniform:function(){return u},setPlotHeight:function(t){e&&a&&e.uniform1f(g,t)},setBubbleUniforms:function(t,n,i){var r=t.options,l=Number.MAX_VALUE,s=-Number.MAX_VALUE;e&&a&&"bubble"===t.type&&(l=k(r.zMin,Math.min(l,Math.max(n,!1===r.displayNegative?r.zThreshold:-Number.MAX_VALUE))),s=k(r.zMax,Math.max(s,i)),e.uniform1i(c,1),e.uniform1i(f,1),e.uniform1i(h,"width"!==t.options.sizeBy),e.uniform1i(d,t.options.sizeByAbsoluteValue),o("bubbleZMin",l),o("bubbleZMax",s),o("bubbleZThreshold",t.options.zThreshold),o("bubbleMinSize",t.minPxSize),o("bubbleMaxSize",t.maxPxSize))},bind:function(){e&&a&&e.useProgram(a)},program:function(){return a},create:r,setUniform:o,setPMatrix:function(t){e&&a&&e.uniformMatrix4fv(l,!1,t)},setColor:function(t){e&&a&&e.uniform4f(u,t[0]/255,t[1]/255,t[2]/255,t[3])},setPointSize:function(t){e&&a&&e.uniform1f(s,t)},setSkipTranslation:function(t){e&&a&&e.uniform1i(p,!0===t?1:0)},setTexture:function(t){e&&a&&e.uniform1i(y,t)},setDrawAsCircle:function(t){e&&a&&e.uniform1i(f,t?1:0)},reset:function(){e&&a&&(e.uniform1i(c,0),e.uniform1i(f,0))},setInverted:function(t){e&&a&&e.uniform1i(m,t)},destroy:function(){e&&a&&(e.deleteProgram(a),a=!1)}}}(p))&&(h=r(p,c),i("circle",function(t){t.beginPath(),t.arc(256,256,256,0,2*Math.PI),t.stroke(),t.fill()}),i("square",function(t){t.fillRect(0,0,512,512)}),i("diamond",function(t){t.beginPath(),t.moveTo(256,0),t.lineTo(512,256),t.lineTo(256,512),t.lineTo(0,256),t.lineTo(256,0),t.fill()}),i("triangle",function(t){t.beginPath(),t.moveTo(0,512),t.lineTo(256,0),t.lineTo(512,512),t.lineTo(0,512),t.fill()}),i("triangle-down",function(t){t.beginPath(),t.moveTo(0,0),t.lineTo(256,512),t.lineTo(512,0),t.lineTo(0,0),t.fill()}),M=!0,T.debug.timeSetup&&console.timeEnd("gl setup"),!0))},render:function t(e){if(i(),e.renderer.forExport)return u(e);M?u(e):setTimeout(function(){t(e)},1)},settings:T,valid:function(){return!1!==p},clear:i,flush:o,setXAxis:a,setYAxis:l,data:_,gl:function(){return p},allocateBuffer:function(t){var e=0;T.usePreallocated&&(t.series.forEach(function(t){t.isSeriesBoosting&&(e+=n(t))}),h.allocate(e))},destroy:function(){o(),h.destroy(),c.destroy(),p&&(y(C,function(t){C[t].handle&&p.deleteTexture(C[t].handle)}),p.canvas.width=1,p.canvas.height=1)},setOptions:function(t){w(!0,T,t)}}}(function(){a.ogl.settings.debug.timeBufferCopy&&console.time("buffer copy"),a.boostCopy(),a.ogl.settings.debug.timeBufferCopy&&console.timeEnd("buffer copy")}),a.ogl.init(a.canvas)||t.error("[highcharts boost] - unable to init WebGL renderer"),a.ogl.setOptions(e.options.boost||{}),a instanceof t.Chart&&a.ogl.allocateBuffer(e)),a.ogl.setSize(i,o),a.ogl}function a(t,e,n){t&&e.renderTarget&&e.canvas&&!(n||e.chart).isChartSeriesBoosting()&&t.render(n||e.chart)}function l(t,e){t&&e.renderTarget&&e.canvas&&!e.chart.isChartSeriesBoosting()&&t.allocateBufferForSingleSeries(e)}function s(t){var e=!0;if(this.chart.options&&this.chart.options.boost&&(e=void 0===this.chart.options.boost.enabled||this.chart.options.boost.enabled),!e||!this.isSeriesBoosting)return t.call(this);this.chart.isBoosting=!0,(t=o(this.chart,this))&&(l(t,this),t.pushSeries(this)),a(t,this)}var u,c=t.win,d=c.document,h=function(){},p=t.Chart,f=t.Color,m=t.Series,g=t.seriesTypes,y=t.objectEach,_=t.extend,v=t.addEvent,b=t.fireEvent,x=t.isNumber,w=t.merge,k=t.pick,M=t.wrap,S=t.getOptions().plotOptions,C=d.createElement("canvas"),L="area arearange column columnrange bar line scatter heatmap bubble treemap".split(" "),D={};L.forEach(function(t){D[t]=1}),f.prototype.names={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",feldspar:"#d19275",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslateblue:"#8470ff",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",violetred:"#d02090",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},p.prototype.isChartSeriesBoosting=function(){return k(this.options.boost&&this.options.boost.seriesThreshold,50)<=this.series.length||n(this)},p.prototype.getBoostClipRect=function(t){var e={x:this.plotLeft,y:this.plotTop,width:this.plotWidth,height:this.plotHeight};return t===this&&this.yAxis.forEach(function(t){e.y=Math.min(t.pos,e.y),e.height=Math.max(t.pos-this.plotTop+t.len,e.height)},this),e},t.eachAsync=function(e,n,i,r,o,a){for(var l=(o=o||0)+(r=r||3e4),s=!0;s&&o=(n.options.boostThreshold||Number.MAX_VALUE)}var n=this,r=this.options.data;i(this.chart)&&D[this.type]?(e(r)&&"heatmap"!==this.type&&"treemap"!==this.type&&!this.options.stacking&&this.hasExtremes&&this.hasExtremes(!0)||(t.apply(this,Array.prototype.slice.call(arguments,1)),r=this.processedXData),(this.isSeriesBoosting=e(r))?this.enterBoost():this.exitBoost&&this.exitBoost()):t.apply(this,Array.prototype.slice.call(arguments,1))}),v(m,"hide",function(){this.canvas&&this.renderTarget&&(this.ogl&&this.ogl.clear(),this.boostClear())}),m.prototype.enterBoost=function(){this.alteredByBoost=[],["allowDG","directTouch","stickyTracking"].forEach(function(t){this.alteredByBoost.push({prop:t,val:this[t],own:this.hasOwnProperty(t)})},this),this.directTouch=this.allowDG=!1,this.stickyTracking=!0,this.animate=null,this.labelBySeries&&(this.labelBySeries=this.labelBySeries.destroy())},m.prototype.exitBoost=function(){(this.alteredByBoost||[]).forEach(function(t){t.own?this[t.prop]=t.val:delete this[t.prop]},this),this.boostClear&&this.boostClear()},m.prototype.hasExtremes=function(t){var e=this.options,n=this.xAxis&&this.xAxis.options,i=this.yAxis&&this.yAxis.options;return e.data.length>(e.boostThreshold||Number.MAX_VALUE)&&x(i.min)&&x(i.max)&&(!t||x(n.min)&&x(n.max))},m.prototype.destroyGraphics=function(){var t,e,n=this,i=this.points;if(i)for(e=0;e=S&&a<=C),null!==a&&o>=k&&o<=M&&d)&&(t=y.toPixels(o,!0),D?(void 0!==s&&t!==e||(A||(l=a),(void 0===c||a>r)&&(r=a,c=n),(void 0===s||l=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},"3E1r":function(t,e,n){!function(t){"use strict";var e={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};t.defineLocale("hi",{months:"\u091c\u0928\u0935\u0930\u0940_\u092b\u093c\u0930\u0935\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u0948\u0932_\u092e\u0908_\u091c\u0942\u0928_\u091c\u0941\u0932\u093e\u0908_\u0905\u0917\u0938\u094d\u0924_\u0938\u093f\u0924\u092e\u094d\u092c\u0930_\u0905\u0915\u094d\u091f\u0942\u092c\u0930_\u0928\u0935\u092e\u094d\u092c\u0930_\u0926\u093f\u0938\u092e\u094d\u092c\u0930".split("_"),monthsShort:"\u091c\u0928._\u092b\u093c\u0930._\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u0948._\u092e\u0908_\u091c\u0942\u0928_\u091c\u0941\u0932._\u0905\u0917._\u0938\u093f\u0924._\u0905\u0915\u094d\u091f\u0942._\u0928\u0935._\u0926\u093f\u0938.".split("_"),monthsParseExact:!0,weekdays:"\u0930\u0935\u093f\u0935\u093e\u0930_\u0938\u094b\u092e\u0935\u093e\u0930_\u092e\u0902\u0917\u0932\u0935\u093e\u0930_\u092c\u0941\u0927\u0935\u093e\u0930_\u0917\u0941\u0930\u0942\u0935\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930_\u0936\u0928\u093f\u0935\u093e\u0930".split("_"),weekdaysShort:"\u0930\u0935\u093f_\u0938\u094b\u092e_\u092e\u0902\u0917\u0932_\u092c\u0941\u0927_\u0917\u0941\u0930\u0942_\u0936\u0941\u0915\u094d\u0930_\u0936\u0928\u093f".split("_"),weekdaysMin:"\u0930_\u0938\u094b_\u092e\u0902_\u092c\u0941_\u0917\u0941_\u0936\u0941_\u0936".split("_"),longDateFormat:{LT:"A h:mm \u092c\u091c\u0947",LTS:"A h:mm:ss \u092c\u091c\u0947",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u092c\u091c\u0947",LLLL:"dddd, D MMMM YYYY, A h:mm \u092c\u091c\u0947"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0915\u0932] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u0932] LT",lastWeek:"[\u092a\u093f\u091b\u0932\u0947] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u092e\u0947\u0902",past:"%s \u092a\u0939\u0932\u0947",s:"\u0915\u0941\u091b \u0939\u0940 \u0915\u094d\u0937\u0923",ss:"%d \u0938\u0947\u0915\u0902\u0921",m:"\u090f\u0915 \u092e\u093f\u0928\u091f",mm:"%d \u092e\u093f\u0928\u091f",h:"\u090f\u0915 \u0918\u0902\u091f\u093e",hh:"%d \u0918\u0902\u091f\u0947",d:"\u090f\u0915 \u0926\u093f\u0928",dd:"%d \u0926\u093f\u0928",M:"\u090f\u0915 \u092e\u0939\u0940\u0928\u0947",MM:"%d \u092e\u0939\u0940\u0928\u0947",y:"\u090f\u0915 \u0935\u0930\u094d\u0937",yy:"%d \u0935\u0930\u094d\u0937"},preparse:function(t){return t.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0930\u093e\u0924|\u0938\u0941\u092c\u0939|\u0926\u094b\u092a\u0939\u0930|\u0936\u093e\u092e/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0930\u093e\u0924"===e?t<4?t:t+12:"\u0938\u0941\u092c\u0939"===e?t:"\u0926\u094b\u092a\u0939\u0930"===e?t>=10?t:t+12:"\u0936\u093e\u092e"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0930\u093e\u0924":t<10?"\u0938\u0941\u092c\u0939":t<17?"\u0926\u094b\u092a\u0939\u0930":t<20?"\u0936\u093e\u092e":"\u0930\u093e\u0924"},week:{dow:0,doy:6}})}(n("wd/R"))},"4MV3":function(t,e,n){!function(t){"use strict";var e={1:"\u0ae7",2:"\u0ae8",3:"\u0ae9",4:"\u0aea",5:"\u0aeb",6:"\u0aec",7:"\u0aed",8:"\u0aee",9:"\u0aef",0:"\u0ae6"},n={"\u0ae7":"1","\u0ae8":"2","\u0ae9":"3","\u0aea":"4","\u0aeb":"5","\u0aec":"6","\u0aed":"7","\u0aee":"8","\u0aef":"9","\u0ae6":"0"};t.defineLocale("gu",{months:"\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0_\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0_\u0aae\u0abe\u0ab0\u0acd\u0a9a_\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2_\u0aae\u0ac7_\u0a9c\u0ac2\u0aa8_\u0a9c\u0ac1\u0ab2\u0abe\u0a88_\u0a91\u0a97\u0ab8\u0acd\u0a9f_\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0_\u0a91\u0a95\u0acd\u0a9f\u0acd\u0aac\u0ab0_\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0_\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0".split("_"),monthsShort:"\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1._\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1._\u0aae\u0abe\u0ab0\u0acd\u0a9a_\u0a8f\u0aaa\u0acd\u0ab0\u0abf._\u0aae\u0ac7_\u0a9c\u0ac2\u0aa8_\u0a9c\u0ac1\u0ab2\u0abe._\u0a91\u0a97._\u0ab8\u0aaa\u0acd\u0a9f\u0ac7._\u0a91\u0a95\u0acd\u0a9f\u0acd._\u0aa8\u0ab5\u0ac7._\u0aa1\u0abf\u0ab8\u0ac7.".split("_"),monthsParseExact:!0,weekdays:"\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0_\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0_\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0_\u0aac\u0ac1\u0aa7\u0acd\u0ab5\u0abe\u0ab0_\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0_\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0_\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0".split("_"),weekdaysShort:"\u0ab0\u0ab5\u0abf_\u0ab8\u0acb\u0aae_\u0aae\u0a82\u0a97\u0ab3_\u0aac\u0ac1\u0aa7\u0acd_\u0a97\u0ac1\u0ab0\u0ac1_\u0ab6\u0ac1\u0a95\u0acd\u0ab0_\u0ab6\u0aa8\u0abf".split("_"),weekdaysMin:"\u0ab0_\u0ab8\u0acb_\u0aae\u0a82_\u0aac\u0ac1_\u0a97\u0ac1_\u0ab6\u0ac1_\u0ab6".split("_"),longDateFormat:{LT:"A h:mm \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7",LTS:"A h:mm:ss \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7",LLLL:"dddd, D MMMM YYYY, A h:mm \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7"},calendar:{sameDay:"[\u0a86\u0a9c] LT",nextDay:"[\u0a95\u0abe\u0ab2\u0ac7] LT",nextWeek:"dddd, LT",lastDay:"[\u0a97\u0a87\u0a95\u0abe\u0ab2\u0ac7] LT",lastWeek:"[\u0aaa\u0abe\u0a9b\u0ab2\u0abe] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0aae\u0abe",past:"%s \u0aaa\u0ac7\u0ab9\u0ab2\u0abe",s:"\u0a85\u0aae\u0ac1\u0a95 \u0aaa\u0ab3\u0acb",ss:"%d \u0ab8\u0ac7\u0a95\u0a82\u0aa1",m:"\u0a8f\u0a95 \u0aae\u0abf\u0aa8\u0abf\u0a9f",mm:"%d \u0aae\u0abf\u0aa8\u0abf\u0a9f",h:"\u0a8f\u0a95 \u0a95\u0ab2\u0abe\u0a95",hh:"%d \u0a95\u0ab2\u0abe\u0a95",d:"\u0a8f\u0a95 \u0aa6\u0abf\u0ab5\u0ab8",dd:"%d \u0aa6\u0abf\u0ab5\u0ab8",M:"\u0a8f\u0a95 \u0aae\u0ab9\u0abf\u0aa8\u0acb",MM:"%d \u0aae\u0ab9\u0abf\u0aa8\u0acb",y:"\u0a8f\u0a95 \u0ab5\u0ab0\u0acd\u0ab7",yy:"%d \u0ab5\u0ab0\u0acd\u0ab7"},preparse:function(t){return t.replace(/[\u0ae7\u0ae8\u0ae9\u0aea\u0aeb\u0aec\u0aed\u0aee\u0aef\u0ae6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0ab0\u0abe\u0aa4|\u0aac\u0aaa\u0acb\u0ab0|\u0ab8\u0ab5\u0abe\u0ab0|\u0ab8\u0abe\u0a82\u0a9c/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0ab0\u0abe\u0aa4"===e?t<4?t:t+12:"\u0ab8\u0ab5\u0abe\u0ab0"===e?t:"\u0aac\u0aaa\u0acb\u0ab0"===e?t>=10?t:t+12:"\u0ab8\u0abe\u0a82\u0a9c"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0ab0\u0abe\u0aa4":t<10?"\u0ab8\u0ab5\u0abe\u0ab0":t<17?"\u0aac\u0aaa\u0acb\u0ab0":t<20?"\u0ab8\u0abe\u0a82\u0a9c":"\u0ab0\u0abe\u0aa4"},week:{dow:0,doy:6}})}(n("wd/R"))},"4dOw":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},"6+QB":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(t,e){return 12===t&&(t=0),"pagi"===e?t:"tengahari"===e?t>=11?t:t+12:"petang"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"tengahari":t<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}()},"6B0Y":function(t,e,n){!function(t){"use strict";var e={1:"\u17e1",2:"\u17e2",3:"\u17e3",4:"\u17e4",5:"\u17e5",6:"\u17e6",7:"\u17e7",8:"\u17e8",9:"\u17e9",0:"\u17e0"},n={"\u17e1":"1","\u17e2":"2","\u17e3":"3","\u17e4":"4","\u17e5":"5","\u17e6":"6","\u17e7":"7","\u17e8":"8","\u17e9":"9","\u17e0":"0"};t.defineLocale("km",{months:"\u1798\u1780\u179a\u17b6_\u1780\u17bb\u1798\u17d2\u1797\u17c8_\u1798\u17b8\u1793\u17b6_\u1798\u17c1\u179f\u17b6_\u17a7\u179f\u1797\u17b6_\u1798\u17b7\u1790\u17bb\u1793\u17b6_\u1780\u1780\u17d2\u1780\u178a\u17b6_\u179f\u17b8\u17a0\u17b6_\u1780\u1789\u17d2\u1789\u17b6_\u178f\u17bb\u179b\u17b6_\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6_\u1792\u17d2\u1793\u17bc".split("_"),monthsShort:"\u1798\u1780\u179a\u17b6_\u1780\u17bb\u1798\u17d2\u1797\u17c8_\u1798\u17b8\u1793\u17b6_\u1798\u17c1\u179f\u17b6_\u17a7\u179f\u1797\u17b6_\u1798\u17b7\u1790\u17bb\u1793\u17b6_\u1780\u1780\u17d2\u1780\u178a\u17b6_\u179f\u17b8\u17a0\u17b6_\u1780\u1789\u17d2\u1789\u17b6_\u178f\u17bb\u179b\u17b6_\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6_\u1792\u17d2\u1793\u17bc".split("_"),weekdays:"\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799_\u1785\u17d0\u1793\u17d2\u1791_\u17a2\u1784\u17d2\u1782\u17b6\u179a_\u1796\u17bb\u1792_\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd_\u179f\u17bb\u1780\u17d2\u179a_\u179f\u17c5\u179a\u17cd".split("_"),weekdaysShort:"\u17a2\u17b6_\u1785_\u17a2_\u1796_\u1796\u17d2\u179a_\u179f\u17bb_\u179f".split("_"),weekdaysMin:"\u17a2\u17b6_\u1785_\u17a2_\u1796_\u1796\u17d2\u179a_\u179f\u17bb_\u179f".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/\u1796\u17d2\u179a\u17b9\u1780|\u179b\u17d2\u1784\u17b6\u1785/,isPM:function(t){return"\u179b\u17d2\u1784\u17b6\u1785"===t},meridiem:function(t,e,n){return t<12?"\u1796\u17d2\u179a\u17b9\u1780":"\u179b\u17d2\u1784\u17b6\u1785"},calendar:{sameDay:"[\u1790\u17d2\u1784\u17c3\u1793\u17c1\u17c7 \u1798\u17c9\u17c4\u1784] LT",nextDay:"[\u179f\u17d2\u17a2\u17c2\u1780 \u1798\u17c9\u17c4\u1784] LT",nextWeek:"dddd [\u1798\u17c9\u17c4\u1784] LT",lastDay:"[\u1798\u17d2\u179f\u17b7\u179b\u1798\u17b7\u1789 \u1798\u17c9\u17c4\u1784] LT",lastWeek:"dddd [\u179f\u1794\u17d2\u178f\u17b6\u17a0\u17cd\u1798\u17bb\u1793] [\u1798\u17c9\u17c4\u1784] LT",sameElse:"L"},relativeTime:{future:"%s\u1791\u17c0\u178f",past:"%s\u1798\u17bb\u1793",s:"\u1794\u17c9\u17bb\u1793\u17d2\u1798\u17b6\u1793\u179c\u17b7\u1793\u17b6\u1791\u17b8",ss:"%d \u179c\u17b7\u1793\u17b6\u1791\u17b8",m:"\u1798\u17bd\u1799\u1793\u17b6\u1791\u17b8",mm:"%d \u1793\u17b6\u1791\u17b8",h:"\u1798\u17bd\u1799\u1798\u17c9\u17c4\u1784",hh:"%d \u1798\u17c9\u17c4\u1784",d:"\u1798\u17bd\u1799\u1790\u17d2\u1784\u17c3",dd:"%d \u1790\u17d2\u1784\u17c3",M:"\u1798\u17bd\u1799\u1781\u17c2",MM:"%d \u1781\u17c2",y:"\u1798\u17bd\u1799\u1786\u17d2\u1793\u17b6\u17c6",yy:"%d \u1786\u17d2\u1793\u17b6\u17c6"},dayOfMonthOrdinalParse:/\u1791\u17b8\d{1,2}/,ordinal:"\u1791\u17b8%d",preparse:function(t){return t.replace(/[\u17e1\u17e2\u17e3\u17e4\u17e5\u17e6\u17e7\u17e8\u17e9\u17e0]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},week:{dow:1,doy:4}})}(n("wd/R"))},"6n/F":function(t,e,n){var i,r,o;r="undefined"!=typeof window?window:this,o=function(t){var e,n,i,r,o,a,l,s,u=(i=(e=void 0===t?"undefined"!=typeof window?window:{}:t).navigator&&e.navigator.userAgent||"",r=(n=e.document)&&n.createElementNS&&!!n.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,o=/(edge|msie|trident)/i.test(i)&&!e.opera,a=-1!==i.indexOf("Firefox"),l=-1!==i.indexOf("Chrome"),s=a&&4>parseInt(i.split("Firefox/")[1],10),e.Highcharts?e.Highcharts.error(16,!0):{product:"Highcharts",version:"7.0.3",deg2rad:2*Math.PI/360,doc:n,hasBidiBug:s,hasTouch:n&&void 0!==n.documentElement.ontouchstart,isMS:o,isWebKit:-1!==i.indexOf("AppleWebKit"),isFirefox:a,isChrome:l,isSafari:!l&&-1!==i.indexOf("Safari"),isTouchDevice:/(Mobile|Android|Windows Phone)/.test(i),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:r,win:e,marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){},charts:[]});!function(t){t.timers=[];var e=t.charts,n=t.doc,i=t.win;t.error=function(e,n,r){var o=t.isNumber(e)?"Highcharts error #"+e+": www.highcharts.com/errors/"+e:e;if(r&&t.fireEvent(r,"displayError",{code:e}),n)throw Error(o);i.console&&console.log(o)},t.Fx=function(t,e,n){this.options=e,this.elem=t,this.prop=n},t.Fx.prototype={dSetter:function(){var t,e=this.paths[0],n=this.paths[1],i=[],r=this.now,o=e.length;if(1===r)i=this.toD;else if(o===n.length&&1>r)for(;o--;)t=parseFloat(e[o]),i[o]=isNaN(t)?n[o]:r*parseFloat(n[o]-t)+t;else i=n;this.elem.attr("d",i,null,!0)},update:function(){var t=this.elem,e=this.prop,n=this.now,i=this.options.step;this[e+"Setter"]?this[e+"Setter"]():t.attr?t.element&&t.attr(e,n,null,!0):t.style[e]=n+this.unit,i&&i.call(t,n,this)},run:function(e,n,r){var o=this,a=o.options,l=function(t){return!l.stopped&&o.step(t)},s=i.requestAnimationFrame||function(t){setTimeout(t,13)},u=function(){for(var e=0;e=l+this.startTime?(this.now=this.end,this.pos=1,this.update(),n=s[this.prop]=!0,t.objectEach(s,function(t){!0!==t&&(n=!1)}),n&&a&&a.call(o),e=!1):(this.pos=r.easing((i-this.startTime)/l),this.now=this.start+(this.end-this.start)*this.pos,this.update(),e=!0),e},initPath:function(e,n,i){function r(t){var e,n;for(c=t.length;c--;)e="M"===t[c]||"L"===t[c],n=/[a-zA-Z]/.test(t[c+3]),e&&n&&t.splice(c+1,0,t[c+1],t[c+2],t[c+1],t[c+2])}function o(t,e){for(;t.lengtht&&-1/0=i&&(n=[1/i]))),r=0;r=e||!o&&a<=(n[r]+(n[r+1]||n[r]))/2));r++);return t.correctFloat(l*i,-Math.round(Math.log(.001)/Math.LN10))},t.stableSort=function(t,e){var n,i,r=t.length;for(i=0;in&&(n=t[e]);return n},t.destroyObjectProperties=function(e,n){t.objectEach(e,function(t,i){t&&t!==n&&t.destroy&&t.destroy(),delete e[i]})},t.discardElement=function(e){var n=t.garbageBin;n||(n=t.createElement("div")),e&&n.appendChild(e),n.innerHTML=""},t.correctFloat=function(t,e){return parseFloat(t.toPrecision(e||14))},t.setAnimation=function(e,n){n.renderer.globalAnimation=t.pick(e,n.options.chart.animation,!0)},t.animObject=function(e){return t.isObject(e)?t.merge(e):{duration:e?500:0}},t.timeUnits={millisecond:1,second:1e3,minute:6e4,hour:36e5,day:864e5,week:6048e5,month:24192e5,year:314496e5},t.numberFormat=function(e,n,i,r){n=+n;var o,a,l=t.defaultOptions.lang,s=((e=+e||0).toString().split(".")[1]||"").split("e")[0].length,u=e.toString().split("e");return-1===n?n=Math.min(s,20):t.isNumber(n)?n&&u[1]&&0>u[1]&&(0<=(o=n+ +u[1])?(u[0]=(+u[0]).toExponential(o).split("e")[0],n=o):(u[0]=u[0].split(".")[0]||0,e=20>n?(u[0]*Math.pow(10,u[1])).toFixed(n):0,u[1]=0)):n=2,a=(Math.abs(u[1]?u[0]:e)+Math.pow(10,-Math.max(n,s)-1)).toFixed(n),o=3<(s=String(t.pInt(a))).length?s.length%3:0,i=t.pick(i,l.decimalPoint),r=t.pick(r,l.thousandsSep),e=(0>e?"-":"")+(o?s.substr(0,o)+r:""),e+=s.substr(o).replace(/(\d{3})(?=\d)/g,"$1"+r),n&&(e+=i+a.slice(-n)),u[1]&&0!=+e&&(e+="e"+u[1]),e},Math.easeInOutSine=function(t){return-.5*(Math.cos(Math.PI*t)-1)},t.getStyle=function(e,n,r){return"width"===n?Math.max(0,Math.min(e.offsetWidth,e.scrollWidth,e.getBoundingClientRect&&"none"===t.getStyle(e,"transform",!1)?Math.floor(e.getBoundingClientRect().width):1/0)-t.getStyle(e,"padding-left")-t.getStyle(e,"padding-right")):"height"===n?Math.max(0,Math.min(e.offsetHeight,e.scrollHeight)-t.getStyle(e,"padding-top")-t.getStyle(e,"padding-bottom")):(i.getComputedStyle||t.error(27,!0),(e=i.getComputedStyle(e,void 0))&&(e=e.getPropertyValue(n),t.pick(r,"opacity"!==n)&&(e=t.pInt(e))),e)},t.inArray=function(t,e,n){return e.indexOf(t,n)},t.find=Array.prototype.find?function(t,e){return t.find(e)}:function(t,e){var n,i=t.length;for(n=0;n>16,(65280&e)>>8,255&e,1]:4===n&&(i=[(3840&e)>>4|(3840&e)>>8,(240&e)>>4|240&e,(15&e)<<4|15&e,1])),!i)for(r=this.parsers.length;r--&&!i;)(n=(o=this.parsers[r]).regex.exec(e))&&(i=o.parse(n));this.rgba=i||[]},get:function(t){var i,r=this.input,o=this.rgba;return this.stops?((i=n(r)).stops=[].concat(i.stops),this.stops.forEach(function(e,n){i.stops[n]=[i.stops[n][0],e.get(t)]})):i=o&&e(o[0])?"rgb"===t||!t&&1===o[3]?"rgb("+o[0]+","+o[1]+","+o[2]+")":"a"===t?o[3]:"rgba("+o.join(",")+")":r,i},brighten:function(t){var n,r=this.rgba;if(this.stops)this.stops.forEach(function(e){e.brighten(t)});else if(e(t)&&0!==t)for(n=0;3>n;n++)r[n]+=i(255*t),0>r[n]&&(r[n]=0),255i.width)&&(i={width:0,height:0})}else i=this.htmlGetBBox();if(s.isSVG&&(t=i.width,s=i.height,y&&(i.height=s={"11px,17":14,"13px,20":16}[h&&h.fontSize+","+Math.round(s)]||s),n&&(i.width=Math.abs(s*Math.sin(r))+Math.abs(t*Math.cos(r)),i.height=Math.abs(s*Math.cos(r))+Math.abs(t*Math.sin(r)))),l&&0]*>/g,"").replace(/</g,"<").replace(/>/g,">")))},textSetter:function(t){t!==this.textStr&&(delete this.bBox,this.textStr=t,this.added&&this.renderer.buildText(this))},fillSetter:function(t,e,n){"string"==typeof t?n.setAttribute(e,t):t&&this.complexColor(t,e,n)},visibilitySetter:function(t,e,n){"inherit"===t?n.removeAttribute(e):this[e]!==t&&n.setAttribute(e,t),this[e]=t},zIndexSetter:function(t,e){var n,i,r,o,a=this.renderer,l=this.parentGroup,s=(l||a).element||a.box,u=this.element;if(a=s===a.box,n=this.added,c(t)?(u.setAttribute("data-z-index",t),this[e]===(t=+t)&&(n=!1)):c(this[e])&&u.removeAttribute("data-z-index"),this[e]=t,n){for((t=this.zIndex)&&l&&(l.handleZ=!0),o=(e=s.childNodes).length-1;0<=o&&!i;o--)n=(l=e[o]).getAttribute("data-z-index"),r=!c(n),l!==u&&(0>t&&r&&!a&&!o?(s.insertBefore(u,e[o]),i=!0):(L(n)<=t||r&&(!c(t)||0<=t))&&(s.insertBefore(u,e[o+1]||null),i=!0));i||(s.insertBefore(u,e[a?3:0]||null),i=!0)}return i},_defaultSetter:function(t,e,n){n.setAttribute(e,t)}}),e.prototype.yGetter=e.prototype.xGetter,e.prototype.translateXSetter=e.prototype.translateYSetter=e.prototype.rotationSetter=e.prototype.verticalAlignSetter=e.prototype.rotationOriginXSetter=e.prototype.rotationOriginYSetter=e.prototype.scaleXSetter=e.prototype.scaleYSetter=e.prototype.matrixSetter=function(t,e){this[e]=t,this.doTransform=!0},e.prototype["stroke-widthSetter"]=e.prototype.strokeSetter=function(t,n,i){this[n]=t,this.stroke&&this["stroke-width"]?(e.prototype.fillSetter.call(this,this.stroke,"stroke",i),i.setAttribute("stroke-width",this["stroke-width"]),this.hasStroke=!0):"stroke-width"===n&&0===t&&this.hasStroke&&(i.removeAttribute("stroke"),this.hasStroke=!1)},n=t.SVGRenderer=function(){this.init.apply(this,arguments)},f(n.prototype,{Element:e,SVG_NS:P,init:function(t,e,n,r,a,l,u){var c,d;c=this.createElement("svg").attr({version:"1.1",class:"highcharts-root"}),u||c.css(this.getStyle(r)),t.appendChild(r=c.element),o(t,"dir","ltr"),-1===t.innerHTML.indexOf("xmlns")&&o(r,"xmlns",this.SVG_NS),this.isSVG=!0,this.box=r,this.boxWrapper=c,this.alignedObjects=[],this.url=(_||w)&&p.getElementsByTagName("base").length?Y.location.href.split("#")[0].replace(/<[^>]*>/g,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"",this.createElement("desc").add().element.appendChild(p.createTextNode("Created with Highcharts 7.0.3")),this.defs=this.createElement("defs").add(),this.allowHTML=l,this.forExport=a,this.styledMode=u,this.gradients={},this.cache={},this.cacheKeys=[],this.imgCount=0,this.setSize(e,n,!1),_&&t.getBoundingClientRect&&((e=function(){s(t,{left:0,top:0}),d=t.getBoundingClientRect(),s(t,{left:Math.ceil(d.left)-d.left+"px",top:Math.ceil(d.top)-d.top+"px"})})(),this.unSubPixelFix=i(Y,"resize",e))},definition:function(t){var e=this;return function t(n,i){var r;return T(n).forEach(function(n){var o=e.createElement(n.tagName),a={};S(n,function(t,e){"tagName"!==e&&"children"!==e&&"textContent"!==e&&(a[e]=t)}),o.attr(a),o.add(i||e.defs),n.textContent&&o.element.appendChild(p.createTextNode(n.textContent)),t(n.children||[],o),r=o}),r}(t)},getStyle:function(t){return this.style=f({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},t)},setStyle:function(t){this.boxWrapper.css(this.getStyle(t))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var t=this.defs;return this.box=null,this.boxWrapper=this.boxWrapper.destroy(),h(this.gradients||{}),this.gradients=null,t&&(this.defs=t.destroy()),this.unSubPixelFix&&this.unSubPixelFix(),this.alignedObjects=null},createElement:function(t){var e=new this.Element;return e.init(this,t),e},draw:M,getRadialAttr:function(t,e){return{cx:t[0]-t[2]/2+e.cx*t[2],cy:t[1]-t[2]/2+e.cy*t[2],r:e.r*t[2]}},truncate:function(t,e,n,i,r,o,a){var l,s,u,c=this,d=t.rotation,h=i?1:0,f=(n||i).length,m=f,g=[],y=function(t){e.firstChild&&e.removeChild(e.firstChild),t&&e.appendChild(p.createTextNode(t))},_=function(o,l){if(void 0===g[l=l||o])if(e.getSubStringLength)try{g[l]=r+e.getSubStringLength(0,i?l+1:l)}catch(s){}else c.getSpanWidth&&(y(a(n||i,o)),g[l]=r+c.getSpanWidth(t,e));return g[l]};if(t.rotation=0,s=_(e.textContent.length),u=r+s>o){for(;h<=f;)m=Math.ceil((h+f)/2),i&&(l=a(i,m)),s=_(m,l&&l.length-1),h===f?h=f+1:s>o?f=m-1:h=m;0===f?y(""):n&&f===n.length-1||y(l||a(n||i,m))}return i&&i.splice(0,m),t.actualWidth=s,t.rotation=d,u},escapes:{"&":"&","<":"<",">":">","'":"'",'"':"""},buildText:function(t){var e,n,i,r=t.element,a=this,l=a.forExport,u=C(t.textStr,"").toString(),c=-1!==u.indexOf("<"),d=r.childNodes,h=o(r,"x"),f=t.textWidth,m=(x=t.styles)&&x.lineHeight,g=x&&x.textOutline,y=x&&"ellipsis"===x.textOverflow,_=x&&"nowrap"===x.whiteSpace,v=x&&x.fontSize,b=d.length,x=f&&!t.added&&this.box,w=function(t){var e;return a.styledMode||(e=/(px|em)$/.test(t&&t.style.fontSize)?t.style.fontSize:v||a.style.fontSize||12),m?L(m):a.fontMetrics(e,t.getAttribute("style")?t:r).h},k=function(t,e){return S(a.escapes,function(n,i){e&&-1!==e.indexOf(n)||(t=t.toString().replace(new RegExp(n,"g"),i))}),t},M=function(t,e){var n;if(n=t.indexOf("<"),-1!==(n=(t=t.substring(n,t.indexOf(">")-n)).indexOf(e+"="))&&('"'===(e=t.charAt(n=n+e.length+1))||"'"===e))return(t=t.substring(n+1)).substring(0,t.indexOf(e))};if((n=[u,y,_,m,g,v,f].join())!==t.textCache){for(t.textCache=n;b--;)r.removeChild(d[b]);c||g||y||f||-1!==u.indexOf(" ")?(x&&x.appendChild(r),(u=(u=c?(u=a.styledMode?u.replace(/<(b|strong)>/g,'').replace(/<(i|em)>/g,''):u.replace(/<(b|strong)>/g,'').replace(/<(i|em)>/g,'')).replace(//g,"").split(//g):[u]).filter(function(t){return""!==t})).forEach(function(n,u){var c,d=0,m=0;n=n.replace(/^\s+|\s+$/g,"").replace(//g,"|||"),(c=n.split("|||")).forEach(function(n){if(""!==n||1===c.length){var g,b,x={},S=p.createElementNS(a.SVG_NS,"tspan");if((g=M(n,"class"))&&o(S,"class",g),(g=M(n,"style"))&&(g=g.replace(/(;| |^)color([ :])/,"$1fill$2"),o(S,"style",g)),(b=M(n,"href"))&&!l&&(o(S,"onclick",'location.href="'+b+'"'),o(S,"class","highcharts-anchor"),a.styledMode||s(S,{cursor:"pointer"}))," "!==(n=k(n.replace(/<[a-zA-Z\/](.|\n)*?>/g,"")||" "))){if(S.appendChild(p.createTextNode(n)),d?x.dx=0:u&&null!==h&&(x.x=h),o(S,x),r.appendChild(S),!d&&i&&(!A&&l&&s(S,{display:"block"}),o(S,"dy",w(S))),f){var C=n.replace(/([^\^])-/g,"$1- ").split(" ");x=!_&&(1Math.abs(r.end-r.start-2*Math.PI));var u=Math.cos(o),d=Math.sin(o),h=Math.cos(s);return s=Math.sin(s),a=["M",t+a*u,e+l*d,"A",a,l,0,r=.001>r.end-o-Math.PI?0:1,1,t+a*h,e+l*s],c(n)&&a.push(i?"M":"L",t+n*h,e+n*s,"A",n,n,0,r,0,t+n*u,e+n*d),a.push(i?"":"Z"),a},callout:function(t,e,n,i,r){var o,a=Math.min(r&&r.r||0,n,i),l=a+6,s=r&&r.anchorX;return r=r&&r.anchorY,o=["M",t+a,e,"L",t+n-a,e,"C",t+n,e,t+n,e,t+n,e+a,"L",t+n,e+i-a,"C",t+n,e+i,t+n,e+i,t+n-a,e+i,"L",t+a,e+i,"C",t,e+i,t,e+i,t,e+i-a,"L",t,e+a,"C",t,e,t,e,t+a,e],s&&s>n?r>e+l&&rs?r>e+l&&ri&&s>t+l&&sr&&s>t+l&&s(t=/px/.test(t)?L(t):12)?t+3:Math.round(1.2*t),b:Math.round(.8*n),f:t}},rotCorr:function(t,e,n){var i=t;return e&&n&&(i=Math.max(i*Math.cos(e*d),4)),{x:-t/3*Math.sin(e*d),y:i}},label:function(n,i,r,o,a,l,s,u,d){var h,p,m,g,y,_,v,b,x,w,M,S,C=this,L=C.styledMode,T=C.g("button"!==d&&"label"),E=T.text=C.text("",0,0,s).attr({zIndex:1}),A=0,P=3,O=0,Y={},R=/^url\((.*?)\)$/.test(o),I=L||R,F=function(){return L?h.strokeWidth()%2/2:(b?parseInt(b,10):0)%2/2};d&&T.addClass("highcharts-"+d),w=function(){var t=E.element.style,e={};p=(void 0===m||void 0===g||v)&&c(E.textStr)&&E.getBBox(),T.width=(m||p.width||0)+2*P+O,T.height=(g||p.height||0)+2*P,x=P+Math.min(C.fontMetrics(t&&t.fontSize,E).b,p?p.height:1/0),I&&(h||(T.box=h=C.symbols[o]||R?C.symbol(o):C.rect(),h.addClass(("button"===d?"":"highcharts-label-box")+(d?" highcharts-"+d+"-box":"")),h.add(T),t=F(),e.x=t,e.y=(u?-x:0)+t),e.width=Math.round(T.width),e.height=Math.round(T.height),h.attr(f(e,Y)),Y={})},M=function(){var t,e=O+P;t=u?0:x,c(m)&&p&&("center"===v||"right"===v)&&(e+={center:.5,right:1}[v]*(m-p.width)),e===E.x&&t===E.y||(E.attr("x",e),E.hasBoxWidthChanged&&(p=E.getBBox(!0),w()),void 0!==t&&E.attr("y",t)),E.x=e,E.y=t},S=function(t,e){h?h.attr(t,e):Y[t]=e},T.onAdd=function(){E.add(T),T.attr({text:n||0===n?n:"",x:i,y:r}),h&&c(a)&&T.attr({anchorX:a,anchorY:l})},T.widthSetter=function(e){m=t.isNumber(e)?e:null},T.heightSetter=function(t){g=t},T["text-alignSetter"]=function(t){v=t},T.paddingSetter=function(t){c(t)&&t!==P&&(P=T.padding=t,M())},T.paddingLeftSetter=function(t){c(t)&&t!==O&&(O=t,M())},T.alignSetter=function(t){(t={left:0,center:.5,right:1}[t])!==A&&(A=t,p&&T.attr({x:y}))},T.textSetter=function(t){void 0!==t&&E.textSetter(t),w(),M()},T["stroke-widthSetter"]=function(t,e){t&&(I=!0),b=this["stroke-width"]=t,S(e,t)},L?T.rSetter=function(t,e){S(e,t)}:T.strokeSetter=T.fillSetter=T.rSetter=function(t,e){"r"!==e&&("fill"===e&&t&&(I=!0),T[e]=t),S(e,t)},T.anchorXSetter=function(t,e){a=T.anchorX=t,S(e,Math.round(t)-F()-y)},T.anchorYSetter=function(t,e){l=T.anchorY=t,S(e,t-_)},T.xSetter=function(t){T.x=t,A&&(t-=A*((m||p.width)+2*P),T["forceAnimate:x"]=!0),y=Math.round(t),T.attr("translateX",y)},T.ySetter=function(t){_=T.y=Math.round(t),T.attr("translateY",_)};var z=T.css;return s={css:function(t){if(t){var e={};t=k(t),T.textProps.forEach(function(n){void 0!==t[n]&&(e[n]=t[n],delete t[n])}),E.css(e),"width"in e&&w(),"fontSize"in e&&(w(),M())}return z.call(T,t)},getBBox:function(){return{width:p.width+2*P,height:p.height+2*P,x:p.x-P,y:p.y-P}},destroy:function(){D(T.element,"mouseenter"),D(T.element,"mouseleave"),E&&(E=E.destroy()),h&&(h=h.destroy()),e.prototype.destroy.call(T),T=C=w=M=S=null}},L||(s.shadow=function(t){return t&&(w(),h&&h.shadow(t)),T}),f(T,s)}}),t.Renderer=n}(u),function(t){var e=t.attr,n=t.createElement,i=t.css,r=t.defined,o=t.extend,a=t.isFirefox,l=t.isMS,s=t.isWebKit,u=t.pick,c=t.pInt,d=t.SVGElement,h=t.SVGRenderer,p=t.win;o(d.prototype,{htmlCss:function(t){var e,n="SPAN"===this.element.tagName&&t&&"width"in t,r=u(n&&t.width,void 0);return n&&(delete t.width,this.textWidth=r,e=!0),t&&"ellipsis"===t.textOverflow&&(t.whiteSpace="nowrap",t.overflow="hidden"),this.styles=o(this.styles,t),i(this.element,t),e&&this.htmlUpdateTransform(),this},htmlGetBBox:function(){var t=this.element;return{x:t.offsetLeft,y:t.offsetTop,width:t.offsetWidth,height:t.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var t=this.renderer,e=this.element,n=this.translateX||0,o=this.translateY||0,a=this.x||0,l=this.y||0,s=this.textAlign||"left",u={left:0,center:.5,right:1}[s],d=(p=this.styles)&&p.whiteSpace;if(i(e,{marginLeft:n,marginTop:o}),!t.styledMode&&this.shadows&&this.shadows.forEach(function(t){i(t,{marginLeft:n+1,marginTop:o+1})}),this.inverted&&[].forEach.call(e.childNodes,function(n){t.invertChild(n,e)}),"SPAN"===e.tagName){var h,p=this.rotation,f=this.textWidth&&c(this.textWidth),m=[p,s,e.innerHTML,this.textWidth,this.textAlign].join();(h=f!==this.oldTextWidth)&&!(h=f>this.oldTextWidth)&&((h=this.textPxLength)||(i(e,{width:"",whiteSpace:d||"nowrap"}),h=e.offsetWidth),h=h>f),h&&(/[ \-]/.test(e.textContent||e.innerText)||"ellipsis"===e.style.textOverflow)?(i(e,{width:f+"px",display:"block",whiteSpace:d||"normal"}),this.oldTextWidth=f,this.hasBoxWidthChanged=!0):this.hasBoxWidthChanged=!1,m!==this.cTT&&(d=t.fontMetrics(e.style.fontSize,e).b,!r(p)||p===(this.oldRotation||0)&&s===this.oldAlign||this.setSpanRotation(p,u,d),this.getSpanCorrection(!r(p)&&this.textPxLength||e.offsetWidth,d,u,p,s)),i(e,{left:a+(this.xCorr||0)+"px",top:l+(this.yCorr||0)+"px"}),this.cTT=m,this.oldRotation=p,this.oldAlign=s}}else this.alignOnAdd=!0},setSpanRotation:function(t,e,n){var r={},o=this.renderer.getTransformKey();r[o]=r.transform="rotate("+t+"deg)",r[o+(a?"Origin":"-origin")]=r.transformOrigin=100*e+"% "+n+"px",i(this.element,r)},getSpanCorrection:function(t,e,n){this.xCorr=-t*n,this.yCorr=-e}}),o(h.prototype,{getTransformKey:function(){return l&&!/Edge/.test(p.navigator.userAgent)?"-ms-transform":s?"-webkit-transform":a?"MozTransform":p.opera?"-o-transform":""},html:function(i,r,a){var l=this.createElement("span"),s=l.element,c=l.renderer,h=c.isSVG,p=function(t,e){["opacity","visibility"].forEach(function(n){t[n+"Setter"]=function(t,i,r){d.prototype[n+"Setter"].call(this,t,i,r),e[i]=t}}),t.addedSetters=!0},f=(f=t.charts[c.chartIndex])&&f.styledMode;return l.textSetter=function(t){t!==s.innerHTML&&delete this.bBox,this.textStr=t,s.innerHTML=u(t,""),l.doTransform=!0},h&&p(l,l.element.style),l.xSetter=l.ySetter=l.alignSetter=l.rotationSetter=function(t,e){"align"===e&&(e="textAlign"),l[e]=t,l.doTransform=!0},l.afterSetters=function(){this.doTransform&&(this.htmlUpdateTransform(),this.doTransform=!1)},l.attr({text:i,x:Math.round(r),y:Math.round(a)}).css({position:"absolute"}),f||l.css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize}),s.style.whiteSpace="nowrap",l.css=l.htmlCss,h&&(l.add=function(t){var i,r=c.box.parentNode,a=[];if(this.parentGroup=t){if(!(i=t.div)){for(;t;)a.push(t),t=t.parentGroup;a.reverse().forEach(function(t){function s(e,n){t[n]=e,"translateX"===n?u.left=e+"px":u.top=e+"px",t.doTransform=!0}var u,c=e(t.element,"class");c&&(c={className:c}),i=t.div=t.div||n("div",c,{position:"absolute",left:(t.translateX||0)+"px",top:(t.translateY||0)+"px",display:t.display,opacity:t.opacity,pointerEvents:t.styles&&t.styles.pointerEvents},i||r),u=i.style,o(t,{classSetter:function(t){return function(e){this.element.setAttribute("class",e),t.className=e}}(i),on:function(){return a[0].div&&l.on.apply({element:a[0].div},arguments),t},translateXSetter:s,translateYSetter:s}),t.addedSetters||p(t,u)})}}else i=r;return i.appendChild(s),l.added=!0,l.alignOnAdd&&l.htmlUpdateTransform(),l}),l}})}(u),function(t){var e=t.defined,n=t.extend,i=t.merge,r=t.pick,o=t.timeUnits,a=t.win;t.Time=function(t){this.update(t,!1)},t.Time.prototype={defaultOptions:{},update:function(t){var e=r(t&&t.useUTC,!0),n=this;this.options=t=i(!0,this.options||{},t),this.Date=t.Date||a.Date||Date,this.timezoneOffset=(this.useUTC=e)&&t.timezoneOffset,this.getTimezoneOffset=this.timezoneOffsetFunction(),(this.variableTimezone=!(e&&!t.getTimezoneOffset&&!t.timezone))||this.timezoneOffset?(this.get=function(t,e){var i=e.getTime(),r=i-n.getTimezoneOffset(e);return e.setTime(r),t=e["getUTC"+t](),e.setTime(i),t},this.set=function(t,e,i){var r;"Milliseconds"===t||"Seconds"===t||"Minutes"===t&&0==e.getTimezoneOffset()%60?e["set"+t](i):(r=n.getTimezoneOffset(e),r=e.getTime()-r,e.setTime(r),e["setUTC"+t](i),t=n.getTimezoneOffset(e),r=e.getTime()+t,e.setTime(r))}):e?(this.get=function(t,e){return e["getUTC"+t]()},this.set=function(t,e,n){return e["setUTC"+t](n)}):(this.get=function(t,e){return e["get"+t]()},this.set=function(t,e,n){return e["set"+t](n)})},makeTime:function(e,n,i,o,a,l){var s,u,c;return this.useUTC?(s=this.Date.UTC.apply(0,arguments),(u=this.getTimezoneOffset(s))!==(c=this.getTimezoneOffset(s+=u))?s+=c-u:u-36e5!==this.getTimezoneOffset(s-36e5)||t.isSafari||(s-=36e5)):s=new this.Date(e,n,r(i,1),r(o,0),r(a,0),r(l,0)).getTime(),s},timezoneOffsetFunction:function(){var e=this,n=this.options,i=a.moment;if(!this.useUTC)return function(t){return 6e4*new Date(t).getTimezoneOffset()};if(n.timezone){if(i)return function(t){return 6e4*-i.tz(t,n.timezone).utcOffset()};t.error(25)}return this.useUTC&&n.getTimezoneOffset?function(t){return 6e4*n.getTimezoneOffset(t)}:function(){return 6e4*(e.timezoneOffset||0)}},dateFormat:function(e,n,i){if(!t.defined(n)||isNaN(n))return t.defaultOptions.lang.invalidDate||"";e=t.pick(e,"%Y-%m-%d %H:%M:%S");var r=this,o=new this.Date(n),a=this.get("Hours",o),l=this.get("Day",o),s=this.get("Date",o),u=this.get("Month",o),c=this.get("FullYear",o),d=t.defaultOptions.lang,h=d.weekdays,p=d.shortWeekdays,f=t.pad;return o=t.extend({a:p?p[l]:h[l].substr(0,3),A:h[l],d:f(s),e:f(s,2," "),w:l,b:d.shortMonths[u],B:d.months[u],m:f(u+1),o:u+1,y:c.toString().substr(2,2),Y:c,H:f(a),k:a,I:f(a%12||12),l:a%12||12,M:f(r.get("Minutes",o)),p:12>a?"AM":"PM",P:12>a?"am":"pm",S:f(o.getSeconds()),L:f(Math.floor(n%1e3),3)},t.dateFormats),t.objectEach(o,function(t,i){for(;-1!==e.indexOf("%"+i);)e=e.replace("%"+i,"function"==typeof t?t.call(r,n):t)}),i?e.substr(0,1).toUpperCase()+e.substr(1):e},resolveDTLFormat:function(e){return t.isObject(e,!0)?e:{main:(e=t.splat(e))[0],from:e[1],to:e[2]}},getTimeTicks:function(t,i,a,l){var s,u,c=this,d=[],h={};s=new c.Date(i);var p,f=t.unitRange,m=t.count||1;if(l=r(l,1),e(i)){c.set("Milliseconds",s,f>=o.second?0:m*Math.floor(c.get("Milliseconds",s)/m)),f>=o.second&&c.set("Seconds",s,f>=o.minute?0:m*Math.floor(c.get("Seconds",s)/m)),f>=o.minute&&c.set("Minutes",s,f>=o.hour?0:m*Math.floor(c.get("Minutes",s)/m)),f>=o.hour&&c.set("Hours",s,f>=o.day?0:m*Math.floor(c.get("Hours",s)/m)),f>=o.day&&c.set("Date",s,f>=o.month?1:Math.max(1,m*Math.floor(c.get("Date",s)/m))),f>=o.month&&(c.set("Month",s,f>=o.year?0:m*Math.floor(c.get("Month",s)/m)),u=c.get("FullYear",s)),f>=o.year&&c.set("FullYear",s,u-u%m),f===o.week&&(u=c.get("Day",s),c.set("Date",s,c.get("Date",s)-u+l+(u4*o.month||c.getTimezoneOffset(i)!==c.getTimezoneOffset(a)),i=s.getTime(),s=1;id.length&&d.forEach(function(t){0==t%18e5&&"000000000"===c.dateFormat("%H%M%S%L",t)&&(h[t]="day")})}return d.info=n(t,{higherRanks:h,totalRange:f*m}),d}}}(u),function(t){var e=t.color,n=t.merge;t.defaultOptions={colors:"#7cb5ec #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1".split(" "),symbols:["circle","diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:"January February March April May June July August September October November December".split(" "),shortMonths:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),weekdays:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),decimalPoint:".",numericSymbols:"kMGTPE".split(""),resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:" "},global:{},time:t.Time.prototype.defaultOptions,chart:{styledMode:!1,borderRadius:0,colorCount:10,defaultSeriesType:"line",ignoreHiddenSeries:!0,spacing:[10,10,15,10],resetZoomButton:{theme:{zIndex:6},position:{align:"right",x:-10,y:10}},width:null,height:null,borderColor:"#335cad",backgroundColor:"#ffffff",plotBorderColor:"#cccccc"},title:{text:"Chart title",align:"center",margin:15,widthAdjust:-44},subtitle:{text:"",align:"center",widthAdjust:-44},plotOptions:{},labels:{style:{position:"absolute",color:"#333333"}},legend:{enabled:!0,align:"center",alignColumns:!0,layout:"horizontal",labelFormatter:function(){return this.name},borderColor:"#999999",borderRadius:0,navigation:{activeColor:"#003399",inactiveColor:"#cccccc"},itemStyle:{color:"#333333",cursor:"pointer",fontSize:"12px",fontWeight:"bold",textOverflow:"ellipsis"},itemHoverStyle:{color:"#000000"},itemHiddenStyle:{color:"#cccccc"},shadow:!1,itemCheckboxStyle:{position:"absolute",width:"13px",height:"13px"},squareSymbol:!0,symbolPadding:5,verticalAlign:"bottom",x:0,y:0,title:{style:{fontWeight:"bold"}}},loading:{labelStyle:{fontWeight:"bold",position:"relative",top:"45%"},style:{position:"absolute",backgroundColor:"#ffffff",opacity:.5,textAlign:"center"}},tooltip:{enabled:!0,animation:t.svg,borderRadius:3,dateTimeLabelFormats:{millisecond:"%A, %b %e, %H:%M:%S.%L",second:"%A, %b %e, %H:%M:%S",minute:"%A, %b %e, %H:%M",hour:"%A, %b %e, %H:%M",day:"%A, %b %e, %Y",week:"Week from %A, %b %e, %Y",month:"%B %Y",year:"%Y"},footerFormat:"",padding:8,snap:t.isTouchDevice?25:10,headerFormat:'{point.key}
',pointFormat:'\u25cf {series.name}: {point.y}
',backgroundColor:e("#f7f7f7").setOpacity(.85).get(),borderWidth:1,shadow:!0,style:{color:"#333333",cursor:"default",fontSize:"12px",pointerEvents:"none",whiteSpace:"nowrap"}},credits:{enabled:!0,href:"https://www.highcharts.com?credits",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#999999",fontSize:"9px"},text:"Highcharts.com"}},t.setOptions=function(e){return t.defaultOptions=n(!0,t.defaultOptions,e),t.time.update(n(t.defaultOptions.global,t.defaultOptions.time),!1),t.defaultOptions},t.getOptions=function(){return t.defaultOptions},t.defaultPlotOptions=t.defaultOptions.plotOptions,t.time=new t.Time(n(t.defaultOptions.global,t.defaultOptions.time)),t.dateFormat=function(e,n,i){return t.time.dateFormat(e,n,i)}}(u),function(t){var e=t.correctFloat,n=t.defined,i=t.destroyObjectProperties,r=t.fireEvent,o=t.isNumber,a=t.merge,l=t.pick,s=t.deg2rad;t.Tick=function(t,e,n,i,r){this.axis=t,this.pos=e,this.type=n||"",this.isNewLabel=this.isNew=!0,this.parameters=r||{},this.tickmarkOffset=this.parameters.tickmarkOffset,this.options=this.parameters.options,n||i||this.addLabel()},t.Tick.prototype={addLabel:function(){var i,r,o,s,u=this,c=u.axis,d=c.options,h=c.chart,p=c.categories,f=c.names,m=u.pos,g=l(u.options&&u.options.labels,d.labels),y=m===(b=c.tickPositions)[0],_=m===b[b.length-1],v=(p=this.parameters.category||(p?l(p[m],f[m],m):m),u.label),b=b.info;c.isDatetimeAxis&&b&&(i=(r=h.time.resolveDTLFormat(d.dateTimeLabelFormats[!d.grid&&b.higherRanks[m]||b.unitName])).main),u.isFirst=y,u.isLast=_,u.formatCtx={axis:c,chart:h,isFirst:y,isLast:_,dateTimeLabelFormat:i,tickPositionInfo:b,value:c.isLog?e(c.lin2log(p)):p,pos:m},d=c.labelFormatter.call(u.formatCtx,this.formatCtx),(s=r&&r.list)&&(u.shortenLabel=function(){for(o=0;od&&r-h*pa&&(e=Math.round((o-r)/Math.cos(d*s))):(o=r+(1-h)*p,r-h*pa&&(m=a-t.x+m*h,g=-1),(m=Math.min(f,m))m||n.autoRotation&&(c.styles||{}).width)&&(e=m)),e&&(this.shortenLabel?this.shortenLabel():(y.width=Math.floor(e),(i.style||{}).textOverflow||(y.textOverflow="ellipsis"),c.css(y)))},getPosition:function(e,n,i,o){var a=this.axis,l=a.chart,s=o&&l.oldChartHeight||l.chartHeight;return e={x:e?t.correctFloat(a.translate(n+i,null,null,o)+a.transB):a.left+a.offset+(a.opposite?(o&&l.oldChartWidth||l.chartWidth)-a.right-a.left:0),y:e?s-a.bottom+a.offset-(a.opposite?a.height:0):t.correctFloat(s-a.translate(n+i,null,null,o)-a.transB)},r(this,"afterGetPosition",{pos:e}),e},getLabelPosition:function(t,e,i,o,a,l,u,c){var d=this.axis,h=d.transA,p=d.reversed,f=d.staggerLines,m=d.tickRotCorr||{x:0,y:0},g=a.y,y=o||d.reserveSpaceDefault?0:-d.labelOffset*("center"===d.labelAlign?.5:1),_={};return n(g)||(g=0===d.side?i.rotation?-8:-i.getBBox().height:2===d.side?m.y+8:Math.cos(i.rotation*s)*(m.y-i.getBBox(!1,0).height/2)),e=e+g-(l&&!o?l*h*(p?1:-1):0),f&&(i=u/(c||1)%f,d.opposite&&(i=f-i-1),e+=d.labelOffset/f*i),_.x=t=t+a.x+y+m.x-(l&&o?l*h*(p?-1:1):0),_.y=Math.round(e),r(this,"afterGetLabelPosition",{pos:_,tickmarkOffset:l,index:u}),_},getMarkPath:function(t,e,n,i,r,o){return o.crispLine(["M",t,e,"L",t+(r?0:-n),e+(r?n:0)],i)},renderGridLine:function(t,e,n){var i=this.axis,r=i.options,o=this.gridLine,a={},s=this.pos,u=this.type,c=l(this.tickmarkOffset,i.tickmarkOffset),d=i.chart.renderer,h=u?u+"Grid":"grid",p=r[h+"LineWidth"],f=r[h+"LineColor"];r=r[h+"LineDashStyle"],o||(i.chart.styledMode||(a.stroke=f,a["stroke-width"]=p,r&&(a.dashstyle=r)),u||(a.zIndex=1),t&&(e=0),this.gridLine=o=d.path().attr(a).addClass("highcharts-"+(u?u+"-":"")+"grid-line").add(i.gridGroup)),o&&(n=i.getPlotLinePath(s+c,o.strokeWidth()*n,t,"pass"))&&o[t||this.isNew?"attr":"animate"]({d:n,opacity:e})},renderMark:function(t,e,n){var i=this.axis,r=i.options,o=i.chart.renderer,a=this.type,s=a?a+"Tick":"tick",u=i.tickSize(s),c=this.mark,d=!c,h=t.x;t=t.y;var p=l(r[s+"Width"],!a&&i.isXAxis?1:0);r=r[s+"Color"],u&&(i.opposite&&(u[0]=-u[0]),d&&(this.mark=c=o.path().addClass("highcharts-"+(a?a+"-":"")+"tick").add(i.axisGroup),i.chart.styledMode||c.attr({stroke:r,"stroke-width":p})),c[d?"attr":"animate"]({d:this.getMarkPath(h,t,u[0],c.strokeWidth()*n,i.horiz,o),opacity:e}))},renderLabel:function(t,e,n,i){var r=(d=this.axis).horiz,a=d.options,s=this.label,u=a.labels,c=u.step,d=l(this.tickmarkOffset,d.tickmarkOffset),h=!0,p=t.x;t=t.y,s&&o(p)&&(s.xy=t=this.getLabelPosition(p,t,s,r,u,d,i,c),this.isFirst&&!this.isLast&&!l(a.showFirstLabel,1)||this.isLast&&!this.isFirst&&!l(a.showLastLabel,1)?h=!1:!r||u.step||u.rotation||e||0===n||this.handleOverflow(t),c&&i%c&&(h=!1),h&&o(t.y)?(t.opacity=n,s[this.isNewLabel?"attr":"animate"](t),this.isNewLabel=!1):(s.attr("y",-9999),this.isNewLabel=!0))},render:function(e,n,i){var r=(s=this.axis).horiz,o=this.pos,a=l(this.tickmarkOffset,s.tickmarkOffset),s=(a=(o=this.getPosition(r,o,a,n)).x,r&&a===s.pos+s.len||!r&&o.y===s.pos?-1:1);i=l(i,1),this.isActive=!0,this.renderGridLine(n,i,s),this.renderMark(o,i,s),this.renderLabel(o,n,i,e),this.isNew=!1,t.fireEvent(this,"afterRender")},destroy:function(){i(this,this.axis)}}}(u);var c=function(t){var e=t.addEvent,n=t.animObject,i=t.arrayMax,r=t.arrayMin,o=t.color,a=t.correctFloat,l=t.defaultOptions,s=t.defined,u=t.deg2rad,c=t.destroyObjectProperties,d=t.extend,h=t.fireEvent,p=t.format,f=t.getMagnitude,m=t.isArray,g=t.isNumber,y=t.isString,_=t.merge,v=t.normalizeTickInterval,b=t.objectEach,x=t.pick,w=t.removeEvent,k=t.splat,M=t.syncTimeout,S=t.Tick,C=function(){this.init.apply(this,arguments)};return t.extend(C.prototype,{defaultOptions:{dateTimeLabelFormats:{millisecond:{main:"%H:%M:%S.%L",range:!1},second:{main:"%H:%M:%S",range:!1},minute:{main:"%H:%M",range:!1},hour:{main:"%H:%M",range:!1},day:{main:"%e. %b"},week:{main:"%e. %b"},month:{main:"%b '%y"},year:{main:"%Y"}},endOnTick:!1,labels:{enabled:!0,indentation:10,x:0,style:{color:"#666666",cursor:"default",fontSize:"11px"}},maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",minPadding:.01,startOfWeek:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickmarkPlacement:"between",tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb",lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,maxPadding:.05,minPadding:.05,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{allowOverlap:!1,enabled:!1,formatter:function(){return t.numberFormat(this.total,-1)},style:{color:"#000000",fontSize:"11px",fontWeight:"bold",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15},title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},init:function(t,n){var i=n.isX,r=this;r.chart=t,r.horiz=t.inverted&&!r.isZAxis?!i:i,r.isXAxis=i,r.coll=r.coll||(i?"xAxis":"yAxis"),h(this,"init",{userOptions:n}),r.opposite=n.opposite,r.side=n.side||(r.horiz?r.opposite?0:2:r.opposite?1:3),r.setOptions(n);var o=this.options,a=o.type;r.labelFormatter=o.labels.formatter||r.defaultLabelFormatter,r.userOptions=n,r.minPixelPadding=0,r.reversed=o.reversed,r.visible=!1!==o.visible,r.zoomEnabled=!1!==o.zoomEnabled,r.hasNames="category"===a||!0===o.categories,r.categories=o.categories||r.hasNames,r.names||(r.names=[],r.names.keys={}),r.plotLinesAndBandsGroups={},r.isLog="logarithmic"===a,r.isDatetimeAxis="datetime"===a,r.positiveValuesOnly=r.isLog&&!r.allowNegativeLog,r.isLinked=s(o.linkedTo),r.ticks={},r.labelEdge=[],r.minorTicks={},r.plotLinesAndBands=[],r.alternateBands={},r.len=0,r.minRange=r.userMinRange=o.minRange||o.maxZoom,r.range=o.range,r.offset=o.offset||0,r.stacks={},r.oldStacks={},r.stacksTouched=0,r.max=null,r.min=null,r.crosshair=x(o.crosshair,k(t.options.tooltip.crosshairs)[i?0:1],!1),n=r.options.events,-1===t.axes.indexOf(r)&&(i?t.axes.splice(t.xAxis.length,0,r):t.axes.push(r),t[r.coll].push(r)),r.series=r.series||[],t.inverted&&!r.isZAxis&&i&&void 0===r.reversed&&(r.reversed=!0),b(n,function(t,n){e(r,n,t)}),r.lin2log=o.linearToLogConverter||r.lin2log,r.isLog&&(r.val2lin=r.log2lin,r.lin2val=r.lin2log),h(this,"afterInit")},setOptions:function(t){this.options=_(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],_(l[this.coll],t)),h(this,"afterSetOptions",{userOptions:t})},defaultLabelFormatter:function(){var e,n=this.value,i=(d=this.axis).chart.time,r=d.categories,o=this.dateTimeLabelFormat,a=(s=l.lang).numericSymbols,s=s.numericSymbolMagnitude||1e3,u=a&&a.length,c=d.options.labels.format,d=d.isLog?Math.abs(n):d.tickInterval;if(c)e=p(c,this,i);else if(r)e=n;else if(o)e=i.dateFormat(o,n);else if(u&&1e3<=d)for(;u--&&void 0===e;)d>=(i=Math.pow(s,u+1))&&0==10*n%i&&null!==a[u]&&0!==n&&(e=t.numberFormat(n/i,-1)+a[u]);return void 0===e&&(e=1e4<=Math.abs(n)?t.numberFormat(n,-1):t.numberFormat(n,-1,void 0,"")),e},getSeriesExtremes:function(){var t=this,e=t.chart;h(this,"getSeriesExtremes",null,function(){t.hasVisibleSeries=!1,t.dataMin=t.dataMax=t.threshold=null,t.softThreshold=!t.isXAxis,t.buildStacks&&t.buildStacks(),t.series.forEach(function(n){if(n.visible||!e.options.chart.ignoreHiddenSeries){var o,a=n.options,l=a.threshold;t.hasVisibleSeries=!0,t.positiveValuesOnly&&0>=l&&(l=null),t.isXAxis?(a=n.xData).length&&(n=r(a),o=i(a),g(n)||n instanceof Date||(a=a.filter(g),n=r(a),o=i(a)),a.length&&(t.dataMin=Math.min(x(t.dataMin,a[0],n),n),t.dataMax=Math.max(x(t.dataMax,a[0],o),o))):(n.getExtremes(),o=n.dataMax,s(n=n.dataMin)&&s(o)&&(t.dataMin=Math.min(x(t.dataMin,n),n),t.dataMax=Math.max(x(t.dataMax,o),o)),s(l)&&(t.threshold=l),(!a.softThreshold||t.positiveValuesOnly)&&(t.softThreshold=!1))}})}),h(this,"afterGetSeriesExtremes")},translate:function(t,e,n,i,r,o){var a=this.linkedParent||this,l=1,s=0,u=i?a.oldTransA:a.transA;i=i?a.oldMin:a.min;var c=a.minPixelPadding;return r=(a.isOrdinal||a.isBroken||a.isLog&&r)&&a.lin2val,u||(u=a.transA),n&&(l*=-1,s=a.len),a.reversed&&(s-=(l*=-1)*(a.sector||a.len)),e?(t=(t*l+s-c)/u+i,r&&(t=a.lin2val(t))):(r&&(t=a.val2lin(t)),t=g(i)?l*(t-i)*u+s+l*c+(g(o)?u*o:0):void 0),t},toPixels:function(t,e){return this.translate(t,!1,!this.horiz,null,!0)+(e?0:this.pos)},toValue:function(t,e){return this.translate(t-(e?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(t,e,n,i,r){var o,a,l,s,u,c,d=this,p=d.chart,f=d.left,m=d.top,y=n&&p.oldChartHeight||p.chartHeight,_=n&&p.oldChartWidth||p.chartWidth,v=d.transB,b=function(t,e,n){return("pass"!==i&&tn)&&(i?t=Math.min(Math.max(e,t),n):u=!0),t};return h(this,"getPlotLinePath",c={value:t,lineWidth:e,old:n,force:i,translatedValue:r},function(c){r=x(r,d.translate(t,null,null,n)),r=Math.min(Math.max(-1e5,r),1e5),o=l=Math.round(r+v),a=s=Math.round(y-r-v),g(r)?d.horiz?(a=m,s=y-d.bottom,o=l=b(o,f,f+d.width)):(o=f,l=_-d.right,a=s=b(a,m,m+d.height)):(u=!0,i=!1),c.path=u&&!i?null:p.renderer.crispLine(["M",o,a,"L",l,s],e||1)}),c.path},getLinearTickPositions:function(t,e,n){var i,r=a(Math.floor(e/t)*t);n=a(Math.ceil(n/t)*t);var o,l=[];if(a(r+t)===r&&(o=20),this.single)return[e];for(e=r;e<=n&&(l.push(e),(e=a(e+t,o))!==i);)i=e;return l},getMinorTickInterval:function(){var t=this.options;return!0===t.minorTicks?x(t.minorTickInterval,"auto"):!1===t.minorTicks?null:t.minorTickInterval},getMinorTickPositions:function(){var t,e=this,n=e.options,i=e.tickPositions,r=e.minorTickInterval,o=[],a=e.min-(t=e.pointRangePadding||0),l=(t=e.max+t)-a;if(l&&l/r=this.minRange,t=[d-(t=((u=this.minRange)-h+d)/2),x(c.min,d-t)],e&&(t[2]=this.isLog?this.log2lin(this.dataMin):this.dataMin),h=[(d=i(t))+u,x(c.max,d+u)],e&&(h[2]=this.isLog?this.log2lin(this.dataMax):this.dataMax),(h=r(h))-d=S?(n=S,b=0):l.dataMax<=S&&(i=S,_=0)),l.min=x(r,n,l.dataMin),l.max=x(o,i,l.dataMax)),d&&(l.positiveValuesOnly&&!e&&0>=Math.min(l.min,x(l.dataMin,l.min))&&t.error(10,1,u),l.min=a(l.log2lin(l.min),15),l.max=a(l.log2lin(l.max),15)),l.range&&s(l.max)&&(l.userMin=l.min=r=Math.max(l.dataMin,l.minFromRange()),l.userMax=o=l.max,l.range=null),h(l,"foundExtremes"),l.beforePadding&&l.beforePadding(),l.adjustForMinRange(),!(M||l.axisPointRange||l.usePercentage||y)&&s(l.min)&&s(l.max)&&(u=l.max-l.min)&&(!s(r)&&b&&(l.min-=u*b),!s(o)&&_&&(l.max+=u*_)),g(c.softMin)&&!g(l.userMin)&&(l.min=Math.min(l.min,c.softMin)),g(c.softMax)&&!g(l.userMax)&&(l.max=Math.max(l.max,c.softMax)),g(c.floor)&&(l.min=Math.min(Math.max(l.min,c.floor),Number.MAX_VALUE)),g(c.ceiling)&&(l.max=Math.max(Math.min(l.max,c.ceiling),x(l.userMax,-Number.MAX_VALUE))),C&&s(l.dataMin)&&(S=S||0,!s(r)&&l.min=S?l.min=S:!s(o)&&l.max>S&&l.dataMax<=S&&(l.max=S)),l.tickInterval=l.min===l.max||void 0===l.min||void 0===l.max?1:y&&!w&&k===l.linkedParent.options.tickPixelInterval?w=l.linkedParent.tickInterval:x(w,this.tickAmount?(l.max-l.min)/Math.max(this.tickAmount-1,1):void 0,M?1:(l.max-l.min)*k/Math.max(l.len,k)),m&&!e&&l.series.forEach(function(t){t.processData(l.min!==l.oldMin||l.max!==l.oldMax)}),l.setAxisTranslation(!0),l.beforeSetTickPositions&&l.beforeSetTickPositions(),l.postProcessTickInterval&&(l.tickInterval=l.postProcessTickInterval(l.tickInterval)),l.pointRange&&!w&&(l.tickInterval=Math.max(l.pointRange,l.tickInterval)),e=x(c.minTickInterval,l.isDatetimeAxis&&l.closestPointRange),!w&&l.tickIntervall.tickInterval&&1e3l.max)),!!this.tickAmount)),this.tickAmount||(l.tickInterval=l.unsquish()),this.setTickPositions()},setTickPositions:function(){var e,n=this.options,i=n.tickPositions;e=this.getMinorTickInterval();var r=n.tickPositioner,o=n.startOnTick,a=n.endOnTick;this.tickmarkOffset=this.categories&&"between"===n.tickmarkPlacement&&1===this.tickInterval?.5:0,this.minorTickInterval="auto"===e&&this.tickInterval?this.tickInterval/5:e,this.single=this.min===this.max&&s(this.min)&&!this.tickAmount&&(parseInt(this.min,10)===this.min||!1!==n.allowDecimals),this.tickPositions=e=i&&i.slice(),!e&&(!this.ordinalPositions&&(this.max-this.min)/this.tickInterval>Math.max(2*this.len,200)?(e=[this.min,this.max],t.error(19,!1,this.chart)):e=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,n.units),this.min,this.max,n.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),e.length>this.len&&(e=[e[0],e.pop()])[0]===e[1]&&(e.length=1),this.tickPositions=e,r&&(r=r.apply(this,[this.min,this.max])))&&(this.tickPositions=e=r),this.paddedTicks=e.slice(0),this.trimTicks(e,o,a),this.isLinked||(this.single&&2>e.length&&(this.min-=.5,this.max+=.5),i||r||this.adjustTickAmount()),h(this,"afterSetTickPositions")},trimTicks:function(t,e,n){var i=t[0],r=t[t.length-1],o=this.minPointOffset||0;if(h(this,"trimTicks"),!this.isLinked){if(e&&-1/0!==i)this.min=i;else for(;this.min-o>t[0];)t.shift();if(n)this.max=r;else for(;this.max+oe&&(this.finalTickAmt=e,e=5),this.tickAmount=e},adjustTickAmount:function(){var t,e=this.options,n=this.tickInterval,i=this.tickPositions,r=this.tickAmount,o=this.finalTickAmt,l=i&&i.length,u=x(this.threshold,this.softThreshold?0:null);if(this.hasData()){if(lr&&(this.tickInterval*=2,this.setTickPositions());if(s(o)){for(n=e=i.length;n--;)(3===o&&1==n%2||2>=o&&0a&&(e=a)),s(i)&&(ra&&(r=a))),this.displayBtn=void 0!==e||void 0!==r,this.setExtremes(e,r,!1,void 0,{trigger:"zoom"})),t.zoomed=!0}),t.zoomed},setAxisSize:function(){var e=this.chart,n=(l=this.options).offsets||[0,0,0,0],i=this.horiz,r=this.width=Math.round(t.relativeLength(x(l.width,e.plotWidth-n[3]+n[1]),e.plotWidth)),o=this.height=Math.round(t.relativeLength(x(l.height,e.plotHeight-n[0]+n[2]),e.plotHeight)),a=this.top=Math.round(t.relativeLength(x(l.top,e.plotTop+n[0]),e.plotHeight,e.plotTop)),l=this.left=Math.round(t.relativeLength(x(l.left,e.plotLeft+n[3]),e.plotWidth,e.plotLeft));this.bottom=e.chartHeight-o-a,this.right=e.chartWidth-r-l,this.len=Math.max(i?r:o,0),this.pos=i?l:a},getExtremes:function(){var t=this.isLog;return{min:t?a(this.lin2log(this.min)):this.min,max:t?a(this.lin2log(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(t){var e=(n=this.isLog)?this.lin2log(this.min):this.min,n=n?this.lin2log(this.max):this.max;return null===t||-1/0===t?t=e:1/0===t?t=n:e>t?t=e:ne?t.align="right":195e&&(t.align="left")}),t.align},tickSize:function(t){var e,n=this.options,i=n[t+"Length"],r=x(n[t+"Width"],"tick"===t&&this.isXAxis?1:0);return r&&i&&("inside"===n[t+"Position"]&&(i=-i),e=[i,r]),h(this,"afterTickSize",t={tickSize:e}),t.tickSize},labelMetrics:function(){var t=this.tickPositions&&this.tickPositions[0]||0;return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize,this.ticks[t]&&this.ticks[t].label)},unsquish:function(){var t,e,n,i=this.options.labels,r=this.horiz,o=this.tickInterval,l=o,c=this.len/(((this.categories?1:0)+this.max-this.min)/o),d=i.rotation,h=this.labelMetrics(),p=Number.MAX_VALUE,f=this.max-this.min,m=function(t){var e;return(e=1<(e=t/(c||1))?Math.ceil(e):1)*o>f&&1/0!==t&&1/0!==c&&(e=Math.ceil(f/o)),a(e*o)};return r?(n=!i.staggerLines&&!i.step&&(s(d)?[d]:c=n)&&(i=(e=m(Math.abs(h.h/Math.sin(u*n))))+Math.abs(n/360))(i.step||0)&&!i.rotation&&(this.staggerLines||1)*this.len/r||!n&&(i.style&&parseInt(i.style.width,10)||o&&o-e.spacing[3]||.33*e.chartWidth)},renderUnsquish:function(){var t,e,n,i=this.chart,r=i.renderer,o=this.tickPositions,a=this.ticks,l=this.options.labels,s=l&&l.style||{},u=this.horiz,c=this.getSlotWidth(),d=Math.max(1,Math.round(c-2*(l.padding||5))),h={},p=this.labelMetrics(),f=l.style&&l.style.textOverflow,m=0;if(y(l.rotation)||(h.rotation=l.rotation||0),o.forEach(function(t){(t=a[t])&&t.label&&t.label.textPxLength>m&&(m=t.label.textPxLength)}),this.maxLabelLength=m,this.autoRotation)m>d&&m>p.h?h.rotation=this.labelRotation:this.labelRotation=0;else if(c&&(t=d,!f))for(e="clip",d=o.length;!u&&d--;)(n=a[n=o[d]].label)&&(n.styles&&"ellipsis"===n.styles.textOverflow?n.css({textOverflow:"clip"}):n.textPxLength>c&&n.css({width:c+"px"}),n.getBBox().height>this.len/o.length-(p.h-p.f)&&(n.specificTextOverflow="ellipsis"));h.rotation&&(t=m>.5*i.chartHeight?.33*i.chartHeight:m,f||(e="ellipsis")),(this.labelAlign=l.align||this.autoLabelAlign(this.labelRotation))&&(h.align=this.labelAlign),o.forEach(function(n){var i=(n=a[n])&&n.label,r=s.width,o={};i&&(i.attr(h),n.shortenLabel?n.shortenLabel():t&&!r&&"nowrap"!==s.whiteSpace&&(t=this.min&&t<=this.max)&&(i[t]||(i[t]=new S(this,t)),r&&i[t].isNew&&i[t].render(e,!0,-1),i[t].render(e))},render:function(){var e,i,r=this,o=r.chart,a=r.options,l=r.isLog,s=r.isLinked,u=r.tickPositions,c=r.axisTitle,d=r.ticks,p=r.minorTicks,f=r.alternateBands,m=a.stackLabels,y=a.alternateGridColor,_=r.tickmarkOffset,v=r.axisLine,x=r.showAxis,w=n(o.renderer.globalAnimation);r.labelEdge.length=0,r.overlap=!1,[d,p,f].forEach(function(t){b(t,function(t){t.isActive=!1})}),(r.hasData()||s)&&(r.minorTickInterval&&!r.categories&&r.getMinorTickPositions().forEach(function(t){r.renderMinorTick(t)}),u.length&&(u.forEach(function(t,e){r.renderTick(t,e)}),_&&(0===r.min||r.single)&&(d[-1]||(d[-1]=new S(r,-1,null,!0)),d[-1].render(-1))),y&&u.forEach(function(n,a){i=void 0!==u[a+1]?u[a+1]+_:r.max-_,0==a%2&&ne&&(!a||p<=o)&&void 0!==p&&u.push(p),p>o&&(f=!0),p=h}else e=this.lin2log(e),o=this.lin2log(o),t=a?this.getMinorTickInterval():l.tickInterval,t=r("auto"===t?null:t,this._minorAutoInterval,l.tickPixelInterval/(a?5:1)*(o-e)/((a?s/this.tickPositions.length:s)||1)),t=i(t,null,n(t)),u=this.getLinearTickPositions(t,e,o).map(this.log2lin),a||(this._minorAutoInterval=t/5);return a||(this.tickInterval=t),u},e.prototype.log2lin=function(t){return Math.log(t)/Math.LN10},e.prototype.lin2log=function(t){return Math.pow(10,t)}}(),function(t,e){var n=t.arrayMax,i=t.arrayMin,r=t.defined,o=t.destroyObjectProperties,a=t.erase,l=t.merge,s=t.pick;t.PlotLineOrBand=function(t,e){this.axis=t,e&&(this.options=e,this.id=e.id)},t.PlotLineOrBand.prototype={render:function(){t.fireEvent(this,"render");var e=this,n=e.axis,i=n.horiz,o=e.options,a=o.label,u=e.label,c=o.to,d=o.from,h=o.value,p=r(d)&&r(c),f=r(h),m=e.svgElem,g=!m,y=[],_=o.color,v=s(o.zIndex,0),b=o.events,x=(y={class:"highcharts-plot-"+(p?"band ":"line ")+(o.className||"")},{}),w=n.chart.renderer,k=p?"bands":"lines";if(n.isLog&&(d=n.log2lin(d),c=n.log2lin(c),h=n.log2lin(h)),n.chart.styledMode||(f?(y.stroke=_,y["stroke-width"]=o.width,o.dashStyle&&(y.dashstyle=o.dashStyle)):p&&(_&&(y.fill=_),o.borderWidth&&(y.stroke=o.borderColor,y["stroke-width"]=o.borderWidth))),x.zIndex=v,(_=n.plotLinesAndBandsGroups[k+="-"+v])||(n.plotLinesAndBandsGroups[k]=_=w.g("plot-"+k).attr(x).add()),g&&(e.svgElem=m=w.path().attr(y).add(_)),f)y=n.getPlotLinePath(h,m.strokeWidth());else{if(!p)return;y=n.getPlotBandPath(d,c,o)}return g&&y&&y.length?(m.attr({d:y}),b&&t.objectEach(b,function(t,n){m.on(n,function(t){b[n].apply(e,[t])})})):m&&(y?(m.show(),m.animate({d:y})):(m.hide(),u&&(e.label=u=u.destroy()))),a&&r(a.text)&&y&&y.length&&0this.max&&e>this.max,r&&i)for(t&&(n=r.toString()===i.toString(),l=0),t=0;td-u?d:d-u);else{if(!c)return!1;s[t]=Math.max(r,i+u+n>e?i:i+u)}}).apply(0,f)?!1!==(function(t,e,n,i){var r;return ie-l?r=!1:s[t]=ie-n/2?e-n-2:i-n/2,r}).apply(0,m)||r||(y(!0),_()):r?s.x=s.y=0:(y(!0),_())};return(o.inverted||1g&&(u=!1),t=(e.series&&e.series.yAxis&&e.series.yAxis.pos)+(e.plotY||0),t-=p,e.isHeader&&(t=i?-d:l.plotHeight+d),o.push({target:t,rank:e.isHeader?1:0,size:f.tt.getBBox().height+1,point:e,x:g,tt:m})}}),this.cleanSplit(),c.positioner&&o.forEach(function(t){var e=c.positioner.call(r,t.tt.getBBox().width,t.size,t.point);t.x=e.x,t.align=0,t.target=e.y,t.rank=a(e.rank,t.rank)}),t.distribute(o,l.plotHeight+d),o.forEach(function(t){var e=t.point,n=e.series;t.tt.attr({visibility:void 0===t.pos?"hidden":"inherit",x:u||e.isHeader||c.positioner?t.x:e.plotX+l.plotLeft+r.distance,y:t.pos+p,anchorX:e.isHeader?e.plotX+l.plotLeft:e.plotX+n.xAxis.pos,anchorY:e.isHeader?l.plotTop+l.plotHeight/2:e.plotY+n.yAxis.pos})})},updatePosition:function(t){var e,n=this.chart,i=this.getLabel(),r=(this.options.positioner||this.getPosition).call(this,i.width,i.height,t),o=t.plotX+n.plotLeft;t=t.plotY+n.plotTop,this.outside&&(this.renderer.setSize(i.width+(e=(this.options.borderWidth||0)+2*this.distance),i.height+e,!1),o+=n.pointer.chartPosition.left-r.x,t+=n.pointer.chartPosition.top-r.y),this.move(Math.round(r.x),Math.round(r.y||0),o,t)},getDateFormat:function(t,e,n,i){var r,o,a=this.chart.time,l=a.dateFormat("%m-%d %H:%M:%S.%L",e),s={millisecond:15,second:12,minute:9,hour:6,day:3},c="millisecond";for(o in u){if(t===u.week&&+a.dateFormat("%w",e)===n&&"00:00:00.000"===l.substr(6)){o="week";break}if(u[o]>t){o=c;break}if(s[o]&&l.substr(s[o])!=="01-01 00:00:00.000".substr(s[o]))break;"week"!==o&&(c=o)}return o&&(r=a.resolveDTLFormat(i[o]).main),r},getXDateFormat:function(t,e,n){e=e.dateTimeLabelFormats;var i=n&&n.closestPointRange;return(i?this.getDateFormat(i,t.x,n.options.startOfWeek,e):e.day)||e.year},tooltipFooterHeaderFormatter:function(e,n){var o=n?"footer":"header",a=e.series,l=a.tooltipOptions,s=l.xDateFormat,u=a.xAxis,c=u&&"datetime"===u.options.type&&r(e.key),d=l[o+"Format"];return t.fireEvent(this,"headerFormatter",n={isFooter:n,labelConfig:e},function(t){c&&!s&&(s=this.getXDateFormat(e,l,u)),c&&s&&(e.point&&e.point.tooltipDateKeys||["key"]).forEach(function(t){d=d.replace("{point."+t+"}","{point."+t+":"+s+"}")}),a.chart.styledMode&&(d=this.styledModeFormat(d)),t.text=i(d,{point:e,series:a},this.chart.time)}),n.text},bodyFormatter:function(t){return t.map(function(t){var e=t.series.tooltipOptions;return(e[(t.point.formatPrefix||"point")+"Formatter"]||t.point.tooltipFormatter).call(t.point,e[(t.point.formatPrefix||"point")+"Format"]||"")})},styledModeFormat:function(t){return t.replace('style="font-size: 10px"','class="highcharts-header"').replace(/style="color:{(point|series)\.color}"/g,'class="highcharts-color-{$1.colorIndex}"')}}}(u),function(t){var e=t.addEvent,n=t.attr,i=t.charts,r=t.color,o=t.css,a=t.defined,l=t.extend,s=t.find,u=t.fireEvent,c=t.isNumber,d=t.isObject,h=t.offset,p=t.pick,f=t.splat,m=t.Tooltip;t.Pointer=function(t,e){this.init(t,e)},t.Pointer.prototype={init:function(t,e){this.options=e,this.chart=t,this.runChartClick=e.chart.events&&!!e.chart.events.click,this.pinchDown=[],this.lastValidTouch={},m&&(t.tooltip=new m(t,e.tooltip),this.followTouchMove=p(e.tooltip.followTouchMove,!0)),this.setDOMEvents()},zoomOption:function(t){var e=(i=this.chart).options.chart,n=e.zoomType||"",i=i.inverted;/touch/.test(t.type)&&(n=p(e.pinchType,n)),this.zoomX=t=/x/.test(n),this.zoomY=n=/y/.test(n),this.zoomHor=t&&!i||n&&i,this.zoomVert=n&&!i||t&&i,this.hasZoom=t||n},normalize:function(t,e){var n;return n=t.touches?t.touches.length?t.touches.item(0):t.changedTouches[0]:t,e||(this.chartPosition=e=h(this.chart.container)),l(t,{chartX:Math.round(n.pageX-e.left),chartY:Math.round(n.pageY-e.top)})},getCoordinates:function(t){var e={xAxis:[],yAxis:[]};return this.chart.axes.forEach(function(n){e[n.isXAxis?"xAxis":"yAxis"].push({axis:n,value:n.toValue(t[n.horiz?"chartX":"chartY"])})}),e},findNearestKDPoint:function(t,e,n){var i;return t.forEach(function(t){var r=!(t.noSharedTooltip&&e)&&0>t.options.findNearestPointBy.indexOf("y");if(t=t.searchPoint(n,r),(r=d(t,!0))&&!(r=!d(i,!0))){var o=i.dist-t.dist,a=(t.series.group&&t.series.group.zIndex)-(i.series.group&&i.series.group.zIndex);r=0<(0!=(r=i.distX-t.distX)&&e?r:0!==o?o:0!==a?a:i.series.index>t.series.index?-1:1)}r&&(i=t)}),i},getPointFromEvent:function(t){t=t.target;for(var e;t&&!e;)e=t.point,t=t.parentNode;return e},getChartCoordinatesFromPoint:function(t,e){var n=(i=t.series).xAxis,i=i.yAxis,r=p(t.clientX,t.plotX),o=t.shapeArgs;return n&&i?e?{chartX:n.len+n.pos-r,chartY:i.len+i.pos-t.plotY}:{chartX:r+n.pos,chartY:t.plotY+i.pos}:o&&o.x&&o.y?{chartX:o.x,chartY:o.y}:void 0},getHoverData:function(t,e,n,i,r,o){var a,l=[];i=!(!i||!t);var u=e&&!e.stickyTracking?[e]:n.filter(function(t){return t.visible&&!(!r&&t.directTouch)&&p(t.options.enableMouseTracking,!0)&&t.stickyTracking});return e=(a=i?t:this.findNearestKDPoint(u,r,o))&&a.series,a&&(r&&!e.noSharedTooltip?(u=n.filter(function(t){return t.visible&&!(!r&&t.directTouch)&&p(t.options.enableMouseTracking,!0)&&!t.noSharedTooltip})).forEach(function(t){var e=s(t.points,function(t){return t.x===a.x&&!t.isNull});d(e)&&(t.chart.isBoosting&&(e=t.getPoint(e)),l.push(e))}):l.push(a)),{hoverPoint:a,hoverSeries:e,hoverPoints:l}},runPointActions:function(n,r){var o,a,l=this.chart,s=l.tooltip&&l.tooltip.options.enabled?l.tooltip:void 0,u=!!s&&s.shared,c=(o=this.getHoverData(c=r||l.hoverPoint,o=c&&c.series||l.hoverSeries,l.series,"touchmove"!==n.type&&(!!r||o&&o.directTouch&&this.isDirectTouch),u,n)).hoverPoint;if(a=o.hoverPoints,r=(o=o.hoverSeries)&&o.tooltipOptions.followPointer,u=u&&o&&!o.noSharedTooltip,c&&(c!==l.hoverPoint||s&&s.isHidden)){if((l.hoverPoints||[]).forEach(function(t){-1===a.indexOf(t)&&t.setState()}),(a||[]).forEach(function(t){t.setState("hover")}),l.hoverSeries!==o&&o.onMouseOver(),l.hoverPoint&&l.hoverPoint.firePointEvent("mouseOut"),!c.series)return;c.firePointEvent("mouseOver"),l.hoverPoints=a,l.hoverPoint=c,s&&s.refresh(u?a:c,n)}else r&&s&&!s.isHidden&&(c=s.getAnchor([{}],n),s.updatePosition({plotX:c[0],plotY:c[1]}));this.unDocMouseMove||(this.unDocMouseMove=e(l.container.ownerDocument,"mousemove",function(e){var n=i[t.hoverChartIndex];n&&n.pointer.onDocumentMouseMove(e)})),l.axes.forEach(function(e){var i=p(e.crosshair.snap,!0),r=i?t.find(a,function(t){return t.series[e.coll]===e}):void 0;r||!i?e.drawCrosshair(n,r):e.hideCrosshair()})},reset:function(t,e){var n=this.chart,i=n.hoverSeries,r=n.hoverPoint,o=n.hoverPoints,a=n.tooltip,l=a&&a.shared?o:r;t&&l&&f(l).forEach(function(e){e.series.isCartesian&&void 0===e.plotX&&(t=!1)}),t?a&&l&&f(l).length&&(a.refresh(l),a.shared&&o?o.forEach(function(t){t.setState(t.state,!0),t.series.isCartesian&&(t.series.xAxis.crosshair&&t.series.xAxis.drawCrosshair(null,t),t.series.yAxis.crosshair&&t.series.yAxis.drawCrosshair(null,t))}):r&&(r.setState(r.state,!0),n.axes.forEach(function(t){t.crosshair&&t.drawCrosshair(null,r)}))):(r&&r.onMouseOut(),o&&o.forEach(function(t){t.setState()}),i&&i.onMouseOut(),a&&a.hide(e),this.unDocMouseMove&&(this.unDocMouseMove=this.unDocMouseMove()),n.axes.forEach(function(t){t.hideCrosshair()}),this.hoverX=n.hoverPoints=n.hoverPoint=null)},scaleGroups:function(t,e){var n,i=this.chart;i.series.forEach(function(r){n=t||r.getPlotBox(),r.xAxis&&r.xAxis.zoomEnabled&&r.group&&(r.group.attr(n),r.markerGroup&&(r.markerGroup.attr(n),r.markerGroup.clip(e?i.clipRect:null)),r.dataLabelsGroup&&r.dataLabelsGroup.attr(n))}),i.clipRect.attr(e||i.clipBox)},dragStart:function(t){var e=this.chart;e.mouseIsDown=t.type,e.cancelClick=!1,e.mouseDownX=this.mouseDownX=t.chartX,e.mouseDownY=this.mouseDownY=t.chartY},drag:function(t){var e,n=this.chart,i=n.options.chart,o=t.chartX,a=t.chartY,l=this.zoomHor,s=this.zoomVert,u=n.plotLeft,c=n.plotTop,d=n.plotWidth,h=n.plotHeight,p=this.selectionMarker,f=this.mouseDownX,m=this.mouseDownY,g=i.panKey&&t[i.panKey+"Key"];p&&p.touch||(ou+d&&(o=u+d),ac+h&&(a=c+h),this.hasDragged=Math.sqrt(Math.pow(f-o,2)+Math.pow(m-a,2)),10v.max&&(e=v.max-s,c=!0),c?(w-=.8*(w-a[h][0]),b||(M-=.8*(M-a[h][1])),n()):a[h]=[w,M],_||(o[h]=u-g,o[m]=s),o=_?1/y:y,r[m]=s,r[h]=e,i[_?t?"scaleY":"scaleX":"scale"+p]=y,i["translate"+p]=o*g+(w-o*x)},pinch:function(t){var e=this,o=e.chart,a=e.pinchDown,l=t.touches,s=l.length,u=e.lastValidTouch,c=e.hasZoom,d=e.selectionMarker,h={},p=1===s&&(e.inClass(t.target,"highcharts-tracker")&&o.runTrackerClick||e.runChartClick),f={};1t-6&&al?this.maxItemWidth:t.itemWidth;n&&this.itemX-e+s>l&&(this.itemX=e,this.itemY+=o+this.lastLineHeight+r,this.lastLineHeight=0),this.lastItemY=o+this.itemY+r,this.lastLineHeight=Math.max(i,this.lastLineHeight),t._legendItemPos=[this.itemX,this.itemY],n?this.itemX+=s:(this.itemY+=o+i+r,this.lastLineHeight=i),this.offsetWidth=this.widthOption||Math.max((n?this.itemX-e-(t.checkbox?0:a):s)+e,this.offsetWidth)},getAllItems:function(){var t=[];return this.chart.series.forEach(function(e){var n=e&&e.options;e&&u(n.showInLegend,!r(n.linkedTo)&&void 0,!0)&&(t=t.concat(e.legendItems||("point"===n.legendType?e.data:e)))}),o(this,"afterGetAllItems",{allItems:t}),t},getAlignment:function(){var t=this.options;return this.proximate?t.align.charAt(0)+"tv":t.floating?"":t.align.charAt(0)+t.verticalAlign.charAt(0)+t.layout.charAt(0)},adjustMargins:function(t,e){var n=this.chart,i=this.options,o=this.getAlignment(),a=void 0!==n.options.title.margin?n.titleOffset+n.options.title.margin:0;o&&[/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/].forEach(function(s,c){s.test(o)&&!r(t[c])&&(n[l[c]]=Math.max(n[l[c]],n.legend[(c+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][c]*i[c%2?"x":"y"]+u(i.margin,12)+e[c]+(0===c&&(0===n.titleOffset?0:a))))})},proximatePositions:function(){var e=this.chart,n=[],i="left"===this.options.align;this.allItems.forEach(function(r){var o,a;o=i,r.xAxis&&r.points&&(r.xAxis.options.reversed&&(o=!o),o=t.find(o?r.points:r.points.slice(0).reverse(),function(e){return t.isNumber(e.plotY)}),a=r.legendGroup.getBBox().height,n.push({target:r.visible?(o?o.plotY:r.xAxis.height)-.3*a:e.plotHeight,size:a,item:r}))},this),t.distribute(n,e.plotHeight),n.forEach(function(t){t.item._legendItemPos[1]=e.plotTop-e.spacing[0]+t.pos})},render:function(){var e,n,i,r=this.chart,a=r.renderer,l=this.group,u=this.box,c=this.options,h=this.padding;this.itemX=h,this.itemY=this.initialItemY,this.lastItemY=this.offsetWidth=0,this.widthOption=t.relativeLength(c.width,r.spacingBox.width-h),e=r.spacingBox.width-2*h-c.x,-1<["rm","lm"].indexOf(this.getAlignment().substring(0,2))&&(e/=2),this.maxLegendWidth=this.widthOption||e,l||(this.group=l=a.g("legend").attr({zIndex:7}).add(),this.contentGroup=a.g().attr({zIndex:1}).add(l),this.scrollGroup=a.g().add(this.contentGroup)),this.renderTitle(),e=this.getAllItems(),d(e,function(t,e){return(t.options&&t.options.legendIndex||0)-(e.options&&e.options.legendIndex||0)}),c.reversed&&e.reverse(),this.allItems=e,this.display=n=!!e.length,this.itemHeight=this.totalItemWidth=this.maxItemWidth=this.lastLineHeight=0,e.forEach(this.renderItem,this),e.forEach(this.layoutItem,this),e=(this.widthOption||this.offsetWidth)+h,i=this.handleOverflow(i=this.lastItemY+this.lastLineHeight+this.titleHeight),i+=h,u||(this.box=u=a.rect().addClass("highcharts-legend-box").attr({r:c.borderRadius}).add(l),u.isNew=!0),r.styledMode||u.attr({stroke:c.borderColor,"stroke-width":c.borderWidth||0,fill:c.backgroundColor||"none"}).shadow(c.shadow),0l&&!1!==h.enabled?(this.clipHeight=e=Math.max(l-20-this.titleHeight-s,0),this.currentPage=u(this.currentPage,1),this.fullHeight=t,y.forEach(function(t,i){var r=t._legendItemPos[1],o=Math.round(t.legendItem.getBBox().height),a=g.length;(!a||r-g[a-1]>e&&(n||r)!==g[a-1])&&(g.push(n||r),a++),t.pageIx=a-1,n&&(y[i-1].pageIx=a-1),i===y.length-1&&r+o-g[a-1]>e&&r!==n&&(g.push(r),t.pageIx=a),r!==n&&(n=r)}),d||(d=i.clipRect=o.clipRect(0,s,9999,0),i.contentGroup.clip(d)),_(e),m||(this.nav=m=o.g().attr({zIndex:1}).add(this.group),this.up=o.symbol("triangle",0,0,f,f).on("click",function(){i.scroll(-1,p)}).add(m),this.pager=o.text("",15,10).addClass("highcharts-legend-navigation"),r.styledMode||this.pager.css(h.style),this.pager.add(m),this.down=o.symbol("triangle-down",0,0,f,f).on("click",function(){i.scroll(1,p)}).add(m)),i.scroll(0),t=l):m&&(_(),this.nav=m.destroy(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0),t},scroll:function(t,e){var n=this.pages,i=n.length,r=this.clipHeight,o=this.options.navigation,a=this.pager,l=this.padding;(t=this.currentPage+t)>i&&(t=i),0s&&("string"==(i=typeof e[0])?n.name=e[0]:"number"===i&&(n.x=e[0]),u++);c=t.value;)t=e[++i];return this.nonZonedColor||(this.nonZonedColor=this.color),this.color=t&&t.color&&!this.options.color?t.color:this.nonZonedColor,t},destroy:function(){var t,e=this.series.chart,n=e.hoverPoints;for(t in e.pointCount--,n&&(this.setState(),i(n,this),n.length||(e.hoverPoints=null)),this===e.hoverPoint&&this.onMouseOut(),(this.graphic||this.dataLabel||this.dataLabels)&&(d(this),this.destroyElements()),this.legendItem&&e.legend.destroyItem(this),this)this[t]=null},destroyElements:function(){for(var t,e=["graphic","dataLabel","dataLabelUpper","connector","shadowGroup"],n=6;n--;)this[t=e[n]]&&(this[t]=this[t].destroy());this.dataLabels&&(this.dataLabels.forEach(function(t){t.element&&t.destroy()}),delete this.dataLabels),this.connectors&&(this.connectors.forEach(function(t){t.element&&t.destroy()}),delete this.connectors)},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,colorIndex:this.colorIndex,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(t){var e=this.series,n=e.tooltipOptions,i=s(n.valueDecimals,""),r=n.valuePrefix||"",a=n.valueSuffix||"";return e.chart.styledMode&&(t=e.chart.tooltip.styledModeFormat(t)),(e.pointArrayMap||["y"]).forEach(function(e){e="{point."+e,(r||a)&&(t=t.replace(RegExp(e+"}","g"),r+e+"}"+a)),t=t.replace(RegExp(e+"}","g"),e+":,."+i+"f}")}),o(t,{point:this,series:this.series},e.chart.time)},firePointEvent:function(t,e,n){var i=this,o=this.series.options;(o.point.events[t]||i.options&&i.options.events&&i.options.events[t])&&this.importEvents(),"click"===t&&o.allowPointSelect&&(n=function(t){i.select&&i.select(null,t.ctrlKey||t.metaKey||t.shiftKey)}),r(this,t,e,n)},visible:!0}}(u),function(t){var e=t.addEvent,n=t.animObject,i=t.arrayMax,r=t.arrayMin,o=t.correctFloat,a=t.defaultOptions,l=t.defaultPlotOptions,s=t.defined,u=t.erase,c=t.extend,d=t.fireEvent,h=t.isArray,p=t.isNumber,f=t.isString,m=t.merge,g=t.objectEach,y=t.pick,_=t.removeEvent,v=t.splat,b=t.SVGElement,x=t.syncTimeout,w=t.win;t.Series=t.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1e3},events:{},marker:{lineWidth:0,lineColor:"#ffffff",enabledThreshold:2,radius:4,states:{normal:{animation:!0},hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":t.numberFormat(this.y,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0,padding:5},cropThreshold:300,pointRange:0,softThreshold:!0,states:{normal:{animation:!0},hover:{animation:{duration:50},lineWidthPlus:1,marker:{},halo:{size:10,opacity:.25}},select:{animation:{duration:0}}},stickyTracking:!0,turboThreshold:1e3,findNearestPointBy:"x"},{isCartesian:!0,pointClass:t.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",cropShoulder:1,init:function(t,n){d(this,"init",{options:n});var i,r,o=this,a=t.series;o.chart=t,o.options=n=o.setOptions(n),o.linkedSeries=[],o.bindAxes(),c(o,{name:n.name,state:"",visible:!1!==n.visible,selected:!0===n.selected}),g(i=n.events,function(t,n){o.hcEvents&&o.hcEvents[n]&&-1!==o.hcEvents[n].indexOf(t)||e(o,n,t)}),(i&&i.click||n.point&&n.point.events&&n.point.events.click||n.allowPointSelect)&&(t.runTrackerClick=!0),o.getColor(),o.getSymbol(),o.parallelArrays.forEach(function(t){o[t+"Data"]=[]}),o.setData(n.data,!1),o.isCartesian&&(t.hasCartesianSeries=!0),a.length&&(r=a[a.length-1]),o._i=y(r&&r._i,-1)+1,t.orderSeries(this.insert(a)),d(this,"afterInit")},insert:function(t){var e,n=this.options.index;if(p(n)){for(e=t.length;e--;)if(n>=y(t[e].options.index,t[e]._i)){t.splice(e+1,0,this);break}-1===e&&t.unshift(this),e+=1}else t.push(this);return y(e,t.length-1)},bindAxes:function(){var e,n=this,i=n.options,r=n.chart;d(this,"bindAxes",null,function(){(n.axisTypes||[]).forEach(function(o){r[o].forEach(function(t){(i[o]===(e=t.options).index||void 0!==i[o]&&i[o]===e.id||void 0===i[o]&&0===e.index)&&(n.insert(t.series),n[o]=t,t.isDirty=!0)}),n[o]||n.optionalAxis===o||t.error(18,!0,r)})})},updateParallelArrays:function(t,e){var n=t.series,i=arguments,r=p(e)?function(i){var r="y"===i&&n.toYData?n.toYData(t):t[i];n[i+"Data"][e]=r}:function(t){Array.prototype[e].apply(n[t+"Data"],Array.prototype.slice.call(i,2))};n.parallelArrays.forEach(r)},autoIncrement:function(){var t,e=this.options,n=e.pointIntervalUnit,i=this.chart.time,r=y(r=this.xIncrement,e.pointStart,0);return this.pointInterval=t=y(this.pointInterval,e.pointInterval,1),n&&(e=new i.Date(r),"day"===n?i.set("Date",e,i.get("Date",e)+t):"month"===n?i.set("Month",e,i.get("Month",e)+t):"year"===n&&i.set("FullYear",e,i.get("FullYear",e)+t),t=e.getTime()-r),this.xIncrement=r+t,r},setOptions:function(t){var e=this.chart,n=e.options,i=n.plotOptions,r=(e.userOptions||{}).plotOptions||{},o=i[this.type],l=m(t);return t=e.styledMode,d(this,"setOptions",{userOptions:l}),this.userOptions=l,e=m(o,i.series,l),this.tooltipOptions=m(a.tooltip,a.plotOptions.series&&a.plotOptions.series.tooltip,a.plotOptions[this.type].tooltip,n.tooltip.userOptions,i.series&&i.series.tooltip,i[this.type].tooltip,l.tooltip),this.stickyTracking=y(l.stickyTracking,r[this.type]&&r[this.type].stickyTracking,r.series&&r.series.stickyTracking,!(!this.tooltipOptions.shared||this.noSharedTooltip)||e.stickyTracking),null===o.marker&&delete e.marker,this.zoneAxis=e.zoneAxis,n=this.zones=(e.zones||[]).slice(),!e.negativeColor&&!e.negativeFillColor||e.zones||(i={value:e[this.zoneAxis+"Threshold"]||e.threshold||0,className:"highcharts-negative"},t||(i.color=e.negativeColor,i.fillColor=e.negativeFillColor),n.push(i)),n.length&&s(n[n.length-1].value)&&n.push(t?{}:{color:this.color,fillColor:this.fillColor}),d(this,"afterSetOptions",{options:e}),e},getName:function(){return y(this.options.name,"Series "+(this.index+1))},getCyclic:function(t,e,n){var i,r=this.chart,o=this.userOptions,a=t+"Index",l=t+"Counter",u=n?n.length:y(r.options.chart[t+"Count"],r[t+"Count"]);e||(i=y(o[a],o["_"+a]),s(i)||(r.series.length||(r[l]=0),o["_"+a]=i=r[l]%u,r[l]+=1),n&&(e=n[i])),void 0!==i&&(this[a]=i),this[t]=e},getColor:function(){this.chart.styledMode?this.getCyclic("color"):this.options.colorByPoint?this.options.color=null:this.getCyclic("color",this.options.color||l[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol,this.chart.options.symbols)},drawLegendSymbol:t.LegendSymbolMixin.drawLineMarker,updateData:function(e){var n,i,r,o=this.options,a=this.points,l=[],s=this.requireSorting;if(this.xIncrement=null,e.forEach(function(e){var i,u,c;c=(i=t.defined(e)&&this.pointClass.prototype.optionsToObject.call({series:this},e)||{}).x,((i=i.id)||p(c))&&(i&&(u=(u=this.chart.get(i))&&u.index),void 0===u&&p(c)&&(u=this.xData.indexOf(c,r)),-1!==u&&void 0!==u&&this.cropped&&(u=u>=this.cropStart?u-this.cropStart:u),-1===u||void 0===u||a[u]&&a[u].touched?l.push(e):e!==o.data[u]?(a[u].update(e,!1,null,!1),a[u].touched=!0,s&&(r=u+1)):a[u]&&(a[u].touched=!0),n=!0)},this),n)for(e=a.length;e--;)(i=a[e]).touched||i.remove(!1),i.touched=!1;else{if(e.length!==a.length)return!1;e.forEach(function(t,e){a[e].update&&t!==o.data[e]&&a[e].update(t,!1,null,!1)})}return l.forEach(function(t){this.addPoint(t,!1)},this),!0},setData:function(e,n,i,r){var o,a,l=this,s=l.points,u=s&&s.length||0,c=l.options,d=l.chart,m=null,g=l.xAxis,_=c.turboThreshold,v=this.xData,b=this.yData,x=(o=l.pointArrayMap)&&o.length,w=c.keys,k=0,M=1;if(o=(e=e||[]).length,n=y(n,!0),!1!==r&&o&&u&&!l.cropped&&!l.hasGroupedData&&l.visible&&!l.isSeriesBoosting&&(a=this.updateData(e)),!a){if(l.xIncrement=null,l.colorCounter=0,this.parallelArrays.forEach(function(t){l[t+"Data"].length=0}),_&&o>_){for(i=0;null===m&&is||this.forceCrop)&&(i[o-1]d?(i=[],r=[]):this.yData&&(i[0]d)&&(i=(n=this.cropData(this.xData,this.yData,c,d)).xData,r=n.yData,n=n.start,a=!0)),s=i.length||1;--s;)0<(o=m?f(i[s])-f(i[s-1]):i[s]-i[s-1])&&(void 0===l||oo&&g&&(t.error(15,!1,this.chart),g=!1);this.cropped=a,this.cropStart=n,this.processedXData=i,this.processedYData=r,this.closestPointRange=l},cropData:function(t,e,n,i,r){var o,a=t.length,l=0,s=a;for(r=y(r,this.cropShoulder),o=0;o=n){l=Math.max(0,o-r);break}for(n=o;ni){s=n+r;break}return{xData:t.slice(l,s),yData:e.slice(l,s),start:l,end:s}},generatePoints:function(){var t,e,n,i,r=(f=this.options).data,o=this.data,a=this.processedXData,l=this.processedYData,s=this.pointClass,u=a.length,h=this.cropStart||0,p=this.hasGroupedData,f=f.keys,m=[];for(o||p||((o=[]).length=r.length,o=this.data=o),f&&p&&(this.options.keys=!1),i=0;i=m&&(u[l-y]||o)<=g,n&&o)if(n=a.length)for(;n--;)"number"==typeof a[n]&&(c[f++]=a[n]);else c[f++]=a;this.dataMin=r(c),this.dataMax=i(c),d(this,"afterGetExtremes")},translate:function(){this.processedXData||this.processData(),this.generatePoints();var t,e,n,i,r,a=this.options,l=a.stacking,u=this.xAxis,c=u.categories,h=this.yAxis,f=this.points,m=f.length,g=!!this.modifyValue,_=this.pointPlacementToXValue(),v=p(_),b=a.threshold,x=a.startFromThreshold?b:0,w=this.zoneAxis||"y",k=Number.MAX_VALUE;for(t=0;t=C&&(M.isNull=!0),M.plotX=e=o(Math.min(Math.max(-1e5,u.translate(S,0,0,0,1,_,"flags"===this.type)),1e5)),l&&this.visible&&!M.isNull&&D&&D[S]&&(r=this.getStackIndicator(r,S,this.index),n=(C=(L=D[S]).points[r.key])[0],C=C[1],n===x&&r.key===D[S].base&&(n=y(p(b)&&b,h.min)),h.positiveValuesOnly&&0>=n&&(n=null),M.total=M.stackTotal=L.total,M.percentage=L.total&&M.y/L.total*100,M.stackY=C,L.setOffset(this.pointXOffset||0,this.barW||0)),M.yBottom=s(n)?Math.min(Math.max(-1e5,h.translate(n,0,1,0,1)),1e5):null,g&&(C=this.modifyValue(C,M)),M.plotY=n="number"==typeof C&&1/0!==C?Math.min(Math.max(-1e5,h.translate(C,0,1,0,1)),1e5):void 0,M.isInside=void 0!==n&&0<=n&&n<=h.len&&0<=e&&e<=u.len,M.clientX=v?o(u.translate(S,0,0,0,1,_)):e,M.negative=M[w]<(a[w+"Threshold"]||b||0),M.category=c&&void 0!==c[M.x]?c[M.x]:M.x,M.isNull||(void 0!==i&&(k=Math.min(k,Math.abs(e-i))),i=e),M.zone=this.zones.length&&M.getZone()}this.closestPointRangePx=k,d(this,"afterTranslate")},getValidPoints:function(t,e,n){var i=this.chart;return(t||this.points||[]).filter(function(t){return!(e&&!i.isInsidePlot(t.plotX,t.plotY,i.inverted))&&(n||!t.isNull)})},setClip:function(t){var e=this.chart,n=this.options,i=e.renderer,r=e.inverted,o=this.clipBox,a=o||e.clipBox,l=this.sharedClipKey||["_sharedClip",t&&t.duration,t&&t.easing,a.height,n.xAxis,n.yAxis].join(),s=e[l],u=e[l+"m"];s||(t&&(a.width=0,r&&(a.x=e.plotSizeX),e[l+"m"]=u=i.clipRect(r?e.plotSizeX+99:-99,r?-e.plotLeft:-e.plotTop,99,r?e.chartWidth:e.chartHeight)),e[l]=s=i.clipRect(a),s.count={length:0}),t&&!s.count[this.index]&&(s.count[this.index]=!0,s.count.length+=1),!1!==n.clip&&(this.group.clip(t||o?s:e.clipRect),this.markerGroup.clip(u),this.sharedClipKey=l),t||(s.count[this.index]&&(delete s.count[this.index],--s.count.length),0===s.count.length&&l&&e[l]&&(o||(e[l]=e[l].destroy()),e[l+"m"]&&(e[l+"m"]=e[l+"m"].destroy())))},animate:function(t){var e,i=this.chart,r=n(this.options.animation);t?this.setClip(r):((t=i[e=this.sharedClipKey])&&t.animate({width:i.plotSizeX,x:0},r),i[e+"m"]&&i[e+"m"].animate({width:i.plotSizeX+99,x:0},r),this.animate=null)},afterAnimate:function(){this.setClip(),d(this,"afterAnimate"),this.finishedAnimating=!0},drawPoints:function(){var t,e,n,i,r,o,a,l,s=this.points,u=this.chart,c=this.options.marker,d=this[this.specialGroup]||this.markerGroup,h=y(c.enabled,!((t=this.xAxis)&&!t.isRadial)||null,this.closestPointRangePx>=c.enabledThreshold*c.radius);if(!1!==c.enabled||this._hasPointMarkers)for(t=0;to&&e.shadow))),l&&(l.startX=n.xMap,l.isArea=n.isArea)})},getZonesGraphs:function(t){return this.zones.forEach(function(e,n){n=["zone-graph-"+n,"highcharts-graph highcharts-zone-graph-"+n+" "+(e.className||"")],this.chart.styledMode||n.push(e.color||this.color,e.dashStyle||this.options.dashStyle),t.push(n)},this),t},applyZones:function(){var t,e,n,i,r,o,a,l,s,u=this,c=this.chart,d=c.renderer,h=this.zones,p=this.clips||[],f=this.graph,m=this.area,g=Math.max(c.chartWidth,c.chartHeight),_=this[(this.zoneAxis||"y")+"Axis"],v=c.inverted,b=!1;h.length&&(f||m)&&_&&void 0!==_.min&&(r=_.reversed,o=_.horiz,f&&!this.showLine&&f.hide(),m&&m.hide(),i=_.getExtremes(),h.forEach(function(h,x){t=r?o?c.plotWidth:0:o?0:_.toPixels(i.min)||0,t=Math.min(Math.max(y(e,t),0),g),e=Math.min(Math.max(Math.round(_.toPixels(y(h.value,i.max),!0)||0),0),g),b&&(t=e=_.toPixels(i.max)),a=Math.abs(t-e),l=Math.min(t,e),s=Math.max(t,e),_.isXAxis?(n={x:v?s:l,y:0,width:a,height:g},o||(n.x=c.plotHeight-n.x)):(n={x:0,y:v?s:l,width:g,height:a},o&&(n.y=c.plotWidth-n.y)),v&&d.isVML&&(n=_.isXAxis?{x:0,y:r?l:s,height:n.width,width:c.chartWidth}:{x:n.y-c.plotLeft-c.spacingBox.x,y:0,width:n.height,height:c.chartHeight}),p[x]?p[x].animate(n):(p[x]=d.clipRect(n),f&&u["zone-graph-"+x].clip(p[x]),m&&u["zone-area-"+x].clip(p[x])),b=h.value>i.max,u.resetZones&&0===e&&(e=void 0)}),this.clips=p)},invertGroups:function(t){function n(){["group","markerGroup"].forEach(function(e){r[e]&&(o.renderer.isVML&&r[e].attr({width:r.yAxis.len,height:r.xAxis.len}),r[e].width=r.yAxis.len,r[e].height=r.xAxis.len,r[e].invert(t))})}var i,r=this,o=r.chart;r.xAxis&&(i=e(o,"resize",n),e(r,"destroy",i),n(),r.invertGroups=n)},plotGroup:function(t,e,n,i,r){var o=this[t],a=!o;return a&&(this[t]=o=this.chart.renderer.g().attr({zIndex:i||.1}).add(r)),o.addClass("highcharts-"+e+" highcharts-series-"+this.index+" highcharts-"+this.type+"-series "+(s(this.colorIndex)?"highcharts-color-"+this.colorIndex+" ":"")+(this.options.className||"")+(o.hasClass("highcharts-tracker")?" highcharts-tracker":""),!0),o.attr({visibility:n})[a?"attr":"animate"](this.getPlotBox()),o},getPlotBox:function(){var t=this.chart,e=this.xAxis,n=this.yAxis;return t.inverted&&(e=n,n=this.xAxis),{translateX:e?e.left:t.plotLeft,translateY:n?n.top:t.plotTop,scaleX:1,scaleY:1}},render:function(){var t,e=this,i=e.chart,r=e.options,o=!!e.animate&&i.renderer.isSVG&&n(r.animation).duration,a=e.visible?"inherit":"hidden",l=r.zIndex,s=e.hasRendered,u=i.seriesGroup,c=i.inverted;d(this,"render"),t=e.plotGroup("group","series",a,l,u),e.markerGroup=e.plotGroup("markerGroup","markers",a,l,u),o&&e.animate(!0),t.inverted=!!e.isCartesian&&c,e.drawGraph&&(e.drawGraph(),e.applyZones()),e.drawDataLabels&&e.drawDataLabels(),e.visible&&e.drawPoints(),e.drawTracker&&!1!==e.options.enableMouseTracking&&e.drawTracker(),e.invertGroups(c),!1===r.clip||e.sharedClipKey||s||t.clip(i.clipRect),o&&e.animate(),s||(e.animationTimeout=x(function(){e.afterAnimate()},o)),e.isDirty=!1,e.hasRendered=!0,d(e,"afterRender")},redraw:function(){var t=this.chart,e=this.isDirty||this.isDirtyData,n=this.group,i=this.xAxis,r=this.yAxis;n&&(t.inverted&&n.attr({width:t.plotWidth,height:t.plotHeight}),n.animate({translateX:y(i&&i.left,t.plotLeft),translateY:y(r&&r.top,t.plotTop)})),this.translate(),this.render(),e&&delete this.kdTree},kdAxisArray:["clientX","plotY"],searchPoint:function(t,e){var n=this.xAxis,i=this.yAxis,r=this.chart.inverted;return this.searchKDTree({clientX:r?n.len-t.chartY+n.pos:t.chartX-n.pos,plotY:r?i.len-t.chartX+i.pos:t.chartY-i.pos},e,t)},buildKDTree:function(t){this.buildingKdTree=!0;var e=this,n=-1(p=e[p]-h[p])?"right":"left",n[c=0>p?"left":"right"]&&(f=(c=t(e,n[c],l+1,u))[a]l;)a--;this.updateParallelArrays(r,"splice",a,0,0),this.updateParallelArrays(r,a),d&&r.name&&(d[l]=r.name),h.splice(a,0,t),o&&(this.data.splice(a,0,null),this.processData()),"point"===s.legendType&&this.generatePoints(),n&&(u[0]&&u[0].remove?u[0].remove(!1):(u.shift(),this.updateParallelArrays(r,"shift"),h.shift())),this.isDirtyData=this.isDirty=!0,e&&c.redraw(i)},removePoint:function(t,e,n){var i=this,r=i.data,o=r[t],a=i.points,l=i.chart,s=function(){a&&a.length===r.length&&a.splice(t,1),r.splice(t,1),i.options.data.splice(t,1),i.updateParallelArrays(o||{series:i},"splice",t,1),o&&o.destroy(),i.isDirty=!0,i.isDirtyData=!0,e&&l.redraw()};b(n,l),e=g(e,!0),o?o.firePointEvent("remove",null,s):s()},remove:function(t,e,n,i){function r(){o.destroy(i),o.remove=null,a.isDirtyLegend=a.isDirtyBox=!0,a.linkSeries(),g(t,!0)&&a.redraw(e)}var o=this,a=o.chart;!1!==n?c(o,"remove",null,r):r()},update:function(e,n){e=t.cleanRecursively(e,this.userOptions);var i,r=this,o=r.chart,a=r.userOptions,l=r.initialType||r.type,s=e.type||a.type||o.options.chart.type,d=v[l].prototype,h=["group","markerGroup","dataLabelsGroup"],p=["navigatorSeries","baseSeries"],m=r.finishedAnimating&&{animation:!1},y=["data","name","turboThreshold"],_=Object.keys(e),b=0<_.length;if(_.forEach(function(t){-1===y.indexOf(t)&&(b=!1)}),b)e.data&&this.setData(e.data,!1),e.name&&this.setName(e.name,!1);else{for(i in(p=h.concat(p)).forEach(function(t){p[t]=r[t],delete r[t]}),e=f(a,m,{index:r.index,pointStart:g(a.pointStart,r.xData[0])},{data:r.options.data},e),r.remove(!1,null,!1,!0),d)r[i]=void 0;v[s||l]?u(r,v[s||l].prototype):t.error(17,!0,o),p.forEach(function(t){r[t]=p[t]}),r.init(o,e),e.zIndex!==a.zIndex&&h.forEach(function(t){r[t]&&r[t].attr({zIndex:e.zIndex})}),r.initialType=l,o.linkSeries()}c(this,"afterUpdate"),g(n,!0)&&o.redraw(!!b&&void 0)},setName:function(t){this.name=this.options.name=this.userOptions.name=t,this.chart.isDirtyLegend=!0}}),u(i.prototype,{update:function(t,e){var n=this.chart,i=t&&t.events||{};t=f(this.userOptions,t),n.options[this.coll].indexOf&&(n.options[this.coll][n.options[this.coll].indexOf(this.userOptions)]=t),m(n.options[this.coll].events,function(t,e){void 0===i[e]&&(i[e]=void 0)}),this.destroy(!0),this.init(n,u(t,{events:i})),n.isDirtyBox=!0,g(e,!0)&&n.redraw()},remove:function(t){for(var e=this.chart,n=this.coll,i=this.series,r=i.length;r--;)i[r]&&i[r].remove(!1);s(e.axes,this),s(e[n],this),p(e.options[n])?e.options[n].splice(this.options.index,1):delete e.options[n],e[n].forEach(function(t,e){t.options.index=t.userOptions.index=e}),this.destroy(),e.isDirtyBox=!0,g(t,!0)&&e.redraw()},setTitle:function(t,e){this.update({title:t},e)},setCategories:function(t,e){this.update({categories:t},e)}})}(u),function(t){var e=t.color,n=t.pick,i=t.Series;(0,t.seriesType)("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(e){var i,r,o=[],a=[],l=this.xAxis,s=this.yAxis,u=s.stacks[this.stackKey],c={},d=this.index,h=s.series,p=h.length,f=n(s.options.reversedStacks,!0)?1:-1;if(e=e||this.points,this.options.stacking){for(r=0;rt&&o>u?l=2*u-(o=Math.max(t,u)):oi&&l>u?o=2*u-(l=Math.max(i,u)):l=Math.abs(e)&&.5t.closestPointRange*t.xAxis.transA,o=(i=t.borderWidth=l(n.borderWidth,i?0:1),t.yAxis),a=n.threshold,u=t.translatedThreshold=o.getThreshold(a),c=l(n.minPointLength,5),d=t.getColumnMetrics(),h=d.width,p=t.barW=Math.max(h,1+2*i),f=t.pointXOffset=d.offset;e.inverted&&(u-=.5),n.pointPadding&&(p=Math.ceil(p)),s.prototype.translate.apply(t),t.points.forEach(function(n){var i,s=l(n.yBottom,u),d=999+Math.abs(s),m=h,g=(d=Math.min(Math.max(-d,n.plotY),o.len+d),n.plotX+f),y=p,_=Math.min(d,s),v=Math.max(d,s)-_;c&&Math.abs(v)c?s-c:u-(i?c:0)),r(n.options.pointWidth)&&(m=y=Math.ceil(n.options.pointWidth),g-=Math.round((m-h)/2)),n.barX=g,n.pointWidth=m,n.tooltipPos=e.inverted?[o.len+o.pos-e.plotLeft-d,t.xAxis.len-g-y/2,v]:[g+y/2,d+o.pos-e.plotTop,v],n.shapeType=n.shapeType||"rect",n.shapeArgs=t.crispCol.apply(t,n.isNull?[g,u,y,0]:[g,_,y,v])})},getSymbol:u.noop,drawLegendSymbol:u.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(t,e){var i,r=this.options;i=(c=this.pointAttrToOptions||{}).stroke||"borderColor";var o=c["stroke-width"]||"borderWidth",l=t&&t.color||this.color,s=t&&t[i]||r[i]||this.color||l,u=t&&t[o]||r[o]||this[o]||0,c=r.dashStyle;return t&&this.zones.length&&(l=t.getZone(),l=t.options.color||l&&l.color||this.color),e&&(e=(t=a(r.states[e],t.options.states&&t.options.states[e]||{})).brightness,l=t.color||void 0!==e&&n(l).brighten(t.brightness).get()||l,s=t[i]||s,u=t[o]||u,c=t.dashStyle||c),i={fill:l,stroke:s,"stroke-width":u},c&&(i.dashstyle=c),i},drawPoints:function(){var t,e=this,n=this.chart,i=e.options,r=n.renderer,l=i.animationLimit||250;e.points.forEach(function(s){var u=s.graphic,c=u&&n.pointCount\u25cf
{series.name}
',pointFormat:"x: {point.x}
y: {point.y}
"}},{sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","markerGroup","dataLabelsGroup"],takeOrdinalPosition:!1,drawGraph:function(){this.options.lineWidth&&e.prototype.drawGraph.call(this)},applyJitter:function(){var t=this,e=this.options.jitter,n=this.points.length;e&&this.points.forEach(function(i,r){["x","y"].forEach(function(o,a){var l,s,u,c="plot"+o.toUpperCase();e[o]&&!i.isNull&&(u=e[o]*(l=t[o+"Axis"]).transA,l&&!l.isLog&&(s=Math.max(0,i[c]-u),l=Math.min(l.len,i[c]+u),a=1e4*Math.sin(r+a*n),i[c]=s+(l-s)*(a-Math.floor(a)),"x"===o&&(i.clientX=i.plotX)))})})}}),t.addEvent(e,"afterTranslate",function(){this.applyJitter&&this.applyJitter()})}(u),function(t){var e=u.deg2rad,n=u.isNumber,i=u.pick,r=u.relativeLength;u.CenteredSeriesMixin={getCenter:function(){var t,e,n=this.options,o=2*(n.slicedOffset||0),a=(l=this.chart).plotWidth-2*o,l=l.plotHeight-2*o,s=[i((s=n.center)[0],"50%"),i(s[1],"50%"),n.size||"100%",n.innerSize||0],u=Math.min(a,l);for(t=0;4>t;++t)e=s[t],n=2>t||2===t&&/%$/.test(e),s[t]=r(e,[a,l,u,s[2]][t])+(n?o:0);return s[3]>s[2]&&(s[3]=s[2]),s},getStartAndEndRadians:function(t,i){return t=n(t)?t:0,i=n(i)&&i>t&&360>i-t?i:t+360,{start:e*(t+-90),end:e*(i+-90)}}}}(),function(t){var e=t.addEvent,n=t.CenteredSeriesMixin,i=t.defined,r=t.extend,o=n.getStartAndEndRadians,a=t.noop,l=t.pick,s=t.Point,u=t.Series,c=t.setAnimation;(0,t.seriesType)("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{allowOverlap:!0,connectorPadding:5,distance:30,enabled:!0,formatter:function(){return this.point.isNull?void 0:this.point.name},softConnector:!0,x:0,connectorShape:"fixedOffset",crookDistance:"70%"},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:t.seriesTypes.column.prototype.pointAttribs,animate:function(t){var e=this,n=e.startAngleRad;t||(e.points.forEach(function(t){var i=t.graphic,r=t.shapeArgs;i&&(i.attr({r:t.startR||e.center[3]/2,start:n,end:n}),i.animate({r:r.r,start:r.start,end:r.end},e.options.animation))}),e.animate=null)},updateTotals:function(){var t,e,n=0,i=this.points,r=i.length,o=this.options.ignoreHiddenPoint;for(t=0;t1.5*Math.PI?n-=2*Math.PI:n<-Math.PI/2&&(n+=2*Math.PI),s.slicedTranslation={translateX:Math.round(Math.cos(n)*c),translateY:Math.round(Math.sin(n)*c)},i=Math.cos(n)*t[2]/2,r=Math.sin(n)*t[2]/2,s.tooltipPos=[t[0]+.7*i,t[1]+.7*r],s.half=n<-Math.PI/2||n>Math.PI/2?1:0,s.angle=n,e=Math.min(d,s.labelDistance/5),s.labelPosition={natural:{x:t[0]+i+Math.cos(n)*s.labelDistance,y:t[1]+r+Math.sin(n)*s.labelDistance},final:{},alignment:0>s.labelDistance?"center":s.half?"right":"left",connectorPosition:{breakAt:{x:t[0]+i+Math.cos(n)*e,y:t[1]+r+Math.sin(n)*e},touchingSliceAt:{x:t[0]+i,y:t[1]+r}}}},drawGraph:null,drawPoints:function(){var t,e,n,i,o=this,a=o.chart,l=a.renderer,s=o.options.shadow;!s||o.shadowGroup||a.styledMode||(o.shadowGroup=l.g("shadow").add(o.group)),o.points.forEach(function(u){if(e=u.graphic,u.isNull)e&&(u.graphic=e.destroy());else{if(i=u.shapeArgs,t=u.getTranslate(),!a.styledMode){var c=u.shadowGroup;s&&!c&&(c=u.shadowGroup=l.g("shadow").add(o.shadowGroup)),c&&c.attr(t),n=o.pointAttribs(u,u.selected&&"select")}e?(e.setRadialReference(o.center),a.styledMode||e.attr(n),e.animate(r(i,t))):(u.graphic=e=l[u.shapeType](i).setRadialReference(o.center).attr(t).add(o.group),a.styledMode||e.attr(n).attr({"stroke-linejoin":"round"}).shadow(s,c)),e.attr({visibility:u.visible?"inherit":"hidden"}),e.addClass(u.getClassName())}})},searchPoint:a,sortByAngle:function(t,e){t.sort(function(t,n){return void 0!==t.angle&&(n.angle-t.angle)*e})},drawLegendSymbol:t.LegendSymbolMixin.drawRectangle,getCenter:n.getCenter,getSymbol:a},{init:function(){s.prototype.init.apply(this,arguments);var t,n=this;return n.name=l(n.name,"Slice"),t=function(t){n.slice("select"===t.type)},e(n,"select",t),e(n,"unselect",t),n},isValid:function(){return t.isNumber(this.y,!0)&&0<=this.y},setVisible:function(t,e){var n=this,i=n.series,r=i.chart,o=i.options.ignoreHiddenPoint;e=l(e,o),t!==n.visible&&(n.visible=n.options.visible=t=void 0===t?!n.visible:t,i.options.data[i.data.indexOf(n)]=n.options,["graphic","dataLabel","connector","shadowGroup"].forEach(function(e){n[e]&&n[e][t?"show":"hide"](!0)}),n.legendItem&&r.legend.colorizeItem(n,t),t||"hover"!==n.state||n.setState(""),o&&(i.isDirty=!0),e&&r.redraw())},slice:function(t,e,n){var r=this.series;c(n,r.chart),l(e,!0),this.sliced=this.options.sliced=i(t)?t:!this.sliced,r.options.data[r.data.indexOf(this)]=this.options,this.graphic.animate(this.getTranslate()),this.shadowGroup&&this.shadowGroup.animate(this.getTranslate())},getTranslate:function(){return this.sliced?this.slicedTranslation:{translateX:0,translateY:0}},haloPath:function(t){var e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+t,e.r+t,{innerR:this.shapeArgs.r-1,start:e.start,end:e.end})},connectorShapes:{fixedOffset:function(t,e,n){var i=e.breakAt;return e=e.touchingSliceAt,["M",t.x,t.y].concat(n.softConnector?["C",t.x+("left"===t.alignment?-5:5),t.y,2*i.x-e.x,2*i.y-e.y,i.x,i.y]:["L",i.x,i.y]).concat(["L",e.x,e.y])},straight:function(t,e){return["M",t.x,t.y,"L",(e=e.touchingSliceAt).x,e.y]},crookedLine:function(e,n,i){n=n.touchingSliceAt;var r=(l=this.series).center[0],o=l.chart.plotWidth,a=l.chart.plotLeft,l=e.alignment,s=this.shapeArgs.r;return i=t.relativeLength(i.crookDistance,1),r=["L",i="left"===l?r+s+(o+a-r-s)*(1-i):a+(r-s)*i,e.y],("left"===l?i>e.x||in.x)&&(r=[]),["M",e.x,e.y].concat(r).concat(["L",n.x,n.y])}},getConnectorPath:function(){var t=this.labelPosition,e=this.series.options.dataLabels,n=e.connectorShape,i=this.connectorShapes;return i[n]&&(n=i[n]),n.call(this,{x:t.final.x,y:t.final.y,alignment:t.alignment},t.connectorPosition,e)}})}(u),function(t){var e=t.addEvent,n=t.arrayMax,i=t.defined,r=t.extend,o=t.format,a=t.merge,l=t.noop,s=t.pick,u=t.relativeLength,c=t.Series,d=t.seriesTypes,h=t.stableSort,p=t.isArray,f=t.splat;t.distribute=function(e,n,i){function r(t,e){return t.target-e.target}var o,a,l=!0,u=e,c=[];a=0;var d=u.reducedLen||n;for(o=e.length;o--;)a+=e[o].size;if(a>d){for(h(e,function(t,e){return(e.rank||0)-(t.rank||0)}),a=o=0;a<=d;)a+=e[o].size,o++;c=e.splice(o-1,e.length)}for(h(e,r),e=e.map(function(t){return{size:t.size,targets:[t.target],align:s(t.align,.5)}});l;){for(o=e.length;o--;)l=e[o],a=(Math.min.apply(0,l.targets)+Math.max.apply(0,l.targets))/2,l.pos=Math.min(Math.max(0,a-l.size*l.align),n-l.size);for(o=e.length,l=!1;o--;)0e[o].pos&&(e[o-1].size+=e[o].size,e[o-1].targets=e[o-1].targets.concat(e[o].targets),e[o-1].align=.5,e[o-1].pos+e[o-1].size>n&&(e[o-1].pos=n-e[o-1].size),e.splice(o,1),l=!0)}u.push.apply(u,c),o=0,e.some(function(e){var r=0;if(e.targets.some(function(){if(u[o].pos=e.pos+r,Math.abs(u[o].pos-u[o].target)>i)return u.slice(0,o+1).forEach(function(t){delete t.pos}),u.reducedLen=(u.reducedLen||n)-.1*n,u.reducedLen>.1*n&&t.distribute(u,n,i),!0;r+=u[o].size,o++}))return!0}),h(u,r)},c.prototype.drawDataLabels=function(){function n(t,e){var n,i=[];if(p(t)&&!p(e))i=t.map(function(t){return a(t,e)});else if(p(e)&&!p(t))i=e.map(function(e){return a(t,e)});else if(p(t)||p(e))for(n=Math.max(t.length,e.length);n--;)i[n]=a(t[n],e[n]);else i=a(t,e);return i}var r,l=this,u=l.chart,c=l.options,d=l.points,h=l.hasRendered||0,m=s((y=c.dataLabels).defer,!!c.animation),g=u.renderer,y=n(n(u.options.plotOptions&&u.options.plotOptions.series&&u.options.plotOptions.series.dataLabels,u.options.plotOptions&&u.options.plotOptions[l.type]&&u.options.plotOptions[l.type].dataLabels),y);t.fireEvent(this,"drawDataLabels"),(p(y)||y.enabled||l._hasPointLabels)&&(r=l.plotGroup("dataLabelsGroup","data-labels",m&&!h?"hidden":"visible",y.zIndex||6),m&&(r.attr({opacity:+h}),h||e(l,"afterAnimate",function(){l.visible&&r.show(!0),r[c.animation?"animate":"attr"]({opacity:1},{duration:200})})),d.forEach(function(e){f(n(y,e.dlOptions||e.options&&e.options.dataLabels)).forEach(function(n,a){var d,h,p,f,m=n.enabled&&!e.isNull&&function(t,e){var n=e.filter;return!n||(e=n.operator,t=t[n.property],n=n.value,">"===e&&t>n||"<"===e&&t="===e&&t>=n||"<="===e&&t<=n||"=="===e&&t==n||"==="===e&&t===n)}(e,n),y=e.dataLabels?e.dataLabels[a]:e.dataLabel,_=e.connectors?e.connectors[a]:e.connector,v=!y;m&&(d=e.getLabelConfig(),d=i(h=n[e.formatPrefix+"Format"]||n.format)?o(h,d,u.time):(n[e.formatPrefix+"Formatter"]||n.formatter).call(d,n),h=n.style,p=n.rotation,u.styledMode||(h.color=s(n.color,h.color,l.color,"#000000"),"contrast"===h.color&&(e.contrastColor=g.getContrast(e.color||l.color),h.color=n.inside||0>s(n.distance,e.labelDistance)||c.stacking?e.contrastColor:"#000000"),c.cursor&&(h.cursor=c.cursor)),f={r:n.borderRadius||0,rotation:p,padding:n.padding,zIndex:1},u.styledMode||(f.fill=n.backgroundColor,f.stroke=n.borderColor,f["stroke-width"]=n.borderWidth),t.objectEach(f,function(t,e){void 0===t&&delete f[e]})),!y||m&&i(d)?m&&i(d)&&(y?f.text=d:(e.dataLabels=e.dataLabels||[],y=e.dataLabels[a]=p?g.text(d,0,-9999).addClass("highcharts-data-label"):g.label(d,0,-9999,n.shape,null,null,n.useHTML,null,"data-label"),a||(e.dataLabel=y),y.addClass(" highcharts-data-label-color-"+e.colorIndex+" "+(n.className||"")+(n.useHTML?" highcharts-tracker":""))),y.options=n,y.attr(f),u.styledMode||y.css(h).shadow(n.shadow),y.added||y.add(r),l.alignDataLabel(e,y,n,null,v)):(e.dataLabel=e.dataLabel&&e.dataLabel.destroy(),e.dataLabels&&(1===e.dataLabels.length?delete e.dataLabels:delete e.dataLabels[a]),a||delete e.dataLabel,_&&(e.connector=e.connector.destroy(),e.connectors&&(1===e.connectors.length?delete e.connectors:delete e.connectors[a])))})})),t.fireEvent(this,"afterDrawDataLabels")},c.prototype.alignDataLabel=function(t,e,n,i,o){var a,l=this.chart,u=this.isCartesian&&l.inverted,c=s(t.dlBox&&t.dlBox.centerX,t.plotX,-9999),d=s(t.plotY,-9999),h=e.getBBox(),p=n.rotation,f=n.align,m=this.visible&&(t.series.forceDL||l.isInsidePlot(c,Math.round(d),u)||i&&l.isInsidePlot(c,u?i.x+1:i.y+i.height-1,u)),g="justify"===s(n.overflow,"justify");m&&(a=l.renderer.fontMetrics(l.styledMode?void 0:n.style.fontSize,e).b,i=r({x:u?this.yAxis.len-d:c,y:Math.round(u?this.xAxis.len-c:d),width:0,height:0},i),r(n,{width:h.width,height:h.height}),p?(g=!1,c=l.renderer.rotCorr(a,p),e[o?"attr":"animate"](c={x:i.x+n.x+i.width/2+c.x,y:i.y+n.y+{top:0,middle:.5,bottom:1}[n.verticalAlign]*i.height}).attr({align:f}),d=180<(d=(p+720)%360)&&360>d,"left"===f?c.y-=d?h.height:0:"center"===f?(c.x-=h.width/2,c.y-=h.height/2):"right"===f&&(c.x-=h.width,c.y-=d?0:h.height),e.placed=!0,e.alignAttr=c):(e.align(n,null,i),c=e.alignAttr),g&&0<=i.height?t.isLabelJustified=this.justifyDataLabel(e,n,c,h,i,o):s(n.crop,!0)&&(m=l.isInsidePlot(c.x,c.y)&&l.isInsidePlot(c.x+h.width,c.y+h.height)),n.shape&&!p)&&e[o?"attr":"animate"]({anchorX:u?l.plotWidth-t.plotY:t.plotX,anchorY:u?l.plotHeight-t.plotX:t.plotY}),m||(e.attr({y:-9999}),e.placed=!1)},c.prototype.justifyDataLabel=function(t,e,n,i,r,o){var a,l,s=this.chart,u=e.align,c=e.verticalAlign,d=t.box?0:t.padding||0;return 0>(a=n.x+d)&&("right"===u?e.align="left":e.x=-a,l=!0),(a=n.x+i.width-d)>s.plotWidth&&("left"===u?e.align="right":e.x=s.plotWidth-a,l=!0),0>(a=n.y+d)&&("bottom"===c?e.verticalAlign="top":e.y=-a,l=!0),(a=n.y+i.height-d)>s.plotHeight&&("top"===c?e.verticalAlign="bottom":e.y=s.plotHeight-a,l=!0),l&&(t.placed=!o,t.align(e,null,r)),l},d.pie&&(d.pie.prototype.dataLabelPositioners={radialDistributionY:function(t){return t.top+t.distributeBox.pos},radialDistributionX:function(t,e,n,i){return t.getX(ne.bottom-2?i:n,e.half,e)},justify:function(t,e,n){return n[0]+(t.half?-1:1)*(e+t.labelDistance)},alignToPlotEdges:function(t,e,n,i){return t=t.getBBox().width,e?t+i:n-t-i},alignToConnectors:function(t,e,n,i){var r,o=0;return t.forEach(function(t){(r=t.dataLabel.getBBox().width)>o&&(o=r)}),e?o+i:n-o-i}},d.pie.prototype.drawDataLabels=function(){var e,r,o,a,l,u,d,h,p,f,m=this,g=m.data,y=m.chart,_=m.options.dataLabels,v=_.connectorPadding,b=s(_.connectorWidth,1),x=y.plotWidth,w=y.plotHeight,k=y.plotLeft,M=Math.round(y.chartWidth/3),S=m.center,C=S[2]/2,L=S[1],D=[[],[]],T=[0,0,0,0],E=m.dataLabelPositioners;m.visible&&(_.enabled||m._hasPointLabels)&&(g.forEach(function(t){t.dataLabel&&t.visible&&t.dataLabel.shortened&&(t.dataLabel.attr({width:"auto"}).css({width:"auto",textOverflow:"clip"}),t.dataLabel.shortened=!1)}),c.prototype.drawDataLabels.apply(m),g.forEach(function(t){t.dataLabel&&(t.visible?(D[t.half].push(t),t.dataLabel._pos=null,!i(_.style.width)&&!i(t.options.dataLabels&&t.options.dataLabels.style&&t.options.dataLabels.style.width)&&t.dataLabel.getBBox().width>M&&(t.dataLabel.css({width:.7*M}),t.dataLabel.shortened=!0)):(t.dataLabel=t.dataLabel.destroy(),t.dataLabels&&1===t.dataLabels.length&&delete t.dataLabels))}),D.forEach(function(n,r){var c,g,b,M=n.length,D=[];if(M)for(m.sortByAngle(n,r-.5),0x-v&&0===r&&(c=Math.round(d+a-x+v),T[1]=Math.max(c,T[1])),0>h-u/2?T[0]=Math.max(Math.round(u/2-h),T[0]):h+u/2>w&&(T[2]=Math.max(Math.round(h+u/2-w),T[2])),o.sideOverflow=c)}}),0===n(T)||this.verifyDataLabelOverflow(T))&&(this.placeDataLabels(),b&&this.points.forEach(function(t){var e;r=t.connector,(o=t.dataLabel)&&o._pos&&t.visible&&0s(this.translatedThreshold,l.yAxis.len)),h=s(n.inside,!!this.options.stacking);u&&(0>(i=a(u)).y&&(i.height+=i.y,i.y=0),0<(u=i.y+i.height-l.yAxis.len)&&(i.height-=u),o&&(i={x:l.yAxis.len-i.y-i.height,y:l.xAxis.len-i.x-i.width,width:i.height,height:i.width}),h||(o?(i.x+=d?0:i.width,i.width=0):(i.y+=d?i.height:0,i.height=0))),n.align=s(n.align,!o||h?"center":d?"right":"left"),n.verticalAlign=s(n.verticalAlign,o||h?"middle":d?"top":"bottom"),c.prototype.alignDataLabel.call(this,t,e,n,i,r),t.isLabelJustified&&t.contrastColor&&e.css({color:t.contrastColor})})}(u),function(t){var e=u.Chart,n=u.isArray,i=u.objectEach,r=u.pick,o=u.fireEvent;(0,u.addEvent)(e,"render",function(){var t=[];(this.labelCollectors||[]).forEach(function(e){t=t.concat(e())}),(this.yAxis||[]).forEach(function(e){e.options.stackLabels&&!e.options.stackLabels.allowOverlap&&i(e.stacks,function(e){i(e,function(e){t.push(e.label)})})}),(this.series||[]).forEach(function(e){e.visible&&(!1!==e.options.dataLabels.enabled||e._hasPointLabels)&&e.points.forEach(function(e){e.visible&&(n(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[]).forEach(function(n){var i=n.options;n.labelrank=r(i.labelrank,e.labelrank,e.shapeArgs&&e.shapeArgs.height),i.allowOverlap||t.push(n)})})}),this.hideOverlappingLabels(t)}),e.prototype.hideOverlappingLabels=function(t){var e,n,i,r,a,l,s=this,u=t.length,c=s.renderer,d=function(t,e,n,i,r,o,a,l){return!(r>t+n||r+ae+i||o+lthis.pointCount))},pan:function(t,e){var n,i=this,r=i.hoverPoints;u(this,"pan",{originalEvent:t},function(){r&&r.forEach(function(t){t.setState()}),("xy"===e?[1,0]:[1]).forEach(function(e){var r,o,a=t[(r=(e=i[e?"xAxis":"yAxis"][0]).horiz)?"chartX":"chartY"],l=i[r=r?"mouseDownX":"mouseDownY"],s=(e.pointRange||0)/2,u=e.reversed&&!i.inverted||!e.reversed&&i.inverted?-1:1,c=e.getExtremes(),d=e.toValue(l-a,!0)+s*u;l=(o=(u=e.toValue(l+e.len-a,!0)-s*u)=r(n.minWidth,0)&&this.chartHeight>=r(n.minHeight,0)}).call(this)&&e.push(t._id)},e.prototype.currentOptions=function(e){var r={};return function e(r,a,l,s){var u;t.objectEach(r,function(t,r){if(!s&&-1<["series","xAxis","yAxis"].indexOf(r))for(t=o(t),l[r]=[],u=0;u11?n?"\u0db4.\u0dc0.":"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4":n?"\u0db4\u0dd9.\u0dc0.":"\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4"}})}()},"8/+R":function(t,e,n){!function(t){"use strict";var e={1:"\u0a67",2:"\u0a68",3:"\u0a69",4:"\u0a6a",5:"\u0a6b",6:"\u0a6c",7:"\u0a6d",8:"\u0a6e",9:"\u0a6f",0:"\u0a66"},n={"\u0a67":"1","\u0a68":"2","\u0a69":"3","\u0a6a":"4","\u0a6b":"5","\u0a6c":"6","\u0a6d":"7","\u0a6e":"8","\u0a6f":"9","\u0a66":"0"};t.defineLocale("pa-in",{months:"\u0a1c\u0a28\u0a35\u0a30\u0a40_\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40_\u0a2e\u0a3e\u0a30\u0a1a_\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32_\u0a2e\u0a08_\u0a1c\u0a42\u0a28_\u0a1c\u0a41\u0a32\u0a3e\u0a08_\u0a05\u0a17\u0a38\u0a24_\u0a38\u0a24\u0a70\u0a2c\u0a30_\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30_\u0a28\u0a35\u0a70\u0a2c\u0a30_\u0a26\u0a38\u0a70\u0a2c\u0a30".split("_"),monthsShort:"\u0a1c\u0a28\u0a35\u0a30\u0a40_\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40_\u0a2e\u0a3e\u0a30\u0a1a_\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32_\u0a2e\u0a08_\u0a1c\u0a42\u0a28_\u0a1c\u0a41\u0a32\u0a3e\u0a08_\u0a05\u0a17\u0a38\u0a24_\u0a38\u0a24\u0a70\u0a2c\u0a30_\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30_\u0a28\u0a35\u0a70\u0a2c\u0a30_\u0a26\u0a38\u0a70\u0a2c\u0a30".split("_"),weekdays:"\u0a10\u0a24\u0a35\u0a3e\u0a30_\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30_\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30_\u0a2c\u0a41\u0a27\u0a35\u0a3e\u0a30_\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30_\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30_\u0a38\u0a3c\u0a28\u0a40\u0a1a\u0a30\u0a35\u0a3e\u0a30".split("_"),weekdaysShort:"\u0a10\u0a24_\u0a38\u0a4b\u0a2e_\u0a2e\u0a70\u0a17\u0a32_\u0a2c\u0a41\u0a27_\u0a35\u0a40\u0a30_\u0a38\u0a3c\u0a41\u0a15\u0a30_\u0a38\u0a3c\u0a28\u0a40".split("_"),weekdaysMin:"\u0a10\u0a24_\u0a38\u0a4b\u0a2e_\u0a2e\u0a70\u0a17\u0a32_\u0a2c\u0a41\u0a27_\u0a35\u0a40\u0a30_\u0a38\u0a3c\u0a41\u0a15\u0a30_\u0a38\u0a3c\u0a28\u0a40".split("_"),longDateFormat:{LT:"A h:mm \u0a35\u0a1c\u0a47",LTS:"A h:mm:ss \u0a35\u0a1c\u0a47",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0a35\u0a1c\u0a47",LLLL:"dddd, D MMMM YYYY, A h:mm \u0a35\u0a1c\u0a47"},calendar:{sameDay:"[\u0a05\u0a1c] LT",nextDay:"[\u0a15\u0a32] LT",nextWeek:"[\u0a05\u0a17\u0a32\u0a3e] dddd, LT",lastDay:"[\u0a15\u0a32] LT",lastWeek:"[\u0a2a\u0a3f\u0a1b\u0a32\u0a47] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0a35\u0a3f\u0a71\u0a1a",past:"%s \u0a2a\u0a3f\u0a1b\u0a32\u0a47",s:"\u0a15\u0a41\u0a1d \u0a38\u0a15\u0a3f\u0a70\u0a1f",ss:"%d \u0a38\u0a15\u0a3f\u0a70\u0a1f",m:"\u0a07\u0a15 \u0a2e\u0a3f\u0a70\u0a1f",mm:"%d \u0a2e\u0a3f\u0a70\u0a1f",h:"\u0a07\u0a71\u0a15 \u0a18\u0a70\u0a1f\u0a3e",hh:"%d \u0a18\u0a70\u0a1f\u0a47",d:"\u0a07\u0a71\u0a15 \u0a26\u0a3f\u0a28",dd:"%d \u0a26\u0a3f\u0a28",M:"\u0a07\u0a71\u0a15 \u0a2e\u0a39\u0a40\u0a28\u0a3e",MM:"%d \u0a2e\u0a39\u0a40\u0a28\u0a47",y:"\u0a07\u0a71\u0a15 \u0a38\u0a3e\u0a32",yy:"%d \u0a38\u0a3e\u0a32"},preparse:function(t){return t.replace(/[\u0a67\u0a68\u0a69\u0a6a\u0a6b\u0a6c\u0a6d\u0a6e\u0a6f\u0a66]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0a30\u0a3e\u0a24|\u0a38\u0a35\u0a47\u0a30|\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30|\u0a38\u0a3c\u0a3e\u0a2e/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0a30\u0a3e\u0a24"===e?t<4?t:t+12:"\u0a38\u0a35\u0a47\u0a30"===e?t:"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30"===e?t>=10?t:t+12:"\u0a38\u0a3c\u0a3e\u0a2e"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0a30\u0a3e\u0a24":t<10?"\u0a38\u0a35\u0a47\u0a30":t<17?"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30":t<20?"\u0a38\u0a3c\u0a3e\u0a2e":"\u0a30\u0a3e\u0a24"},week:{dow:0,doy:6}})}(n("wd/R"))},"8mBD":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("pt",{months:"Janeiro_Fevereiro_Mar\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Ter\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\xe1bado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_S\xe1b".split("_"),weekdaysMin:"Do_2\xaa_3\xaa_4\xaa_5\xaa_6\xaa_S\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje \xe0s] LT",nextDay:"[Amanh\xe3 \xe0s] LT",nextWeek:"dddd [\xe0s] LT",lastDay:"[Ontem \xe0s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[\xdaltimo] dddd [\xe0s] LT":"[\xdaltima] dddd [\xe0s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"h\xe1 %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xeas",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},"9rRi":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("gd",{months:["Am Faoilleach","An Gearran","Am M\xe0rt","An Giblean","An C\xe8itean","An t-\xd2gmhios","An t-Iuchar","An L\xf9nastal","An t-Sultain","An D\xe0mhair","An t-Samhain","An D\xf9bhlachd"],monthsShort:["Faoi","Gear","M\xe0rt","Gibl","C\xe8it","\xd2gmh","Iuch","L\xf9n","Sult","D\xe0mh","Samh","D\xf9bh"],monthsParseExact:!0,weekdays:["Did\xf2mhnaich","Diluain","Dim\xe0irt","Diciadain","Diardaoin","Dihaoine","Disathairne"],weekdaysShort:["Did","Dil","Dim","Dic","Dia","Dih","Dis"],weekdaysMin:["D\xf2","Lu","M\xe0","Ci","Ar","Ha","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[An-diugh aig] LT",nextDay:"[A-m\xe0ireach aig] LT",nextWeek:"dddd [aig] LT",lastDay:"[An-d\xe8 aig] LT",lastWeek:"dddd [seo chaidh] [aig] LT",sameElse:"L"},relativeTime:{future:"ann an %s",past:"bho chionn %s",s:"beagan diogan",ss:"%d diogan",m:"mionaid",mm:"%d mionaidean",h:"uair",hh:"%d uairean",d:"latha",dd:"%d latha",M:"m\xecos",MM:"%d m\xecosan",y:"bliadhna",yy:"%d bliadhna"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(t){return t+(1===t?"d":t%10==2?"na":"mh")},week:{dow:1,doy:4}})}()},"A+xa":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("cv",{months:"\u043a\u04d1\u0440\u043b\u0430\u0447_\u043d\u0430\u0440\u04d1\u0441_\u043f\u0443\u0448_\u0430\u043a\u0430_\u043c\u0430\u0439_\u04ab\u04d7\u0440\u0442\u043c\u0435_\u0443\u0442\u04d1_\u04ab\u0443\u0440\u043b\u0430_\u0430\u0432\u04d1\u043d_\u044e\u043f\u0430_\u0447\u04f3\u043a_\u0440\u0430\u0448\u0442\u0430\u0432".split("_"),monthsShort:"\u043a\u04d1\u0440_\u043d\u0430\u0440_\u043f\u0443\u0448_\u0430\u043a\u0430_\u043c\u0430\u0439_\u04ab\u04d7\u0440_\u0443\u0442\u04d1_\u04ab\u0443\u0440_\u0430\u0432\u043d_\u044e\u043f\u0430_\u0447\u04f3\u043a_\u0440\u0430\u0448".split("_"),weekdays:"\u0432\u044b\u0440\u0441\u0430\u0440\u043d\u0438\u043a\u0443\u043d_\u0442\u0443\u043d\u0442\u0438\u043a\u0443\u043d_\u044b\u0442\u043b\u0430\u0440\u0438\u043a\u0443\u043d_\u044e\u043d\u043a\u0443\u043d_\u043a\u04d7\u04ab\u043d\u0435\u0440\u043d\u0438\u043a\u0443\u043d_\u044d\u0440\u043d\u0435\u043a\u0443\u043d_\u0448\u04d1\u043c\u0430\u0442\u043a\u0443\u043d".split("_"),weekdaysShort:"\u0432\u044b\u0440_\u0442\u0443\u043d_\u044b\u0442\u043b_\u044e\u043d_\u043a\u04d7\u04ab_\u044d\u0440\u043d_\u0448\u04d1\u043c".split("_"),weekdaysMin:"\u0432\u0440_\u0442\u043d_\u044b\u0442_\u044e\u043d_\u043a\u04ab_\u044d\u0440_\u0448\u043c".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7]",LLL:"YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7], HH:mm",LLLL:"dddd, YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7], HH:mm"},calendar:{sameDay:"[\u041f\u0430\u044f\u043d] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",nextDay:"[\u042b\u0440\u0430\u043d] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",lastDay:"[\u04d6\u043d\u0435\u0440] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",nextWeek:"[\u04aa\u0438\u0442\u0435\u0441] dddd LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",lastWeek:"[\u0418\u0440\u0442\u043d\u04d7] dddd LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",sameElse:"L"},relativeTime:{future:function(t){return t+(/\u0441\u0435\u0445\u0435\u0442$/i.exec(t)?"\u0440\u0435\u043d":/\u04ab\u0443\u043b$/i.exec(t)?"\u0442\u0430\u043d":"\u0440\u0430\u043d")},past:"%s \u043a\u0430\u044f\u043b\u043b\u0430",s:"\u043f\u04d7\u0440-\u0438\u043a \u04ab\u0435\u043a\u043a\u0443\u043d\u0442",ss:"%d \u04ab\u0435\u043a\u043a\u0443\u043d\u0442",m:"\u043f\u04d7\u0440 \u043c\u0438\u043d\u0443\u0442",mm:"%d \u043c\u0438\u043d\u0443\u0442",h:"\u043f\u04d7\u0440 \u0441\u0435\u0445\u0435\u0442",hh:"%d \u0441\u0435\u0445\u0435\u0442",d:"\u043f\u04d7\u0440 \u043a\u0443\u043d",dd:"%d \u043a\u0443\u043d",M:"\u043f\u04d7\u0440 \u0443\u0439\u04d1\u0445",MM:"%d \u0443\u0439\u04d1\u0445",y:"\u043f\u04d7\u0440 \u04ab\u0443\u043b",yy:"%d \u04ab\u0443\u043b"},dayOfMonthOrdinalParse:/\d{1,2}-\u043c\u04d7\u0448/,ordinal:"%d-\u043c\u04d7\u0448",week:{dow:1,doy:7}})}()},AQ68:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}})}()},AvvY:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ml",{months:"\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f_\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f_\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d_\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d_\u0d2e\u0d47\u0d2f\u0d4d_\u0d1c\u0d42\u0d7a_\u0d1c\u0d42\u0d32\u0d48_\u0d13\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d_\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c_\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d7c_\u0d28\u0d35\u0d02\u0d2c\u0d7c_\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c".split("_"),monthsShort:"\u0d1c\u0d28\u0d41._\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41._\u0d2e\u0d3e\u0d7c._\u0d0f\u0d2a\u0d4d\u0d30\u0d3f._\u0d2e\u0d47\u0d2f\u0d4d_\u0d1c\u0d42\u0d7a_\u0d1c\u0d42\u0d32\u0d48._\u0d13\u0d17._\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31._\u0d12\u0d15\u0d4d\u0d1f\u0d4b._\u0d28\u0d35\u0d02._\u0d21\u0d3f\u0d38\u0d02.".split("_"),monthsParseExact:!0,weekdays:"\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a_\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a_\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a_\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a_\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a_\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a_\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a".split("_"),weekdaysShort:"\u0d1e\u0d3e\u0d2f\u0d7c_\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d7e_\u0d1a\u0d4a\u0d35\u0d4d\u0d35_\u0d2c\u0d41\u0d27\u0d7b_\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02_\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f_\u0d36\u0d28\u0d3f".split("_"),weekdaysMin:"\u0d1e\u0d3e_\u0d24\u0d3f_\u0d1a\u0d4a_\u0d2c\u0d41_\u0d35\u0d4d\u0d2f\u0d3e_\u0d35\u0d46_\u0d36".split("_"),longDateFormat:{LT:"A h:mm -\u0d28\u0d41",LTS:"A h:mm:ss -\u0d28\u0d41",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -\u0d28\u0d41",LLLL:"dddd, D MMMM YYYY, A h:mm -\u0d28\u0d41"},calendar:{sameDay:"[\u0d07\u0d28\u0d4d\u0d28\u0d4d] LT",nextDay:"[\u0d28\u0d3e\u0d33\u0d46] LT",nextWeek:"dddd, LT",lastDay:"[\u0d07\u0d28\u0d4d\u0d28\u0d32\u0d46] LT",lastWeek:"[\u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d",past:"%s \u0d2e\u0d41\u0d7b\u0d2a\u0d4d",s:"\u0d05\u0d7d\u0d2a \u0d28\u0d3f\u0d2e\u0d3f\u0d37\u0d19\u0d4d\u0d19\u0d7e",ss:"%d \u0d38\u0d46\u0d15\u0d4d\u0d15\u0d7b\u0d21\u0d4d",m:"\u0d12\u0d30\u0d41 \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d",mm:"%d \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d",h:"\u0d12\u0d30\u0d41 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c",hh:"%d \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c",d:"\u0d12\u0d30\u0d41 \u0d26\u0d3f\u0d35\u0d38\u0d02",dd:"%d \u0d26\u0d3f\u0d35\u0d38\u0d02",M:"\u0d12\u0d30\u0d41 \u0d2e\u0d3e\u0d38\u0d02",MM:"%d \u0d2e\u0d3e\u0d38\u0d02",y:"\u0d12\u0d30\u0d41 \u0d35\u0d7c\u0d37\u0d02",yy:"%d \u0d35\u0d7c\u0d37\u0d02"},meridiemParse:/\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f|\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46|\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d|\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02|\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f/i,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"===e&&t>=4||"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d"===e||"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02"===e?t+12:t},meridiem:function(t,e,n){return t<4?"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f":t<12?"\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46":t<17?"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d":t<20?"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02":"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"}})}()},AxlJ:function(t,e,n){var i,r;r=function(t){!function(t,e){var n=t.defaultOptions,i=t.doc,r=t.Chart,o=t.addEvent,a=t.removeEvent,l=t.fireEvent,s=t.createElement,u=t.discardElement,c=t.css,d=t.merge,h=t.pick,p=t.objectEach,f=t.extend,m=t.isTouchDevice,g=t.win,y=g.navigator.userAgent,_=t.SVGRenderer,v=t.Renderer.prototype.symbols,b=/Edge\/|Trident\/|MSIE /.test(y),x=/firefox/i.test(y);f(n.lang,{printChart:"Print chart",downloadPNG:"Download PNG image",downloadJPEG:"Download JPEG image",downloadPDF:"Download PDF document",downloadSVG:"Download SVG vector image",contextButtonTitle:"Chart context menu"}),n.navigation||(n.navigation={}),d(!0,n.navigation,{buttonOptions:{theme:{},symbolSize:14,symbolX:12.5,symbolY:10.5,align:"right",buttonSpacing:3,height:22,verticalAlign:"top",width:24}}),d(!0,n.navigation,{menuStyle:{border:"1px solid #999999",background:"#ffffff",padding:"5px 0"},menuItemStyle:{padding:"0.5em 1em",color:"#333333",background:"none",fontSize:m?"14px":"11px",transition:"background 250ms, color 250ms"},menuItemHoverStyle:{background:"#335cad",color:"#ffffff"},buttonOptions:{symbolFill:"#666666",symbolStroke:"#666666",symbolStrokeWidth:3,theme:{padding:5}}}),n.exporting={type:"image/png",url:"https://export.highcharts.com/",printMaxWidth:780,scale:2,buttons:{contextButton:{className:"highcharts-contextbutton",menuClassName:"highcharts-contextmenu",symbol:"menu",titleKey:"contextButtonTitle",menuItems:"printChart separator downloadPNG downloadJPEG downloadPDF downloadSVG".split(" ")}},menuItemDefinitions:{printChart:{textKey:"printChart",onclick:function(){this.print()}},separator:{separator:!0},downloadPNG:{textKey:"downloadPNG",onclick:function(){this.exportChart()}},downloadJPEG:{textKey:"downloadJPEG",onclick:function(){this.exportChart({type:"image/jpeg"})}},downloadPDF:{textKey:"downloadPDF",onclick:function(){this.exportChart({type:"application/pdf"})}},downloadSVG:{textKey:"downloadSVG",onclick:function(){this.exportChart({type:"image/svg+xml"})}}}},t.post=function(t,e,n){var r=s("form",d({method:"post",action:t,enctype:"multipart/form-data"},n),{display:"none"},i.body);p(e,function(t,e){s("input",{type:"hidden",name:e,value:t},null,r)}),r.submit(),u(r)},f(r.prototype,{sanitizeSVG:function(t,e){if(e&&e.exporting&&e.exporting.allowHTML){var n=t.match(/<\/svg>(.*?$)/);n&&n[1]&&(t=t.replace("",(n=''+n[1]+"")+""))}return t=t.replace(/zIndex="[^"]+"/g,"").replace(/symbolName="[^"]+"/g,"").replace(/jQuery[0-9]+="[^"]+"/g,"").replace(/url\(("|")(\S+)("|")\)/g,"url($2)").replace(/url\([^#]+#/g,"url(#").replace(/.*?$/,"").replace(/(fill|stroke)="rgba\(([ 0-9]+,[ 0-9]+,[ 0-9]+),([ 0-9\.]+)\)"/g,'$1="rgb($2)" $1-opacity="$3"').replace(/ /g,"\xa0").replace(/­/g,"\xad"),this.ieSanitizeSVG&&(t=this.ieSanitizeSVG(t)),t},getChartHTML:function(){return this.styledMode&&this.inlineStyles(),this.container.innerHTML},getSVG:function(e){var n,r,o,a,c,h=d(this.options,e);return r=s("div",null,{position:"absolute",top:"-9999em",width:this.chartWidth+"px",height:this.chartHeight+"px"},i.body),o=this.renderTo.style.width,c=this.renderTo.style.height,o=h.exporting.sourceWidth||h.chart.width||/px$/.test(o)&&parseInt(o,10)||(h.isGantt?800:600),c=h.exporting.sourceHeight||h.chart.height||/px$/.test(c)&&parseInt(c,10)||400,f(h.chart,{animation:!1,renderTo:r,forExport:!0,renderer:"SVGRenderer",width:o,height:c}),h.exporting.enabled=!1,delete h.data,h.series=[],this.series.forEach(function(t){(a=d(t.userOptions,{animation:!1,enableMouseTracking:!1,showCheckbox:!1,visible:t.visible})).isInternal||h.series.push(a)}),this.axes.forEach(function(e){e.userOptions.internalKey||(e.userOptions.internalKey=t.uniqueKey())}),n=new t.Chart(h,this.callback),e&&["xAxis","yAxis","series"].forEach(function(t){var i={};e[t]&&(i[t]=e[t],n.update(i))}),this.axes.forEach(function(e){var i=t.find(n.axes,function(t){return t.options.internalKey===e.userOptions.internalKey}),r=(o=e.getExtremes()).userMin,o=o.userMax;i&&(void 0!==r&&r!==i.min||void 0!==o&&o!==i.max)&&i.setExtremes(r,o,!0,!1)}),o=n.getChartHTML(),l(this,"getSVG",{chartCopy:n}),o=this.sanitizeSVG(o,h),h=null,n.destroy(),u(r),o},getSVGForExport:function(t,e){var n=this.options.exporting;return this.getSVG(d({chart:{borderRadius:0}},n.chartOptions,e,{exporting:{sourceWidth:t&&t.sourceWidth||n.sourceWidth,sourceHeight:t&&t.sourceHeight||n.sourceHeight}}))},getFilename:function(){var t=this.userOptions.title&&this.userOptions.title.text,e=this.options.exporting.filename;return e||("string"==typeof t&&(e=t.toLowerCase().replace(/<\/?[^>]+(>|$)/g,"").replace(/[\s_]+/g,"-").replace(/[^a-z0-9\-]/g,"").replace(/^[\-]+/g,"").replace(/[\-]+/g,"-").substr(0,24).replace(/[\-]+$/g,"")),(!e||5>e.length)&&(e="chart"),e)},exportChart:function(e,n){n=this.getSVGForExport(e,n),e=d(this.options.exporting,e),t.post(e.url,{filename:e.filename||this.getFilename(),type:e.type,width:e.width||0,scale:e.scale,svg:n},e.formAttributes)},print:function(){function t(t){(r.fixedDiv?[r.fixedDiv,r.scrollingContainer]:[r.container]).forEach(function(e){t.appendChild(e)})}var e,n,r=this,o=[],a=i.body,s=a.childNodes,u=r.options.exporting.printMaxWidth;r.isPrinting||(r.isPrinting=!0,r.pointer.reset(null,0),l(r,"beforePrint"),(n=u&&r.chartWidth>u)&&(e=[r.options.chart.width,void 0,!1],r.setSize(u,void 0,!1)),s.forEach(function(t,e){1===t.nodeType&&(o[e]=t.style.display,t.style.display="none")}),t(a),setTimeout(function(){g.focus(),g.print(),setTimeout(function(){t(r.renderTo),s.forEach(function(t,e){1===t.nodeType&&(t.style.display=o[e])}),r.isPrinting=!1,n&&r.setSize.apply(r,e),l(r,"afterPrint")},1e3)},1))},contextMenu:function(e,n,r,a,l,u,d){var h,p=this,m=p.options.navigation,g=p.chartWidth,y=p.chartHeight,_="cache-"+e,v=p[_],b=Math.max(l,u);v||(p.exportContextMenu=p[_]=v=s("div",{className:e},{position:"absolute",zIndex:1e3,padding:b+"px",pointerEvents:"auto"},p.fixedDiv||p.container),h=s("div",{className:"highcharts-menu"},null,v),p.styledMode||c(h,f({MozBoxShadow:"3px 3px 10px #888",WebkitBoxShadow:"3px 3px 10px #888",boxShadow:"3px 3px 10px #888"},m.menuStyle)),v.hideMenu=function(){c(v,{display:"none"}),d&&d.setState(0),p.openMenu=!1,t.clearTimeout(v.hideTimer)},p.exportEvents.push(o(v,"mouseleave",function(){v.hideTimer=setTimeout(v.hideMenu,500)}),o(v,"mouseenter",function(){t.clearTimeout(v.hideTimer)}),o(i,"mouseup",function(t){p.pointer.inClass(t.target,e)||v.hideMenu()}),o(v,"click",function(){p.openMenu&&v.hideMenu()})),n.forEach(function(e){var n;"string"==typeof e&&(e=p.options.exporting.menuItemDefinitions[e]),t.isObject(e,!0)&&(e.separator?n=s("hr",null,null,h):(n=s("div",{className:"highcharts-menu-item",onclick:function(t){t&&t.stopPropagation(),v.hideMenu(),e.onclick&&e.onclick.apply(p,arguments)},innerHTML:e.text||p.options.lang[e.textKey]},null,h),p.styledMode||(n.onmouseover=function(){c(this,m.menuItemHoverStyle)},n.onmouseout=function(){c(this,m.menuItemStyle)},c(n,f({cursor:"pointer"},m.menuItemStyle)))),p.exportDivElements.push(n))}),p.exportDivElements.push(h,v),p.exportMenuWidth=v.offsetWidth,p.exportMenuHeight=v.offsetHeight),n={display:"block"},r+p.exportMenuWidth>g?n.right=g-r-l-b+"px":n.left=r-b+"px",a+u+p.exportMenuHeight>y&&"top"!==d.alignOptions.verticalAlign?n.bottom=y-a-b+"px":n.top=a+u-b+"px",c(v,n),p.openMenu=!0},addButton:function(t){var e,n,i=this,r=i.renderer,o=d(i.options.navigation.buttonOptions,t),a=o.onclick,l=o.menuItems,s=o.symbolSize||12;if(i.btnCount||(i.btnCount=0),i.exportDivElements||(i.exportDivElements=[],i.exportSVGElements=[]),!1!==o.enabled){var u,c=o.theme,p=(m=c.states)&&m.hover,m=m&&m.select;i.styledMode||(c.fill=h(c.fill,"#ffffff"),c.stroke=h(c.stroke,"none")),delete c.states,a?u=function(t){t&&t.stopPropagation(),a.call(i,t)}:l&&(u=function(t){t&&t.stopPropagation(),i.contextMenu(n.menuClassName,l,n.translateX,n.translateY,n.width,n.height,n),n.setState(2)}),o.text&&o.symbol?c.paddingLeft=h(c.paddingLeft,25):o.text||f(c,{width:o.width,height:o.height,padding:0}),i.styledMode||(c["stroke-linecap"]="round",c.fill=h(c.fill,"#ffffff"),c.stroke=h(c.stroke,"none")),(n=r.button(o.text,0,0,u,c,p,m).addClass(t.className).attr({title:h(i.options.lang[o._titleKey||o.titleKey],"")})).menuClassName=t.menuClassName||"highcharts-menu-"+i.btnCount++,o.symbol&&(e=r.symbol(o.symbol,o.symbolX-s/2,o.symbolY-s/2,s,s,{width:s,height:s}).addClass("highcharts-button-symbol").attr({zIndex:1}).add(n),i.styledMode||e.attr({stroke:o.symbolStroke,fill:o.symbolFill,"stroke-width":o.symbolStrokeWidth||1})),n.add(i.exportingGroup).align(f(o,{width:n.width,x:h(o.x,i.buttonOffset)}),!0,"spacingBox"),i.buttonOffset+=(n.width+o.buttonSpacing)*("right"===o.align?-1:1),i.exportSVGElements.push(n,e)}},destroyExport:function(e){var n,i=e?e.target:this,r=i.exportDivElements,o=i.exportEvents;(e=i.exportSVGElements)&&(e.forEach(function(t,e){t&&(t.onclick=t.ontouchstart=null,i[n="cache-"+t.menuClassName]&&delete i[n],i.exportSVGElements[e]=t.destroy())}),e.length=0),i.exportingGroup&&(i.exportingGroup.destroy(),delete i.exportingGroup),r&&(r.forEach(function(e,n){t.clearTimeout(e.hideTimer),a(e,"mouseleave"),i.exportDivElements[n]=e.onmouseout=e.onmouseover=e.ontouchstart=e.onclick=null,u(e)}),r.length=0),o&&(o.forEach(function(t){t()}),o.length=0)}}),_.prototype.inlineToAttributes="fill stroke strokeLinecap strokeLinejoin strokeWidth textAnchor x y".split(" "),_.prototype.inlineBlacklist=[/-/,/^(clipPath|cssText|d|height|width)$/,/^font$/,/[lL]ogical(Width|Height)$/,/perspective/,/TapHighlightColor/,/^transition/,/^length$/],_.prototype.unstyledElements=["clipPath","defs","desc"],r.prototype.inlineStyles=function(){function t(t){return t.replace(/([A-Z])/g,function(t,e){return"-"+e.toLowerCase()})}var e,n,r=(u=this.renderer).inlineToAttributes,o=u.inlineBlacklist,a=u.inlineWhitelist,l=u.unstyledElements,s={},u=i.createElement("iframe");c(u,{width:"1px",height:"1px",visibility:"hidden"}),i.body.appendChild(u),(n=u.contentWindow.document).open(),n.write(''),n.close(),function i(u){function c(e,n){if(y=_=!1,a){for(v=a.length;v--&&!_;)_=a[v].test(n);y=!_}for("transform"===n&&"none"===e&&(y=!0),v=o.length;v--&&!y;)y=o[v].test(n)||"function"==typeof e;y||f[n]===e&&"svg"!==u.nodeName||s[u.nodeName][n]===e||(-1!==r.indexOf(n)?u.setAttribute(t(n),e):w+=t(n)+":"+e+";")}var h,f,m,y,_,v,w="";if(1===u.nodeType&&-1===l.indexOf(u.nodeName)){if(h=g.getComputedStyle(u,null),f="svg"===u.nodeName?{}:g.getComputedStyle(u.parentNode,null),s[u.nodeName]||(e=n.getElementsByTagName("svg")[0],m=n.createElementNS(u.namespaceURI,u.nodeName),e.appendChild(m),s[u.nodeName]=d(g.getComputedStyle(m,null)),"text"===u.nodeName&&delete s.text.fill,e.removeChild(m)),x||b)for(var k in h)c(h[k],k);else p(h,c);w&&(h=u.getAttribute("style"),u.setAttribute("style",(h?h+";":"")+w)),"svg"===u.nodeName&&u.setAttribute("stroke-width","1px"),"text"!==u.nodeName&&[].forEach.call(u.children||u.childNodes,i)}}(this.container.querySelector("svg")),e.parentNode.removeChild(e)},v.menu=function(t,e,n,i){return["M",t,e+2.5,"L",t+n,e+2.5,"M",t,e+i/2+.5,"L",t+n,e+i/2+.5,"M",t,e+i-1.5,"L",t+n,e+i-1.5]},v.menuball=function(t,e,n,i){return[].concat(this.circle(n-(i=i/3-2),e,i,i),this.circle(n-i,e+i+4,i,i),this.circle(n-i,e+2*(i+4),i,i))},r.prototype.renderExporting=function(){var t=this,e=t.options.exporting,n=e.buttons,i=t.isDirtyExporting||!t.exportSVGElements;t.buttonOffset=0,t.isDirtyExporting&&t.destroyExport(),i&&!1!==e.enabled&&(t.exportEvents=[],t.exportingGroup=t.exportingGroup||t.renderer.g("exporting-group").attr({zIndex:3}).add(),p(n,function(e){t.addButton(e)}),t.isDirtyExporting=!1),o(t,"destroy",t.destroyExport)},o(r,"init",function(){var t=this;t.exporting={update:function(e,n){t.isDirtyExporting=!0,d(!0,t.options.exporting,e),h(n,!0)&&t.redraw()}},e.addUpdate(function(e,n){t.isDirtyExporting=!0,d(!0,t.options.navigation,e),h(n,!0)&&t.redraw()},t)}),r.prototype.callbacks.push(function(t){t.renderExporting(),o(t,"redraw",t.renderExporting)})}(t,{initUpdate:function(t){t.navigation||(t.navigation={updates:[],update:function(t,e){this.updates.forEach(function(n){n.update.call(n.context,t,e)})}})},addUpdate:function(t,e){e.navigation||this.initUpdate(e),e.navigation.updates.push({update:t,context:e})}})},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},B55N:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ja",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u65e5\u66dc\u65e5_\u6708\u66dc\u65e5_\u706b\u66dc\u65e5_\u6c34\u66dc\u65e5_\u6728\u66dc\u65e5_\u91d1\u66dc\u65e5_\u571f\u66dc\u65e5".split("_"),weekdaysShort:"\u65e5_\u6708_\u706b_\u6c34_\u6728_\u91d1_\u571f".split("_"),weekdaysMin:"\u65e5_\u6708_\u706b_\u6c34_\u6728_\u91d1_\u571f".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5(ddd) HH:mm"},meridiemParse:/\u5348\u524d|\u5348\u5f8c/i,isPM:function(t){return"\u5348\u5f8c"===t},meridiem:function(t,e,n){return t<12?"\u5348\u524d":"\u5348\u5f8c"},calendar:{sameDay:"[\u4eca\u65e5] LT",nextDay:"[\u660e\u65e5] LT",nextWeek:function(t){return t.week()12?t:t+12:"sanje"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"rati":t<12?"sokalli":t<16?"donparam":t<20?"sanje":"rati"}})}()},Dkky:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("fr-ch",{months:"janvier_f\xe9vrier_mars_avril_mai_juin_juillet_ao\xfbt_septembre_octobre_novembre_d\xe9cembre".split("_"),monthsShort:"janv._f\xe9vr._mars_avr._mai_juin_juil._ao\xfbt_sept._oct._nov._d\xe9c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd\u2019hui \xe0] LT",nextDay:"[Demain \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[Hier \xe0] LT",lastWeek:"dddd [dernier \xe0] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(t,e){switch(e){default:case"M":case"Q":case"D":case"DDD":case"d":return t+(1===t?"er":"e");case"w":case"W":return t+(1===t?"re":"e")}},week:{dow:1,doy:4}})}()},Dmvi:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},DoHr:function(t,e,n){!function(t){"use strict";var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'\xfcnc\xfc",4:"'\xfcnc\xfc",100:"'\xfcnc\xfc",6:"'nc\u0131",9:"'uncu",10:"'uncu",30:"'uncu",60:"'\u0131nc\u0131",90:"'\u0131nc\u0131"};t.defineLocale("tr",{months:"Ocak_\u015eubat_Mart_Nisan_May\u0131s_Haziran_Temmuz_A\u011fustos_Eyl\xfcl_Ekim_Kas\u0131m_Aral\u0131k".split("_"),monthsShort:"Oca_\u015eub_Mar_Nis_May_Haz_Tem_A\u011fu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Sal\u0131_\xc7ar\u015famba_Per\u015fembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_\xc7ar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_\xc7a_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bug\xfcn saat] LT",nextDay:"[yar\u0131n saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[d\xfcn] LT",lastWeek:"[ge\xe7en] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s \xf6nce",s:"birka\xe7 saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir g\xfcn",dd:"%d g\xfcn",M:"bir ay",MM:"%d ay",y:"bir y\u0131l",yy:"%d y\u0131l"},ordinal:function(t,n){switch(n){case"d":case"D":case"Do":case"DD":return t;default:if(0===t)return t+"'\u0131nc\u0131";var i=t%10;return t+(e[i]||e[t%100-i]||e[t>=100?100:null])}},week:{dow:1,doy:7}})}(n("wd/R"))},DxQv:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"s\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\xf8rdag".split("_"),weekdaysShort:"s\xf8n_man_tir_ons_tor_fre_l\xf8r".split("_"),weekdaysMin:"s\xf8_ma_ti_on_to_fr_l\xf8".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"p\xe5 dddd [kl.] LT",lastDay:"[i g\xe5r kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"f\xe5 sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en m\xe5ned",MM:"%d m\xe5neder",y:"et \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},Dzi0:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}})}()},"E+lV":function(t,e,n){!function(t){"use strict";var e={words:{ss:["\u0441\u0435\u043a\u0443\u043d\u0434\u0430","\u0441\u0435\u043a\u0443\u043d\u0434\u0435","\u0441\u0435\u043a\u0443\u043d\u0434\u0438"],m:["\u0458\u0435\u0434\u0430\u043d \u043c\u0438\u043d\u0443\u0442","\u0458\u0435\u0434\u043d\u0435 \u043c\u0438\u043d\u0443\u0442\u0435"],mm:["\u043c\u0438\u043d\u0443\u0442","\u043c\u0438\u043d\u0443\u0442\u0435","\u043c\u0438\u043d\u0443\u0442\u0430"],h:["\u0458\u0435\u0434\u0430\u043d \u0441\u0430\u0442","\u0458\u0435\u0434\u043d\u043e\u0433 \u0441\u0430\u0442\u0430"],hh:["\u0441\u0430\u0442","\u0441\u0430\u0442\u0430","\u0441\u0430\u0442\u0438"],dd:["\u0434\u0430\u043d","\u0434\u0430\u043d\u0430","\u0434\u0430\u043d\u0430"],MM:["\u043c\u0435\u0441\u0435\u0446","\u043c\u0435\u0441\u0435\u0446\u0430","\u043c\u0435\u0441\u0435\u0446\u0438"],yy:["\u0433\u043e\u0434\u0438\u043d\u0430","\u0433\u043e\u0434\u0438\u043d\u0435","\u0433\u043e\u0434\u0438\u043d\u0430"]},correctGrammaticalCase:function(t,e){return 1===t?e[0]:t>=2&&t<=4?e[1]:e[2]},translate:function(t,n,i){var r=e.words[i];return 1===i.length?n?r[0]:r[1]:t+" "+e.correctGrammaticalCase(t,r)}};t.defineLocale("sr-cyrl",{months:"\u0458\u0430\u043d\u0443\u0430\u0440_\u0444\u0435\u0431\u0440\u0443\u0430\u0440_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0438\u043b_\u043c\u0430\u0458_\u0458\u0443\u043d_\u0458\u0443\u043b_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440_\u043e\u043a\u0442\u043e\u0431\u0430\u0440_\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440_\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440".split("_"),monthsShort:"\u0458\u0430\u043d._\u0444\u0435\u0431._\u043c\u0430\u0440._\u0430\u043f\u0440._\u043c\u0430\u0458_\u0458\u0443\u043d_\u0458\u0443\u043b_\u0430\u0432\u0433._\u0441\u0435\u043f._\u043e\u043a\u0442._\u043d\u043e\u0432._\u0434\u0435\u0446.".split("_"),monthsParseExact:!0,weekdays:"\u043d\u0435\u0434\u0435\u0459\u0430_\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a_\u0443\u0442\u043e\u0440\u0430\u043a_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a_\u043f\u0435\u0442\u0430\u043a_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),weekdaysShort:"\u043d\u0435\u0434._\u043f\u043e\u043d._\u0443\u0442\u043e._\u0441\u0440\u0435._\u0447\u0435\u0442._\u043f\u0435\u0442._\u0441\u0443\u0431.".split("_"),weekdaysMin:"\u043d\u0435_\u043f\u043e_\u0443\u0442_\u0441\u0440_\u0447\u0435_\u043f\u0435_\u0441\u0443".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[\u0434\u0430\u043d\u0430\u0441 \u0443] LT",nextDay:"[\u0441\u0443\u0442\u0440\u0430 \u0443] LT",nextWeek:function(){switch(this.day()){case 0:return"[\u0443] [\u043d\u0435\u0434\u0435\u0459\u0443] [\u0443] LT";case 3:return"[\u0443] [\u0441\u0440\u0435\u0434\u0443] [\u0443] LT";case 6:return"[\u0443] [\u0441\u0443\u0431\u043e\u0442\u0443] [\u0443] LT";case 1:case 2:case 4:case 5:return"[\u0443] dddd [\u0443] LT"}},lastDay:"[\u0458\u0443\u0447\u0435 \u0443] LT",lastWeek:function(){return["[\u043f\u0440\u043e\u0448\u043b\u0435] [\u043d\u0435\u0434\u0435\u0459\u0435] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u0443\u0442\u043e\u0440\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u0435] [\u0441\u0440\u0435\u0434\u0435] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u0447\u0435\u0442\u0432\u0440\u0442\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u043f\u0435\u0442\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u0435] [\u0441\u0443\u0431\u043e\u0442\u0435] [\u0443] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"\u0437\u0430 %s",past:"\u043f\u0440\u0435 %s",s:"\u043d\u0435\u043a\u043e\u043b\u0438\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"\u0434\u0430\u043d",dd:e.translate,M:"\u043c\u0435\u0441\u0435\u0446",MM:e.translate,y:"\u0433\u043e\u0434\u0438\u043d\u0443",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("wd/R"))},EOgW:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("th",{months:"\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21_\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c_\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21_\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19_\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21_\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19_\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21_\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21_\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19_\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21_\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19_\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21".split("_"),monthsShort:"\u0e21.\u0e04._\u0e01.\u0e1e._\u0e21\u0e35.\u0e04._\u0e40\u0e21.\u0e22._\u0e1e.\u0e04._\u0e21\u0e34.\u0e22._\u0e01.\u0e04._\u0e2a.\u0e04._\u0e01.\u0e22._\u0e15.\u0e04._\u0e1e.\u0e22._\u0e18.\u0e04.".split("_"),monthsParseExact:!0,weekdays:"\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c_\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c_\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23_\u0e1e\u0e38\u0e18_\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35_\u0e28\u0e38\u0e01\u0e23\u0e4c_\u0e40\u0e2a\u0e32\u0e23\u0e4c".split("_"),weekdaysShort:"\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c_\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c_\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23_\u0e1e\u0e38\u0e18_\u0e1e\u0e24\u0e2b\u0e31\u0e2a_\u0e28\u0e38\u0e01\u0e23\u0e4c_\u0e40\u0e2a\u0e32\u0e23\u0e4c".split("_"),weekdaysMin:"\u0e2d\u0e32._\u0e08._\u0e2d._\u0e1e._\u0e1e\u0e24._\u0e28._\u0e2a.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY \u0e40\u0e27\u0e25\u0e32 H:mm",LLLL:"\u0e27\u0e31\u0e19dddd\u0e17\u0e35\u0e48 D MMMM YYYY \u0e40\u0e27\u0e25\u0e32 H:mm"},meridiemParse:/\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07|\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07/,isPM:function(t){return"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"===t},meridiem:function(t,e,n){return t<12?"\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07":"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"},calendar:{sameDay:"[\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49 \u0e40\u0e27\u0e25\u0e32] LT",nextDay:"[\u0e1e\u0e23\u0e38\u0e48\u0e07\u0e19\u0e35\u0e49 \u0e40\u0e27\u0e25\u0e32] LT",nextWeek:"dddd[\u0e2b\u0e19\u0e49\u0e32 \u0e40\u0e27\u0e25\u0e32] LT",lastDay:"[\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e27\u0e32\u0e19\u0e19\u0e35\u0e49 \u0e40\u0e27\u0e25\u0e32] LT",lastWeek:"[\u0e27\u0e31\u0e19]dddd[\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27 \u0e40\u0e27\u0e25\u0e32] LT",sameElse:"L"},relativeTime:{future:"\u0e2d\u0e35\u0e01 %s",past:"%s\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27",s:"\u0e44\u0e21\u0e48\u0e01\u0e35\u0e48\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35",ss:"%d \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35",m:"1 \u0e19\u0e32\u0e17\u0e35",mm:"%d \u0e19\u0e32\u0e17\u0e35",h:"1 \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07",hh:"%d \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07",d:"1 \u0e27\u0e31\u0e19",dd:"%d \u0e27\u0e31\u0e19",M:"1 \u0e40\u0e14\u0e37\u0e2d\u0e19",MM:"%d \u0e40\u0e14\u0e37\u0e2d\u0e19",y:"1 \u0e1b\u0e35",yy:"%d \u0e1b\u0e35"}})}()},G0Uy:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\u010bembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_\u0120un_Lul_Aww_Set_Ott_Nov_Di\u010b".split("_"),weekdays:"Il-\u0126add_It-Tnejn_It-Tlieta_L-Erbg\u0127a_Il-\u0126amis_Il-\u0120img\u0127a_Is-Sibt".split("_"),weekdaysShort:"\u0126ad_Tne_Tli_Erb_\u0126am_\u0120im_Sib".split("_"),weekdaysMin:"\u0126a_Tn_Tl_Er_\u0126a_\u0120i_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[G\u0127ada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-biera\u0127 fil-]LT",lastWeek:"dddd [li g\u0127adda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f\u2019 %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"sieg\u0127a",hh:"%d sieg\u0127at",d:"\u0121urnata",dd:"%d \u0121ranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},H8ED:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i,r;return"m"===n?e?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443":"h"===n?e?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443":t+" "+(i=+t,r={ss:e?"\u0441\u0435\u043a\u0443\u043d\u0434\u0430_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434":"\u0441\u0435\u043a\u0443\u043d\u0434\u0443_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434",mm:e?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d",hh:e?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d",dd:"\u0434\u0437\u0435\u043d\u044c_\u0434\u043d\u0456_\u0434\u0437\u0451\u043d",MM:"\u043c\u0435\u0441\u044f\u0446_\u043c\u0435\u0441\u044f\u0446\u044b_\u043c\u0435\u0441\u044f\u0446\u0430\u045e",yy:"\u0433\u043e\u0434_\u0433\u0430\u0434\u044b_\u0433\u0430\u0434\u043e\u045e"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}n("wd/R").defineLocale("be",{months:{format:"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f_\u043b\u044e\u0442\u0430\u0433\u0430_\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430_\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430_\u0442\u0440\u0430\u045e\u043d\u044f_\u0447\u044d\u0440\u0432\u0435\u043d\u044f_\u043b\u0456\u043f\u0435\u043d\u044f_\u0436\u043d\u0456\u045e\u043d\u044f_\u0432\u0435\u0440\u0430\u0441\u043d\u044f_\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430_\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434\u0430_\u0441\u043d\u0435\u0436\u043d\u044f".split("_"),standalone:"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c_\u043b\u044e\u0442\u044b_\u0441\u0430\u043a\u0430\u0432\u0456\u043a_\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a_\u0442\u0440\u0430\u0432\u0435\u043d\u044c_\u0447\u044d\u0440\u0432\u0435\u043d\u044c_\u043b\u0456\u043f\u0435\u043d\u044c_\u0436\u043d\u0456\u0432\u0435\u043d\u044c_\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c_\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a_\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434_\u0441\u043d\u0435\u0436\u0430\u043d\u044c".split("_")},monthsShort:"\u0441\u0442\u0443\u0434_\u043b\u044e\u0442_\u0441\u0430\u043a_\u043a\u0440\u0430\u0441_\u0442\u0440\u0430\u0432_\u0447\u044d\u0440\u0432_\u043b\u0456\u043f_\u0436\u043d\u0456\u0432_\u0432\u0435\u0440_\u043a\u0430\u0441\u0442_\u043b\u0456\u0441\u0442_\u0441\u043d\u0435\u0436".split("_"),weekdays:{format:"\u043d\u044f\u0434\u0437\u0435\u043b\u044e_\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a_\u0430\u045e\u0442\u043e\u0440\u0430\u043a_\u0441\u0435\u0440\u0430\u0434\u0443_\u0447\u0430\u0446\u0432\u0435\u0440_\u043f\u044f\u0442\u043d\u0456\u0446\u0443_\u0441\u0443\u0431\u043e\u0442\u0443".split("_"),standalone:"\u043d\u044f\u0434\u0437\u0435\u043b\u044f_\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a_\u0430\u045e\u0442\u043e\u0440\u0430\u043a_\u0441\u0435\u0440\u0430\u0434\u0430_\u0447\u0430\u0446\u0432\u0435\u0440_\u043f\u044f\u0442\u043d\u0456\u0446\u0430_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),isFormat:/\[ ?[\u0423\u0443\u045e] ?(?:\u043c\u0456\u043d\u0443\u043b\u0443\u044e|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0443\u044e)? ?\] ?dddd/},weekdaysShort:"\u043d\u0434_\u043f\u043d_\u0430\u0442_\u0441\u0440_\u0447\u0446_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0430\u0442_\u0441\u0440_\u0447\u0446_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., HH:mm",LLLL:"dddd, D MMMM YYYY \u0433., HH:mm"},calendar:{sameDay:"[\u0421\u0451\u043d\u043d\u044f \u045e] LT",nextDay:"[\u0417\u0430\u045e\u0442\u0440\u0430 \u045e] LT",lastDay:"[\u0423\u0447\u043e\u0440\u0430 \u045e] LT",nextWeek:function(){return"[\u0423] dddd [\u045e] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u0443\u044e] dddd [\u045e] LT";case 1:case 2:case 4:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u044b] dddd [\u045e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u0440\u0430\u0437 %s",past:"%s \u0442\u0430\u043c\u0443",s:"\u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456 \u0441\u0435\u043a\u0443\u043d\u0434",m:e,mm:e,h:e,hh:e,d:"\u0434\u0437\u0435\u043d\u044c",dd:e,M:"\u043c\u0435\u0441\u044f\u0446",MM:e,y:"\u0433\u043e\u0434",yy:e},meridiemParse:/\u043d\u043e\u0447\u044b|\u0440\u0430\u043d\u0456\u0446\u044b|\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430/,isPM:function(t){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430)$/.test(t)},meridiem:function(t,e,n){return t<4?"\u043d\u043e\u0447\u044b":t<12?"\u0440\u0430\u043d\u0456\u0446\u044b":t<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0430\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0456|\u044b|\u0433\u0430)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":case"w":case"W":return t%10!=2&&t%10!=3||t%100==12||t%100==13?t+"-\u044b":t+"-\u0456";case"D":return t+"-\u0433\u0430";default:return t}},week:{dow:1,doy:7}})}()},HP3h:function(t,e,n){!function(t){"use strict";var e={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},n=function(t){return 0===t?0:1===t?1:2===t?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5},i={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"],h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645","\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627","%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645","\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},r=function(t){return function(e,r,o,a){var l=n(e),s=i[t][n(e)];return 2===l&&(s=s[r?0:1]),s.replace(/%d/i,e)}},o=["\u064a\u0646\u0627\u064a\u0631","\u0641\u0628\u0631\u0627\u064a\u0631","\u0645\u0627\u0631\u0633","\u0623\u0628\u0631\u064a\u0644","\u0645\u0627\u064a\u0648","\u064a\u0648\u0646\u064a\u0648","\u064a\u0648\u0644\u064a\u0648","\u0623\u063a\u0633\u0637\u0633","\u0633\u0628\u062a\u0645\u0628\u0631","\u0623\u0643\u062a\u0648\u0628\u0631","\u0646\u0648\u0641\u0645\u0628\u0631","\u062f\u064a\u0633\u0645\u0628\u0631"];t.defineLocale("ar-ly",{months:o,monthsShort:o,weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(t){return"\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u064b\u0627 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(n("wd/R"))},IBtZ:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ka",{months:{standalone:"\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8_\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8_\u10db\u10d0\u10e0\u10e2\u10d8_\u10d0\u10de\u10e0\u10d8\u10da\u10d8_\u10db\u10d0\u10d8\u10e1\u10d8_\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8_\u10d8\u10d5\u10da\u10d8\u10e1\u10d8_\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd_\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8_\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8_\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8_\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8".split("_"),format:"\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10e1_\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10e1_\u10db\u10d0\u10e0\u10e2\u10e1_\u10d0\u10de\u10e0\u10d8\u10da\u10d8\u10e1_\u10db\u10d0\u10d8\u10e1\u10e1_\u10d8\u10d5\u10dc\u10d8\u10e1\u10e1_\u10d8\u10d5\u10da\u10d8\u10e1\u10e1_\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10e1_\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10e1_\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10e1_\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10e1_\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10e1".split("_")},monthsShort:"\u10d8\u10d0\u10dc_\u10d7\u10d4\u10d1_\u10db\u10d0\u10e0_\u10d0\u10de\u10e0_\u10db\u10d0\u10d8_\u10d8\u10d5\u10dc_\u10d8\u10d5\u10da_\u10d0\u10d2\u10d5_\u10e1\u10d4\u10e5_\u10dd\u10e5\u10e2_\u10dc\u10dd\u10d4_\u10d3\u10d4\u10d9".split("_"),weekdays:{standalone:"\u10d9\u10d5\u10d8\u10e0\u10d0_\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8_\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8".split("_"),format:"\u10d9\u10d5\u10d8\u10e0\u10d0\u10e1_\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10e1_\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1".split("_"),isFormat:/(\u10ec\u10d8\u10dc\u10d0|\u10e8\u10d4\u10db\u10d3\u10d4\u10d2)/},weekdaysShort:"\u10d9\u10d5\u10d8_\u10dd\u10e0\u10e8_\u10e1\u10d0\u10db_\u10dd\u10d7\u10ee_\u10ee\u10e3\u10d7_\u10de\u10d0\u10e0_\u10e8\u10d0\u10d1".split("_"),weekdaysMin:"\u10d9\u10d5_\u10dd\u10e0_\u10e1\u10d0_\u10dd\u10d7_\u10ee\u10e3_\u10de\u10d0_\u10e8\u10d0".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[\u10d3\u10e6\u10d4\u10e1] LT[-\u10d6\u10d4]",nextDay:"[\u10ee\u10d5\u10d0\u10da] LT[-\u10d6\u10d4]",lastDay:"[\u10d2\u10e3\u10e8\u10d8\u10dc] LT[-\u10d6\u10d4]",nextWeek:"[\u10e8\u10d4\u10db\u10d3\u10d4\u10d2] dddd LT[-\u10d6\u10d4]",lastWeek:"[\u10ec\u10d8\u10dc\u10d0] dddd LT-\u10d6\u10d4",sameElse:"L"},relativeTime:{future:function(t){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10ec\u10d4\u10da\u10d8)/.test(t)?t.replace(/\u10d8$/,"\u10e8\u10d8"):t+"\u10e8\u10d8"},past:function(t){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10d3\u10e6\u10d4|\u10d7\u10d5\u10d4)/.test(t)?t.replace(/(\u10d8|\u10d4)$/,"\u10d8\u10e1 \u10ec\u10d8\u10dc"):/\u10ec\u10d4\u10da\u10d8/.test(t)?t.replace(/\u10ec\u10d4\u10da\u10d8$/,"\u10ec\u10da\u10d8\u10e1 \u10ec\u10d8\u10dc"):void 0},s:"\u10e0\u10d0\u10db\u10d3\u10d4\u10dc\u10d8\u10db\u10d4 \u10ec\u10d0\u10db\u10d8",ss:"%d \u10ec\u10d0\u10db\u10d8",m:"\u10ec\u10e3\u10d7\u10d8",mm:"%d \u10ec\u10e3\u10d7\u10d8",h:"\u10e1\u10d0\u10d0\u10d7\u10d8",hh:"%d \u10e1\u10d0\u10d0\u10d7\u10d8",d:"\u10d3\u10e6\u10d4",dd:"%d \u10d3\u10e6\u10d4",M:"\u10d7\u10d5\u10d4",MM:"%d \u10d7\u10d5\u10d4",y:"\u10ec\u10d4\u10da\u10d8",yy:"%d \u10ec\u10d4\u10da\u10d8"},dayOfMonthOrdinalParse:/0|1-\u10da\u10d8|\u10db\u10d4-\d{1,2}|\d{1,2}-\u10d4/,ordinal:function(t){return 0===t?t:1===t?t+"-\u10da\u10d8":t<20||t<=100&&t%20==0||t%100==0?"\u10db\u10d4-"+t:t+"-\u10d4"},week:{dow:1,doy:7}})}()},"Ivi+":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ko",{months:"1\uc6d4_2\uc6d4_3\uc6d4_4\uc6d4_5\uc6d4_6\uc6d4_7\uc6d4_8\uc6d4_9\uc6d4_10\uc6d4_11\uc6d4_12\uc6d4".split("_"),monthsShort:"1\uc6d4_2\uc6d4_3\uc6d4_4\uc6d4_5\uc6d4_6\uc6d4_7\uc6d4_8\uc6d4_9\uc6d4_10\uc6d4_11\uc6d4_12\uc6d4".split("_"),weekdays:"\uc77c\uc694\uc77c_\uc6d4\uc694\uc77c_\ud654\uc694\uc77c_\uc218\uc694\uc77c_\ubaa9\uc694\uc77c_\uae08\uc694\uc77c_\ud1a0\uc694\uc77c".split("_"),weekdaysShort:"\uc77c_\uc6d4_\ud654_\uc218_\ubaa9_\uae08_\ud1a0".split("_"),weekdaysMin:"\uc77c_\uc6d4_\ud654_\uc218_\ubaa9_\uae08_\ud1a0".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY\ub144 MMMM D\uc77c",LLL:"YYYY\ub144 MMMM D\uc77c A h:mm",LLLL:"YYYY\ub144 MMMM D\uc77c dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY\ub144 MMMM D\uc77c",lll:"YYYY\ub144 MMMM D\uc77c A h:mm",llll:"YYYY\ub144 MMMM D\uc77c dddd A h:mm"},calendar:{sameDay:"\uc624\ub298 LT",nextDay:"\ub0b4\uc77c LT",nextWeek:"dddd LT",lastDay:"\uc5b4\uc81c LT",lastWeek:"\uc9c0\ub09c\uc8fc dddd LT",sameElse:"L"},relativeTime:{future:"%s \ud6c4",past:"%s \uc804",s:"\uba87 \ucd08",ss:"%d\ucd08",m:"1\ubd84",mm:"%d\ubd84",h:"\ud55c \uc2dc\uac04",hh:"%d\uc2dc\uac04",d:"\ud558\ub8e8",dd:"%d\uc77c",M:"\ud55c \ub2ec",MM:"%d\ub2ec",y:"\uc77c \ub144",yy:"%d\ub144"},dayOfMonthOrdinalParse:/\d{1,2}(\uc77c|\uc6d4|\uc8fc)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\uc77c";case"M":return t+"\uc6d4";case"w":case"W":return t+"\uc8fc";default:return t}},meridiemParse:/\uc624\uc804|\uc624\ud6c4/,isPM:function(t){return"\uc624\ud6c4"===t},meridiem:function(t,e,n){return t<12?"\uc624\uc804":"\uc624\ud6c4"}})}()},"JCF/":function(t,e,n){!function(t){"use strict";var e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},i=["\u06a9\u0627\u0646\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645","\u0634\u0648\u0628\u0627\u062a","\u0626\u0627\u0632\u0627\u0631","\u0646\u06cc\u0633\u0627\u0646","\u0626\u0627\u06cc\u0627\u0631","\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646","\u062a\u06d5\u0645\u0645\u0648\u0632","\u0626\u0627\u0628","\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644","\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u0643\u06d5\u0645","\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645","\u0643\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"];t.defineLocale("ku",{months:i,monthsShort:i,weekdays:"\u06cc\u0647\u200c\u0643\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u062f\u0648\u0648\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u0633\u06ce\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u0686\u0648\u0627\u0631\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u067e\u06ce\u0646\u062c\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u0647\u0647\u200c\u06cc\u0646\u06cc_\u0634\u0647\u200c\u0645\u0645\u0647\u200c".split("_"),weekdaysShort:"\u06cc\u0647\u200c\u0643\u0634\u0647\u200c\u0645_\u062f\u0648\u0648\u0634\u0647\u200c\u0645_\u0633\u06ce\u0634\u0647\u200c\u0645_\u0686\u0648\u0627\u0631\u0634\u0647\u200c\u0645_\u067e\u06ce\u0646\u062c\u0634\u0647\u200c\u0645_\u0647\u0647\u200c\u06cc\u0646\u06cc_\u0634\u0647\u200c\u0645\u0645\u0647\u200c".split("_"),weekdaysMin:"\u06cc_\u062f_\u0633_\u0686_\u067e_\u0647_\u0634".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/\u0626\u06ce\u0648\u0627\u0631\u0647\u200c|\u0628\u0647\u200c\u06cc\u0627\u0646\u06cc/,isPM:function(t){return/\u0626\u06ce\u0648\u0627\u0631\u0647\u200c/.test(t)},meridiem:function(t,e,n){return t<12?"\u0628\u0647\u200c\u06cc\u0627\u0646\u06cc":"\u0626\u06ce\u0648\u0627\u0631\u0647\u200c"},calendar:{sameDay:"[\u0626\u0647\u200c\u0645\u0631\u06c6 \u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",nextDay:"[\u0628\u0647\u200c\u06cc\u0627\u0646\u06cc \u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",nextWeek:"dddd [\u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",lastDay:"[\u062f\u0648\u06ce\u0646\u06ce \u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",lastWeek:"dddd [\u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",sameElse:"L"},relativeTime:{future:"\u0644\u0647\u200c %s",past:"%s",s:"\u0686\u0647\u200c\u0646\u062f \u0686\u0631\u0643\u0647\u200c\u06cc\u0647\u200c\u0643",ss:"\u0686\u0631\u0643\u0647\u200c %d",m:"\u06cc\u0647\u200c\u0643 \u062e\u0648\u0644\u0647\u200c\u0643",mm:"%d \u062e\u0648\u0644\u0647\u200c\u0643",h:"\u06cc\u0647\u200c\u0643 \u0643\u0627\u062a\u0698\u0645\u06ce\u0631",hh:"%d \u0643\u0627\u062a\u0698\u0645\u06ce\u0631",d:"\u06cc\u0647\u200c\u0643 \u0695\u06c6\u0698",dd:"%d \u0695\u06c6\u0698",M:"\u06cc\u0647\u200c\u0643 \u0645\u0627\u0646\u06af",MM:"%d \u0645\u0627\u0646\u06af",y:"\u06cc\u0647\u200c\u0643 \u0633\u0627\u06b5",yy:"%d \u0633\u0627\u06b5"},preparse:function(t){return t.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(n("wd/R"))},JVSJ:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i=t+" ";switch(n){case"ss":return i+(1===t?"sekunda":2===t||3===t||4===t?"sekunde":"sekundi");case"m":return e?"jedna minuta":"jedne minute";case"mm":return i+(1===t?"minuta":2===t||3===t||4===t?"minute":"minuta");case"h":return e?"jedan sat":"jednog sata";case"hh":return i+(1===t?"sat":2===t||3===t||4===t?"sata":"sati");case"dd":return i+(1===t?"dan":"dana");case"MM":return i+(1===t?"mjesec":2===t||3===t||4===t?"mjeseca":"mjeseci");case"yy":return i+(1===t?"godina":2===t||3===t||4===t?"godine":"godina")}}n("wd/R").defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010der u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[pro\u0161lu] dddd [u] LT";case 6:return"[pro\u0161le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:e,m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}()},JvlW:function(t,e,n){!function(t){"use strict";var e={ss:"sekund\u0117_sekund\u017ei\u0173_sekundes",m:"minut\u0117_minut\u0117s_minut\u0119",mm:"minut\u0117s_minu\u010di\u0173_minutes",h:"valanda_valandos_valand\u0105",hh:"valandos_valand\u0173_valandas",d:"diena_dienos_dien\u0105",dd:"dienos_dien\u0173_dienas",M:"m\u0117nuo_m\u0117nesio_m\u0117nes\u012f",MM:"m\u0117nesiai_m\u0117nesi\u0173_m\u0117nesius",y:"metai_met\u0173_metus",yy:"metai_met\u0173_metus"};function n(t,e,n,i){return e?r(n)[0]:i?r(n)[1]:r(n)[2]}function i(t){return t%10==0||t>10&&t<20}function r(t){return e[t].split("_")}function o(t,e,o,a){var l=t+" ";return 1===t?l+n(0,e,o[0],a):e?l+(i(t)?r(o)[1]:r(o)[0]):a?l+r(o)[1]:l+(i(t)?r(o)[1]:r(o)[2])}t.defineLocale("lt",{months:{format:"sausio_vasario_kovo_baland\u017eio_gegu\u017e\u0117s_bir\u017eelio_liepos_rugpj\u016b\u010dio_rugs\u0117jo_spalio_lapkri\u010dio_gruod\u017eio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegu\u017e\u0117_bir\u017eelis_liepa_rugpj\u016btis_rugs\u0117jis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadien\u012f_pirmadien\u012f_antradien\u012f_tre\u010diadien\u012f_ketvirtadien\u012f_penktadien\u012f_\u0161e\u0161tadien\u012f".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_tre\u010diadienis_ketvirtadienis_penktadienis_\u0161e\u0161tadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_\u0160e\u0161".split("_"),weekdaysMin:"S_P_A_T_K_Pn_\u0160".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[\u0160iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Pra\u0117jus\u012f] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prie\u0161 %s",s:function(t,e,n,i){return e?"kelios sekund\u0117s":i?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},ss:o,m:n,mm:o,h:n,hh:o,d:n,dd:o,M:n,MM:o,y:n,yy:o},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(t){return t+"-oji"},week:{dow:1,doy:4}})}(n("wd/R"))},"K/tc":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(t){return/^nm$/i.test(t)},meridiem:function(t,e,n){return t<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[M\xf4re om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}})}()},KSF8:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("vi",{months:"th\xe1ng 1_th\xe1ng 2_th\xe1ng 3_th\xe1ng 4_th\xe1ng 5_th\xe1ng 6_th\xe1ng 7_th\xe1ng 8_th\xe1ng 9_th\xe1ng 10_th\xe1ng 11_th\xe1ng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"ch\u1ee7 nh\u1eadt_th\u1ee9 hai_th\u1ee9 ba_th\u1ee9 t\u01b0_th\u1ee9 n\u0103m_th\u1ee9 s\xe1u_th\u1ee9 b\u1ea3y".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(t){return/^ch$/i.test(t)},meridiem:function(t,e,n){return t<12?n?"sa":"SA":n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [n\u0103m] YYYY",LLL:"D MMMM [n\u0103m] YYYY HH:mm",LLLL:"dddd, D MMMM [n\u0103m] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[H\xf4m nay l\xfac] LT",nextDay:"[Ng\xe0y mai l\xfac] LT",nextWeek:"dddd [tu\u1ea7n t\u1edbi l\xfac] LT",lastDay:"[H\xf4m qua l\xfac] LT",lastWeek:"dddd [tu\u1ea7n r\u1ed3i l\xfac] LT",sameElse:"L"},relativeTime:{future:"%s t\u1edbi",past:"%s tr\u01b0\u1edbc",s:"v\xe0i gi\xe2y",ss:"%d gi\xe2y",m:"m\u1ed9t ph\xfat",mm:"%d ph\xfat",h:"m\u1ed9t gi\u1edd",hh:"%d gi\u1edd",d:"m\u1ed9t ng\xe0y",dd:"%d ng\xe0y",M:"m\u1ed9t th\xe1ng",MM:"%d th\xe1ng",y:"m\u1ed9t n\u0103m",yy:"%d n\u0103m"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}})}()},KTz0:function(t,e,n){!function(t){"use strict";var e={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(t,e){return 1===t?e[0]:t>=2&&t<=4?e[1]:e[2]},translate:function(t,n,i){var r=e.words[i];return 1===i.length?n?r[0]:r[1]:t+" "+e.correctGrammaticalCase(t,r)}};t.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010de u] LT",lastWeek:function(){return["[pro\u0161le] [nedjelje] [u] LT","[pro\u0161log] [ponedjeljka] [u] LT","[pro\u0161log] [utorka] [u] LT","[pro\u0161le] [srijede] [u] LT","[pro\u0161log] [\u010detvrtka] [u] LT","[pro\u0161log] [petka] [u] LT","[pro\u0161le] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mjesec",MM:e.translate,y:"godinu",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("wd/R"))},Loxo:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("uz",{months:"\u044f\u043d\u0432\u0430\u0440_\u0444\u0435\u0432\u0440\u0430\u043b_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440_\u043e\u043a\u0442\u044f\u0431\u0440_\u043d\u043e\u044f\u0431\u0440_\u0434\u0435\u043a\u0430\u0431\u0440".split("_"),monthsShort:"\u044f\u043d\u0432_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433_\u0441\u0435\u043d_\u043e\u043a\u0442_\u043d\u043e\u044f_\u0434\u0435\u043a".split("_"),weekdays:"\u042f\u043a\u0448\u0430\u043d\u0431\u0430_\u0414\u0443\u0448\u0430\u043d\u0431\u0430_\u0421\u0435\u0448\u0430\u043d\u0431\u0430_\u0427\u043e\u0440\u0448\u0430\u043d\u0431\u0430_\u041f\u0430\u0439\u0448\u0430\u043d\u0431\u0430_\u0416\u0443\u043c\u0430_\u0428\u0430\u043d\u0431\u0430".split("_"),weekdaysShort:"\u042f\u043a\u0448_\u0414\u0443\u0448_\u0421\u0435\u0448_\u0427\u043e\u0440_\u041f\u0430\u0439_\u0416\u0443\u043c_\u0428\u0430\u043d".split("_"),weekdaysMin:"\u042f\u043a_\u0414\u0443_\u0421\u0435_\u0427\u043e_\u041f\u0430_\u0416\u0443_\u0428\u0430".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[\u0411\u0443\u0433\u0443\u043d \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",nextDay:"[\u042d\u0440\u0442\u0430\u0433\u0430] LT [\u0434\u0430]",nextWeek:"dddd [\u043a\u0443\u043d\u0438 \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",lastDay:"[\u041a\u0435\u0447\u0430 \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",lastWeek:"[\u0423\u0442\u0433\u0430\u043d] dddd [\u043a\u0443\u043d\u0438 \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",sameElse:"L"},relativeTime:{future:"\u042f\u043a\u0438\u043d %s \u0438\u0447\u0438\u0434\u0430",past:"\u0411\u0438\u0440 \u043d\u0435\u0447\u0430 %s \u043e\u043b\u0434\u0438\u043d",s:"\u0444\u0443\u0440\u0441\u0430\u0442",ss:"%d \u0444\u0443\u0440\u0441\u0430\u0442",m:"\u0431\u0438\u0440 \u0434\u0430\u043a\u0438\u043a\u0430",mm:"%d \u0434\u0430\u043a\u0438\u043a\u0430",h:"\u0431\u0438\u0440 \u0441\u043e\u0430\u0442",hh:"%d \u0441\u043e\u0430\u0442",d:"\u0431\u0438\u0440 \u043a\u0443\u043d",dd:"%d \u043a\u0443\u043d",M:"\u0431\u0438\u0440 \u043e\u0439",MM:"%d \u043e\u0439",y:"\u0431\u0438\u0440 \u0439\u0438\u043b",yy:"%d \u0439\u0438\u043b"},week:{dow:1,doy:7}})}()},M8aS:function(t,e,n){var i,r;r=function(t){var e,n,i,r,o,a,l,s,u,c,d,h,p,f,m;!function(t){function e(t,e){this.init(t,e)}var n=t.CenteredSeriesMixin,i=t.extend,r=t.merge,o=t.splat;i(e.prototype,{coll:"pane",init:function(t,e){this.chart=e,this.background=[],e.pane.push(this),this.setOptions(t)},setOptions:function(t){this.options=r(this.defaultOptions,this.chart.angular?{background:{}}:void 0,t)},render:function(){var t=this.options,e=this.options.background,n=this.chart.renderer;if(this.group||(this.group=n.g("pane-group").attr({zIndex:t.zIndex||0}).add()),this.updateCenter(),e)for(e=o(e),t=Math.max(e.length,this.background.length||0),n=0;nn.len*n.tickInterval/(n.max-n.min)&&(a=0),l=s>a&&s<180-a?"left":s>180+a&&s<360-a?"right":"center"):l="center",i.attr({align:l})),t.pos.x=e.x+r.x,t.pos.y=e.y+o)}),h(m,"getMarkPath",function(t,e,n,i,r,o,a){var l=this.axis;return l.isRadial?["M",e,n,"L",(t=l.getPosition(this.pos,l.center[2]/2+i)).x,t.y]:t.call(this,e,n,i,r,o,a)})),function(t){var e=t.pick,n=t.extend,i=t.isArray,r=t.defined,o=t.seriesTypes,a=t.Series.prototype,l=t.Point.prototype;(0,t.seriesType)("arearange","area",{lineWidth:1,threshold:null,tooltip:{pointFormat:'\u25cf {series.name}: {point.low} - {point.high}
'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0}},{pointArrayMap:["low","high"],toYData:function(t){return[t.low,t.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(t){var e=this.chart,n=this.xAxis.postTranslate(t.rectPlotX,this.yAxis.len-t.plotHigh);t.plotHighX=n.x-e.plotLeft,t.plotHigh=n.y-e.plotTop,t.plotLowX=t.plotX},translate:function(){var t=this,e=t.yAxis,n=!!t.modifyValue;o.area.prototype.translate.apply(t),t.points.forEach(function(i){var r=i.high,o=i.plotY;null===r||null===i.low?(i.isNull=!0,i.plotY=null):(i.plotLow=o,i.plotHigh=e.translate(n?t.modifyValue(r,i):r,0,1,0,1),n&&(i.yBottom=i.plotHigh))}),this.chart.polar&&this.points.forEach(function(e){t.highToXY(e),e.tooltipPos=[(e.plotHighX+e.plotLowX)/2,(e.plotHigh+e.plotLow)/2]})},getGraphPath:function(t){var n,i,r,a,l=[],s=[],u=o.area.prototype.getGraphPath;a=this.options;var c=this.chart.polar&&!1!==a.connectEnds,d=a.connectNulls,h=a.step;for(n=(t=t||this.points).length;n--;)(i=t[n]).isNull||c||d||t[n+1]&&!t[n+1].isNull||s.push({plotX:i.plotX,plotY:i.plotY,doCurve:!1}),r={polarPlotY:i.polarPlotY,rectPlotX:i.rectPlotX,yBottom:i.yBottom,plotX:e(i.plotHighX,i.plotX),plotY:i.plotHigh,isNull:i.isNull},s.push(r),l.push(r),i.isNull||c||d||t[n-1]&&!t[n-1].isNull||s.push({plotX:i.plotX,plotY:i.plotY,doCurve:!1});return t=u.call(this,t),h&&(!0===h&&(h="left"),a.step={left:"right",center:"center",right:"left"}[h]),l=u.call(this,l),s=u.call(this,s),a.step=h,a=[].concat(t,l),this.chart.polar||"M"!==s[0]||(s[0]="L"),this.graphPath=a,this.areaPath=t.concat(s),a.isArea=!0,a.xMap=t.xMap,this.areaPath.xMap=t.xMap,a},drawDataLabels:function(){var t,e,r,o,l,s=this.points,u=s.length,c=[],d=this.options.dataLabels,h=this.chart.inverted;if(i(d)?1e.plotLow,e.y=e.high,e._plotY=e.plotY,e.plotY=e.plotHigh,c[t]=e.dataLabel,e.dataLabel=e.dataLabelUpper,e.below=r,h?o.align||(o.align=r?"right":"left"):o.verticalAlign||(o.verticalAlign=r?"top":"bottom"));for(this.options.dataLabels=o,a.drawDataLabels&&a.drawDataLabels.apply(this,arguments),t=u;t--;)(e=s[t])&&(e.dataLabelUpper=e.dataLabel,e.dataLabel=c[t],delete e.dataLabels,e.y=e.low,e.plotY=e._plotY)}if(l.enabled||this._hasPointLabels){for(t=u;t--;)(e=s[t])&&(e.below=!(r=l.inside?e.plotHighe.plotLow),h?l.align||(l.align=r?"left":"right"):l.verticalAlign||(l.verticalAlign=r?"bottom":"top"));this.options.dataLabels=l,a.drawDataLabels&&a.drawDataLabels.apply(this,arguments)}if(o.enabled)for(t=u;t--;)(e=s[t])&&(e.dataLabels=[e.dataLabelUpper,e.dataLabel].filter(function(t){return!!t}));this.options.dataLabels=d},alignDataLabel:function(){o.column.prototype.alignDataLabel.apply(this,arguments)},drawPoints:function(){var e,n,i=this.points.length;for(a.drawPoints.apply(this,arguments),n=0;nd&&(h-=d*=-1),u?(t=o.barX+l,o.shapeType="path",o.shapeArgs={d:n.polarArc(h+d,h,t,t+o.pointWidth)}):(p.height=d,p.y=h,o.tooltipPos=s.inverted?[i.len+i.pos-s.plotLeft-h-d/2,a.len+a.pos-s.plotTop-p.x-p.width/2,d]:[a.left-s.plotLeft+p.x+p.width/2,i.pos-s.plotTop+h+d/2,d])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:i,getSymbol:i,crispCol:function(){return o.crispCol.apply(this,arguments)},drawPoints:function(){return o.drawPoints.apply(this,arguments)},drawTracker:function(){return o.drawTracker.apply(this,arguments)},getColumnMetrics:function(){return o.getColumnMetrics.apply(this,arguments)},pointAttribs:function(){return o.pointAttribs.apply(this,arguments)},animate:function(){return o.animate.apply(this,arguments)},polarArc:function(){return o.polarArc.apply(this,arguments)},translate3dPoints:function(){return o.translate3dPoints.apply(this,arguments)},translate3dShapes:function(){return o.translate3dShapes.apply(this,arguments)}},{setState:o.pointClass.prototype.setState})}(),function(e){var n=t.pick,i=t.seriesTypes.column.prototype;(0,t.seriesType)("columnpyramid","column",{},{translate:function(){var t=this,e=t.chart,r=t.options,o=t.dense=2>t.closestPointRange*t.xAxis.transA,a=(o=t.borderWidth=n(r.borderWidth,o?0:1),t.yAxis),l=r.threshold,s=t.translatedThreshold=a.getThreshold(l),u=n(r.minPointLength,5),c=t.getColumnMetrics(),d=c.width,h=t.barW=Math.max(d,1+2*o),p=t.pointXOffset=c.offset;e.inverted&&(s-=.5),r.pointPadding&&(h=Math.ceil(h)),i.translate.apply(t),t.points.forEach(function(i){var o,c,f,m,g,y,_=n(i.yBottom,s),v=999+Math.abs(_),b=Math.min(Math.max(-v,i.plotY),a.len+v),x=(v=i.plotX+p,h/2),w=Math.min(b,_);_=Math.max(b,_)-w,i.barX=v,i.pointWidth=d,i.tooltipPos=e.inverted?[a.len+a.pos-e.plotLeft-b,t.xAxis.len-v-x,_]:[v+x,b+a.pos-e.plotTop,_],b=l+(i.total||i.y),"percent"===r.stacking&&(b=l+(0>i.y)?-100:100),f=x*(w+_-(b=a.toPixels(b,!0)))/(o=e.plotHeight-b-(e.plotHeight-s)),o=v-(c=x*(w-b)/o)+x,c=v+c+x,m=v+f+x,f=v-f+x,g=w-u,y=w+_,0>i.y&&(g=w,y=w+_+u),e.inverted&&(f=x*(b-((m=e.plotWidth-w)-_))/(o=b-(e.plotWidth-s)),c=(o=v+x+(c=x*(b-m)/o))-2*c,m=v-f+x,f=v+f+x,g=w,y=w+_-u,0>i.y&&(y=w+_+u)),i.shapeType="path",i.shapeArgs={x:o,y:g,width:c-o,height:_,d:["M",o,g,"L",c,g,m,y,f,y,"Z"]}})}})}(),function(e){var n=t.isNumber,i=t.merge,r=t.pick,o=t.pInt,a=t.Series,l=t.TrackerMixin;(0,t.seriesType)("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2,borderWidth:1,borderColor:"#cccccc"},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:t.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],translate:function(){var t=this.yAxis,e=this.options,a=t.center;this.generatePoints(),this.points.forEach(function(l){var s=i(e.dial,l.dial),u=o(r(s.radius,80))*a[2]/200,c=o(r(s.baseLength,70))*u/100,d=o(r(s.rearLength,10))*u/100,h=s.baseWidth||3,p=s.topWidth||1,f=e.overshoot,m=t.startAngleRad+t.translate(l.y,null,null,null,!0);n(f)?(f=f/180*Math.PI,m=Math.max(t.startAngleRad-f,Math.min(t.endAngleRad+f,m))):!1===e.wrap&&(m=Math.max(t.startAngleRad,Math.min(t.endAngleRad,m))),m=180*m/Math.PI,l.shapeType="path",l.shapeArgs={d:s.path||["M",-d,-h/2,"L",c,-h/2,u,-p/2,u,p/2,c,h/2,-d,h/2,"z"],translateX:a[0],translateY:a[1],rotation:m},l.plotX=a[0],l.plotY=a[1]})},drawPoints:function(){var t=this,e=t.chart,n=t.yAxis.center,o=t.pivot,a=t.options,l=a.pivot,s=e.renderer;t.points.forEach(function(n){var r=n.graphic,o=n.shapeArgs,l=o.d,u=i(a.dial,n.dial);r?(r.animate(o),o.d=l):(n.graphic=s[n.shapeType](o).attr({rotation:o.rotation,zIndex:1}).addClass("highcharts-dial").add(t.group),e.styledMode||n.graphic.attr({stroke:u.borderColor||"none","stroke-width":u.borderWidth||0,fill:u.backgroundColor||"#000000"}))}),o?o.animate({translateX:n[0],translateY:n[1]}):(t.pivot=s.circle(0,0,r(l.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(n[0],n[1]).add(t.group),e.styledMode||t.pivot.attr({"stroke-width":l.borderWidth||0,stroke:l.borderColor||"#cccccc",fill:l.backgroundColor||"#000000"}))},animate:function(t){var e=this;t||(e.points.forEach(function(t){var n=t.graphic;n&&(n.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),n.animate({rotation:t.shapeArgs.rotation},e.options.animation))}),e.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup),a.prototype.render.call(this),this.group.clip(this.chart.clipRect)},setData:function(t,e){a.prototype.setData.call(this,t,!1),this.processData(),this.generatePoints(),r(e,!0)&&this.chart.redraw()},drawTracker:l&&l.drawTrackerPoint},{setState:function(t){this.state=t}})}(),function(e){var n=t.noop,i=t.pick,r=t.seriesTypes;(0,t.seriesType)("boxplot","column",{threshold:null,tooltip:{pointFormat:'\u25cf {series.name}
Maximum: {point.high}
Upper quartile: {point.q3}
Median: {point.median}
Lower quartile: {point.q1}
Minimum: {point.low}
'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,whiskerWidth:2},{pointArrayMap:["low","q1","median","q3","high"],toYData:function(t){return[t.low,t.q1,t.median,t.q3,t.high]},pointValKey:"high",pointAttribs:function(){return{}},drawDataLabels:n,translate:function(){var t=this.yAxis,e=this.pointArrayMap;r.column.prototype.translate.apply(this),this.points.forEach(function(n){e.forEach(function(e){null!==n[e]&&(n[e+"Plot"]=t.translate(n[e],0,1,0,1))})})},drawPoints:function(){var t,e,n,r,o,a,l,s,u,c,d,h=this,p=h.options,f=h.chart,m=f.renderer,g=0,y=!1!==h.doQuartiles,_=h.options.whiskerLength;h.points.forEach(function(v){var b=v.graphic,x=b?"animate":"attr",w=v.shapeArgs,k={},M={},S={},C={},L=v.color||h.color;void 0!==v.plotY&&(l=w.width,s=Math.floor(w.x),u=s+l,c=Math.round(l/2),t=Math.floor(y?v.q1Plot:v.lowPlot),e=Math.floor(y?v.q3Plot:v.lowPlot),n=Math.floor(v.highPlot),r=Math.floor(v.lowPlot),b||(v.graphic=b=m.g("point").add(h.group),v.stem=m.path().addClass("highcharts-boxplot-stem").add(b),_&&(v.whiskers=m.path().addClass("highcharts-boxplot-whisker").add(b)),y&&(v.box=m.path(void 0).addClass("highcharts-boxplot-box").add(b)),v.medianShape=m.path(void 0).addClass("highcharts-boxplot-median").add(b)),f.styledMode||(M.stroke=v.stemColor||p.stemColor||L,M["stroke-width"]=i(v.stemWidth,p.stemWidth,p.lineWidth),M.dashstyle=v.stemDashStyle||p.stemDashStyle,v.stem.attr(M),_&&(S.stroke=v.whiskerColor||p.whiskerColor||L,S["stroke-width"]=i(v.whiskerWidth,p.whiskerWidth,p.lineWidth),v.whiskers.attr(S)),y&&(k.fill=v.fillColor||p.fillColor||L,k.stroke=p.lineColor||L,k["stroke-width"]=p.lineWidth||0,v.box.attr(k)),C.stroke=v.medianColor||p.medianColor||L,C["stroke-width"]=i(v.medianWidth,p.medianWidth,p.lineWidth),v.medianShape.attr(C)),a=v.stem.strokeWidth()%2/2,v.stem[x]({d:["M",g=s+c+a,e,"L",g,n,"M",g,t,"L",g,r]}),y&&(a=v.box.strokeWidth()%2/2,t=Math.floor(t)+a,e=Math.floor(e)+a,v.box[x]({d:["M",s+=a,e,"L",s,t,"L",u+=a,t,"L",u,e,"L",s,e,"z"]})),_&&(a=v.whiskers.strokeWidth()%2/2,n+=a,r+=a,d=/%$/.test(_)?c*parseFloat(_)/100:_/2,v.whiskers[x]({d:["M",g-d,n,"L",g+d,n,"M",g-d,r,"L",g+d,r]})),o=Math.round(v.medianPlot),a=v.medianShape.strokeWidth()%2/2,v.medianShape[x]({d:["M",s,o+=a,"L",u,o]}))})},setStackedPoints:n})}(),function(e){var n=t.seriesTypes;(0,t.seriesType)("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\u25cf {series.name}: {point.low} - {point.high}
'},whiskerWidth:null},{type:"errorbar",pointArrayMap:["low","high"],toYData:function(t){return[t.low,t.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:n.arearange?function(){var t=this.pointValKey;n.arearange.prototype.drawDataLabels.call(this),this.data.forEach(function(e){e.y=e[t]})}:t.noop,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||n.column.prototype.getColumnMetrics.call(this)}})}(),function(e){var n=t.correctFloat,i=t.isNumber,r=t.pick,o=t.objectEach,a=t.arrayMin,l=t.arrayMax,s=t.addEvent,u=t.Chart,c=t.Point,d=t.Series,h=t.seriesType,p=t.seriesTypes;s(t.Axis,"afterInit",function(){this.isXAxis||(this.waterfallStacks={})}),s(u,"beforeRedraw",function(){for(var t=this.axes,e=this.series,n=e.length;n--;)e[n].options.stacking&&(t.forEach(function(t){t.isXAxis||(t.waterfallStacks={})}),n=0)}),h("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"Dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",showLine:!0,generatePoints:function(){var t,e,i;for(p.column.prototype.generatePoints.apply(this),i=0,e=this.points.length;ii.height&&(i.y+=i.height,i.height*=-1)),n.plotY=i.y=Math.round(i.y)-this.borderWidth%2/2,i.height=Math.max(Math.round(i.height),.001),n.yBottom=i.y+i.height,i.height<=f&&!n.isNull?(i.height=f,i.y-=m,n.plotY=i.y,n.minPointLengthOffset=0>n.y?-m:m):(n.isNull&&(i.width=0),n.minPointLengthOffset=0),i=n.plotY+(n.negative?i.height:0),this.chart.inverted?n.tooltipPos[0]=h.len-i:n.tooltipPos[1]=i},processData:function(t){var e,i,r,o,a,l,s,u=this.options,c=this.yData,h=u.data,p=c.length,f=u.threshold||0;for(s=r=i=o=a=0;se.y&&!p||0=n&&t.renderRange(e)}),t.legendSymbol.add(t.legendItem),t.legendItem.add(t.legendGroup),t.hideOverlappingLabels()},renderRange:function(t){var e,n=this.options,i=n.labels,r=this.chart.renderer,o=this.symbols,a=o.labels,l=t.center,s=Math.abs(t.radius),u=n.connectorDistance,c=i.align,d=i.style.fontSize,h=(u=this.legend.options.rtl||"left"===c?-u:u,this.ranges[0].radius),p=l-s-n.borderWidth/2+(i=n.connectorWidth)/2,f=(d=d/2-(this.fontMetrics.h-d)/2,r.styledMode);"center"===c&&(u=0,n.connectorDistance=0,t.labelStyle.align="center"),c=p+n.labels.y,e=h+u+n.labels.x,o.bubbleItems.push(r.circle(h,l+((p%1?1:.5)-(i%2?0:.5)),s).attr(f?{}:t.bubbleStyle).addClass((f?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-symbol "+(n.className||"")).add(this.legendSymbol)),o.connectors.push(r.path(r.crispLine(["M",h,p,"L",h+u,p],n.connectorWidth)).attr(f?{}:t.connectorStyle).addClass((f?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(n.connectorClassName||"")).add(this.legendSymbol)),t=r.text(this.formatLabel(t),e,c+d).attr(f?{}:t.labelStyle).addClass("highcharts-bubble-legend-labels "+(n.labels.className||"")).add(this.legendSymbol),a.push(t),t.placed=!0,t.alignAttr={x:e,y:c+d}},getMaxLabelSize:function(){var t,e;return this.symbols.labels.forEach(function(n){e=n.getBBox(!0),t=t?e.width>t.width?e:t:e}),t||{}},formatLabel:function(e){var n=this.options,i=n.labels.formatter;return(n=n.labels.format)?t.format(n,e):i?i.call(e):s(e.value,1)},hideOverlappingLabels:function(){var t=this.symbols;!this.options.labels.allowOverlap&&t&&(this.chart.hideOverlappingLabels(t.labels),t.labels.forEach(function(e,n){e.newOpacity?e.newOpacity!==e.oldOpacity&&t.connectors[n].show():t.connectors[n].hide()}))},getRanges:function(){var t,e,n=this.legend.bubbleLegend,i=n.options.ranges,r=Number.MAX_VALUE,o=-Number.MAX_VALUE;return n.chart.series.forEach(function(t){t.isBubble&&!t.ignoreSeries&&(e=t.zData.filter(l)).length&&(r=h(t.options.zMin,Math.min(r,Math.max(f(e),!1===t.options.displayNegative?t.options.zThreshold:-Number.MAX_VALUE))),o=h(t.options.zMax,Math.max(o,m(e))))}),t=r===o?[{value:o}]:[{value:r},{value:(r+o)/2},{value:o,autoRanges:!0}],i.length&&i[0].radius&&t.reverse(),t.forEach(function(e,n){i&&i[n]&&(t[n]=c(!1,i[n],e))}),t},predictBubbleSizes:function(){var t=this.fontMetrics,e=(l=this.chart).legend.options,n="horizontal"===e.layout,i=n?l.legend.lastLineHeight:0,r=l.plotSizeX,o=l.plotSizeY,a=l.series[this.options.seriesIndex],l=Math.ceil(a.minPxSize),s=Math.ceil(a.maxPxSize),u=(a=a.options.maxSize,Math.min(o,r));return e.floating||!/%$/.test(a)?t=s:(a=parseFloat(a),t=(u+i-t.h/2)*a/100/(a/100+1),(n&&o-t>=r||!n&&r-t>=o)&&(t=s)),[l,Math.ceil(t)]},updateRanges:function(t,e){var n=this.legend.options.bubbleLegend;n.minSize=t,n.maxSize=e,n.ranges=this.getRanges()},correctSizes:function(){var t=this.legend,e=this.chart.series[this.options.seriesIndex];1t.height&&(t.height=n[o].itemHeight);t.step=e}return i},n.prototype.retranslateItems=function(t){var e,n,i,r=this.options.rtl,o=0;this.allItems.forEach(function(a,l){e=a.legendGroup.translateX,n=a._legendItemPos[1],((i=a.movementX)||r&&a.ranges)&&a.legendGroup.attr({translateX:i=r?e-a.options.maxSize/2:e+i}),l>t[o].step&&o++,a.legendGroup.attr({translateY:Math.round(n+t[o].height/2)}),a._legendItemPos[1]=n+t[o].height/2})},r(e,"legendItemClick",function(){var t=this.chart,e=this.visible,n=this.chart.legend;n&&n.bubbleLegend&&(this.visible=!e,this.ignoreSeries=e,t=0<=t.getVisibleBubbleSeriesIndex(),n.bubbleLegend.visible!==t&&(n.update({bubbleLegend:{enabled:t}}),n.bubbleLegend.visible=t),this.visible=e)}),o(i.prototype,"drawChartBox",function(t,e,n){var i,r=this.legend,o=0<=this.getVisibleBubbleSeriesIndex();r&&r.options.enabled&&r.bubbleLegend&&r.options.bubbleLegend.autoRanges&&o?(i=r.bubbleLegend.options,o=r.bubbleLegend.predictBubbleSizes(),r.bubbleLegend.updateRanges(o[0],o[1]),i.placed||(r.group.placed=!1,r.allItems.forEach(function(t){t.legendGroup.translateY=null})),r.render(),this.getMargins(),this.axes.forEach(function(t){t.render(),i.placed||(t.setScale(),t.updateNames(),u(t.ticks,function(t){t.isNew=!0,t.isNewLabel=!0}))}),i.placed=!0,this.getMargins(),t.call(this,e,n),r.bubbleLegend.correctSizes(),r.retranslateItems(r.getLinesHeights())):(t.call(this,e,n),r&&r.options.enabled&&r.bubbleLegend&&(r.render(),r.retranslateItems(r.getLinesHeights())))})}(t),function(t){var e=t.arrayMax,n=t.arrayMin,i=t.Axis,r=t.color,o=t.isNumber,a=t.noop,l=t.pick,s=t.pInt,u=t.Point,c=t.Series,d=t.seriesTypes;(0,t.seriesType)("bubble","scatter",{dataLabels:{formatter:function(){return this.point.z},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"},{pointArrayMap:["y","z"],parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",bubblePadding:!0,zoneAxis:"z",directTouch:!0,isBubble:!0,pointAttribs:function(t,e){var n=this.options.marker.fillOpacity;return t=c.prototype.pointAttribs.call(this,t,e),1!==n&&(t.fill=r(t.fill).setOpacity(n).get("rgba")),t},getRadii:function(t,e,n){var i,r=this.zData,o=n.minPxSize,a=n.maxPxSize,l=[];for(i=0,n=r.length;i=this.minPxSize/2?(n.marker=t.extend(n.marker,{radius:i,width:2*i,height:2*i}),n.dlBox={x:n.plotX-i,y:n.plotY-i,width:2*i,height:2*i}):n.shapeArgs=n.plotY=n.dlBox=void 0},alignDataLabel:d.column.prototype.alignDataLabel,buildKDTree:a,applyZones:a},{haloPath:function(t){return u.prototype.haloPath.call(this,0===t?0:(this.marker&&this.marker.radius||0)+t)},ttBelow:!1}),i.prototype.beforePadding=function(){var i=this,r=this.len,a=this.chart,u=0,c=r,d=this.isXAxis,h=d?"xData":"yData",p=this.min,f={},m=Math.min(a.plotWidth,a.plotHeight),g=Number.MAX_VALUE,y=-Number.MAX_VALUE,_=this.max-p,v=r/_,b=[];this.series.forEach(function(r){var o=r.options;!r.bubblePadding||!r.visible&&a.options.chart.ignoreHiddenSeries||(i.allowZoomOutside=!0,b.push(r),d&&(["minSize","maxSize"].forEach(function(t){var e=/%$/.test(n=o[t]),n=s(n);f[t]=e?m*n/100:n}),r.minPxSize=f.minSize,r.maxPxSize=Math.max(f.maxSize,f.minSize),(r=r.zData.filter(t.isNumber)).length&&(g=l(o.zMin,Math.min(g,Math.max(n(r),!1===o.displayNegative?o.zThreshold:-Number.MAX_VALUE))),y=l(o.zMax,Math.max(y,e(r))))))}),b.forEach(function(t){var e,n=t[h],r=n.length;if(d&&t.getRadii(g,y,t),0<_)for(;r--;)o(n[r])&&i.dataMin<=n[r]&&n[r]<=i.dataMax&&(e=t.radii[r],u=Math.min((n[r]-p)*v-e,u),c=Math.max((n[r]-p)*v+e,c))}),b.length&&0<_&&!this.isLog&&(c-=r,v*=(r+Math.max(0,u)-Math.min(c,r))/r,[["min","userMin",u],["max","userMax",c]].forEach(function(t){void 0===l(i.options[t[0]],i[t[1]])&&(i[t[0]]+=t[2]/v)}))}}(t),function(t){var e=t.defined;(0,t.seriesType)("packedbubble","bubble",{minSize:"10%",maxSize:"100%",sizeBy:"radius",zoneAxis:"y",tooltip:{pointFormat:"Value: {point.value}"}},{pointArrayMap:["value"],pointValKey:"value",isCartesian:!1,axisTypes:[],accumulateAllPoints:function(t){var e,n,i=t.chart,r=[];for(e=0;eMath.sqrt(n*n+i*i)-Math.abs(t[2]+e[2])},positionBubble:function(t,e,n){var i=Math.sqrt,r=Math.asin,o=Math.acos,a=Math.pow,l=Math.abs;return i=i(a(t[0]-e[0],2)+a(t[1]-e[1],2)),o=o((a(i,2)+a(n[2]+e[2],2)-a(n[2]+t[2],2))/(2*(n[2]+e[2])*i)),r=r(l(t[0]-e[0])/i),t=(0>t[1]-e[1]?0:Math.PI)+o+r*(0>(t[0]-e[0])*(t[1]-e[1])?1:-1),[e[0]+(e[2]+n[2])*Math.sin(t),e[1]-(e[2]+n[2])*Math.cos(t),n[2],n[3],n[4]]},placeBubbles:function(t){var e,n,i=this.checkOverlap,r=this.positionBubble,o=[],a=1,l=0,s=0;if(!(e=t.sort(function(t,e){return e[2]-t[2]})).length)return[];if(2>e.length)return[0,0,e[0][0],e[0][1],e[0][2]];for(o.push([[0,0,e[0][2],e[0][3],e[0][4]]]),o.push([[0,0-e[1][2]-e[0][2],e[1][2],e[1][3],e[1][4]]]),n=2;n(r=0<=e&&e<=t.length-1?e:0>e?t.length-1+e:0)-1?t.length-(1+o):r-1,s=(o=t[o=r+1>t.length-1?o:r+1]).plotX,u=o.plotY,l=(1.5*(o=t[r].plotX)+(l=(a=t[e]).plotX))/2.5,a=(1.5*(r=t[r].plotY)+(a=a.plotY))/2.5,s=(1.5*o+s)/2.5,c=(1.5*r+u)/2.5,u=Math.sqrt(Math.pow(l-o,2)+Math.pow(a-r,2)),d=Math.sqrt(Math.pow(s-o,2)+Math.pow(c-r,2)),l=Math.atan2(a-r,l-o),c=Math.PI/2+(l+Math.atan2(c-r,s-o))/2,Math.abs(l-c)>Math.PI/2&&(c-=Math.PI),l=o+Math.cos(c)*u,a=r+Math.sin(c)*u,o={rightContX:s=o+Math.cos(Math.PI+c)*d,rightContY:c=r+Math.sin(Math.PI+c)*d,leftContX:l,leftContY:a,plotX:o,plotY:r},n&&(o.prevPointCont=this.getConnectors(t,e,!1,i)),o},o.toXY=function(t){var e,n=this.chart,i=t.plotX;e=t.plotY,t.rectPlotX=i,t.rectPlotY=e,e=this.xAxis.postTranslate(t.plotX,this.yAxis.len-e),t.plotX=t.polarPlotX=e.x-n.plotLeft,t.plotY=t.polarPlotY=e.y-n.plotTop,this.kdByAngle?(0>(n=(i/Math.PI*180+this.xAxis.pane.options.startAngle)%360)&&(n+=360),t.clientX=n):t.clientX=t.plotX},i.spline&&(r(i.spline.prototype,"getPointSpline",function(t,e,n,i){return this.chart.polar?i?["C",(t=this.getConnectors(e,i,!0,this.connectEnds)).prevPointCont.rightContX,t.prevPointCont.rightContY,t.leftContX,t.leftContY,t.plotX,t.plotY]:["M",n.plotX,n.plotY]:t.call(this,e,n,i)}),i.areasplinerange&&(i.areasplinerange.prototype.getPointSpline=i.spline.prototype.getPointSpline)),t.addEvent(n,"afterTranslate",function(){var e,n,i=this.chart;if(i.polar){if((this.kdByAngle=i.tooltip&&i.tooltip.shared)?this.searchPoint=this.searchPointByAngle:this.options.findNearestPointBy="xy",!this.preventPostTranslate)for(n=(e=this.points).length;n--;)this.toXY(e[n]);this.hasClipCircleSetter||(this.hasClipCircleSetter=!!t.addEvent(this,"afterRender",function(){var e;i.polar&&(this.group.clip(i.renderer.clipCircle((e=this.yAxis.center)[0],e[1],e[2]/2)),this.setClip=t.noop)}))}},{order:2}),r(o,"getGraphPath",function(t,e){var n,i,r,o=this;if(this.chart.polar){for(e=e||this.points,n=0;nr.center[1]}),r(i,"alignDataLabel",function(t,e,n,i,r,a){this.chart.polar?(t=e.rectPlotX/Math.PI*180,null===i.align&&(i.align=20t?"left":200t?"right":"center"),null===i.verticalAlign&&(i.verticalAlign=45>t||315t?"top":"middle"),o.alignDataLabel.call(this,e,n,i,r,a)):t.call(this,e,n,i,r,a)})),r(a,"getCoordinates",function(t,e){var n=this.chart,i={xAxis:[],yAxis:[]};return n.polar?n.axes.forEach(function(t){var r=t.isXAxis,o=e.chartX-(a=t.center)[0]-n.plotLeft,a=e.chartY-a[1]-n.plotTop;i[r?"xAxis":"yAxis"].push({axis:t,value:t.translate(r?Math.PI-Math.atan2(o,a):Math.sqrt(Math.pow(o,2)+Math.pow(a,2)),!0)})}):i=t.call(this,e),i}),t.SVGRenderer.prototype.clipCircle=function(e,n,i){var r=t.uniqueKey(),o=this.createElement("clipPath").attr({id:r}).add(this.defs);return(e=this.circle(e,n,i).add(o)).id=r,e.clipPath=o,e},t.addEvent(t.Chart,"getAxes",function(){this.pane||(this.pane=[]),t.splat(this.options.pane).forEach(function(e){new t.Pane(e,this)},this)}),t.addEvent(t.Chart,"afterDrawChartBox",function(){this.pane.forEach(function(t){t.render()})}),r(t.Chart.prototype,"get",function(e,n){return t.find(this.pane,function(t){return t.options.id===n})||e.call(this,n)}))}(t)},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},OIYi:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}})}()},Oaa7:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},Ob0Z:function(t,e,n){!function(t){"use strict";var e={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};function i(t,e,n,i){var r="";if(e)switch(n){case"s":r="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926";break;case"ss":r="%d \u0938\u0947\u0915\u0902\u0926";break;case"m":r="\u090f\u0915 \u092e\u093f\u0928\u093f\u091f";break;case"mm":r="%d \u092e\u093f\u0928\u093f\u091f\u0947";break;case"h":r="\u090f\u0915 \u0924\u093e\u0938";break;case"hh":r="%d \u0924\u093e\u0938";break;case"d":r="\u090f\u0915 \u0926\u093f\u0935\u0938";break;case"dd":r="%d \u0926\u093f\u0935\u0938";break;case"M":r="\u090f\u0915 \u092e\u0939\u093f\u0928\u093e";break;case"MM":r="%d \u092e\u0939\u093f\u0928\u0947";break;case"y":r="\u090f\u0915 \u0935\u0930\u094d\u0937";break;case"yy":r="%d \u0935\u0930\u094d\u0937\u0947"}else switch(n){case"s":r="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"ss":r="%d \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"m":r="\u090f\u0915\u093e \u092e\u093f\u0928\u093f\u091f\u093e";break;case"mm":r="%d \u092e\u093f\u0928\u093f\u091f\u093e\u0902";break;case"h":r="\u090f\u0915\u093e \u0924\u093e\u0938\u093e";break;case"hh":r="%d \u0924\u093e\u0938\u093e\u0902";break;case"d":r="\u090f\u0915\u093e \u0926\u093f\u0935\u0938\u093e";break;case"dd":r="%d \u0926\u093f\u0935\u0938\u093e\u0902";break;case"M":r="\u090f\u0915\u093e \u092e\u0939\u093f\u0928\u094d\u092f\u093e";break;case"MM":r="%d \u092e\u0939\u093f\u0928\u094d\u092f\u093e\u0902";break;case"y":r="\u090f\u0915\u093e \u0935\u0930\u094d\u0937\u093e";break;case"yy":r="%d \u0935\u0930\u094d\u0937\u093e\u0902"}return r.replace(/%d/i,t)}t.defineLocale("mr",{months:"\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940_\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u090f\u092a\u094d\u0930\u093f\u0932_\u092e\u0947_\u091c\u0942\u0928_\u091c\u0941\u0932\u0948_\u0911\u0917\u0938\u094d\u091f_\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930_\u0911\u0915\u094d\u091f\u094b\u092c\u0930_\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930_\u0921\u093f\u0938\u0947\u0902\u092c\u0930".split("_"),monthsShort:"\u091c\u093e\u0928\u0947._\u092b\u0947\u092c\u094d\u0930\u0941._\u092e\u093e\u0930\u094d\u091a._\u090f\u092a\u094d\u0930\u093f._\u092e\u0947._\u091c\u0942\u0928._\u091c\u0941\u0932\u0948._\u0911\u0917._\u0938\u092a\u094d\u091f\u0947\u0902._\u0911\u0915\u094d\u091f\u094b._\u0928\u094b\u0935\u094d\u0939\u0947\u0902._\u0921\u093f\u0938\u0947\u0902.".split("_"),monthsParseExact:!0,weekdays:"\u0930\u0935\u093f\u0935\u093e\u0930_\u0938\u094b\u092e\u0935\u093e\u0930_\u092e\u0902\u0917\u0933\u0935\u093e\u0930_\u092c\u0941\u0927\u0935\u093e\u0930_\u0917\u0941\u0930\u0942\u0935\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930_\u0936\u0928\u093f\u0935\u093e\u0930".split("_"),weekdaysShort:"\u0930\u0935\u093f_\u0938\u094b\u092e_\u092e\u0902\u0917\u0933_\u092c\u0941\u0927_\u0917\u0941\u0930\u0942_\u0936\u0941\u0915\u094d\u0930_\u0936\u0928\u093f".split("_"),weekdaysMin:"\u0930_\u0938\u094b_\u092e\u0902_\u092c\u0941_\u0917\u0941_\u0936\u0941_\u0936".split("_"),longDateFormat:{LT:"A h:mm \u0935\u093e\u091c\u0924\u093e",LTS:"A h:mm:ss \u0935\u093e\u091c\u0924\u093e",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e",LLLL:"dddd, D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0909\u0926\u094d\u092f\u093e] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u093e\u0932] LT",lastWeek:"[\u092e\u093e\u0917\u0940\u0932] dddd, LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u0927\u094d\u092f\u0947",past:"%s\u092a\u0942\u0930\u094d\u0935\u0940",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(t){return t.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0930\u093e\u0924\u094d\u0930\u0940|\u0938\u0915\u093e\u0933\u0940|\u0926\u0941\u092a\u093e\u0930\u0940|\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0930\u093e\u0924\u094d\u0930\u0940"===e?t<4?t:t+12:"\u0938\u0915\u093e\u0933\u0940"===e?t:"\u0926\u0941\u092a\u093e\u0930\u0940"===e?t>=10?t:t+12:"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0930\u093e\u0924\u094d\u0930\u0940":t<10?"\u0938\u0915\u093e\u0933\u0940":t<17?"\u0926\u0941\u092a\u093e\u0930\u0940":t<20?"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940":"\u0930\u093e\u0924\u094d\u0930\u0940"},week:{dow:0,doy:6}})}(n("wd/R"))},OjkT:function(t,e,n){!function(t){"use strict";var e={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};t.defineLocale("ne",{months:"\u091c\u0928\u0935\u0930\u0940_\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u093f\u0932_\u092e\u0908_\u091c\u0941\u0928_\u091c\u0941\u0932\u093e\u0908_\u0905\u0917\u0937\u094d\u091f_\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930_\u0905\u0915\u094d\u091f\u094b\u092c\u0930_\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930_\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930".split("_"),monthsShort:"\u091c\u0928._\u092b\u0947\u092c\u094d\u0930\u0941._\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u093f._\u092e\u0908_\u091c\u0941\u0928_\u091c\u0941\u0932\u093e\u0908._\u0905\u0917._\u0938\u0947\u092a\u094d\u091f._\u0905\u0915\u094d\u091f\u094b._\u0928\u094b\u092d\u0947._\u0921\u093f\u0938\u0947.".split("_"),monthsParseExact:!0,weekdays:"\u0906\u0907\u0924\u092c\u093e\u0930_\u0938\u094b\u092e\u092c\u093e\u0930_\u092e\u0919\u094d\u0917\u0932\u092c\u093e\u0930_\u092c\u0941\u0927\u092c\u093e\u0930_\u092c\u093f\u0939\u093f\u092c\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u092c\u093e\u0930_\u0936\u0928\u093f\u092c\u093e\u0930".split("_"),weekdaysShort:"\u0906\u0907\u0924._\u0938\u094b\u092e._\u092e\u0919\u094d\u0917\u0932._\u092c\u0941\u0927._\u092c\u093f\u0939\u093f._\u0936\u0941\u0915\u094d\u0930._\u0936\u0928\u093f.".split("_"),weekdaysMin:"\u0906._\u0938\u094b._\u092e\u0902._\u092c\u0941._\u092c\u093f._\u0936\u0941._\u0936.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A\u0915\u094b h:mm \u092c\u091c\u0947",LTS:"A\u0915\u094b h:mm:ss \u092c\u091c\u0947",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A\u0915\u094b h:mm \u092c\u091c\u0947",LLLL:"dddd, D MMMM YYYY, A\u0915\u094b h:mm \u092c\u091c\u0947"},preparse:function(t){return t.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0930\u093e\u0924\u093f|\u092c\u093f\u0939\u093e\u0928|\u0926\u093f\u0909\u0901\u0938\u094b|\u0938\u093e\u0901\u091d/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0930\u093e\u0924\u093f"===e?t<4?t:t+12:"\u092c\u093f\u0939\u093e\u0928"===e?t:"\u0926\u093f\u0909\u0901\u0938\u094b"===e?t>=10?t:t+12:"\u0938\u093e\u0901\u091d"===e?t+12:void 0},meridiem:function(t,e,n){return t<3?"\u0930\u093e\u0924\u093f":t<12?"\u092c\u093f\u0939\u093e\u0928":t<16?"\u0926\u093f\u0909\u0901\u0938\u094b":t<20?"\u0938\u093e\u0901\u091d":"\u0930\u093e\u0924\u093f"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u092d\u094b\u0932\u093f] LT",nextWeek:"[\u0906\u0909\u0901\u0926\u094b] dddd[,] LT",lastDay:"[\u0939\u093f\u091c\u094b] LT",lastWeek:"[\u0917\u090f\u0915\u094b] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u093e",past:"%s \u0905\u0917\u093e\u0921\u093f",s:"\u0915\u0947\u0939\u0940 \u0915\u094d\u0937\u0923",ss:"%d \u0938\u0947\u0915\u0947\u0923\u094d\u0921",m:"\u090f\u0915 \u092e\u093f\u0928\u0947\u091f",mm:"%d \u092e\u093f\u0928\u0947\u091f",h:"\u090f\u0915 \u0918\u0923\u094d\u091f\u093e",hh:"%d \u0918\u0923\u094d\u091f\u093e",d:"\u090f\u0915 \u0926\u093f\u0928",dd:"%d \u0926\u093f\u0928",M:"\u090f\u0915 \u092e\u0939\u093f\u0928\u093e",MM:"%d \u092e\u0939\u093f\u0928\u093e",y:"\u090f\u0915 \u092c\u0930\u094d\u0937",yy:"%d \u092c\u0930\u094d\u0937"},week:{dow:0,doy:6}})}(n("wd/R"))},Oxv6:function(t,e,n){!function(t){"use strict";var e={0:"-\u0443\u043c",1:"-\u0443\u043c",2:"-\u044e\u043c",3:"-\u044e\u043c",4:"-\u0443\u043c",5:"-\u0443\u043c",6:"-\u0443\u043c",7:"-\u0443\u043c",8:"-\u0443\u043c",9:"-\u0443\u043c",10:"-\u0443\u043c",12:"-\u0443\u043c",13:"-\u0443\u043c",20:"-\u0443\u043c",30:"-\u044e\u043c",40:"-\u0443\u043c",50:"-\u0443\u043c",60:"-\u0443\u043c",70:"-\u0443\u043c",80:"-\u0443\u043c",90:"-\u0443\u043c",100:"-\u0443\u043c"};t.defineLocale("tg",{months:"\u044f\u043d\u0432\u0430\u0440_\u0444\u0435\u0432\u0440\u0430\u043b_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440_\u043e\u043a\u0442\u044f\u0431\u0440_\u043d\u043e\u044f\u0431\u0440_\u0434\u0435\u043a\u0430\u0431\u0440".split("_"),monthsShort:"\u044f\u043d\u0432_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433_\u0441\u0435\u043d_\u043e\u043a\u0442_\u043d\u043e\u044f_\u0434\u0435\u043a".split("_"),weekdays:"\u044f\u043a\u0448\u0430\u043d\u0431\u0435_\u0434\u0443\u0448\u0430\u043d\u0431\u0435_\u0441\u0435\u0448\u0430\u043d\u0431\u0435_\u0447\u043e\u0440\u0448\u0430\u043d\u0431\u0435_\u043f\u0430\u043d\u04b7\u0448\u0430\u043d\u0431\u0435_\u04b7\u0443\u043c\u044a\u0430_\u0448\u0430\u043d\u0431\u0435".split("_"),weekdaysShort:"\u044f\u0448\u0431_\u0434\u0448\u0431_\u0441\u0448\u0431_\u0447\u0448\u0431_\u043f\u0448\u0431_\u04b7\u0443\u043c_\u0448\u043d\u0431".split("_"),weekdaysMin:"\u044f\u0448_\u0434\u0448_\u0441\u0448_\u0447\u0448_\u043f\u0448_\u04b7\u043c_\u0448\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0418\u043c\u0440\u04ef\u0437 \u0441\u043e\u0430\u0442\u0438] LT",nextDay:"[\u041f\u0430\u0433\u043e\u04b3 \u0441\u043e\u0430\u0442\u0438] LT",lastDay:"[\u0414\u0438\u0440\u04ef\u0437 \u0441\u043e\u0430\u0442\u0438] LT",nextWeek:"dddd[\u0438] [\u04b3\u0430\u0444\u0442\u0430\u0438 \u043e\u044f\u043d\u0434\u0430 \u0441\u043e\u0430\u0442\u0438] LT",lastWeek:"dddd[\u0438] [\u04b3\u0430\u0444\u0442\u0430\u0438 \u0433\u0443\u0437\u0430\u0448\u0442\u0430 \u0441\u043e\u0430\u0442\u0438] LT",sameElse:"L"},relativeTime:{future:"\u0431\u0430\u044a\u0434\u0438 %s",past:"%s \u043f\u0435\u0448",s:"\u044f\u043a\u0447\u0430\u043d\u0434 \u0441\u043e\u043d\u0438\u044f",m:"\u044f\u043a \u0434\u0430\u049b\u0438\u049b\u0430",mm:"%d \u0434\u0430\u049b\u0438\u049b\u0430",h:"\u044f\u043a \u0441\u043e\u0430\u0442",hh:"%d \u0441\u043e\u0430\u0442",d:"\u044f\u043a \u0440\u04ef\u0437",dd:"%d \u0440\u04ef\u0437",M:"\u044f\u043a \u043c\u043e\u04b3",MM:"%d \u043c\u043e\u04b3",y:"\u044f\u043a \u0441\u043e\u043b",yy:"%d \u0441\u043e\u043b"},meridiemParse:/\u0448\u0430\u0431|\u0441\u0443\u0431\u04b3|\u0440\u04ef\u0437|\u0431\u0435\u0433\u043e\u04b3/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0448\u0430\u0431"===e?t<4?t:t+12:"\u0441\u0443\u0431\u04b3"===e?t:"\u0440\u04ef\u0437"===e?t>=11?t:t+12:"\u0431\u0435\u0433\u043e\u04b3"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0448\u0430\u0431":t<11?"\u0441\u0443\u0431\u04b3":t<16?"\u0440\u04ef\u0437":t<19?"\u0431\u0435\u0433\u043e\u04b3":"\u0448\u0430\u0431"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0443\u043c|\u044e\u043c)/,ordinal:function(t){return t+(e[t]||e[t%10]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},PA2r:function(t,e,n){!function(t){"use strict";var e="leden_\xfanor_b\u0159ezen_duben_kv\u011bten_\u010derven_\u010dervenec_srpen_z\xe1\u0159\xed_\u0159\xedjen_listopad_prosinec".split("_"),n="led_\xfano_b\u0159e_dub_kv\u011b_\u010dvn_\u010dvc_srp_z\xe1\u0159_\u0159\xedj_lis_pro".split("_"),i=[/^led/i,/^\xfano/i,/^b\u0159e/i,/^dub/i,/^kv\u011b/i,/^(\u010dvn|\u010derven$|\u010dervna)/i,/^(\u010dvc|\u010dervenec|\u010dervence)/i,/^srp/i,/^z\xe1\u0159/i,/^\u0159\xedj/i,/^lis/i,/^pro/i],r=/^(leden|\xfanor|b\u0159ezen|duben|kv\u011bten|\u010dervenec|\u010dervence|\u010derven|\u010dervna|srpen|z\xe1\u0159\xed|\u0159\xedjen|listopad|prosinec|led|\xfano|b\u0159e|dub|kv\u011b|\u010dvn|\u010dvc|srp|z\xe1\u0159|\u0159\xedj|lis|pro)/i;function o(t){return t>1&&t<5&&1!=~~(t/10)}function a(t,e,n,i){var r=t+" ";switch(n){case"s":return e||i?"p\xe1r sekund":"p\xe1r sekundami";case"ss":return e||i?r+(o(t)?"sekundy":"sekund"):r+"sekundami";case"m":return e?"minuta":i?"minutu":"minutou";case"mm":return e||i?r+(o(t)?"minuty":"minut"):r+"minutami";case"h":return e?"hodina":i?"hodinu":"hodinou";case"hh":return e||i?r+(o(t)?"hodiny":"hodin"):r+"hodinami";case"d":return e||i?"den":"dnem";case"dd":return e||i?r+(o(t)?"dny":"dn\xed"):r+"dny";case"M":return e||i?"m\u011bs\xedc":"m\u011bs\xedcem";case"MM":return e||i?r+(o(t)?"m\u011bs\xedce":"m\u011bs\xedc\u016f"):r+"m\u011bs\xedci";case"y":return e||i?"rok":"rokem";case"yy":return e||i?r+(o(t)?"roky":"let"):r+"lety"}}t.defineLocale("cs",{months:e,monthsShort:n,monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(leden|ledna|\xfanora|\xfanor|b\u0159ezen|b\u0159ezna|duben|dubna|kv\u011bten|kv\u011btna|\u010dervenec|\u010dervence|\u010derven|\u010dervna|srpen|srpna|z\xe1\u0159\xed|\u0159\xedjen|\u0159\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\xfano|b\u0159e|dub|kv\u011b|\u010dvn|\u010dvc|srp|z\xe1\u0159|\u0159\xedj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"ned\u011ble_pond\u011bl\xed_\xfater\xfd_st\u0159eda_\u010dtvrtek_p\xe1tek_sobota".split("_"),weekdaysShort:"ne_po_\xfat_st_\u010dt_p\xe1_so".split("_"),weekdaysMin:"ne_po_\xfat_st_\u010dt_p\xe1_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[z\xedtra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v ned\u011bli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve st\u0159edu v] LT";case 4:return"[ve \u010dtvrtek v] LT";case 5:return"[v p\xe1tek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[v\u010dera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou ned\u011bli v] LT";case 1:case 2:return"[minul\xe9] dddd [v] LT";case 3:return"[minulou st\u0159edu v] LT";case 4:case 5:return"[minul\xfd] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"p\u0159ed %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},PeUW:function(t,e,n){!function(t){"use strict";var e={1:"\u0be7",2:"\u0be8",3:"\u0be9",4:"\u0bea",5:"\u0beb",6:"\u0bec",7:"\u0bed",8:"\u0bee",9:"\u0bef",0:"\u0be6"},n={"\u0be7":"1","\u0be8":"2","\u0be9":"3","\u0bea":"4","\u0beb":"5","\u0bec":"6","\u0bed":"7","\u0bee":"8","\u0bef":"9","\u0be6":"0"};t.defineLocale("ta",{months:"\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf_\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf_\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd_\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd_\u0bae\u0bc7_\u0b9c\u0bc2\u0ba9\u0bcd_\u0b9c\u0bc2\u0bb2\u0bc8_\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd_\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b85\u0b95\u0bcd\u0b9f\u0bc7\u0bbe\u0baa\u0bb0\u0bcd_\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd".split("_"),monthsShort:"\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf_\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf_\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd_\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd_\u0bae\u0bc7_\u0b9c\u0bc2\u0ba9\u0bcd_\u0b9c\u0bc2\u0bb2\u0bc8_\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd_\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b85\u0b95\u0bcd\u0b9f\u0bc7\u0bbe\u0baa\u0bb0\u0bcd_\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd".split("_"),weekdays:"\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0b9f\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0baa\u0bc1\u0ba4\u0ba9\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0b9a\u0ba9\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8".split("_"),weekdaysShort:"\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1_\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd_\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd_\u0baa\u0bc1\u0ba4\u0ba9\u0bcd_\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd_\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf_\u0b9a\u0ba9\u0bbf".split("_"),weekdaysMin:"\u0b9e\u0bbe_\u0ba4\u0bbf_\u0b9a\u0bc6_\u0baa\u0bc1_\u0bb5\u0bbf_\u0bb5\u0bc6_\u0b9a".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[\u0b87\u0ba9\u0bcd\u0bb1\u0bc1] LT",nextDay:"[\u0ba8\u0bbe\u0bb3\u0bc8] LT",nextWeek:"dddd, LT",lastDay:"[\u0ba8\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1] LT",lastWeek:"[\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbe\u0bb0\u0bae\u0bcd] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0b87\u0bb2\u0bcd",past:"%s \u0bae\u0bc1\u0ba9\u0bcd",s:"\u0b92\u0bb0\u0bc1 \u0b9a\u0bbf\u0bb2 \u0bb5\u0bbf\u0ba8\u0bbe\u0b9f\u0bbf\u0b95\u0bb3\u0bcd",ss:"%d \u0bb5\u0bbf\u0ba8\u0bbe\u0b9f\u0bbf\u0b95\u0bb3\u0bcd",m:"\u0b92\u0bb0\u0bc1 \u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0bae\u0bcd",mm:"%d \u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd",h:"\u0b92\u0bb0\u0bc1 \u0bae\u0ba3\u0bbf \u0ba8\u0bc7\u0bb0\u0bae\u0bcd",hh:"%d \u0bae\u0ba3\u0bbf \u0ba8\u0bc7\u0bb0\u0bae\u0bcd",d:"\u0b92\u0bb0\u0bc1 \u0ba8\u0bbe\u0bb3\u0bcd",dd:"%d \u0ba8\u0bbe\u0b9f\u0bcd\u0b95\u0bb3\u0bcd",M:"\u0b92\u0bb0\u0bc1 \u0bae\u0bbe\u0ba4\u0bae\u0bcd",MM:"%d \u0bae\u0bbe\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd",y:"\u0b92\u0bb0\u0bc1 \u0bb5\u0bb0\u0bc1\u0b9f\u0bae\u0bcd",yy:"%d \u0b86\u0ba3\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bcd"},dayOfMonthOrdinalParse:/\d{1,2}\u0bb5\u0ba4\u0bc1/,ordinal:function(t){return t+"\u0bb5\u0ba4\u0bc1"},preparse:function(t){return t.replace(/[\u0be7\u0be8\u0be9\u0bea\u0beb\u0bec\u0bed\u0bee\u0bef\u0be6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0baf\u0bbe\u0bae\u0bae\u0bcd|\u0bb5\u0bc8\u0b95\u0bb1\u0bc8|\u0b95\u0bbe\u0bb2\u0bc8|\u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd|\u0b8e\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1|\u0bae\u0bbe\u0bb2\u0bc8/,meridiem:function(t,e,n){return t<2?" \u0baf\u0bbe\u0bae\u0bae\u0bcd":t<6?" \u0bb5\u0bc8\u0b95\u0bb1\u0bc8":t<10?" \u0b95\u0bbe\u0bb2\u0bc8":t<14?" \u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd":t<18?" \u0b8e\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1":t<22?" \u0bae\u0bbe\u0bb2\u0bc8":" \u0baf\u0bbe\u0bae\u0bae\u0bcd"},meridiemHour:function(t,e){return 12===t&&(t=0),"\u0baf\u0bbe\u0bae\u0bae\u0bcd"===e?t<2?t:t+12:"\u0bb5\u0bc8\u0b95\u0bb1\u0bc8"===e||"\u0b95\u0bbe\u0bb2\u0bc8"===e?t:"\u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd"===e&&t>=10?t:t+12},week:{dow:0,doy:6}})}(n("wd/R"))},PpIw:function(t,e,n){!function(t){"use strict";var e={1:"\u0ce7",2:"\u0ce8",3:"\u0ce9",4:"\u0cea",5:"\u0ceb",6:"\u0cec",7:"\u0ced",8:"\u0cee",9:"\u0cef",0:"\u0ce6"},n={"\u0ce7":"1","\u0ce8":"2","\u0ce9":"3","\u0cea":"4","\u0ceb":"5","\u0cec":"6","\u0ced":"7","\u0cee":"8","\u0cef":"9","\u0ce6":"0"};t.defineLocale("kn",{months:"\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf_\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf_\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd_\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd_\u0cae\u0cc6\u0cd5_\u0c9c\u0cc2\u0ca8\u0ccd_\u0c9c\u0cc1\u0cb2\u0cc6\u0cd6_\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd_\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd_\u0c85\u0c95\u0ccd\u0c9f\u0cc6\u0cc2\u0cd5\u0cac\u0cb0\u0ccd_\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd_\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd".split("_"),monthsShort:"\u0c9c\u0ca8_\u0cab\u0cc6\u0cac\u0ccd\u0cb0_\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd_\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd_\u0cae\u0cc6\u0cd5_\u0c9c\u0cc2\u0ca8\u0ccd_\u0c9c\u0cc1\u0cb2\u0cc6\u0cd6_\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd_\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82_\u0c85\u0c95\u0ccd\u0c9f\u0cc6\u0cc2\u0cd5_\u0ca8\u0cb5\u0cc6\u0c82_\u0ca1\u0cbf\u0cb8\u0cc6\u0c82".split("_"),monthsParseExact:!0,weekdays:"\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0_\u0cb8\u0cc6\u0cc2\u0cd5\u0cae\u0cb5\u0cbe\u0cb0_\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0_\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0_\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0_\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0_\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0".split("_"),weekdaysShort:"\u0cad\u0cbe\u0ca8\u0cc1_\u0cb8\u0cc6\u0cc2\u0cd5\u0cae_\u0cae\u0c82\u0c97\u0cb3_\u0cac\u0cc1\u0ca7_\u0c97\u0cc1\u0cb0\u0cc1_\u0cb6\u0cc1\u0c95\u0ccd\u0cb0_\u0cb6\u0ca8\u0cbf".split("_"),weekdaysMin:"\u0cad\u0cbe_\u0cb8\u0cc6\u0cc2\u0cd5_\u0cae\u0c82_\u0cac\u0cc1_\u0c97\u0cc1_\u0cb6\u0cc1_\u0cb6".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[\u0c87\u0c82\u0ca6\u0cc1] LT",nextDay:"[\u0ca8\u0cbe\u0cb3\u0cc6] LT",nextWeek:"dddd, LT",lastDay:"[\u0ca8\u0cbf\u0ca8\u0ccd\u0ca8\u0cc6] LT",lastWeek:"[\u0c95\u0cc6\u0cc2\u0ca8\u0cc6\u0caf] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0ca8\u0c82\u0ca4\u0cb0",past:"%s \u0cb9\u0cbf\u0c82\u0ca6\u0cc6",s:"\u0c95\u0cc6\u0cb2\u0cb5\u0cc1 \u0c95\u0ccd\u0cb7\u0ca3\u0c97\u0cb3\u0cc1",ss:"%d \u0cb8\u0cc6\u0c95\u0cc6\u0c82\u0ca1\u0cc1\u0c97\u0cb3\u0cc1",m:"\u0c92\u0c82\u0ca6\u0cc1 \u0ca8\u0cbf\u0cae\u0cbf\u0cb7",mm:"%d \u0ca8\u0cbf\u0cae\u0cbf\u0cb7",h:"\u0c92\u0c82\u0ca6\u0cc1 \u0c97\u0c82\u0c9f\u0cc6",hh:"%d \u0c97\u0c82\u0c9f\u0cc6",d:"\u0c92\u0c82\u0ca6\u0cc1 \u0ca6\u0cbf\u0ca8",dd:"%d \u0ca6\u0cbf\u0ca8",M:"\u0c92\u0c82\u0ca6\u0cc1 \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1",MM:"%d \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1",y:"\u0c92\u0c82\u0ca6\u0cc1 \u0cb5\u0cb0\u0ccd\u0cb7",yy:"%d \u0cb5\u0cb0\u0ccd\u0cb7"},preparse:function(t){return t.replace(/[\u0ce7\u0ce8\u0ce9\u0cea\u0ceb\u0cec\u0ced\u0cee\u0cef\u0ce6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf|\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6|\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8|\u0cb8\u0c82\u0c9c\u0cc6/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"===e?t<4?t:t+12:"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6"===e?t:"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8"===e?t>=10?t:t+12:"\u0cb8\u0c82\u0c9c\u0cc6"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf":t<10?"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6":t<17?"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8":t<20?"\u0cb8\u0c82\u0c9c\u0cc6":"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"},dayOfMonthOrdinalParse:/\d{1,2}(\u0ca8\u0cc6\u0cd5)/,ordinal:function(t){return t+"\u0ca8\u0cc6\u0cd5"},week:{dow:0,doy:6}})}(n("wd/R"))},Qj4J:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ar-kw",{months:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648\u0632_\u063a\u0634\u062a_\u0634\u062a\u0646\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0646\u0628\u0631_\u062f\u062c\u0646\u0628\u0631".split("_"),monthsShort:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648\u0632_\u063a\u0634\u062a_\u0634\u062a\u0646\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0646\u0628\u0631_\u062f\u062c\u0646\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062a\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0627\u062d\u062f_\u0627\u062a\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:0,doy:12}})}()},RAwQ:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return e?r[n][0]:r[n][1]}function i(t){if(t=parseInt(t,10),isNaN(t))return!1;if(t<0)return!0;if(t<10)return 4<=t&&t<=7;if(t<100){var e=t%10;return i(0===e?t/10:e)}if(t<1e4){for(;t>=10;)t/=10;return i(t)}return i(t/=1e3)}n("wd/R").defineLocale("lb",{months:"Januar_Februar_M\xe4erz_Abr\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_M\xe9indeg_D\xebnschdeg_M\xebttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._M\xe9._D\xeb._M\xeb._Do._Fr._Sa.".split("_"),weekdaysMin:"So_M\xe9_D\xeb_M\xeb_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[G\xebschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:function(t){return i(t.substr(0,t.indexOf(" ")))?"a "+t:"an "+t},past:function(t){return i(t.substr(0,t.indexOf(" ")))?"viru "+t:"virun "+t},s:"e puer Sekonnen",ss:"%d Sekonnen",m:e,mm:"%d Minutten",h:e,hh:"%d Stonnen",d:e,dd:"%d Deeg",M:e,MM:"%d M\xe9int",y:e,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},RnhZ:function(t,e,n){var i={"./af":"K/tc","./af.js":"K/tc","./ar":"jnO4","./ar-dz":"o1bE","./ar-dz.js":"o1bE","./ar-kw":"Qj4J","./ar-kw.js":"Qj4J","./ar-ly":"HP3h","./ar-ly.js":"HP3h","./ar-ma":"CoRJ","./ar-ma.js":"CoRJ","./ar-sa":"gjCT","./ar-sa.js":"gjCT","./ar-tn":"bYM6","./ar-tn.js":"bYM6","./ar.js":"jnO4","./az":"SFxW","./az.js":"SFxW","./be":"H8ED","./be.js":"H8ED","./bg":"hKrs","./bg.js":"hKrs","./bm":"p/rL","./bm.js":"p/rL","./bn":"kEOa","./bn.js":"kEOa","./bo":"0mo+","./bo.js":"0mo+","./br":"aIdf","./br.js":"aIdf","./bs":"JVSJ","./bs.js":"JVSJ","./ca":"1xZ4","./ca.js":"1xZ4","./cs":"PA2r","./cs.js":"PA2r","./cv":"A+xa","./cv.js":"A+xa","./cy":"l5ep","./cy.js":"l5ep","./da":"DxQv","./da.js":"DxQv","./de":"tGlX","./de-at":"s+uk","./de-at.js":"s+uk","./de-ch":"u3GI","./de-ch.js":"u3GI","./de.js":"tGlX","./dv":"WYrj","./dv.js":"WYrj","./el":"jUeY","./el.js":"jUeY","./en-SG":"zavE","./en-SG.js":"zavE","./en-au":"Dmvi","./en-au.js":"Dmvi","./en-ca":"OIYi","./en-ca.js":"OIYi","./en-gb":"Oaa7","./en-gb.js":"Oaa7","./en-ie":"4dOw","./en-ie.js":"4dOw","./en-il":"czMo","./en-il.js":"czMo","./en-nz":"b1Dy","./en-nz.js":"b1Dy","./eo":"Zduo","./eo.js":"Zduo","./es":"iYuL","./es-do":"CjzT","./es-do.js":"CjzT","./es-us":"Vclq","./es-us.js":"Vclq","./es.js":"iYuL","./et":"7BjC","./et.js":"7BjC","./eu":"D/JM","./eu.js":"D/JM","./fa":"jfSC","./fa.js":"jfSC","./fi":"gekB","./fi.js":"gekB","./fo":"ByF4","./fo.js":"ByF4","./fr":"nyYc","./fr-ca":"2fjn","./fr-ca.js":"2fjn","./fr-ch":"Dkky","./fr-ch.js":"Dkky","./fr.js":"nyYc","./fy":"cRix","./fy.js":"cRix","./ga":"USCx","./ga.js":"USCx","./gd":"9rRi","./gd.js":"9rRi","./gl":"iEDd","./gl.js":"iEDd","./gom-latn":"DKr+","./gom-latn.js":"DKr+","./gu":"4MV3","./gu.js":"4MV3","./he":"x6pH","./he.js":"x6pH","./hi":"3E1r","./hi.js":"3E1r","./hr":"S6ln","./hr.js":"S6ln","./hu":"WxRl","./hu.js":"WxRl","./hy-am":"1rYy","./hy-am.js":"1rYy","./id":"UDhR","./id.js":"UDhR","./is":"BVg3","./is.js":"BVg3","./it":"bpih","./it-ch":"bxKX","./it-ch.js":"bxKX","./it.js":"bpih","./ja":"B55N","./ja.js":"B55N","./jv":"tUCv","./jv.js":"tUCv","./ka":"IBtZ","./ka.js":"IBtZ","./kk":"bXm7","./kk.js":"bXm7","./km":"6B0Y","./km.js":"6B0Y","./kn":"PpIw","./kn.js":"PpIw","./ko":"Ivi+","./ko.js":"Ivi+","./ku":"JCF/","./ku.js":"JCF/","./ky":"lgnt","./ky.js":"lgnt","./lb":"RAwQ","./lb.js":"RAwQ","./lo":"sp3z","./lo.js":"sp3z","./lt":"JvlW","./lt.js":"JvlW","./lv":"uXwI","./lv.js":"uXwI","./me":"KTz0","./me.js":"KTz0","./mi":"aIsn","./mi.js":"aIsn","./mk":"aQkU","./mk.js":"aQkU","./ml":"AvvY","./ml.js":"AvvY","./mn":"lYtQ","./mn.js":"lYtQ","./mr":"Ob0Z","./mr.js":"Ob0Z","./ms":"6+QB","./ms-my":"ZAMP","./ms-my.js":"ZAMP","./ms.js":"6+QB","./mt":"G0Uy","./mt.js":"G0Uy","./my":"honF","./my.js":"honF","./nb":"bOMt","./nb.js":"bOMt","./ne":"OjkT","./ne.js":"OjkT","./nl":"+s0g","./nl-be":"2ykv","./nl-be.js":"2ykv","./nl.js":"+s0g","./nn":"uEye","./nn.js":"uEye","./pa-in":"8/+R","./pa-in.js":"8/+R","./pl":"jVdC","./pl.js":"jVdC","./pt":"8mBD","./pt-br":"0tRk","./pt-br.js":"0tRk","./pt.js":"8mBD","./ro":"lyxo","./ro.js":"lyxo","./ru":"lXzo","./ru.js":"lXzo","./sd":"Z4QM","./sd.js":"Z4QM","./se":"//9w","./se.js":"//9w","./si":"7aV9","./si.js":"7aV9","./sk":"e+ae","./sk.js":"e+ae","./sl":"gVVK","./sl.js":"gVVK","./sq":"yPMs","./sq.js":"yPMs","./sr":"zx6S","./sr-cyrl":"E+lV","./sr-cyrl.js":"E+lV","./sr.js":"zx6S","./ss":"Ur1D","./ss.js":"Ur1D","./sv":"X709","./sv.js":"X709","./sw":"dNwA","./sw.js":"dNwA","./ta":"PeUW","./ta.js":"PeUW","./te":"XLvN","./te.js":"XLvN","./tet":"V2x9","./tet.js":"V2x9","./tg":"Oxv6","./tg.js":"Oxv6","./th":"EOgW","./th.js":"EOgW","./tl-ph":"Dzi0","./tl-ph.js":"Dzi0","./tlh":"z3Vd","./tlh.js":"z3Vd","./tr":"DoHr","./tr.js":"DoHr","./tzl":"z1FC","./tzl.js":"z1FC","./tzm":"wQk9","./tzm-latn":"tT3J","./tzm-latn.js":"tT3J","./tzm.js":"wQk9","./ug-cn":"YRex","./ug-cn.js":"YRex","./uk":"raLr","./uk.js":"raLr","./ur":"UpQW","./ur.js":"UpQW","./uz":"Loxo","./uz-latn":"AQ68","./uz-latn.js":"AQ68","./uz.js":"Loxo","./vi":"KSF8","./vi.js":"KSF8","./x-pseudo":"/X5v","./x-pseudo.js":"/X5v","./yo":"fzPg","./yo.js":"fzPg","./zh-cn":"XDpg","./zh-cn.js":"XDpg","./zh-hk":"SatO","./zh-hk.js":"SatO","./zh-tw":"kOpN","./zh-tw.js":"kOpN"};function r(t){var e=o(t);return n(e)}function o(t){var e=i[t];if(!(e+1)){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}return e}r.keys=function(){return Object.keys(i)},r.resolve=o,t.exports=r,r.id="RnhZ"},S6ln:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i=t+" ";switch(n){case"ss":return i+(1===t?"sekunda":2===t||3===t||4===t?"sekunde":"sekundi");case"m":return e?"jedna minuta":"jedne minute";case"mm":return i+(1===t?"minuta":2===t||3===t||4===t?"minute":"minuta");case"h":return e?"jedan sat":"jednog sata";case"hh":return i+(1===t?"sat":2===t||3===t||4===t?"sata":"sati");case"dd":return i+(1===t?"dan":"dana");case"MM":return i+(1===t?"mjesec":2===t||3===t||4===t?"mjeseca":"mjeseci");case"yy":return i+(1===t?"godina":2===t||3===t||4===t?"godine":"godina")}}n("wd/R").defineLocale("hr",{months:{format:"sije\u010dnja_velja\u010de_o\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"sije\u010danj_velja\u010da_o\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._o\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010der u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[pro\u0161lu] dddd [u] LT";case 6:return"[pro\u0161le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:e,m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}()},SFxW:function(t,e,n){!function(t){"use strict";var e={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-\xfcnc\xfc",4:"-\xfcnc\xfc",100:"-\xfcnc\xfc",6:"-nc\u0131",9:"-uncu",10:"-uncu",30:"-uncu",60:"-\u0131nc\u0131",90:"-\u0131nc\u0131"};t.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ert\u0259si_\xc7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131_\xc7\u0259r\u015f\u0259nb\u0259_C\xfcm\u0259 ax\u015fam\u0131_C\xfcm\u0259_\u015e\u0259nb\u0259".split("_"),weekdaysShort:"Baz_BzE_\xc7Ax_\xc7\u0259r_CAx_C\xfcm_\u015e\u0259n".split("_"),weekdaysMin:"Bz_BE_\xc7A_\xc7\u0259_CA_C\xfc_\u015e\u0259".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bug\xfcn saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[g\u0259l\u0259n h\u0259ft\u0259] dddd [saat] LT",lastDay:"[d\xfcn\u0259n] LT",lastWeek:"[ke\xe7\u0259n h\u0259ft\u0259] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s \u0259vv\u0259l",s:"birne\xe7\u0259 saniy\u0259",ss:"%d saniy\u0259",m:"bir d\u0259qiq\u0259",mm:"%d d\u0259qiq\u0259",h:"bir saat",hh:"%d saat",d:"bir g\xfcn",dd:"%d g\xfcn",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gec\u0259|s\u0259h\u0259r|g\xfcnd\xfcz|ax\u015fam/,isPM:function(t){return/^(g\xfcnd\xfcz|ax\u015fam)$/.test(t)},meridiem:function(t,e,n){return t<4?"gec\u0259":t<12?"s\u0259h\u0259r":t<17?"g\xfcnd\xfcz":"ax\u015fam"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0131nc\u0131|inci|nci|\xfcnc\xfc|nc\u0131|uncu)/,ordinal:function(t){if(0===t)return t+"-\u0131nc\u0131";var n=t%10;return t+(e[n]||e[t%100-n]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},SatO:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("zh-hk",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661f\u671f\u65e5_\u661f\u671f\u4e00_\u661f\u671f\u4e8c_\u661f\u671f\u4e09_\u661f\u671f\u56db_\u661f\u671f\u4e94_\u661f\u671f\u516d".split("_"),weekdaysShort:"\u9031\u65e5_\u9031\u4e00_\u9031\u4e8c_\u9031\u4e09_\u9031\u56db_\u9031\u4e94_\u9031\u516d".split("_"),weekdaysMin:"\u65e5_\u4e00_\u4e8c_\u4e09_\u56db_\u4e94_\u516d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm",l:"YYYY/M/D",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm"},meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u51cc\u6668"===e||"\u65e9\u4e0a"===e||"\u4e0a\u5348"===e?t:"\u4e2d\u5348"===e?t>=11?t:t+12:"\u4e0b\u5348"===e||"\u665a\u4e0a"===e?t+12:void 0},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:"[\u4e0b]ddddLT",lastDay:"[\u6628\u5929]LT",lastWeek:"[\u4e0a]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u9031)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\u65e5";case"M":return t+"\u6708";case"w":case"W":return t+"\u9031";default:return t}},relativeTime:{future:"%s\u5167",past:"%s\u524d",s:"\u5e7e\u79d2",ss:"%d \u79d2",m:"1 \u5206\u9418",mm:"%d \u5206\u9418",h:"1 \u5c0f\u6642",hh:"%d \u5c0f\u6642",d:"1 \u5929",dd:"%d \u5929",M:"1 \u500b\u6708",MM:"%d \u500b\u6708",y:"1 \u5e74",yy:"%d \u5e74"}})}()},Tos5:function(t,e,n){var i,r;r=function(t){!function(t){var e=t.seriesTypes,n=t.Chart.prototype,i=t.getOptions(),r=t.extend;r(i.lang,{noData:"No data to display"}),i.noData={position:{x:0,y:0,align:"center",verticalAlign:"middle"},style:{fontWeight:"bold",fontSize:"12px",color:"#666666"}},"bubble gauge heatmap networkgraph pie sankey treemap waterfall".split(" ").forEach(function(t){e[t]&&(e[t].prototype.hasData=function(){return!!this.points.length})}),t.Series.prototype.hasData=function(){return this.visible&&void 0!==this.dataMax&&void 0!==this.dataMin||this.visible&&this.yData&&0=11?t:t+12:"sore"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"siang":t<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}()},USCx:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ga",{months:["Ean\xe1ir","Feabhra","M\xe1rta","Aibre\xe1n","Bealtaine","M\xe9itheamh","I\xfail","L\xfanasa","Me\xe1n F\xf3mhair","Deaireadh F\xf3mhair","Samhain","Nollaig"],monthsShort:["Ean\xe1","Feab","M\xe1rt","Aibr","Beal","M\xe9it","I\xfail","L\xfana","Me\xe1n","Deai","Samh","Noll"],monthsParseExact:!0,weekdays:["D\xe9 Domhnaigh","D\xe9 Luain","D\xe9 M\xe1irt","D\xe9 C\xe9adaoin","D\xe9ardaoin","D\xe9 hAoine","D\xe9 Satharn"],weekdaysShort:["Dom","Lua","M\xe1i","C\xe9a","D\xe9a","hAo","Sat"],weekdaysMin:["Do","Lu","M\xe1","Ce","D\xe9","hA","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Am\xe1rach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inn\xe9 aig] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s \xf3 shin",s:"c\xfapla soicind",ss:"%d soicind",m:"n\xf3im\xe9ad",mm:"%d n\xf3im\xe9ad",h:"uair an chloig",hh:"%d uair an chloig",d:"l\xe1",dd:"%d l\xe1",M:"m\xed",MM:"%d m\xed",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(t){return t+(1===t?"d":t%10==2?"na":"mh")},week:{dow:1,doy:4}})}()},UpQW:function(t,e,n){!function(t){"use strict";var e=["\u062c\u0646\u0648\u0631\u06cc","\u0641\u0631\u0648\u0631\u06cc","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u06cc\u0644","\u0645\u0626\u06cc","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u0626\u06cc","\u0627\u06af\u0633\u062a","\u0633\u062a\u0645\u0628\u0631","\u0627\u06a9\u062a\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u062f\u0633\u0645\u0628\u0631"],i=["\u0627\u062a\u0648\u0627\u0631","\u067e\u06cc\u0631","\u0645\u0646\u06af\u0644","\u0628\u062f\u06be","\u062c\u0645\u0639\u0631\u0627\u062a","\u062c\u0645\u0639\u06c1","\u06c1\u0641\u062a\u06c1"];n("wd/R").defineLocale("ur",{months:e,monthsShort:e,weekdays:i,weekdaysShort:i,weekdaysMin:i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd\u060c D MMMM YYYY HH:mm"},meridiemParse:/\u0635\u0628\u062d|\u0634\u0627\u0645/,isPM:function(t){return"\u0634\u0627\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635\u0628\u062d":"\u0634\u0627\u0645"},calendar:{sameDay:"[\u0622\u062c \u0628\u0648\u0642\u062a] LT",nextDay:"[\u06a9\u0644 \u0628\u0648\u0642\u062a] LT",nextWeek:"dddd [\u0628\u0648\u0642\u062a] LT",lastDay:"[\u06af\u0630\u0634\u062a\u06c1 \u0631\u0648\u0632 \u0628\u0648\u0642\u062a] LT",lastWeek:"[\u06af\u0630\u0634\u062a\u06c1] dddd [\u0628\u0648\u0642\u062a] LT",sameElse:"L"},relativeTime:{future:"%s \u0628\u0639\u062f",past:"%s \u0642\u0628\u0644",s:"\u0686\u0646\u062f \u0633\u06cc\u06a9\u0646\u0688",ss:"%d \u0633\u06cc\u06a9\u0646\u0688",m:"\u0627\u06cc\u06a9 \u0645\u0646\u0679",mm:"%d \u0645\u0646\u0679",h:"\u0627\u06cc\u06a9 \u06af\u06be\u0646\u0679\u06c1",hh:"%d \u06af\u06be\u0646\u0679\u06d2",d:"\u0627\u06cc\u06a9 \u062f\u0646",dd:"%d \u062f\u0646",M:"\u0627\u06cc\u06a9 \u0645\u0627\u06c1",MM:"%d \u0645\u0627\u06c1",y:"\u0627\u06cc\u06a9 \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}()},Ur1D:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(t,e,n){return t<11?"ekuseni":t<15?"emini":t<19?"entsambama":"ebusuku"},meridiemHour:function(t,e){return 12===t&&(t=0),"ekuseni"===e?t:"emini"===e?t>=11?t:t+12:"entsambama"===e||"ebusuku"===e?0===t?0:t+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})}()},V2x9:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"minutu balun",ss:"minutu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},Vclq:function(t,e,n){!function(t){"use strict";var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;t.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_mi\xe9rcoles_jueves_viernes_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._mi\xe9._jue._vie._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[ma\xf1ana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un a\xf1o",yy:"%d a\xf1os"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:0,doy:6}})}(n("wd/R"))},WYrj:function(t,e,n){!function(t){"use strict";var e=["\u0796\u07ac\u0782\u07aa\u0787\u07a6\u0783\u07a9","\u078a\u07ac\u0784\u07b0\u0783\u07aa\u0787\u07a6\u0783\u07a9","\u0789\u07a7\u0783\u07a8\u0797\u07aa","\u0787\u07ad\u0795\u07b0\u0783\u07a9\u078d\u07aa","\u0789\u07ad","\u0796\u07ab\u0782\u07b0","\u0796\u07aa\u078d\u07a6\u0787\u07a8","\u0787\u07af\u078e\u07a6\u0790\u07b0\u0793\u07aa","\u0790\u07ac\u0795\u07b0\u0793\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa","\u0787\u07ae\u0786\u07b0\u0793\u07af\u0784\u07a6\u0783\u07aa","\u0782\u07ae\u0788\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa","\u0791\u07a8\u0790\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa"],i=["\u0787\u07a7\u078b\u07a8\u0787\u07b0\u078c\u07a6","\u0780\u07af\u0789\u07a6","\u0787\u07a6\u0782\u07b0\u078e\u07a7\u0783\u07a6","\u0784\u07aa\u078b\u07a6","\u0784\u07aa\u0783\u07a7\u0790\u07b0\u078a\u07a6\u078c\u07a8","\u0780\u07aa\u0786\u07aa\u0783\u07aa","\u0780\u07ae\u0782\u07a8\u0780\u07a8\u0783\u07aa"];n("wd/R").defineLocale("dv",{months:e,monthsShort:e,weekdays:i,weekdaysShort:i,weekdaysMin:"\u0787\u07a7\u078b\u07a8_\u0780\u07af\u0789\u07a6_\u0787\u07a6\u0782\u07b0_\u0784\u07aa\u078b\u07a6_\u0784\u07aa\u0783\u07a7_\u0780\u07aa\u0786\u07aa_\u0780\u07ae\u0782\u07a8".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0789\u0786|\u0789\u078a/,isPM:function(t){return"\u0789\u078a"===t},meridiem:function(t,e,n){return t<12?"\u0789\u0786":"\u0789\u078a"},calendar:{sameDay:"[\u0789\u07a8\u0787\u07a6\u078b\u07aa] LT",nextDay:"[\u0789\u07a7\u078b\u07a6\u0789\u07a7] LT",nextWeek:"dddd LT",lastDay:"[\u0787\u07a8\u0787\u07b0\u0794\u07ac] LT",lastWeek:"[\u078a\u07a7\u0787\u07a8\u078c\u07aa\u0788\u07a8] dddd LT",sameElse:"L"},relativeTime:{future:"\u078c\u07ac\u0783\u07ad\u078e\u07a6\u0787\u07a8 %s",past:"\u0786\u07aa\u0783\u07a8\u0782\u07b0 %s",s:"\u0790\u07a8\u0786\u07aa\u0782\u07b0\u078c\u07aa\u0786\u07ae\u0785\u07ac\u0787\u07b0",ss:"d% \u0790\u07a8\u0786\u07aa\u0782\u07b0\u078c\u07aa",m:"\u0789\u07a8\u0782\u07a8\u0793\u07ac\u0787\u07b0",mm:"\u0789\u07a8\u0782\u07a8\u0793\u07aa %d",h:"\u078e\u07a6\u0791\u07a8\u0787\u07a8\u0783\u07ac\u0787\u07b0",hh:"\u078e\u07a6\u0791\u07a8\u0787\u07a8\u0783\u07aa %d",d:"\u078b\u07aa\u0788\u07a6\u0780\u07ac\u0787\u07b0",dd:"\u078b\u07aa\u0788\u07a6\u0790\u07b0 %d",M:"\u0789\u07a6\u0780\u07ac\u0787\u07b0",MM:"\u0789\u07a6\u0790\u07b0 %d",y:"\u0787\u07a6\u0780\u07a6\u0783\u07ac\u0787\u07b0",yy:"\u0787\u07a6\u0780\u07a6\u0783\u07aa %d"},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:7,doy:12}})}()},WxRl:function(t,e,n){!function(t){"use strict";var e="vas\xe1rnap h\xe9tf\u0151n kedden szerd\xe1n cs\xfct\xf6rt\xf6k\xf6n p\xe9nteken szombaton".split(" ");function n(t,e,n,i){var r=t;switch(n){case"s":return i||e?"n\xe9h\xe1ny m\xe1sodperc":"n\xe9h\xe1ny m\xe1sodperce";case"ss":return r+(i||e)?" m\xe1sodperc":" m\xe1sodperce";case"m":return"egy"+(i||e?" perc":" perce");case"mm":return r+(i||e?" perc":" perce");case"h":return"egy"+(i||e?" \xf3ra":" \xf3r\xe1ja");case"hh":return r+(i||e?" \xf3ra":" \xf3r\xe1ja");case"d":return"egy"+(i||e?" nap":" napja");case"dd":return r+(i||e?" nap":" napja");case"M":return"egy"+(i||e?" h\xf3nap":" h\xf3napja");case"MM":return r+(i||e?" h\xf3nap":" h\xf3napja");case"y":return"egy"+(i||e?" \xe9v":" \xe9ve");case"yy":return r+(i||e?" \xe9v":" \xe9ve")}return""}function i(t){return(t?"":"[m\xfalt] ")+"["+e[this.day()]+"] LT[-kor]"}t.defineLocale("hu",{months:"janu\xe1r_febru\xe1r_m\xe1rcius_\xe1prilis_m\xe1jus_j\xfanius_j\xfalius_augusztus_szeptember_okt\xf3ber_november_december".split("_"),monthsShort:"jan_feb_m\xe1rc_\xe1pr_m\xe1j_j\xfan_j\xfal_aug_szept_okt_nov_dec".split("_"),weekdays:"vas\xe1rnap_h\xe9tf\u0151_kedd_szerda_cs\xfct\xf6rt\xf6k_p\xe9ntek_szombat".split("_"),weekdaysShort:"vas_h\xe9t_kedd_sze_cs\xfct_p\xe9n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(t){return"u"===t.charAt(1).toLowerCase()},meridiem:function(t,e,n){return t<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return i.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return i.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s m\xfalva",past:"%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},X709:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"s\xf6ndag_m\xe5ndag_tisdag_onsdag_torsdag_fredag_l\xf6rdag".split("_"),weekdaysShort:"s\xf6n_m\xe5n_tis_ons_tor_fre_l\xf6r".split("_"),weekdaysMin:"s\xf6_m\xe5_ti_on_to_fr_l\xf6".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Ig\xe5r] LT",nextWeek:"[P\xe5] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"f\xf6r %s sedan",s:"n\xe5gra sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en m\xe5nad",MM:"%d m\xe5nader",y:"ett \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}(e|a)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"e":1===e?"a":2===e?"a":"e")},week:{dow:1,doy:4}})}()},XDpg:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("zh-cn",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661f\u671f\u65e5_\u661f\u671f\u4e00_\u661f\u671f\u4e8c_\u661f\u671f\u4e09_\u661f\u671f\u56db_\u661f\u671f\u4e94_\u661f\u671f\u516d".split("_"),weekdaysShort:"\u5468\u65e5_\u5468\u4e00_\u5468\u4e8c_\u5468\u4e09_\u5468\u56db_\u5468\u4e94_\u5468\u516d".split("_"),weekdaysMin:"\u65e5_\u4e00_\u4e8c_\u4e09_\u56db_\u4e94_\u516d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5Ah\u70b9mm\u5206",LLLL:"YYYY\u5e74M\u6708D\u65e5ddddAh\u70b9mm\u5206",l:"YYYY/M/D",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm"},meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u51cc\u6668"===e||"\u65e9\u4e0a"===e||"\u4e0a\u5348"===e?t:"\u4e0b\u5348"===e||"\u665a\u4e0a"===e?t+12:t>=11?t:t+12},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:"[\u4e0b]ddddLT",lastDay:"[\u6628\u5929]LT",lastWeek:"[\u4e0a]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u5468)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\u65e5";case"M":return t+"\u6708";case"w":case"W":return t+"\u5468";default:return t}},relativeTime:{future:"%s\u5185",past:"%s\u524d",s:"\u51e0\u79d2",ss:"%d \u79d2",m:"1 \u5206\u949f",mm:"%d \u5206\u949f",h:"1 \u5c0f\u65f6",hh:"%d \u5c0f\u65f6",d:"1 \u5929",dd:"%d \u5929",M:"1 \u4e2a\u6708",MM:"%d \u4e2a\u6708",y:"1 \u5e74",yy:"%d \u5e74"},week:{dow:1,doy:4}})}()},XLvN:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("te",{months:"\u0c1c\u0c28\u0c35\u0c30\u0c3f_\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f_\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f_\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d_\u0c2e\u0c47_\u0c1c\u0c42\u0c28\u0c4d_\u0c1c\u0c41\u0c32\u0c48_\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41_\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d_\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d_\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d_\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d".split("_"),monthsShort:"\u0c1c\u0c28._\u0c2b\u0c3f\u0c2c\u0c4d\u0c30._\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f_\u0c0f\u0c2a\u0c4d\u0c30\u0c3f._\u0c2e\u0c47_\u0c1c\u0c42\u0c28\u0c4d_\u0c1c\u0c41\u0c32\u0c48_\u0c06\u0c17._\u0c38\u0c46\u0c2a\u0c4d._\u0c05\u0c15\u0c4d\u0c1f\u0c4b._\u0c28\u0c35._\u0c21\u0c3f\u0c38\u0c46.".split("_"),monthsParseExact:!0,weekdays:"\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02_\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02_\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02_\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02_\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02_\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02_\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02".split("_"),weekdaysShort:"\u0c06\u0c26\u0c3f_\u0c38\u0c4b\u0c2e_\u0c2e\u0c02\u0c17\u0c33_\u0c2c\u0c41\u0c27_\u0c17\u0c41\u0c30\u0c41_\u0c36\u0c41\u0c15\u0c4d\u0c30_\u0c36\u0c28\u0c3f".split("_"),weekdaysMin:"\u0c06_\u0c38\u0c4b_\u0c2e\u0c02_\u0c2c\u0c41_\u0c17\u0c41_\u0c36\u0c41_\u0c36".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[\u0c28\u0c47\u0c21\u0c41] LT",nextDay:"[\u0c30\u0c47\u0c2a\u0c41] LT",nextWeek:"dddd, LT",lastDay:"[\u0c28\u0c3f\u0c28\u0c4d\u0c28] LT",lastWeek:"[\u0c17\u0c24] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0c32\u0c4b",past:"%s \u0c15\u0c4d\u0c30\u0c3f\u0c24\u0c02",s:"\u0c15\u0c4a\u0c28\u0c4d\u0c28\u0c3f \u0c15\u0c4d\u0c37\u0c23\u0c3e\u0c32\u0c41",ss:"%d \u0c38\u0c46\u0c15\u0c28\u0c4d\u0c32\u0c41",m:"\u0c12\u0c15 \u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c02",mm:"%d \u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c3e\u0c32\u0c41",h:"\u0c12\u0c15 \u0c17\u0c02\u0c1f",hh:"%d \u0c17\u0c02\u0c1f\u0c32\u0c41",d:"\u0c12\u0c15 \u0c30\u0c4b\u0c1c\u0c41",dd:"%d \u0c30\u0c4b\u0c1c\u0c41\u0c32\u0c41",M:"\u0c12\u0c15 \u0c28\u0c46\u0c32",MM:"%d \u0c28\u0c46\u0c32\u0c32\u0c41",y:"\u0c12\u0c15 \u0c38\u0c02\u0c35\u0c24\u0c4d\u0c38\u0c30\u0c02",yy:"%d \u0c38\u0c02\u0c35\u0c24\u0c4d\u0c38\u0c30\u0c3e\u0c32\u0c41"},dayOfMonthOrdinalParse:/\d{1,2}\u0c35/,ordinal:"%d\u0c35",meridiemParse:/\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f|\u0c09\u0c26\u0c2f\u0c02|\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02|\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"===e?t<4?t:t+12:"\u0c09\u0c26\u0c2f\u0c02"===e?t:"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02"===e?t>=10?t:t+12:"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f":t<10?"\u0c09\u0c26\u0c2f\u0c02":t<17?"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02":t<20?"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02":"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"},week:{dow:0,doy:6}})}()},YRex:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ug-cn",{months:"\u064a\u0627\u0646\u06cb\u0627\u0631_\u0641\u06d0\u06cb\u0631\u0627\u0644_\u0645\u0627\u0631\u062a_\u0626\u0627\u067e\u0631\u06d0\u0644_\u0645\u0627\u064a_\u0626\u0649\u064a\u06c7\u0646_\u0626\u0649\u064a\u06c7\u0644_\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a_\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631_\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631_\u0646\u0648\u064a\u0627\u0628\u0649\u0631_\u062f\u06d0\u0643\u0627\u0628\u0649\u0631".split("_"),monthsShort:"\u064a\u0627\u0646\u06cb\u0627\u0631_\u0641\u06d0\u06cb\u0631\u0627\u0644_\u0645\u0627\u0631\u062a_\u0626\u0627\u067e\u0631\u06d0\u0644_\u0645\u0627\u064a_\u0626\u0649\u064a\u06c7\u0646_\u0626\u0649\u064a\u06c7\u0644_\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a_\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631_\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631_\u0646\u0648\u064a\u0627\u0628\u0649\u0631_\u062f\u06d0\u0643\u0627\u0628\u0649\u0631".split("_"),weekdays:"\u064a\u06d5\u0643\u0634\u06d5\u0646\u0628\u06d5_\u062f\u06c8\u0634\u06d5\u0646\u0628\u06d5_\u0633\u06d5\u064a\u0634\u06d5\u0646\u0628\u06d5_\u0686\u0627\u0631\u0634\u06d5\u0646\u0628\u06d5_\u067e\u06d5\u064a\u0634\u06d5\u0646\u0628\u06d5_\u062c\u06c8\u0645\u06d5_\u0634\u06d5\u0646\u0628\u06d5".split("_"),weekdaysShort:"\u064a\u06d5_\u062f\u06c8_\u0633\u06d5_\u0686\u0627_\u067e\u06d5_\u062c\u06c8_\u0634\u06d5".split("_"),weekdaysMin:"\u064a\u06d5_\u062f\u06c8_\u0633\u06d5_\u0686\u0627_\u067e\u06d5_\u062c\u06c8_\u0634\u06d5".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-\u064a\u0649\u0644\u0649M-\u0626\u0627\u064a\u0646\u0649\u06adD-\u0643\u06c8\u0646\u0649",LLL:"YYYY-\u064a\u0649\u0644\u0649M-\u0626\u0627\u064a\u0646\u0649\u06adD-\u0643\u06c8\u0646\u0649\u060c HH:mm",LLLL:"dddd\u060c YYYY-\u064a\u0649\u0644\u0649M-\u0626\u0627\u064a\u0646\u0649\u06adD-\u0643\u06c8\u0646\u0649\u060c HH:mm"},meridiemParse:/\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5|\u0633\u06d5\u06be\u06d5\u0631|\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646|\u0686\u06c8\u0634|\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646|\u0643\u06d5\u0686/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5"===e||"\u0633\u06d5\u06be\u06d5\u0631"===e||"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646"===e?t:"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646"===e||"\u0643\u06d5\u0686"===e?t+12:t>=11?t:t+12},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5":i<900?"\u0633\u06d5\u06be\u06d5\u0631":i<1130?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646":i<1230?"\u0686\u06c8\u0634":i<1800?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646":"\u0643\u06d5\u0686"},calendar:{sameDay:"[\u0628\u06c8\u06af\u06c8\u0646 \u0633\u0627\u0626\u06d5\u062a] LT",nextDay:"[\u0626\u06d5\u062a\u06d5 \u0633\u0627\u0626\u06d5\u062a] LT",nextWeek:"[\u0643\u06d0\u0644\u06d5\u0631\u0643\u0649] dddd [\u0633\u0627\u0626\u06d5\u062a] LT",lastDay:"[\u062a\u06c6\u0646\u06c8\u06af\u06c8\u0646] LT",lastWeek:"[\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649] dddd [\u0633\u0627\u0626\u06d5\u062a] LT",sameElse:"L"},relativeTime:{future:"%s \u0643\u06d0\u064a\u0649\u0646",past:"%s \u0628\u06c7\u0631\u06c7\u0646",s:"\u0646\u06d5\u0686\u0686\u06d5 \u0633\u06d0\u0643\u0648\u0646\u062a",ss:"%d \u0633\u06d0\u0643\u0648\u0646\u062a",m:"\u0628\u0649\u0631 \u0645\u0649\u0646\u06c7\u062a",mm:"%d \u0645\u0649\u0646\u06c7\u062a",h:"\u0628\u0649\u0631 \u0633\u0627\u0626\u06d5\u062a",hh:"%d \u0633\u0627\u0626\u06d5\u062a",d:"\u0628\u0649\u0631 \u0643\u06c8\u0646",dd:"%d \u0643\u06c8\u0646",M:"\u0628\u0649\u0631 \u0626\u0627\u064a",MM:"%d \u0626\u0627\u064a",y:"\u0628\u0649\u0631 \u064a\u0649\u0644",yy:"%d \u064a\u0649\u0644"},dayOfMonthOrdinalParse:/\d{1,2}(-\u0643\u06c8\u0646\u0649|-\u0626\u0627\u064a|-\u06be\u06d5\u067e\u062a\u06d5)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"-\u0643\u06c8\u0646\u0649";case"w":case"W":return t+"-\u06be\u06d5\u067e\u062a\u06d5";default:return t}},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:1,doy:7}})}()},YuTi:function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},Z4QM:function(t,e,n){!function(t){"use strict";var e=["\u062c\u0646\u0648\u0631\u064a","\u0641\u064a\u0628\u0631\u0648\u0631\u064a","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u064a\u0644","\u0645\u0626\u064a","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u0621\u0650","\u0622\u06af\u0633\u067d","\u0633\u064a\u067e\u067d\u0645\u0628\u0631","\u0622\u06aa\u067d\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u068a\u0633\u0645\u0628\u0631"],i=["\u0622\u0686\u0631","\u0633\u0648\u0645\u0631","\u0627\u06b1\u0627\u0631\u0648","\u0627\u0631\u0628\u0639","\u062e\u0645\u064a\u0633","\u062c\u0645\u0639","\u0687\u0646\u0687\u0631"];n("wd/R").defineLocale("sd",{months:e,monthsShort:e,weekdays:i,weekdaysShort:i,weekdaysMin:i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd\u060c D MMMM YYYY HH:mm"},meridiemParse:/\u0635\u0628\u062d|\u0634\u0627\u0645/,isPM:function(t){return"\u0634\u0627\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635\u0628\u062d":"\u0634\u0627\u0645"},calendar:{sameDay:"[\u0627\u0684] LT",nextDay:"[\u0633\u0680\u0627\u06bb\u064a] LT",nextWeek:"dddd [\u0627\u06b3\u064a\u0646 \u0647\u0641\u062a\u064a \u062a\u064a] LT",lastDay:"[\u06aa\u0627\u0644\u0647\u0647] LT",lastWeek:"[\u06af\u0632\u0631\u064a\u0644 \u0647\u0641\u062a\u064a] dddd [\u062a\u064a] LT",sameElse:"L"},relativeTime:{future:"%s \u067e\u0648\u0621",past:"%s \u0627\u06b3",s:"\u0686\u0646\u062f \u0633\u064a\u06aa\u0646\u068a",ss:"%d \u0633\u064a\u06aa\u0646\u068a",m:"\u0647\u06aa \u0645\u0646\u067d",mm:"%d \u0645\u0646\u067d",h:"\u0647\u06aa \u06aa\u0644\u0627\u06aa",hh:"%d \u06aa\u0644\u0627\u06aa",d:"\u0647\u06aa \u068f\u064a\u0646\u0647\u0646",dd:"%d \u068f\u064a\u0646\u0647\u0646",M:"\u0647\u06aa \u0645\u0647\u064a\u0646\u0648",MM:"%d \u0645\u0647\u064a\u0646\u0627",y:"\u0647\u06aa \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}()},Z9Wc:function(t,e,n){var i,r;r=function(t){var e,n,i;n=(e=t).deg2rad,i=e.pick,e.perspective3D=function(t,e,n){return e=0a&&l-a>Math.PI/2+1e-4?c=(c=c.concat(e(t,i,r,o,a,a+Math.PI/2,s,u))).concat(e(t,i,r,o,a+Math.PI/2,l,s,u)):lMath.PI/2+1e-4?c=(c=c.concat(e(t,i,r,o,a,a-Math.PI/2,s,u))).concat(e(t,i,r,o,a-Math.PI/2,l,s,u)):["C",t+r*Math.cos(a)-r*n*d*Math.sin(a)+s,i+o*Math.sin(a)+o*n*d*Math.cos(a)+u,t+r*Math.cos(l)+r*n*d*Math.sin(l)+s,i+o*Math.sin(l)-o*n*d*Math.cos(l)+u,t+r*Math.cos(l)+s,i+o*Math.sin(l)+u]}var n,i,r,o=Math.cos,a=Math.PI,l=Math.sin,s=t.animObject,u=t.charts,c=t.color,d=t.defined,h=t.deg2rad,p=t.extend,f=t.merge,m=t.perspective,g=t.pick,y=t.SVGElement,_=t.SVGRenderer;n=4*(Math.sqrt(2)-1)/3/(a/2),_.prototype.toLinePath=function(t,e){var n=[];return t.forEach(function(t){n.push("L",t.x,t.y)}),t.length&&(n[0]="M",e&&n.push("Z")),n},_.prototype.toLineSegments=function(t){var e=[],n=!0;return t.forEach(function(t){e.push(n?"M":"L",t.x,t.y),n=!n}),e},_.prototype.face3d=function(e){var n=this,i=this.createElement("path");return i.vertexes=[],i.insidePlotArea=!1,i.enabled=!0,i.attr=function(e){if("object"==typeof e&&(d(e.enabled)||d(e.vertexes)||d(e.insidePlotArea))){this.enabled=g(e.enabled,this.enabled),this.vertexes=g(e.vertexes,this.vertexes),this.insidePlotArea=g(e.insidePlotArea,this.insidePlotArea),delete e.enabled,delete e.vertexes,delete e.insidePlotArea;var i=m(this.vertexes,u[n.chartIndex],this.insidePlotArea),r=n.toLinePath(i,!0);i=t.shapeArea(i),i=this.enabled&&0t.faces.length;)n.faces.pop().destroy();for(;n.faces.lengtht.faces.length;)n.faces.pop().destroy();for(;n.faces.lengtht.shapeArea(e)?r=[e,0]:0>t.shapeArea(i)&&(r=[i,1]),r},e=(i=r([3,2,1,0],[7,6,5,4]))[0],c=i[1],s=(i=r([1,6,7,0],[4,5,2,3]))[0],d=i[1],i=r([1,2,5,6],[0,7,4,3]),r=i[0],1===(i=i[1])?f+=1e4*(1e3-o):i||(f+=1e4*o),f+=10*(!d||0<=p&&180>=p||360>p&&357.5Math.PI&&(t=2*Math.PI-t),t}var i=t.x,r=t.y,s=t.start,u=t.end-1e-5,c=t.r,d=t.innerR||0,h=t.depth||0,p=t.alpha,f=t.beta,m=Math.cos(s),g=Math.sin(s);t=Math.cos(u);var y=Math.sin(u),_=c*Math.cos(f),v=(c*=Math.cos(p),d*Math.cos(f)),b=d*Math.cos(p),x=(d=h*Math.sin(f),h*Math.sin(p)),w=(h=(h=(h=(h=(h=["M",i+_*m,r+c*g]).concat(e(i,r,_,c,s,u,0,0))).concat(["L",i+v*t,r+b*y])).concat(e(i,r,v,b,u,s,0,0))).concat(["Z"]),0-w?s:u>-w?-w:s),r+c*l(w)]).concat(e(i,r,_,c,w,k,0,0)),u>M&&sa-f&&sc&&(f=Math.min(f,1-Math.abs((i+s)/(c+s))%1)),oh&&(f=0>h?Math.min(f,(a+u)/(-h+a+u)):Math.min(f,1-(a+u)/(h+u)%1)),ln?-1:0})([{x:a,y:u,z:c},{x:l,y:u,z:c},{x:l,y:u,z:0},{x:a,y:u,z:0}]),h=g([{x:a,y:s,z:0},{x:l,y:s,z:0},{x:l,y:s,z:c},{x:a,y:s,z:c}]),p=g([{x:a,y:s,z:0},{x:a,y:s,z:c},{x:a,y:u,z:c},{x:a,y:u,z:0}]),f=g([{x:l,y:s,z:c},{x:l,y:s,z:0},{x:l,y:u,z:0},{x:l,y:u,z:c}]),m=g([{x:a,y:u,z:0},{x:l,y:u,z:0},{x:l,y:s,z:0},{x:a,y:s,z:0}]),g=g([{x:a,y:s,z:c},{x:l,y:s,z:c},{x:l,y:u,z:c},{x:a,y:u,z:c}]),y=!1,_=!1,v=!1,b=!1;[].concat(e.xAxis,e.yAxis,e.zAxis).forEach(function(t){t&&(t.horiz?t.opposite?_=!0:y=!0:t.opposite?b=!0:v=!0)});var x=function(t,e,n){for(var i=["size","color","visible"],r={},a=0;ai*a[o][n]?o=l:i*a[l][n]==i*a[o][n]&&a[l].zthis.pos&&(t.isArray(this.start)||t.isArray(this.end))){var n=this.start||[1,0,0,1,0,0],i=this.end||[1,0,0,1,0,0];e=[];for(var r=0;6>r;r++)e.push(this.pos*i[r]+(1-this.pos)*n[r])}else e=this.end;this.elem.attr(this.prop,e,null,!0)}}(t),function(t){function e(t,e,n){if(!t.chart.is3d()||"colorAxis"===t.coll)return e;var i=a*(m=t.chart).options.chart.options3d.alpha,r=a*m.options.chart.options3d.beta,o=d(n&&t.options.title.position3d,t.options.labels.position3d);n=d(n&&t.options.title.skew3d,t.options.labels.skew3d);var l=m.frame3d,s=m.plotLeft,c=m.plotWidth+s,p=m.plotTop,f=m.plotHeight+p,m=!1,g=0,y=0,_={x:0,y:1,z:0};if(e=t.swapZ({x:e.x,y:e.y,z:0}),t.isZAxis)if(t.opposite){if(null===l.axes.z.top)return{};y=e.y-p,e.x=l.axes.z.top.x,e.y=l.axes.z.top.y,s=l.axes.z.top.xDir,m=!l.top.frontFacing}else{if(null===l.axes.z.bottom)return{};y=e.y-f,e.x=l.axes.z.bottom.x,e.y=l.axes.z.bottom.y,s=l.axes.z.bottom.xDir,m=!l.bottom.frontFacing}else if(t.horiz)if(t.opposite){if(null===l.axes.x.top)return{};y=e.y-p,e.y=l.axes.x.top.y,e.z=l.axes.x.top.z,s=l.axes.x.top.xDir,m=!l.top.frontFacing}else{if(null===l.axes.x.bottom)return{};y=e.y-f,e.y=l.axes.x.bottom.y,e.z=l.axes.x.bottom.z,s=l.axes.x.bottom.xDir,m=!l.bottom.frontFacing}else if(t.opposite){if(null===l.axes.y.right)return{};g=e.x-c,e.x=l.axes.y.right.x,e.z=l.axes.y.right.z,s={x:(s=l.axes.y.right.xDir).z,y:s.y,z:-s.x}}else{if(null===l.axes.y.left)return{};g=e.x-s,e.x=l.axes.y.left.x,e.z=l.axes.y.left.z,s=l.axes.y.left.xDir}return"chart"!==o&&("flap"===o?t.horiz?(r=Math.sin(i),i=Math.cos(i),t.opposite&&(r=-r),m&&(r=-r),_={x:s.z*r,y:i,z:-s.x*r}):s={x:Math.cos(r),y:0,z:Math.sin(r)}:"ortho"===o?t.horiz?(_=Math.cos(i),o=Math.sin(r)*_,i=-Math.sin(i),r=-_*Math.cos(r),_={x:s.y*r-s.z*i,y:s.z*o-s.x*r,z:s.x*i-s.y*o},i=1/Math.sqrt(_.x*_.x+_.y*_.y+_.z*_.z),m&&(i=-i),_={x:i*_.x,y:i*_.y,z:i*_.z}):s={x:Math.cos(r),y:0,z:Math.sin(r)}:t.horiz?_={x:Math.sin(r)*Math.sin(i),y:Math.cos(i),z:-Math.cos(r)*Math.sin(i)}:s={x:Math.cos(r),y:0,z:Math.sin(r)}),e.x+=g*s.x+y*_.x,e.y+=g*s.y+y*_.y,e.z+=g*s.z+y*_.z,m=u([e],t.chart)[0],n&&(0>h(u([e,{x:e.x+s.x,y:e.y+s.y,z:e.z+s.z},{x:e.x+_.x,y:e.y+_.y,z:e.z+_.z}],t.chart))&&(s={x:-s.x,y:-s.y,z:-s.z}),t=u([{x:e.x,y:e.y,z:e.z},{x:e.x+s.x,y:e.y+s.y,z:e.z+s.z},{x:e.x+_.x,y:e.y+_.y,z:e.z+_.z}],t.chart),m.matrix=[t[1].x-t[0].x,t[1].y-t[0].y,t[2].x-t[0].x,t[2].y-t[0].y,m.x,m.y],m.matrix[4]-=m.x*m.matrix[0]+m.y*m.matrix[2],m.matrix[5]-=m.x*m.matrix[1]+m.y*m.matrix[3]),m}var n,i=t.addEvent,r=t.Axis,o=t.Chart,a=t.deg2rad,l=t.extend,s=t.merge,u=t.perspective,c=t.perspective3D,d=t.pick,h=t.shapeArea,p=t.splat,f=t.Tick,m=t.wrap;s(!0,r.prototype.defaultOptions,{labels:{position3d:"offset",skew3d:!1},title:{position3d:null,skew3d:null}}),i(r,"afterSetOptions",function(){var t;this.chart.is3d&&this.chart.is3d()&&"colorAxis"!==this.coll&&((t=this.options).tickWidth=d(t.tickWidth,0),t.gridLineWidth=d(t.gridLineWidth,1))}),m(r.prototype,"getPlotLinePath",function(t){var e=t.apply(this,[].slice.call(arguments,1));if(!this.chart.is3d()||"colorAxis"===this.coll||null===e)return e;var n=(i=this.chart).options.chart.options3d,i=(n=this.isZAxis?i.plotWidth:n.depth,i.frame3d);return e=[this.swapZ({x:e[1],y:e[2],z:0}),this.swapZ({x:e[1],y:e[2],z:n}),this.swapZ({x:e[4],y:e[5],z:0}),this.swapZ({x:e[4],y:e[5],z:n})],n=[],this.horiz?(this.isZAxis?(i.left.visible&&n.push(e[0],e[2]),i.right.visible&&n.push(e[1],e[3])):(i.front.visible&&n.push(e[0],e[2]),i.back.visible&&n.push(e[1],e[3])),i.top.visible&&n.push(e[0],e[1]),i.bottom.visible&&n.push(e[2],e[3])):(i.front.visible&&n.push(e[0],e[2]),i.back.visible&&n.push(e[1],e[3]),i.left.visible&&n.push(e[0],e[1]),i.right.visible&&n.push(e[2],e[3])),n=u(n,this.chart,!1),this.chart.renderer.toLineSegments(n)}),m(r.prototype,"getLinePath",function(t){return this.chart.is3d()&&"colorAxis"!==this.coll?[]:t.apply(this,[].slice.call(arguments,1))}),m(r.prototype,"getPlotBandPath",function(t){if(!this.chart.is3d()||"colorAxis"===this.coll)return t.apply(this,[].slice.call(arguments,1));var e=(i=arguments)[2],n=[],i=this.getPlotLinePath(i[1]);if(e=this.getPlotLinePath(e),i&&e)for(var r=0;r=a.min&&i<=a.max):t.plotZ=0,t.axisXpos=t.plotX,t.axisYpos=t.plotY,t.axisZpos=t.plotZ,l.push({x:t.plotX,y:t.plotY,z:t.plotZ});for(o=e(l,o,!0),r=0;r(l=s[e[0]]-a)&&(s[e[1]]+=s[e[0]]+a,s[e[0]]=-a,l=0),l+s[e[1]]>t[e[0]+"Axis"].len&&0!==s[e[1]]&&(s[e[1]]=t[e[0]+"Axis"].len-s[e[0]]),0!==s[e[1]]&&(s[e[0]]>=t[e[0]+"Axis"].len||s[e[0]]+s[e[1]]<=a)){for(var i in s)s[i]=0;n.outside3dPlot=!0}}),"rect"===n.shapeType&&(n.shapeType="cuboid"),s.z=o,s.depth=r,s.insidePlotArea=!0,u=i([{x:u[0],y:u[1],z:o}],e,!0)[0],n.tooltipPos=[u.x,u.y]}}),t.z=o},s(a.column.prototype,"animate",function(t){if(this.chart.is3d()){var e=this.yAxis,n=this,i=this.yAxis.reversed;l&&(arguments[1]?n.data.forEach(function(t){null!==t.y&&(t.height=t.shapeArgs.height,t.shapey=t.shapeArgs.y,t.shapeArgs.height=1,i||(t.shapeArgs.y=t.stackY?t.plotY+e.translate(t.stackY):t.plotY+(t.negative?-t.height:t.height)))}):(n.data.forEach(function(t){null!==t.y&&(t.shapeArgs.height=t.height,t.shapeArgs.y=t.shapey,t.graphic&&t.graphic.animate(t.shapeArgs,n.options.animation))}),this.drawDataLabels(),n.animate=null))}else t.apply(this,[].slice.call(arguments,1))}),s(a.column.prototype,"plotGroup",function(t,e,n,i,r,o){return this.chart.is3d()&&o&&!this[e]&&(this.chart.columnGroup||(this.chart.columnGroup=this.chart.renderer.g("columnGroup").add(o)),this[e]=this.chart.columnGroup,this.chart.columnGroup.attr(this.getPlotBox()),this[e].survive=!0),t.apply(this,Array.prototype.slice.call(arguments,1))}),s(a.column.prototype,"setVisible",function(t,e){var n,i=this;i.chart.is3d()&&i.data.forEach(function(t){n=(t.visible=t.options.visible=e=void 0===e?!t.visible:e)?"visible":"hidden",i.options.data[i.data.indexOf(t)]=t.options,t.graphic&&t.graphic.attr({visibility:n})}),t.apply(this,Array.prototype.slice.call(arguments,1))}),a.column.prototype.handle3dGrouping=!0,n(o,"afterInit",function(){if(this.chart.is3d()&&this.handle3dGrouping){var t=this.options,e=t.grouping,n=t.stacking,i=r(this.yAxis.options.reversedStacks,!0),o=0;if(void 0===e||e){for(e=this.chart.retrieveStacks(n),o=t.stack||0,n=0;n{point.x}
y: {point.y}
z: {point.z}
"}},{pointAttribs:function(e){var i=n.scatter.prototype.pointAttribs.apply(this,arguments);return this.chart.is3d()&&e&&(i.zIndex=t.pointCameraDistance(e,this.chart)),i},axisTypes:["xAxis","yAxis","zAxis"],pointArrayMap:["x","y","z"],parallelArrays:["x","y","z"],directTouch:!0},{applyOptions:function(){return e.prototype.applyOptions.apply(this,arguments),void 0===this.z&&(this.z=0),this}})}(t),function(t){var e=t.addEvent,n=t.Axis,i=t.SVGRenderer,r=t.VMLRenderer;r&&(t.setOptions({animate:!1}),r.prototype.face3d=i.prototype.face3d,r.prototype.polyhedron=i.prototype.polyhedron,r.prototype.elements3d=i.prototype.elements3d,r.prototype.element3d=i.prototype.element3d,r.prototype.cuboid=i.prototype.cuboid,r.prototype.cuboidPath=i.prototype.cuboidPath,r.prototype.toLinePath=i.prototype.toLinePath,r.prototype.toLineSegments=i.prototype.toLineSegments,r.prototype.arc3d=function(t){return(t=i.prototype.arc3d.call(this,t)).css({zIndex:t.zIndex}),t},t.VMLRenderer.prototype.arc3dPath=t.SVGRenderer.prototype.arc3dPath,e(n,"render",function(){this.sideFrame&&(this.sideFrame.css({zIndex:0}),this.sideFrame.front.attr({fill:this.sideFrame.color})),this.bottomFrame&&(this.bottomFrame.css({zIndex:1}),this.bottomFrame.front.attr({fill:this.bottomFrame.color})),this.backFrame&&(this.backFrame.css({zIndex:0}),this.backFrame.front.attr({fill:this.backFrame.color}))}))}(t)},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},ZAMP:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(t,e){return 12===t&&(t=0),"pagi"===e?t:"tengahari"===e?t>=11?t:t+12:"petang"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"tengahari":t<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}()},Zduo:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_a\u016dgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_a\u016dg_sep_okt_nov_dec".split("_"),weekdays:"diman\u0109o_lundo_mardo_merkredo_\u0135a\u016ddo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_\u0135a\u016d_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_\u0135a_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D[-a de] MMMM, YYYY",LLL:"D[-a de] MMMM, YYYY HH:mm",LLLL:"dddd, [la] D[-a de] MMMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(t){return"p"===t.charAt(0).toLowerCase()},meridiem:function(t,e,n){return t>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodia\u016d je] LT",nextDay:"[Morga\u016d je] LT",nextWeek:"dddd [je] LT",lastDay:"[Hiera\u016d je] LT",lastWeek:"[pasinta] dddd [je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"anta\u016d %s",s:"sekundoj",ss:"%d sekundoj",m:"minuto",mm:"%d minutoj",h:"horo",hh:"%d horoj",d:"tago",dd:"%d tagoj",M:"monato",MM:"%d monatoj",y:"jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})}()},aIdf:function(t,e,n){!function(t){"use strict";function e(t,e,n){return t+" "+function(t,e){return 2===e?function(t){var e={m:"v",b:"v",d:"z"};return void 0===e[t.charAt(0)]?t:e[t.charAt(0)]+t.substring(1)}(t):t}({mm:"munutenn",MM:"miz",dd:"devezh"}[n],t)}n("wd/R").defineLocale("br",{months:"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h[e]mm A",LTS:"h[e]mm:ss A",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY h[e]mm A",LLLL:"dddd, D [a viz] MMMM YYYY h[e]mm A"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondenno\xf9",ss:"%d eilenn",m:"ur vunutenn",mm:e,h:"un eur",hh:"%d eur",d:"un devezh",dd:e,M:"ur miz",MM:e,y:"ur bloaz",yy:function(t){switch(function t(e){return e>9?t(e%10):e}(t)){case 1:case 3:case 4:case 5:case 9:return t+" bloaz";default:return t+" vloaz"}}},dayOfMonthOrdinalParse:/\d{1,2}(a\xf1|vet)/,ordinal:function(t){return t+(1===t?"a\xf1":"vet")},week:{dow:1,doy:4}})}()},aIsn:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("mi",{months:"Kohi-t\u0101te_Hui-tanguru_Pout\u016b-te-rangi_Paenga-wh\u0101wh\u0101_Haratua_Pipiri_H\u014dngoingoi_Here-turi-k\u014dk\u0101_Mahuru_Whiringa-\u0101-nuku_Whiringa-\u0101-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_H\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"R\u0101tapu_Mane_T\u016brei_Wenerei_T\u0101ite_Paraire_H\u0101tarei".split("_"),weekdaysShort:"Ta_Ma_T\u016b_We_T\u0101i_Pa_H\u0101".split("_"),weekdaysMin:"Ta_Ma_T\u016b_We_T\u0101i_Pa_H\u0101".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te h\u0113kona ruarua",ss:"%d h\u0113kona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},aQkU:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("mk",{months:"\u0458\u0430\u043d\u0443\u0430\u0440\u0438_\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0438\u043b_\u043c\u0430\u0458_\u0458\u0443\u043d\u0438_\u0458\u0443\u043b\u0438_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438_\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438_\u043d\u043e\u0435\u043c\u0432\u0440\u0438_\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438".split("_"),monthsShort:"\u0458\u0430\u043d_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0458_\u0458\u0443\u043d_\u0458\u0443\u043b_\u0430\u0432\u0433_\u0441\u0435\u043f_\u043e\u043a\u0442_\u043d\u043e\u0435_\u0434\u0435\u043a".split("_"),weekdays:"\u043d\u0435\u0434\u0435\u043b\u0430_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0440\u0442\u043e\u043a_\u043f\u0435\u0442\u043e\u043a_\u0441\u0430\u0431\u043e\u0442\u0430".split("_"),weekdaysShort:"\u043d\u0435\u0434_\u043f\u043e\u043d_\u0432\u0442\u043e_\u0441\u0440\u0435_\u0447\u0435\u0442_\u043f\u0435\u0442_\u0441\u0430\u0431".split("_"),weekdaysMin:"\u043de_\u043fo_\u0432\u0442_\u0441\u0440_\u0447\u0435_\u043f\u0435_\u0441a".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[\u0414\u0435\u043d\u0435\u0441 \u0432\u043e] LT",nextDay:"[\u0423\u0442\u0440\u0435 \u0432\u043e] LT",nextWeek:"[\u0412\u043e] dddd [\u0432\u043e] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430 \u0432\u043e] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[\u0418\u0437\u043c\u0438\u043d\u0430\u0442\u0430\u0442\u0430] dddd [\u0432\u043e] LT";case 1:case 2:case 4:case 5:return"[\u0418\u0437\u043c\u0438\u043d\u0430\u0442\u0438\u043e\u0442] dddd [\u0432\u043e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u043e\u0441\u043b\u0435 %s",past:"\u043f\u0440\u0435\u0434 %s",s:"\u043d\u0435\u043a\u043e\u043b\u043a\u0443 \u0441\u0435\u043a\u0443\u043d\u0434\u0438",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434\u0438",m:"\u043c\u0438\u043d\u0443\u0442\u0430",mm:"%d \u043c\u0438\u043d\u0443\u0442\u0438",h:"\u0447\u0430\u0441",hh:"%d \u0447\u0430\u0441\u0430",d:"\u0434\u0435\u043d",dd:"%d \u0434\u0435\u043d\u0430",M:"\u043c\u0435\u0441\u0435\u0446",MM:"%d \u043c\u0435\u0441\u0435\u0446\u0438",y:"\u0433\u043e\u0434\u0438\u043d\u0430",yy:"%d \u0433\u043e\u0434\u0438\u043d\u0438"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0435\u0432|\u0435\u043d|\u0442\u0438|\u0432\u0438|\u0440\u0438|\u043c\u0438)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-\u0435\u0432":0===n?t+"-\u0435\u043d":n>10&&n<20?t+"-\u0442\u0438":1===e?t+"-\u0432\u0438":2===e?t+"-\u0440\u0438":7===e||8===e?t+"-\u043c\u0438":t+"-\u0442\u0438"},week:{dow:1,doy:7}})}()},b1Dy:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},bOMt:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"s\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\xf8rdag".split("_"),weekdaysShort:"s\xf8._ma._ti._on._to._fr._l\xf8.".split("_"),weekdaysMin:"s\xf8_ma_ti_on_to_fr_l\xf8".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i g\xe5r kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en m\xe5ned",MM:"%d m\xe5neder",y:"ett \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},bXm7:function(t,e,n){!function(t){"use strict";var e={0:"-\u0448\u0456",1:"-\u0448\u0456",2:"-\u0448\u0456",3:"-\u0448\u0456",4:"-\u0448\u0456",5:"-\u0448\u0456",6:"-\u0448\u044b",7:"-\u0448\u0456",8:"-\u0448\u0456",9:"-\u0448\u044b",10:"-\u0448\u044b",20:"-\u0448\u044b",30:"-\u0448\u044b",40:"-\u0448\u044b",50:"-\u0448\u0456",60:"-\u0448\u044b",70:"-\u0448\u0456",80:"-\u0448\u0456",90:"-\u0448\u044b",100:"-\u0448\u0456"};t.defineLocale("kk",{months:"\u049b\u0430\u04a3\u0442\u0430\u0440_\u0430\u049b\u043f\u0430\u043d_\u043d\u0430\u0443\u0440\u044b\u0437_\u0441\u04d9\u0443\u0456\u0440_\u043c\u0430\u043c\u044b\u0440_\u043c\u0430\u0443\u0441\u044b\u043c_\u0448\u0456\u043b\u0434\u0435_\u0442\u0430\u043c\u044b\u0437_\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a_\u049b\u0430\u0437\u0430\u043d_\u049b\u0430\u0440\u0430\u0448\u0430_\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d".split("_"),monthsShort:"\u049b\u0430\u04a3_\u0430\u049b\u043f_\u043d\u0430\u0443_\u0441\u04d9\u0443_\u043c\u0430\u043c_\u043c\u0430\u0443_\u0448\u0456\u043b_\u0442\u0430\u043c_\u049b\u044b\u0440_\u049b\u0430\u0437_\u049b\u0430\u0440_\u0436\u0435\u043b".split("_"),weekdays:"\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456_\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456_\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456_\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456_\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456_\u0436\u04b1\u043c\u0430_\u0441\u0435\u043d\u0431\u0456".split("_"),weekdaysShort:"\u0436\u0435\u043a_\u0434\u04af\u0439_\u0441\u0435\u0439_\u0441\u04d9\u0440_\u0431\u0435\u0439_\u0436\u04b1\u043c_\u0441\u0435\u043d".split("_"),weekdaysMin:"\u0436\u043a_\u0434\u0439_\u0441\u0439_\u0441\u0440_\u0431\u0439_\u0436\u043c_\u0441\u043d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0411\u04af\u0433\u0456\u043d \u0441\u0430\u0493\u0430\u0442] LT",nextDay:"[\u0415\u0440\u0442\u0435\u04a3 \u0441\u0430\u0493\u0430\u0442] LT",nextWeek:"dddd [\u0441\u0430\u0493\u0430\u0442] LT",lastDay:"[\u041a\u0435\u0448\u0435 \u0441\u0430\u0493\u0430\u0442] LT",lastWeek:"[\u04e8\u0442\u043a\u0435\u043d \u0430\u043f\u0442\u0430\u043d\u044b\u04a3] dddd [\u0441\u0430\u0493\u0430\u0442] LT",sameElse:"L"},relativeTime:{future:"%s \u0456\u0448\u0456\u043d\u0434\u0435",past:"%s \u0431\u04b1\u0440\u044b\u043d",s:"\u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0441\u0435\u043a\u0443\u043d\u0434",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434",m:"\u0431\u0456\u0440 \u043c\u0438\u043d\u0443\u0442",mm:"%d \u043c\u0438\u043d\u0443\u0442",h:"\u0431\u0456\u0440 \u0441\u0430\u0493\u0430\u0442",hh:"%d \u0441\u0430\u0493\u0430\u0442",d:"\u0431\u0456\u0440 \u043a\u04af\u043d",dd:"%d \u043a\u04af\u043d",M:"\u0431\u0456\u0440 \u0430\u0439",MM:"%d \u0430\u0439",y:"\u0431\u0456\u0440 \u0436\u044b\u043b",yy:"%d \u0436\u044b\u043b"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0448\u0456|\u0448\u044b)/,ordinal:function(t){return t+(e[t]||e[t%10]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},bYM6:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ar-tn",{months:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),monthsShort:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:1,doy:4}})}()},bpih:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_luned\xec_marted\xec_mercoled\xec_gioved\xec_venerd\xec_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(t){return(/^[0-9].+$/.test(t)?"tra":"in")+" "+t},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},bxKX:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_luned\xec_marted\xec_mercoled\xec_gioved\xec_venerd\xec_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(t){return(/^[0-9].+$/.test(t)?"tra":"in")+" "+t},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},cRix:function(t,e,n){!function(t){"use strict";var e="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),n="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_");t.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[\xf4fr\xfbne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien min\xfat",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},crnd:function(t,e){function n(t){return Promise.resolve().then(function(){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e})}n.keys=function(){return[]},n.resolve=n,t.exports=n,n.id="crnd"},czMo:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}})}()},dNwA:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"masiku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})}()},"e+ae":function(t,e,n){!function(t){"use strict";var e="janu\xe1r_febru\xe1r_marec_apr\xedl_m\xe1j_j\xfan_j\xfal_august_september_okt\xf3ber_november_december".split("_"),n="jan_feb_mar_apr_m\xe1j_j\xfan_j\xfal_aug_sep_okt_nov_dec".split("_");function i(t){return t>1&&t<5}function r(t,e,n,r){var o=t+" ";switch(n){case"s":return e||r?"p\xe1r sek\xfand":"p\xe1r sekundami";case"ss":return e||r?o+(i(t)?"sekundy":"sek\xfand"):o+"sekundami";case"m":return e?"min\xfata":r?"min\xfatu":"min\xfatou";case"mm":return e||r?o+(i(t)?"min\xfaty":"min\xfat"):o+"min\xfatami";case"h":return e?"hodina":r?"hodinu":"hodinou";case"hh":return e||r?o+(i(t)?"hodiny":"hod\xedn"):o+"hodinami";case"d":return e||r?"de\u0148":"d\u0148om";case"dd":return e||r?o+(i(t)?"dni":"dn\xed"):o+"d\u0148ami";case"M":return e||r?"mesiac":"mesiacom";case"MM":return e||r?o+(i(t)?"mesiace":"mesiacov"):o+"mesiacmi";case"y":return e||r?"rok":"rokom";case"yy":return e||r?o+(i(t)?"roky":"rokov"):o+"rokmi"}}t.defineLocale("sk",{months:e,monthsShort:n,weekdays:"nede\u013ea_pondelok_utorok_streda_\u0161tvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_\u0161t_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_\u0161t_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nede\u013eu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo \u0161tvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[v\u010dera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minul\xfa nede\u013eu o] LT";case 1:case 2:return"[minul\xfd] dddd [o] LT";case 3:return"[minul\xfa stredu o] LT";case 4:case 5:return"[minul\xfd] dddd [o] LT";case 6:return"[minul\xfa sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},evrj:function(t,e,n){var i=n("m4GZ");t.exports=function(t){var e=t.replace(/-/g,"+").replace(/_/g,"/");switch(e.length%4){case 0:break;case 2:e+="==";break;case 3:e+="=";break;default:throw"Illegal base64url string!"}try{return decodeURIComponent(i(e).replace(/(.)/g,function(t,e){var n=e.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n="0"+n),"%"+n}))}catch(n){return i(e)}}},fzPg:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("yo",{months:"S\u1eb9\u0301r\u1eb9\u0301_E\u0300re\u0300le\u0300_\u1eb8r\u1eb9\u0300na\u0300_I\u0300gbe\u0301_E\u0300bibi_O\u0300ku\u0300du_Ag\u1eb9mo_O\u0300gu\u0301n_Owewe_\u1ecc\u0300wa\u0300ra\u0300_Be\u0301lu\u0301_\u1ecc\u0300p\u1eb9\u0300\u0300".split("_"),monthsShort:"S\u1eb9\u0301r_E\u0300rl_\u1eb8rn_I\u0300gb_E\u0300bi_O\u0300ku\u0300_Ag\u1eb9_O\u0300gu\u0301_Owe_\u1ecc\u0300wa\u0300_Be\u0301l_\u1ecc\u0300p\u1eb9\u0300\u0300".split("_"),weekdays:"A\u0300i\u0300ku\u0301_Aje\u0301_I\u0300s\u1eb9\u0301gun_\u1eccj\u1ecd\u0301ru\u0301_\u1eccj\u1ecd\u0301b\u1ecd_\u1eb8ti\u0300_A\u0300ba\u0301m\u1eb9\u0301ta".split("_"),weekdaysShort:"A\u0300i\u0300k_Aje\u0301_I\u0300s\u1eb9\u0301_\u1eccjr_\u1eccjb_\u1eb8ti\u0300_A\u0300ba\u0301".split("_"),weekdaysMin:"A\u0300i\u0300_Aj_I\u0300s_\u1eccr_\u1eccb_\u1eb8t_A\u0300b".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[O\u0300ni\u0300 ni] LT",nextDay:"[\u1ecc\u0300la ni] LT",nextWeek:"dddd [\u1eccs\u1eb9\u0300 to\u0301n'b\u1ecd] [ni] LT",lastDay:"[A\u0300na ni] LT",lastWeek:"dddd [\u1eccs\u1eb9\u0300 to\u0301l\u1ecd\u0301] [ni] LT",sameElse:"L"},relativeTime:{future:"ni\u0301 %s",past:"%s k\u1ecdja\u0301",s:"i\u0300s\u1eb9ju\u0301 aaya\u0301 die",ss:"aaya\u0301 %d",m:"i\u0300s\u1eb9ju\u0301 kan",mm:"i\u0300s\u1eb9ju\u0301 %d",h:"wa\u0301kati kan",hh:"wa\u0301kati %d",d:"\u1ecdj\u1ecd\u0301 kan",dd:"\u1ecdj\u1ecd\u0301 %d",M:"osu\u0300 kan",MM:"osu\u0300 %d",y:"\u1ecddu\u0301n kan",yy:"\u1ecddu\u0301n %d"},dayOfMonthOrdinalParse:/\u1ecdj\u1ecd\u0301\s\d{1,2}/,ordinal:"\u1ecdj\u1ecd\u0301 %d",week:{dow:1,doy:4}})}()},gVVK:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r=t+" ";switch(n){case"s":return e||i?"nekaj sekund":"nekaj sekundami";case"ss":return r+(1===t?e?"sekundo":"sekundi":2===t?e||i?"sekundi":"sekundah":t<5?e||i?"sekunde":"sekundah":"sekund");case"m":return e?"ena minuta":"eno minuto";case"mm":return r+(1===t?e?"minuta":"minuto":2===t?e||i?"minuti":"minutama":t<5?e||i?"minute":"minutami":e||i?"minut":"minutami");case"h":return e?"ena ura":"eno uro";case"hh":return r+(1===t?e?"ura":"uro":2===t?e||i?"uri":"urama":t<5?e||i?"ure":"urami":e||i?"ur":"urami");case"d":return e||i?"en dan":"enim dnem";case"dd":return r+(1===t?e||i?"dan":"dnem":2===t?e||i?"dni":"dnevoma":e||i?"dni":"dnevi");case"M":return e||i?"en mesec":"enim mesecem";case"MM":return r+(1===t?e||i?"mesec":"mesecem":2===t?e||i?"meseca":"mesecema":t<5?e||i?"mesece":"meseci":e||i?"mesecev":"meseci");case"y":return e||i?"eno leto":"enim letom";case"yy":return r+(1===t?e||i?"leto":"letom":2===t?e||i?"leti":"letoma":t<5?e||i?"leta":"leti":e||i?"let":"leti")}}n("wd/R").defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_\u010detrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._\u010det._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_\u010de_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[v\u010deraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prej\u0161njo] [nedeljo] [ob] LT";case 3:return"[prej\u0161njo] [sredo] [ob] LT";case 6:return"[prej\u0161njo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prej\u0161nji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"\u010dez %s",past:"pred %s",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}()},gekB:function(t,e,n){!function(t){"use strict";var e="nolla yksi kaksi kolme nelj\xe4 viisi kuusi seitsem\xe4n kahdeksan yhdeks\xe4n".split(" "),n=["nolla","yhden","kahden","kolmen","nelj\xe4n","viiden","kuuden",e[7],e[8],e[9]];function i(t,i,r,o){var a="";switch(r){case"s":return o?"muutaman sekunnin":"muutama sekunti";case"ss":return o?"sekunnin":"sekuntia";case"m":return o?"minuutin":"minuutti";case"mm":a=o?"minuutin":"minuuttia";break;case"h":return o?"tunnin":"tunti";case"hh":a=o?"tunnin":"tuntia";break;case"d":return o?"p\xe4iv\xe4n":"p\xe4iv\xe4";case"dd":a=o?"p\xe4iv\xe4n":"p\xe4iv\xe4\xe4";break;case"M":return o?"kuukauden":"kuukausi";case"MM":a=o?"kuukauden":"kuukautta";break;case"y":return o?"vuoden":"vuosi";case"yy":a=o?"vuoden":"vuotta"}return function(t,i){return t<10?i?n[t]:e[t]:t}(t,o)+" "+a}t.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\xe4kuu_hein\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kes\xe4_hein\xe4_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[t\xe4n\xe4\xe4n] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s p\xe4\xe4st\xe4",past:"%s sitten",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},gjCT:function(t,e,n){!function(t){"use strict";var e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"};t.defineLocale("ar-sa",{months:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a\u0648_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648_\u0623\u063a\u0633\u0637\u0633_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),monthsShort:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a\u0648_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648_\u0623\u063a\u0633\u0637\u0633_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(t){return"\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},preparse:function(t){return t.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:0,doy:6}})}(n("wd/R"))},hKrs:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("bg",{months:"\u044f\u043d\u0443\u0430\u0440\u0438_\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0438\u043b_\u043c\u0430\u0439_\u044e\u043d\u0438_\u044e\u043b\u0438_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438_\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438_\u043d\u043e\u0435\u043c\u0432\u0440\u0438_\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438".split("_"),monthsShort:"\u044f\u043d\u0440_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0439_\u044e\u043d\u0438_\u044e\u043b\u0438_\u0430\u0432\u0433_\u0441\u0435\u043f_\u043e\u043a\u0442_\u043d\u043e\u0435_\u0434\u0435\u043a".split("_"),weekdays:"\u043d\u0435\u0434\u0435\u043b\u044f_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u044f\u0434\u0430_\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a_\u043f\u0435\u0442\u044a\u043a_\u0441\u044a\u0431\u043e\u0442\u0430".split("_"),weekdaysShort:"\u043d\u0435\u0434_\u043f\u043e\u043d_\u0432\u0442\u043e_\u0441\u0440\u044f_\u0447\u0435\u0442_\u043f\u0435\u0442_\u0441\u044a\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[\u0414\u043d\u0435\u0441 \u0432] LT",nextDay:"[\u0423\u0442\u0440\u0435 \u0432] LT",nextWeek:"dddd [\u0432] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430 \u0432] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[\u0412 \u0438\u0437\u043c\u0438\u043d\u0430\u043b\u0430\u0442\u0430] dddd [\u0432] LT";case 1:case 2:case 4:case 5:return"[\u0412 \u0438\u0437\u043c\u0438\u043d\u0430\u043b\u0438\u044f] dddd [\u0432] LT"}},sameElse:"L"},relativeTime:{future:"\u0441\u043b\u0435\u0434 %s",past:"\u043f\u0440\u0435\u0434\u0438 %s",s:"\u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434\u0438",m:"\u043c\u0438\u043d\u0443\u0442\u0430",mm:"%d \u043c\u0438\u043d\u0443\u0442\u0438",h:"\u0447\u0430\u0441",hh:"%d \u0447\u0430\u0441\u0430",d:"\u0434\u0435\u043d",dd:"%d \u0434\u043d\u0438",M:"\u043c\u0435\u0441\u0435\u0446",MM:"%d \u043c\u0435\u0441\u0435\u0446\u0430",y:"\u0433\u043e\u0434\u0438\u043d\u0430",yy:"%d \u0433\u043e\u0434\u0438\u043d\u0438"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0435\u0432|\u0435\u043d|\u0442\u0438|\u0432\u0438|\u0440\u0438|\u043c\u0438)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-\u0435\u0432":0===n?t+"-\u0435\u043d":n>10&&n<20?t+"-\u0442\u0438":1===e?t+"-\u0432\u0438":2===e?t+"-\u0440\u0438":7===e||8===e?t+"-\u043c\u0438":t+"-\u0442\u0438"},week:{dow:1,doy:7}})}()},honF:function(t,e,n){!function(t){"use strict";var e={1:"\u1041",2:"\u1042",3:"\u1043",4:"\u1044",5:"\u1045",6:"\u1046",7:"\u1047",8:"\u1048",9:"\u1049",0:"\u1040"},n={"\u1041":"1","\u1042":"2","\u1043":"3","\u1044":"4","\u1045":"5","\u1046":"6","\u1047":"7","\u1048":"8","\u1049":"9","\u1040":"0"};t.defineLocale("my",{months:"\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e_\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e_\u1019\u1010\u103a_\u1027\u1015\u103c\u102e_\u1019\u1031_\u1007\u103d\u1014\u103a_\u1007\u1030\u101c\u102d\u102f\u1004\u103a_\u101e\u103c\u1002\u102f\u1010\u103a_\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c_\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c_\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c_\u1012\u102e\u1007\u1004\u103a\u1018\u102c".split("_"),monthsShort:"\u1007\u1014\u103a_\u1016\u1031_\u1019\u1010\u103a_\u1015\u103c\u102e_\u1019\u1031_\u1007\u103d\u1014\u103a_\u101c\u102d\u102f\u1004\u103a_\u101e\u103c_\u1005\u1000\u103a_\u1021\u1031\u102c\u1000\u103a_\u1014\u102d\u102f_\u1012\u102e".split("_"),weekdays:"\u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031_\u1010\u1014\u1004\u103a\u1039\u101c\u102c_\u1021\u1004\u103a\u1039\u1002\u102b_\u1017\u102f\u1012\u1039\u1013\u101f\u1030\u1038_\u1000\u103c\u102c\u101e\u1015\u1010\u1031\u1038_\u101e\u1031\u102c\u1000\u103c\u102c_\u1005\u1014\u1031".split("_"),weekdaysShort:"\u1014\u103d\u1031_\u101c\u102c_\u1002\u102b_\u101f\u1030\u1038_\u1000\u103c\u102c_\u101e\u1031\u102c_\u1014\u1031".split("_"),weekdaysMin:"\u1014\u103d\u1031_\u101c\u102c_\u1002\u102b_\u101f\u1030\u1038_\u1000\u103c\u102c_\u101e\u1031\u102c_\u1014\u1031".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u101a\u1014\u1031.] LT [\u1019\u103e\u102c]",nextDay:"[\u1019\u1014\u1000\u103a\u1016\u103c\u1014\u103a] LT [\u1019\u103e\u102c]",nextWeek:"dddd LT [\u1019\u103e\u102c]",lastDay:"[\u1019\u1014\u1031.\u1000] LT [\u1019\u103e\u102c]",lastWeek:"[\u1015\u103c\u102e\u1038\u1001\u1032\u1037\u101e\u1031\u102c] dddd LT [\u1019\u103e\u102c]",sameElse:"L"},relativeTime:{future:"\u101c\u102c\u1019\u100a\u103a\u1037 %s \u1019\u103e\u102c",past:"\u101c\u103d\u1014\u103a\u1001\u1032\u1037\u101e\u1031\u102c %s \u1000",s:"\u1005\u1000\u1039\u1000\u1014\u103a.\u1021\u1014\u100a\u103a\u1038\u1004\u101a\u103a",ss:"%d \u1005\u1000\u1039\u1000\u1014\u1037\u103a",m:"\u1010\u1005\u103a\u1019\u102d\u1014\u1005\u103a",mm:"%d \u1019\u102d\u1014\u1005\u103a",h:"\u1010\u1005\u103a\u1014\u102c\u101b\u102e",hh:"%d \u1014\u102c\u101b\u102e",d:"\u1010\u1005\u103a\u101b\u1000\u103a",dd:"%d \u101b\u1000\u103a",M:"\u1010\u1005\u103a\u101c",MM:"%d \u101c",y:"\u1010\u1005\u103a\u1014\u103e\u1005\u103a",yy:"%d \u1014\u103e\u1005\u103a"},preparse:function(t){return t.replace(/[\u1041\u1042\u1043\u1044\u1045\u1046\u1047\u1048\u1049\u1040]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},week:{dow:1,doy:4}})}(n("wd/R"))},iEDd:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xu\xf1o_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xu\xf1._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_m\xe9rcores_xoves_venres_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._m\xe9r._xov._ven._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_m\xe9_xo_ve_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"\xe1s":"\xe1")+"] LT"},nextDay:function(){return"[ma\xf1\xe1 "+(1!==this.hours()?"\xe1s":"\xe1")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"\xe1s":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"\xe1":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"\xe1s":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(t){return 0===t.indexOf("un")?"n"+t:"en "+t},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},iYuL:function(t,e,n){!function(t){"use strict";var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;t.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_mi\xe9rcoles_jueves_viernes_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._mi\xe9._jue._vie._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[ma\xf1ana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un a\xf1o",yy:"%d a\xf1os"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}(n("wd/R"))},jUeY:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("el",{monthsNominativeEl:"\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2_\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2_\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2_\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2_\u039c\u03ac\u03b9\u03bf\u03c2_\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2_\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2_\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2_\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2_\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2_\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2_\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2".split("_"),monthsGenitiveEl:"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5_\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5_\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5_\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5_\u039c\u03b1\u0390\u03bf\u03c5_\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5_\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5_\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5_\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5_\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5_\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5_\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5".split("_"),months:function(t,e){return t?"string"==typeof e&&/D/.test(e.substring(0,e.indexOf("MMMM")))?this._monthsGenitiveEl[t.month()]:this._monthsNominativeEl[t.month()]:this._monthsNominativeEl},monthsShort:"\u0399\u03b1\u03bd_\u03a6\u03b5\u03b2_\u039c\u03b1\u03c1_\u0391\u03c0\u03c1_\u039c\u03b1\u03ca_\u0399\u03bf\u03c5\u03bd_\u0399\u03bf\u03c5\u03bb_\u0391\u03c5\u03b3_\u03a3\u03b5\u03c0_\u039f\u03ba\u03c4_\u039d\u03bf\u03b5_\u0394\u03b5\u03ba".split("_"),weekdays:"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae_\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1_\u03a4\u03c1\u03af\u03c4\u03b7_\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7_\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7_\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae_\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf".split("_"),weekdaysShort:"\u039a\u03c5\u03c1_\u0394\u03b5\u03c5_\u03a4\u03c1\u03b9_\u03a4\u03b5\u03c4_\u03a0\u03b5\u03bc_\u03a0\u03b1\u03c1_\u03a3\u03b1\u03b2".split("_"),weekdaysMin:"\u039a\u03c5_\u0394\u03b5_\u03a4\u03c1_\u03a4\u03b5_\u03a0\u03b5_\u03a0\u03b1_\u03a3\u03b1".split("_"),meridiem:function(t,e,n){return t>11?n?"\u03bc\u03bc":"\u039c\u039c":n?"\u03c0\u03bc":"\u03a0\u039c"},isPM:function(t){return"\u03bc"===(t+"").toLowerCase()[0]},meridiemParse:/[\u03a0\u039c]\.?\u039c?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[\u03a3\u03ae\u03bc\u03b5\u03c1\u03b1 {}] LT",nextDay:"[\u0391\u03cd\u03c1\u03b9\u03bf {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[\u03a7\u03b8\u03b5\u03c2 {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[\u03c4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf] dddd [{}] LT";default:return"[\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7] dddd [{}] LT"}},sameElse:"L"},calendar:function(t,e){var n,i=this._calendarEl[t],r=e&&e.hours();return((n=i)instanceof Function||"[object Function]"===Object.prototype.toString.call(n))&&(i=i.apply(e)),i.replace("{}",r%12==1?"\u03c3\u03c4\u03b7":"\u03c3\u03c4\u03b9\u03c2")},relativeTime:{future:"\u03c3\u03b5 %s",past:"%s \u03c0\u03c1\u03b9\u03bd",s:"\u03bb\u03af\u03b3\u03b1 \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1",ss:"%d \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1",m:"\u03ad\u03bd\u03b1 \u03bb\u03b5\u03c0\u03c4\u03cc",mm:"%d \u03bb\u03b5\u03c0\u03c4\u03ac",h:"\u03bc\u03af\u03b1 \u03ce\u03c1\u03b1",hh:"%d \u03ce\u03c1\u03b5\u03c2",d:"\u03bc\u03af\u03b1 \u03bc\u03ad\u03c1\u03b1",dd:"%d \u03bc\u03ad\u03c1\u03b5\u03c2",M:"\u03ad\u03bd\u03b1\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2",MM:"%d \u03bc\u03ae\u03bd\u03b5\u03c2",y:"\u03ad\u03bd\u03b1\u03c2 \u03c7\u03c1\u03cc\u03bd\u03bf\u03c2",yy:"%d \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1"},dayOfMonthOrdinalParse:/\d{1,2}\u03b7/,ordinal:"%d\u03b7",week:{dow:1,doy:4}})}()},jVdC:function(t,e,n){!function(t){"use strict";var e="stycze\u0144_luty_marzec_kwiecie\u0144_maj_czerwiec_lipiec_sierpie\u0144_wrzesie\u0144_pa\u017adziernik_listopad_grudzie\u0144".split("_"),n="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\u015bnia_pa\u017adziernika_listopada_grudnia".split("_");function i(t){return t%10<5&&t%10>1&&~~(t/10)%10!=1}function r(t,e,n){var r=t+" ";switch(n){case"ss":return r+(i(t)?"sekundy":"sekund");case"m":return e?"minuta":"minut\u0119";case"mm":return r+(i(t)?"minuty":"minut");case"h":return e?"godzina":"godzin\u0119";case"hh":return r+(i(t)?"godziny":"godzin");case"MM":return r+(i(t)?"miesi\u0105ce":"miesi\u0119cy");case"yy":return r+(i(t)?"lata":"lat")}}t.defineLocale("pl",{months:function(t,i){return t?""===i?"("+n[t.month()]+"|"+e[t.month()]+")":/D MMMM/.test(i)?n[t.month()]:e[t.month()]:e},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\u017a_lis_gru".split("_"),weekdays:"niedziela_poniedzia\u0142ek_wtorek_\u015broda_czwartek_pi\u0105tek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_\u015br_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_\u015ar_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dzi\u015b o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedziel\u0119 o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W \u015brod\u0119 o] LT";case 6:return"[W sobot\u0119 o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zesz\u0142\u0105 niedziel\u0119 o] LT";case 3:return"[W zesz\u0142\u0105 \u015brod\u0119 o] LT";case 6:return"[W zesz\u0142\u0105 sobot\u0119 o] LT";default:return"[W zesz\u0142y] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:r,m:r,mm:r,h:r,hh:r,d:"1 dzie\u0144",dd:"%d dni",M:"miesi\u0105c",MM:r,y:"rok",yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},jfSC:function(t,e,n){!function(t){"use strict";var e={1:"\u06f1",2:"\u06f2",3:"\u06f3",4:"\u06f4",5:"\u06f5",6:"\u06f6",7:"\u06f7",8:"\u06f8",9:"\u06f9",0:"\u06f0"},n={"\u06f1":"1","\u06f2":"2","\u06f3":"3","\u06f4":"4","\u06f5":"5","\u06f6":"6","\u06f7":"7","\u06f8":"8","\u06f9":"9","\u06f0":"0"};t.defineLocale("fa",{months:"\u0698\u0627\u0646\u0648\u06cc\u0647_\u0641\u0648\u0631\u06cc\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06cc\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06cc\u0647_\u0627\u0648\u062a_\u0633\u067e\u062a\u0627\u0645\u0628\u0631_\u0627\u06a9\u062a\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062f\u0633\u0627\u0645\u0628\u0631".split("_"),monthsShort:"\u0698\u0627\u0646\u0648\u06cc\u0647_\u0641\u0648\u0631\u06cc\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06cc\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06cc\u0647_\u0627\u0648\u062a_\u0633\u067e\u062a\u0627\u0645\u0628\u0631_\u0627\u06a9\u062a\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062f\u0633\u0627\u0645\u0628\u0631".split("_"),weekdays:"\u06cc\u06a9\u200c\u0634\u0646\u0628\u0647_\u062f\u0648\u0634\u0646\u0628\u0647_\u0633\u0647\u200c\u0634\u0646\u0628\u0647_\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647_\u067e\u0646\u062c\u200c\u0634\u0646\u0628\u0647_\u062c\u0645\u0639\u0647_\u0634\u0646\u0628\u0647".split("_"),weekdaysShort:"\u06cc\u06a9\u200c\u0634\u0646\u0628\u0647_\u062f\u0648\u0634\u0646\u0628\u0647_\u0633\u0647\u200c\u0634\u0646\u0628\u0647_\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647_\u067e\u0646\u062c\u200c\u0634\u0646\u0628\u0647_\u062c\u0645\u0639\u0647_\u0634\u0646\u0628\u0647".split("_"),weekdaysMin:"\u06cc_\u062f_\u0633_\u0686_\u067e_\u062c_\u0634".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/\u0642\u0628\u0644 \u0627\u0632 \u0638\u0647\u0631|\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631/,isPM:function(t){return/\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631/.test(t)},meridiem:function(t,e,n){return t<12?"\u0642\u0628\u0644 \u0627\u0632 \u0638\u0647\u0631":"\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631"},calendar:{sameDay:"[\u0627\u0645\u0631\u0648\u0632 \u0633\u0627\u0639\u062a] LT",nextDay:"[\u0641\u0631\u062f\u0627 \u0633\u0627\u0639\u062a] LT",nextWeek:"dddd [\u0633\u0627\u0639\u062a] LT",lastDay:"[\u062f\u06cc\u0631\u0648\u0632 \u0633\u0627\u0639\u062a] LT",lastWeek:"dddd [\u067e\u06cc\u0634] [\u0633\u0627\u0639\u062a] LT",sameElse:"L"},relativeTime:{future:"\u062f\u0631 %s",past:"%s \u067e\u06cc\u0634",s:"\u0686\u0646\u062f \u062b\u0627\u0646\u06cc\u0647",ss:"\u062b\u0627\u0646\u06cc\u0647 d%",m:"\u06cc\u06a9 \u062f\u0642\u06cc\u0642\u0647",mm:"%d \u062f\u0642\u06cc\u0642\u0647",h:"\u06cc\u06a9 \u0633\u0627\u0639\u062a",hh:"%d \u0633\u0627\u0639\u062a",d:"\u06cc\u06a9 \u0631\u0648\u0632",dd:"%d \u0631\u0648\u0632",M:"\u06cc\u06a9 \u0645\u0627\u0647",MM:"%d \u0645\u0627\u0647",y:"\u06cc\u06a9 \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"},preparse:function(t){return t.replace(/[\u06f0-\u06f9]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},dayOfMonthOrdinalParse:/\d{1,2}\u0645/,ordinal:"%d\u0645",week:{dow:6,doy:12}})}(n("wd/R"))},jnO4:function(t,e,n){!function(t){"use strict";var e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},i=function(t){return 0===t?0:1===t?1:2===t?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5},r={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"],h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645","\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627","%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645","\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},o=function(t){return function(e,n,o,a){var l=i(e),s=r[t][i(e)];return 2===l&&(s=s[n?0:1]),s.replace(/%d/i,e)}},a=["\u064a\u0646\u0627\u064a\u0631","\u0641\u0628\u0631\u0627\u064a\u0631","\u0645\u0627\u0631\u0633","\u0623\u0628\u0631\u064a\u0644","\u0645\u0627\u064a\u0648","\u064a\u0648\u0646\u064a\u0648","\u064a\u0648\u0644\u064a\u0648","\u0623\u063a\u0633\u0637\u0633","\u0633\u0628\u062a\u0645\u0628\u0631","\u0623\u0643\u062a\u0648\u0628\u0631","\u0646\u0648\u0641\u0645\u0628\u0631","\u062f\u064a\u0633\u0645\u0628\u0631"];t.defineLocale("ar",{months:a,monthsShort:a,weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(t){return"\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u064b\u0627 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:o("s"),ss:o("s"),m:o("m"),mm:o("m"),h:o("h"),hh:o("h"),d:o("d"),dd:o("d"),M:o("M"),MM:o("M"),y:o("y"),yy:o("y")},preparse:function(t){return t.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(n("wd/R"))},kEOa:function(t,e,n){!function(t){"use strict";var e={1:"\u09e7",2:"\u09e8",3:"\u09e9",4:"\u09ea",5:"\u09eb",6:"\u09ec",7:"\u09ed",8:"\u09ee",9:"\u09ef",0:"\u09e6"},n={"\u09e7":"1","\u09e8":"2","\u09e9":"3","\u09ea":"4","\u09eb":"5","\u09ec":"6","\u09ed":"7","\u09ee":"8","\u09ef":"9","\u09e6":"0"};t.defineLocale("bn",{months:"\u099c\u09be\u09a8\u09c1\u09df\u09be\u09b0\u09c0_\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09df\u09be\u09b0\u09bf_\u09ae\u09be\u09b0\u09cd\u099a_\u098f\u09aa\u09cd\u09b0\u09bf\u09b2_\u09ae\u09c7_\u099c\u09c1\u09a8_\u099c\u09c1\u09b2\u09be\u0987_\u0986\u0997\u09b8\u09cd\u099f_\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0_\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0_\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0_\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0".split("_"),monthsShort:"\u099c\u09be\u09a8\u09c1_\u09ab\u09c7\u09ac_\u09ae\u09be\u09b0\u09cd\u099a_\u098f\u09aa\u09cd\u09b0_\u09ae\u09c7_\u099c\u09c1\u09a8_\u099c\u09c1\u09b2_\u0986\u0997_\u09b8\u09c7\u09aa\u09cd\u099f_\u0985\u0995\u09cd\u099f\u09cb_\u09a8\u09ad\u09c7_\u09a1\u09bf\u09b8\u09c7".split("_"),weekdays:"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0_\u09b8\u09cb\u09ae\u09ac\u09be\u09b0_\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0_\u09ac\u09c1\u09a7\u09ac\u09be\u09b0_\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0_\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0_\u09b6\u09a8\u09bf\u09ac\u09be\u09b0".split("_"),weekdaysShort:"\u09b0\u09ac\u09bf_\u09b8\u09cb\u09ae_\u09ae\u0999\u09cd\u0997\u09b2_\u09ac\u09c1\u09a7_\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf_\u09b6\u09c1\u0995\u09cd\u09b0_\u09b6\u09a8\u09bf".split("_"),weekdaysMin:"\u09b0\u09ac\u09bf_\u09b8\u09cb\u09ae_\u09ae\u0999\u09cd\u0997_\u09ac\u09c1\u09a7_\u09ac\u09c3\u09b9\u0983_\u09b6\u09c1\u0995\u09cd\u09b0_\u09b6\u09a8\u09bf".split("_"),longDateFormat:{LT:"A h:mm \u09b8\u09ae\u09df",LTS:"A h:mm:ss \u09b8\u09ae\u09df",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u09b8\u09ae\u09df",LLLL:"dddd, D MMMM YYYY, A h:mm \u09b8\u09ae\u09df"},calendar:{sameDay:"[\u0986\u099c] LT",nextDay:"[\u0986\u0997\u09be\u09ae\u09c0\u0995\u09be\u09b2] LT",nextWeek:"dddd, LT",lastDay:"[\u0997\u09a4\u0995\u09be\u09b2] LT",lastWeek:"[\u0997\u09a4] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u09aa\u09b0\u09c7",past:"%s \u0986\u0997\u09c7",s:"\u0995\u09df\u09c7\u0995 \u09b8\u09c7\u0995\u09c7\u09a8\u09cd\u09a1",ss:"%d \u09b8\u09c7\u0995\u09c7\u09a8\u09cd\u09a1",m:"\u098f\u0995 \u09ae\u09bf\u09a8\u09bf\u099f",mm:"%d \u09ae\u09bf\u09a8\u09bf\u099f",h:"\u098f\u0995 \u0998\u09a8\u09cd\u099f\u09be",hh:"%d \u0998\u09a8\u09cd\u099f\u09be",d:"\u098f\u0995 \u09a6\u09bf\u09a8",dd:"%d \u09a6\u09bf\u09a8",M:"\u098f\u0995 \u09ae\u09be\u09b8",MM:"%d \u09ae\u09be\u09b8",y:"\u098f\u0995 \u09ac\u099b\u09b0",yy:"%d \u09ac\u099b\u09b0"},preparse:function(t){return t.replace(/[\u09e7\u09e8\u09e9\u09ea\u09eb\u09ec\u09ed\u09ee\u09ef\u09e6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u09b0\u09be\u09a4|\u09b8\u0995\u09be\u09b2|\u09a6\u09c1\u09aa\u09c1\u09b0|\u09ac\u09bf\u0995\u09be\u09b2|\u09b0\u09be\u09a4/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u09b0\u09be\u09a4"===e&&t>=4||"\u09a6\u09c1\u09aa\u09c1\u09b0"===e&&t<5||"\u09ac\u09bf\u0995\u09be\u09b2"===e?t+12:t},meridiem:function(t,e,n){return t<4?"\u09b0\u09be\u09a4":t<10?"\u09b8\u0995\u09be\u09b2":t<17?"\u09a6\u09c1\u09aa\u09c1\u09b0":t<20?"\u09ac\u09bf\u0995\u09be\u09b2":"\u09b0\u09be\u09a4"},week:{dow:0,doy:6}})}(n("wd/R"))},kOpN:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("zh-tw",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661f\u671f\u65e5_\u661f\u671f\u4e00_\u661f\u671f\u4e8c_\u661f\u671f\u4e09_\u661f\u671f\u56db_\u661f\u671f\u4e94_\u661f\u671f\u516d".split("_"),weekdaysShort:"\u9031\u65e5_\u9031\u4e00_\u9031\u4e8c_\u9031\u4e09_\u9031\u56db_\u9031\u4e94_\u9031\u516d".split("_"),weekdaysMin:"\u65e5_\u4e00_\u4e8c_\u4e09_\u56db_\u4e94_\u516d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm",l:"YYYY/M/D",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm"},meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u51cc\u6668"===e||"\u65e9\u4e0a"===e||"\u4e0a\u5348"===e?t:"\u4e2d\u5348"===e?t>=11?t:t+12:"\u4e0b\u5348"===e||"\u665a\u4e0a"===e?t+12:void 0},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929] LT",nextDay:"[\u660e\u5929] LT",nextWeek:"[\u4e0b]dddd LT",lastDay:"[\u6628\u5929] LT",lastWeek:"[\u4e0a]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u9031)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\u65e5";case"M":return t+"\u6708";case"w":case"W":return t+"\u9031";default:return t}},relativeTime:{future:"%s\u5167",past:"%s\u524d",s:"\u5e7e\u79d2",ss:"%d \u79d2",m:"1 \u5206\u9418",mm:"%d \u5206\u9418",h:"1 \u5c0f\u6642",hh:"%d \u5c0f\u6642",d:"1 \u5929",dd:"%d \u5929",M:"1 \u500b\u6708",MM:"%d \u500b\u6708",y:"1 \u5e74",yy:"%d \u5e74"}})}()},l5ep:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("cy",{months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Heddiw am] LT",nextDay:"[Yfory am] LT",nextWeek:"dddd [am] LT",lastDay:"[Ddoe am] LT",lastWeek:"dddd [diwethaf am] LT",sameElse:"L"},relativeTime:{future:"mewn %s",past:"%s yn \xf4l",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"},dayOfMonthOrdinalParse:/\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(t){var e="";return t>20?e=40===t||50===t||60===t||80===t||100===t?"fed":"ain":t>0&&(e=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"][t]),t+e},week:{dow:1,doy:4}})}()},lXzo:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i,r;return"m"===n?e?"\u043c\u0438\u043d\u0443\u0442\u0430":"\u043c\u0438\u043d\u0443\u0442\u0443":t+" "+(i=+t,r={ss:e?"\u0441\u0435\u043a\u0443\u043d\u0434\u0430_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434":"\u0441\u0435\u043a\u0443\u043d\u0434\u0443_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434",mm:e?"\u043c\u0438\u043d\u0443\u0442\u0430_\u043c\u0438\u043d\u0443\u0442\u044b_\u043c\u0438\u043d\u0443\u0442":"\u043c\u0438\u043d\u0443\u0442\u0443_\u043c\u0438\u043d\u0443\u0442\u044b_\u043c\u0438\u043d\u0443\u0442",hh:"\u0447\u0430\u0441_\u0447\u0430\u0441\u0430_\u0447\u0430\u0441\u043e\u0432",dd:"\u0434\u0435\u043d\u044c_\u0434\u043d\u044f_\u0434\u043d\u0435\u0439",MM:"\u043c\u0435\u0441\u044f\u0446_\u043c\u0435\u0441\u044f\u0446\u0430_\u043c\u0435\u0441\u044f\u0446\u0435\u0432",yy:"\u0433\u043e\u0434_\u0433\u043e\u0434\u0430_\u043b\u0435\u0442"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}var i=[/^\u044f\u043d\u0432/i,/^\u0444\u0435\u0432/i,/^\u043c\u0430\u0440/i,/^\u0430\u043f\u0440/i,/^\u043c\u0430[\u0439\u044f]/i,/^\u0438\u044e\u043d/i,/^\u0438\u044e\u043b/i,/^\u0430\u0432\u0433/i,/^\u0441\u0435\u043d/i,/^\u043e\u043a\u0442/i,/^\u043d\u043e\u044f/i,/^\u0434\u0435\u043a/i];n("wd/R").defineLocale("ru",{months:{format:"\u044f\u043d\u0432\u0430\u0440\u044f_\u0444\u0435\u0432\u0440\u0430\u043b\u044f_\u043c\u0430\u0440\u0442\u0430_\u0430\u043f\u0440\u0435\u043b\u044f_\u043c\u0430\u044f_\u0438\u044e\u043d\u044f_\u0438\u044e\u043b\u044f_\u0430\u0432\u0433\u0443\u0441\u0442\u0430_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f_\u043e\u043a\u0442\u044f\u0431\u0440\u044f_\u043d\u043e\u044f\u0431\u0440\u044f_\u0434\u0435\u043a\u0430\u0431\u0440\u044f".split("_"),standalone:"\u044f\u043d\u0432\u0430\u0440\u044c_\u0444\u0435\u0432\u0440\u0430\u043b\u044c_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b\u044c_\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c_\u043e\u043a\u0442\u044f\u0431\u0440\u044c_\u043d\u043e\u044f\u0431\u0440\u044c_\u0434\u0435\u043a\u0430\u0431\u0440\u044c".split("_")},monthsShort:{format:"\u044f\u043d\u0432._\u0444\u0435\u0432\u0440._\u043c\u0430\u0440._\u0430\u043f\u0440._\u043c\u0430\u044f_\u0438\u044e\u043d\u044f_\u0438\u044e\u043b\u044f_\u0430\u0432\u0433._\u0441\u0435\u043d\u0442._\u043e\u043a\u0442._\u043d\u043e\u044f\u0431._\u0434\u0435\u043a.".split("_"),standalone:"\u044f\u043d\u0432._\u0444\u0435\u0432\u0440._\u043c\u0430\u0440\u0442_\u0430\u043f\u0440._\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433._\u0441\u0435\u043d\u0442._\u043e\u043a\u0442._\u043d\u043e\u044f\u0431._\u0434\u0435\u043a.".split("_")},weekdays:{standalone:"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440\u0433_\u043f\u044f\u0442\u043d\u0438\u0446\u0430_\u0441\u0443\u0431\u0431\u043e\u0442\u0430".split("_"),format:"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u0435\u0434\u0443_\u0447\u0435\u0442\u0432\u0435\u0440\u0433_\u043f\u044f\u0442\u043d\u0438\u0446\u0443_\u0441\u0443\u0431\u0431\u043e\u0442\u0443".split("_"),isFormat:/\[ ?[\u0412\u0432] ?(?:\u043f\u0440\u043e\u0448\u043b\u0443\u044e|\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e|\u044d\u0442\u0443)? ?\] ?dddd/},weekdaysShort:"\u0432\u0441_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u0432\u0441_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),monthsParse:i,longMonthsParse:i,shortMonthsParse:i,monthsRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044c\u044f]|\u044f\u043d\u0432\.?|\u0444\u0435\u0432\u0440\u0430\u043b[\u044c\u044f]|\u0444\u0435\u0432\u0440?\.?|\u043c\u0430\u0440\u0442\u0430?|\u043c\u0430\u0440\.?|\u0430\u043f\u0440\u0435\u043b[\u044c\u044f]|\u0430\u043f\u0440\.?|\u043c\u0430[\u0439\u044f]|\u0438\u044e\u043d[\u044c\u044f]|\u0438\u044e\u043d\.?|\u0438\u044e\u043b[\u044c\u044f]|\u0438\u044e\u043b\.?|\u0430\u0432\u0433\u0443\u0441\u0442\u0430?|\u0430\u0432\u0433\.?|\u0441\u0435\u043d\u0442\u044f\u0431\u0440[\u044c\u044f]|\u0441\u0435\u043d\u0442?\.?|\u043e\u043a\u0442\u044f\u0431\u0440[\u044c\u044f]|\u043e\u043a\u0442\.?|\u043d\u043e\u044f\u0431\u0440[\u044c\u044f]|\u043d\u043e\u044f\u0431?\.?|\u0434\u0435\u043a\u0430\u0431\u0440[\u044c\u044f]|\u0434\u0435\u043a\.?)/i,monthsShortRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044c\u044f]|\u044f\u043d\u0432\.?|\u0444\u0435\u0432\u0440\u0430\u043b[\u044c\u044f]|\u0444\u0435\u0432\u0440?\.?|\u043c\u0430\u0440\u0442\u0430?|\u043c\u0430\u0440\.?|\u0430\u043f\u0440\u0435\u043b[\u044c\u044f]|\u0430\u043f\u0440\.?|\u043c\u0430[\u0439\u044f]|\u0438\u044e\u043d[\u044c\u044f]|\u0438\u044e\u043d\.?|\u0438\u044e\u043b[\u044c\u044f]|\u0438\u044e\u043b\.?|\u0430\u0432\u0433\u0443\u0441\u0442\u0430?|\u0430\u0432\u0433\.?|\u0441\u0435\u043d\u0442\u044f\u0431\u0440[\u044c\u044f]|\u0441\u0435\u043d\u0442?\.?|\u043e\u043a\u0442\u044f\u0431\u0440[\u044c\u044f]|\u043e\u043a\u0442\.?|\u043d\u043e\u044f\u0431\u0440[\u044c\u044f]|\u043d\u043e\u044f\u0431?\.?|\u0434\u0435\u043a\u0430\u0431\u0440[\u044c\u044f]|\u0434\u0435\u043a\.?)/i,monthsStrictRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044f\u044c]|\u0444\u0435\u0432\u0440\u0430\u043b[\u044f\u044c]|\u043c\u0430\u0440\u0442\u0430?|\u0430\u043f\u0440\u0435\u043b[\u044f\u044c]|\u043c\u0430[\u044f\u0439]|\u0438\u044e\u043d[\u044f\u044c]|\u0438\u044e\u043b[\u044f\u044c]|\u0430\u0432\u0433\u0443\u0441\u0442\u0430?|\u0441\u0435\u043d\u0442\u044f\u0431\u0440[\u044f\u044c]|\u043e\u043a\u0442\u044f\u0431\u0440[\u044f\u044c]|\u043d\u043e\u044f\u0431\u0440[\u044f\u044c]|\u0434\u0435\u043a\u0430\u0431\u0440[\u044f\u044c])/i,monthsShortStrictRegex:/^(\u044f\u043d\u0432\.|\u0444\u0435\u0432\u0440?\.|\u043c\u0430\u0440[\u0442.]|\u0430\u043f\u0440\.|\u043c\u0430[\u044f\u0439]|\u0438\u044e\u043d[\u044c\u044f.]|\u0438\u044e\u043b[\u044c\u044f.]|\u0430\u0432\u0433\.|\u0441\u0435\u043d\u0442?\.|\u043e\u043a\u0442\.|\u043d\u043e\u044f\u0431?\.|\u0434\u0435\u043a\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., H:mm",LLLL:"dddd, D MMMM YYYY \u0433., H:mm"},calendar:{sameDay:"[\u0421\u0435\u0433\u043e\u0434\u043d\u044f, \u0432] LT",nextDay:"[\u0417\u0430\u0432\u0442\u0440\u0430, \u0432] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430, \u0432] LT",nextWeek:function(t){if(t.week()===this.week())return 2===this.day()?"[\u0412\u043e] dddd, [\u0432] LT":"[\u0412] dddd, [\u0432] LT";switch(this.day()){case 0:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435] dddd, [\u0432] LT";case 1:case 2:case 4:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439] dddd, [\u0432] LT";case 3:case 5:case 6:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e] dddd, [\u0432] LT"}},lastWeek:function(t){if(t.week()===this.week())return 2===this.day()?"[\u0412\u043e] dddd, [\u0432] LT":"[\u0412] dddd, [\u0432] LT";switch(this.day()){case 0:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u043e\u0435] dddd, [\u0432] LT";case 1:case 2:case 4:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u044b\u0439] dddd, [\u0432] LT";case 3:case 5:case 6:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u0443\u044e] dddd, [\u0432] LT"}},sameElse:"L"},relativeTime:{future:"\u0447\u0435\u0440\u0435\u0437 %s",past:"%s \u043d\u0430\u0437\u0430\u0434",s:"\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434",ss:e,m:e,mm:e,h:"\u0447\u0430\u0441",hh:e,d:"\u0434\u0435\u043d\u044c",dd:e,M:"\u043c\u0435\u0441\u044f\u0446",MM:e,y:"\u0433\u043e\u0434",yy:e},meridiemParse:/\u043d\u043e\u0447\u0438|\u0443\u0442\u0440\u0430|\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430/i,isPM:function(t){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430)$/.test(t)},meridiem:function(t,e,n){return t<4?"\u043d\u043e\u0447\u0438":t<12?"\u0443\u0442\u0440\u0430":t<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0435\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e|\u044f)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":return t+"-\u0439";case"D":return t+"-\u0433\u043e";case"w":case"W":return t+"-\u044f";default:return t}},week:{dow:1,doy:4}})}()},lYtQ:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){switch(n){case"s":return e?"\u0445\u044d\u0434\u0445\u044d\u043d \u0441\u0435\u043a\u0443\u043d\u0434":"\u0445\u044d\u0434\u0445\u044d\u043d \u0441\u0435\u043a\u0443\u043d\u0434\u044b\u043d";case"ss":return t+(e?" \u0441\u0435\u043a\u0443\u043d\u0434":" \u0441\u0435\u043a\u0443\u043d\u0434\u044b\u043d");case"m":case"mm":return t+(e?" \u043c\u0438\u043d\u0443\u0442":" \u043c\u0438\u043d\u0443\u0442\u044b\u043d");case"h":case"hh":return t+(e?" \u0446\u0430\u0433":" \u0446\u0430\u0433\u0438\u0439\u043d");case"d":case"dd":return t+(e?" \u04e9\u0434\u04e9\u0440":" \u04e9\u0434\u0440\u0438\u0439\u043d");case"M":case"MM":return t+(e?" \u0441\u0430\u0440":" \u0441\u0430\u0440\u044b\u043d");case"y":case"yy":return t+(e?" \u0436\u0438\u043b":" \u0436\u0438\u043b\u0438\u0439\u043d");default:return t}}n("wd/R").defineLocale("mn",{months:"\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440".split("_"),monthsShort:"1 \u0441\u0430\u0440_2 \u0441\u0430\u0440_3 \u0441\u0430\u0440_4 \u0441\u0430\u0440_5 \u0441\u0430\u0440_6 \u0441\u0430\u0440_7 \u0441\u0430\u0440_8 \u0441\u0430\u0440_9 \u0441\u0430\u0440_10 \u0441\u0430\u0440_11 \u0441\u0430\u0440_12 \u0441\u0430\u0440".split("_"),monthsParseExact:!0,weekdays:"\u041d\u044f\u043c_\u0414\u0430\u0432\u0430\u0430_\u041c\u044f\u0433\u043c\u0430\u0440_\u041b\u0445\u0430\u0433\u0432\u0430_\u041f\u04af\u0440\u044d\u0432_\u0411\u0430\u0430\u0441\u0430\u043d_\u0411\u044f\u043c\u0431\u0430".split("_"),weekdaysShort:"\u041d\u044f\u043c_\u0414\u0430\u0432_\u041c\u044f\u0433_\u041b\u0445\u0430_\u041f\u04af\u0440_\u0411\u0430\u0430_\u0411\u044f\u043c".split("_"),weekdaysMin:"\u041d\u044f_\u0414\u0430_\u041c\u044f_\u041b\u0445_\u041f\u04af_\u0411\u0430_\u0411\u044f".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY \u043e\u043d\u044b MMMM\u044b\u043d D",LLL:"YYYY \u043e\u043d\u044b MMMM\u044b\u043d D HH:mm",LLLL:"dddd, YYYY \u043e\u043d\u044b MMMM\u044b\u043d D HH:mm"},meridiemParse:/\u04ae\u04e8|\u04ae\u0425/i,isPM:function(t){return"\u04ae\u0425"===t},meridiem:function(t,e,n){return t<12?"\u04ae\u04e8":"\u04ae\u0425"},calendar:{sameDay:"[\u04e8\u043d\u04e9\u04e9\u0434\u04e9\u0440] LT",nextDay:"[\u041c\u0430\u0440\u0433\u0430\u0430\u0448] LT",nextWeek:"[\u0418\u0440\u044d\u0445] dddd LT",lastDay:"[\u04e8\u0447\u0438\u0433\u0434\u04e9\u0440] LT",lastWeek:"[\u04e8\u043d\u0433\u04e9\u0440\u0441\u04e9\u043d] dddd LT",sameElse:"L"},relativeTime:{future:"%s \u0434\u0430\u0440\u0430\u0430",past:"%s \u04e9\u043c\u043d\u04e9",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2} \u04e9\u0434\u04e9\u0440/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+" \u04e9\u0434\u04e9\u0440";default:return t}}})}()},lgnt:function(t,e,n){!function(t){"use strict";var e={0:"-\u0447\u04af",1:"-\u0447\u0438",2:"-\u0447\u0438",3:"-\u0447\u04af",4:"-\u0447\u04af",5:"-\u0447\u0438",6:"-\u0447\u044b",7:"-\u0447\u0438",8:"-\u0447\u0438",9:"-\u0447\u0443",10:"-\u0447\u0443",20:"-\u0447\u044b",30:"-\u0447\u0443",40:"-\u0447\u044b",50:"-\u0447\u04af",60:"-\u0447\u044b",70:"-\u0447\u0438",80:"-\u0447\u0438",90:"-\u0447\u0443",100:"-\u0447\u04af"};t.defineLocale("ky",{months:"\u044f\u043d\u0432\u0430\u0440\u044c_\u0444\u0435\u0432\u0440\u0430\u043b\u044c_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b\u044c_\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c_\u043e\u043a\u0442\u044f\u0431\u0440\u044c_\u043d\u043e\u044f\u0431\u0440\u044c_\u0434\u0435\u043a\u0430\u0431\u0440\u044c".split("_"),monthsShort:"\u044f\u043d\u0432_\u0444\u0435\u0432_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440_\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433_\u0441\u0435\u043d_\u043e\u043a\u0442_\u043d\u043e\u044f_\u0434\u0435\u043a".split("_"),weekdays:"\u0416\u0435\u043a\u0448\u0435\u043c\u0431\u0438_\u0414\u04af\u0439\u0448\u04e9\u043c\u0431\u04af_\u0428\u0435\u0439\u0448\u0435\u043c\u0431\u0438_\u0428\u0430\u0440\u0448\u0435\u043c\u0431\u0438_\u0411\u0435\u0439\u0448\u0435\u043c\u0431\u0438_\u0416\u0443\u043c\u0430_\u0418\u0448\u0435\u043c\u0431\u0438".split("_"),weekdaysShort:"\u0416\u0435\u043a_\u0414\u04af\u0439_\u0428\u0435\u0439_\u0428\u0430\u0440_\u0411\u0435\u0439_\u0416\u0443\u043c_\u0418\u0448\u0435".split("_"),weekdaysMin:"\u0416\u043a_\u0414\u0439_\u0428\u0439_\u0428\u0440_\u0411\u0439_\u0416\u043c_\u0418\u0448".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0411\u04af\u0433\u04af\u043d \u0441\u0430\u0430\u0442] LT",nextDay:"[\u042d\u0440\u0442\u0435\u04a3 \u0441\u0430\u0430\u0442] LT",nextWeek:"dddd [\u0441\u0430\u0430\u0442] LT",lastDay:"[\u041a\u0435\u0447\u044d\u044d \u0441\u0430\u0430\u0442] LT",lastWeek:"[\u04e8\u0442\u043a\u04e9\u043d \u0430\u043f\u0442\u0430\u043d\u044b\u043d] dddd [\u043a\u04af\u043d\u04af] [\u0441\u0430\u0430\u0442] LT",sameElse:"L"},relativeTime:{future:"%s \u0438\u0447\u0438\u043d\u0434\u0435",past:"%s \u043c\u0443\u0440\u0443\u043d",s:"\u0431\u0438\u0440\u043d\u0435\u0447\u0435 \u0441\u0435\u043a\u0443\u043d\u0434",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434",m:"\u0431\u0438\u0440 \u043c\u04af\u043d\u04e9\u0442",mm:"%d \u043c\u04af\u043d\u04e9\u0442",h:"\u0431\u0438\u0440 \u0441\u0430\u0430\u0442",hh:"%d \u0441\u0430\u0430\u0442",d:"\u0431\u0438\u0440 \u043a\u04af\u043d",dd:"%d \u043a\u04af\u043d",M:"\u0431\u0438\u0440 \u0430\u0439",MM:"%d \u0430\u0439",y:"\u0431\u0438\u0440 \u0436\u044b\u043b",yy:"%d \u0436\u044b\u043b"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0447\u0438|\u0447\u044b|\u0447\u04af|\u0447\u0443)/,ordinal:function(t){return t+(e[t]||e[t%10]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},lyxo:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i=" ";return(t%100>=20||t>=100&&t%100==0)&&(i=" de "),t+i+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"}[n]}n("wd/R").defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminic\u0103_luni_mar\u021bi_miercuri_joi_vineri_s\xe2mb\u0103t\u0103".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_S\xe2m".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_S\xe2".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[m\xe2ine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s \xeen urm\u0103",s:"c\xe2teva secunde",ss:e,m:"un minut",mm:e,h:"o or\u0103",hh:e,d:"o zi",dd:e,M:"o lun\u0103",MM:e,y:"un an",yy:e},week:{dow:1,doy:7}})}()},m4GZ:function(t,e){function n(t){this.message=t}(n.prototype=new Error).name="InvalidCharacterError",t.exports="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new n("'atob' failed: The string to be decoded is not correctly encoded.");for(var i,r,o=0,a=0,l="";r=e.charAt(a++);~r&&(i=o%4?64*i+r:r,o++%4)?l+=String.fromCharCode(255&i>>(-2*o&6)):0)r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(r);return l}},nyYc:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("fr",{months:"janvier_f\xe9vrier_mars_avril_mai_juin_juillet_ao\xfbt_septembre_octobre_novembre_d\xe9cembre".split("_"),monthsShort:"janv._f\xe9vr._mars_avr._mai_juin_juil._ao\xfbt_sept._oct._nov._d\xe9c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd\u2019hui \xe0] LT",nextDay:"[Demain \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[Hier \xe0] LT",lastWeek:"dddd [dernier \xe0] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(t,e){switch(e){case"D":return t+(1===t?"er":"");default:case"M":case"Q":case"DDD":case"d":return t+(1===t?"er":"e");case"w":case"W":return t+(1===t?"re":"e")}},week:{dow:1,doy:4}})}()},o1bE:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ar-dz",{months:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),monthsShort:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0627\u062d\u062f_\u0627\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u0623\u062d_\u0625\u062b_\u062b\u0644\u0627_\u0623\u0631_\u062e\u0645_\u062c\u0645_\u0633\u0628".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:0,doy:4}})}()},"p/rL":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\u025bkalo_Zuw\u025bnkalo_Zuluyekalo_Utikalo_S\u025btanburukalo_\u0254kut\u0254burukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_M\u025b_Zuw_Zul_Uti_S\u025bt_\u0254ku_Now_Des".split("_"),weekdays:"Kari_Nt\u025bn\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_Nt\u025b_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [l\u025br\u025b] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [l\u025br\u025b] HH:mm"},calendar:{sameDay:"[Bi l\u025br\u025b] LT",nextDay:"[Sini l\u025br\u025b] LT",nextWeek:"dddd [don l\u025br\u025b] LT",lastDay:"[Kunu l\u025br\u025b] LT",lastWeek:"dddd [t\u025bm\u025bnen l\u025br\u025b] LT",sameElse:"L"},relativeTime:{future:"%s k\u0254n\u0254",past:"a b\u025b %s b\u0254",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"l\u025br\u025b kelen",hh:"l\u025br\u025b %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}})}()},raLr:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i,r;return"m"===n?e?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443":"h"===n?e?"\u0433\u043e\u0434\u0438\u043d\u0430":"\u0433\u043e\u0434\u0438\u043d\u0443":t+" "+(i=+t,r={ss:e?"\u0441\u0435\u043a\u0443\u043d\u0434\u0430_\u0441\u0435\u043a\u0443\u043d\u0434\u0438_\u0441\u0435\u043a\u0443\u043d\u0434":"\u0441\u0435\u043a\u0443\u043d\u0434\u0443_\u0441\u0435\u043a\u0443\u043d\u0434\u0438_\u0441\u0435\u043a\u0443\u043d\u0434",mm:e?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430_\u0445\u0432\u0438\u043b\u0438\u043d\u0438_\u0445\u0432\u0438\u043b\u0438\u043d":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443_\u0445\u0432\u0438\u043b\u0438\u043d\u0438_\u0445\u0432\u0438\u043b\u0438\u043d",hh:e?"\u0433\u043e\u0434\u0438\u043d\u0430_\u0433\u043e\u0434\u0438\u043d\u0438_\u0433\u043e\u0434\u0438\u043d":"\u0433\u043e\u0434\u0438\u043d\u0443_\u0433\u043e\u0434\u0438\u043d\u0438_\u0433\u043e\u0434\u0438\u043d",dd:"\u0434\u0435\u043d\u044c_\u0434\u043d\u0456_\u0434\u043d\u0456\u0432",MM:"\u043c\u0456\u0441\u044f\u0446\u044c_\u043c\u0456\u0441\u044f\u0446\u0456_\u043c\u0456\u0441\u044f\u0446\u0456\u0432",yy:"\u0440\u0456\u043a_\u0440\u043e\u043a\u0438_\u0440\u043e\u043a\u0456\u0432"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}function i(t){return function(){return t+"\u043e"+(11===this.hours()?"\u0431":"")+"] LT"}}n("wd/R").defineLocale("uk",{months:{format:"\u0441\u0456\u0447\u043d\u044f_\u043b\u044e\u0442\u043e\u0433\u043e_\u0431\u0435\u0440\u0435\u0437\u043d\u044f_\u043a\u0432\u0456\u0442\u043d\u044f_\u0442\u0440\u0430\u0432\u043d\u044f_\u0447\u0435\u0440\u0432\u043d\u044f_\u043b\u0438\u043f\u043d\u044f_\u0441\u0435\u0440\u043f\u043d\u044f_\u0432\u0435\u0440\u0435\u0441\u043d\u044f_\u0436\u043e\u0432\u0442\u043d\u044f_\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430_\u0433\u0440\u0443\u0434\u043d\u044f".split("_"),standalone:"\u0441\u0456\u0447\u0435\u043d\u044c_\u043b\u044e\u0442\u0438\u0439_\u0431\u0435\u0440\u0435\u0437\u0435\u043d\u044c_\u043a\u0432\u0456\u0442\u0435\u043d\u044c_\u0442\u0440\u0430\u0432\u0435\u043d\u044c_\u0447\u0435\u0440\u0432\u0435\u043d\u044c_\u043b\u0438\u043f\u0435\u043d\u044c_\u0441\u0435\u0440\u043f\u0435\u043d\u044c_\u0432\u0435\u0440\u0435\u0441\u0435\u043d\u044c_\u0436\u043e\u0432\u0442\u0435\u043d\u044c_\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434_\u0433\u0440\u0443\u0434\u0435\u043d\u044c".split("_")},monthsShort:"\u0441\u0456\u0447_\u043b\u044e\u0442_\u0431\u0435\u0440_\u043a\u0432\u0456\u0442_\u0442\u0440\u0430\u0432_\u0447\u0435\u0440\u0432_\u043b\u0438\u043f_\u0441\u0435\u0440\u043f_\u0432\u0435\u0440_\u0436\u043e\u0432\u0442_\u043b\u0438\u0441\u0442_\u0433\u0440\u0443\u0434".split("_"),weekdays:function(t,e){var n={nominative:"\u043d\u0435\u0434\u0456\u043b\u044f_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a_\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a_\u0441\u0435\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u044f_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),accusative:"\u043d\u0435\u0434\u0456\u043b\u044e_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a_\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a_\u0441\u0435\u0440\u0435\u0434\u0443_\u0447\u0435\u0442\u0432\u0435\u0440_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u044e_\u0441\u0443\u0431\u043e\u0442\u0443".split("_"),genitive:"\u043d\u0435\u0434\u0456\u043b\u0456_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043a\u0430_\u0432\u0456\u0432\u0442\u043e\u0440\u043a\u0430_\u0441\u0435\u0440\u0435\u0434\u0438_\u0447\u0435\u0442\u0432\u0435\u0440\u0433\u0430_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u0456_\u0441\u0443\u0431\u043e\u0442\u0438".split("_")};return!0===t?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):t?n[/(\[[\u0412\u0432\u0423\u0443]\]) ?dddd/.test(e)?"accusative":/\[?(?:\u043c\u0438\u043d\u0443\u043b\u043e\u0457|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0457)? ?\] ?dddd/.test(e)?"genitive":"nominative"][t.day()]:n.nominative},weekdaysShort:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0440.",LLL:"D MMMM YYYY \u0440., HH:mm",LLLL:"dddd, D MMMM YYYY \u0440., HH:mm"},calendar:{sameDay:i("[\u0421\u044c\u043e\u0433\u043e\u0434\u043d\u0456 "),nextDay:i("[\u0417\u0430\u0432\u0442\u0440\u0430 "),lastDay:i("[\u0412\u0447\u043e\u0440\u0430 "),nextWeek:i("[\u0423] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return i("[\u041c\u0438\u043d\u0443\u043b\u043e\u0457] dddd [").call(this);case 1:case 2:case 4:return i("[\u041c\u0438\u043d\u0443\u043b\u043e\u0433\u043e] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"\u0437\u0430 %s",past:"%s \u0442\u043e\u043c\u0443",s:"\u0434\u0435\u043a\u0456\u043b\u044c\u043a\u0430 \u0441\u0435\u043a\u0443\u043d\u0434",ss:e,m:e,mm:e,h:"\u0433\u043e\u0434\u0438\u043d\u0443",hh:e,d:"\u0434\u0435\u043d\u044c",dd:e,M:"\u043c\u0456\u0441\u044f\u0446\u044c",MM:e,y:"\u0440\u0456\u043a",yy:e},meridiemParse:/\u043d\u043e\u0447\u0456|\u0440\u0430\u043d\u043a\u0443|\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430/,isPM:function(t){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430)$/.test(t)},meridiem:function(t,e,n){return t<4?"\u043d\u043e\u0447\u0456":t<12?"\u0440\u0430\u043d\u043a\u0443":t<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u043e\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":case"w":case"W":return t+"-\u0439";case"D":return t+"-\u0433\u043e";default:return t}},week:{dow:1,doy:7}})}()},"s+uk":function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?r[n][0]:r[n][1]}n("wd/R").defineLocale("de-at",{months:"J\xe4nner_Februar_M\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"J\xe4n._Feb._M\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},sp3z:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("lo",{months:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99_\u0e81\u0eb8\u0ea1\u0e9e\u0eb2_\u0ea1\u0eb5\u0e99\u0eb2_\u0ec0\u0ea1\u0eaa\u0eb2_\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2_\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2_\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94_\u0eaa\u0eb4\u0e87\u0eab\u0eb2_\u0e81\u0eb1\u0e99\u0e8d\u0eb2_\u0e95\u0eb8\u0ea5\u0eb2_\u0e9e\u0eb0\u0e88\u0eb4\u0e81_\u0e97\u0eb1\u0e99\u0ea7\u0eb2".split("_"),monthsShort:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99_\u0e81\u0eb8\u0ea1\u0e9e\u0eb2_\u0ea1\u0eb5\u0e99\u0eb2_\u0ec0\u0ea1\u0eaa\u0eb2_\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2_\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2_\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94_\u0eaa\u0eb4\u0e87\u0eab\u0eb2_\u0e81\u0eb1\u0e99\u0e8d\u0eb2_\u0e95\u0eb8\u0ea5\u0eb2_\u0e9e\u0eb0\u0e88\u0eb4\u0e81_\u0e97\u0eb1\u0e99\u0ea7\u0eb2".split("_"),weekdays:"\u0ead\u0eb2\u0e97\u0eb4\u0e94_\u0e88\u0eb1\u0e99_\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99_\u0e9e\u0eb8\u0e94_\u0e9e\u0eb0\u0eab\u0eb1\u0e94_\u0eaa\u0eb8\u0e81_\u0ec0\u0eaa\u0ebb\u0eb2".split("_"),weekdaysShort:"\u0e97\u0eb4\u0e94_\u0e88\u0eb1\u0e99_\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99_\u0e9e\u0eb8\u0e94_\u0e9e\u0eb0\u0eab\u0eb1\u0e94_\u0eaa\u0eb8\u0e81_\u0ec0\u0eaa\u0ebb\u0eb2".split("_"),weekdaysMin:"\u0e97_\u0e88_\u0ead\u0e84_\u0e9e_\u0e9e\u0eab_\u0eaa\u0e81_\u0eaa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"\u0ea7\u0eb1\u0e99dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0e95\u0ead\u0e99\u0ec0\u0e8a\u0ebb\u0ec9\u0eb2|\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87/,isPM:function(t){return"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"===t},meridiem:function(t,e,n){return t<12?"\u0e95\u0ead\u0e99\u0ec0\u0e8a\u0ebb\u0ec9\u0eb2":"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"},calendar:{sameDay:"[\u0ea1\u0eb7\u0ec9\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",nextDay:"[\u0ea1\u0eb7\u0ec9\u0ead\u0eb7\u0ec8\u0e99\u0ec0\u0ea7\u0ea5\u0eb2] LT",nextWeek:"[\u0ea7\u0eb1\u0e99]dddd[\u0edc\u0ec9\u0eb2\u0ec0\u0ea7\u0ea5\u0eb2] LT",lastDay:"[\u0ea1\u0eb7\u0ec9\u0ea7\u0eb2\u0e99\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",lastWeek:"[\u0ea7\u0eb1\u0e99]dddd[\u0ec1\u0ea5\u0ec9\u0ea7\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",sameElse:"L"},relativeTime:{future:"\u0ead\u0eb5\u0e81 %s",past:"%s\u0e9c\u0ec8\u0eb2\u0e99\u0ea1\u0eb2",s:"\u0e9a\u0ecd\u0ec8\u0ec0\u0e97\u0ebb\u0ec8\u0eb2\u0ec3\u0e94\u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5",ss:"%d \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5",m:"1 \u0e99\u0eb2\u0e97\u0eb5",mm:"%d \u0e99\u0eb2\u0e97\u0eb5",h:"1 \u0e8a\u0ebb\u0ec8\u0ea7\u0ec2\u0ea1\u0e87",hh:"%d \u0e8a\u0ebb\u0ec8\u0ea7\u0ec2\u0ea1\u0e87",d:"1 \u0ea1\u0eb7\u0ec9",dd:"%d \u0ea1\u0eb7\u0ec9",M:"1 \u0ec0\u0e94\u0eb7\u0ead\u0e99",MM:"%d \u0ec0\u0e94\u0eb7\u0ead\u0e99",y:"1 \u0e9b\u0eb5",yy:"%d \u0e9b\u0eb5"},dayOfMonthOrdinalParse:/(\u0e97\u0eb5\u0ec8)\d{1,2}/,ordinal:function(t){return"\u0e97\u0eb5\u0ec8"+t}})}()},tGlX:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?r[n][0]:r[n][1]}n("wd/R").defineLocale("de",{months:"Januar_Februar_M\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._M\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},tT3J:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tzm-latn",{months:"innayr_br\u02e4ayr\u02e4_mar\u02e4s\u02e4_ibrir_mayyw_ywnyw_ywlywz_\u0263w\u0161t_\u0161wtanbir_kt\u02e4wbr\u02e4_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_br\u02e4ayr\u02e4_mar\u02e4s\u02e4_ibrir_mayyw_ywnyw_ywlywz_\u0263w\u0161t_\u0161wtanbir_kt\u02e4wbr\u02e4_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asi\u1e0dyas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asi\u1e0dyas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asi\u1e0dyas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minu\u1e0d",mm:"%d minu\u1e0d",h:"sa\u025ba",hh:"%d tassa\u025bin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}})}()},tUCv:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(t,e){return 12===t&&(t=0),"enjing"===e?t:"siyang"===e?t>=11?t:t+12:"sonten"===e||"ndalu"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"enjing":t<15?"siyang":t<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}})}()},u3GI:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?r[n][0]:r[n][1]}n("wd/R").defineLocale("de-ch",{months:"Januar_Februar_M\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._M\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},uEye:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_m\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_m\xe5n_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_m\xe5_ty_on_to_fr_l\xf8".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I g\xe5r klokka] LT",lastWeek:"[F\xf8reg\xe5ande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein m\xe5nad",MM:"%d m\xe5nader",y:"eit \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},uXwI:function(t,e,n){!function(t){"use strict";var e={ss:"sekundes_sekund\u0113m_sekunde_sekundes".split("_"),m:"min\u016btes_min\u016bt\u0113m_min\u016bte_min\u016btes".split("_"),mm:"min\u016btes_min\u016bt\u0113m_min\u016bte_min\u016btes".split("_"),h:"stundas_stund\u0101m_stunda_stundas".split("_"),hh:"stundas_stund\u0101m_stunda_stundas".split("_"),d:"dienas_dien\u0101m_diena_dienas".split("_"),dd:"dienas_dien\u0101m_diena_dienas".split("_"),M:"m\u0113ne\u0161a_m\u0113ne\u0161iem_m\u0113nesis_m\u0113ne\u0161i".split("_"),MM:"m\u0113ne\u0161a_m\u0113ne\u0161iem_m\u0113nesis_m\u0113ne\u0161i".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};function n(t,e,n){return n?e%10==1&&e%100!=11?t[2]:t[3]:e%10==1&&e%100!=11?t[0]:t[1]}function i(t,i,r){return t+" "+n(e[r],t,i)}function r(t,i,r){return n(e[r],t,i)}t.defineLocale("lv",{months:"janv\u0101ris_febru\u0101ris_marts_apr\u012blis_maijs_j\u016bnijs_j\u016blijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_j\u016bn_j\u016bl_aug_sep_okt_nov_dec".split("_"),weekdays:"sv\u0113tdiena_pirmdiena_otrdiena_tre\u0161diena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[\u0160odien pulksten] LT",nextDay:"[R\u012bt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pag\u0101ju\u0161\u0101] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"p\u0113c %s",past:"pirms %s",s:function(t,e){return e?"da\u017eas sekundes":"da\u017e\u0101m sekund\u0113m"},ss:i,m:r,mm:i,h:r,hh:i,d:r,dd:i,M:r,MM:i,y:r,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},wQk9:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tzm",{months:"\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54_\u2d31\u2d55\u2d30\u2d62\u2d55_\u2d4e\u2d30\u2d55\u2d5a_\u2d49\u2d31\u2d54\u2d49\u2d54_\u2d4e\u2d30\u2d62\u2d62\u2d53_\u2d62\u2d53\u2d4f\u2d62\u2d53_\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63_\u2d56\u2d53\u2d5b\u2d5c_\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d3d\u2d5f\u2d53\u2d31\u2d55_\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d37\u2d53\u2d4a\u2d4f\u2d31\u2d49\u2d54".split("_"),monthsShort:"\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54_\u2d31\u2d55\u2d30\u2d62\u2d55_\u2d4e\u2d30\u2d55\u2d5a_\u2d49\u2d31\u2d54\u2d49\u2d54_\u2d4e\u2d30\u2d62\u2d62\u2d53_\u2d62\u2d53\u2d4f\u2d62\u2d53_\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63_\u2d56\u2d53\u2d5b\u2d5c_\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d3d\u2d5f\u2d53\u2d31\u2d55_\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d37\u2d53\u2d4a\u2d4f\u2d31\u2d49\u2d54".split("_"),weekdays:"\u2d30\u2d59\u2d30\u2d4e\u2d30\u2d59_\u2d30\u2d62\u2d4f\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4f\u2d30\u2d59_\u2d30\u2d3d\u2d54\u2d30\u2d59_\u2d30\u2d3d\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4e\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d39\u2d62\u2d30\u2d59".split("_"),weekdaysShort:"\u2d30\u2d59\u2d30\u2d4e\u2d30\u2d59_\u2d30\u2d62\u2d4f\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4f\u2d30\u2d59_\u2d30\u2d3d\u2d54\u2d30\u2d59_\u2d30\u2d3d\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4e\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d39\u2d62\u2d30\u2d59".split("_"),weekdaysMin:"\u2d30\u2d59\u2d30\u2d4e\u2d30\u2d59_\u2d30\u2d62\u2d4f\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4f\u2d30\u2d59_\u2d30\u2d3d\u2d54\u2d30\u2d59_\u2d30\u2d3d\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4e\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d39\u2d62\u2d30\u2d59".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u2d30\u2d59\u2d37\u2d45 \u2d34] LT",nextDay:"[\u2d30\u2d59\u2d3d\u2d30 \u2d34] LT",nextWeek:"dddd [\u2d34] LT",lastDay:"[\u2d30\u2d5a\u2d30\u2d4f\u2d5c \u2d34] LT",lastWeek:"dddd [\u2d34] LT",sameElse:"L"},relativeTime:{future:"\u2d37\u2d30\u2d37\u2d45 \u2d59 \u2d62\u2d30\u2d4f %s",past:"\u2d62\u2d30\u2d4f %s",s:"\u2d49\u2d4e\u2d49\u2d3d",ss:"%d \u2d49\u2d4e\u2d49\u2d3d",m:"\u2d4e\u2d49\u2d4f\u2d53\u2d3a",mm:"%d \u2d4e\u2d49\u2d4f\u2d53\u2d3a",h:"\u2d59\u2d30\u2d44\u2d30",hh:"%d \u2d5c\u2d30\u2d59\u2d59\u2d30\u2d44\u2d49\u2d4f",d:"\u2d30\u2d59\u2d59",dd:"%d o\u2d59\u2d59\u2d30\u2d4f",M:"\u2d30\u2d62o\u2d53\u2d54",MM:"%d \u2d49\u2d62\u2d62\u2d49\u2d54\u2d4f",y:"\u2d30\u2d59\u2d33\u2d30\u2d59",yy:"%d \u2d49\u2d59\u2d33\u2d30\u2d59\u2d4f"},week:{dow:6,doy:12}})}()},"wd/R":function(t,e,n){(function(t){t.exports=function(){"use strict";var e,i;function r(){return e.apply(null,arguments)}function o(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function a(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function l(t){return void 0===t}function s(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function u(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function c(t,e){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,e-i.length)).toString().substr(1)+i}var H=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,N=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},B={};function W(t,e,n,i){var r=i;"string"==typeof i&&(r=function(){return this[i]()}),t&&(B[t]=r),e&&(B[e[0]]=function(){return j(r.apply(this,arguments),e[1],e[2])}),n&&(B[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),t)})}function U(t,e){return t.isValid()?(e=G(e,t.localeData()),V[e]=V[e]||function(t){var e,n,i,r=t.match(H);for(e=0,n=r.length;e=0&&N.test(t);)t=t.replace(N,i),N.lastIndex=0,n-=1;return t}var q=/\d/,X=/\d\d/,K=/\d{3}/,Z=/\d{4}/,J=/[+-]?\d{6}/,Q=/\d\d?/,$=/\d\d\d\d?/,tt=/\d\d\d\d\d\d?/,et=/\d{1,3}/,nt=/\d{1,4}/,it=/[+-]?\d{1,6}/,rt=/\d+/,ot=/[+-]?\d+/,at=/Z|[+-]\d\d:?\d\d/gi,lt=/Z|[+-]\d\d(?::?\d\d)?/gi,st=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,ut={};function ct(t,e,n){ut[t]=E(e)?e:function(t,i){return t&&n?n:e}}function dt(t,e){return d(ut,t)?ut[t](e._strict,e._locale):new RegExp(ht(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,n,i,r){return e||n||i||r})))}function ht(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var pt={};function ft(t,e){var n,i=e;for("string"==typeof t&&(t=[t]),s(e)&&(i=function(t,n){n[e]=k(t)}),n=0;n68?1900:2e3)};var Dt,Tt=Et("FullYear",!0);function Et(t,e){return function(n){return null!=n?(Pt(this,t,n),r.updateOffset(this,e),this):At(this,t)}}function At(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function Pt(t,e,n){t.isValid()&&!isNaN(n)&&("FullYear"===e&&Lt(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](n,t.month(),Ot(n,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](n))}function Ot(t,e){if(isNaN(t)||isNaN(e))return NaN;var n=(e%12+12)%12;return t+=(e-n)/12,1===n?Lt(t)?29:28:31-n%7%2}Dt=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0){var n=Array.prototype.slice.call(arguments);n[0]=t+400,e=new Date(Date.UTC.apply(null,n)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Bt(t,e,n){var i=7+e-n;return-(7+Vt(t,0,i).getUTCDay()-e)%7+i-1}function Wt(t,e,n,i,r){var o,a,l=1+7*(e-1)+(7+n-i)%7+Bt(t,i,r);return l<=0?a=Ct(o=t-1)+l:l>Ct(t)?(o=t+1,a=l-Ct(t)):(o=t,a=l),{year:o,dayOfYear:a}}function Ut(t,e,n){var i,r,o=Bt(t.year(),e,n),a=Math.floor((t.dayOfYear()-o-1)/7)+1;return a<1?i=a+Gt(r=t.year()-1,e,n):a>Gt(t.year(),e,n)?(i=a-Gt(t.year(),e,n),r=t.year()+1):(r=t.year(),i=a),{week:i,year:r}}function Gt(t,e,n){var i=Bt(t,e,n),r=Bt(t+1,e,n);return(Ct(t)-i+r)/7}function qt(t,e){return t.slice(e,7).concat(t.slice(0,e))}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),Y("week","w"),Y("isoWeek","W"),z("week",5),z("isoWeek",5),ct("w",Q),ct("ww",Q,X),ct("W",Q),ct("WW",Q,X),mt(["w","ww","W","WW"],function(t,e,n,i){e[i.substr(0,1)]=k(t)}),W("d",0,"do","day"),W("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),W("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),W("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),Y("day","d"),Y("weekday","e"),Y("isoWeekday","E"),z("day",11),z("weekday",11),z("isoWeekday",11),ct("d",Q),ct("e",Q),ct("E",Q),ct("dd",function(t,e){return e.weekdaysMinRegex(t)}),ct("ddd",function(t,e){return e.weekdaysShortRegex(t)}),ct("dddd",function(t,e){return e.weekdaysRegex(t)}),mt(["dd","ddd","dddd"],function(t,e,n,i){var r=n._locale.weekdaysParse(t,i,n._strict);null!=r?e.d=r:f(n).invalidWeekday=t}),mt(["d","e","E"],function(t,e,n,i){e[i]=k(t)});var Xt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Kt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Zt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Jt=st,Qt=st,$t=st;function te(){function t(t,e){return e.length-t.length}var e,n,i,r,o,a=[],l=[],s=[],u=[];for(e=0;e<7;e++)n=p([2e3,1]).day(e),i=this.weekdaysMin(n,""),r=this.weekdaysShort(n,""),o=this.weekdays(n,""),a.push(i),l.push(r),s.push(o),u.push(i),u.push(r),u.push(o);for(a.sort(t),l.sort(t),s.sort(t),u.sort(t),e=0;e<7;e++)l[e]=ht(l[e]),s[e]=ht(s[e]),u[e]=ht(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function ee(){return this.hours()%12||12}function ne(t,e){W(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function ie(t,e){return e._meridiemParse}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,ee),W("k",["kk",2],0,function(){return this.hours()||24}),W("hmm",0,0,function(){return""+ee.apply(this)+j(this.minutes(),2)}),W("hmmss",0,0,function(){return""+ee.apply(this)+j(this.minutes(),2)+j(this.seconds(),2)}),W("Hmm",0,0,function(){return""+this.hours()+j(this.minutes(),2)}),W("Hmmss",0,0,function(){return""+this.hours()+j(this.minutes(),2)+j(this.seconds(),2)}),ne("a",!0),ne("A",!1),Y("hour","h"),z("hour",13),ct("a",ie),ct("A",ie),ct("H",Q),ct("h",Q),ct("k",Q),ct("HH",Q,X),ct("hh",Q,X),ct("kk",Q,X),ct("hmm",$),ct("hmmss",tt),ct("Hmm",$),ct("Hmmss",tt),ft(["H","HH"],bt),ft(["k","kk"],function(t,e,n){var i=k(t);e[bt]=24===i?0:i}),ft(["a","A"],function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t}),ft(["h","hh"],function(t,e,n){e[bt]=k(t),f(n).bigHour=!0}),ft("hmm",function(t,e,n){var i=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i)),f(n).bigHour=!0}),ft("hmmss",function(t,e,n){var i=t.length-4,r=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i,2)),e[wt]=k(t.substr(r)),f(n).bigHour=!0}),ft("Hmm",function(t,e,n){var i=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i))}),ft("Hmmss",function(t,e,n){var i=t.length-4,r=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i,2)),e[wt]=k(t.substr(r))});var re,oe=Et("Hours",!0),ae={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Rt,monthsShort:It,week:{dow:0,doy:6},weekdays:Xt,weekdaysMin:Zt,weekdaysShort:Kt,meridiemParse:/[ap]\.?m?\.?/i},le={},se={};function ue(t){return t?t.toLowerCase().replace("_","-"):t}function ce(e){var i=null;if(!le[e]&&void 0!==t&&t&&t.exports)try{i=re._abbr,n("RnhZ")("./"+e),de(i)}catch(r){}return le[e]}function de(t,e){var n;return t&&((n=l(e)?pe(t):he(t,e))?re=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),re._abbr}function he(t,e){if(null!==e){var n,i=ae;if(e.abbr=t,null!=le[t])T("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=le[t]._config;else if(null!=e.parentLocale)if(null!=le[e.parentLocale])i=le[e.parentLocale]._config;else{if(null==(n=ce(e.parentLocale)))return se[e.parentLocale]||(se[e.parentLocale]=[]),se[e.parentLocale].push({name:t,config:e}),null;i=n._config}return le[t]=new P(A(i,e)),se[t]&&se[t].forEach(function(t){he(t.name,t.config)}),de(t),le[t]}return delete le[t],null}function pe(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return re;if(!o(t)){if(e=ce(t))return e;t=[t]}return function(t){for(var e,n,i,r,o=0;o0;){if(i=ce(r.slice(0,e).join("-")))return i;if(n&&n.length>=e&&M(r,n,!0)>=e-1)break;e--}o++}return re}(t)}function fe(t){var e,n=t._a;return n&&-2===f(t).overflow&&(e=n[_t]<0||n[_t]>11?_t:n[vt]<1||n[vt]>Ot(n[yt],n[_t])?vt:n[bt]<0||n[bt]>24||24===n[bt]&&(0!==n[xt]||0!==n[wt]||0!==n[kt])?bt:n[xt]<0||n[xt]>59?xt:n[wt]<0||n[wt]>59?wt:n[kt]<0||n[kt]>999?kt:-1,f(t)._overflowDayOfYear&&(evt)&&(e=vt),f(t)._overflowWeeks&&-1===e&&(e=Mt),f(t)._overflowWeekday&&-1===e&&(e=St),f(t).overflow=e),t}function me(t,e,n){return null!=t?t:null!=e?e:n}function ge(t){var e,n,i,o,a,l=[];if(!t._d){for(i=function(t){var e=new Date(r.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[vt]&&null==t._a[_t]&&function(t){var e,n,i,r,o,a,l,s;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)o=1,a=4,n=me(e.GG,t._a[yt],Ut(Ae(),1,4).year),i=me(e.W,1),((r=me(e.E,1))<1||r>7)&&(s=!0);else{o=t._locale._week.dow,a=t._locale._week.doy;var u=Ut(Ae(),o,a);n=me(e.gg,t._a[yt],u.year),i=me(e.w,u.week),null!=e.d?((r=e.d)<0||r>6)&&(s=!0):null!=e.e?(r=e.e+o,(e.e<0||e.e>6)&&(s=!0)):r=o}i<1||i>Gt(n,o,a)?f(t)._overflowWeeks=!0:null!=s?f(t)._overflowWeekday=!0:(l=Wt(n,i,r,o,a),t._a[yt]=l.year,t._dayOfYear=l.dayOfYear)}(t),null!=t._dayOfYear&&(a=me(t._a[yt],i[yt]),(t._dayOfYear>Ct(a)||0===t._dayOfYear)&&(f(t)._overflowDayOfYear=!0),n=Vt(a,0,t._dayOfYear),t._a[_t]=n.getUTCMonth(),t._a[vt]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=l[e]=i[e];for(;e<7;e++)t._a[e]=l[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[bt]&&0===t._a[xt]&&0===t._a[wt]&&0===t._a[kt]&&(t._nextDay=!0,t._a[bt]=0),t._d=(t._useUTC?Vt:function(t,e,n,i,r,o,a){var l;return t<100&&t>=0?(l=new Date(t+400,e,n,i,r,o,a),isFinite(l.getFullYear())&&l.setFullYear(t)):l=new Date(t,e,n,i,r,o,a),l}).apply(null,l),o=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[bt]=24),t._w&&void 0!==t._w.d&&t._w.d!==o&&(f(t).weekdayMismatch=!0)}}var ye=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,_e=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ve=/Z|[+-]\d\d(?::?\d\d)?/,be=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],xe=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],we=/^\/?Date\((\-?\d+)/i;function ke(t){var e,n,i,r,o,a,l=t._i,s=ye.exec(l)||_e.exec(l);if(s){for(f(t).iso=!0,e=0,n=be.length;e0&&f(t).unusedInput.push(a),l=l.slice(l.indexOf(n)+n.length),u+=n.length),B[o]?(n?f(t).empty=!1:f(t).unusedTokens.push(o),gt(o,n,t)):t._strict&&!n&&f(t).unusedTokens.push(o);f(t).charsLeftOver=s-u,l.length>0&&f(t).unusedInput.push(l),t._a[bt]<=12&&!0===f(t).bigHour&&t._a[bt]>0&&(f(t).bigHour=void 0),f(t).parsedDateParts=t._a.slice(0),f(t).meridiem=t._meridiem,t._a[bt]=(c=t._locale,d=t._a[bt],null==(h=t._meridiem)?d:null!=c.meridiemHour?c.meridiemHour(d,h):null!=c.isPM?((p=c.isPM(h))&&d<12&&(d+=12),p||12!==d||(d=0),d):d),ge(t),fe(t)}else Le(t);else ke(t);var c,d,h,p}function Te(t){var e=t._i,n=t._f;return t._locale=t._locale||pe(t._l),null===e||void 0===n&&""===e?g({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),x(e)?new b(fe(e)):(u(e)?t._d=e:o(n)?function(t){var e,n,i,r,o;if(0===t._f.length)return f(t).invalidFormat=!0,void(t._d=new Date(NaN));for(r=0;rthis?this:t:g()});function Ye(t,e){var n,i;if(1===e.length&&o(e[0])&&(e=e[0]),!e.length)return Ae();for(n=e[0],i=1;i=0?new Date(t+400,e,n)-on:new Date(t,e,n).valueOf()}function sn(t,e,n){return t<100&&t>=0?Date.UTC(t+400,e,n)-on:Date.UTC(t,e,n)}function un(t,e){W(0,[t,t.length],0,e)}function cn(t,e,n,i,r){var o;return null==t?Ut(this,i,r).year:(e>(o=Gt(t,i,r))&&(e=o),(function(t,e,n,i,r){var o=Wt(t,e,n,i,r),a=Vt(o.year,0,o.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}).call(this,t,e,n,i,r))}W(0,["gg",2],0,function(){return this.weekYear()%100}),W(0,["GG",2],0,function(){return this.isoWeekYear()%100}),un("gggg","weekYear"),un("ggggg","weekYear"),un("GGGG","isoWeekYear"),un("GGGGG","isoWeekYear"),Y("weekYear","gg"),Y("isoWeekYear","GG"),z("weekYear",1),z("isoWeekYear",1),ct("G",ot),ct("g",ot),ct("GG",Q,X),ct("gg",Q,X),ct("GGGG",nt,Z),ct("gggg",nt,Z),ct("GGGGG",it,J),ct("ggggg",it,J),mt(["gggg","ggggg","GGGG","GGGGG"],function(t,e,n,i){e[i.substr(0,2)]=k(t)}),mt(["gg","GG"],function(t,e,n,i){e[i]=r.parseTwoDigitYear(t)}),W("Q",0,"Qo","quarter"),Y("quarter","Q"),z("quarter",7),ct("Q",q),ft("Q",function(t,e){e[_t]=3*(k(t)-1)}),W("D",["DD",2],"Do","date"),Y("date","D"),z("date",9),ct("D",Q),ct("DD",Q,X),ct("Do",function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient}),ft(["D","DD"],vt),ft("Do",function(t,e){e[vt]=k(t.match(Q)[0])});var dn=Et("Date",!0);W("DDD",["DDDD",3],"DDDo","dayOfYear"),Y("dayOfYear","DDD"),z("dayOfYear",4),ct("DDD",et),ct("DDDD",K),ft(["DDD","DDDD"],function(t,e,n){n._dayOfYear=k(t)}),W("m",["mm",2],0,"minute"),Y("minute","m"),z("minute",14),ct("m",Q),ct("mm",Q,X),ft(["m","mm"],xt);var hn=Et("Minutes",!1);W("s",["ss",2],0,"second"),Y("second","s"),z("second",15),ct("s",Q),ct("ss",Q,X),ft(["s","ss"],wt);var pn,fn=Et("Seconds",!1);for(W("S",0,0,function(){return~~(this.millisecond()/100)}),W(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),W(0,["SSS",3],0,"millisecond"),W(0,["SSSS",4],0,function(){return 10*this.millisecond()}),W(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),W(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),W(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),W(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),W(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),Y("millisecond","ms"),z("millisecond",16),ct("S",et,q),ct("SS",et,X),ct("SSS",et,K),pn="SSSS";pn.length<=9;pn+="S")ct(pn,rt);function mn(t,e){e[kt]=k(1e3*("0."+t))}for(pn="S";pn.length<=9;pn+="S")ft(pn,mn);var gn=Et("Milliseconds",!1);W("z",0,0,"zoneAbbr"),W("zz",0,0,"zoneName");var yn=b.prototype;function _n(t){return t}yn.add=Qe,yn.calendar=function(t,e){var n=t||Ae(),i=Ve(n,this).startOf("day"),o=r.calendarFormat(this,i)||"sameElse",a=e&&(E(e[o])?e[o].call(this,n):e[o]);return this.format(a||this.localeData().calendar(o,this,Ae(n)))},yn.clone=function(){return new b(this)},yn.diff=function(t,e,n){var i,r,o;if(!this.isValid())return NaN;if(!(i=Ve(t,this)).isValid())return NaN;switch(r=6e4*(i.utcOffset()-this.utcOffset()),e=R(e)){case"year":o=tn(this,i)/12;break;case"month":o=tn(this,i);break;case"quarter":o=tn(this,i)/3;break;case"second":o=(this-i)/1e3;break;case"minute":o=(this-i)/6e4;break;case"hour":o=(this-i)/36e5;break;case"day":o=(this-i-r)/864e5;break;case"week":o=(this-i-r)/6048e5;break;default:o=this-i}return n?o:w(o)},yn.endOf=function(t){var e;if(void 0===(t=R(t))||"millisecond"===t||!this.isValid())return this;var n=this._isUTC?sn:ln;switch(t){case"year":e=n(this.year()+1,0,1)-1;break;case"quarter":e=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=n(this.year(),this.month()+1,1)-1;break;case"week":e=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=36e5-an(e+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":e=this._d.valueOf(),e+=6e4-an(e,6e4)-1;break;case"second":e=this._d.valueOf(),e+=1e3-an(e,1e3)-1}return this._d.setTime(e),r.updateOffset(this,!0),this},yn.format=function(t){t||(t=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var e=U(this,t);return this.localeData().postformat(e)},yn.from=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Ae(t).isValid())?qe({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},yn.fromNow=function(t){return this.from(Ae(),t)},yn.to=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Ae(t).isValid())?qe({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},yn.toNow=function(t){return this.to(Ae(),t)},yn.get=function(t){return E(this[t=R(t)])?this[t]():this},yn.invalidAt=function(){return f(this).overflow},yn.isAfter=function(t,e){var n=x(t)?t:Ae(t);return!(!this.isValid()||!n.isValid())&&("millisecond"===(e=R(e)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?U(n,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):E(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},yn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var n="["+t+'("]',i=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY";return this.format(n+i+"-MM-DD[T]HH:mm:ss.SSS"+e+'[")]')},yn.toJSON=function(){return this.isValid()?this.toISOString():null},yn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},yn.unix=function(){return Math.floor(this.valueOf()/1e3)},yn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},yn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},yn.year=Tt,yn.isLeapYear=function(){return Lt(this.year())},yn.weekYear=function(t){return cn.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},yn.isoWeekYear=function(t){return cn.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},yn.quarter=yn.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},yn.month=zt,yn.daysInMonth=function(){return Ot(this.year(),this.month())},yn.week=yn.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},yn.isoWeek=yn.isoWeeks=function(t){var e=Ut(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},yn.weeksInYear=function(){var t=this.localeData()._week;return Gt(this.year(),t.dow,t.doy)},yn.isoWeeksInYear=function(){return Gt(this.year(),1,4)},yn.date=dn,yn.day=yn.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},yn.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},yn.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},yn.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},yn.hour=yn.hours=oe,yn.minute=yn.minutes=hn,yn.second=yn.seconds=fn,yn.millisecond=yn.milliseconds=gn,yn.utcOffset=function(t,e,n){var i,o=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=Ne(lt,t)))return this}else Math.abs(t)<16&&!n&&(t*=60);return!this._isUTC&&e&&(i=Be(this)),this._offset=t,this._isUTC=!0,null!=i&&this.add(i,"m"),o!==t&&(!e||this._changeInProgress?Je(this,qe(t-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,r.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?o:Be(this)},yn.utc=function(t){return this.utcOffset(0,t)},yn.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Be(this),"m")),this},yn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=Ne(at,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},yn.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Ae(t).utcOffset():0,(this.utcOffset()-t)%60==0)},yn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},yn.isLocal=function(){return!!this.isValid()&&!this._isUTC},yn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},yn.isUtc=We,yn.isUTC=We,yn.zoneAbbr=function(){return this._isUTC?"UTC":""},yn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},yn.dates=C("dates accessor is deprecated. Use date instead.",dn),yn.months=C("months accessor is deprecated. Use month instead",zt),yn.years=C("years accessor is deprecated. Use year instead",Tt),yn.zone=C("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),yn.isDSTShifted=C("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!l(this._isDSTShifted))return this._isDSTShifted;var t={};if(_(t,this),(t=Te(t))._a){var e=t._isUTC?p(t._a):Ae(t._a);this._isDSTShifted=this.isValid()&&M(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var vn=P.prototype;function bn(t,e,n,i){var r=pe(),o=p().set(i,e);return r[n](o,t)}function xn(t,e,n){if(s(t)&&(e=t,t=void 0),t=t||"",null!=e)return bn(t,e,n,"month");var i,r=[];for(i=0;i<12;i++)r[i]=bn(t,i,n,"month");return r}function wn(t,e,n,i){"boolean"==typeof t?(s(e)&&(n=e,e=void 0),e=e||""):(n=e=t,t=!1,s(e)&&(n=e,e=void 0),e=e||"");var r,o=pe(),a=t?o._week.dow:0;if(null!=n)return bn(e,(n+a)%7,i,"day");var l=[];for(r=0;r<7;r++)l[r]=bn(e,(r+a)%7,i,"day");return l}vn.calendar=function(t,e,n){var i=this._calendar[t]||this._calendar.sameElse;return E(i)?i.call(e,n):i},vn.longDateFormat=function(t){var e=this._longDateFormat[t],n=this._longDateFormat[t.toUpperCase()];return e||!n?e:(this._longDateFormat[t]=n.replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t])},vn.invalidDate=function(){return this._invalidDate},vn.ordinal=function(t){return this._ordinal.replace("%d",t)},vn.preparse=_n,vn.postformat=_n,vn.relativeTime=function(t,e,n,i){var r=this._relativeTime[n];return E(r)?r(t,e,n,i):r.replace(/%d/i,t)},vn.pastFuture=function(t,e){var n=this._relativeTime[t>0?"future":"past"];return E(n)?n(e):n.replace(/%s/i,e)},vn.set=function(t){var e,n;for(n in t)E(e=t[n])?this[n]=e:this["_"+n]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},vn.months=function(t,e){return t?o(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Yt).test(e)?"format":"standalone"][t.month()]:o(this._months)?this._months:this._months.standalone},vn.monthsShort=function(t,e){return t?o(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Yt.test(e)?"format":"standalone"][t.month()]:o(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},vn.monthsParse=function(t,e,n){var i,r,o;if(this._monthsParseExact)return(function(t,e,n){var i,r,o,a=t.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],i=0;i<12;++i)o=p([2e3,i]),this._shortMonthsParse[i]=this.monthsShort(o,"").toLocaleLowerCase(),this._longMonthsParse[i]=this.months(o,"").toLocaleLowerCase();return n?"MMM"===e?-1!==(r=Dt.call(this._shortMonthsParse,a))?r:null:-1!==(r=Dt.call(this._longMonthsParse,a))?r:null:"MMM"===e?-1!==(r=Dt.call(this._shortMonthsParse,a))?r:-1!==(r=Dt.call(this._longMonthsParse,a))?r:null:-1!==(r=Dt.call(this._longMonthsParse,a))?r:-1!==(r=Dt.call(this._shortMonthsParse,a))?r:null}).call(this,t,e,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(r=p([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[i]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),n||this._monthsParse[i]||(o="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[i]=new RegExp(o.replace(".",""),"i")),n&&"MMMM"===e&&this._longMonthsParse[i].test(t))return i;if(n&&"MMM"===e&&this._shortMonthsParse[i].test(t))return i;if(!n&&this._monthsParse[i].test(t))return i}},vn.monthsRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Nt.call(this),t?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=Ht),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},vn.monthsShortRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Nt.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=jt),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},vn.week=function(t){return Ut(t,this._week.dow,this._week.doy).week},vn.firstDayOfYear=function(){return this._week.doy},vn.firstDayOfWeek=function(){return this._week.dow},vn.weekdays=function(t,e){var n=o(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?qt(n,this._week.dow):t?n[t.day()]:n},vn.weekdaysMin=function(t){return!0===t?qt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},vn.weekdaysShort=function(t){return!0===t?qt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},vn.weekdaysParse=function(t,e,n){var i,r,o;if(this._weekdaysParseExact)return(function(t,e,n){var i,r,o,a=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)o=p([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===e?-1!==(r=Dt.call(this._weekdaysParse,a))?r:null:"ddd"===e?-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:null:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:null:"dddd"===e?-1!==(r=Dt.call(this._weekdaysParse,a))?r:-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:null:"ddd"===e?-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:-1!==(r=Dt.call(this._weekdaysParse,a))?r:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:null:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:-1!==(r=Dt.call(this._weekdaysParse,a))?r:-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:null}).call(this,t,e,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(r=p([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[i]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[i]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[i]||(o="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[i]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===e&&this._fullWeekdaysParse[i].test(t))return i;if(n&&"ddd"===e&&this._shortWeekdaysParse[i].test(t))return i;if(n&&"dd"===e&&this._minWeekdaysParse[i].test(t))return i;if(!n&&this._weekdaysParse[i].test(t))return i}},vn.weekdaysRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||te.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=Jt),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},vn.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||te.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Qt),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},vn.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||te.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=$t),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},vn.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},vn.meridiem=function(t,e,n){return t>11?n?"pm":"PM":n?"am":"AM"},de("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===k(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),r.lang=C("moment.lang is deprecated. Use moment.locale instead.",de),r.langData=C("moment.langData is deprecated. Use moment.localeData instead.",pe);var kn=Math.abs;function Mn(t,e,n,i){var r=qe(e,n);return t._milliseconds+=i*r._milliseconds,t._days+=i*r._days,t._months+=i*r._months,t._bubble()}function Sn(t){return t<0?Math.floor(t):Math.ceil(t)}function Cn(t){return 4800*t/146097}function Ln(t){return 146097*t/4800}function Dn(t){return function(){return this.as(t)}}var Tn=Dn("ms"),En=Dn("s"),An=Dn("m"),Pn=Dn("h"),On=Dn("d"),Yn=Dn("w"),Rn=Dn("M"),In=Dn("Q"),Fn=Dn("y");function zn(t){return function(){return this.isValid()?this._data[t]:NaN}}var jn=zn("milliseconds"),Hn=zn("seconds"),Nn=zn("minutes"),Vn=zn("hours"),Bn=zn("days"),Wn=zn("months"),Un=zn("years"),Gn=Math.round,qn={ss:44,s:45,m:45,h:22,d:26,M:11},Xn=Math.abs;function Kn(t){return(t>0)-(t<0)||+t}function Zn(){if(!this.isValid())return this.localeData().invalidDate();var t,e,n=Xn(this._milliseconds)/1e3,i=Xn(this._days),r=Xn(this._months);t=w(n/60),e=w(t/60),n%=60,t%=60;var o=w(r/12),a=r%=12,l=i,s=e,u=t,c=n?n.toFixed(3).replace(/\.?0+$/,""):"",d=this.asSeconds();if(!d)return"P0D";var h=d<0?"-":"",p=Kn(this._months)!==Kn(d)?"-":"",f=Kn(this._days)!==Kn(d)?"-":"",m=Kn(this._milliseconds)!==Kn(d)?"-":"";return h+"P"+(o?p+o+"Y":"")+(a?p+a+"M":"")+(l?f+l+"D":"")+(s||u||c?"T":"")+(s?m+s+"H":"")+(u?m+u+"M":"")+(c?m+c+"S":"")}var Jn=Ie.prototype;return Jn.isValid=function(){return this._isValid},Jn.abs=function(){var t=this._data;return this._milliseconds=kn(this._milliseconds),this._days=kn(this._days),this._months=kn(this._months),t.milliseconds=kn(t.milliseconds),t.seconds=kn(t.seconds),t.minutes=kn(t.minutes),t.hours=kn(t.hours),t.months=kn(t.months),t.years=kn(t.years),this},Jn.add=function(t,e){return Mn(this,t,e,1)},Jn.subtract=function(t,e){return Mn(this,t,e,-1)},Jn.as=function(t){if(!this.isValid())return NaN;var e,n,i=this._milliseconds;if("month"===(t=R(t))||"quarter"===t||"year"===t)switch(n=this._months+Cn(e=this._days+i/864e5),t){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(e=this._days+Math.round(Ln(this._months)),t){case"week":return e/7+i/6048e5;case"day":return e+i/864e5;case"hour":return 24*e+i/36e5;case"minute":return 1440*e+i/6e4;case"second":return 86400*e+i/1e3;case"millisecond":return Math.floor(864e5*e)+i;default:throw new Error("Unknown unit "+t)}},Jn.asMilliseconds=Tn,Jn.asSeconds=En,Jn.asMinutes=An,Jn.asHours=Pn,Jn.asDays=On,Jn.asWeeks=Yn,Jn.asMonths=Rn,Jn.asQuarters=In,Jn.asYears=Fn,Jn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},Jn._bubble=function(){var t,e,n,i,r,o=this._milliseconds,a=this._days,l=this._months,s=this._data;return o>=0&&a>=0&&l>=0||o<=0&&a<=0&&l<=0||(o+=864e5*Sn(Ln(l)+a),a=0,l=0),s.milliseconds=o%1e3,t=w(o/1e3),s.seconds=t%60,e=w(t/60),s.minutes=e%60,n=w(e/60),s.hours=n%24,a+=w(n/24),l+=r=w(Cn(a)),a-=Sn(Ln(r)),i=w(l/12),l%=12,s.days=a,s.months=l,s.years=i,this},Jn.clone=function(){return qe(this)},Jn.get=function(t){return t=R(t),this.isValid()?this[t+"s"]():NaN},Jn.milliseconds=jn,Jn.seconds=Hn,Jn.minutes=Nn,Jn.hours=Vn,Jn.days=Bn,Jn.weeks=function(){return w(this.days()/7)},Jn.months=Wn,Jn.years=Un,Jn.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),n=function(t,e,n){var i=qe(t).abs(),r=Gn(i.as("s")),o=Gn(i.as("m")),a=Gn(i.as("h")),l=Gn(i.as("d")),s=Gn(i.as("M")),u=Gn(i.as("y")),c=r<=qn.ss&&["s",r]||r0,c[4]=n,(function(t,e,n,i,r){return r.relativeTime(e||1,!!n,t,i)}).apply(null,c)}(this,!t,e);return t&&(n=e.pastFuture(+this,n)),e.postformat(n)},Jn.toISOString=Zn,Jn.toString=Zn,Jn.toJSON=Zn,Jn.locale=en,Jn.localeData=rn,Jn.toIsoString=C("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Zn),Jn.lang=nn,W("X",0,0,"unix"),W("x",0,0,"valueOf"),ct("x",ot),ct("X",/[+-]?\d+(\.\d{1,3})?/),ft("X",function(t,e,n){n._d=new Date(1e3*parseFloat(t,10))}),ft("x",function(t,e,n){n._d=new Date(k(t))}),r.version="2.24.0",e=Ae,r.fn=yn,r.min=function(){return Ye("isBefore",[].slice.call(arguments,0))},r.max=function(){return Ye("isAfter",[].slice.call(arguments,0))},r.now=function(){return Date.now?Date.now():+new Date},r.utc=p,r.unix=function(t){return Ae(1e3*t)},r.months=function(t,e){return xn(t,e,"months")},r.isDate=u,r.locale=de,r.invalid=g,r.duration=qe,r.isMoment=x,r.weekdays=function(t,e,n){return wn(t,e,n,"weekdays")},r.parseZone=function(){return Ae.apply(null,arguments).parseZone()},r.localeData=pe,r.isDuration=Fe,r.monthsShort=function(t,e){return xn(t,e,"monthsShort")},r.weekdaysMin=function(t,e,n){return wn(t,e,n,"weekdaysMin")},r.defineLocale=he,r.updateLocale=function(t,e){if(null!=e){var n,i,r=ae;null!=(i=ce(t))&&(r=i._config),(n=new P(e=A(r,e))).parentLocale=le[t],le[t]=n,de(t)}else null!=le[t]&&(null!=le[t].parentLocale?le[t]=le[t].parentLocale:null!=le[t]&&delete le[t]);return le[t]},r.locales=function(){return L(le)},r.weekdaysShort=function(t,e,n){return wn(t,e,n,"weekdaysShort")},r.normalizeUnits=R,r.relativeTimeRounding=function(t){return void 0===t?Gn:"function"==typeof t&&(Gn=t,!0)},r.relativeTimeThreshold=function(t,e){return void 0!==qn[t]&&(void 0===e?qn[t]:(qn[t]=e,"s"===t&&(qn.ss=e-1),!0))},r.calendarFormat=function(t,e){var n=t.diff(e,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},r.prototype=yn,r.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},r}()}).call(this,n("YuTi")(t))},x6pH:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("he",{months:"\u05d9\u05e0\u05d5\u05d0\u05e8_\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8_\u05de\u05e8\u05e5_\u05d0\u05e4\u05e8\u05d9\u05dc_\u05de\u05d0\u05d9_\u05d9\u05d5\u05e0\u05d9_\u05d9\u05d5\u05dc\u05d9_\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8_\u05e1\u05e4\u05d8\u05de\u05d1\u05e8_\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8_\u05e0\u05d5\u05d1\u05de\u05d1\u05e8_\u05d3\u05e6\u05de\u05d1\u05e8".split("_"),monthsShort:"\u05d9\u05e0\u05d5\u05f3_\u05e4\u05d1\u05e8\u05f3_\u05de\u05e8\u05e5_\u05d0\u05e4\u05e8\u05f3_\u05de\u05d0\u05d9_\u05d9\u05d5\u05e0\u05d9_\u05d9\u05d5\u05dc\u05d9_\u05d0\u05d5\u05d2\u05f3_\u05e1\u05e4\u05d8\u05f3_\u05d0\u05d5\u05e7\u05f3_\u05e0\u05d5\u05d1\u05f3_\u05d3\u05e6\u05de\u05f3".split("_"),weekdays:"\u05e8\u05d0\u05e9\u05d5\u05df_\u05e9\u05e0\u05d9_\u05e9\u05dc\u05d9\u05e9\u05d9_\u05e8\u05d1\u05d9\u05e2\u05d9_\u05d7\u05de\u05d9\u05e9\u05d9_\u05e9\u05d9\u05e9\u05d9_\u05e9\u05d1\u05ea".split("_"),weekdaysShort:"\u05d0\u05f3_\u05d1\u05f3_\u05d2\u05f3_\u05d3\u05f3_\u05d4\u05f3_\u05d5\u05f3_\u05e9\u05f3".split("_"),weekdaysMin:"\u05d0_\u05d1_\u05d2_\u05d3_\u05d4_\u05d5_\u05e9".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [\u05d1]MMMM YYYY",LLL:"D [\u05d1]MMMM YYYY HH:mm",LLLL:"dddd, D [\u05d1]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[\u05d4\u05d9\u05d5\u05dd \u05d1\u05be]LT",nextDay:"[\u05de\u05d7\u05e8 \u05d1\u05be]LT",nextWeek:"dddd [\u05d1\u05e9\u05e2\u05d4] LT",lastDay:"[\u05d0\u05ea\u05de\u05d5\u05dc \u05d1\u05be]LT",lastWeek:"[\u05d1\u05d9\u05d5\u05dd] dddd [\u05d4\u05d0\u05d7\u05e8\u05d5\u05df \u05d1\u05e9\u05e2\u05d4] LT",sameElse:"L"},relativeTime:{future:"\u05d1\u05e2\u05d5\u05d3 %s",past:"\u05dc\u05e4\u05e0\u05d9 %s",s:"\u05de\u05e1\u05e4\u05e8 \u05e9\u05e0\u05d9\u05d5\u05ea",ss:"%d \u05e9\u05e0\u05d9\u05d5\u05ea",m:"\u05d3\u05e7\u05d4",mm:"%d \u05d3\u05e7\u05d5\u05ea",h:"\u05e9\u05e2\u05d4",hh:function(t){return 2===t?"\u05e9\u05e2\u05ea\u05d9\u05d9\u05dd":t+" \u05e9\u05e2\u05d5\u05ea"},d:"\u05d9\u05d5\u05dd",dd:function(t){return 2===t?"\u05d9\u05d5\u05de\u05d9\u05d9\u05dd":t+" \u05d9\u05de\u05d9\u05dd"},M:"\u05d7\u05d5\u05d3\u05e9",MM:function(t){return 2===t?"\u05d7\u05d5\u05d3\u05e9\u05d9\u05d9\u05dd":t+" \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd"},y:"\u05e9\u05e0\u05d4",yy:function(t){return 2===t?"\u05e9\u05e0\u05ea\u05d9\u05d9\u05dd":t%10==0&&10!==t?t+" \u05e9\u05e0\u05d4":t+" \u05e9\u05e0\u05d9\u05dd"}},meridiemParse:/\u05d0\u05d7\u05d4"\u05e6|\u05dc\u05e4\u05e0\u05d4"\u05e6|\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8|\u05d1\u05d1\u05d5\u05e7\u05e8|\u05d1\u05e2\u05e8\u05d1/i,isPM:function(t){return/^(\u05d0\u05d7\u05d4"\u05e6|\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05d1\u05e2\u05e8\u05d1)$/.test(t)},meridiem:function(t,e,n){return t<5?"\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8":t<10?"\u05d1\u05d1\u05d5\u05e7\u05e8":t<12?n?'\u05dc\u05e4\u05e0\u05d4"\u05e6':"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":t<18?n?'\u05d0\u05d7\u05d4"\u05e6':"\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":"\u05d1\u05e2\u05e8\u05d1"}})}()},yLV6:function(t,e,n){var i;!function(r,o,a,l){"use strict";var s,u=["","webkit","Moz","MS","ms","o"],c=o.createElement("div"),d="function",h=Math.round,p=Math.abs,f=Date.now;function m(t,e,n){return setTimeout(w(t,n),e)}function g(t,e,n){return!!Array.isArray(t)&&(y(t,n[e],n),!0)}function y(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(t.length!==l)for(i=0;i\s*\(/gm,"{anonymous}()@"):"Unknown Stack Trace",o=r.console&&(r.console.warn||r.console.log);return o&&o.call(r.console,i,n),t.apply(this,arguments)}}s="function"!=typeof Object.assign?function(t){if(t===l||null===t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),n=1;n-1}function T(t){return t.trim().split(/\s+/g)}function E(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;in[e]}):i.sort()),i}function O(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),o=0;o1&&!n.firstMultiple?n.firstMultiple=et(e):1===r&&(n.firstMultiple=!1);var o=n.firstInput,a=n.firstMultiple,s=a?a.center:o.center,u=e.center=nt(i);e.timeStamp=f(),e.deltaTime=e.timeStamp-o.timeStamp,e.angle=at(s,u),e.distance=ot(s,u),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},o=t.prevInput||{};e.eventType!==H&&o.eventType!==N||(r=t.prevDelta={x:o.deltaX||0,y:o.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y}),e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=rt(e.deltaX,e.deltaY);var c,d,h=it(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=h.x,e.overallVelocityY=h.y,e.overallVelocity=p(h.x)>p(h.y)?h.x:h.y,e.scale=a?(c=a.pointers,ot((d=i)[0],d[1],Q)/ot(c[0],c[1],Q)):1,e.rotation=a?function(t,e){return at(i[1],i[0],Q)+at(t[1],t[0],Q)}(a.pointers):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,o,a=t.lastInterval||e,s=e.timeStamp-a.timeStamp;if(e.eventType!=V&&(s>j||a.velocity===l)){var u=e.deltaX-a.deltaX,c=e.deltaY-a.deltaY,d=it(s,u,c);i=d.x,r=d.y,n=p(d.x)>p(d.y)?d.x:d.y,o=rt(u,c),t.lastInterval=e}else n=a.velocity,i=a.velocityX,r=a.velocityY,o=a.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=o}(n,e);var m=t.element;L(e.srcEvent.target,m)&&(m=e.srcEvent.target),e.target=m}(t,n),t.emit("hammer.input",n),t.recognize(n),t.session.prevInput=n}function et(t){for(var e=[],n=0;n=p(e)?t<0?W:U:e<0?G:q}function ot(t,e,n){n||(n=J);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function at(t,e,n){return n||(n=J),180*Math.atan2(e[n[1]]-t[n[1]],e[n[0]]-t[n[0]])/Math.PI}$.prototype={handler:function(){},init:function(){this.evEl&&S(this.element,this.evEl,this.domHandler),this.evTarget&&S(this.target,this.evTarget,this.domHandler),this.evWin&&S(R(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&C(this.element,this.evEl,this.domHandler),this.evTarget&&C(this.target,this.evTarget,this.domHandler),this.evWin&&C(R(this.element),this.evWin,this.domHandler)}};var lt={mousedown:H,mousemove:2,mouseup:N},st="mousedown",ut="mousemove mouseup";function ct(){this.evEl=st,this.evWin=ut,this.pressed=!1,$.apply(this,arguments)}x(ct,$,{handler:function(t){var e=lt[t.type];e&H&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=N),this.pressed&&(e&N&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:"mouse",srcEvent:t}))}});var dt={pointerdown:H,pointermove:2,pointerup:N,pointercancel:V,pointerout:V},ht={2:"touch",3:"pen",4:"mouse",5:"kinect"},pt="pointerdown",ft="pointermove pointerup pointercancel";function mt(){this.evEl=pt,this.evWin=ft,$.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}r.MSPointerEvent&&!r.PointerEvent&&(pt="MSPointerDown",ft="MSPointerMove MSPointerUp MSPointerCancel"),x(mt,$,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace("ms",""),r=dt[i],o=ht[t.pointerType]||t.pointerType,a="touch"==o,l=E(e,t.pointerId,"pointerId");r&H&&(0===t.button||a)?l<0&&(e.push(t),l=e.length-1):r&(N|V)&&(n=!0),l<0||(e[l]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:o,srcEvent:t}),n&&e.splice(l,1))}});var gt={touchstart:H,touchmove:2,touchend:N,touchcancel:V},yt="touchstart",_t="touchstart touchmove touchend touchcancel";function vt(){this.evTarget=yt,this.evWin=_t,this.started=!1,$.apply(this,arguments)}x(vt,$,{handler:function(t){var e=gt[t.type];if(e===H&&(this.started=!0),this.started){var n=(function(t,e){var n=A(t.touches),i=A(t.changedTouches);return e&(N|V)&&(n=P(n.concat(i),"identifier",!0)),[n,i]}).call(this,t,e);e&(N|V)&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}}});var bt={touchstart:H,touchmove:2,touchend:N,touchcancel:V},xt="touchstart touchmove touchend touchcancel";function wt(){this.evTarget=xt,this.targetIds={},$.apply(this,arguments)}x(wt,$,{handler:function(t){var e=bt[t.type],n=(function(t,e){var n=A(t.touches),i=this.targetIds;if(e&(2|H)&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,o,a=A(t.changedTouches),l=[],s=this.target;if(o=n.filter(function(t){return L(t.target,s)}),e===H)for(r=0;r-1&&i.splice(t,1)},kt)}}x(Mt,$,{handler:function(t,e,n){var i="mouse"==n.pointerType;if(!(i&&n.sourceCapabilities&&n.sourceCapabilities.firesTouchEvents)){if("touch"==n.pointerType)(function(t,e){t&H?(this.primaryTouch=e.changedPointers[0].identifier,St.call(this,e)):t&(N|V)&&St.call(this,e)}).call(this,e,n);else if(i&&(function(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n=Ot&&i(e.options.event+Ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return Ht.prototype.attrTest.call(this,t)&&(this.state&At||!(this.state&At)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=zt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),x(Vt,Ht,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||this.state&At)},emit:function(t){1!==t.scale&&(t.additionalEvent=this.options.event+(t.scale<1?"in":"out")),this._super.emit.call(this,t)}}),x(Bt,It,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return["auto"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distancee.time;if(this._input=t,!i||!n||t.eventType&(N|V)&&!r)this.reset();else if(t.eventType&H)this.reset(),this._timer=m(function(){this.state=Yt,this.tryEmit()},e.time,this);else if(t.eventType&N)return Yt;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){this.state===Yt&&(t&&t.eventType&N?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=f(),this.manager.emit(this.options.event,this._input)))}}),x(Wt,Ht,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||this.state&At)}}),x(Ut,Ht,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:X|K,pointers:1},getTouchAction:function(){return Nt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return n&(X|K)?e=t.overallVelocity:n&X?e=t.overallVelocityX:n&K&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&p(e)>this.options.velocity&&t.eventType&N},emit:function(t){var e=zt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),x(Gt,It,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return["manipulation"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance11?n?"d'o":"D'O":n?"d'a":"D'A"},calendar:{sameDay:"[oxhi \xe0] LT",nextDay:"[dem\xe0 \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[ieiri \xe0] LT",lastWeek:"[s\xfcr el] dddd [lasteu \xe0] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},z3Vd:function(t,e,n){!function(t){"use strict";var e="pagh_wa\u2019_cha\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");function n(t,n,i,r){var o=function(t){var n=Math.floor(t%1e3/100),i=Math.floor(t%100/10),r=t%10,o="";return n>0&&(o+=e[n]+"vatlh"),i>0&&(o+=(""!==o?" ":"")+e[i]+"maH"),r>0&&(o+=(""!==o?" ":"")+e[r]),""===o?"pagh":o}(t);switch(i){case"ss":return o+" lup";case"mm":return o+" tup";case"hh":return o+" rep";case"dd":return o+" jaj";case"MM":return o+" jar";case"yy":return o+" DIS"}}t.defineLocale("tlh",{months:"tera\u2019 jar wa\u2019_tera\u2019 jar cha\u2019_tera\u2019 jar wej_tera\u2019 jar loS_tera\u2019 jar vagh_tera\u2019 jar jav_tera\u2019 jar Soch_tera\u2019 jar chorgh_tera\u2019 jar Hut_tera\u2019 jar wa\u2019maH_tera\u2019 jar wa\u2019maH wa\u2019_tera\u2019 jar wa\u2019maH cha\u2019".split("_"),monthsShort:"jar wa\u2019_jar cha\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\u2019maH_jar wa\u2019maH wa\u2019_jar wa\u2019maH cha\u2019".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa\u2019leS] LT",nextWeek:"LLL",lastDay:"[wa\u2019Hu\u2019] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:function(t){var e=t;return-1!==t.indexOf("jaj")?e.slice(0,-3)+"leS":-1!==t.indexOf("jar")?e.slice(0,-3)+"waQ":-1!==t.indexOf("DIS")?e.slice(0,-3)+"nem":e+" pIq"},past:function(t){var e=t;return-1!==t.indexOf("jaj")?e.slice(0,-3)+"Hu\u2019":-1!==t.indexOf("jar")?e.slice(0,-3)+"wen":-1!==t.indexOf("DIS")?e.slice(0,-3)+"ben":e+" ret"},s:"puS lup",ss:n,m:"wa\u2019 tup",mm:n,h:"wa\u2019 rep",hh:n,d:"wa\u2019 jaj",dd:n,M:"wa\u2019 jar",MM:n,y:"wa\u2019 DIS",yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},zUnb:function(t,e,n){"use strict";n.r(e);var i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function r(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}function l(t,e){return function(n,i){e(n,i,t)}}function s(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)}function u(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}}function c(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a}function d(){for(var t=[],e=0;e0?this._next(e.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},e}(et);function ct(t){return t}function dt(t){return void 0===t&&(t=Number.POSITIVE_INFINITY),lt(ct,t)}function ht(){for(var t=[],e=0;e1&&"number"==typeof t[t.length-1]&&(n=t.pop())):"number"==typeof r&&(n=t.pop()),null===i&&1===t.length&&t[0]instanceof Y?t[0]:dt(n)(ot(t,i))}function pt(){return function(t){return t.lift(new ft(t))}}var ft=function(){function t(t){this.connectable=t}return t.prototype.call=function(t,e){var n=this.connectable;n._refCount++;var i=new mt(t,n),r=e.subscribe(i);return i.closed||(i.connection=n.connect()),r},t}(),mt=function(t){function e(e,n){var i=t.call(this,e)||this;return i.connectable=n,i}return r(e,t),e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._refCount;if(e<=0)this.connection=null;else if(t._refCount=e-1,e>1)this.connection=null;else{var n=this.connection,i=t._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}else this.connection=null},e}(D),gt=function(t){function e(e,n){var i=t.call(this)||this;return i.source=e,i.subjectFactory=n,i._refCount=0,i._isComplete=!1,i}return r(e,t),e.prototype._subscribe=function(t){return this.getSubject().subscribe(t)},e.prototype.getSubject=function(){var t=this._subject;return t&&!t.isStopped||(this._subject=this.subjectFactory()),this._subject},e.prototype.connect=function(){var t=this._connection;return t||(this._isComplete=!1,(t=this._connection=new x).add(this.source.subscribe(new _t(this.getSubject(),this))),t.closed?(this._connection=null,t=x.EMPTY):this._connection=t),t},e.prototype.refCount=function(){return pt()(this)},e}(Y).prototype,yt={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:gt._subscribe},_isComplete:{value:gt._isComplete,writable:!0},getSubject:{value:gt.getSubject},connect:{value:gt.connect},refCount:{value:gt.refCount}},_t=function(t){function e(e,n){var i=t.call(this,e)||this;return i.connectable=n,i}return r(e,t),e.prototype._error=function(e){this._unsubscribe(),t.prototype._error.call(this,e)},e.prototype._complete=function(){this.connectable._isComplete=!0,this._unsubscribe(),t.prototype._complete.call(this)},e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._connection;t._refCount=0,t._subject=null,t._connection=null,e&&e.unsubscribe()}},e}(j);function vt(){return new H}function bt(){return function(t){return pt()((e=vt,function(t){var n;n="function"==typeof e?e:function(){return e};var i=Object.create(t,yt);return i.source=t,i.subjectFactory=n,i})(t));var e}}function xt(t){for(var e in t)if(t[e]===xt)return e;throw Error("Could not find renamed property on target object.")}function wt(t,e){for(var n in e)e.hasOwnProperty(n)&&!t.hasOwnProperty(n)&&(t[n]=e[n])}var kt=xt({ngInjectableDef:xt}),Mt=xt({ngBaseDef:xt});function St(t){return{providedIn:t.providedIn||null,factory:t.factory,value:void 0}}function Ct(t){return t&&t.hasOwnProperty(kt)?t[kt]:null}var Lt=function(){function t(t,e){this._desc=t,this.ngMetadataName="InjectionToken",this.ngInjectableDef=void 0!==e?St({providedIn:e.providedIn||"root",factory:e.factory}):void 0}return t.prototype.toString=function(){return"InjectionToken "+this._desc},t}(),Dt="__annotations__",Tt="__parameters__",Et="__prop__metadata__";function At(t,e,n,i,r){var o=Pt(e);function a(){for(var t,e=[],n=0;n ");else if("object"==typeof e){var r=[];for(var o in e)if(e.hasOwnProperty(o)){var a=e[o];r.push(o+":"+("string"==typeof a?JSON.stringify(a):Wt(a)))}i="{"+r.join(", ")+"}"}return"StaticInjectorError"+(n?"("+n+")":"")+"["+i+"]: "+t.replace(Se,"\n ")}function Ee(t,e){return new Error(Te(t,e))}var Ae=new Lt("The presence of this token marks an injector as being the root injector."),Pe=function(){return function(){}}(),Oe=function(){return function(){}}();function Ye(t){var e=Error("No component factory found for "+Wt(t)+". Did you add it to @NgModule.entryComponents?");return e[Re]=t,e}var Re="ngComponent",Ie=function(){function t(){}return t.prototype.resolveComponentFactory=function(t){throw Ye(t)},t}(),Fe=function(){function t(){}return t.NULL=new Ie,t}(),ze=function(){function t(t,e,n){this._parent=e,this._ngModule=n,this._factories=new Map;for(var i=0;i',!this.inertBodyElement.querySelector||this.inertBodyElement.querySelector("svg")?(this.inertBodyElement.innerHTML='

',this.getInertBodyElement=this.inertBodyElement.querySelector&&this.inertBodyElement.querySelector("svg img")&&function(){try{return!!window.DOMParser}catch(t){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return t.prototype.getInertBodyElement_XHR=function(t){t=""+t+"";try{t=encodeURI(t)}catch(i){return null}var e=new XMLHttpRequest;e.responseType="document",e.open("GET","data:text/html;charset=utf-8,"+t,!1),e.send(void 0);var n=e.response.body;return n.removeChild(n.firstChild),n},t.prototype.getInertBodyElement_DOMParser=function(t){t=""+t+"";try{var e=(new window.DOMParser).parseFromString(t,"text/html").body;return e.removeChild(e.firstChild),e}catch(n){return null}},t.prototype.getInertBodyElement_InertDocument=function(t){var e=this.inertDocument.createElement("template");return"content"in e?(e.innerHTML=t,e):(this.inertBodyElement.innerHTML=t,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(this.inertBodyElement),this.inertBodyElement)},t.prototype.stripCustomNsAttrs=function(t){for(var e=t.attributes,n=e.length-1;0"),!0},t.prototype.endElement=function(t){var e=t.nodeName.toLowerCase();pn.hasOwnProperty(e)&&!un.hasOwnProperty(e)&&(this.buf.push(""))},t.prototype.chars=function(t){this.buf.push(xn(t))},t.prototype.checkClobberedElement=function(t,e){if(e&&(t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error("Failed to sanitize html because the element is clobbered: "+t.outerHTML);return e},t}(),vn=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,bn=/([^\#-~ |!])/g;function xn(t){return t.replace(/&/g,"&").replace(vn,function(t){return"&#"+(1024*(t.charCodeAt(0)-55296)+(t.charCodeAt(1)-56320)+65536)+";"}).replace(bn,function(t){return"&#"+t.charCodeAt(0)+";"}).replace(//g,">")}function wn(t){return"content"in t&&function(t){return t.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===t.nodeName}(t)?t.content:null}var kn=function(t){function e(e){void 0===e&&(e=!1);var n=t.call(this)||this;return n.__isAsync=e,n}return r(e,t),e.prototype.emit=function(e){t.prototype.next.call(this,e)},e.prototype.subscribe=function(e,n,i){var r,o=function(t){return null},a=function(){return null};e&&"object"==typeof e?(r=this.__isAsync?function(t){setTimeout(function(){return e.next(t)})}:function(t){e.next(t)},e.error&&(o=this.__isAsync?function(t){setTimeout(function(){return e.error(t)})}:function(t){e.error(t)}),e.complete&&(a=this.__isAsync?function(){setTimeout(function(){return e.complete()})}:function(){e.complete()})):(r=this.__isAsync?function(t){setTimeout(function(){return e(t)})}:function(t){e(t)},n&&(o=this.__isAsync?function(t){setTimeout(function(){return n(t)})}:function(t){n(t)}),i&&(a=this.__isAsync?function(){setTimeout(function(){return i()})}:function(){i()}));var l=t.prototype.subscribe.call(this,r,o,a);return e instanceof x&&e.add(l),l},e}(H),Mn=function(){function t(){}return t.__NG_ELEMENT_ID__=function(){return Sn(t,Ve)},t}(),Sn=he,Cn=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:calc|attr))\\([-0-9.%, #a-zA-Z]+\\))$","g"),Ln=/^url\(([^)]+)\)$/,Dn=function(){return function(){}}(),Tn=Function;function En(t){return"function"==typeof t}var An=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/,Pn=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,On=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,Yn=function(){function t(t){this._reflect=t||zt.Reflect}return t.prototype.isReflectionEnabled=function(){return!0},t.prototype.factory=function(t){return function(){for(var e=[],n=0;n0&&(r=setTimeout(function(){i._callbacks=i._callbacks.filter(function(t){return t.timeoutId!==r}),t(i._didWork,i.getPendingTasks())},e)),this._callbacks.push({doneCb:t,timeoutId:r,updateCb:n})},t.prototype.whenStable=function(t,e,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/dist/task-tracking.js" loaded?');this.addCallback(t,e,n),this._runCallbacksIfReady()},t.prototype.getPendingRequestCount=function(){return this._pendingCount},t.prototype.findProviders=function(t,e,n){return[]},t}(),Oi=function(){function t(){this._applications=new Map,Yi.addToWindow(this)}return t.prototype.registerApplication=function(t,e){this._applications.set(t,e)},t.prototype.unregisterApplication=function(t){this._applications.delete(t)},t.prototype.unregisterAllApplications=function(){this._applications.clear()},t.prototype.getTestability=function(t){return this._applications.get(t)||null},t.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},t.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},t.prototype.findTestabilityInTree=function(t,e){return void 0===e&&(e=!0),Yi.findTestabilityInTree(this,t,e)},a([s("design:paramtypes",[])],t)}(),Yi=new(function(){function t(){}return t.prototype.addToWindow=function(t){},t.prototype.findTestabilityInTree=function(t,e,n){return null},t}()),Ri=new Lt("AllowMultipleToken"),Ii=function(){return function(t,e){this.name=t,this.token=e}}();function Fi(t,e,n){void 0===n&&(n=[]);var i="Platform: "+e,r=new Lt(i);return function(e){void 0===e&&(e=[]);var o=zi();if(!o||o.injector.get(Ri,!1))if(t)t(n.concat(e).concat({provide:r,useValue:!0}));else{var a=n.concat(e).concat({provide:r,useValue:!0});!function(t){if(Ei&&!Ei.destroyed&&!Ei.injector.get(Ri,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");Ei=t.get(ji);var e=t.get(ai,null);e&&e.forEach(function(t){return t()})}(ye.create({providers:a,name:i}))}return function(t){var e=zi();if(!e)throw new Error("No platform exists!");if(!e.injector.get(t,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return e}(r)}}function zi(){return Ei&&!Ei.destroyed?Ei:null}var ji=function(){function t(t){this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return t.prototype.bootstrapModuleFactory=function(t,e){var n,i=this,r="noop"===(n=e?e.ngZone:void 0)?new Ai:("zone.js"===n?void 0:n)||new Mi({enableLongStackTrace:tn()}),o=[{provide:Mi,useValue:r}];return r.run(function(){var e=ye.create({providers:o,parent:i.injector,name:t.moduleType.name}),n=t.create(e),a=n.injector.get(Qn,null);if(!a)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return n.onDestroy(function(){return Vi(i._modules,n)}),r.runOutsideAngular(function(){return r.onError.subscribe({next:function(t){a.handleError(t)}})}),function(t,e,r){try{var o=((a=n.injector.get(ni)).runInitializers(),a.donePromise.then(function(){return i._moduleDoBootstrap(n),n}));return $n(o)?o.catch(function(n){throw e.runOutsideAngular(function(){return t.handleError(n)}),n}):o}catch(l){throw e.runOutsideAngular(function(){return t.handleError(l)}),l}var a}(a,r)})},t.prototype.bootstrapModule=function(t,e){var n=this;void 0===e&&(e=[]);var i=Hi({},e);return function(t,e,n){return t.get(_i).createCompiler([e]).compileModuleAsync(n)}(this.injector,i,t).then(function(t){return n.bootstrapModuleFactory(t,i)})},t.prototype._moduleDoBootstrap=function(t){var e=t.injector.get(Ni);if(t._bootstrapComponents.length>0)t._bootstrapComponents.forEach(function(t){return e.bootstrap(t)});else{if(!t.instance.ngDoBootstrap)throw new Error("The module "+Wt(t.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');t.instance.ngDoBootstrap(e)}this._modules.push(t)},t.prototype.onDestroy=function(t){this._destroyListeners.push(t)},Object.defineProperty(t.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(t){return t.destroy()}),this._destroyListeners.forEach(function(t){return t()}),this._destroyed=!0},Object.defineProperty(t.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),t}();function Hi(t,e){return Array.isArray(e)?e.reduce(Hi,t):o({},t,e)}var Ni=function(){function t(t,e,n,i,r,o){var a=this;this._zone=t,this._console=e,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=r,this._initStatus=o,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=tn(),this._zone.onMicrotaskEmpty.subscribe({next:function(){a._zone.run(function(){a.tick()})}});var l=new Y(function(t){a._stable=a._zone.isStable&&!a._zone.hasPendingMacrotasks&&!a._zone.hasPendingMicrotasks,a._zone.runOutsideAngular(function(){t.next(a._stable),t.complete()})}),s=new Y(function(t){var e;a._zone.runOutsideAngular(function(){e=a._zone.onStable.subscribe(function(){Mi.assertNotInAngularZone(),Vt(function(){a._stable||a._zone.hasPendingMacrotasks||a._zone.hasPendingMicrotasks||(a._stable=!0,t.next(!0))})})});var n=a._zone.onUnstable.subscribe(function(){Mi.assertInAngularZone(),a._stable&&(a._stable=!1,a._zone.runOutsideAngular(function(){t.next(!1)}))});return function(){e.unsubscribe(),n.unsubscribe()}});this.isStable=ht(l,s.pipe(bt()))}var e;return e=t,t.prototype.bootstrap=function(t,e){var n,i=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");n=t instanceof Oe?t:this._componentFactoryResolver.resolveComponentFactory(t),this.componentTypes.push(n.componentType);var r=n instanceof je?null:this._injector.get(He),o=n.create(ye.NULL,[],e||n.selector,r);o.onDestroy(function(){i._unloadComponent(o)});var a=o.injector.get(Pi,null);return a&&o.injector.get(Oi).registerApplication(o.location.nativeElement,a),this._loadComponent(o),tn()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),o},t.prototype.tick=function(){var t=this;if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");var n=e._tickScope();try{this._runningTick=!0,this._views.forEach(function(t){return t.detectChanges()}),this._enforceNoNewChanges&&this._views.forEach(function(t){return t.checkNoChanges()})}catch(i){this._zone.runOutsideAngular(function(){return t._exceptionHandler.handleError(i)})}finally{this._runningTick=!1,ki(n)}},t.prototype.attachView=function(t){var e=t;this._views.push(e),e.attachToAppRef(this)},t.prototype.detachView=function(t){var e=t;Vi(this._views,e),e.detachFromAppRef()},t.prototype._loadComponent=function(t){this.attachView(t.hostView),this.tick(),this.components.push(t),this._injector.get(si,[]).concat(this._bootstrapListeners).forEach(function(e){return e(t)})},t.prototype._unloadComponent=function(t){this.detachView(t.hostView),Vi(this.components,t)},t.prototype.ngOnDestroy=function(){this._views.slice().forEach(function(t){return t.destroy()})},Object.defineProperty(t.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),t._tickScope=wi("ApplicationRef#tick()"),t}();function Vi(t,e){var n=t.indexOf(e);n>-1&&t.splice(n,1)}var Bi=function(){function t(){this.dirty=!0,this._results=[],this.changes=new kn,this.length=0}return t.prototype.map=function(t){return this._results.map(t)},t.prototype.filter=function(t){return this._results.filter(t)},t.prototype.find=function(t){return this._results.find(t)},t.prototype.reduce=function(t,e){return this._results.reduce(t,e)},t.prototype.forEach=function(t){this._results.forEach(t)},t.prototype.some=function(t){return this._results.some(t)},t.prototype.toArray=function(){return this._results.slice()},t.prototype[Nt()]=function(){return this._results[Nt()]()},t.prototype.toString=function(){return this._results.toString()},t.prototype.reset=function(t){this._results=function t(e){return e.reduce(function(e,n){var i=Array.isArray(n)?t(n):n;return e.concat(i)},[])}(t),this.dirty=!1,this.length=this._results.length,this.last=this._results[this.length-1],this.first=this._results[0]},t.prototype.notifyOnChanges=function(){this.changes.emit(this)},t.prototype.setDirty=function(){this.dirty=!0},t.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},t}(),Wi=function(){return function(){}}(),Ui={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},Gi=function(){function t(t,e){this._compiler=t,this._config=e||Ui}return t.prototype.load=function(t){return this._compiler instanceof yi?this.loadFactory(t):this.loadAndCompile(t)},t.prototype.loadAndCompile=function(t){var e=this,i=c(t.split("#"),2),r=i[0],o=i[1];return void 0===o&&(o="default"),n("crnd")(r).then(function(t){return t[o]}).then(function(t){return qi(t,r,o)}).then(function(t){return e._compiler.compileModuleAsync(t)})},t.prototype.loadFactory=function(t){var e=c(t.split("#"),2),i=e[0],r=e[1],o="NgFactory";return void 0===r&&(r="default",o=""),n("crnd")(this._config.factoryPathPrefix+i+this._config.factoryPathSuffix).then(function(t){return t[r+o]}).then(function(t){return qi(t,i,r)})},t}();function qi(t,e,n){if(!t)throw new Error("Cannot find '"+n+"' in '"+e+"'");return t}var Xi=function(){function t(){}return t.__NG_ELEMENT_ID__=function(){return Ki(t,Ve)},t}(),Ki=he,Zi=function(){function t(){}return t.__NG_ELEMENT_ID__=function(){return Ji()},t}(),Ji=function(){for(var t=[],e=0;e-1}(i)||"root"===r.providedIn&&i._def.isRoot))){var c=t._providers.length;return t._def.providersByKey[e.tokenKey]={flags:5120,value:l.factory,deps:[],index:c,token:e.token},t._providers[c]=wo,t._providers[c]=Do(t,t._def.providersByKey[e.tokenKey])}return 4&e.flags?n:t._parent.get(e.token,n)}finally{ne(o)}}function Do(t,e){var n;switch(201347067&e.flags){case 512:n=function(t,e,n){var i=n.length;switch(i){case 0:return new e;case 1:return new e(Lo(t,n[0]));case 2:return new e(Lo(t,n[0]),Lo(t,n[1]));case 3:return new e(Lo(t,n[0]),Lo(t,n[1]),Lo(t,n[2]));default:for(var r=new Array(i),o=0;o=n.length)&&(e=n.length-1),e<0)return null;var i=n[e];return i.viewContainerParent=null,Oo(n,e),Pr.dirtyParentQueries(i),Ao(i),i}function Eo(t,e,n){var i=e?Qr(e,e.def.lastRenderRootNode):t.renderElement,r=n.renderer.parentNode(i),o=n.renderer.nextSibling(i);lo(n,2,r,o,void 0)}function Ao(t){lo(t,3,null,null,void 0)}function Po(t,e,n){e>=t.length?t.push(n):t.splice(e,0,n)}function Oo(t,e){e>=t.length-1?t.pop():t.splice(e,1)}var Yo=new Object;function Ro(t,e,n,i,r,o){return new Io(t,e,n,i,r,o)}var Io=function(t){function e(e,n,i,r,o,a){var l=t.call(this)||this;return l.selector=e,l.componentType=n,l._inputs=r,l._outputs=o,l.ngContentSelectors=a,l.viewDefFactory=i,l}return r(e,t),Object.defineProperty(e.prototype,"inputs",{get:function(){var t=[],e=this._inputs;for(var n in e)t.push({propName:n,templateName:e[n]});return t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"outputs",{get:function(){var t=[];for(var e in this._outputs)t.push({propName:e,templateName:this._outputs[e]});return t},enumerable:!0,configurable:!0}),e.prototype.create=function(t,e,n,i){if(!i)throw new Error("ngModule should be provided");var r=ao(this.viewDefFactory),o=r.nodes[0].element.componentProvider.nodeIndex,a=Pr.createRootView(t,e||[],n,r,i,Yo),l=Tr(a,o).instance;return n&&a.renderer.setAttribute(Dr(a,0).renderElement,"ng-version",Je.full),new Fo(a,new No(a),l)},e}(Oe),Fo=function(t){function e(e,n,i){var r=t.call(this)||this;return r._view=e,r._viewRef=n,r._component=i,r._elDef=r._view.def.nodes[0],r.hostView=n,r.changeDetectorRef=n,r.instance=i,r}return r(e,t),Object.defineProperty(e.prototype,"location",{get:function(){return new Ve(Dr(this._view,this._elDef.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new Uo(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){this._viewRef.destroy()},e.prototype.onDestroy=function(t){this._viewRef.onDestroy(t)},e}(Pe);function zo(t,e,n){return new jo(t,e,n)}var jo=function(){function t(t,e,n){this._view=t,this._elDef=e,this._data=n,this._embeddedViews=[]}return Object.defineProperty(t.prototype,"element",{get:function(){return new Ve(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new Uo(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parentInjector",{get:function(){for(var t=this._view,e=this._elDef.parent;!e&&t;)e=Jr(t),t=t.parent;return t?new Uo(t,e):new Uo(this._view,null)},enumerable:!0,configurable:!0}),t.prototype.clear=function(){for(var t=this._embeddedViews.length-1;t>=0;t--){var e=To(this._data,t);Pr.destroyView(e)}},t.prototype.get=function(t){var e=this._embeddedViews[t];if(e){var n=new No(e);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(t.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),t.prototype.createEmbeddedView=function(t,e,n){var i=t.createEmbeddedView(e||{});return this.insert(i,n),i},t.prototype.createComponent=function(t,e,n,i,r){var o=n||this.parentInjector;r||t instanceof je||(r=o.get(He));var a=t.create(o,i,void 0,r);return this.insert(a.hostView,e),a},t.prototype.insert=function(t,e){if(t.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n,i,r,o,a=t;return o=(n=this._data).viewContainer._embeddedViews,null==(i=e)&&(i=o.length),(r=a._view).viewContainerParent=this._view,Po(o,i,r),function(t,e){var n=Zr(e);if(n&&n!==t&&!(16&e.state)){e.state|=16;var i=n.template._projectedViews;i||(i=n.template._projectedViews=[]),i.push(e),function(t,n){if(!(4&n.flags)){e.parent.def.nodeFlags|=4,n.flags|=4;for(var i=n.parent;i;)i.childFlags|=4,i=i.parent}}(0,e.parentNodeDef)}}(n,r),Pr.dirtyParentQueries(r),Eo(n,i>0?o[i-1]:null,r),a.attachToViewContainerRef(this),t},t.prototype.move=function(t,e){if(t.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n,i,r,o,a,l=this._embeddedViews.indexOf(t._view);return r=e,a=(o=(n=this._data).viewContainer._embeddedViews)[i=l],Oo(o,i),null==r&&(r=o.length),Po(o,r,a),Pr.dirtyParentQueries(a),Ao(a),Eo(n,r>0?o[r-1]:null,a),t},t.prototype.indexOf=function(t){return this._embeddedViews.indexOf(t._view)},t.prototype.remove=function(t){var e=To(this._data,t);e&&Pr.destroyView(e)},t.prototype.detach=function(t){var e=To(this._data,t);return e?new No(e):null},t}();function Ho(t){return new No(t)}var No=function(){function t(t){this._view=t,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(t.prototype,"rootNodes",{get:function(){return lo(this._view,0,void 0,void 0,t=[]),t;var t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"destroyed",{get:function(){return 0!=(128&this._view.state)},enumerable:!0,configurable:!0}),t.prototype.markForCheck=function(){qr(this._view)},t.prototype.detach=function(){this._view.state&=-5},t.prototype.detectChanges=function(){var t=this._view.root.rendererFactory;t.begin&&t.begin();try{Pr.checkAndUpdateView(this._view)}finally{t.end&&t.end()}},t.prototype.checkNoChanges=function(){Pr.checkNoChangesView(this._view)},t.prototype.reattach=function(){this._view.state|=4},t.prototype.onDestroy=function(t){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(t)},t.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),Pr.destroyView(this._view)},t.prototype.detachFromAppRef=function(){this._appRef=null,Ao(this._view),Pr.dirtyParentQueries(this._view)},t.prototype.attachToAppRef=function(t){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=t},t.prototype.attachToViewContainerRef=function(t){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=t},t}();function Vo(t,e){return new Bo(t,e)}var Bo=function(t){function e(e,n){var i=t.call(this)||this;return i._parentView=e,i._def=n,i}return r(e,t),e.prototype.createEmbeddedView=function(t){return new No(Pr.createEmbeddedView(this._parentView,this._def,this._def.element.template,t))},Object.defineProperty(e.prototype,"elementRef",{get:function(){return new Ve(Dr(this._parentView,this._def.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),e}(Mn);function Wo(t,e){return new Uo(t,e)}var Uo=function(){function t(t,e){this.view=t,this.elDef=e}return t.prototype.get=function(t,e){return void 0===e&&(e=ye.THROW_IF_NOT_FOUND),Pr.resolveDep(this.view,this.elDef,!!this.elDef&&0!=(33554432&this.elDef.flags),{flags:0,token:t,tokenKey:zr(t)},e)},t}();function Go(t,e){var n=t.def.nodes[e];if(1&n.flags){var i=Dr(t,n.nodeIndex);return n.element.template?i.template:i.renderElement}if(2&n.flags)return Lr(t,n.nodeIndex).renderText;if(20240&n.flags)return Tr(t,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+e)}function qo(t){return new Xo(t.renderer)}var Xo=function(){function t(t){this.delegate=t}return t.prototype.selectRootElement=function(t){return this.delegate.selectRootElement(t)},t.prototype.createElement=function(t,e){var n=c(fo(e),2),i=this.delegate.createElement(n[1],n[0]);return t&&this.delegate.appendChild(t,i),i},t.prototype.createViewRoot=function(t){return t},t.prototype.createTemplateAnchor=function(t){var e=this.delegate.createComment("");return t&&this.delegate.appendChild(t,e),e},t.prototype.createText=function(t,e){var n=this.delegate.createText(e);return t&&this.delegate.appendChild(t,n),n},t.prototype.projectNodes=function(t,e){for(var n=0;n0,e.provider.value,e.provider.deps);if(e.outputs.length)for(var i=0;i0,i=e.provider;switch(201347067&e.flags){case 512:return fa(t,e.parent,n,i.value,i.deps);case 1024:return function(t,e,n,i,r){var o=r.length;switch(o){case 0:return i();case 1:return i(ga(t,e,n,r[0]));case 2:return i(ga(t,e,n,r[0]),ga(t,e,n,r[1]));case 3:return i(ga(t,e,n,r[0]),ga(t,e,n,r[1]),ga(t,e,n,r[2]));default:for(var a=Array(o),l=0;l0)u=m,Fa(m)||(c=m);else for(;u&&f===u.nodeIndex+u.childCount;){var _=u.parent;_&&(_.childFlags|=u.childFlags,_.childMatchedQueries|=u.childMatchedQueries),c=(u=_)&&Fa(u)?u.renderParent:u}}return{factory:null,nodeFlags:a,rootNodeFlags:l,nodeMatchedQueries:s,flags:t,nodes:e,updateDirectives:n||Ir,updateRenderer:i||Ir,handleEvent:function(t,n,i,r){return e[n].element.handleEvent(t,i,r)},bindingCount:r,outputCount:o,lastRenderRootNode:p}}function Fa(t){return 0!=(1&t.flags)&&null===t.element.name}function za(t,e,n){var i=e.element&&e.element.template;if(i){if(!i.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(i.lastRenderRootNode&&16777216&i.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+e.nodeIndex+"!")}if(20224&e.flags&&0==(1&(t?t.flags:0)))throw new Error("Illegal State: StaticProvider/Directive nodes need to be children of elements or anchors, at index "+e.nodeIndex+"!");if(e.query){if(67108864&e.flags&&(!t||0==(16384&t.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+e.nodeIndex+"!");if(134217728&e.flags&&t)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+e.nodeIndex+"!")}if(e.childCount){var r=t?t.nodeIndex+t.childCount:n-1;if(e.nodeIndex<=r&&e.nodeIndex+e.childCount>r)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+e.nodeIndex+"!")}}function ja(t,e,n,i){var r=Va(t.root,t.renderer,t,e,n);return Ba(r,t.component,i),Wa(r),r}function Ha(t,e,n){var i=Va(t,t.renderer,null,null,e);return Ba(i,n,n),Wa(i),i}function Na(t,e,n,i){var r,o=e.element.componentRendererType;return r=o?t.root.rendererFactory.createRenderer(i,o):t.root.renderer,Va(t.root,r,t,e.element.componentProvider,n)}function Va(t,e,n,i,r){var o=new Array(r.nodes.length),a=r.outputCount?new Array(r.outputCount):null;return{def:r,parent:n,viewContainerParent:null,parentNodeDef:i,context:null,component:null,nodes:o,state:13,root:t,renderer:e,oldValues:new Array(r.bindingCount),disposables:a,initIndex:-1}}function Ba(t,e,n){t.component=e,t.context=n}function Wa(t){var e;$r(t)&&(e=Dr(t.parent,t.parentNodeDef.parent.nodeIndex).renderElement);for(var n=t.def,i=t.nodes,r=0;r0&&xo(t,e,0,n)&&(p=!0),h>1&&xo(t,e,1,i)&&(p=!0),h>2&&xo(t,e,2,r)&&(p=!0),h>3&&xo(t,e,3,o)&&(p=!0),h>4&&xo(t,e,4,a)&&(p=!0),h>5&&xo(t,e,5,l)&&(p=!0),h>6&&xo(t,e,6,s)&&(p=!0),h>7&&xo(t,e,7,u)&&(p=!0),h>8&&xo(t,e,8,c)&&(p=!0),h>9&&xo(t,e,9,d)&&(p=!0),p}(t,e,n,i,r,o,a,l,s,u,c,d);case 2:return function(t,e,n,i,r,o,a,l,s,u,c,d){var h=!1,p=e.bindings,f=p.length;if(f>0&&Ur(t,e,0,n)&&(h=!0),f>1&&Ur(t,e,1,i)&&(h=!0),f>2&&Ur(t,e,2,r)&&(h=!0),f>3&&Ur(t,e,3,o)&&(h=!0),f>4&&Ur(t,e,4,a)&&(h=!0),f>5&&Ur(t,e,5,l)&&(h=!0),f>6&&Ur(t,e,6,s)&&(h=!0),f>7&&Ur(t,e,7,u)&&(h=!0),f>8&&Ur(t,e,8,c)&&(h=!0),f>9&&Ur(t,e,9,d)&&(h=!0),h){var m=e.text.prefix;f>0&&(m+=Ra(n,p[0])),f>1&&(m+=Ra(i,p[1])),f>2&&(m+=Ra(r,p[2])),f>3&&(m+=Ra(o,p[3])),f>4&&(m+=Ra(a,p[4])),f>5&&(m+=Ra(l,p[5])),f>6&&(m+=Ra(s,p[6])),f>7&&(m+=Ra(u,p[7])),f>8&&(m+=Ra(c,p[8])),f>9&&(m+=Ra(d,p[9]));var g=Lr(t,e.nodeIndex).renderText;t.renderer.setValue(g,m)}return h}(t,e,n,i,r,o,a,l,s,u,c,d);case 16384:return function(t,e,n,i,r,o,a,l,s,u,c,d){var h=Tr(t,e.nodeIndex),p=h.instance,f=!1,m=void 0,g=e.bindings.length;return g>0&&Wr(t,e,0,n)&&(f=!0,m=_a(t,h,e,0,n,m)),g>1&&Wr(t,e,1,i)&&(f=!0,m=_a(t,h,e,1,i,m)),g>2&&Wr(t,e,2,r)&&(f=!0,m=_a(t,h,e,2,r,m)),g>3&&Wr(t,e,3,o)&&(f=!0,m=_a(t,h,e,3,o,m)),g>4&&Wr(t,e,4,a)&&(f=!0,m=_a(t,h,e,4,a,m)),g>5&&Wr(t,e,5,l)&&(f=!0,m=_a(t,h,e,5,l,m)),g>6&&Wr(t,e,6,s)&&(f=!0,m=_a(t,h,e,6,s,m)),g>7&&Wr(t,e,7,u)&&(f=!0,m=_a(t,h,e,7,u,m)),g>8&&Wr(t,e,8,c)&&(f=!0,m=_a(t,h,e,8,c,m)),g>9&&Wr(t,e,9,d)&&(f=!0,m=_a(t,h,e,9,d,m)),m&&p.ngOnChanges(m),65536&e.flags&&Cr(t,256,e.nodeIndex)&&p.ngOnInit(),262144&e.flags&&p.ngDoCheck(),f}(t,e,n,i,r,o,a,l,s,u,c,d);case 32:case 64:case 128:return function(t,e,n,i,r,o,a,l,s,u,c,d){var h=e.bindings,p=!1,f=h.length;if(f>0&&Ur(t,e,0,n)&&(p=!0),f>1&&Ur(t,e,1,i)&&(p=!0),f>2&&Ur(t,e,2,r)&&(p=!0),f>3&&Ur(t,e,3,o)&&(p=!0),f>4&&Ur(t,e,4,a)&&(p=!0),f>5&&Ur(t,e,5,l)&&(p=!0),f>6&&Ur(t,e,6,s)&&(p=!0),f>7&&Ur(t,e,7,u)&&(p=!0),f>8&&Ur(t,e,8,c)&&(p=!0),f>9&&Ur(t,e,9,d)&&(p=!0),p){var m=Er(t,e.nodeIndex),g=void 0;switch(201347067&e.flags){case 32:g=new Array(h.length),f>0&&(g[0]=n),f>1&&(g[1]=i),f>2&&(g[2]=r),f>3&&(g[3]=o),f>4&&(g[4]=a),f>5&&(g[5]=l),f>6&&(g[6]=s),f>7&&(g[7]=u),f>8&&(g[8]=c),f>9&&(g[9]=d);break;case 64:g={},f>0&&(g[h[0].name]=n),f>1&&(g[h[1].name]=i),f>2&&(g[h[2].name]=r),f>3&&(g[h[3].name]=o),f>4&&(g[h[4].name]=a),f>5&&(g[h[5].name]=l),f>6&&(g[h[6].name]=s),f>7&&(g[h[7].name]=u),f>8&&(g[h[8].name]=c),f>9&&(g[h[9].name]=d);break;case 128:var y=n;switch(f){case 1:g=y.transform(n);break;case 2:g=y.transform(i);break;case 3:g=y.transform(i,r);break;case 4:g=y.transform(i,r,o);break;case 5:g=y.transform(i,r,o,a);break;case 6:g=y.transform(i,r,o,a,l);break;case 7:g=y.transform(i,r,o,a,l,s);break;case 8:g=y.transform(i,r,o,a,l,s,u);break;case 9:g=y.transform(i,r,o,a,l,s,u,c);break;case 10:g=y.transform(i,r,o,a,l,s,u,c,d)}}m.value=g}return p}(t,e,n,i,r,o,a,l,s,u,c,d);default:throw"unreachable"}}(t,e,i,r,o,a,l,s,u,c,h,p):function(t,e,n){switch(201347067&e.flags){case 1:return function(t,e,n){for(var i=!1,r=0;r0&&Gr(t,e,0,n),h>1&&Gr(t,e,1,i),h>2&&Gr(t,e,2,r),h>3&&Gr(t,e,3,o),h>4&&Gr(t,e,4,a),h>5&&Gr(t,e,5,l),h>6&&Gr(t,e,6,s),h>7&&Gr(t,e,7,u),h>8&&Gr(t,e,8,c),h>9&&Gr(t,e,9,d)}(t,e,i,r,o,a,l,s,u,c,d,h):function(t,e,n){for(var i=0;i0){var o=new Set(t.modules);hl.forEach(function(e,i){if(o.has(Ct(i).providedIn)){var r={token:i,flags:e.flags|(n?4096:0),deps:io(e.deps),value:e.value,index:t.providers.length};t.providers.push(r),t.providersByKey[zr(i)]=r}})}}(t=t.factory(function(){return Ir})),t):t}(i))}var dl=new Map,hl=new Map,pl=new Map;function fl(t){var e;dl.set(t.token,t),"function"==typeof t.token&&(e=Ct(t.token))&&"function"==typeof e.providedIn&&hl.set(t.token,t)}function ml(t,e){var n=ao(e.viewDefFactory),i=ao(n.nodes[0].element.componentView);pl.set(t,i)}function gl(){dl.clear(),hl.clear(),pl.clear()}function yl(t){if(0===dl.size)return t;var e=function(t){for(var e=[],n=null,i=0;i0?e.substring(1):e},e.prototype.prepareExternalUrl=function(t){var e=Xl.joinWithSlash(this._baseHref,t);return e.length>0?"#"+e:e},e.prototype.pushState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));0==r.length&&(r=this._platformLocation.pathname),this._platformLocation.pushState(t,e,r)},e.prototype.replaceState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));0==r.length&&(r=this._platformLocation.pathname),this._platformLocation.replaceState(t,e,r)},e.prototype.forward=function(){this._platformLocation.forward()},e.prototype.back=function(){this._platformLocation.back()},e}(Gl),Jl=function(t){function e(e,n){var i=t.call(this)||this;if(i._platformLocation=e,null==n&&(n=i._platformLocation.getBaseHrefFromDOM()),null==n)throw new Error("No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.");return i._baseHref=n,i}return r(e,t),e.prototype.onPopState=function(t){this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t)},e.prototype.getBaseHref=function(){return this._baseHref},e.prototype.prepareExternalUrl=function(t){return Xl.joinWithSlash(this._baseHref,t)},e.prototype.path=function(t){void 0===t&&(t=!1);var e=this._platformLocation.pathname+Xl.normalizeQueryParams(this._platformLocation.search),n=this._platformLocation.hash;return n&&t?""+e+n:e},e.prototype.pushState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));this._platformLocation.pushState(t,e,r)},e.prototype.replaceState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));this._platformLocation.replaceState(t,e,r)},e.prototype.forward=function(){this._platformLocation.forward()},e.prototype.back=function(){this._platformLocation.back()},e}(Gl),Ql=void 0,$l=["en",[["a","p"],["AM","PM"],Ql],[["AM","PM"],Ql,Ql],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Ql,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Ql,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",Ql,"{1} 'at' {0}",Ql],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"$","US Dollar",{},function(t){var e=Math.floor(Math.abs(t)),n=t.toString().replace(/^[^.]*\.?/,"").length;return 1===e&&0===n?1:5}],ts={},es=function(t){return t[t.Decimal=0]="Decimal",t[t.Percent=1]="Percent",t[t.Currency=2]="Currency",t[t.Scientific=3]="Scientific",t}({}),ns=function(t){return t[t.Zero=0]="Zero",t[t.One=1]="One",t[t.Two=2]="Two",t[t.Few=3]="Few",t[t.Many=4]="Many",t[t.Other=5]="Other",t}({}),is=function(t){return t[t.Decimal=0]="Decimal",t[t.Group=1]="Group",t[t.List=2]="List",t[t.PercentSign=3]="PercentSign",t[t.PlusSign=4]="PlusSign",t[t.MinusSign=5]="MinusSign",t[t.Exponential=6]="Exponential",t[t.SuperscriptingExponent=7]="SuperscriptingExponent",t[t.PerMille=8]="PerMille",t[t[1/0]=9]="Infinity",t[t.NaN=10]="NaN",t[t.TimeSeparator=11]="TimeSeparator",t[t.CurrencyDecimal=12]="CurrencyDecimal",t[t.CurrencyGroup=13]="CurrencyGroup",t}({});function rs(t,e){var n=os(t),i=n[13][e];if(void 0===i){if(e===is.CurrencyDecimal)return n[13][is.Decimal];if(e===is.CurrencyGroup)return n[13][is.Group]}return i}function os(t){var e=t.toLowerCase().replace(/_/g,"-"),n=ts[e];if(n)return n;var i=e.split("-")[0];if(n=ts[i])return n;if("en"===i)return $l;throw new Error('Missing locale data for the locale "'+t+'".')}var as=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function ls(t){var e=parseInt(t);if(isNaN(e))throw new Error("Invalid integer literal when parsing "+t);return e}var ss=new Lt("UseV4Plurals"),us=function(){return function(){}}(),cs=function(t){function e(e,n){var i=t.call(this)||this;return i.locale=e,i.deprecatedPluralFn=n,i}return r(e,t),e.prototype.getPluralCategory=function(t,e){switch(this.deprecatedPluralFn?this.deprecatedPluralFn(e||this.locale,t):function(t){return os(t)[18]}(e||this.locale)(t)){case ns.Zero:return"zero";case ns.One:return"one";case ns.Two:return"two";case ns.Few:return"few";case ns.Many:return"many";default:return"other"}},e}(us);function ds(t,e){var n,i;e=encodeURIComponent(e);try{for(var r=u(t.split(";")),o=r.next();!o.done;o=r.next()){var a=o.value,l=a.indexOf("="),s=c(-1==l?[a,""]:[a.slice(0,l),a.slice(l+1)],2),d=s[1];if(s[0].trim()===e)return decodeURIComponent(d)}}catch(h){n={error:h}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}return null}var hs=function(){function t(t,e,n,i){this._iterableDiffers=t,this._keyValueDiffers=e,this._ngEl=n,this._renderer=i,this._initialClasses=[]}return Object.defineProperty(t.prototype,"klass",{set:function(t){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof t?t.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClass",{set:function(t){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof t?t.split(/\s+/):t,this._rawClass&&(ce(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())},enumerable:!0,configurable:!0}),t.prototype.ngDoCheck=function(){if(this._iterableDiffer){var t=this._iterableDiffer.diff(this._rawClass);t&&this._applyIterableChanges(t)}else if(this._keyValueDiffer){var e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}},t.prototype._applyKeyValueChanges=function(t){var e=this;t.forEachAddedItem(function(t){return e._toggleClass(t.key,t.currentValue)}),t.forEachChangedItem(function(t){return e._toggleClass(t.key,t.currentValue)}),t.forEachRemovedItem(function(t){t.previousValue&&e._toggleClass(t.key,!1)})},t.prototype._applyIterableChanges=function(t){var e=this;t.forEachAddedItem(function(t){if("string"!=typeof t.item)throw new Error("NgClass can only toggle CSS classes expressed as strings, got "+Wt(t.item));e._toggleClass(t.item,!0)}),t.forEachRemovedItem(function(t){return e._toggleClass(t.item,!1)})},t.prototype._applyClasses=function(t){var e=this;t&&(Array.isArray(t)||t instanceof Set?t.forEach(function(t){return e._toggleClass(t,!0)}):Object.keys(t).forEach(function(n){return e._toggleClass(n,!!t[n])}))},t.prototype._removeClasses=function(t){var e=this;t&&(Array.isArray(t)||t instanceof Set?t.forEach(function(t){return e._toggleClass(t,!1)}):Object.keys(t).forEach(function(t){return e._toggleClass(t,!1)}))},t.prototype._toggleClass=function(t,e){var n=this;(t=t.trim())&&t.split(/\s+/g).forEach(function(t){e?n._renderer.addClass(n._ngEl.nativeElement,t):n._renderer.removeClass(n._ngEl.nativeElement,t)})},t}(),ps=function(){function t(t,e,n,i){this.$implicit=t,this.ngForOf=e,this.index=n,this.count=i}return Object.defineProperty(t.prototype,"first",{get:function(){return 0===this.index},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"last",{get:function(){return this.index===this.count-1},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"even",{get:function(){return this.index%2==0},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"odd",{get:function(){return!this.even},enumerable:!0,configurable:!0}),t}(),fs=function(){function t(t,e,n){this._viewContainer=t,this._template=e,this._differs=n,this._ngForOfDirty=!0,this._differ=null}return Object.defineProperty(t.prototype,"ngForOf",{set:function(t){this._ngForOf=t,this._ngForOfDirty=!0},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngForTrackBy",{get:function(){return this._trackByFn},set:function(t){tn()&&null!=t&&"function"!=typeof t&&console&&console.warn&&console.warn("trackBy must be a function, but received "+JSON.stringify(t)+". See https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html#!#change-propagation for more information."),this._trackByFn=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngForTemplate",{set:function(t){t&&(this._template=t)},enumerable:!0,configurable:!0}),t.prototype.ngDoCheck=function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var t=this._ngForOf;if(!this._differ&&t)try{this._differ=this._differs.find(t).create(this.ngForTrackBy)}catch(i){throw new Error("Cannot find a differ supporting object '"+t+"' of type '"+((e=t).name||typeof e)+"'. NgFor only supports binding to Iterables such as Arrays.")}}var e;if(this._differ){var n=this._differ.diff(this._ngForOf);n&&this._applyChanges(n)}},t.prototype._applyChanges=function(t){var e=this,n=[];t.forEachOperation(function(t,i,r){if(null==t.previousIndex){var o=e._viewContainer.createEmbeddedView(e._template,new ps(null,e._ngForOf,-1,-1),r),a=new ms(t,o);n.push(a)}else null==r?e._viewContainer.remove(i):(o=e._viewContainer.get(i),e._viewContainer.move(o,r),a=new ms(t,o),n.push(a))});for(var i=0;i-1&&(l=l.replace(".","")),(r=l.search(/e/i))>0?(i<0&&(i=r),i+=+l.slice(r+1),l=l.substring(0,r)):i<0&&(i=l.length),r=0;"0"===l.charAt(r);r++);if(r===(a=l.length))n=[0],i=1;else{for(a--;"0"===l.charAt(a);)a--;for(i-=r,n=[],o=0;r<=a;r++,o++)n[o]=Number(l.charAt(r))}return i>22&&(n=n.splice(0,21),s=i-1,i=1),{digits:n,exponent:s,integerLen:i}}();a&&(u=function(t){if(0===t.digits[0])return t;var e=t.digits.length-t.integerLen;return t.exponent?t.exponent+=2:(0===e?t.digits.push(0,0):1===e&&t.digits.push(0),t.integerLen+=2),t}(u));var c=e.minInt,d=e.minFrac,h=e.maxFrac;if(o){var p=o.match(as);if(null===p)throw new Error(o+" is not a valid digit info");var f=p[1],m=p[3],g=p[5];null!=f&&(c=ls(f)),null!=m&&(d=ls(m)),null!=g?h=ls(g):null!=m&&d>h&&(h=d)}!function(t,e,n){if(e>n)throw new Error("The minimum number of digits after fraction ("+e+") is higher than the maximum ("+n+").");var i=t.digits,r=i.length-t.integerLen,o=Math.min(Math.max(e,r),n),a=o+t.integerLen,l=i[a];if(a>0){i.splice(Math.max(t.integerLen,a));for(var s=a;s=5)if(a-1<0){for(var c=0;c>a;c--)i.unshift(0),t.integerLen++;i.unshift(1),t.integerLen++}else i[a-1]++;for(;r=h?i.pop():d=!1),e>=10?1:0},0);p&&(i.unshift(p),t.integerLen++)}(u,d,h);var y=u.digits,_=u.integerLen,v=u.exponent,b=[];for(s=y.every(function(t){return!t});_0?b=y.splice(_,y.length):(b=y,y=[0]);var x=[];for(y.length>=e.lgSize&&x.unshift(y.splice(-e.lgSize,y.length).join(""));y.length>e.gSize;)x.unshift(y.splice(-e.gSize,y.length).join(""));y.length&&x.unshift(y.join("")),l=x.join(rs(n,i)),b.length&&(l+=rs(n,r)+b.join("")),v&&(l+=rs(n,is.Exponential)+"+"+v)}else l=rs(n,is.Infinity);return t<0&&!s?e.negPre+l+e.negSuf:e.posPre+l+e.posSuf}(t,function(t,e){void 0===e&&(e="-");var n={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},i=t.split(";"),r=i[0],o=i[1],a=-1!==r.indexOf(".")?r.split("."):[r.substring(0,r.lastIndexOf("0")+1),r.substring(r.lastIndexOf("0")+1)],l=a[0],s=a[1]||"";n.posPre=l.substr(0,l.indexOf("#"));for(var u=0;u0},e.prototype.tagName=function(t){return t.tagName},e.prototype.attributeMap=function(t){for(var e=new Map,n=t.attributes,i=0;i0;a||(a=t[o]=[]);var s=Su(e)?Zone.root:Zone.current;if(0===a.length)a.push({zone:s,handler:r});else{for(var u=!1,c=0;c-1},e}(ru),Ou=["alt","control","meta","shift"],Yu={alt:function(t){return t.altKey},control:function(t){return t.ctrlKey},meta:function(t){return t.metaKey},shift:function(t){return t.shiftKey}},Ru=function(t){function e(e){return t.call(this,e)||this}var n;return r(e,t),n=e,e.prototype.supports=function(t){return null!=n.parseEventName(t)},e.prototype.addEventListener=function(t,e,i){var r=n.parseEventName(e),o=n.eventCallback(r.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(function(){return js().onAndCancel(t,r.domEventName,o)})},e.parseEventName=function(t){var e=t.toLowerCase().split("."),i=e.shift();if(0===e.length||"keydown"!==i&&"keyup"!==i)return null;var r=n._normalizeKey(e.pop()),o="";if(Ou.forEach(function(t){var n=e.indexOf(t);n>-1&&(e.splice(n,1),o+=t+".")}),o+=r,0!=e.length||0===r.length)return null;var a={};return a.domEventName=i,a.fullKey=o,a},e.getEventFullKey=function(t){var e="",n=js().getEventKey(t);return" "===(n=n.toLowerCase())?n="space":"."===n&&(n="dot"),Ou.forEach(function(i){i!=n&&(0,Yu[i])(t)&&(e+=i+".")}),e+=n},e.eventCallback=function(t,e,i){return function(r){n.getEventFullKey(r)===t&&i.runGuarded(function(){return e(r)})}},e._normalizeKey=function(t){switch(t){case"esc":return"escape";default:return t}},e}(ru),Iu=function(){return function(){}}(),Fu=function(t){function e(e){var n=t.call(this)||this;return n._doc=e,n}return r(e,t),e.prototype.sanitize=function(t,e){if(null==e)return null;switch(t){case Ke.NONE:return e;case Ke.HTML:return e instanceof ju?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"HTML"),function(t,e){var n=null;try{sn=sn||new en(t);var i=e?String(e):"";n=sn.getInertBodyElement(i);var r=5,o=i;do{if(0===r)throw new Error("Failed to sanitize html because the input is unstable");r--,i=o,o=n.innerHTML,n=sn.getInertBodyElement(i)}while(i!==o);var a=new _n,l=a.sanitizeChildren(wn(n)||n);return tn()&&a.sanitizedSomething&&console.warn("WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss"),l}finally{if(n)for(var s=wn(n)||n;s.firstChild;)s.removeChild(s.firstChild)}}(this._doc,String(e)));case Ke.STYLE:return e instanceof Hu?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"Style"),function(t){if(!(t=String(t).trim()))return"";var e=t.match(Ln);return e&&on(e[1])===e[1]||t.match(Cn)&&function(t){for(var e=!0,n=!0,i=0;i0?ot(t,n):uc(n):lc(t[0]),e)}}var pc=27;function fc(t){for(var e=[],n=1;n-1&&n!==e._activeItemIndex&&(e._activeItemIndex=n)}})}return t.prototype.skipPredicate=function(t){return this._skipPredicateFn=t,this},t.prototype.withWrap=function(t){return void 0===t&&(t=!0),this._wrap=t,this},t.prototype.withVerticalOrientation=function(t){return void 0===t&&(t=!0),this._vertical=t,this},t.prototype.withHorizontalOrientation=function(t){return this._horizontal=t,this},t.prototype.withAllowedModifierKeys=function(t){return this._allowedModifierKeys=t,this},t.prototype.withTypeAhead=function(t){var e=this;if(void 0===t&&(t=200),this._items.length&&this._items.some(function(t){return"function"!=typeof t.getLabel}))throw Error("ListKeyManager items in typeahead mode must implement the `getLabel` method.");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(mc(function(t){return e._pressedLetters.push(t)}),wc(t),Cc(function(){return e._pressedLetters.length>0}),nt(function(){return e._pressedLetters.join("")})).subscribe(function(t){for(var n=e._getItemsArray(),i=1;i-1});switch(n){case 9:return void this.tabOut.next();case 40:if(this._vertical&&i){this.setNextItemActive();break}return;case 38:if(this._vertical&&i){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&i){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&i){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((i||fc(t,"shiftKey"))&&(t.key&&1===t.key.length?this._letterKeyStream.next(t.key.toLocaleUpperCase()):(n>=65&&n<=90||n>=48&&n<=57)&&this._letterKeyStream.next(String.fromCharCode(n))))}this._pressedLetters=[],t.preventDefault()},Object.defineProperty(t.prototype,"activeItemIndex",{get:function(){return this._activeItemIndex},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activeItem",{get:function(){return this._activeItem},enumerable:!0,configurable:!0}),t.prototype.setFirstItemActive=function(){this._setActiveItemByIndex(0,1)},t.prototype.setLastItemActive=function(){this._setActiveItemByIndex(this._items.length-1,-1)},t.prototype.setNextItemActive=function(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)},t.prototype.setPreviousItemActive=function(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)},t.prototype.updateActiveItem=function(t){var e=this._getItemsArray(),n="number"==typeof t?t:e.indexOf(t),i=e[n];this._activeItem=null==i?null:i,this._activeItemIndex=n},t.prototype.updateActiveItemIndex=function(t){this.updateActiveItem(t)},t.prototype._setActiveItemByDelta=function(t){this._wrap?this._setActiveInWrapMode(t):this._setActiveInDefaultMode(t)},t.prototype._setActiveInWrapMode=function(t){for(var e=this._getItemsArray(),n=1;n<=e.length;n++){var i=(this._activeItemIndex+t*n+e.length)%e.length;if(!this._skipPredicateFn(e[i]))return void this.setActiveItem(i)}},t.prototype._setActiveInDefaultMode=function(t){this._setActiveItemByIndex(this._activeItemIndex+t,t)},t.prototype._setActiveItemByIndex=function(t,e){var n=this._getItemsArray();if(n[t]){for(;this._skipPredicateFn(n[t]);)if(!n[t+=e])return;this.setActiveItem(t)}},t.prototype._getItemsArray=function(){return this._items instanceof Bi?this._items.toArray():this._items},t}(),Hc=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.setActiveItem=function(e){this.activeItem&&this.activeItem.setInactiveStyles(),t.prototype.setActiveItem.call(this,e),this.activeItem&&this.activeItem.setActiveStyles()},e}(jc),Nc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._origin="program",e}return r(e,t),e.prototype.setFocusOrigin=function(t){return this._origin=t,this},e.prototype.setActiveItem=function(e){t.prototype.setActiveItem.call(this,e),this.activeItem&&this.activeItem.focus(this._origin)},e}(jc),Vc=function(){function t(t){this._platform=t}return t.prototype.isDisabled=function(t){return t.hasAttribute("disabled")},t.prototype.isVisible=function(t){return function(t){return!!(t.offsetWidth||t.offsetHeight||"function"==typeof t.getClientRects&&t.getClientRects().length)}(t)&&"visible"===getComputedStyle(t).visibility},t.prototype.isTabbable=function(t){if(!this._platform.isBrowser)return!1;var e,n=function(t){try{return t.frameElement}catch(aR){return null}}((e=t).ownerDocument&&e.ownerDocument.defaultView||window);if(n){var i=n&&n.nodeName.toLowerCase();if(-1===Wc(n))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&"object"===i)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(n))return!1}var r=t.nodeName.toLowerCase(),o=Wc(t);if(t.hasAttribute("contenteditable"))return-1!==o;if("iframe"===r)return!1;if("audio"===r){if(!t.hasAttribute("controls"))return!1;if(this._platform.BLINK)return!0}if("video"===r){if(!t.hasAttribute("controls")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return("object"!==r||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(t){var e=t.nodeName.toLowerCase(),n="input"===e&&t.type;return"text"===n||"password"===n||"select"===e||"textarea"===e}(t))&&t.tabIndex>=0},t.prototype.isFocusable=function(t){return function(t){return!function(t){return function(t){return"input"==t.nodeName.toLowerCase()}(t)&&"hidden"==t.type}(t)&&(function(t){var e=t.nodeName.toLowerCase();return"input"===e||"select"===e||"button"===e||"textarea"===e}(t)||function(t){return function(t){return"a"==t.nodeName.toLowerCase()}(t)&&t.hasAttribute("href")}(t)||t.hasAttribute("contenteditable")||Bc(t))}(t)&&!this.isDisabled(t)&&this.isVisible(t)},t.ngInjectableDef=St({factory:function(){return new t(ie(nc))},token:t,providedIn:"root"}),t}();function Bc(t){if(!t.hasAttribute("tabindex")||void 0===t.tabIndex)return!1;var e=t.getAttribute("tabindex");return"-32768"!=e&&!(!e||isNaN(parseInt(e,10)))}function Wc(t){if(!Bc(t))return null;var e=parseInt(t.getAttribute("tabindex")||"",10);return isNaN(e)?-1:e}var Uc=function(){function t(t,e,n,i,r){void 0===r&&(r=!1);var o=this;this._element=t,this._checker=e,this._ngZone=n,this._document=i,this._hasAttached=!1,this._startAnchorListener=function(){return o.focusLastTabbableElement()},this._endAnchorListener=function(){return o.focusFirstTabbableElement()},this._enabled=!0,r||this.attachAnchors()}return Object.defineProperty(t.prototype,"enabled",{get:function(){return this._enabled},set:function(t){this._enabled=t,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(t,this._startAnchor),this._toggleAnchorTabIndex(t,this._endAnchor))},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){var t=this._startAnchor,e=this._endAnchor;t&&(t.removeEventListener("focus",this._startAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),e&&(e.removeEventListener("focus",this._endAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),this._startAnchor=this._endAnchor=null},t.prototype.attachAnchors=function(){var t=this;return!!this._hasAttached||(this._ngZone.runOutsideAngular(function(){t._startAnchor||(t._startAnchor=t._createAnchor(),t._startAnchor.addEventListener("focus",t._startAnchorListener)),t._endAnchor||(t._endAnchor=t._createAnchor(),t._endAnchor.addEventListener("focus",t._endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)},t.prototype.focusInitialElementWhenReady=function(){var t=this;return new Promise(function(e){t._executeOnStable(function(){return e(t.focusInitialElement())})})},t.prototype.focusFirstTabbableElementWhenReady=function(){var t=this;return new Promise(function(e){t._executeOnStable(function(){return e(t.focusFirstTabbableElement())})})},t.prototype.focusLastTabbableElementWhenReady=function(){var t=this;return new Promise(function(e){t._executeOnStable(function(){return e(t.focusLastTabbableElement())})})},t.prototype._getRegionBoundary=function(t){for(var e=this._element.querySelectorAll("[cdk-focus-region-"+t+"], [cdkFocusRegion"+t+"], [cdk-focus-"+t+"]"),n=0;n=0;n--){var i=e[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(e[n]):null;if(i)return i}return null},t.prototype._createAnchor=function(){var t=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,t),t.classList.add("cdk-visually-hidden"),t.classList.add("cdk-focus-trap-anchor"),t.setAttribute("aria-hidden","true"),t},t.prototype._toggleAnchorTabIndex=function(t,e){t?e.setAttribute("tabindex","0"):e.removeAttribute("tabindex")},t.prototype._executeOnStable=function(t){this._ngZone.isStable?t():this._ngZone.onStable.asObservable().pipe(Ac(1)).subscribe(t)},t}(),Gc=function(){function t(t,e,n){this._checker=t,this._ngZone=e,this._document=n}return t.prototype.create=function(t,e){return void 0===e&&(e=!1),new Uc(t,this._checker,this._ngZone,this._document,e)},t.ngInjectableDef=St({factory:function(){return new t(ie(Vc),ie(Mi),ie(As))},token:t,providedIn:"root"}),t}(),qc=function(){function t(t,e,n){this._elementRef=t,this._focusTrapFactory=e,this._previouslyFocusedElement=null,this._document=n,this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0)}return Object.defineProperty(t.prototype,"enabled",{get:function(){return this.focusTrap.enabled},set:function(t){this.focusTrap.enabled=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"autoCapture",{get:function(){return this._autoCapture},set:function(t){this._autoCapture=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){this.focusTrap.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)},t.prototype.ngAfterContentInit=function(){this.focusTrap.attachAnchors(),this.autoCapture&&(this._previouslyFocusedElement=this._document.activeElement,this.focusTrap.focusInitialElementWhenReady())},t.prototype.ngDoCheck=function(){this.focusTrap.hasAttached()||this.focusTrap.attachAnchors()},t}(),Xc=new Lt("liveAnnouncerElement",{providedIn:"root",factory:function(){return null}}),Kc=function(){function t(t,e,n){this._ngZone=e,this._document=n,this._liveElement=t||this._createLiveElement()}return t.prototype.announce=function(t){for(var e,n,i=this,r=[],o=1;o0?n:t},t}(),hd=new Lt("mat-date-formats"),pd=function(){return function(){}}(),fd=function(){return function(){}}(),md=function(){function t(){}return t.prototype.isErrorState=function(t,e){return!!(t&&t.invalid&&(t.touched||e&&e.submitted))},t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}(),gd=new Lt("MAT_HAMMER_OPTIONS"),yd=["longpress","slide","slidestart","slideend","slideright","slideleft"],_d={on:function(){},off:function(){}},vd=function(t){function e(e,n){var i=t.call(this)||this;return i._hammerOptions=e,i.events=yd,n&&n._checkHammerIsAvailable(),i}return r(e,t),e.prototype.buildHammer=function(t){var e="undefined"!=typeof window?window.Hammer:null;if(!e)return _d;var n=new e(t,this._hammerOptions||void 0),i=new e.Pan,r=new e.Swipe,o=new e.Press,a=this._createRecognizer(i,{event:"slide",threshold:0},r),l=this._createRecognizer(o,{event:"longpress",time:500});return i.recognizeWith(r),l.recognizeWith(a),n.add([r,o,i,a,l]),n},e.prototype._createRecognizer=function(t,e){for(var n=[],i=2;in+i?Math.max(0,r-i+e):n}var Hd=function(){return function(){}}(),Nd=new Lt("mat-label-global-options"),Vd=n("wd/R"),Bd=n.n(Vd).a||Vd;function Wd(t,e){for(var n=Array(t),i=0;i11)throw Error('Invalid month index "'+e+'". Month index has to be between 0 and 11.');if(n<1)throw Error('Invalid date "'+n+'". Date has to be greater than 0.');var i=this._createMoment({year:t,month:e,date:n}).locale(this.locale);if(!i.isValid())throw Error('Invalid date "'+n+'" for month with index "'+e+'".');return i},e.prototype.today=function(){return this._createMoment().locale(this.locale)},e.prototype.parse=function(t,e){return t&&"string"==typeof t?this._createMoment(t,e,this.locale):t?this._createMoment(t).locale(this.locale):null},e.prototype.format=function(t,e){if(t=this.clone(t),!this.isValid(t))throw Error("MomentDateAdapter: Cannot format invalid date.");return t.format(e)},e.prototype.addCalendarYears=function(t,e){return this.clone(t).add({years:e})},e.prototype.addCalendarMonths=function(t,e){return this.clone(t).add({months:e})},e.prototype.addCalendarDays=function(t,e){return this.clone(t).add({days:e})},e.prototype.toIso8601=function(t){return this.clone(t).format()},e.prototype.deserialize=function(e){var n;if(e instanceof Date)n=this._createMoment(e).locale(this.locale);else if(this.isDateInstance(e))return this.clone(e);if("string"==typeof e){if(!e)return null;n=this._createMoment(e,Bd.ISO_8601).locale(this.locale)}return n&&this.isValid(n)?this._createMoment(n).locale(this.locale):t.prototype.deserialize.call(this,e)},e.prototype.isDateInstance=function(t){return Bd.isMoment(t)},e.prototype.isValid=function(t){return this.clone(t).isValid()},e.prototype.invalid=function(){return Bd.invalid()},e.prototype._createMoment=function(){for(var t=[],e=0;e0){var i=t.slice(0,n),r=i.toLowerCase(),o=t.slice(n+1).trim();e.maybeSetNormalizedName(i,r),e.headers.has(r)?e.headers.get(r).push(o):e.headers.set(r,[o])}})}:function(){e.headers=new Map,Object.keys(t).forEach(function(n){var i=t[n],r=n.toLowerCase();"string"==typeof i&&(i=[i]),i.length>0&&(e.headers.set(r,i),e.maybeSetNormalizedName(n,r))})}:this.headers=new Map}return t.prototype.has=function(t){return this.init(),this.headers.has(t.toLowerCase())},t.prototype.get=function(t){this.init();var e=this.headers.get(t.toLowerCase());return e&&e.length>0?e[0]:null},t.prototype.keys=function(){return this.init(),Array.from(this.normalizedNames.values())},t.prototype.getAll=function(t){return this.init(),this.headers.get(t.toLowerCase())||null},t.prototype.append=function(t,e){return this.clone({name:t,value:e,op:"a"})},t.prototype.set=function(t,e){return this.clone({name:t,value:e,op:"s"})},t.prototype.delete=function(t,e){return this.clone({name:t,value:e,op:"d"})},t.prototype.maybeSetNormalizedName=function(t,e){this.normalizedNames.has(e)||this.normalizedNames.set(e,t)},t.prototype.init=function(){var e=this;this.lazyInit&&(this.lazyInit instanceof t?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(function(t){return e.applyUpdate(t)}),this.lazyUpdate=null))},t.prototype.copyFrom=function(t){var e=this;t.init(),Array.from(t.headers.keys()).forEach(function(n){e.headers.set(n,t.headers.get(n)),e.normalizedNames.set(n,t.normalizedNames.get(n))})},t.prototype.clone=function(e){var n=new t;return n.lazyInit=this.lazyInit&&this.lazyInit instanceof t?this.lazyInit:this,n.lazyUpdate=(this.lazyUpdate||[]).concat([e]),n},t.prototype.applyUpdate=function(t){var e=t.name.toLowerCase();switch(t.op){case"a":case"s":var n=t.value;if("string"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(t.name,e);var i=("a"===t.op?this.headers.get(e):void 0)||[];i.push.apply(i,d(n)),this.headers.set(e,i);break;case"d":var r=t.value;if(r){var o=this.headers.get(e);if(!o)return;0===(o=o.filter(function(t){return-1===r.indexOf(t)})).length?(this.headers.delete(e),this.normalizedNames.delete(e)):this.headers.set(e,o)}else this.headers.delete(e),this.normalizedNames.delete(e)}},t.prototype.forEach=function(t){var e=this;this.init(),Array.from(this.normalizedNames.keys()).forEach(function(n){return t(e.normalizedNames.get(n),e.headers.get(n))})},t}(),th=function(){function t(){}return t.prototype.encodeKey=function(t){return eh(t)},t.prototype.encodeValue=function(t){return eh(t)},t.prototype.decodeKey=function(t){return decodeURIComponent(t)},t.prototype.decodeValue=function(t){return decodeURIComponent(t)},t}();function eh(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/gi,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%2B/gi,"+").replace(/%3D/gi,"=").replace(/%3F/gi,"?").replace(/%2F/gi,"/")}var nh=function(){function t(t){void 0===t&&(t={});var e,n,i,r=this;if(this.updates=null,this.cloneFrom=null,this.encoder=t.encoder||new th,t.fromString){if(t.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=(e=t.fromString,n=this.encoder,i=new Map,e.length>0&&e.split("&").forEach(function(t){var e=t.indexOf("="),r=c(-1==e?[n.decodeKey(t),""]:[n.decodeKey(t.slice(0,e)),n.decodeValue(t.slice(e+1))],2),o=r[0],a=r[1],l=i.get(o)||[];l.push(a),i.set(o,l)}),i)}else t.fromObject?(this.map=new Map,Object.keys(t.fromObject).forEach(function(e){var n=t.fromObject[e];r.map.set(e,Array.isArray(n)?n:[n])})):this.map=null}return t.prototype.has=function(t){return this.init(),this.map.has(t)},t.prototype.get=function(t){this.init();var e=this.map.get(t);return e?e[0]:null},t.prototype.getAll=function(t){return this.init(),this.map.get(t)||null},t.prototype.keys=function(){return this.init(),Array.from(this.map.keys())},t.prototype.append=function(t,e){return this.clone({param:t,value:e,op:"a"})},t.prototype.set=function(t,e){return this.clone({param:t,value:e,op:"s"})},t.prototype.delete=function(t,e){return this.clone({param:t,value:e,op:"d"})},t.prototype.toString=function(){var t=this;return this.init(),this.keys().map(function(e){var n=t.encoder.encodeKey(e);return t.map.get(e).map(function(e){return n+"="+t.encoder.encodeValue(e)}).join("&")}).join("&")},t.prototype.clone=function(e){var n=new t({encoder:this.encoder});return n.cloneFrom=this.cloneFrom||this,n.updates=(this.updates||[]).concat([e]),n},t.prototype.init=function(){var t=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(function(e){return t.map.set(e,t.cloneFrom.map.get(e))}),this.updates.forEach(function(e){switch(e.op){case"a":case"s":var n=("a"===e.op?t.map.get(e.param):void 0)||[];n.push(e.value),t.map.set(e.param,n);break;case"d":if(void 0===e.value){t.map.delete(e.param);break}var i=t.map.get(e.param)||[],r=i.indexOf(e.value);-1!==r&&i.splice(r,1),i.length>0?t.map.set(e.param,i):t.map.delete(e.param)}}),this.cloneFrom=null)},t}();function ih(t){return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer}function rh(t){return"undefined"!=typeof Blob&&t instanceof Blob}function oh(t){return"undefined"!=typeof FormData&&t instanceof FormData}var ah=function(){function t(t,e,n,i){var r;if(this.url=e,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=t.toUpperCase(),function(t){switch(t){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==n?n:null,r=i):r=n,r&&(this.reportProgress=!!r.reportProgress,this.withCredentials=!!r.withCredentials,r.responseType&&(this.responseType=r.responseType),r.headers&&(this.headers=r.headers),r.params&&(this.params=r.params)),this.headers||(this.headers=new $d),this.params){var o=this.params.toString();if(0===o.length)this.urlWithParams=e;else{var a=e.indexOf("?");this.urlWithParams=e+(-1===a?"?":a=200&&this.status<300}}(),uh=function(t){function e(e){void 0===e&&(e={});var n=t.call(this,e)||this;return n.type=lh.ResponseHeader,n}return r(e,t),e.prototype.clone=function(t){return void 0===t&&(t={}),new e({headers:t.headers||this.headers,status:void 0!==t.status?t.status:this.status,statusText:t.statusText||this.statusText,url:t.url||this.url||void 0})},e}(sh),ch=function(t){function e(e){void 0===e&&(e={});var n=t.call(this,e)||this;return n.type=lh.Response,n.body=void 0!==e.body?e.body:null,n}return r(e,t),e.prototype.clone=function(t){return void 0===t&&(t={}),new e({body:void 0!==t.body?t.body:this.body,headers:t.headers||this.headers,status:void 0!==t.status?t.status:this.status,statusText:t.statusText||this.statusText,url:t.url||this.url||void 0})},e}(sh),dh=function(t){function e(e){var n=t.call(this,e,0,"Unknown Error")||this;return n.name="HttpErrorResponse",n.ok=!1,n.message=n.status>=200&&n.status<300?"Http failure during parsing for "+(e.url||"(unknown url)"):"Http failure response for "+(e.url||"(unknown url)")+": "+e.status+" "+e.statusText,n.error=e.error||null,n}return r(e,t),e}(sh);function hh(t,e){return{body:e,headers:t.headers,observe:t.observe,params:t.params,reportProgress:t.reportProgress,responseType:t.responseType,withCredentials:t.withCredentials}}var ph=function(){function t(t){this.handler=t}return t.prototype.request=function(t,e,n){var i,r=this;if(void 0===n&&(n={}),t instanceof ah)i=t;else{var o;o=n.headers instanceof $d?n.headers:new $d(n.headers);var a=void 0;n.params&&(a=n.params instanceof nh?n.params:new nh({fromObject:n.params})),i=new ah(t,e,void 0!==n.body?n.body:null,{headers:o,params:a,reportProgress:n.reportProgress,responseType:n.responseType||"json",withCredentials:n.withCredentials})}var l=cc(i).pipe(Zd(function(t){return r.handler.handle(t)}));if(t instanceof ah||"events"===n.observe)return l;var s=l.pipe(Cc(function(t){return t instanceof ch}));switch(n.observe||"body"){case"body":switch(i.responseType){case"arraybuffer":return s.pipe(nt(function(t){if(null!==t.body&&!(t.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return t.body}));case"blob":return s.pipe(nt(function(t){if(null!==t.body&&!(t.body instanceof Blob))throw new Error("Response is not a Blob.");return t.body}));case"text":return s.pipe(nt(function(t){if(null!==t.body&&"string"!=typeof t.body)throw new Error("Response is not a string.");return t.body}));case"json":default:return s.pipe(nt(function(t){return t.body}))}case"response":return s;default:throw new Error("Unreachable: unhandled observe type "+n.observe+"}")}},t.prototype.delete=function(t,e){return void 0===e&&(e={}),this.request("DELETE",t,e)},t.prototype.get=function(t,e){return void 0===e&&(e={}),this.request("GET",t,e)},t.prototype.head=function(t,e){return void 0===e&&(e={}),this.request("HEAD",t,e)},t.prototype.jsonp=function(t,e){return this.request("JSONP",t,{params:(new nh).append(e,"JSONP_CALLBACK"),observe:"body",responseType:"json"})},t.prototype.options=function(t,e){return void 0===e&&(e={}),this.request("OPTIONS",t,e)},t.prototype.patch=function(t,e,n){return void 0===n&&(n={}),this.request("PATCH",t,hh(n,e))},t.prototype.post=function(t,e,n){return void 0===n&&(n={}),this.request("POST",t,hh(n,e))},t.prototype.put=function(t,e,n){return void 0===n&&(n={}),this.request("PUT",t,hh(n,e))},t}(),fh=function(){function t(t,e){this.next=t,this.interceptor=e}return t.prototype.handle=function(t){return this.interceptor.intercept(t,this.next)},t}(),mh=new Lt("HTTP_INTERCEPTORS"),gh=function(){function t(){}return t.prototype.intercept=function(t,e){return e.handle(t)},t}(),yh=/^\)\]\}',?\n/,_h=function(){return function(){}}(),vh=function(){function t(){}return t.prototype.build=function(){return new XMLHttpRequest},t}(),bh=function(){function t(t){this.xhrFactory=t}return t.prototype.handle=function(t){var e=this;if("JSONP"===t.method)throw new Error("Attempted to construct Jsonp request without JsonpClientModule installed.");return new Y(function(n){var i=e.xhrFactory.build();if(i.open(t.method,t.urlWithParams),t.withCredentials&&(i.withCredentials=!0),t.headers.forEach(function(t,e){return i.setRequestHeader(t,e.join(","))}),t.headers.has("Accept")||i.setRequestHeader("Accept","application/json, text/plain, */*"),!t.headers.has("Content-Type")){var r=t.detectContentTypeHeader();null!==r&&i.setRequestHeader("Content-Type",r)}if(t.responseType){var o=t.responseType.toLowerCase();i.responseType="json"!==o?o:"text"}var a=t.serializeBody(),l=null,s=function(){if(null!==l)return l;var e=1223===i.status?204:i.status,n=i.statusText||"OK",r=new $d(i.getAllResponseHeaders()),o=function(t){return"responseURL"in t&&t.responseURL?t.responseURL:/^X-Request-URL:/m.test(t.getAllResponseHeaders())?t.getResponseHeader("X-Request-URL"):null}(i)||t.url;return l=new uh({headers:r,status:e,statusText:n,url:o})},u=function(){var e=s(),r=e.headers,o=e.status,a=e.statusText,l=e.url,u=null;204!==o&&(u=void 0===i.response?i.responseText:i.response),0===o&&(o=u?200:0);var c=o>=200&&o<300;if("json"===t.responseType&&"string"==typeof u){var d=u;u=u.replace(yh,"");try{u=""!==u?JSON.parse(u):null}catch(h){u=d,c&&(c=!1,u={error:h,text:u})}}c?(n.next(new ch({body:u,headers:r,status:o,statusText:a,url:l||void 0})),n.complete()):n.error(new dh({error:u,headers:r,status:o,statusText:a,url:l||void 0}))},c=function(t){var e=s().url,r=new dh({error:t,status:i.status||0,statusText:i.statusText||"Unknown Error",url:e||void 0});n.error(r)},d=!1,h=function(e){d||(n.next(s()),d=!0);var r={type:lh.DownloadProgress,loaded:e.loaded};e.lengthComputable&&(r.total=e.total),"text"===t.responseType&&i.responseText&&(r.partialText=i.responseText),n.next(r)},p=function(t){var e={type:lh.UploadProgress,loaded:t.loaded};t.lengthComputable&&(e.total=t.total),n.next(e)};return i.addEventListener("load",u),i.addEventListener("error",c),t.reportProgress&&(i.addEventListener("progress",h),null!==a&&i.upload&&i.upload.addEventListener("progress",p)),i.send(a),n.next({type:lh.Sent}),function(){i.removeEventListener("error",c),i.removeEventListener("load",u),t.reportProgress&&(i.removeEventListener("progress",h),null!==a&&i.upload&&i.upload.removeEventListener("progress",p)),i.abort()}})},t}(),xh=new Lt("XSRF_COOKIE_NAME"),wh=new Lt("XSRF_HEADER_NAME"),kh=function(){return function(){}}(),Mh=function(){function t(t,e,n){this.doc=t,this.platform=e,this.cookieName=n,this.lastCookieString="",this.lastToken=null,this.parseCount=0}return t.prototype.getToken=function(){if("server"===this.platform)return null;var t=this.doc.cookie||"";return t!==this.lastCookieString&&(this.parseCount++,this.lastToken=ds(t,this.cookieName),this.lastCookieString=t),this.lastToken},t}(),Sh=function(){function t(t,e){this.tokenService=t,this.headerName=e}return t.prototype.intercept=function(t,e){var n=t.url.toLowerCase();if("GET"===t.method||"HEAD"===t.method||n.startsWith("http://")||n.startsWith("https://"))return e.handle(t);var i=this.tokenService.getToken();return null===i||t.headers.has(this.headerName)||(t=t.clone({headers:t.headers.set(this.headerName,i)})),e.handle(t)},t}(),Ch=function(){function t(t,e){this.backend=t,this.injector=e,this.chain=null}return t.prototype.handle=function(t){if(null===this.chain){var e=this.injector.get(mh,[]);this.chain=e.reduceRight(function(t,e){return new fh(t,e)},this.backend)}return this.chain.handle(t)},t}(),Lh=function(){function t(){}var e;return e=t,t.disable=function(){return{ngModule:e,providers:[{provide:Sh,useClass:gh}]}},t.withOptions=function(t){return void 0===t&&(t={}),{ngModule:e,providers:[t.cookieName?{provide:xh,useValue:t.cookieName}:[],t.headerName?{provide:wh,useValue:t.headerName}:[]]}},t}(),Dh=function(){return function(){}}(),Th=function(t){function e(e){var n=t.call(this)||this;return n._value=e,n}return r(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!0,configurable:!0}),e.prototype._subscribe=function(e){var n=t.prototype._subscribe.call(this,e);return n&&!n.closed&&e.next(this._value),n},e.prototype.getValue=function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new F;return this._value},e.prototype.next=function(e){t.prototype.next.call(this,this._value=e)},e}(H),Eh=function(){return function(){}}(),Ah=function(){return function(){}}(),Ph=n("BOF4"),Oh=function(){function t(t){this.httpService=t,this.currentUserSubject=new Th(JSON.parse(localStorage.getItem("currentUser"))),this.currentUser=this.currentUserSubject.asObservable()}return Object.defineProperty(t.prototype,"currentUserValue",{get:function(){return this.currentUserSubject.value},enumerable:!0,configurable:!0}),t.prototype.login=function(t,e){var n=this,i=new $d({"Content-Type":"application/json","Access-Control-Allow-Origin":"*"});return this.httpService.post(Bl.apiUrl+"/api/Account/Login",{email:t,password:e},{headers:i}).pipe(nt(function(t){var e=n.getDecodedAccessToken(t.AccessToken),i=e.object.UserData,r=new Eh;r.UserId=i.UserID,r.UserName=i.UserName,r.FirstName=i.FirstName,r.LastName=i.LastName;var o=new Ah;return o.LoginUser=r,o.ExpirationDate=e.object.ExpirationDate,o.LoginDate=e.object.LoginDate,o.AccessToken=t.AccessToken,localStorage.setItem("currentUser",JSON.stringify(o)),n.currentUserSubject.next(o),o.LoginUser}))},t.prototype.getDecodedAccessToken=function(t){try{return Ph(t)}catch(Error){return null}},t.prototype.logout=function(){localStorage.removeItem("currentUser"),this.currentUserSubject.next(null)},t.ngInjectableDef=St({factory:function(){return new t(ie(ph))},token:t,providedIn:"root"}),t}(),Yh=function(){function t(t,e){var n=this;this.router=t,this.authenticationService=e,this.currentUser=new Eh,this.title="TCC",this.imageUrl=Bl.assetPath+"/assets/logo_twine.png",this.authenticationService.currentUser.subscribe(function(t){null!=t&&(n.currentUser=t.LoginUser)})}return t.prototype.logout=function(){this.authenticationService.logout(),this.router.navigate(["/login"])},t}();function Rh(){return Error.call(this),this.message="no elements in sequence",this.name="EmptyError",this}Rh.prototype=Object.create(Error.prototype);var Ih=Rh,Fh={};function zh(){for(var t=[],e=0;e0)for(var n=this.count>=this.total?this.total:this.count,i=this.ring,r=0;r=2;return function(i){return i.pipe(t?Cc(function(e,n){return t(e,n,i)}):ct,Vh(1),n?qh(e):Uh(function(){return new Ih}))}}function Jh(t){return function(e){var n=new Qh(t),i=e.lift(n);return n.caught=i}}var Qh=function(){function t(t){this.selector=t}return t.prototype.call=function(t,e){return e.subscribe(new $h(t,this.selector,this.caught))},t}(),$h=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.selector=n,r.caught=i,r}return r(e,t),e.prototype.error=function(e){if(!this.isStopped){var n=void 0;try{n=this.selector(e,this.caught)}catch(r){return void t.prototype.error.call(this,r)}this._unsubscribeAndRecycle();var i=new B(this,void 0,void 0);this.add(i),tt(this,n,void 0,void 0,i)}},e}(et);function tp(t,e){var n=arguments.length>=2;return function(i){return i.pipe(t?Cc(function(e,n){return t(e,n,i)}):ct,Ac(1),n?qh(e):Uh(function(){return new Ih}))}}var ep=function(){function t(t,e,n){this.predicate=t,this.thisArg=e,this.source=n}return t.prototype.call=function(t,e){return e.subscribe(new np(t,this.predicate,this.thisArg,this.source))},t}(),np=function(t){function e(e,n,i,r){var o=t.call(this,e)||this;return o.predicate=n,o.thisArg=i,o.source=r,o.index=0,o.thisArg=i||o,o}return r(e,t),e.prototype.notifyComplete=function(t){this.destination.next(t),this.destination.complete()},e.prototype._next=function(t){var e=!1;try{e=this.predicate.call(this.thisArg,t,this.index++,this.source)}catch(n){return void this.destination.error(n)}e||this.notifyComplete(!1)},e.prototype._complete=function(){this.notifyComplete(!0)},e}(D);function ip(t,e){return"function"==typeof e?function(n){return n.pipe(ip(function(n,i){return at(t(n,i)).pipe(nt(function(t,r){return e(n,t,i,r)}))}))}:function(e){return e.lift(new rp(t))}}var rp=function(){function t(t){this.project=t}return t.prototype.call=function(t,e){return e.subscribe(new op(t,this.project))},t}(),op=function(t){function e(e,n){var i=t.call(this,e)||this;return i.project=n,i.index=0,i}return r(e,t),e.prototype._next=function(t){var e,n=this.index++;try{e=this.project(t,n)}catch(i){return void this.destination.error(i)}this._innerSub(e,t,n)},e.prototype._innerSub=function(t,e,n){var i=this.innerSubscription;i&&i.unsubscribe();var r=new B(this,void 0,void 0);this.destination.add(r),this.innerSubscription=tt(this,t,e,n,r)},e.prototype._complete=function(){var e=this.innerSubscription;e&&!e.closed||t.prototype._complete.call(this),this.unsubscribe()},e.prototype._unsubscribe=function(){this.innerSubscription=null},e.prototype.notifyComplete=function(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&t.prototype._complete.call(this)},e.prototype.notifyNext=function(t,e,n,i,r){this.destination.next(e)},e}(et);function ap(t,e){var n=!1;return arguments.length>=2&&(n=!0),function(i){return i.lift(new lp(t,e,n))}}var lp=function(){function t(t,e,n){void 0===n&&(n=!1),this.accumulator=t,this.seed=e,this.hasSeed=n}return t.prototype.call=function(t,e){return e.subscribe(new sp(t,this.accumulator,this.seed,this.hasSeed))},t}(),sp=function(t){function e(e,n,i,r){var o=t.call(this,e)||this;return o.accumulator=n,o._seed=i,o.hasSeed=r,o.index=0,o}return r(e,t),Object.defineProperty(e.prototype,"seed",{get:function(){return this._seed},set:function(t){this.hasSeed=!0,this._seed=t},enumerable:!0,configurable:!0}),e.prototype._next=function(t){if(this.hasSeed)return this._tryNext(t);this.seed=t,this.destination.next(t)},e.prototype._tryNext=function(t){var e,n=this.index++;try{e=this.accumulator(this.seed,t,n)}catch(i){this.destination.error(i)}this.seed=e,this.destination.next(e)},e}(D);function up(t){return function(e){return e.lift(new cp(t))}}var cp=function(){function t(t){this.callback=t}return t.prototype.call=function(t,e){return e.subscribe(new dp(t,this.callback))},t}(),dp=function(t){function e(e,n){var i=t.call(this,e)||this;return i.add(new x(n)),i}return r(e,t),e}(D),hp=function(){return function(t,e){this.id=t,this.url=e}}(),pp=function(t){function e(e,n,i,r){void 0===i&&(i="imperative"),void 0===r&&(r=null);var o=t.call(this,e,n)||this;return o.navigationTrigger=i,o.restoredState=r,o}return r(e,t),e.prototype.toString=function(){return"NavigationStart(id: "+this.id+", url: '"+this.url+"')"},e}(hp),fp=function(t){function e(e,n,i){var r=t.call(this,e,n)||this;return r.urlAfterRedirects=i,r}return r(e,t),e.prototype.toString=function(){return"NavigationEnd(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"')"},e}(hp),mp=function(t){function e(e,n,i){var r=t.call(this,e,n)||this;return r.reason=i,r}return r(e,t),e.prototype.toString=function(){return"NavigationCancel(id: "+this.id+", url: '"+this.url+"')"},e}(hp),gp=function(t){function e(e,n,i){var r=t.call(this,e,n)||this;return r.error=i,r}return r(e,t),e.prototype.toString=function(){return"NavigationError(id: "+this.id+", url: '"+this.url+"', error: "+this.error+")"},e}(hp),yp=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"RoutesRecognized(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),_p=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"GuardsCheckStart(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),vp=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n)||this;return a.urlAfterRedirects=i,a.state=r,a.shouldActivate=o,a}return r(e,t),e.prototype.toString=function(){return"GuardsCheckEnd(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+", shouldActivate: "+this.shouldActivate+")"},e}(hp),bp=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"ResolveStart(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),xp=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"ResolveEnd(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),wp=function(){function t(t){this.route=t}return t.prototype.toString=function(){return"RouteConfigLoadStart(path: "+this.route.path+")"},t}(),kp=function(){function t(t){this.route=t}return t.prototype.toString=function(){return"RouteConfigLoadEnd(path: "+this.route.path+")"},t}(),Mp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ChildActivationStart(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Sp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ChildActivationEnd(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Cp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ActivationStart(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Lp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ActivationEnd(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Dp=function(){function t(t,e,n){this.routerEvent=t,this.position=e,this.anchor=n}return t.prototype.toString=function(){return"Scroll(anchor: '"+this.anchor+"', position: '"+(this.position?this.position[0]+", "+this.position[1]:null)+"')"},t}(),Tp=function(){return function(){}}(),Ep="primary",Ap=function(){function t(t){this.params=t||{}}return t.prototype.has=function(t){return this.params.hasOwnProperty(t)},t.prototype.get=function(t){if(this.has(t)){var e=this.params[t];return Array.isArray(e)?e[0]:e}return null},t.prototype.getAll=function(t){if(this.has(t)){var e=this.params[t];return Array.isArray(e)?e:[e]}return[]},Object.defineProperty(t.prototype,"keys",{get:function(){return Object.keys(this.params)},enumerable:!0,configurable:!0}),t}();function Pp(t){return new Ap(t)}var Op="ngNavigationCancelingError";function Yp(t){var e=Error("NavigationCancelingError: "+t);return e[Op]=!0,e}function Rp(t,e,n){var i=n.path.split("/");if(i.length>t.length)return null;if("full"===n.pathMatch&&(e.hasChildren()||i.length0?t[t.length-1]:null}function Wp(t,e){for(var n in t)t.hasOwnProperty(n)&&e(t[n],n)}function Up(t){return ti(t)?t:$n(t)?at(Promise.resolve(t)):cc(t)}function Gp(t,e,n){return n?function(t,e){return Np(t,e)}(t.queryParams,e.queryParams)&&function t(e,n){if(!Zp(e.segments,n.segments))return!1;if(e.numberOfChildren!==n.numberOfChildren)return!1;for(var i in n.children){if(!e.children[i])return!1;if(!t(e.children[i],n.children[i]))return!1}return!0}(t.root,e.root):function(t,e){return Object.keys(e).length<=Object.keys(t).length&&Object.keys(e).every(function(n){return e[n]===t[n]})}(t.queryParams,e.queryParams)&&function t(e,n){return function e(n,i,r){if(n.segments.length>r.length)return!!Zp(a=n.segments.slice(0,r.length),r)&&!i.hasChildren();if(n.segments.length===r.length){if(!Zp(n.segments,r))return!1;for(var o in i.children){if(!n.children[o])return!1;if(!t(n.children[o],i.children[o]))return!1}return!0}var a=r.slice(0,n.segments.length),l=r.slice(n.segments.length);return!!Zp(n.segments,a)&&!!n.children[Ep]&&e(n.children[Ep],i,l)}(e,n,n.segments)}(t.root,e.root)}var qp=function(){function t(t,e,n){this.root=t,this.queryParams=e,this.fragment=n}return Object.defineProperty(t.prototype,"queryParamMap",{get:function(){return this._queryParamMap||(this._queryParamMap=Pp(this.queryParams)),this._queryParamMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return tf.serialize(this)},t}(),Xp=function(){function t(t,e){var n=this;this.segments=t,this.children=e,this.parent=null,Wp(e,function(t,e){return t.parent=n})}return t.prototype.hasChildren=function(){return this.numberOfChildren>0},Object.defineProperty(t.prototype,"numberOfChildren",{get:function(){return Object.keys(this.children).length},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return ef(this)},t}(),Kp=function(){function t(t,e){this.path=t,this.parameters=e}return Object.defineProperty(t.prototype,"parameterMap",{get:function(){return this._parameterMap||(this._parameterMap=Pp(this.parameters)),this._parameterMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return sf(this)},t}();function Zp(t,e){return t.length===e.length&&t.every(function(t,n){return t.path===e[n].path})}function Jp(t,e){var n=[];return Wp(t.children,function(t,i){i===Ep&&(n=n.concat(e(t,i)))}),Wp(t.children,function(t,i){i!==Ep&&(n=n.concat(e(t,i)))}),n}var Qp=function(){return function(){}}(),$p=function(){function t(){}return t.prototype.parse=function(t){var e=new pf(t);return new qp(e.parseRootSegment(),e.parseQueryParams(),e.parseFragment())},t.prototype.serialize=function(t){var e,n;return"/"+function t(e,n){if(!e.hasChildren())return ef(e);if(n){var i=e.children[Ep]?t(e.children[Ep],!1):"",r=[];return Wp(e.children,function(e,n){n!==Ep&&r.push(n+":"+t(e,!1))}),r.length>0?i+"("+r.join("//")+")":i}var o=Jp(e,function(n,i){return i===Ep?[t(e.children[Ep],!1)]:[i+":"+t(n,!1)]});return ef(e)+"/("+o.join("//")+")"}(t.root,!0)+(e=t.queryParams,(n=Object.keys(e).map(function(t){var n=e[t];return Array.isArray(n)?n.map(function(e){return rf(t)+"="+rf(e)}).join("&"):rf(t)+"="+rf(n)})).length?"?"+n.join("&"):"")+("string"==typeof t.fragment?"#"+encodeURI(t.fragment):"")},t}(),tf=new $p;function ef(t){return t.segments.map(function(t){return sf(t)}).join("/")}function nf(t){return encodeURIComponent(t).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function rf(t){return nf(t).replace(/%3B/gi,";")}function of(t){return nf(t).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function af(t){return decodeURIComponent(t)}function lf(t){return af(t.replace(/\+/g,"%20"))}function sf(t){return""+of(t.path)+(e=t.parameters,Object.keys(e).map(function(t){return";"+of(t)+"="+of(e[t])}).join(""));var e}var uf=/^[^\/()?;=#]+/;function cf(t){var e=t.match(uf);return e?e[0]:""}var df=/^[^=?&#]+/,hf=/^[^?&#]+/,pf=function(){function t(t){this.url=t,this.remaining=t}return t.prototype.parseRootSegment=function(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new Xp([],{}):new Xp([],this.parseChildren())},t.prototype.parseQueryParams=function(){var t={};if(this.consumeOptional("?"))do{this.parseQueryParam(t)}while(this.consumeOptional("&"));return t},t.prototype.parseFragment=function(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null},t.prototype.parseChildren=function(){if(""===this.remaining)return{};this.consumeOptional("/");var t=[];for(this.peekStartsWith("(")||t.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),t.push(this.parseSegment());var e={};this.peekStartsWith("/(")&&(this.capture("/"),e=this.parseParens(!0));var n={};return this.peekStartsWith("(")&&(n=this.parseParens(!1)),(t.length>0||Object.keys(e).length>0)&&(n[Ep]=new Xp(t,e)),n},t.prototype.parseSegment=function(){var t=cf(this.remaining);if(""===t&&this.peekStartsWith(";"))throw new Error("Empty path url segment cannot have parameters: '"+this.remaining+"'.");return this.capture(t),new Kp(af(t),this.parseMatrixParams())},t.prototype.parseMatrixParams=function(){for(var t={};this.consumeOptional(";");)this.parseParam(t);return t},t.prototype.parseParam=function(t){var e=cf(this.remaining);if(e){this.capture(e);var n="";if(this.consumeOptional("=")){var i=cf(this.remaining);i&&this.capture(n=i)}t[af(e)]=af(n)}},t.prototype.parseQueryParam=function(t){var e,n=(e=this.remaining.match(df))?e[0]:"";if(n){this.capture(n);var i="";if(this.consumeOptional("=")){var r=function(t){var e=t.match(hf);return e?e[0]:""}(this.remaining);r&&this.capture(i=r)}var o=lf(n),a=lf(i);if(t.hasOwnProperty(o)){var l=t[o];Array.isArray(l)||(t[o]=l=[l]),l.push(a)}else t[o]=a}},t.prototype.parseParens=function(t){var e={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){var n=cf(this.remaining),i=this.remaining[n.length];if("/"!==i&&")"!==i&&";"!==i)throw new Error("Cannot parse url '"+this.url+"'");var r=void 0;n.indexOf(":")>-1?(r=n.substr(0,n.indexOf(":")),this.capture(r),this.capture(":")):t&&(r=Ep);var o=this.parseChildren();e[r]=1===Object.keys(o).length?o[Ep]:new Xp([],o),this.consumeOptional("//")}return e},t.prototype.peekStartsWith=function(t){return this.remaining.startsWith(t)},t.prototype.consumeOptional=function(t){return!!this.peekStartsWith(t)&&(this.remaining=this.remaining.substring(t.length),!0)},t.prototype.capture=function(t){if(!this.consumeOptional(t))throw new Error('Expected "'+t+'".')},t}(),ff=function(){function t(t){this._root=t}return Object.defineProperty(t.prototype,"root",{get:function(){return this._root.value},enumerable:!0,configurable:!0}),t.prototype.parent=function(t){var e=this.pathFromRoot(t);return e.length>1?e[e.length-2]:null},t.prototype.children=function(t){var e=mf(t,this._root);return e?e.children.map(function(t){return t.value}):[]},t.prototype.firstChild=function(t){var e=mf(t,this._root);return e&&e.children.length>0?e.children[0].value:null},t.prototype.siblings=function(t){var e=gf(t,this._root);return e.length<2?[]:e[e.length-2].children.map(function(t){return t.value}).filter(function(e){return e!==t})},t.prototype.pathFromRoot=function(t){return gf(t,this._root).map(function(t){return t.value})},t}();function mf(t,e){var n,i;if(t===e.value)return e;try{for(var r=u(e.children),o=r.next();!o.done;o=r.next()){var a=mf(t,o.value);if(a)return a}}catch(l){n={error:l}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}return null}function gf(t,e){var n,i;if(t===e.value)return[e];try{for(var r=u(e.children),o=r.next();!o.done;o=r.next()){var a=gf(t,o.value);if(a.length)return a.unshift(e),a}}catch(l){n={error:l}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}return[]}var yf=function(){function t(t,e){this.value=t,this.children=e}return t.prototype.toString=function(){return"TreeNode("+this.value+")"},t}();function _f(t){var e={};return t&&t.children.forEach(function(t){return e[t.value.outlet]=t}),e}var vf=function(t){function e(e,n){var i=t.call(this,e)||this;return i.snapshot=n,Sf(i,e),i}return r(e,t),e.prototype.toString=function(){return this.snapshot.toString()},e}(ff);function bf(t,e){var n=function(t,e){var n=new kf([],{},{},"",{},Ep,e,null,t.root,-1,{});return new Mf("",new yf(n,[]))}(t,e),i=new Th([new Kp("",{})]),r=new Th({}),o=new Th({}),a=new Th({}),l=new Th(""),s=new xf(i,r,a,l,o,Ep,e,n.root);return s.snapshot=n.root,new vf(new yf(s,[]),n)}var xf=function(){function t(t,e,n,i,r,o,a,l){this.url=t,this.params=e,this.queryParams=n,this.fragment=i,this.data=r,this.outlet=o,this.component=a,this._futureSnapshot=l}return Object.defineProperty(t.prototype,"routeConfig",{get:function(){return this._futureSnapshot.routeConfig},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"root",{get:function(){return this._routerState.root},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parent",{get:function(){return this._routerState.parent(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this._routerState.firstChild(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){return this._routerState.children(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"pathFromRoot",{get:function(){return this._routerState.pathFromRoot(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"paramMap",{get:function(){return this._paramMap||(this._paramMap=this.params.pipe(nt(function(t){return Pp(t)}))),this._paramMap},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"queryParamMap",{get:function(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(nt(function(t){return Pp(t)}))),this._queryParamMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return this.snapshot?this.snapshot.toString():"Future("+this._futureSnapshot+")"},t}();function wf(t,e){void 0===e&&(e="emptyOnly");var n=t.pathFromRoot,i=0;if("always"!==e)for(i=n.length-1;i>=1;){var r=n[i],a=n[i-1];if(r.routeConfig&&""===r.routeConfig.path)i--;else{if(a.component)break;i--}}return function(t){return t.reduce(function(t,e){return{params:o({},t.params,e.params),data:o({},t.data,e.data),resolve:o({},t.resolve,e._resolvedData)}},{params:{},data:{},resolve:{}})}(n.slice(i))}var kf=function(){function t(t,e,n,i,r,o,a,l,s,u,c){this.url=t,this.params=e,this.queryParams=n,this.fragment=i,this.data=r,this.outlet=o,this.component=a,this.routeConfig=l,this._urlSegment=s,this._lastPathIndex=u,this._resolve=c}return Object.defineProperty(t.prototype,"root",{get:function(){return this._routerState.root},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parent",{get:function(){return this._routerState.parent(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this._routerState.firstChild(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){return this._routerState.children(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"pathFromRoot",{get:function(){return this._routerState.pathFromRoot(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"paramMap",{get:function(){return this._paramMap||(this._paramMap=Pp(this.params)),this._paramMap},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"queryParamMap",{get:function(){return this._queryParamMap||(this._queryParamMap=Pp(this.queryParams)),this._queryParamMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return"Route(url:'"+this.url.map(function(t){return t.toString()}).join("/")+"', path:'"+(this.routeConfig?this.routeConfig.path:"")+"')"},t}(),Mf=function(t){function e(e,n){var i=t.call(this,n)||this;return i.url=e,Sf(i,n),i}return r(e,t),e.prototype.toString=function(){return Cf(this._root)},e}(ff);function Sf(t,e){e.value._routerState=t,e.children.forEach(function(e){return Sf(t,e)})}function Cf(t){var e=t.children.length>0?" { "+t.children.map(Cf).join(", ")+" } ":"";return""+t.value+e}function Lf(t){if(t.snapshot){var e=t.snapshot,n=t._futureSnapshot;t.snapshot=n,Np(e.queryParams,n.queryParams)||t.queryParams.next(n.queryParams),e.fragment!==n.fragment&&t.fragment.next(n.fragment),Np(e.params,n.params)||t.params.next(n.params),function(t,e){if(t.length!==e.length)return!1;for(var n=0;n0&&Tf(n[0]))throw new Error("Root segment cannot have matrix parameters");var i=n.find(function(t){return"object"==typeof t&&null!=t&&t.outlets});if(i&&i!==Bp(n))throw new Error("{outlets:{}} has to be the last command")}return t.prototype.toRoot=function(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]},t}(),Pf=function(){return function(t,e,n){this.segmentGroup=t,this.processChildren=e,this.index=n}}();function Of(t){return"object"==typeof t&&null!=t&&t.outlets?t.outlets[Ep]:""+t}function Yf(t,e,n){if(t||(t=new Xp([],{})),0===t.segments.length&&t.hasChildren())return Rf(t,e,n);var i=function(t,e,n){for(var i=0,r=e,o={match:!1,pathIndex:0,commandIndex:0};r=n.length)return o;var a=t.segments[r],l=Of(n[i]),s=i0&&void 0===l)break;if(l&&s&&"object"==typeof s&&void 0===s.outlets){if(!jf(l,s,a))return o;i+=2}else{if(!jf(l,{},a))return o;i++}r++}return{match:!0,pathIndex:r,commandIndex:i}}(t,e,n),r=n.slice(i.commandIndex);if(i.match&&i.pathIndex0?new Xp([],((i={})[Ep]=t,i)):t;return new qp(r,e,n)},t.prototype.expandSegmentGroup=function(t,e,n,i){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(t,e,n).pipe(nt(function(t){return new Xp([],t)})):this.expandSegment(t,n,e,n.segments,i,!0)},t.prototype.expandChildren=function(t,e,n){var i=this;return function(n,r){if(0===Object.keys(n).length)return cc({});var o=[],a=[],l={};return Wp(n,function(n,r){var s,u,c=(s=r,u=n,i.expandSegmentGroup(t,e,u,s)).pipe(nt(function(t){return l[r]=t}));r===Ep?o.push(c):a.push(c)}),cc.apply(null,o.concat(a)).pipe(dc(),Zh(),nt(function(){return l}))}(n.children)},t.prototype.expandSegment=function(t,e,n,i,r,o){var a=this;return cc.apply(void 0,d(n)).pipe(nt(function(l){return a.expandSegmentAgainstRoute(t,e,n,l,i,r,o).pipe(Jh(function(t){if(t instanceof Wf)return cc(null);throw t}))}),dc(),tp(function(t){return!!t}),Jh(function(t,n){if(t instanceof Ih||"EmptyError"===t.name){if(a.noLeftoversInUrl(e,i,r))return cc(new Xp([],{}));throw new Wf(e)}throw t}))},t.prototype.noLeftoversInUrl=function(t,e,n){return 0===e.length&&!t.children[n]},t.prototype.expandSegmentAgainstRoute=function(t,e,n,i,r,o,a){return $f(i)!==o?Gf(e):void 0===i.redirectTo?this.matchSegmentAgainstRoute(t,e,i,r):a&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(t,e,n,i,r,o):Gf(e)},t.prototype.expandSegmentAgainstRouteUsingRedirect=function(t,e,n,i,r,o){return"**"===i.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(t,n,i,o):this.expandRegularSegmentAgainstRouteUsingRedirect(t,e,n,i,r,o)},t.prototype.expandWildCardWithParamsAgainstRouteUsingRedirect=function(t,e,n,i){var r=this,o=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith("/")?qf(o):this.lineralizeSegments(n,o).pipe(lt(function(n){var o=new Xp(n,{});return r.expandSegment(t,o,e,n,i,!1)}))},t.prototype.expandRegularSegmentAgainstRouteUsingRedirect=function(t,e,n,i,r,o){var a=this,l=Zf(e,i,r),s=l.consumedSegments,u=l.lastChild,c=l.positionalParamSegments;if(!l.matched)return Gf(e);var d=this.applyRedirectCommands(s,i.redirectTo,c);return i.redirectTo.startsWith("/")?qf(d):this.lineralizeSegments(i,d).pipe(lt(function(i){return a.expandSegment(t,e,n,i.concat(r.slice(u)),o,!1)}))},t.prototype.matchSegmentAgainstRoute=function(t,e,n,i){var r=this;if("**"===n.path)return n.loadChildren?this.configLoader.load(t.injector,n).pipe(nt(function(t){return n._loadedConfig=t,new Xp(i,{})})):cc(new Xp(i,{}));var a=Zf(e,n,i),l=a.consumedSegments,s=a.lastChild;if(!a.matched)return Gf(e);var c=i.slice(s);return this.getChildConfig(t,n,i).pipe(lt(function(t){var n=t.module,i=t.routes,a=function(t,e,n,i){return n.length>0&&function(t,e,n){return i.some(function(n){return Qf(t,e,n)&&$f(n)!==Ep})}(t,n)?{segmentGroup:Jf(new Xp(e,function(t,e){var n,i,r={};r[Ep]=e;try{for(var o=u(t),a=o.next();!a.done;a=o.next()){var l=a.value;""===l.path&&$f(l)!==Ep&&(r[$f(l)]=new Xp([],{}))}}catch(s){n={error:s}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}return r}(i,new Xp(n,t.children)))),slicedSegments:[]}:0===n.length&&function(t,e,n){return i.some(function(n){return Qf(t,e,n)})}(t,n)?{segmentGroup:Jf(new Xp(t.segments,function(t,e,n,i){var r,a,l={};try{for(var s=u(n),c=s.next();!c.done;c=s.next()){var d=c.value;Qf(t,e,d)&&!i[$f(d)]&&(l[$f(d)]=new Xp([],{}))}}catch(h){r={error:h}}finally{try{c&&!c.done&&(a=s.return)&&a.call(s)}finally{if(r)throw r.error}}return o({},i,l)}(t,n,i,t.children))),slicedSegments:n}:{segmentGroup:t,slicedSegments:n}}(e,l,c,i),s=a.segmentGroup,d=a.slicedSegments;return 0===d.length&&s.hasChildren()?r.expandChildren(n,i,s).pipe(nt(function(t){return new Xp(l,t)})):0===i.length&&0===d.length?cc(new Xp(l,{})):r.expandSegment(n,s,i,d,Ep,!0).pipe(nt(function(t){return new Xp(l.concat(t.segments),t.children)}))}))},t.prototype.getChildConfig=function(t,e,n){var i=this;return e.children?cc(new Ip(e.children,t)):e.loadChildren?void 0!==e._loadedConfig?cc(e._loadedConfig):function(t,e,n){var i,r=e.canLoad;return r&&0!==r.length?at(r).pipe(nt(function(i){var r,o=t.get(i);if(function(t){return t&&Vf(t.canLoad)}(o))r=o.canLoad(e,n);else{if(!Vf(o))throw new Error("Invalid CanLoad guard");r=o(e,n)}return Up(r)})).pipe(dc(),(i=function(t){return!0===t},function(t){return t.lift(new ep(i,void 0,t))})):cc(!0)}(t.injector,e,n).pipe(lt(function(n){return n?i.configLoader.load(t.injector,e).pipe(nt(function(t){return e._loadedConfig=t,t})):function(t){return new Y(function(e){return e.error(Yp("Cannot load children because the guard of the route \"path: '"+t.path+"'\" returned false"))})}(e)})):cc(new Ip([],t))},t.prototype.lineralizeSegments=function(t,e){for(var n=[],i=e.root;;){if(n=n.concat(i.segments),0===i.numberOfChildren)return cc(n);if(i.numberOfChildren>1||!i.children[Ep])return Xf(t.redirectTo);i=i.children[Ep]}},t.prototype.applyRedirectCommands=function(t,e,n){return this.applyRedirectCreatreUrlTree(e,this.urlSerializer.parse(e),t,n)},t.prototype.applyRedirectCreatreUrlTree=function(t,e,n,i){var r=this.createSegmentGroup(t,e.root,n,i);return new qp(r,this.createQueryParams(e.queryParams,this.urlTree.queryParams),e.fragment)},t.prototype.createQueryParams=function(t,e){var n={};return Wp(t,function(t,i){if("string"==typeof t&&t.startsWith(":")){var r=t.substring(1);n[i]=e[r]}else n[i]=t}),n},t.prototype.createSegmentGroup=function(t,e,n,i){var r=this,o=this.createSegments(t,e.segments,n,i),a={};return Wp(e.children,function(e,o){a[o]=r.createSegmentGroup(t,e,n,i)}),new Xp(o,a)},t.prototype.createSegments=function(t,e,n,i){var r=this;return e.map(function(e){return e.path.startsWith(":")?r.findPosParam(t,e,i):r.findOrReturn(e,n)})},t.prototype.findPosParam=function(t,e,n){var i=n[e.path.substring(1)];if(!i)throw new Error("Cannot redirect to '"+t+"'. Cannot find '"+e.path+"'.");return i},t.prototype.findOrReturn=function(t,e){var n,i,r=0;try{for(var o=u(e),a=o.next();!a.done;a=o.next()){var l=a.value;if(l.path===t.path)return e.splice(r),l;r++}}catch(s){n={error:s}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}return t},t}();function Zf(t,e,n){if(""===e.path)return"full"===e.pathMatch&&(t.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};var i=(e.matcher||Rp)(n,t,e);return i?{matched:!0,consumedSegments:i.consumed,lastChild:i.consumed.length,positionalParamSegments:i.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function Jf(t){if(1===t.numberOfChildren&&t.children[Ep]){var e=t.children[Ep];return new Xp(t.segments.concat(e.segments),e.children)}return t}function Qf(t,e,n){return(!(t.hasChildren()||e.length>0)||"full"!==n.pathMatch)&&""===n.path&&void 0!==n.redirectTo}function $f(t){return t.outlet||Ep}var tm=function(){return function(t){this.path=t,this.route=this.path[this.path.length-1]}}(),em=function(){return function(t,e){this.component=t,this.route=e}}();function nm(t,e,n){var i=function(t){if(!t)return null;for(var e=t.parent;e;e=e.parent){var n=e.routeConfig;if(n&&n._loadedConfig)return n._loadedConfig}return null}(e);return(i?i.module.injector:n).get(t)}function im(t,e,n,i,r){void 0===r&&(r={canDeactivateChecks:[],canActivateChecks:[]});var o=_f(e);return t.children.forEach(function(t){!function(t,e,n,i,r){void 0===r&&(r={canDeactivateChecks:[],canActivateChecks:[]});var o=t.value,a=e?e.value:null,l=n?n.getContext(t.value.outlet):null;if(a&&o.routeConfig===a.routeConfig){var s=function(t,e,n){if("function"==typeof n)return n(t,e);switch(n){case"pathParamsChange":return!Zp(t.url,e.url);case"pathParamsOrQueryParamsChange":return!Zp(t.url,e.url)||!Np(t.queryParams,e.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!Df(t,e)||!Np(t.queryParams,e.queryParams);case"paramsChange":default:return!Df(t,e)}}(a,o,o.routeConfig.runGuardsAndResolvers);s?r.canActivateChecks.push(new tm(i)):(o.data=a.data,o._resolvedData=a._resolvedData),im(t,e,o.component?l?l.children:null:n,i,r),s&&r.canDeactivateChecks.push(new em(l&&l.outlet&&l.outlet.component||null,a))}else a&&rm(e,l,r),r.canActivateChecks.push(new tm(i)),im(t,null,o.component?l?l.children:null:n,i,r)}(t,o[t.value.outlet],n,i.concat([t.value]),r),delete o[t.value.outlet]}),Wp(o,function(t,e){return rm(t,n.getContext(e),r)}),r}function rm(t,e,n){var i=_f(t),r=t.value;Wp(i,function(t,i){rm(t,r.component?e?e.children.getContext(i):null:e,n)}),n.canDeactivateChecks.push(new em(r.component&&e&&e.outlet&&e.outlet.isActivated?e.outlet.component:null,r))}var om=Symbol("INITIAL_VALUE");function am(){return ip(function(t){return zh.apply(void 0,d(t.map(function(t){return t.pipe(Ac(1),hc(om))}))).pipe(ap(function(t,e){var n=!1;return e.reduce(function(t,i,r){if(t!==om)return t;if(i===om&&(n=!0),!n){if(!1===i)return i;if(r===e.length-1||Bf(i))return i}return t},t)},om),Cc(function(t){return t!==om}),nt(function(t){return Bf(t)?t:!0===t}),Ac(1))})}function lm(t,e){return null!==t&&e&&e(new Cp(t)),cc(!0)}function sm(t,e){return null!==t&&e&&e(new Mp(t)),cc(!0)}function um(t,e,n){var i=e.routeConfig?e.routeConfig.canActivate:null;return i&&0!==i.length?cc(i.map(function(i){return Nh(function(){var r,o=nm(i,e,n);if(function(t){return t&&Vf(t.canActivate)}(o))r=Up(o.canActivate(e,t));else{if(!Vf(o))throw new Error("Invalid CanActivate guard");r=Up(o(e,t))}return r.pipe(tp())})})).pipe(am()):cc(!0)}function cm(t,e,n){var i=e[e.length-1],r=e.slice(0,e.length-1).reverse().map(function(t){return function(t){var e=t.routeConfig?t.routeConfig.canActivateChild:null;return e&&0!==e.length?{node:t,guards:e}:null}(t)}).filter(function(t){return null!==t}).map(function(e){return Nh(function(){return cc(e.guards.map(function(r){var o,a=nm(r,e.node,n);if(function(t){return t&&Vf(t.canActivateChild)}(a))o=Up(a.canActivateChild(i,t));else{if(!Vf(a))throw new Error("Invalid CanActivateChild guard");o=Up(a(i,t))}return o.pipe(tp())})).pipe(am())})});return cc(r).pipe(am())}var dm=function(){return function(){}}(),hm=function(){function t(t,e,n,i,r,o){this.rootComponentType=t,this.config=e,this.urlTree=n,this.url=i,this.paramsInheritanceStrategy=r,this.relativeLinkResolution=o}return t.prototype.recognize=function(){try{var t=mm(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,e=this.processSegmentGroup(this.config,t,Ep),n=new kf([],Object.freeze({}),Object.freeze(o({},this.urlTree.queryParams)),this.urlTree.fragment,{},Ep,this.rootComponentType,null,this.urlTree.root,-1,{}),i=new yf(n,e),r=new Mf(this.url,i);return this.inheritParamsAndData(r._root),cc(r)}catch(a){return new Y(function(t){return t.error(a)})}},t.prototype.inheritParamsAndData=function(t){var e=this,n=t.value,i=wf(n,this.paramsInheritanceStrategy);n.params=Object.freeze(i.params),n.data=Object.freeze(i.data),t.children.forEach(function(t){return e.inheritParamsAndData(t)})},t.prototype.processSegmentGroup=function(t,e,n){return 0===e.segments.length&&e.hasChildren()?this.processChildren(t,e):this.processSegment(t,e,e.segments,n)},t.prototype.processChildren=function(t,e){var n,i=this,r=Jp(e,function(e,n){return i.processSegmentGroup(t,e,n)});return n={},r.forEach(function(t){var e=n[t.value.outlet];if(e){var i=e.url.map(function(t){return t.toString()}).join("/"),r=t.value.url.map(function(t){return t.toString()}).join("/");throw new Error("Two segments cannot have the same outlet name: '"+i+"' and '"+r+"'.")}n[t.value.outlet]=t.value}),r.sort(function(t,e){return t.value.outlet===Ep?-1:e.value.outlet===Ep?1:t.value.outlet.localeCompare(e.value.outlet)}),r},t.prototype.processSegment=function(t,e,n,i){var r,o;try{for(var a=u(t),l=a.next();!l.done;l=a.next()){var s=l.value;try{return this.processSegmentAgainstRoute(s,e,n,i)}catch(c){if(!(c instanceof dm))throw c}}}catch(d){r={error:d}}finally{try{l&&!l.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}if(this.noLeftoversInUrl(e,n,i))return[];throw new dm},t.prototype.noLeftoversInUrl=function(t,e,n){return 0===e.length&&!t.children[n]},t.prototype.processSegmentAgainstRoute=function(t,e,n,i){if(t.redirectTo)throw new dm;if((t.outlet||Ep)!==i)throw new dm;var r,a=[],l=[];if("**"===t.path){var s=n.length>0?Bp(n).parameters:{};r=new kf(n,s,Object.freeze(o({},this.urlTree.queryParams)),this.urlTree.fragment,_m(t),i,t.component,t,pm(e),fm(e)+n.length,vm(t))}else{var u=function(t,e,n){if(""===e.path){if("full"===e.pathMatch&&(t.hasChildren()||n.length>0))throw new dm;return{consumedSegments:[],lastChild:0,parameters:{}}}var i=(e.matcher||Rp)(n,t,e);if(!i)throw new dm;var r={};Wp(i.posParams,function(t,e){r[e]=t.path});var a=i.consumed.length>0?o({},r,i.consumed[i.consumed.length-1].parameters):r;return{consumedSegments:i.consumed,lastChild:i.consumed.length,parameters:a}}(e,t,n);a=u.consumedSegments,l=n.slice(u.lastChild),r=new kf(a,u.parameters,Object.freeze(o({},this.urlTree.queryParams)),this.urlTree.fragment,_m(t),i,t.component,t,pm(e),fm(e)+a.length,vm(t))}var c=function(t){return t.children?t.children:t.loadChildren?t._loadedConfig.routes:[]}(t),d=mm(e,a,l,c,this.relativeLinkResolution),h=d.segmentGroup,p=d.slicedSegments;if(0===p.length&&h.hasChildren()){var f=this.processChildren(c,h);return[new yf(r,f)]}if(0===c.length&&0===p.length)return[new yf(r,[])];var m=this.processSegment(c,h,p,Ep);return[new yf(r,m)]},t}();function pm(t){for(var e=t;e._sourceSegment;)e=e._sourceSegment;return e}function fm(t){for(var e=t,n=e._segmentIndexShift?e._segmentIndexShift:0;e._sourceSegment;)n+=(e=e._sourceSegment)._segmentIndexShift?e._segmentIndexShift:0;return n-1}function mm(t,e,n,i,r){if(n.length>0&&function(t,e,n){return i.some(function(n){return gm(t,e,n)&&ym(n)!==Ep})}(t,n)){var a=new Xp(e,function(t,e,n,i){var r,o,a={};a[Ep]=i,i._sourceSegment=t,i._segmentIndexShift=e.length;try{for(var l=u(n),s=l.next();!s.done;s=l.next()){var c=s.value;if(""===c.path&&ym(c)!==Ep){var d=new Xp([],{});d._sourceSegment=t,d._segmentIndexShift=e.length,a[ym(c)]=d}}}catch(h){r={error:h}}finally{try{s&&!s.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}return a}(t,e,i,new Xp(n,t.children)));return a._sourceSegment=t,a._segmentIndexShift=e.length,{segmentGroup:a,slicedSegments:[]}}if(0===n.length&&function(t,e,n){return i.some(function(n){return gm(t,e,n)})}(t,n)){var l=new Xp(t.segments,function(t,e,n,i,r,a){var l,s,c={};try{for(var d=u(i),h=d.next();!h.done;h=d.next()){var p=h.value;if(gm(t,n,p)&&!r[ym(p)]){var f=new Xp([],{});f._sourceSegment=t,f._segmentIndexShift="legacy"===a?t.segments.length:e.length,c[ym(p)]=f}}}catch(m){l={error:m}}finally{try{h&&!h.done&&(s=d.return)&&s.call(d)}finally{if(l)throw l.error}}return o({},r,c)}(t,e,n,i,t.children,r));return l._sourceSegment=t,l._segmentIndexShift=e.length,{segmentGroup:l,slicedSegments:n}}var s=new Xp(t.segments,t.children);return s._sourceSegment=t,s._segmentIndexShift=e.length,{segmentGroup:s,slicedSegments:n}}function gm(t,e,n){return(!(t.hasChildren()||e.length>0)||"full"!==n.pathMatch)&&""===n.path&&void 0===n.redirectTo}function ym(t){return t.outlet||Ep}function _m(t){return t.data||{}}function vm(t){return t.resolve||{}}function bm(t,e,n,i){var r=nm(t,e,i);return Up(r.resolve?r.resolve(e,n):r(e,n))}function xm(t){return function(e){return e.pipe(ip(function(e){var n=t(e);return n?at(n).pipe(nt(function(){return e})):at([e])}))}}var wm=function(){return function(){}}(),km=function(){function t(){}return t.prototype.shouldDetach=function(t){return!1},t.prototype.store=function(t,e){},t.prototype.shouldAttach=function(t){return!1},t.prototype.retrieve=function(t){return null},t.prototype.shouldReuseRoute=function(t,e){return t.routeConfig===e.routeConfig},t}(),Mm=new Lt("ROUTES"),Sm=function(){function t(t,e,n,i){this.loader=t,this.compiler=e,this.onLoadStartListener=n,this.onLoadEndListener=i}return t.prototype.load=function(t,e){var n=this;return this.onLoadStartListener&&this.onLoadStartListener(e),this.loadModuleFactory(e.loadChildren).pipe(nt(function(i){n.onLoadEndListener&&n.onLoadEndListener(e);var r=i.create(t);return new Ip(Vp(r.injector.get(Mm)).map(Hp),r)}))},t.prototype.loadModuleFactory=function(t){var e=this;return"string"==typeof t?at(this.loader.load(t)):Up(t()).pipe(lt(function(t){return t instanceof Ne?cc(t):at(e.compiler.compileModuleAsync(t))}))},t}(),Cm=function(){return function(){}}(),Lm=function(){function t(){}return t.prototype.shouldProcessUrl=function(t){return!0},t.prototype.extract=function(t){return t},t.prototype.merge=function(t,e){return t},t}();function Dm(t){throw t}function Tm(t,e,n){return e.parse("/")}function Em(t,e){return cc(null)}var Am=function(){function t(t,e,n,i,r,o,a,l){var s=this;this.rootComponentType=t,this.urlSerializer=e,this.rootContexts=n,this.location=i,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new H,this.errorHandler=Dm,this.malformedUriErrorHandler=Tm,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:Em,afterPreactivation:Em},this.urlHandlingStrategy=new Lm,this.routeReuseStrategy=new km,this.onSameUrlNavigation="ignore",this.paramsInheritanceStrategy="emptyOnly",this.urlUpdateStrategy="deferred",this.relativeLinkResolution="legacy",this.ngModule=r.get(He),this.console=r.get(ui);var u=r.get(Mi);this.isNgZoneEnabled=u instanceof Mi,this.resetConfig(l),this.currentUrlTree=new qp(new Xp([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new Sm(o,a,function(t){return s.triggerEvent(new wp(t))},function(t){return s.triggerEvent(new kp(t))}),this.routerState=bf(this.currentUrlTree,this.rootComponentType),this.transitions=new Th({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:"imperative",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}return t.prototype.setupNavigations=function(t){var e=this,n=this.events;return t.pipe(Cc(function(t){return 0!==t.id}),nt(function(t){return o({},t,{extractedUrl:e.urlHandlingStrategy.extract(t.rawUrl)})}),ip(function(t){var i,r,a,l=!1,s=!1;return cc(t).pipe(mc(function(t){e.currentNavigation={id:t.id,initialUrl:t.currentRawUrl,extractedUrl:t.extractedUrl,trigger:t.source,extras:t.extras,previousNavigation:e.lastSuccessfulNavigation?o({},e.lastSuccessfulNavigation,{previousNavigation:null}):null}}),ip(function(t){var i,r,a,l,s=!e.navigated||t.extractedUrl.toString()!==e.browserUrlTree.toString();if(("reload"===e.onSameUrlNavigation||s)&&e.urlHandlingStrategy.shouldProcessUrl(t.rawUrl))return cc(t).pipe(ip(function(t){var i=e.transitions.getValue();return n.next(new pp(t.id,e.serializeUrl(t.extractedUrl),t.source,t.restoredState)),i!==e.transitions.getValue()?sc:[t]}),ip(function(t){return Promise.resolve(t)}),(i=e.ngModule.injector,r=e.configLoader,a=e.urlSerializer,l=e.config,function(t){return t.pipe(ip(function(t){return function(e,n,i,r,o){return new Kf(e,n,i,t.extractedUrl,o).apply()}(i,r,a,0,l).pipe(nt(function(e){return o({},t,{urlAfterRedirects:e})}))}))}),mc(function(t){e.currentNavigation=o({},e.currentNavigation,{finalUrl:t.urlAfterRedirects})}),function(t,n,i,r,a){return function(i){return i.pipe(lt(function(i){return function(t,e,n,i,r,o){return void 0===r&&(r="emptyOnly"),void 0===o&&(o="legacy"),new hm(t,e,n,i,r,o).recognize()}(t,n,i.urlAfterRedirects,(l=i.urlAfterRedirects,e.serializeUrl(l)),r,a).pipe(nt(function(t){return o({},i,{targetSnapshot:t})}));var l}))}}(e.rootComponentType,e.config,0,e.paramsInheritanceStrategy,e.relativeLinkResolution),mc(function(t){"eager"===e.urlUpdateStrategy&&(t.extras.skipLocationChange||e.setBrowserUrl(t.urlAfterRedirects,!!t.extras.replaceUrl,t.id),e.browserUrlTree=t.urlAfterRedirects)}),mc(function(t){var i=new yp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);n.next(i)}));if(s&&e.rawUrlTree&&e.urlHandlingStrategy.shouldProcessUrl(e.rawUrlTree)){var u=t.extractedUrl,c=t.source,d=t.restoredState,h=t.extras,p=new pp(t.id,e.serializeUrl(u),c,d);n.next(p);var f=bf(u,e.rootComponentType).snapshot;return cc(o({},t,{targetSnapshot:f,urlAfterRedirects:u,extras:o({},h,{skipLocationChange:!1,replaceUrl:!1})}))}return e.rawUrlTree=t.rawUrl,t.resolve(null),sc}),xm(function(t){var n=t.extras;return e.hooks.beforePreactivation(t.targetSnapshot,{navigationId:t.id,appliedUrlTree:t.extractedUrl,rawUrlTree:t.rawUrl,skipLocationChange:!!n.skipLocationChange,replaceUrl:!!n.replaceUrl})}),mc(function(t){var n=new _p(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);e.triggerEvent(n)}),nt(function(t){return o({},t,{guards:(n=t.targetSnapshot,i=t.currentSnapshot,r=e.rootContexts,a=n._root,im(a,i?i._root:null,r,[a.value]))});var n,i,r,a}),function(t,e){return function(n){return n.pipe(lt(function(n){var i=n.targetSnapshot,r=n.currentSnapshot,a=n.guards,l=a.canActivateChecks,s=a.canDeactivateChecks;return 0===s.length&&0===l.length?cc(o({},n,{guardsResult:!0})):function(t,e,n,i){return at(s).pipe(lt(function(t){return function(t,e,n,i,r){var o=e&&e.routeConfig?e.routeConfig.canDeactivate:null;return o&&0!==o.length?cc(o.map(function(o){var a,l=nm(o,e,r);if(function(t){return t&&Vf(t.canDeactivate)}(l))a=Up(l.canDeactivate(t,e,n,i));else{if(!Vf(l))throw new Error("Invalid CanDeactivate guard");a=Up(l(t,e,n,i))}return a.pipe(tp())})).pipe(am()):cc(!0)}(t.component,t.route,n,e,i)}),tp(function(t){return!0!==t},!0))}(0,i,r,t).pipe(lt(function(n){return n&&"boolean"==typeof n?function(t,e,n,i){return at(l).pipe(Zd(function(e){return at([sm(e.route.parent,i),lm(e.route,i),cm(t,e.path,n),um(t,e.route,n)]).pipe(dc(),tp(function(t){return!0!==t},!0))}),tp(function(t){return!0!==t},!0))}(i,0,t,e):cc(n)}),nt(function(t){return o({},n,{guardsResult:t})}))}))}}(e.ngModule.injector,function(t){return e.triggerEvent(t)}),mc(function(t){if(Bf(t.guardsResult)){var n=Yp('Redirecting to "'+e.serializeUrl(t.guardsResult)+'"');throw n.url=t.guardsResult,n}}),mc(function(t){var n=new vp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot,!!t.guardsResult);e.triggerEvent(n)}),Cc(function(t){if(!t.guardsResult){e.resetUrlToCurrentUrlTree();var i=new mp(t.id,e.serializeUrl(t.extractedUrl),"");return n.next(i),t.resolve(!1),!1}return!0}),xm(function(t){if(t.guards.canActivateChecks.length)return cc(t).pipe(mc(function(t){var n=new bp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);e.triggerEvent(n)}),(n=e.paramsInheritanceStrategy,i=e.ngModule.injector,function(t){return t.pipe(lt(function(t){var e=t.targetSnapshot,r=t.guards.canActivateChecks;return r.length?at(r).pipe(Zd(function(t){return function(t,n,i,r){return function(t,e,n,i){var r=Object.keys(t);if(0===r.length)return cc({});if(1===r.length){var o=r[0];return bm(t[o],e,n,i).pipe(nt(function(t){var e;return(e={})[o]=t,e}))}var a={};return at(r).pipe(lt(function(r){return bm(t[r],e,n,i).pipe(nt(function(t){return a[r]=t,t}))})).pipe(Zh(),nt(function(){return a}))}(t._resolve,t,e,r).pipe(nt(function(e){return t._resolvedData=e,t.data=o({},t.data,wf(t,i).resolve),null}))}(t.route,0,n,i)}),function(t,e){return arguments.length>=2?function(e){return P(ap(t,void 0),Vh(1),qh(void 0))(e)}:function(e){return P(ap(function(e,n,i){return t(e)}),Vh(1))(e)}}(function(t,e){return t}),nt(function(e){return t})):cc(t)}))}),mc(function(t){var n=new xp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);e.triggerEvent(n)}));var n,i}),xm(function(t){var n=t.extras;return e.hooks.afterPreactivation(t.targetSnapshot,{navigationId:t.id,appliedUrlTree:t.extractedUrl,rawUrlTree:t.rawUrl,skipLocationChange:!!n.skipLocationChange,replaceUrl:!!n.replaceUrl})}),nt(function(t){var n,i,r,a=(r=function t(e,n,i){if(i&&e.shouldReuseRoute(n.value,i.value.snapshot)){(s=i.value)._futureSnapshot=n.value;var r=function(e,n,i){return n.children.map(function(n){var r,o;try{for(var a=u(i.children),l=a.next();!l.done;l=a.next()){var s=l.value;if(e.shouldReuseRoute(s.value.snapshot,n.value))return t(e,n,s)}}catch(c){r={error:c}}finally{try{l&&!l.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}return t(e,n)})}(e,n,i);return new yf(s,r)}var o=e.retrieve(n.value);if(o){var a=o.route;return function t(e,n){if(e.value.routeConfig!==n.value.routeConfig)throw new Error("Cannot reattach ActivatedRouteSnapshot created from a different route");if(e.children.length!==n.children.length)throw new Error("Cannot reattach ActivatedRouteSnapshot with a different number of children");n.value._futureSnapshot=e.value;for(var i=0;il;){if(s-=l,!(a=a.parent))throw new Error("Invalid number of '../'");l=a.segments.length}return new Pf(a,!1,l-s)}()}(o,0,t),l=a.processChildren?Rf(a.segmentGroup,a.index,o.commands):Yf(a.segmentGroup,a.index,o.commands);return Ef(a.segmentGroup,l,e,i,r)}(u,this.currentUrlTree,t,h,c)},t.prototype.navigateByUrl=function(t,e){void 0===e&&(e={skipLocationChange:!1}),tn()&&this.isNgZoneEnabled&&!Mi.isInAngularZone()&&this.console.warn("Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?");var n=Bf(t)?t:this.parseUrl(t),i=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(i,"imperative",null,e)},t.prototype.navigate=function(t,e){return void 0===e&&(e={skipLocationChange:!1}),function(t){for(var e=0;e0?t.prototype.requestAsyncId.call(this,e,n,i):(e.actions.push(this),e.scheduled||(e.scheduled=(r=e.flush.bind(e,null),o=ug++,cg[o]=r,Promise.resolve().then(function(){return function(t){var e=cg[t];e&&e()}(o)}),o)));var r,o},e.prototype.recycleAsyncId=function(e,n,i){if(void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0)return t.prototype.recycleAsyncId.call(this,e,n,i);0===e.actions.length&&(delete cg[n],e.scheduled=void 0)},e}(_c),hg=new(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.flush=function(t){this.active=!0,this.scheduled=void 0;var e,n=this.actions,i=-1,r=n.length;t=t||n.shift();do{if(e=t.execute(t.state,t.delay))break}while(++i1?Array.prototype.slice.call(arguments):t)},i,n)})}function fg(t){return function(e){return e.lift(new mg(t))}}var mg=function(){function t(t){this.notifier=t}return t.prototype.call=function(t,e){var n=new gg(t),i=tt(n,this.notifier);return i&&!n.seenValue?(n.add(i),e.subscribe(n)):n},t}(),gg=function(t){function e(e){var n=t.call(this,e)||this;return n.seenValue=!1,n}return r(e,t),e.prototype.notifyNext=function(t,e,n,i,r){this.seenValue=!0,this.complete()},e.prototype.notifyComplete=function(){},e}(et),yg=function(){return function(){}}(),_g=function(){function t(t,e,n,i,r){void 0===t&&(t=!1),void 0===e&&(e="all"),void 0===n&&(n=""),void 0===i&&(i=""),void 0===r&&(r=0),this.matches=t,this.mediaQuery=e,this.mqAlias=n,this.suffix=i,this.priority=r,this.property=""}return t.prototype.clone=function(){return new t(this.matches,this.mediaQuery,this.mqAlias,this.suffix)},t}(),vg=function(){function t(){this.stylesheet=new Map}return t.prototype.addStyleToElement=function(t,e,n){var i=this.stylesheet.get(t);i?i.set(e,n):this.stylesheet.set(t,new Map([[e,n]]))},t.prototype.clearStyles=function(){this.stylesheet.clear()},t.prototype.getStyleForElement=function(t,e){var n=this.stylesheet.get(t),i="";if(n){var r=n.get(e);"number"!=typeof r&&"string"!=typeof r||(i=r+"")}return i},t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}(),bg={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[]},xg=new Lt("Flex Layout token, config options for the library",{providedIn:"root",factory:function(){return bg}}),wg=new Lt("FlexLayoutServerLoaded",{providedIn:"root",factory:function(){return!1}}),kg=new Lt("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:function(){return null}});function Mg(t,e){return t=t?t.clone():new _g,e&&(t.mqAlias=e.alias,t.mediaQuery=e.mediaQuery,t.suffix=e.suffix,t.priority=e.priority),t}var Sg=["row","column","row-reverse","column-reverse"];function Cg(t){if(t)switch(t.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":t="wrap-reverse";break;case"no":case"none":case"nowrap":t="nowrap";break;default:t="wrap"}return t}var Lg=function(){function t(t,e,n,i){this.elementRef=t,this.styleBuilder=e,this.styler=n,this.marshal=i,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new H,this.styleCache=new Map}return Object.defineProperty(t.prototype,"parentElement",{get:function(){return this.elementRef.nativeElement.parentElement},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"nativeElement",{get:function(){return this.elementRef.nativeElement},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activatedValue",{get:function(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)},set:function(t){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,t,this.marshal.activatedAlias)},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(t){var e=this;Object.keys(t).forEach(function(n){if(-1!==e.inputs.indexOf(n)){var i=n.split(".").slice(1).join(".");e.setValue(t[n].currentValue,i)}})},t.prototype.ngOnDestroy=function(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)},t.prototype.init=function(t){void 0===t&&(t=[]),this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),t)},t.prototype.addStyles=function(t,e){var n=this.styleBuilder,i=n.shouldCache,r=this.styleCache.get(t);r&&i||(r=n.buildStyles(t,e),i&&this.styleCache.set(t,r)),this.mru=o({},r),this.applyStyleToElement(r),n.sideEffect(t,r,e)},t.prototype.clearStyles=function(){var t=this;Object.keys(this.mru).forEach(function(e){t.mru[e]=""}),this.applyStyleToElement(this.mru),this.mru={}},t.prototype.triggerUpdate=function(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)},t.prototype.getFlexFlowDirection=function(t,e){if(void 0===e&&(e=!1),t){var n=this.styler.getFlowDirection(t),i=n[0];if(!n[1]&&e){var r=function(t){var e,n,i=function(t){var e=(t=t?t.toLowerCase():"").split(" "),n=e[0],i=e[1],r=e[2];return Sg.find(function(t){return t===n})||(n=Sg[0]),"inline"===i&&(i="inline"!==r?r:"",r="inline"),[n,Cg(i),!!r]}(t);return void 0===(e=i[1])&&(e=null),void 0===(n=i[2])&&(n=!1),{display:n?"inline-flex":"flex","box-sizing":"border-box","flex-direction":i[0],"flex-wrap":e||null}}(i);this.styler.applyStyleToElements(r,[t])}return i.trim()}return"row"},t.prototype.applyStyleToElement=function(t,e,n){void 0===n&&(n=this.nativeElement),this.styler.applyStyleToElement(n,t,e)},t.prototype.setValue=function(t,e){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,t,e)},t.prototype.updateWithValue=function(t){this.addStyles(t)},t}(),Dg=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.99px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.99px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.99px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.99px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.99px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.99px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.99px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.99px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.99px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],Tg="(orientation: portrait) and (max-width: 599.99px)",Eg="(orientation: portrait) and (min-width: 600px) and (max-width: 839.99px)",Ag="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.99px)",Pg="(orientation: portrait) and (min-width: 840px)",Og="(orientation: landscape) and (min-width: 1280px)",Yg={HANDSET:Tg+", (orientation: landscape) and (max-width: 959.99px)",TABLET:Eg+" , "+Ag,WEB:Pg+", "+Og+" ",HANDSET_PORTRAIT:""+Tg,TABLET_PORTRAIT:Eg+" ",WEB_PORTRAIT:""+Pg,HANDSET_LANDSCAPE:"(orientation: landscape) and (max-width: 959.99px)]",TABLET_LANDSCAPE:""+Ag,WEB_LANDSCAPE:""+Og},Rg=[{alias:"handset",priority:2e3,mediaQuery:Yg.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:Yg.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:Yg.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:Yg.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:Yg.TABLET},{alias:"tablet.portrait",priority:2100,mediaQuery:Yg.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:Yg.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:Yg.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:Yg.WEB_PORTRAIT,overlapping:!0}],Ig=/(\.|-|_)/g;function Fg(t){var e=t.length>0?t.charAt(0):"",n=t.length>1?t.slice(1):"";return e.toUpperCase()+n}var zg=new Lt("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:function(){var t=ie(kg),e=ie(xg),n=[].concat.apply([],(t||[]).map(function(t){return Array.isArray(t)?t:[t]}));return function(t,e){void 0===e&&(e=[]);var n,i={};return t.forEach(function(t){i[t.alias]=t}),e.forEach(function(t){i[t.alias]?function(t){for(var e=[],n=1;n-1}));return ht(new Y(function(e){var i=n.registerQuery(t);if(i.length){var r=i.pop();i.forEach(function(t){e.next(t)}),n.source.next(r)}e.complete()}),i)}return this._observable$},t.prototype.registerQuery=function(t){var e=this,n=Array.isArray(t)?t:[t],i=[];return function(t,e){var n=t.filter(function(t){return!Bg[t]});if(n.length>0){var i=n.join(", ");try{var r=e.createElement("style");r.setAttribute("type","text/css"),r.styleSheet||r.appendChild(e.createTextNode("\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media "+i+" {.fx-query-test{ }}\n")),e.head.appendChild(r),n.forEach(function(t){return Bg[t]=r})}catch(o){console.error(o)}}}(n,this._document),n.forEach(function(t){var n=e.registry.get(t);n||((n=e.buildMQL(t)).addListener(function(n){e._zone.run(function(){return e.source.next(new _g(n.matches,t))})}),e.registry.set(t,n)),n.matches&&i.push(new _g(!0,t))}),i},t.prototype.buildMQL=function(t){return function(t,e){return e&&window.matchMedia("all").addListener?window.matchMedia(t):{matches:"all"===t||""===t,media:t,addListener:function(){},removeListener:function(){}}}(t,Ys(this._platformId))},t.ngInjectableDef=St({factory:function(){return new t(ie(Mi),ie(li),ie(As))},token:t,providedIn:"root"}),t}(),Bg={},Wg={alias:"print",mediaQuery:"print",priority:1e3},Ug=function(){function t(t,e){this.breakpoints=t,this.layoutConfig=e,this.isPrinting=!1,this.queue=new Gg,this.deactivations=[]}return t.prototype.withPrintQuery=function(t){return t.concat(["print"])},t.prototype.isPrintEvent=function(t){return t.mediaQuery.startsWith("print")},Object.defineProperty(t.prototype,"printAlias",{get:function(){return this.layoutConfig.printWithBreakpoints||[]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"printBreakPoints",{get:function(){var t=this;return this.printAlias.map(function(e){return t.breakpoints.findByAlias(e)}).filter(function(t){return null!==t})},enumerable:!0,configurable:!0}),t.prototype.getEventBreakpoints=function(t){var e=this.breakpoints.findByQuery(t.mediaQuery);return(e?this.printBreakPoints.concat([e]):this.printBreakPoints).sort(jg)},t.prototype.updateEvent=function(t){var e=this.breakpoints.findByQuery(t.mediaQuery);return this.isPrintEvent(t)&&(e=this.getEventBreakpoints(t)[0],t.mediaQuery=e?e.mediaQuery:""),Mg(t,e)},t.prototype.interceptEvents=function(t){var e=this;return function(n){e.isPrintEvent(n)?n.matches&&!e.isPrinting?(e.startPrinting(t,e.getEventBreakpoints(n)),t.updateStyles()):!n.matches&&e.isPrinting&&(e.stopPrinting(t),t.updateStyles()):e.collectActivations(n)}},t.prototype.blockPropagation=function(){var t=this;return function(e){return!(t.isPrinting||t.isPrintEvent(e))}},t.prototype.startPrinting=function(t,e){this.isPrinting=!0,t.activatedBreakpoints=this.queue.addPrintBreakpoints(e)},t.prototype.stopPrinting=function(t){t.activatedBreakpoints=this.deactivations,this.deactivations=[],this.queue.clear(),this.isPrinting=!1},t.prototype.collectActivations=function(t){if(!this.isPrinting)if(t.matches)this.deactivations=[];else{var e=this.breakpoints.findByQuery(t.mediaQuery);e&&(this.deactivations.push(e),this.deactivations.sort(jg))}},t.ngInjectableDef=St({factory:function(){return new t(ie(Ng),ie(xg))},token:t,providedIn:"root"}),t}(),Gg=function(){function t(){this.printBreakpoints=[]}return t.prototype.addPrintBreakpoints=function(t){var e=this;return t.push(Wg),t.sort(jg),t.forEach(function(t){return e.addBreakpoint(t)}),this.printBreakpoints},t.prototype.addBreakpoint=function(t){t&&void 0===this.printBreakpoints.find(function(e){return e.mediaQuery===t.mediaQuery})&&(this.printBreakpoints=function(t){return!!t&&t.mediaQuery.startsWith("print")}(t)?[t].concat(this.printBreakpoints):this.printBreakpoints.concat([t]))},t.prototype.clear=function(){this.printBreakpoints=[]},t}();function qg(t){for(var e in t){var n=t[e]||"";switch(e){case"display":t.display="flex"===n?["-webkit-flex","flex"]:"inline-flex"===n?["-webkit-inline-flex","inline-flex"]:n;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":t["-webkit-"+e]=n;break;case"flex-direction":t["-webkit-flex-direction"]=n=n||"row",t["flex-direction"]=n;break;case"order":t.order=t["-webkit-"+e]=isNaN(+n)?"0":n}}return t}var Xg=function(){function t(t,e,n,i){this._serverStylesheet=t,this._serverModuleLoaded=e,this._platformId=n,this.layoutConfig=i}return t.prototype.applyStyleToElement=function(t,e,n){void 0===n&&(n=null);var i={};"string"==typeof e&&(i[e]=n,e=i),i=this.layoutConfig.disableVendorPrefixes?e:qg(e),this._applyMultiValueStyleToElement(i,t)},t.prototype.applyStyleToElements=function(t,e){var n=this;void 0===e&&(e=[]);var i=this.layoutConfig.disableVendorPrefixes?t:qg(t);e.forEach(function(t){n._applyMultiValueStyleToElement(i,t)})},t.prototype.getFlowDirection=function(t){var e=this.lookupStyle(t,"flex-direction");return[e||"row",this.lookupInlineStyle(t,"flex-direction")||Rs(this._platformId)&&this._serverModuleLoaded?e:""]},t.prototype.lookupAttributeValue=function(t,e){return t.getAttribute(e)||""},t.prototype.lookupInlineStyle=function(t,e){return Ys(this._platformId)?t.style.getPropertyValue(e):this._getServerStyle(t,e)},t.prototype.lookupStyle=function(t,e,n){void 0===n&&(n=!1);var i="";return t&&((i=this.lookupInlineStyle(t,e))||(Ys(this._platformId)?n||(i=getComputedStyle(t).getPropertyValue(e)):this._serverModuleLoaded&&(i=this._serverStylesheet.getStyleForElement(t,e)))),i?i.trim():""},t.prototype._applyMultiValueStyleToElement=function(t,e){var n=this;Object.keys(t).sort().forEach(function(i){var r=t[i],o=Array.isArray(r)?r:[r];o.sort();for(var a=0,l=o;a0){var a=o.indexOf(":");if(-1===a)throw new Error("Invalid CSS style: "+o);e[o.substr(0,a).trim()]=o.substr(a+1).trim()}}return e},t.prototype._writeStyleAttribute=function(t,e){var n="";for(var i in e)e[i]&&(n+=i+":"+e[i]+";");t.setAttribute("style",n)},t.ngInjectableDef=St({factory:function(){return new t(ie(vg,8),ie(wg,8),ie(li),ie(xg))},token:t,providedIn:"root"}),t}(),Kg=function(){function t(){this.shouldCache=!0}return t.prototype.sideEffect=function(t,e,n){},t}();function Zg(t,e,n){void 0===e&&(e="1"),void 0===n&&(n="1");var i=[e,n,t],r=t.indexOf("calc");if(r>0)i[2]=Jg(t.substring(r).trim()),2==(o=t.substr(0,r).trim().split(" ")).length&&(i[0]=o[0],i[1]=o[1]);else if(0==r)i[2]=Jg(t.trim());else{var o;i=3===(o=t.split(" ")).length?o:[e,n,t]}return i}function Jg(t){return t.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}var Qg=function(){function t(t,e,n){this.matchMedia=t,this.breakpoints=e,this.hook=n,this.activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new H,this.observeActivations()}return Object.defineProperty(t.prototype,"activatedAlias",{get:function(){return this.activatedBreakpoints[0]?this.activatedBreakpoints[0].alias:""},enumerable:!0,configurable:!0}),t.prototype.onMediaChange=function(t){var e=this.findByQuery(t.mediaQuery);e&&((t=Mg(t,e)).matches&&-1===this.activatedBreakpoints.indexOf(e)?(this.activatedBreakpoints.push(e),this.activatedBreakpoints.sort(jg),this.updateStyles()):t.matches||-1===this.activatedBreakpoints.indexOf(e)||(this.activatedBreakpoints.splice(this.activatedBreakpoints.indexOf(e),1),this.activatedBreakpoints.sort(jg),this.updateStyles()))},t.prototype.init=function(t,e,n,i,r){void 0===r&&(r=[]),$g(this.updateMap,t,e,n),$g(this.clearMap,t,e,i),this.buildElementKeyMap(t,e),this.watchExtraTriggers(t,e,r)},t.prototype.getValue=function(t,e,n){var i=this.elementMap.get(t);if(i){var r=void 0!==n?i.get(n):this.getActivatedValues(i,e);if(r)return r.get(e)}},t.prototype.hasValue=function(t,e){var n=this.elementMap.get(t);if(n){var i=this.getActivatedValues(n,e);if(i)return void 0!==i.get(e)||!1}return!1},t.prototype.setValue=function(t,e,n,i){var r=this.elementMap.get(t);if(r){var o=(r.get(i)||new Map).set(e,n);r.set(i,o),this.elementMap.set(t,r)}else r=(new Map).set(i,(new Map).set(e,n)),this.elementMap.set(t,r);var a=this.getValue(t,e);void 0!==a&&this.updateElement(t,e,a)},t.prototype.trackValue=function(t,e){return this.subject.asObservable().pipe(Cc(function(n){return n.element===t&&n.key===e}))},t.prototype.updateStyles=function(){var t=this;this.elementMap.forEach(function(e,n){var i=new Set(t.elementKeyMap.get(n)),r=t.getActivatedValues(e);r&&r.forEach(function(e,r){t.updateElement(n,r,e),i.delete(r)}),i.forEach(function(i){if(r=t.getActivatedValues(e,i)){var o=r.get(i);t.updateElement(n,i,o)}else t.clearElement(n,i)})})},t.prototype.clearElement=function(t,e){var n=this.clearMap.get(t);if(n){var i=n.get(e);i&&(i(),this.subject.next({element:t,key:e,value:""}))}},t.prototype.updateElement=function(t,e,n){var i=this.updateMap.get(t);if(i){var r=i.get(e);r&&(r(n),this.subject.next({element:t,key:e,value:n}))}},t.prototype.releaseElement=function(t){var e=this.watcherMap.get(t);e&&(e.forEach(function(t){return t.unsubscribe()}),this.watcherMap.delete(t));var n=this.elementMap.get(t);n&&(n.forEach(function(t,e){return n.delete(e)}),this.elementMap.delete(t))},t.prototype.triggerUpdate=function(t,e){var n=this,i=this.elementMap.get(t);if(i){var r=this.getActivatedValues(i,e);r&&(e?this.updateElement(t,e,r.get(e)):r.forEach(function(e,i){return n.updateElement(t,i,e)}))}},t.prototype.buildElementKeyMap=function(t,e){var n=this.elementKeyMap.get(t);n||(n=new Set,this.elementKeyMap.set(t,n)),n.add(e)},t.prototype.watchExtraTriggers=function(t,e,n){var i=this;if(n&&n.length){var r=this.watcherMap.get(t);if(r||(r=new Map,this.watcherMap.set(t,r)),!r.get(e)){var o=ht.apply(void 0,n).subscribe(function(){var n=i.getValue(t,e);i.updateElement(t,e,n)});r.set(e,o)}}},t.prototype.findByQuery=function(t){return this.breakpoints.findByQuery(t)},t.prototype.getActivatedValues=function(t,e){for(var n=0;n-1}function ry(t){if(t)switch(t.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":t="wrap-reverse";break;case"no":case"none":case"nowrap":t="nowrap";break;default:t="wrap"}return t}var oy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t){return void 0===(e=(i=ny(t))[1])&&(e=null),void 0===(n=i[2])&&(n=!1),{display:n?"inline-flex":"flex","box-sizing":"border-box","flex-direction":i[0],"flex-wrap":e||null};var e,n,i},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),ay=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"],ly=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=ay,e}return r(e,t),e}(function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.DIRECTIVE_KEY="layout",o.styleCache=sy,o.init(),o}return r(e,t),e}(Lg)),sy=new Map,uy={"margin-left":null,"margin-right":null,"margin-top":null,"margin-bottom":null},cy=function(t){function e(e){var n=t.call(this)||this;return n._styler=e,n}return r(e,t),e.prototype.buildStyles=function(t,e){return t.endsWith(yy)?(n=t=t.slice(0,t.indexOf(yy)),i="0px",r="0px","rtl"===e.directionality?r="-"+n:i="-"+n,{margin:"0px "+i+" -"+n+" "+r}):{};var n,i,r},e.prototype.sideEffect=function(t,e,n){var i,r,a,l=n.items;if(t.endsWith(yy)){var s=(i=t=t.slice(0,t.indexOf(yy)),r="0px",a="0px","rtl"===n.directionality?a=i:r=i,{padding:"0px "+r+" "+i+" "+a});this._styler.applyStyleToElements(s,n.items)}else{var u=l.pop(),c=function(t,e){var n=_y(e.directionality,e.layout),i=o({},uy);return i[n]=t,i}(t,n);this._styler.applyStyleToElements(c,l),this._styler.applyStyleToElements(uy,[u])}},e.ngInjectableDef=St({factory:function(){return new e(ie(Xg))},token:e,providedIn:"root"}),e}(Kg),dy=["fxLayoutGap","fxLayoutGap.xs","fxLayoutGap.sm","fxLayoutGap.md","fxLayoutGap.lg","fxLayoutGap.xl","fxLayoutGap.lt-sm","fxLayoutGap.lt-md","fxLayoutGap.lt-lg","fxLayoutGap.lt-xl","fxLayoutGap.gt-xs","fxLayoutGap.gt-sm","fxLayoutGap.gt-md","fxLayoutGap.gt-lg"],hy=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=dy,e}return r(e,t),e}(function(t){function e(e,n,i,r,o,a){var l=t.call(this,e,o,r,a)||this;l.elRef=e,l.zone=n,l.directionality=i,l.styleUtils=r,l.styleBuilder=o,l.marshal=a,l.layout="row",l.DIRECTIVE_KEY="layout-gap",l.observerSubject=new H;var s=[l.directionality.change,l.observerSubject.asObservable()];return l.init(s),l.marshal.trackValue(l.nativeElement,"layout").pipe(fg(l.destroySubject)).subscribe(l.onLayoutChange.bind(l)),l}return r(e,t),Object.defineProperty(e.prototype,"childrenNodes",{get:function(){for(var t=this.nativeElement.children,e=[],n=t.length;n--;)e[n]=t[n];return e},enumerable:!0,configurable:!0}),e.prototype.ngAfterContentInit=function(){this.buildChildObservable(),this.triggerUpdate()},e.prototype.ngOnDestroy=function(){t.prototype.ngOnDestroy.call(this),this.observer&&this.observer.disconnect()},e.prototype.onLayoutChange=function(t){var e=this,n=t.value.split(" ");this.layout=n[0],ey.find(function(t){return t===e.layout})||(this.layout="row"),this.triggerUpdate()},e.prototype.updateWithValue=function(t){var e=this,n=this.childrenNodes.filter(function(t){return 1===t.nodeType&&e.willDisplay(t)}).sort(function(t,n){var i=+e.styler.lookupStyle(t,"order"),r=+e.styler.lookupStyle(n,"order");return isNaN(i)||isNaN(r)||i===r?0:i>r?1:-1});if(n.length>0){var i=this.directionality.value,r=this.layout;"row"===r&&"rtl"===i?this.styleCache=py:"row"===r&&"rtl"!==i?this.styleCache=my:"column"===r&&"rtl"===i?this.styleCache=fy:"column"===r&&"rtl"!==i&&(this.styleCache=gy),this.addStyles(t,{directionality:i,items:n,layout:r})}},e.prototype.clearStyles=function(){var e,n=Object.keys(this.mru).length>0,i=n?"padding":_y(this.directionality.value,this.layout);n&&t.prototype.clearStyles.call(this),this.styleUtils.applyStyleToElements(((e={})[i]="",e),this.childrenNodes)},e.prototype.willDisplay=function(t){var e=this.marshal.getValue(t,"show-hide");return!0===e||void 0===e&&"none"!==this.styleUtils.lookupStyle(t,"display")},e.prototype.buildChildObservable=function(){var t=this;this.zone.runOutsideAngular(function(){"undefined"!=typeof MutationObserver&&(t.observer=new MutationObserver(function(e){e.some(function(t){return t.addedNodes&&t.addedNodes.length>0||t.removedNodes&&t.removedNodes.length>0})&&t.observerSubject.next()}),t.observer.observe(t.nativeElement,{childList:!0}))})},e}(Lg)),py=new Map,fy=new Map,my=new Map,gy=new Map,yy=" grid";function _y(t,e){switch(e){case"column":return"margin-bottom";case"column-reverse":return"margin-top";case"row":return"rtl"===t?"margin-left":"margin-right";case"row-reverse":return"rtl"===t?"margin-right":"margin-left";default:return"rtl"===t?"margin-left":"margin-right"}}function vy(t){for(var e=[],n=1;n-1?"column":"row",l=iy(a)?"max-width":"max-height",s=iy(a)?"min-width":"min-height",u=String(o).indexOf("calc")>-1,c=u||"auto"===o,d=String(o).indexOf("%")>-1&&!u,h=String(o).indexOf("px")>-1||String(o).indexOf("rem")>-1||String(o).indexOf("em")>-1||String(o).indexOf("vw")>-1||String(o).indexOf("vh")>-1,p=u||h;r="0"==r?0:r;var f=!(i="0"==i?0:i)&&!r,m={},g={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(o||""){case"":o="row"===a?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":i=0,o="auto";break;case"grow":o="100%";break;case"noshrink":r=0,o="auto";break;case"auto":break;case"none":i=0,r=0,o="auto";break;default:p||d||isNaN(o)||(o+="%"),"0%"===o&&(p=!0),"0px"===o&&(o="0%"),m=vy(g,u?{"flex-grow":i,"flex-shrink":r,"flex-basis":p?o:"100%"}:{flex:i+" "+r+" "+(p?o:"100%")})}return m.flex||m["flex-grow"]||(m=vy(g,u?{"flex-grow":i,"flex-shrink":r,"flex-basis":o}:{flex:i+" "+r+" "+o})),"0%"!==o&&"0px"!==o&&"0.000000001px"!==o&&"auto"!==o&&(m[s]=f||p&&i?o:null,m[l]=f||!c&&r?o:null),m[s]||m[l]?e.hasWrap&&(m[u?"flex-basis":"flex"]=m[l]?u?m[l]:i+" "+r+" "+m[l]:u?m[s]:i+" "+r+" "+m[s]):m=vy(g,u?{"flex-grow":i,"flex-shrink":r,"flex-basis":o}:{flex:i+" "+r+" "+o}),vy(m,{"box-sizing":"border-box"})},e.ngInjectableDef=St({factory:function(){return new e(ie(xg))},token:e,providedIn:"root"}),e}(Kg),wy=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"],ky=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=wy,e}return r(e,t),e}(function(t){function e(e,n,i,r,o){var a=t.call(this,e,r,n,o)||this;return a.elRef=e,a.styleUtils=n,a.layoutConfig=i,a.styleBuilder=r,a.marshal=o,a.DIRECTIVE_KEY="flex",a.direction="",a.wrap=!1,a.flexGrow="1",a.flexShrink="1",a.init(),a.parentElement&&(a.marshal.trackValue(a.parentElement,"layout").pipe(fg(a.destroySubject)).subscribe(a.onLayoutChange.bind(a)),a.marshal.trackValue(a.nativeElement,"layout-align").pipe(fg(a.destroySubject)).subscribe(a.triggerReflow.bind(a))),a}return r(e,t),Object.defineProperty(e.prototype,"shrink",{get:function(){return this.flexShrink},set:function(t){this.flexShrink=t||"1",this.triggerReflow()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"grow",{get:function(){return this.flexGrow},set:function(t){this.flexGrow=t||"1",this.triggerReflow()},enumerable:!0,configurable:!0}),e.prototype.onLayoutChange=function(t){var e=t.value.split(" ");this.direction=e[0],this.wrap=void 0!==e[1]&&"wrap"===e[1],this.triggerUpdate()},e.prototype.updateWithValue=function(t){this.direction||(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent));var e=this.direction,n=e.startsWith("row"),i=this.wrap;n&&i?this.styleCache=Cy:n&&!i?this.styleCache=My:!n&&i?this.styleCache=Ly:n||i||(this.styleCache=Sy);var r=Zg(String(t).replace(";",""),this.flexGrow,this.flexShrink);this.addStyles(r.join(" "),{direction:e,hasWrap:i})},e.prototype.triggerReflow=function(){var t=this.activatedValue;if(void 0!==t){var e=Zg(t,this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,e.join(" "))}},e}(Lg)),My=new Map,Sy=new Map,Cy=new Map,Ly=new Map,Dy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t){var e={};switch(t=t||"stretch"){case"start":e["align-self"]="flex-start";break;case"end":e["align-self"]="flex-end";break;default:e["align-self"]=t}return e},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),Ty=["fxFlexAlign","fxFlexAlign.xs","fxFlexAlign.sm","fxFlexAlign.md","fxFlexAlign.lg","fxFlexAlign.xl","fxFlexAlign.lt-sm","fxFlexAlign.lt-md","fxFlexAlign.lt-lg","fxFlexAlign.lt-xl","fxFlexAlign.gt-xs","fxFlexAlign.gt-sm","fxFlexAlign.gt-md","fxFlexAlign.gt-lg"],Ey=function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.DIRECTIVE_KEY="flex-align",o.styleCache=Ay,o.init(),o}return r(e,t),e}(Lg),Ay=new Map,Py=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=Ty,e}return r(e,t),e}(Ey),Oy={margin:0,width:"100%",height:"100%","min-width":"100%","min-height":"100%"},Yy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t){return Oy},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),Ry=function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.styleCache=Iy,o.addStyles(""),o}return r(e,t),e}(Lg),Iy=new Map,Fy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t,e){var n={},i=t.split(" "),r=i[1];switch(i[0]){case"center":n["justify-content"]="center";break;case"space-around":n["justify-content"]="space-around";break;case"space-between":n["justify-content"]="space-between";break;case"space-evenly":n["justify-content"]="space-evenly";break;case"end":case"flex-end":n["justify-content"]="flex-end";break;case"start":case"flex-start":default:n["justify-content"]="flex-start"}switch(r){case"start":case"flex-start":n["align-items"]=n["align-content"]="flex-start";break;case"center":n["align-items"]=n["align-content"]="center";break;case"end":case"flex-end":n["align-items"]=n["align-content"]="flex-end";break;case"space-between":n["align-content"]="space-between",n["align-items"]="stretch";break;case"space-around":n["align-content"]="space-around",n["align-items"]="stretch";break;case"baseline":n["align-content"]="stretch",n["align-items"]="baseline";break;case"stretch":default:n["align-items"]=n["align-content"]="stretch"}return vy(n,{display:e.inline?"inline-flex":"flex","flex-direction":e.layout,"box-sizing":"border-box","max-width":"stretch"===r?iy(e.layout)?null:"100%":null,"max-height":"stretch"===r&&iy(e.layout)?"100%":null})},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),zy=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"],jy=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=zy,e}return r(e,t),e}(function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.DIRECTIVE_KEY="layout-align",o.layout="row",o.inline=!1,o.init(),o.marshal.trackValue(o.nativeElement,"layout").pipe(fg(o.destroySubject)).subscribe(o.onLayoutChange.bind(o)),o}return r(e,t),e.prototype.updateWithValue=function(t){var e=this.layout||"row",n=this.inline;"row"===e&&n?this.styleCache=Wy:"row"!==e||n?"row-reverse"===e&&n?this.styleCache=Gy:"row-reverse"!==e||n?"column"===e&&n?this.styleCache=Uy:"column"!==e||n?"column-reverse"===e&&n?this.styleCache=qy:"column-reverse"!==e||n||(this.styleCache=By):this.styleCache=Ny:this.styleCache=Vy:this.styleCache=Hy,this.addStyles(t,{layout:e,inline:n})},e.prototype.onLayoutChange=function(t){var e=this,n=t.value.split(" ");this.layout=n[0],this.inline=t.value.includes("inline"),ey.find(function(t){return t===e.layout})||(this.layout="row"),this.triggerUpdate()},e}(Lg)),Hy=new Map,Ny=new Map,Vy=new Map,By=new Map,Wy=new Map,Uy=new Map,Gy=new Map,qy=new Map,Xy=function(){return function(){}}(),Ky=new Lt("cdk-dir-doc",{providedIn:"root",factory:function(){return ie(As)}}),Zy=function(){function t(t){if(this.value="ltr",this.change=new kn,t){var e=(t.body?t.body.dir:null)||(t.documentElement?t.documentElement.dir:null);this.value="ltr"===e||"rtl"===e?e:"ltr"}}return t.prototype.ngOnDestroy=function(){this.change.complete()},t.ngInjectableDef=St({factory:function(){return new t(ie(Ky,8))},token:t,providedIn:"root"}),t}(),Jy=function(){return function(){}}(),Qy=function(){function t(t){this.r=t.r,this.g=t.g,this.b=t.b}return t.prototype.convertRGBToInt=function(){return(this.r<<16)+(this.g<<8)+this.b},t.prototype.getRGBString=function(){return"rgb("+this.r+","+this.g+","+this.b+")"},t.prototype.componentToHex=function(t){var e=t.toString(16);return 1===e.length?"0"+e:e},t.prototype.rgbToHex=function(){return"#"+this.componentToHex(this.r)+this.componentToHex(this.g)+this.componentToHex(this.b)},t}(),$y=function(){function t(t,e){void 0===e&&(e=", "),this._files=t,this.delimiter=e,this._fileNames=(this._files||[]).map(function(t){return t.name}).join(e)}return Object.defineProperty(t.prototype,"files",{get:function(){return this._files||[]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"fileNames",{get:function(){return this._fileNames},enumerable:!0,configurable:!0}),t}(),t_=function(){function t(e,n,i,r){var o=this;this.ngControl=e,this.fm=n,this._elementRef=i,this._renderer=r,this.stateChanges=new H,this.focused=!1,this.controlType="file-input",this.autofilled=!1,this._required=!1,this.accept=null,this.id="ngx-mat-file-input-"+t.nextId++,this.describedBy="",this._onChange=function(t){},this._onTouched=function(){},null!=this.ngControl&&(this.ngControl.valueAccessor=this),n.monitor(i.nativeElement,!0).subscribe(function(t){o.focused=!!t,o.stateChanges.next()})}return t.prototype.setDescribedByIds=function(t){this.describedBy=t.join(" ")},Object.defineProperty(t.prototype,"value",{get:function(){return this.empty?null:new $y(this._elementRef.nativeElement.value||[])},set:function(t){t&&(this.writeValue(t),this.stateChanges.next())},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"placeholder",{get:function(){return this._placeholder},set:function(t){this._placeholder=t,this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"empty",{get:function(){return!this._elementRef.nativeElement.value||0===this._elementRef.nativeElement.value.length},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"shouldLabelFloat",{get:function(){return this.focused||!this.empty||void 0!==this.valuePlaceholder},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t),this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isDisabled",{get:function(){return this.disabled},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return this._elementRef.nativeElement.disabled},set:function(t){this.setDisabledState(Xu(t)),this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"errorState",{get:function(){return null!==this.ngControl.errors&&!!this.ngControl.touched},enumerable:!0,configurable:!0}),t.prototype.onContainerClick=function(t){"input"===t.target.tagName.toLowerCase()||this.disabled||(this._elementRef.nativeElement.querySelector("input").focus(),this.focused=!0,this.open())},Object.defineProperty(t.prototype,"fileNames",{get:function(){return this.value?this.value.fileNames:this.valuePlaceholder},enumerable:!0,configurable:!0}),t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",t instanceof $y?t.files:null)},t.prototype.registerOnChange=function(t){this._onChange=t},t.prototype.registerOnTouched=function(t){this._onTouched=t},t.prototype.clear=function(t){t&&(t.preventDefault(),t.stopPropagation()),this.value=new $y([]),this._elementRef.nativeElement.querySelector("input").value=null,this._onChange(this.value)},t.prototype.change=function(t){var e=t.target.files,n=[];if(e)for(var i=0;i=n?null:{maxContentSize:{actualSize:n,maxSize:t}}}}}(by||(by={}));var n_=function(){return function(){this.CardGuid="null",this.CardCode="null",this.Version=1,this.Batch=123,this.EnableDoubleChecking=!1,this.EnforceBarcodeDetection=!1,this.PDFPath=new $y([]),this.SCVPath=new $y([]),this.Template=new $y([])}}(),i_=function(){function t(){this.DeviceID="null"}return t.prototype.isValidDate=function(){return this.LastLogin&&"[object Date]"===Object.prototype.toString.call(this.LastLogin)},t.prototype.getDateFormatString=function(){return this.isValidDate()?this.LastLogin.toLocaleString("en-GB"):""},t}(),r_=function(){function t(t){this.DateTime=new Date,t&&(this.Guid=t.Guid,this.CardGuid=t.CardGuid,this.ProcessedColor=t.ProcessedColor,this.RawColor=t.RawColor,this.DateTime=new Date(t.Date),this.DeviceGuid=t.DeviceGuid,this.SampleImageURL=t.SampleImageURL,this.SourceImageURL=t.SourceImageURL,this.ProcessTime=t.ProcessTime,this.InitRGB(),this.CardCode=t.CardCode,this.DeviceModel=t.DeviceModel,this.Email=t.Email,this.Card=new n_,this.Device=new i_,this.Device.Email=t.Email,this.Device.DeviceModel=t.DeviceModel,this.Device.DeviceID=t.DeviceGuid,this.DeltaE=t.DeltaE)}return t.prototype.InitRGB=function(){this.RawColorRGB=this.convertIntToRGB(this.RawColor),this.ProcessedColorRGB=this.convertIntToRGB(this.ProcessedColor)},t.prototype.convertIntToRGB=function(t){return new Qy({r:t>>16&255,g:t>>8&255,b:255&t})},t.prototype.isValidDate=function(){return this.DateTime&&"[object Date]"===Object.prototype.toString.call(this.DateTime)},t.prototype.getDateFormatString=function(){return this.isValidDate()?this.DateTime.toLocaleString("en-GB"):""},t}(),o_=function(){return function(){}}(),a_=n("6n/F");n("2BfV")(a_),n("Tos5")(a_),n("M8aS")(a_),n("AxlJ")(a_),n("1op0")(a_);var l_=function(){function t(){var t=this;this.detectionResults=[],this.data3DindexToValue=new Map,this.selectedResultID=0,this.updateFromInput=!1,this.Highcharts=a_,this.scatter3DArr=[],this.emitPass=new kn,this.hoverPoint=new kn,this.scatter3DOptions={chart:{renderTo:"sccontainer3D",type:"scatter3d",marginTop:50,marginRight:0,marginBottom:100,marginLeft:100,width:null,zoomType:"",events:{load:function(t){t.target.reflow()}},options3d:{enabled:!0,alpha:10,beta:30,depth:250,viewDistance:10,fitToPlot:!1,axisLabelPosition:"auto",frame:{bottom:{size:1,color:"rgba(0,0,0,0.02)"},back:{size:1,color:"rgba(0,0,0,0.04)"},side:{size:1,color:"rgba(0,0,0,0.06)"}}}},rangeSelector:{selected:1},colors:a_.getOptions().colors.map(function(t){return{radialGradient:{cx:.4,cy:.3,r:.5},stops:[[0,t],[1,a_.Color(t).brighten(-.2).get("rgb")]]}}),title:{text:"",floating:!0,align:"left",margin:0},credits:{enabled:!1},exporting:{enabled:!1},plotOptions:{scatter3d:{tooltip:{headerFormat:"{point.key}
",pointFormat:"R: {point.x}
G: {point.y}
B: {point.z}
DeltaE: {point.deltaE}"}},series:{turboThreshold:5e3,connectNulls:!1,lineWidth:1,lineColor:"#66c2ff",cursor:"pointer",stickyTracking:!1,point:{events:{click:(function(t){this.chart3DClicked(t.point.index)}).bind(this),mouseOver:(function(e){t.mouseOver(e.target.index)}).bind(this),mouseOut:(function(e){t.mouseOut(e.target.index)}).bind(this)}}}},xAxis:{min:0,max:255,endOnTick:!1,tickInterval:17,gridLineWidth:1,labels:{skew3d:!0},title:{text:"Red",style:{color:"#f00",fontWeight:"bold",fontSize:"14px",fontFamily:"sans-serif"}},isInternal:!0},yAxis:{min:0,max:255,endOnTick:!1,tickInterval:17,gridLineWidth:1,labels:{skew3d:!0},title:{text:"Green",style:{color:"#00FF00",fontWeight:"bold",fontSize:"14px",fontFamily:"sans-serif"}},isInternal:!0},zAxis:{min:0,max:255,showFirstLabel:!1,tickInterval:17,endOnTick:!1,labels:{skew3d:!0},title:{text:"Blue",style:{color:"#0000FF",fontWeight:"bold",fontSize:"14px",fontFamily:"sans-serif"}}},legend:{enabled:!1},series:[{name:"RGB",colorByPoint:!0,fontColor:"#FF0000",pointBackgroundColor:"#FF0000",data:[]}],responsive:{rules:[{condition:{maxWidth:600}}]}}}return t.prototype.ngOnInit=function(){this.chart3DHolder=a_.chart("sccontainer3D",this.scatter3DOptions),this.updateFromInput=!0},t.prototype.mouseDown=function(t){var e=this.chart3DHolder;if(t.ctrlKey)return t=e.pointer.normalize(t),void e.update({chart:{zoomType:"xy"}},void 0,void 0,!1);e.options.zoomType="",e.pointer.zoomX=!1,e.pointer.zoomY=!1;var n=this.Highcharts,i=(t=e.pointer.normalize(t)).chartX,r=t.chartY,o=e.options.chart.options3d.alpha,a=e.options.chart.options3d.beta,l=5,s=[];function u(t){t=e.pointer.normalize(t),e.update({chart:{options3d:{alpha:o+(t.chartY-r)/l,beta:a+(i-t.chartX)/l}}},void 0,void 0,!1)}function c(){s.forEach(function(t){t&&t()}),s.length=0}s.push(n.addEvent(document,"mousemove",u)),s.push(n.addEvent(document,"touchmove",u)),s.push(n.addEvent(document,"mouseup",c)),s.push(n.addEvent(document,"touchend",c))},t.prototype.mouseOver=function(t){var e=t,n=this.chart3DHolder;if(n.series[0].data[e].setState("hover"),n.series[0].data.length===t||n.series[0].data[e+1].isNull?e-=1:e+=1,n.series[0].data[e].setState("hover"),null!=t&&t-1&&this.cards.splice(e,1)},t.prototype.addCard=function(t){this.cards.push(t)},t.prototype.updateCard=function(t){var e=this.cards.find(function(e){return e.CardCode===t.CardCode}),n=this.cards.indexOf(e);n>=0&&(this.cards[n]=t)},t.prototype.extractCards=function(t){this.cards=[];for(var e=0,n=t||[];e.mat-card-xl-image{margin:-8px 0 8px 0}@media (max-width:599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card-content>:first-child,.mat-card>:first-child{margin-top:0}.mat-card-content>:last-child:not(.mat-card-footer),.mat-card>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child{margin-left:0;margin-right:0}.mat-card-subtitle:not(:first-child),.mat-card-title:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}"],data:{}});function S_(t){return Ia(2,[La(null,0),La(null,1)],null,null)}var C_=Vr({encapsulation:2,styles:[],data:{}});function L_(t){return Ia(2,[La(null,0),(t()(),yo(1,0,null,null,1,"div",[["class","mat-card-header-text"]],null,null,null,null,null)),La(null,1),La(null,2)],null,null)}function D_(){for(var t,e=[],n=0;nt?{max:{max:t,actual:e.value}}:null}},t.required=function(t){return P_(t.value)?{required:!0}:null},t.requiredTrue=function(t){return!0===t.value?null:{required:!0}},t.email=function(t){return P_(t.value)?null:Y_.test(t.value)?null:{email:!0}},t.minLength=function(t){return function(e){if(P_(e.value))return null;var n=e.value?e.value.length:0;return nt?{maxlength:{requiredLength:t,actualLength:n}}:null}},t.pattern=function(e){return e?("string"==typeof e?(i="","^"!==e.charAt(0)&&(i+="^"),i+=e,"$"!==e.charAt(e.length-1)&&(i+="$"),n=new RegExp(i)):(i=e.toString(),n=e),function(t){if(P_(t.value))return null;var e=t.value;return n.test(e)?null:{pattern:{requiredPattern:i,actualValue:e}}}):t.nullValidator;var n,i},t.nullValidator=function(t){return null},t.compose=function(t){if(!t)return null;var e=t.filter(I_);return 0==e.length?null:function(t){return z_(function(t,n){return e.map(function(e){return e(t)})}(t))}},t.composeAsync=function(t){if(!t)return null;var e=t.filter(I_);return 0==e.length?null:function(t){return D_(function(t,n){return e.map(function(e){return e(t)})}(t).map(F_)).pipe(nt(z_))}},t}();function I_(t){return null!=t}function F_(t){var e=$n(t)?at(t):t;if(!ti(e))throw new Error("Expected validator to return Promise or Observable.");return e}function z_(t){var e=t.reduce(function(t,e){return null!=e?o({},t,e):t},{});return 0===Object.keys(e).length?null:e}var j_=new Lt("NgValueAccessor"),H_=function(){function t(t,e){this._renderer=t,this._elementRef=e,this.onChange=function(t){},this.onTouched=function(){}}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"checked",t)},t.prototype.registerOnChange=function(t){this.onChange=t},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t}(),N_=new Lt("CompositionEventMode"),V_=function(){function t(t,e,n){var i;this._renderer=t,this._elementRef=e,this._compositionMode=n,this.onChange=function(t){},this.onTouched=function(){},this._composing=!1,null==this._compositionMode&&(this._compositionMode=(i=js()?js().getUserAgent():"",!/android (\d+)/.test(i.toLowerCase())))}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==t?"":t)},t.prototype.registerOnChange=function(t){this.onChange=t},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t.prototype._handleInput=function(t){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(t)},t.prototype._compositionStart=function(){this._composing=!0},t.prototype._compositionEnd=function(t){this._composing=!1,this._compositionMode&&this.onChange(t)},t}();function B_(t){return t.validate?function(e){return t.validate(e)}:t}function W_(t){return t.validate?function(e){return t.validate(e)}:t}var U_=function(){function t(t,e){this._renderer=t,this._elementRef=e,this.onChange=function(t){},this.onTouched=function(){}}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==t?"":t)},t.prototype.registerOnChange=function(t){this.onChange=function(e){t(""==e?null:parseFloat(e))}},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t}();function G_(){throw new Error("unimplemented")}var q_=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._parent=null,e.name=null,e.valueAccessor=null,e._rawValidators=[],e._rawAsyncValidators=[],e}return r(e,t),Object.defineProperty(e.prototype,"validator",{get:function(){return G_()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return G_()},enumerable:!0,configurable:!0}),e}(E_),X_=function(){function t(){this._accessors=[]}return t.prototype.add=function(t,e){this._accessors.push([t,e])},t.prototype.remove=function(t){for(var e=this._accessors.length-1;e>=0;--e)if(this._accessors[e][1]===t)return void this._accessors.splice(e,1)},t.prototype.select=function(t){var e=this;this._accessors.forEach(function(n){e._isSameGroup(n,t)&&n[1]!==t&&n[1].fireUncheck(t.value)})},t.prototype._isSameGroup=function(t,e){return!!t[0].control&&t[0]._parent===e._control._parent&&t[1].name===e.name},t}(),K_=function(){function t(t,e,n,i){this._renderer=t,this._elementRef=e,this._registry=n,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return t.prototype.ngOnInit=function(){this._control=this._injector.get(q_),this._checkName(),this._registry.add(this._control,this)},t.prototype.ngOnDestroy=function(){this._registry.remove(this)},t.prototype.writeValue=function(t){this._state=t===this.value,this._renderer.setProperty(this._elementRef.nativeElement,"checked",this._state)},t.prototype.registerOnChange=function(t){var e=this;this._fn=t,this.onChange=function(){t(e.value),e._registry.select(e)}},t.prototype.fireUncheck=function(t){this.writeValue(t)},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t.prototype._checkName=function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)},t.prototype._throwNameError=function(){throw new Error('\n If you define both a name and a formControlName attribute on your radio button, their values\n must match. Ex: \n ')},t}(),Z_=function(){function t(t,e){this._renderer=t,this._elementRef=e,this.onChange=function(t){},this.onTouched=function(){}}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",parseFloat(t))},t.prototype.registerOnChange=function(t){this.onChange=function(e){t(""==e?null:parseFloat(e))}},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t}(),J_='\n

\n \n
\n\n In your class:\n\n this.myGroup = new FormGroup({\n firstName: new FormControl()\n });',Q_='\n
\n
\n \n
\n
\n\n In your class:\n\n this.myGroup = new FormGroup({\n person: new FormGroup({ firstName: new FormControl() })\n });',$_=function(){function t(){}return t.controlParentException=function(){throw new Error("formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\n directive and pass it an existing FormGroup instance (you can create one in your class).\n\n Example:\n\n "+J_)},t.ngModelGroupException=function(){throw new Error('formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\n that also have a "form" prefix: formGroupName, formArrayName, or formGroup.\n\n Option 1: Update the parent to be formGroupName (reactive form strategy)\n\n '+Q_+'\n\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\n\n \n
\n
\n \n
\n
')},t.missingFormException=function(){throw new Error("formGroup expects a FormGroup instance. Please pass one in.\n\n Example:\n\n "+J_)},t.groupParentException=function(){throw new Error("formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\n directive and pass it an existing FormGroup instance (you can create one in your class).\n\n Example:\n\n "+Q_)},t.arrayParentException=function(){throw new Error('formArrayName must be used with a parent formGroup directive. You\'ll want to add a formGroup\n directive and pass it an existing FormGroup instance (you can create one in your class).\n\n Example:\n\n \n
\n
\n
\n \n
\n
\n
\n\n In your class:\n\n this.cityArray = new FormArray([new FormControl(\'SF\')]);\n this.myGroup = new FormGroup({\n cities: this.cityArray\n });')},t.disabledAttrWarning=function(){console.warn("\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\n you. We recommend using this approach to avoid 'changed after checked' errors.\n \n Example: \n form = new FormGroup({\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\n last: new FormControl('Drew', Validators.required)\n });\n ")},t.ngModelWarning=function(t){console.warn("\n It looks like you're using ngModel on the same form field as "+t+". \n Support for using the ngModel input property and ngModelChange event with \n reactive form directives has been deprecated in Angular v6 and will be removed \n in Angular v7.\n \n For more information on this, see our API docs here:\n https://angular.io/api/forms/"+("formControl"===t?"FormControlDirective":"FormControlName")+"#use-with-ngmodel\n ")},t}();function tv(t,e){return d(e.path,[t])}function ev(t,e){t||ov(e,"Cannot find control with"),e.valueAccessor||ov(e,"No value accessor for form control with"),t.validator=R_.compose([t.validator,e.validator]),t.asyncValidator=R_.composeAsync([t.asyncValidator,e.asyncValidator]),e.valueAccessor.writeValue(t.value),function(t,e){e.valueAccessor.registerOnChange(function(n){t._pendingValue=n,t._pendingChange=!0,t._pendingDirty=!0,"change"===t.updateOn&&nv(t,e)})}(t,e),function(t,e){t.registerOnChange(function(t,n){e.valueAccessor.writeValue(t),n&&e.viewToModelUpdate(t)})}(t,e),function(t,e){e.valueAccessor.registerOnTouched(function(){t._pendingTouched=!0,"blur"===t.updateOn&&t._pendingChange&&nv(t,e),"submit"!==t.updateOn&&t.markAsTouched()})}(t,e),e.valueAccessor.setDisabledState&&t.registerOnDisabledChange(function(t){e.valueAccessor.setDisabledState(t)}),e._rawValidators.forEach(function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(function(){return t.updateValueAndValidity()})}),e._rawAsyncValidators.forEach(function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(function(){return t.updateValueAndValidity()})})}function nv(t,e){t._pendingDirty&&t.markAsDirty(),t.setValue(t._pendingValue,{emitModelToViewChange:!1}),e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1}function iv(t,e){null==t&&ov(e,"Cannot find control with"),t.validator=R_.compose([t.validator,e.validator]),t.asyncValidator=R_.composeAsync([t.asyncValidator,e.asyncValidator])}function rv(t){return ov(t,"There is no FormControl instance attached to form control element with")}function ov(t,e){var n;throw n=t.path.length>1?"path: '"+t.path.join(" -> ")+"'":t.path[0]?"name: '"+t.path+"'":"unspecified name attribute",new Error(e+" "+n)}function av(t){return null!=t?R_.compose(t.map(B_)):null}function lv(t){return null!=t?R_.composeAsync(t.map(W_)):null}function sv(t,e){if(!t.hasOwnProperty("model"))return!1;var n=t.model;return!!n.isFirstChange()||!Bt(e,n.currentValue)}var uv=[H_,Z_,U_,function(){function t(t,e){this._renderer=t,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=function(t){},this.onTouched=function(){},this._compareWith=Bt}return Object.defineProperty(t.prototype,"compareWith",{set:function(t){if("function"!=typeof t)throw new Error("compareWith must be a function, but received "+JSON.stringify(t));this._compareWith=t},enumerable:!0,configurable:!0}),t.prototype.writeValue=function(t){this.value=t;var e=this._getOptionId(t);null==e&&this._renderer.setProperty(this._elementRef.nativeElement,"selectedIndex",-1);var n=function(t,e){return null==t?""+e:(e&&"object"==typeof e&&(e="Object"),(t+": "+e).slice(0,50))}(e,t);this._renderer.setProperty(this._elementRef.nativeElement,"value",n)},t.prototype.registerOnChange=function(t){var e=this;this.onChange=function(n){e.value=e._getOptionValue(n),t(e.value)}},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t.prototype._registerOption=function(){return(this._idCounter++).toString()},t.prototype._getOptionId=function(t){var e,n;try{for(var i=u(Array.from(this._optionMap.keys())),r=i.next();!r.done;r=i.next()){var o=r.value;if(this._compareWith(this._optionMap.get(o),t))return o}}catch(a){e={error:a}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}return null},t.prototype._getOptionValue=function(t){var e=function(t){return t.split(":")[0]}(t);return this._optionMap.has(e)?this._optionMap.get(e):t},t}(),function(){function t(t,e){this._renderer=t,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=function(t){},this.onTouched=function(){},this._compareWith=Bt}return Object.defineProperty(t.prototype,"compareWith",{set:function(t){if("function"!=typeof t)throw new Error("compareWith must be a function, but received "+JSON.stringify(t));this._compareWith=t},enumerable:!0,configurable:!0}),t.prototype.writeValue=function(t){var e,n=this;if(this.value=t,Array.isArray(t)){var i=t.map(function(t){return n._getOptionId(t)});e=function(t,e){t._setSelected(i.indexOf(e.toString())>-1)}}else e=function(t,e){t._setSelected(!1)};this._optionMap.forEach(e)},t.prototype.registerOnChange=function(t){var e=this;this.onChange=function(n){var i=[];if(n.hasOwnProperty("selectedOptions"))for(var r=n.selectedOptions,o=0;o-1&&t.splice(n,1)}function pv(t,e,n,i){tn()&&"never"!==i&&((null!==i&&"once"!==i||e._ngModelWarningSentOnce)&&("always"!==i||n._ngModelWarningSent)||($_.ngModelWarning(t),e._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}var fv=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.ngOnInit=function(){this._checkParentType(),this.formDirective.addFormGroup(this)},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeFormGroup(this)},Object.defineProperty(e.prototype,"control",{get:function(){return this.formDirective.getFormGroup(this)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return tv(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._asyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){},e}(A_),mv=function(){function t(t){this._cd=t}return Object.defineProperty(t.prototype,"ngClassUntouched",{get:function(){return!!this._cd.control&&this._cd.control.untouched},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassTouched",{get:function(){return!!this._cd.control&&this._cd.control.touched},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassPristine",{get:function(){return!!this._cd.control&&this._cd.control.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassDirty",{get:function(){return!!this._cd.control&&this._cd.control.dirty},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassValid",{get:function(){return!!this._cd.control&&this._cd.control.valid},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassInvalid",{get:function(){return!!this._cd.control&&this._cd.control.invalid},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassPending",{get:function(){return!!this._cd.control&&this._cd.control.pending},enumerable:!0,configurable:!0}),t}(),gv=function(t){function e(e){return t.call(this,e)||this}return r(e,t),e}(mv),yv=function(t){function e(e){return t.call(this,e)||this}return r(e,t),e}(mv);function _v(t){var e=bv(t)?t.validators:t;return Array.isArray(e)?av(e):e||null}function vv(t,e){var n=bv(e)?e.asyncValidators:t;return Array.isArray(n)?lv(n):n||null}function bv(t){return null!=t&&!Array.isArray(t)&&"object"==typeof t}var xv=function(){function t(t,e){this.validator=t,this.asyncValidator=e,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return Object.defineProperty(t.prototype,"parent",{get:function(){return this._parent},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"valid",{get:function(){return"VALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"invalid",{get:function(){return"INVALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"pending",{get:function(){return"PENDING"==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return"DISABLED"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"enabled",{get:function(){return"DISABLED"!==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"dirty",{get:function(){return!this.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"untouched",{get:function(){return!this.touched},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"updateOn",{get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"},enumerable:!0,configurable:!0}),t.prototype.setValidators=function(t){this.validator=_v(t)},t.prototype.setAsyncValidators=function(t){this.asyncValidator=vv(t)},t.prototype.clearValidators=function(){this.validator=null},t.prototype.clearAsyncValidators=function(){this.asyncValidator=null},t.prototype.markAsTouched=function(t){void 0===t&&(t={}),this.touched=!0,this._parent&&!t.onlySelf&&this._parent.markAsTouched(t)},t.prototype.markAsUntouched=function(t){void 0===t&&(t={}),this.touched=!1,this._pendingTouched=!1,this._forEachChild(function(t){t.markAsUntouched({onlySelf:!0})}),this._parent&&!t.onlySelf&&this._parent._updateTouched(t)},t.prototype.markAsDirty=function(t){void 0===t&&(t={}),this.pristine=!1,this._parent&&!t.onlySelf&&this._parent.markAsDirty(t)},t.prototype.markAsPristine=function(t){void 0===t&&(t={}),this.pristine=!0,this._pendingDirty=!1,this._forEachChild(function(t){t.markAsPristine({onlySelf:!0})}),this._parent&&!t.onlySelf&&this._parent._updatePristine(t)},t.prototype.markAsPending=function(t){void 0===t&&(t={}),this.status="PENDING",!1!==t.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!t.onlySelf&&this._parent.markAsPending(t)},t.prototype.disable=function(t){void 0===t&&(t={}),this.status="DISABLED",this.errors=null,this._forEachChild(function(e){e.disable(o({},t,{onlySelf:!0}))}),this._updateValue(),!1!==t.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(t),this._onDisabledChange.forEach(function(t){return t(!0)})},t.prototype.enable=function(t){void 0===t&&(t={}),this.status="VALID",this._forEachChild(function(e){e.enable(o({},t,{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:t.emitEvent}),this._updateAncestors(t),this._onDisabledChange.forEach(function(t){return t(!1)})},t.prototype._updateAncestors=function(t){this._parent&&!t.onlySelf&&(this._parent.updateValueAndValidity(t),this._parent._updatePristine(),this._parent._updateTouched())},t.prototype.setParent=function(t){this._parent=t},t.prototype.updateValueAndValidity=function(t){void 0===t&&(t={}),this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),"VALID"!==this.status&&"PENDING"!==this.status||this._runAsyncValidator(t.emitEvent)),!1!==t.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!t.onlySelf&&this._parent.updateValueAndValidity(t)},t.prototype._updateTreeValidity=function(t){void 0===t&&(t={emitEvent:!0}),this._forEachChild(function(e){return e._updateTreeValidity(t)}),this.updateValueAndValidity({onlySelf:!0,emitEvent:t.emitEvent})},t.prototype._setInitialStatus=function(){this.status=this._allControlsDisabled()?"DISABLED":"VALID"},t.prototype._runValidator=function(){return this.validator?this.validator(this):null},t.prototype._runAsyncValidator=function(t){var e=this;if(this.asyncValidator){this.status="PENDING";var n=F_(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe(function(n){return e.setErrors(n,{emitEvent:t})})}},t.prototype._cancelExistingSubscription=function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()},t.prototype.setErrors=function(t,e){void 0===e&&(e={}),this.errors=t,this._updateControlsErrors(!1!==e.emitEvent)},t.prototype.get=function(t){return function(t,e,n){return null==e?null:(e instanceof Array||(e=e.split(".")),e instanceof Array&&0===e.length?null:e.reduce(function(t,e){return t instanceof kv?t.controls.hasOwnProperty(e)?t.controls[e]:null:t instanceof Mv&&t.at(e)||null},t))}(this,t)},t.prototype.getError=function(t,e){var n=e?this.get(e):this;return n&&n.errors?n.errors[t]:null},t.prototype.hasError=function(t,e){return!!this.getError(t,e)},Object.defineProperty(t.prototype,"root",{get:function(){for(var t=this;t._parent;)t=t._parent;return t},enumerable:!0,configurable:!0}),t.prototype._updateControlsErrors=function(t){this.status=this._calculateStatus(),t&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(t)},t.prototype._initObservables=function(){this.valueChanges=new kn,this.statusChanges=new kn},t.prototype._calculateStatus=function(){return this._allControlsDisabled()?"DISABLED":this.errors?"INVALID":this._anyControlsHaveStatus("PENDING")?"PENDING":this._anyControlsHaveStatus("INVALID")?"INVALID":"VALID"},t.prototype._anyControlsHaveStatus=function(t){return this._anyControls(function(e){return e.status===t})},t.prototype._anyControlsDirty=function(){return this._anyControls(function(t){return t.dirty})},t.prototype._anyControlsTouched=function(){return this._anyControls(function(t){return t.touched})},t.prototype._updatePristine=function(t){void 0===t&&(t={}),this.pristine=!this._anyControlsDirty(),this._parent&&!t.onlySelf&&this._parent._updatePristine(t)},t.prototype._updateTouched=function(t){void 0===t&&(t={}),this.touched=this._anyControlsTouched(),this._parent&&!t.onlySelf&&this._parent._updateTouched(t)},t.prototype._isBoxedValue=function(t){return"object"==typeof t&&null!==t&&2===Object.keys(t).length&&"value"in t&&"disabled"in t},t.prototype._registerOnCollectionChange=function(t){this._onCollectionChange=t},t.prototype._setUpdateStrategy=function(t){bv(t)&&null!=t.updateOn&&(this._updateOn=t.updateOn)},t}(),wv=function(t){function e(e,n,i){void 0===e&&(e=null);var r=t.call(this,_v(n),vv(i,n))||this;return r._onChange=[],r._applyFormState(e),r._setUpdateStrategy(n),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r._initObservables(),r}return r(e,t),e.prototype.setValue=function(t,e){var n=this;void 0===e&&(e={}),this.value=this._pendingValue=t,this._onChange.length&&!1!==e.emitModelToViewChange&&this._onChange.forEach(function(t){return t(n.value,!1!==e.emitViewToModelChange)}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(t,e){void 0===e&&(e={}),this.setValue(t,e)},e.prototype.reset=function(t,e){void 0===t&&(t=null),void 0===e&&(e={}),this._applyFormState(t),this.markAsPristine(e),this.markAsUntouched(e),this.setValue(this.value,e),this._pendingChange=!1},e.prototype._updateValue=function(){},e.prototype._anyControls=function(t){return!1},e.prototype._allControlsDisabled=function(){return this.disabled},e.prototype.registerOnChange=function(t){this._onChange.push(t)},e.prototype._clearChangeFns=function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}},e.prototype.registerOnDisabledChange=function(t){this._onDisabledChange.push(t)},e.prototype._forEachChild=function(t){},e.prototype._syncPendingControls=function(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))},e.prototype._applyFormState=function(t){this._isBoxedValue(t)?(this.value=this._pendingValue=t.value,t.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=t},e}(xv),kv=function(t){function e(e,n,i){var r=t.call(this,_v(n),vv(i,n))||this;return r.controls=e,r._initObservables(),r._setUpdateStrategy(n),r._setUpControls(),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r}return r(e,t),e.prototype.registerControl=function(t,e){return this.controls[t]?this.controls[t]:(this.controls[t]=e,e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange),e)},e.prototype.addControl=function(t,e){this.registerControl(t,e),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.removeControl=function(t){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),delete this.controls[t],this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.setControl=function(t,e){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),delete this.controls[t],e&&this.registerControl(t,e),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.contains=function(t){return this.controls.hasOwnProperty(t)&&this.controls[t].enabled},e.prototype.setValue=function(t,e){var n=this;void 0===e&&(e={}),this._checkAllValuesPresent(t),Object.keys(t).forEach(function(i){n._throwIfControlMissing(i),n.controls[i].setValue(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(t,e){var n=this;void 0===e&&(e={}),Object.keys(t).forEach(function(i){n.controls[i]&&n.controls[i].patchValue(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.reset=function(t,e){void 0===t&&(t={}),void 0===e&&(e={}),this._forEachChild(function(n,i){n.reset(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e),this._updatePristine(e),this._updateTouched(e)},e.prototype.getRawValue=function(){return this._reduceChildren({},function(t,e,n){return t[n]=e instanceof wv?e.value:e.getRawValue(),t})},e.prototype._syncPendingControls=function(){var t=this._reduceChildren(!1,function(t,e){return!!e._syncPendingControls()||t});return t&&this.updateValueAndValidity({onlySelf:!0}),t},e.prototype._throwIfControlMissing=function(t){if(!Object.keys(this.controls).length)throw new Error("\n There are no form controls registered with this group yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.controls[t])throw new Error("Cannot find form control with name: "+t+".")},e.prototype._forEachChild=function(t){var e=this;Object.keys(this.controls).forEach(function(n){return t(e.controls[n],n)})},e.prototype._setUpControls=function(){var t=this;this._forEachChild(function(e){e.setParent(t),e._registerOnCollectionChange(t._onCollectionChange)})},e.prototype._updateValue=function(){this.value=this._reduceValue()},e.prototype._anyControls=function(t){var e=this,n=!1;return this._forEachChild(function(i,r){n=n||e.contains(r)&&t(i)}),n},e.prototype._reduceValue=function(){var t=this;return this._reduceChildren({},function(e,n,i){return(n.enabled||t.disabled)&&(e[i]=n.value),e})},e.prototype._reduceChildren=function(t,e){var n=t;return this._forEachChild(function(t,i){n=e(n,t,i)}),n},e.prototype._allControlsDisabled=function(){var t,e;try{for(var n=u(Object.keys(this.controls)),i=n.next();!i.done;i=n.next())if(this.controls[i.value].enabled)return!1}catch(r){t={error:r}}finally{try{i&&!i.done&&(e=n.return)&&e.call(n)}finally{if(t)throw t.error}}return Object.keys(this.controls).length>0||this.disabled},e.prototype._checkAllValuesPresent=function(t){this._forEachChild(function(e,n){if(void 0===t[n])throw new Error("Must supply a value for form control with name: '"+n+"'.")})},e}(xv),Mv=function(t){function e(e,n,i){var r=t.call(this,_v(n),vv(i,n))||this;return r.controls=e,r._initObservables(),r._setUpdateStrategy(n),r._setUpControls(),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r}return r(e,t),e.prototype.at=function(t){return this.controls[t]},e.prototype.push=function(t){this.controls.push(t),this._registerControl(t),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.insert=function(t,e){this.controls.splice(t,0,e),this._registerControl(e),this.updateValueAndValidity()},e.prototype.removeAt=function(t){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),this.controls.splice(t,1),this.updateValueAndValidity()},e.prototype.setControl=function(t,e){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),this.controls.splice(t,1),e&&(this.controls.splice(t,0,e),this._registerControl(e)),this.updateValueAndValidity(),this._onCollectionChange()},Object.defineProperty(e.prototype,"length",{get:function(){return this.controls.length},enumerable:!0,configurable:!0}),e.prototype.setValue=function(t,e){var n=this;void 0===e&&(e={}),this._checkAllValuesPresent(t),t.forEach(function(t,i){n._throwIfControlMissing(i),n.at(i).setValue(t,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(t,e){var n=this;void 0===e&&(e={}),t.forEach(function(t,i){n.at(i)&&n.at(i).patchValue(t,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.reset=function(t,e){void 0===t&&(t=[]),void 0===e&&(e={}),this._forEachChild(function(n,i){n.reset(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e),this._updatePristine(e),this._updateTouched(e)},e.prototype.getRawValue=function(){return this.controls.map(function(t){return t instanceof wv?t.value:t.getRawValue()})},e.prototype._syncPendingControls=function(){var t=this.controls.reduce(function(t,e){return!!e._syncPendingControls()||t},!1);return t&&this.updateValueAndValidity({onlySelf:!0}),t},e.prototype._throwIfControlMissing=function(t){if(!this.controls.length)throw new Error("\n There are no form controls registered with this array yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.at(t))throw new Error("Cannot find form control at index "+t)},e.prototype._forEachChild=function(t){this.controls.forEach(function(e,n){t(e,n)})},e.prototype._updateValue=function(){var t=this;this.value=this.controls.filter(function(e){return e.enabled||t.disabled}).map(function(t){return t.value})},e.prototype._anyControls=function(t){return this.controls.some(function(e){return e.enabled&&t(e)})},e.prototype._setUpControls=function(){var t=this;this._forEachChild(function(e){return t._registerControl(e)})},e.prototype._checkAllValuesPresent=function(t){this._forEachChild(function(e,n){if(void 0===t[n])throw new Error("Must supply a value for form control at index: "+n+".")})},e.prototype._allControlsDisabled=function(){var t,e;try{for(var n=u(this.controls),i=n.next();!i.done;i=n.next())if(i.value.enabled)return!1}catch(r){t={error:r}}finally{try{i&&!i.done&&(e=n.return)&&e.call(n)}finally{if(t)throw t.error}}return this.controls.length>0||this.disabled},e.prototype._registerControl=function(t){t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange)},e}(xv),Sv=Promise.resolve(null),Cv=function(t){function e(e,n){var i=t.call(this)||this;return i.submitted=!1,i._directives=[],i.ngSubmit=new kn,i.form=new kv({},av(e),lv(n)),i}return r(e,t),e.prototype.ngAfterViewInit=function(){this._setUpdateStrategy()},Object.defineProperty(e.prototype,"formDirective",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"controls",{get:function(){return this.form.controls},enumerable:!0,configurable:!0}),e.prototype.addControl=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path);t.control=n.registerControl(t.name,t.control),ev(t.control,t),t.control.updateValueAndValidity({emitEvent:!1}),e._directives.push(t)})},e.prototype.getControl=function(t){return this.form.get(t.path)},e.prototype.removeControl=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path);n&&n.removeControl(t.name),hv(e._directives,t)})},e.prototype.addFormGroup=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path),i=new kv({});iv(i,t),n.registerControl(t.name,i),i.updateValueAndValidity({emitEvent:!1})})},e.prototype.removeFormGroup=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path);n&&n.removeControl(t.name)})},e.prototype.getFormGroup=function(t){return this.form.get(t.path)},e.prototype.updateModel=function(t,e){var n=this;Sv.then(function(){n.form.get(t.path).setValue(e)})},e.prototype.setValue=function(t){this.control.setValue(t)},e.prototype.onSubmit=function(t){return this.submitted=!0,cv(this.form,this._directives),this.ngSubmit.emit(t),!1},e.prototype.onReset=function(){this.resetForm()},e.prototype.resetForm=function(t){void 0===t&&(t=void 0),this.form.reset(t),this.submitted=!1},e.prototype._setUpdateStrategy=function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)},e.prototype._findContainer=function(t){return t.pop(),t.length?this.form.get(t):this.form},e}(A_),Lv=new Lt("NgFormSelectorWarning"),Dv=new Lt("NgModelWithFormControlWarning"),Tv=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o._ngModelWarningConfig=r,o.update=new kn,o._ngModelWarningSent=!1,o._rawValidators=e||[],o._rawAsyncValidators=n||[],o.valueAccessor=dv(o,i),o}var n;return r(e,t),n=e,Object.defineProperty(e.prototype,"isDisabled",{set:function(t){$_.disabledAttrWarning()},enumerable:!0,configurable:!0}),e.prototype.ngOnChanges=function(t){this._isControlChanged(t)&&(ev(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),sv(t,this.viewModel)&&(pv("formControl",n,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)},Object.defineProperty(e.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),e.prototype.viewToModelUpdate=function(t){this.viewModel=t,this.update.emit(t)},e.prototype._isControlChanged=function(t){return t.hasOwnProperty("form")},e._ngModelWarningSentOnce=!1,e}(q_),Ev=function(t){function e(e,n){var i=t.call(this)||this;return i._validators=e,i._asyncValidators=n,i.submitted=!1,i.directives=[],i.form=null,i.ngSubmit=new kn,i}return r(e,t),e.prototype.ngOnChanges=function(t){this._checkFormPresent(),t.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())},Object.defineProperty(e.prototype,"formDirective",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),e.prototype.addControl=function(t){var e=this.form.get(t.path);return ev(e,t),e.updateValueAndValidity({emitEvent:!1}),this.directives.push(t),e},e.prototype.getControl=function(t){return this.form.get(t.path)},e.prototype.removeControl=function(t){hv(this.directives,t)},e.prototype.addFormGroup=function(t){var e=this.form.get(t.path);iv(e,t),e.updateValueAndValidity({emitEvent:!1})},e.prototype.removeFormGroup=function(t){},e.prototype.getFormGroup=function(t){return this.form.get(t.path)},e.prototype.addFormArray=function(t){var e=this.form.get(t.path);iv(e,t),e.updateValueAndValidity({emitEvent:!1})},e.prototype.removeFormArray=function(t){},e.prototype.getFormArray=function(t){return this.form.get(t.path)},e.prototype.updateModel=function(t,e){this.form.get(t.path).setValue(e)},e.prototype.onSubmit=function(t){return this.submitted=!0,cv(this.form,this.directives),this.ngSubmit.emit(t),!1},e.prototype.onReset=function(){this.resetForm()},e.prototype.resetForm=function(t){void 0===t&&(t=void 0),this.form.reset(t),this.submitted=!1},e.prototype._updateDomValue=function(){var t=this;this.directives.forEach(function(e){var n=t.form.get(e.path);e.control!==n&&(function(t,e){e.valueAccessor.registerOnChange(function(){return rv(e)}),e.valueAccessor.registerOnTouched(function(){return rv(e)}),e._rawValidators.forEach(function(t){t.registerOnValidatorChange&&t.registerOnValidatorChange(null)}),e._rawAsyncValidators.forEach(function(t){t.registerOnValidatorChange&&t.registerOnValidatorChange(null)}),t&&t._clearChangeFns()}(e.control,e),n&&ev(n,e),e.control=n)}),this.form._updateTreeValidity({emitEvent:!1})},e.prototype._updateRegistrations=function(){var t=this;this.form._registerOnCollectionChange(function(){return t._updateDomValue()}),this._oldForm&&this._oldForm._registerOnCollectionChange(function(){}),this._oldForm=this.form},e.prototype._updateValidators=function(){var t=av(this._validators);this.form.validator=R_.compose([this.form.validator,t]);var e=lv(this._asyncValidators);this.form.asyncValidator=R_.composeAsync([this.form.asyncValidator,e])},e.prototype._checkFormPresent=function(){this.form||$_.missingFormException()},e}(A_),Av=function(t){function e(e,n,i){var r=t.call(this)||this;return r._parent=e,r._validators=n,r._asyncValidators=i,r}return r(e,t),e.prototype._checkParentType=function(){Ov(this._parent)&&$_.groupParentException()},e}(fv),Pv=function(t){function e(e,n,i){var r=t.call(this)||this;return r._parent=e,r._validators=n,r._asyncValidators=i,r}return r(e,t),e.prototype.ngOnInit=function(){this._checkParentType(),this.formDirective.addFormArray(this)},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeFormArray(this)},Object.defineProperty(e.prototype,"control",{get:function(){return this.formDirective.getFormArray(this)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return tv(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._asyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){Ov(this._parent)&&$_.arrayParentException()},e}(A_);function Ov(t){return!(t instanceof Av||t instanceof Ev||t instanceof Pv)}var Yv=function(t){function e(e,n,i,r,o){var a=t.call(this)||this;return a._ngModelWarningConfig=o,a._added=!1,a.update=new kn,a._ngModelWarningSent=!1,a._parent=e,a._rawValidators=n||[],a._rawAsyncValidators=i||[],a.valueAccessor=dv(a,r),a}var n;return r(e,t),n=e,Object.defineProperty(e.prototype,"isDisabled",{set:function(t){$_.disabledAttrWarning()},enumerable:!0,configurable:!0}),e.prototype.ngOnChanges=function(t){this._added||this._setUpControl(),sv(t,this.viewModel)&&(pv("formControlName",n,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeControl(this)},e.prototype.viewToModelUpdate=function(t){this.viewModel=t,this.update.emit(t)},Object.defineProperty(e.prototype,"path",{get:function(){return tv(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){!(this._parent instanceof Av)&&this._parent instanceof fv?$_.ngModelGroupException():this._parent instanceof Av||this._parent instanceof Ev||this._parent instanceof Pv||$_.controlParentException()},e.prototype._setUpControl=function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0},e._ngModelWarningSentOnce=!1,e}(q_),Rv=function(){function t(){}return Object.defineProperty(t.prototype,"required",{get:function(){return this._required},set:function(t){this._required=null!=t&&!1!==t&&""+t!="false",this._onChange&&this._onChange()},enumerable:!0,configurable:!0}),t.prototype.validate=function(t){return this.required?R_.required(t):null},t.prototype.registerOnValidatorChange=function(t){this._onChange=t},t}(),Iv=function(){function t(){}return t.prototype.group=function(t,e){void 0===e&&(e=null);var n=this._reduceControls(t),i=null,r=null,o=void 0;return null!=e&&(function(t){return void 0!==t.asyncValidators||void 0!==t.validators||void 0!==t.updateOn}(e)?(i=null!=e.validators?e.validators:null,r=null!=e.asyncValidators?e.asyncValidators:null,o=null!=e.updateOn?e.updateOn:void 0):(i=null!=e.validator?e.validator:null,r=null!=e.asyncValidator?e.asyncValidator:null)),new kv(n,{asyncValidators:r,updateOn:o,validators:i})},t.prototype.control=function(t,e,n){return new wv(t,e,n)},t.prototype.array=function(t,e,n){var i=this,r=t.map(function(t){return i._createControl(t)});return new Mv(r,e,n)},t.prototype._reduceControls=function(t){var e=this,n={};return Object.keys(t).forEach(function(i){n[i]=e._createControl(t[i])}),n},t.prototype._createControl=function(t){return t instanceof wv||t instanceof kv||t instanceof Mv?t:Array.isArray(t)?this.control(t[0],t.length>1?t[1]:null,t.length>2?t[2]:null):this.control(t)},t}(),Fv=function(){return function(){}}(),zv=function(){return function(){}}(),jv=function(){function t(){}var e;return e=t,t.withConfig=function(t){return{ngModule:e,providers:[{provide:Lv,useValue:t.warnOnDeprecatedNgFormSelector}]}},t}(),Hv=function(){function t(){}var e;return e=t,t.withConfig=function(t){return{ngModule:e,providers:[{provide:Dv,useValue:t.warnOnNgModelWithFormControl}]}},t}(),Nv=function(){return function(){}}(),Vv=function(){return function(){}}(),Bv="*";function Wv(t,e){return void 0===e&&(e=null),{type:2,steps:t,options:e}}function Uv(t){return{type:6,styles:t,offset:null}}function Gv(t){Promise.resolve(null).then(t)}var qv=function(){function t(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=t+e}return t.prototype._onFinish=function(){this._finished||(this._finished=!0,this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[])},t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.hasStarted=function(){return this._started},t.prototype.init=function(){},t.prototype.play=function(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0},t.prototype.triggerMicrotask=function(){var t=this;Gv(function(){return t._onFinish()})},t.prototype._onStart=function(){this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[]},t.prototype.pause=function(){},t.prototype.restart=function(){},t.prototype.finish=function(){this._onFinish()},t.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype.reset=function(){},t.prototype.setPosition=function(t){},t.prototype.getPosition=function(){return 0},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t}(),Xv=function(){function t(t){var e=this;this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=t;var n=0,i=0,r=0,o=this.players.length;0==o?Gv(function(){return e._onFinish()}):this.players.forEach(function(t){t.onDone(function(){++n==o&&e._onFinish()}),t.onDestroy(function(){++i==o&&e._onDestroy()}),t.onStart(function(){++r==o&&e._onStart()})}),this.totalTime=this.players.reduce(function(t,e){return Math.max(t,e.totalTime)},0)}return t.prototype._onFinish=function(){this._finished||(this._finished=!0,this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[])},t.prototype.init=function(){this.players.forEach(function(t){return t.init()})},t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype._onStart=function(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[])},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.hasStarted=function(){return this._started},t.prototype.play=function(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(function(t){return t.play()})},t.prototype.pause=function(){this.players.forEach(function(t){return t.pause()})},t.prototype.restart=function(){this.players.forEach(function(t){return t.restart()})},t.prototype.finish=function(){this._onFinish(),this.players.forEach(function(t){return t.finish()})},t.prototype.destroy=function(){this._onDestroy()},t.prototype._onDestroy=function(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(function(t){return t.destroy()}),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype.reset=function(){this.players.forEach(function(t){return t.reset()}),this._destroyed=!1,this._finished=!1,this._started=!1},t.prototype.setPosition=function(t){var e=t*this.totalTime;this.players.forEach(function(t){var n=t.totalTime?Math.min(1,e/t.totalTime):1;t.setPosition(n)})},t.prototype.getPosition=function(){var t=0;return this.players.forEach(function(e){var n=e.getPosition();t=Math.min(n,t)}),t},t.prototype.beforeDestroy=function(){this.players.forEach(function(t){t.beforeDestroy&&t.beforeDestroy()})},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t}(),Kv="!",Zv=0,Jv=function(){return function(){this.id="mat-error-"+Zv++}}(),Qv=function(){return function(){}}();function $v(t){return Error("A hint was already declared for 'align=\""+t+"\"'.")}var tb=0,eb=function(){return function(){this.align="start",this.id="mat-hint-"+tb++}}(),nb=function(){return function(){}}(),ib=function(){return function(){}}(),rb=0,ob=od(function(){return function(t){this._elementRef=t}}(),"primary"),ab=new Lt("MAT_FORM_FIELD_DEFAULT_OPTIONS"),lb=function(t){function e(e,n,i,r,o,a,l,s){var u=t.call(this,e)||this;return u._elementRef=e,u._changeDetectorRef=n,u._dir=r,u._defaults=o,u._platform=a,u._ngZone=l,u._outlineGapCalculationNeededImmediately=!1,u._outlineGapCalculationNeededOnStable=!1,u._destroyed=new H,u._showAlwaysAnimate=!1,u._subscriptAnimationState="",u._hintLabel="",u._hintLabelId="mat-hint-"+rb++,u._labelId="mat-form-field-label-"+rb++,u._labelOptions=i||{},u.floatLabel=u._labelOptions.float||"auto",u._animationsEnabled="NoopAnimations"!==s,u.appearance=o&&o.appearance?o.appearance:"legacy",u}return r(e,t),Object.defineProperty(e.prototype,"appearance",{get:function(){return this._appearance},set:function(t){var e=this._appearance;this._appearance=t||this._defaults&&this._defaults.appearance||"legacy","outline"===this._appearance&&e!==t&&this._updateOutlineGapOnStable()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hideRequiredMarker",{get:function(){return this._hideRequiredMarker},set:function(t){this._hideRequiredMarker=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_shouldAlwaysFloat",{get:function(){return"always"===this.floatLabel&&!this._showAlwaysAnimate},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_canLabelFloat",{get:function(){return"never"!==this.floatLabel},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hintLabel",{get:function(){return this._hintLabel},set:function(t){this._hintLabel=t,this._processHints()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"floatLabel",{get:function(){return"legacy"!==this.appearance&&"never"===this._floatLabel?"auto":this._floatLabel},set:function(t){t!==this._floatLabel&&(this._floatLabel=t||this._labelOptions.float||"auto",this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),e.prototype.getConnectedOverlayOrigin=function(){return this._connectionContainerRef||this._elementRef},e.prototype.ngAfterContentInit=function(){var t=this;this._validateControlChild();var e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add("mat-form-field-type-"+e.controlType),e.stateChanges.pipe(hc(null)).subscribe(function(){t._validatePlaceholders(),t._syncDescribedByIds(),t._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(fg(this._destroyed)).subscribe(function(){return t._changeDetectorRef.markForCheck()});var n=this._ngZone;n&&n.runOutsideAngular(function(){n.onStable.asObservable().pipe(fg(t._destroyed)).subscribe(function(){t._outlineGapCalculationNeededOnStable&&t.updateOutlineGap()})}),ht(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(function(){t._updateOutlineGapOnStable(),t._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(hc(null)).subscribe(function(){t._processHints(),t._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(hc(null)).subscribe(function(){t._syncDescribedByIds(),t._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(fg(this._destroyed)).subscribe(function(){return t.updateOutlineGap()})},e.prototype.ngAfterContentChecked=function(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()},e.prototype.ngAfterViewInit=function(){this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()},e.prototype.ngOnDestroy=function(){this._destroyed.next(),this._destroyed.complete()},e.prototype._shouldForward=function(t){var e=this._control?this._control.ngControl:null;return e&&e[t]},e.prototype._hasPlaceholder=function(){return!!(this._control&&this._control.placeholder||this._placeholderChild)},e.prototype._hasLabel=function(){return!!this._labelChild},e.prototype._shouldLabelFloat=function(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)},e.prototype._hideControlPlaceholder=function(){return"legacy"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()},e.prototype._hasFloatingLabel=function(){return this._hasLabel()||"legacy"===this.appearance&&this._hasPlaceholder()},e.prototype._getDisplayedMessages=function(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"},e.prototype._animateAndLockLabel=function(){var t=this;this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&(this._showAlwaysAnimate=!0,pg(this._label.nativeElement,"transitionend").pipe(Ac(1)).subscribe(function(){t._showAlwaysAnimate=!1})),this.floatLabel="always",this._changeDetectorRef.markForCheck())},e.prototype._validatePlaceholders=function(){if(this._control.placeholder&&this._placeholderChild)throw Error("Placeholder attribute and child element were both specified.")},e.prototype._processHints=function(){this._validateHints(),this._syncDescribedByIds()},e.prototype._validateHints=function(){var t,e,n=this;this._hintChildren&&this._hintChildren.forEach(function(i){if("start"===i.align){if(t||n.hintLabel)throw $v("start");t=i}else if("end"===i.align){if(e)throw $v("end");e=i}})},e.prototype._syncDescribedByIds=function(){if(this._control){var t=[];if("hint"===this._getDisplayedMessages()){var e=this._hintChildren?this._hintChildren.find(function(t){return"start"===t.align}):null,n=this._hintChildren?this._hintChildren.find(function(t){return"end"===t.align}):null;e?t.push(e.id):this._hintLabel&&t.push(this._hintLabelId),n&&t.push(n.id)}else this._errorChildren&&(t=this._errorChildren.map(function(t){return t.id}));this._control.setDescribedByIds(t)}},e.prototype._validateControlChild=function(){if(!this._control)throw Error("mat-form-field must contain a MatFormFieldControl.")},e.prototype.updateOutlineGap=function(){var t=this._label?this._label.nativeElement:null;if("outline"===this.appearance&&t&&t.children.length&&t.textContent.trim()&&(!this._platform||this._platform.isBrowser))if(document.documentElement.contains(this._elementRef.nativeElement)){var e=0,n=0,i=this._connectionContainerRef.nativeElement,r=i.querySelectorAll(".mat-form-field-outline-start"),o=i.querySelectorAll(".mat-form-field-outline-gap");if(this._label&&this._label.nativeElement.children.length){var a=i.getBoundingClientRect();if(0===a.width&&0===a.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);for(var l=this._getStartEnd(a),s=this._getStartEnd(t.children[0].getBoundingClientRect()),u=0,c=0,d=t.children;c0?.75*u+10:0}for(var h=0;h *";case":leave":return"* => void";case":increment":return function(t,e){return parseFloat(e)>parseFloat(t)};case":decrement":return function(t,e){return parseFloat(e) *"}}(t,n);if("function"==typeof i)return void e.push(i);t=i}var r=t.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==r||r.length<4)return n.push('The provided transition expression "'+t+'" is not supported'),e;var o=r[1],a=r[2],l=r[3];e.push(ax(o,l)),"<"!=a[0]||o==ix&&l==ix||e.push(ax(l,o))}(t,r,i)}):r.push(n),r),animation:o,queryCount:e.queryCount,depCount:e.depCount,options:hx(t.options)}},t.prototype.visitSequence=function(t,e){var n=this;return{type:2,steps:t.steps.map(function(t){return ex(n,t,e)}),options:hx(t.options)}},t.prototype.visitGroup=function(t,e){var n=this,i=e.currentTime,r=0,o=t.steps.map(function(t){e.currentTime=i;var o=ex(n,t,e);return r=Math.max(r,e.currentTime),o});return e.currentTime=r,{type:3,steps:o,options:hx(t.options)}},t.prototype.visitAnimate=function(t,e){var n,i=function(t,e){var n=null;if(t.hasOwnProperty("duration"))n=t;else if("number"==typeof t)return px(jb(t,e).duration,0,"");var i=t;if(i.split(/\s+/).some(function(t){return"{"==t.charAt(0)&&"{"==t.charAt(1)})){var r=px(0,0,"");return r.dynamic=!0,r.strValue=i,r}return px((n=n||jb(i,e)).duration,n.delay,n.easing)}(t.timings,e.errors);e.currentAnimateTimings=i;var r=t.styles?t.styles:Uv({});if(5==r.type)n=this.visitKeyframes(r,e);else{var o=t.styles,a=!1;if(!o){a=!0;var l={};i.easing&&(l.easing=i.easing),o=Uv(l)}e.currentTime+=i.duration+i.delay;var s=this.visitStyle(o,e);s.isEmptyStep=a,n=s}return e.currentAnimateTimings=null,{type:4,timings:i,style:n,options:null}},t.prototype.visitStyle=function(t,e){var n=this._makeStyleAst(t,e);return this._validateStyleAst(n,e),n},t.prototype._makeStyleAst=function(t,e){var n=[];Array.isArray(t.styles)?t.styles.forEach(function(t){"string"==typeof t?t==Bv?n.push(t):e.errors.push("The provided style string value "+t+" is not allowed."):n.push(t)}):n.push(t.styles);var i=!1,r=null;return n.forEach(function(t){if(dx(t)){var e=t,n=e.easing;if(n&&(r=n,delete e.easing),!i)for(var o in e)if(e[o].toString().indexOf("{{")>=0){i=!0;break}}}),{type:6,styles:n,easing:r,offset:t.offset,containsDynamicStyles:i,options:null}},t.prototype._validateStyleAst=function(t,e){var n=this,i=e.currentAnimateTimings,r=e.currentTime,o=e.currentTime;i&&o>0&&(o-=i.duration+i.delay),t.styles.forEach(function(t){"string"!=typeof t&&Object.keys(t).forEach(function(i){if(n._driver.validateStyleProperty(i)){var a,l,s,u=e.collectedStyles[e.currentQuerySelector],c=u[i],d=!0;c&&(o!=r&&o>=c.startTime&&r<=c.endTime&&(e.errors.push('The CSS property "'+i+'" that exists between the times of "'+c.startTime+'ms" and "'+c.endTime+'ms" is also being animated in a parallel animation between the times of "'+o+'ms" and "'+r+'ms"'),d=!1),o=c.startTime),d&&(u[i]={startTime:o,endTime:r}),e.options&&(a=e.errors,l=e.options.params||{},(s=Xb(t[i])).length&&s.forEach(function(t){l.hasOwnProperty(t)||a.push("Unable to resolve the local animation param "+t+" in the given list of values")}))}else e.errors.push('The provided animation property "'+i+'" is not a supported CSS property for animations')})})},t.prototype.visitKeyframes=function(t,e){var n=this,i={type:5,styles:[],options:null};if(!e.currentAnimateTimings)return e.errors.push("keyframes() must be placed inside of a call to animate()"),i;var r=0,o=[],a=!1,l=!1,s=0,u=t.steps.map(function(t){var i=n._makeStyleAst(t,e),u=null!=i.offset?i.offset:function(t){if("string"==typeof t)return null;var e=null;if(Array.isArray(t))t.forEach(function(t){if(dx(t)&&t.hasOwnProperty("offset")){var n=t;e=parseFloat(n.offset),delete n.offset}});else if(dx(t)&&t.hasOwnProperty("offset")){var n=t;e=parseFloat(n.offset),delete n.offset}return e}(i.styles),c=0;return null!=u&&(r++,c=i.offset=u),l=l||c<0||c>1,a=a||c0&&r0?r==h?1:d*r:o[r],l=a*m;e.currentTime=p+f.delay+l,f.duration=l,n._validateStyleAst(t,e),t.offset=a,i.styles.push(t)}),i},t.prototype.visitReference=function(t,e){return{type:8,animation:ex(this,Gb(t.animation),e),options:hx(t.options)}},t.prototype.visitAnimateChild=function(t,e){return e.depCount++,{type:9,options:hx(t.options)}},t.prototype.visitAnimateRef=function(t,e){return{type:10,animation:this.visitReference(t.animation,e),options:hx(t.options)}},t.prototype.visitQuery=function(t,e){var n=e.currentQuerySelector,i=t.options||{};e.queryCount++,e.currentQuery=t;var r=c(function(t){var e=!!t.split(/\s*,\s*/).find(function(t){return":self"==t});return e&&(t=t.replace(lx,"")),[t=t.replace(/@\*/g,".ng-trigger").replace(/@\w+/g,function(t){return".ng-trigger-"+t.substr(1)}).replace(/:animating/g,".ng-animating"),e]}(t.selector),2),o=r[0],a=r[1];e.currentQuerySelector=n.length?n+" "+o:o,vb(e.collectedStyles,e.currentQuerySelector,{});var l=ex(this,Gb(t.animation),e);return e.currentQuery=null,e.currentQuerySelector=n,{type:11,selector:o,limit:i.limit||0,optional:!!i.optional,includeSelf:a,animation:l,originalSelector:t.selector,options:hx(t.options)}},t.prototype.visitStagger=function(t,e){e.currentQuery||e.errors.push("stagger() can only be used inside of query()");var n="full"===t.timings?{duration:0,delay:0,easing:"full"}:jb(t.timings,e.errors,!0);return{type:12,animation:ex(this,Gb(t.animation),e),timings:n,options:null}},t}(),cx=function(){return function(t){this.errors=t,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null}}();function dx(t){return!Array.isArray(t)&&"object"==typeof t}function hx(t){var e;return t?(t=Hb(t)).params&&(t.params=(e=t.params)?Hb(e):null):t={},t}function px(t,e,n){return{duration:t,delay:e,easing:n}}function fx(t,e,n,i,r,o,a,l){return void 0===a&&(a=null),void 0===l&&(l=!1),{type:1,element:t,keyframes:e,preStyleProps:n,postStyleProps:i,duration:r,delay:o,totalTime:r+o,easing:a,subTimeline:l}}var mx=function(){function t(){this._map=new Map}return t.prototype.consume=function(t){var e=this._map.get(t);return e?this._map.delete(t):e=[],e},t.prototype.append=function(t,e){var n=this._map.get(t);n||this._map.set(t,n=[]),n.push.apply(n,d(e))},t.prototype.has=function(t){return this._map.has(t)},t.prototype.clear=function(){this._map.clear()},t}(),gx=new RegExp(":enter","g"),yx=new RegExp(":leave","g");function _x(t,e,n,i,r,o,a,l,s,u){return void 0===o&&(o={}),void 0===a&&(a={}),void 0===u&&(u=[]),(new vx).buildKeyframes(t,e,n,i,r,o,a,l,s,u)}var vx=function(){function t(){}return t.prototype.buildKeyframes=function(t,e,n,i,r,o,a,l,s,u){void 0===u&&(u=[]),s=s||new mx;var c=new xx(t,e,s,i,r,u,[]);c.options=l,c.currentTimeline.setStyles([o],null,c.errors,l),ex(this,n,c);var d=c.timelines.filter(function(t){return t.containsAnimation()});if(d.length&&Object.keys(a).length){var h=d[d.length-1];h.allowOnlyTimelineStyles()||h.setStyles([a],null,c.errors,l)}return d.length?d.map(function(t){return t.buildKeyframes()}):[fx(e,[],[],[],0,0,"",!1)]},t.prototype.visitTrigger=function(t,e){},t.prototype.visitState=function(t,e){},t.prototype.visitTransition=function(t,e){},t.prototype.visitAnimateChild=function(t,e){var n=e.subInstructions.consume(e.element);if(n){var i=e.createSubContext(t.options),r=e.currentTimeline.currentTime,o=this._visitSubInstructions(n,i,i.options);r!=o&&e.transformIntoNewTimeline(o)}e.previousNode=t},t.prototype.visitAnimateRef=function(t,e){var n=e.createSubContext(t.options);n.transformIntoNewTimeline(),this.visitReference(t.animation,n),e.transformIntoNewTimeline(n.currentTimeline.currentTime),e.previousNode=t},t.prototype._visitSubInstructions=function(t,e,n){var i=e.currentTimeline.currentTime,r=null!=n.duration?Fb(n.duration):null,o=null!=n.delay?Fb(n.delay):null;return 0!==r&&t.forEach(function(t){var n=e.appendInstructionToTimeline(t,r,o);i=Math.max(i,n.duration+n.delay)}),i},t.prototype.visitReference=function(t,e){e.updateOptions(t.options,!0),ex(this,t.animation,e),e.previousNode=t},t.prototype.visitSequence=function(t,e){var n=this,i=e.subContextCount,r=e,o=t.options;if(o&&(o.params||o.delay)&&((r=e.createSubContext(o)).transformIntoNewTimeline(),null!=o.delay)){6==r.previousNode.type&&(r.currentTimeline.snapshotCurrentStyles(),r.previousNode=bx);var a=Fb(o.delay);r.delayNextStep(a)}t.steps.length&&(t.steps.forEach(function(t){return ex(n,t,r)}),r.currentTimeline.applyStylesToKeyframe(),r.subContextCount>i&&r.transformIntoNewTimeline()),e.previousNode=t},t.prototype.visitGroup=function(t,e){var n=this,i=[],r=e.currentTimeline.currentTime,o=t.options&&t.options.delay?Fb(t.options.delay):0;t.steps.forEach(function(a){var l=e.createSubContext(t.options);o&&l.delayNextStep(o),ex(n,a,l),r=Math.max(r,l.currentTimeline.currentTime),i.push(l.currentTimeline)}),i.forEach(function(t){return e.currentTimeline.mergeTimelineCollectedStyles(t)}),e.transformIntoNewTimeline(r),e.previousNode=t},t.prototype._visitTiming=function(t,e){if(t.dynamic){var n=t.strValue;return jb(e.params?Kb(n,e.params,e.errors):n,e.errors)}return{duration:t.duration,delay:t.delay,easing:t.easing}},t.prototype.visitAnimate=function(t,e){var n=e.currentAnimateTimings=this._visitTiming(t.timings,e),i=e.currentTimeline;n.delay&&(e.incrementTime(n.delay),i.snapshotCurrentStyles());var r=t.style;5==r.type?this.visitKeyframes(r,e):(e.incrementTime(n.duration),this.visitStyle(r,e),i.applyStylesToKeyframe()),e.currentAnimateTimings=null,e.previousNode=t},t.prototype.visitStyle=function(t,e){var n=e.currentTimeline,i=e.currentAnimateTimings;!i&&n.getCurrentStyleProperties().length&&n.forwardFrame();var r=i&&i.easing||t.easing;t.isEmptyStep?n.applyEmptyStep(r):n.setStyles(t.styles,r,e.errors,e.options),e.previousNode=t},t.prototype.visitKeyframes=function(t,e){var n=e.currentAnimateTimings,i=e.currentTimeline.duration,r=n.duration,o=e.createSubContext().currentTimeline;o.easing=n.easing,t.styles.forEach(function(t){o.forwardTime((t.offset||0)*r),o.setStyles(t.styles,t.easing,e.errors,e.options),o.applyStylesToKeyframe()}),e.currentTimeline.mergeTimelineCollectedStyles(o),e.transformIntoNewTimeline(i+r),e.previousNode=t},t.prototype.visitQuery=function(t,e){var n=this,i=e.currentTimeline.currentTime,r=t.options||{},o=r.delay?Fb(r.delay):0;o&&(6===e.previousNode.type||0==i&&e.currentTimeline.getCurrentStyleProperties().length)&&(e.currentTimeline.snapshotCurrentStyles(),e.previousNode=bx);var a=i,l=e.invokeQuery(t.selector,t.originalSelector,t.limit,t.includeSelf,!!r.optional,e.errors);e.currentQueryTotal=l.length;var s=null;l.forEach(function(i,r){e.currentQueryIndex=r;var l=e.createSubContext(t.options,i);o&&l.delayNextStep(o),i===e.element&&(s=l.currentTimeline),ex(n,t.animation,l),l.currentTimeline.applyStylesToKeyframe(),a=Math.max(a,l.currentTimeline.currentTime)}),e.currentQueryIndex=0,e.currentQueryTotal=0,e.transformIntoNewTimeline(a),s&&(e.currentTimeline.mergeTimelineCollectedStyles(s),e.currentTimeline.snapshotCurrentStyles()),e.previousNode=t},t.prototype.visitStagger=function(t,e){var n=e.parentContext,i=e.currentTimeline,r=t.timings,o=Math.abs(r.duration),a=o*(e.currentQueryTotal-1),l=o*e.currentQueryIndex;switch(r.duration<0?"reverse":r.easing){case"reverse":l=a-l;break;case"full":l=n.currentStaggerTime}var s=e.currentTimeline;l&&s.delayNextStep(l);var u=s.currentTime;ex(this,t.animation,e),e.previousNode=t,n.currentStaggerTime=i.currentTime-u+(i.startTime-n.currentTimeline.startTime)},t}(),bx={},xx=function(){function t(t,e,n,i,r,o,a,l){this._driver=t,this.element=e,this.subInstructions=n,this._enterClassName=i,this._leaveClassName=r,this.errors=o,this.timelines=a,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=bx,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new wx(this._driver,e,0),a.push(this.currentTimeline)}return Object.defineProperty(t.prototype,"params",{get:function(){return this.options.params},enumerable:!0,configurable:!0}),t.prototype.updateOptions=function(t,e){var n=this;if(t){var i=t,r=this.options;null!=i.duration&&(r.duration=Fb(i.duration)),null!=i.delay&&(r.delay=Fb(i.delay));var o=i.params;if(o){var a=r.params;a||(a=this.options.params={}),Object.keys(o).forEach(function(t){e&&a.hasOwnProperty(t)||(a[t]=Kb(o[t],a,n.errors))})}}},t.prototype._copyOptions=function(){var t={};if(this.options){var e=this.options.params;if(e){var n=t.params={};Object.keys(e).forEach(function(t){n[t]=e[t]})}}return t},t.prototype.createSubContext=function(e,n,i){void 0===e&&(e=null);var r=n||this.element,o=new t(this._driver,r,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(r,i||0));return o.previousNode=this.previousNode,o.currentAnimateTimings=this.currentAnimateTimings,o.options=this._copyOptions(),o.updateOptions(e),o.currentQueryIndex=this.currentQueryIndex,o.currentQueryTotal=this.currentQueryTotal,o.parentContext=this,this.subContextCount++,o},t.prototype.transformIntoNewTimeline=function(t){return this.previousNode=bx,this.currentTimeline=this.currentTimeline.fork(this.element,t),this.timelines.push(this.currentTimeline),this.currentTimeline},t.prototype.appendInstructionToTimeline=function(t,e,n){var i={duration:null!=e?e:t.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+t.delay,easing:""},r=new kx(this._driver,t.element,t.keyframes,t.preStyleProps,t.postStyleProps,i,t.stretchStartingKeyframe);return this.timelines.push(r),i},t.prototype.incrementTime=function(t){this.currentTimeline.forwardTime(this.currentTimeline.duration+t)},t.prototype.delayNextStep=function(t){t>0&&this.currentTimeline.delayNextStep(t)},t.prototype.invokeQuery=function(t,e,n,i,r,o){var a=[];if(i&&a.push(this.element),t.length>0){t=(t=t.replace(gx,"."+this._enterClassName)).replace(yx,"."+this._leaveClassName);var l=this._driver.query(this.element,t,1!=n);0!==n&&(l=n<0?l.slice(l.length+n,l.length):l.slice(0,n)),a.push.apply(a,d(l))}return r||0!=a.length||o.push('`query("'+e+'")` returned zero elements. (Use `query("'+e+'", { optional: true })` if you wish to allow this.)'),a},t}(),wx=function(){function t(t,e,n,i){this._driver=t,this.element=e,this.startTime=n,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(e),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(e,this._localTimelineStyles)),this._loadKeyframe()}return t.prototype.containsAnimation=function(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}},t.prototype.getCurrentStyleProperties=function(){return Object.keys(this._currentKeyframe)},Object.defineProperty(t.prototype,"currentTime",{get:function(){return this.startTime+this.duration},enumerable:!0,configurable:!0}),t.prototype.delayNextStep=function(t){var e=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||e?(this.forwardTime(this.currentTime+t),e&&this.snapshotCurrentStyles()):this.startTime+=t},t.prototype.fork=function(e,n){return this.applyStylesToKeyframe(),new t(this._driver,e,n||this.currentTime,this._elementTimelineStylesLookup)},t.prototype._loadKeyframe=function(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))},t.prototype.forwardFrame=function(){this.duration+=1,this._loadKeyframe()},t.prototype.forwardTime=function(t){this.applyStylesToKeyframe(),this.duration=t,this._loadKeyframe()},t.prototype._updateStyle=function(t,e){this._localTimelineStyles[t]=e,this._globalTimelineStyles[t]=e,this._styleSummary[t]={time:this.currentTime,value:e}},t.prototype.allowOnlyTimelineStyles=function(){return this._currentEmptyStepKeyframe!==this._currentKeyframe},t.prototype.applyEmptyStep=function(t){var e=this;t&&(this._previousKeyframe.easing=t),Object.keys(this._globalTimelineStyles).forEach(function(t){e._backFill[t]=e._globalTimelineStyles[t]||Bv,e._currentKeyframe[t]=Bv}),this._currentEmptyStepKeyframe=this._currentKeyframe},t.prototype.setStyles=function(t,e,n,i){var r=this;e&&(this._previousKeyframe.easing=e);var o=i&&i.params||{},a=function(t,e){var n,i={};return t.forEach(function(t){"*"===t?(n=n||Object.keys(e)).forEach(function(t){i[t]=Bv}):Nb(t,!1,i)}),i}(t,this._globalTimelineStyles);Object.keys(a).forEach(function(t){var e=Kb(a[t],o,n);r._pendingStyles[t]=e,r._localTimelineStyles.hasOwnProperty(t)||(r._backFill[t]=r._globalTimelineStyles.hasOwnProperty(t)?r._globalTimelineStyles[t]:Bv),r._updateStyle(t,e)})},t.prototype.applyStylesToKeyframe=function(){var t=this,e=this._pendingStyles,n=Object.keys(e);0!=n.length&&(this._pendingStyles={},n.forEach(function(n){t._currentKeyframe[n]=e[n]}),Object.keys(this._localTimelineStyles).forEach(function(e){t._currentKeyframe.hasOwnProperty(e)||(t._currentKeyframe[e]=t._localTimelineStyles[e])}))},t.prototype.snapshotCurrentStyles=function(){var t=this;Object.keys(this._localTimelineStyles).forEach(function(e){var n=t._localTimelineStyles[e];t._pendingStyles[e]=n,t._updateStyle(e,n)})},t.prototype.getFinalKeyframe=function(){return this._keyframes.get(this.duration)},Object.defineProperty(t.prototype,"properties",{get:function(){var t=[];for(var e in this._currentKeyframe)t.push(e);return t},enumerable:!0,configurable:!0}),t.prototype.mergeTimelineCollectedStyles=function(t){var e=this;Object.keys(t._styleSummary).forEach(function(n){var i=e._styleSummary[n],r=t._styleSummary[n];(!i||r.time>i.time)&&e._updateStyle(n,r.value)})},t.prototype.buildKeyframes=function(){var t=this;this.applyStylesToKeyframe();var e=new Set,n=new Set,i=1===this._keyframes.size&&0===this.duration,r=[];this._keyframes.forEach(function(o,a){var l=Nb(o,!0);Object.keys(l).forEach(function(t){var i=l[t];i==Kv?e.add(t):i==Bv&&n.add(t)}),i||(l.offset=a/t.duration),r.push(l)});var o=e.size?Zb(e.values()):[],a=n.size?Zb(n.values()):[];if(i){var l=r[0],s=Hb(l);l.offset=0,s.offset=1,r=[l,s]}return fx(this.element,r,o,a,this.duration,this.startTime,this.easing,!1)},t}(),kx=function(t){function e(e,n,i,r,o,a,l){void 0===l&&(l=!1);var s=t.call(this,e,n,a.delay)||this;return s.element=n,s.keyframes=i,s.preStyleProps=r,s.postStyleProps=o,s._stretchStartingKeyframe=l,s.timings={duration:a.duration,delay:a.delay,easing:a.easing},s}return r(e,t),e.prototype.containsAnimation=function(){return this.keyframes.length>1},e.prototype.buildKeyframes=function(){var t=this.keyframes,e=this.timings,n=e.delay,i=e.duration,r=e.easing;if(this._stretchStartingKeyframe&&n){var o=[],a=i+n,l=n/a,s=Nb(t[0],!1);s.offset=0,o.push(s);var u=Nb(t[0],!1);u.offset=Mx(l),o.push(u);for(var c=t.length-1,d=1;d<=c;d++){var h=Nb(t[d],!1);h.offset=Mx((n+h.offset*i)/a),o.push(h)}i=a,n=0,r="",t=o}return fx(this.element,t,this.preStyleProps,this.postStyleProps,i,n,r,!0)},e}(wx);function Mx(t,e){void 0===e&&(e=3);var n=Math.pow(10,e-1);return Math.round(t*n)/n}var Sx=function(){return function(){}}(),Cx=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.normalizePropertyName=function(t,e){return Qb(t)},e.prototype.normalizeStyleValue=function(t,e,n,i){var r="",o=n.toString().trim();if(Lx[e]&&0!==n&&"0"!==n)if("number"==typeof n)r="px";else{var a=n.match(/^[+-]?[\d\.]+([a-z]*)$/);a&&0==a[1].length&&i.push("Please provide a CSS unit value for "+t+":"+n)}return o+r},e}(Sx),Lx=Dx("width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective".split(","));function Dx(t){var e={};return t.forEach(function(t){return e[t]=!0}),e}function Tx(t,e,n,i,r,o,a,l,s,u,c,d,h){return{type:0,element:t,triggerName:e,isRemovalTransition:r,fromState:n,fromStyles:o,toState:i,toStyles:a,timelines:l,queriedElements:s,preStyleProps:u,postStyleProps:c,totalTime:d,errors:h}}var Ex={},Ax=function(){function t(t,e,n){this._triggerName=t,this.ast=e,this._stateStyles=n}return t.prototype.match=function(t,e,n,i){return function(t,e,n,i,r){return t.some(function(t){return t(e,n,i,r)})}(this.ast.matchers,t,e,n,i)},t.prototype.buildStyles=function(t,e,n){var i=this._stateStyles["*"],r=this._stateStyles[t],o=i?i.buildStyles(e,n):{};return r?r.buildStyles(e,n):o},t.prototype.build=function(t,e,n,i,r,a,l,s,u,c){var d=[],h=this.ast.options&&this.ast.options.params||Ex,p=this.buildStyles(n,l&&l.params||Ex,d),f=s&&s.params||Ex,m=this.buildStyles(i,f,d),g=new Set,y=new Map,_=new Map,v="void"===i,b={params:o({},h,f)},x=c?[]:_x(t,e,this.ast.animation,r,a,p,m,b,u,d),w=0;if(x.forEach(function(t){w=Math.max(t.duration+t.delay,w)}),d.length)return Tx(e,this._triggerName,n,i,v,p,m,[],[],y,_,w,d);x.forEach(function(t){var n=t.element,i=vb(y,n,{});t.preStyleProps.forEach(function(t){return i[t]=!0});var r=vb(_,n,{});t.postStyleProps.forEach(function(t){return r[t]=!0}),n!==e&&g.add(n)});var k=Zb(g.values());return Tx(e,this._triggerName,n,i,v,p,m,x,k,y,_,w)},t}(),Px=function(){function t(t,e){this.styles=t,this.defaultParams=e}return t.prototype.buildStyles=function(t,e){var n={},i=Hb(this.defaultParams);return Object.keys(t).forEach(function(e){var n=t[e];null!=n&&(i[e]=n)}),this.styles.styles.forEach(function(t){if("string"!=typeof t){var r=t;Object.keys(r).forEach(function(t){var o=r[t];o.length>1&&(o=Kb(o,i,e)),n[t]=o})}}),n},t}(),Ox=function(){function t(t,e){var n=this;this.name=t,this.ast=e,this.transitionFactories=[],this.states={},e.states.forEach(function(t){n.states[t.name]=new Px(t.style,t.options&&t.options.params||{})}),Yx(this.states,"true","1"),Yx(this.states,"false","0"),e.transitions.forEach(function(e){n.transitionFactories.push(new Ax(t,e,n.states))}),this.fallbackTransition=new Ax(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[function(t,e){return!0}],options:null,queryCount:0,depCount:0},this.states)}return Object.defineProperty(t.prototype,"containsQueries",{get:function(){return this.ast.queryCount>0},enumerable:!0,configurable:!0}),t.prototype.matchTransition=function(t,e,n,i){return this.transitionFactories.find(function(r){return r.match(t,e,n,i)})||null},t.prototype.matchStyles=function(t,e,n){return this.fallbackTransition.buildStyles(t,e,n)},t}();function Yx(t,e,n){t.hasOwnProperty(e)?t.hasOwnProperty(n)||(t[n]=t[e]):t.hasOwnProperty(n)&&(t[e]=t[n])}var Rx=new mx,Ix=function(){function t(t,e,n){this.bodyNode=t,this._driver=e,this._normalizer=n,this._animations={},this._playersById={},this.players=[]}return t.prototype.register=function(t,e){var n=[],i=sx(this._driver,e,n);if(n.length)throw new Error("Unable to build the animation due to the following errors: "+n.join("\n"));this._animations[t]=i},t.prototype._buildPlayer=function(t,e,n){var i=t.element,r=mb(0,this._normalizer,0,t.keyframes,e,n);return this._driver.animate(i,r,t.duration,t.delay,t.easing,[],!0)},t.prototype.create=function(t,e,n){var i=this;void 0===n&&(n={});var r,o=[],a=this._animations[t],l=new Map;if(a?(r=_x(this._driver,e,a,"ng-enter","ng-leave",{},{},n,Rx,o)).forEach(function(t){var e=vb(l,t.element,{});t.postStyleProps.forEach(function(t){return e[t]=null})}):(o.push("The requested animation doesn't exist or has already been destroyed"),r=[]),o.length)throw new Error("Unable to create the animation due to the following errors: "+o.join("\n"));l.forEach(function(t,e){Object.keys(t).forEach(function(n){t[n]=i._driver.computeStyle(e,n,Bv)})});var s=fb(r.map(function(t){var e=l.get(t.element);return i._buildPlayer(t,{},e)}));return this._playersById[t]=s,s.onDestroy(function(){return i.destroy(t)}),this.players.push(s),s},t.prototype.destroy=function(t){var e=this._getPlayer(t);e.destroy(),delete this._playersById[t];var n=this.players.indexOf(e);n>=0&&this.players.splice(n,1)},t.prototype._getPlayer=function(t){var e=this._playersById[t];if(!e)throw new Error("Unable to find the timeline player referenced by "+t);return e},t.prototype.listen=function(t,e,n,i){var r=_b(e,"","","");return gb(this._getPlayer(t),n,r,i),function(){}},t.prototype.command=function(t,e,n,i){if("register"!=n)if("create"!=n){var r=this._getPlayer(t);switch(n){case"play":r.play();break;case"pause":r.pause();break;case"reset":r.reset();break;case"restart":r.restart();break;case"finish":r.finish();break;case"init":r.init();break;case"setPosition":r.setPosition(parseFloat(i[0]));break;case"destroy":this.destroy(t)}}else this.create(t,e,i[0]||{});else this.register(t,i[0])},t}(),Fx=[],zx={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},jx={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Hx="__ng_removed",Nx=function(){function t(t,e){void 0===e&&(e=""),this.namespaceId=e;var n=t&&t.hasOwnProperty("value");if(this.value=function(t){return null!=t?t:null}(n?t.value:t),n){var i=Hb(t);delete i.value,this.options=i}else this.options={};this.options.params||(this.options.params={})}return Object.defineProperty(t.prototype,"params",{get:function(){return this.options.params},enumerable:!0,configurable:!0}),t.prototype.absorbOptions=function(t){var e=t.params;if(e){var n=this.options.params;Object.keys(e).forEach(function(t){null==n[t]&&(n[t]=e[t])})}},t}(),Vx=new Nx("void"),Bx=function(){function t(t,e,n){this.id=t,this.hostElement=e,this._engine=n,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+t,Jx(e,this._hostClassName)}return t.prototype.listen=function(t,e,n,i){var r,o=this;if(!this._triggers.hasOwnProperty(e))throw new Error('Unable to listen on the animation trigger event "'+n+'" because the animation trigger "'+e+"\" doesn't exist!");if(null==n||0==n.length)throw new Error('Unable to listen on the animation trigger "'+e+'" because the provided event is undefined!');if("start"!=(r=n)&&"done"!=r)throw new Error('The provided animation trigger event "'+n+'" for the animation trigger "'+e+'" is not supported!');var a=vb(this._elementListeners,t,[]),l={name:e,phase:n,callback:i};a.push(l);var s=vb(this._engine.statesByElement,t,{});return s.hasOwnProperty(e)||(Jx(t,"ng-trigger"),Jx(t,"ng-trigger-"+e),s[e]=Vx),function(){o._engine.afterFlush(function(){var t=a.indexOf(l);t>=0&&a.splice(t,1),o._triggers[e]||delete s[e]})}},t.prototype.register=function(t,e){return!this._triggers[t]&&(this._triggers[t]=e,!0)},t.prototype._getTrigger=function(t){var e=this._triggers[t];if(!e)throw new Error('The provided animation trigger "'+t+'" has not been registered!');return e},t.prototype.trigger=function(t,e,n,i){var r=this;void 0===i&&(i=!0);var o=this._getTrigger(e),a=new Ux(this.id,e,t),l=this._engine.statesByElement.get(t);l||(Jx(t,"ng-trigger"),Jx(t,"ng-trigger-"+e),this._engine.statesByElement.set(t,l={}));var s=l[e],u=new Nx(n,this.id);if(!(n&&n.hasOwnProperty("value"))&&s&&u.absorbOptions(s.options),l[e]=u,s||(s=Vx),"void"===u.value||s.value!==u.value){var c=vb(this._engine.playersByElement,t,[]);c.forEach(function(t){t.namespaceId==r.id&&t.triggerName==e&&t.queued&&t.destroy()});var d=o.matchTransition(s.value,u.value,t,u.params),h=!1;if(!d){if(!i)return;d=o.fallbackTransition,h=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:t,triggerName:e,transition:d,fromState:s,toState:u,player:a,isFallbackTransition:h}),h||(Jx(t,"ng-animate-queued"),a.onStart(function(){Qx(t,"ng-animate-queued")})),a.onDone(function(){var e=r.players.indexOf(a);e>=0&&r.players.splice(e,1);var n=r._engine.playersByElement.get(t);if(n){var i=n.indexOf(a);i>=0&&n.splice(i,1)}}),this.players.push(a),c.push(a),a}if(!function(t,e){var n=Object.keys(t),i=Object.keys(e);if(n.length!=i.length)return!1;for(var r=0;r=0){for(var i=!1,r=n;r>=0;r--)if(this.driver.containsElement(this._namespaceList[r].hostElement,e)){this._namespaceList.splice(r+1,0,t),i=!0;break}i||this._namespaceList.splice(0,0,t)}else this._namespaceList.push(t);return this.namespacesByHostElement.set(e,t),t},t.prototype.register=function(t,e){var n=this._namespaceLookup[t];return n||(n=this.createNamespace(t,e)),n},t.prototype.registerTrigger=function(t,e,n){var i=this._namespaceLookup[t];i&&i.register(e,n)&&this.totalAnimations++},t.prototype.destroy=function(t,e){var n=this;if(t){var i=this._fetchNamespace(t);this.afterFlush(function(){n.namespacesByHostElement.delete(i.hostElement),delete n._namespaceLookup[t];var e=n._namespaceList.indexOf(i);e>=0&&n._namespaceList.splice(e,1)}),this.afterFlushAnimationsDone(function(){return i.destroy(e)})}},t.prototype._fetchNamespace=function(t){return this._namespaceLookup[t]},t.prototype.fetchNamespacesByElement=function(t){var e=new Set,n=this.statesByElement.get(t);if(n)for(var i=Object.keys(n),r=0;r=0&&this.collectedLeaveElements.splice(o,1)}if(t){var a=this._fetchNamespace(t);a&&a.insertNode(e,n)}i&&this.collectEnterElement(e)}},t.prototype.collectEnterElement=function(t){this.collectedEnterElements.push(t)},t.prototype.markElementAsDisabled=function(t,e){e?this.disabledNodes.has(t)||(this.disabledNodes.add(t),Jx(t,"ng-animate-disabled")):this.disabledNodes.has(t)&&(this.disabledNodes.delete(t),Qx(t,"ng-animate-disabled"))},t.prototype.removeNode=function(t,e,n){if(Gx(e)){var i=t?this._fetchNamespace(t):null;i?i.removeNode(e,n):this.markElementAsRemoved(t,e,!1,n)}else this._onRemovalComplete(e,n)},t.prototype.markElementAsRemoved=function(t,e,n,i){this.collectedLeaveElements.push(e),e[Hx]={namespaceId:t,setForRemoval:i,hasAnimation:n,removedBeforeQueried:!1}},t.prototype.listen=function(t,e,n,i,r){return Gx(e)?this._fetchNamespace(t).listen(e,n,i,r):function(){}},t.prototype._buildInstruction=function(t,e,n,i,r){return t.transition.build(this.driver,t.element,t.fromState.value,t.toState.value,n,i,t.fromState.options,t.toState.options,e,r)},t.prototype.destroyInnerAnimations=function(t){var e=this,n=this.driver.query(t,".ng-trigger",!0);n.forEach(function(t){return e.destroyActiveAnimationsForElement(t)}),0!=this.playersByQueriedElement.size&&(n=this.driver.query(t,".ng-animating",!0)).forEach(function(t){return e.finishActiveQueriedAnimationOnElement(t)})},t.prototype.destroyActiveAnimationsForElement=function(t){var e=this.playersByElement.get(t);e&&e.forEach(function(t){t.queued?t.markedForDestroy=!0:t.destroy()})},t.prototype.finishActiveQueriedAnimationOnElement=function(t){var e=this.playersByQueriedElement.get(t);e&&e.forEach(function(t){return t.finish()})},t.prototype.whenRenderingDone=function(){var t=this;return new Promise(function(e){if(t.players.length)return fb(t.players).onDone(function(){return e()});e()})},t.prototype.processLeaveNode=function(t){var e=this,n=t[Hx];if(n&&n.setForRemoval){if(t[Hx]=zx,n.namespaceId){this.destroyInnerAnimations(t);var i=this._fetchNamespace(n.namespaceId);i&&i.clearElementCache(t)}this._onRemovalComplete(t,n.setForRemoval)}this.driver.matchesElement(t,".ng-animate-disabled")&&this.markElementAsDisabled(t,!1),this.driver.query(t,".ng-animate-disabled",!0).forEach(function(t){e.markElementAsDisabled(t,!1)})},t.prototype.flush=function(t){var e=this;void 0===t&&(t=-1);var n=[];if(this.newHostElements.size&&(this.newHostElements.forEach(function(t,n){return e._balanceNamespaceList(t,n)}),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(var i=0;i=0;C--)this._namespaceList[C].drainQueuedTransitions(e).forEach(function(t){var e=t.player,o=t.element;if(M.push(e),n.collectedEnterElements.length){var a=o[Hx];if(a&&a.setForMove)return void e.destroy()}var d=!p||!n.driver.containsElement(p,o),h=w.get(o),f=g.get(o),m=n._buildInstruction(t,i,f,h,d);if(m.errors&&m.errors.length)S.push(m);else{if(d)return e.onStart(function(){return Ub(o,m.fromStyles)}),e.onDestroy(function(){return Wb(o,m.toStyles)}),void r.push(e);if(t.isFallbackTransition)return e.onStart(function(){return Ub(o,m.fromStyles)}),e.onDestroy(function(){return Wb(o,m.toStyles)}),void r.push(e);m.timelines.forEach(function(t){return t.stretchStartingKeyframe=!0}),i.append(o,m.timelines),l.push({instruction:m,player:e,element:o}),m.queriedElements.forEach(function(t){return vb(s,t,[]).push(e)}),m.preStyleProps.forEach(function(t,e){var n=Object.keys(t);if(n.length){var i=u.get(e);i||u.set(e,i=new Set),n.forEach(function(t){return i.add(t)})}}),m.postStyleProps.forEach(function(t,e){var n=Object.keys(t),i=c.get(e);i||c.set(e,i=new Set),n.forEach(function(t){return i.add(t)})})}});if(S.length){var L=[];S.forEach(function(t){L.push("@"+t.triggerName+" has failed due to:\n"),t.errors.forEach(function(t){return L.push("- "+t+"\n")})}),M.forEach(function(t){return t.destroy()}),this.reportError(L)}var D=new Map,T=new Map;l.forEach(function(t){var e=t.element;i.has(e)&&(T.set(e,e),n._beforeAnimationBuild(t.player.namespaceId,t.instruction,D))}),r.forEach(function(t){var e=t.element;n._getPreviousPlayers(e,!1,t.namespaceId,t.triggerName,null).forEach(function(t){vb(D,e,[]).push(t),t.destroy()})});var E=_.filter(function(t){return tw(t,u,c)}),A=new Map;Xx(A,this.driver,b,c,Bv).forEach(function(t){tw(t,u,c)&&E.push(t)});var P=new Map;m.forEach(function(t,e){Xx(P,n.driver,new Set(t),u,Kv)}),E.forEach(function(t){var e=A.get(t),n=P.get(t);A.set(t,o({},e,n))});var O=[],Y=[],R={};l.forEach(function(t){var e=t.element,o=t.player,l=t.instruction;if(i.has(e)){if(h.has(e))return o.onDestroy(function(){return Wb(e,l.toStyles)}),o.disabled=!0,o.overrideTotalTime(l.totalTime),void r.push(o);var s=R;if(T.size>1){for(var u=e,c=[];u=u.parentNode;){var d=T.get(u);if(d){s=d;break}c.push(u)}c.forEach(function(t){return T.set(t,s)})}var p=n._buildAnimation(o.namespaceId,l,D,a,P,A);if(o.setRealPlayer(p),s===R)O.push(o);else{var f=n.playersByElement.get(s);f&&f.length&&(o.parentPlayer=fb(f)),r.push(o)}}else Ub(e,l.fromStyles),o.onDestroy(function(){return Wb(e,l.toStyles)}),Y.push(o),h.has(e)&&r.push(o)}),Y.forEach(function(t){var e=a.get(t.element);if(e&&e.length){var n=fb(e);t.setRealPlayer(n)}}),r.forEach(function(t){t.parentPlayer?t.syncPlayerEvents(t.parentPlayer):t.destroy()});for(var I=0;I<_.length;I++){var F,z=(F=_[I])[Hx];if(Qx(F,"ng-leave"),!z||!z.hasAnimation){var j=[];if(s.size){var H=s.get(F);H&&H.length&&j.push.apply(j,d(H));for(var N=this.driver.query(F,".ng-animating",!0),V=0;V0?this.driver.animate(t.element,e,t.duration,t.delay,t.easing,n):new qv(t.duration,t.delay)},t}(),Ux=function(){function t(t,e,n){this.namespaceId=t,this.triggerName=e,this.element=n,this._player=new qv,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}return t.prototype.setRealPlayer=function(t){var e=this;this._containsRealPlayer||(this._player=t,Object.keys(this._queuedCallbacks).forEach(function(n){e._queuedCallbacks[n].forEach(function(e){return gb(t,n,void 0,e)})}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(t.totalTime),this.queued=!1)},t.prototype.getRealPlayer=function(){return this._player},t.prototype.overrideTotalTime=function(t){this.totalTime=t},t.prototype.syncPlayerEvents=function(t){var e=this,n=this._player;n.triggerCallback&&t.onStart(function(){return n.triggerCallback("start")}),t.onDone(function(){return e.finish()}),t.onDestroy(function(){return e.destroy()})},t.prototype._queueEvent=function(t,e){vb(this._queuedCallbacks,t,[]).push(e)},t.prototype.onDone=function(t){this.queued&&this._queueEvent("done",t),this._player.onDone(t)},t.prototype.onStart=function(t){this.queued&&this._queueEvent("start",t),this._player.onStart(t)},t.prototype.onDestroy=function(t){this.queued&&this._queueEvent("destroy",t),this._player.onDestroy(t)},t.prototype.init=function(){this._player.init()},t.prototype.hasStarted=function(){return!this.queued&&this._player.hasStarted()},t.prototype.play=function(){!this.queued&&this._player.play()},t.prototype.pause=function(){!this.queued&&this._player.pause()},t.prototype.restart=function(){!this.queued&&this._player.restart()},t.prototype.finish=function(){this._player.finish()},t.prototype.destroy=function(){this.destroyed=!0,this._player.destroy()},t.prototype.reset=function(){!this.queued&&this._player.reset()},t.prototype.setPosition=function(t){this.queued||this._player.setPosition(t)},t.prototype.getPosition=function(){return this.queued?0:this._player.getPosition()},t.prototype.triggerCallback=function(t){var e=this._player;e.triggerCallback&&e.triggerCallback(t)},t}();function Gx(t){return t&&1===t.nodeType}function qx(t,e){var n=t.style.display;return t.style.display=null!=e?e:"none",n}function Xx(t,e,n,i,r){var o=[];n.forEach(function(t){return o.push(qx(t))});var a=[];i.forEach(function(n,i){var o={};n.forEach(function(t){var n=o[t]=e.computeStyle(i,t,r);n&&0!=n.length||(i[Hx]=jx,a.push(i))}),t.set(i,o)});var l=0;return n.forEach(function(t){return qx(t,o[l++])}),a}function Kx(t,e){var n=new Map;if(t.forEach(function(t){return n.set(t,[])}),0==e.length)return n;var i=new Set(e),r=new Map;return e.forEach(function(t){var e=function t(e){if(!e)return 1;var o=r.get(e);if(o)return o;var a=e.parentNode;return o=n.has(a)?a:i.has(a)?1:t(a),r.set(e,o),o}(t);1!==e&&n.get(e).push(t)}),n}var Zx="$$classes";function Jx(t,e){if(t.classList)t.classList.add(e);else{var n=t[Zx];n||(n=t[Zx]={}),n[e]=!0}}function Qx(t,e){if(t.classList)t.classList.remove(e);else{var n=t[Zx];n&&delete n[e]}}function $x(t,e,n){fb(n).onDone(function(){return t.processLeaveNode(e)})}function tw(t,e,n){var i=n.get(t);if(!i)return!1;var r=e.get(t);return r?i.forEach(function(t){return r.add(t)}):e.set(t,i),n.delete(t),!0}var ew=function(){function t(t,e,n){var i=this;this.bodyNode=t,this._driver=e,this._triggerCache={},this.onRemovalComplete=function(t,e){},this._transitionEngine=new Wx(t,e,n),this._timelineEngine=new Ix(t,e,n),this._transitionEngine.onRemovalComplete=function(t,e){return i.onRemovalComplete(t,e)}}return t.prototype.registerTrigger=function(t,e,n,i,r){var o=t+"-"+i,a=this._triggerCache[o];if(!a){var l=[],s=sx(this._driver,r,l);if(l.length)throw new Error('The animation trigger "'+i+'" has failed to build due to the following errors:\n - '+l.join("\n - "));a=function(t,e){return new Ox(t,e)}(i,s),this._triggerCache[o]=a}this._transitionEngine.registerTrigger(e,i,a)},t.prototype.register=function(t,e){this._transitionEngine.register(t,e)},t.prototype.destroy=function(t,e){this._transitionEngine.destroy(t,e)},t.prototype.onInsert=function(t,e,n,i){this._transitionEngine.insertNode(t,e,n,i)},t.prototype.onRemove=function(t,e,n){this._transitionEngine.removeNode(t,e,n)},t.prototype.disableAnimations=function(t,e){this._transitionEngine.markElementAsDisabled(t,e)},t.prototype.process=function(t,e,n,i){if("@"==n.charAt(0)){var r=c(bb(n),2);this._timelineEngine.command(r[0],e,r[1],i)}else this._transitionEngine.trigger(t,e,n,i)},t.prototype.listen=function(t,e,n,i,r){if("@"==n.charAt(0)){var o=c(bb(n),2);return this._timelineEngine.listen(o[0],e,o[1],r)}return this._transitionEngine.listen(t,e,n,i,r)},t.prototype.flush=function(t){void 0===t&&(t=-1),this._transitionEngine.flush(t)},Object.defineProperty(t.prototype,"players",{get:function(){return this._transitionEngine.players.concat(this._timelineEngine.players)},enumerable:!0,configurable:!0}),t.prototype.whenRenderingDone=function(){return this._transitionEngine.whenRenderingDone()},t}();function nw(t,e){var n=null,i=null;return Array.isArray(e)&&e.length?(n=rw(e[0]),e.length>1&&(i=rw(e[e.length-1]))):e&&(n=rw(e)),n||i?new iw(t,n,i):null}var iw=function(){function t(e,n,i){this._element=e,this._startStyles=n,this._endStyles=i,this._state=0;var r=t.initialStylesByElement.get(e);r||t.initialStylesByElement.set(e,r={}),this._initialStyles=r}return t.prototype.start=function(){this._state<1&&(this._startStyles&&Wb(this._element,this._startStyles,this._initialStyles),this._state=1)},t.prototype.finish=function(){this.start(),this._state<2&&(Wb(this._element,this._initialStyles),this._endStyles&&(Wb(this._element,this._endStyles),this._endStyles=null),this._state=1)},t.prototype.destroy=function(){this.finish(),this._state<3&&(t.initialStylesByElement.delete(this._element),this._startStyles&&(Ub(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Ub(this._element,this._endStyles),this._endStyles=null),Wb(this._element,this._initialStyles),this._state=3)},t.initialStylesByElement=new WeakMap,t}();function rw(t){for(var e=null,n=Object.keys(t),i=0;i=this._delay&&n>=this._duration&&this.finish()},t.prototype.finish=function(){this._finished||(this._finished=!0,this._onDoneFn(),hw(this._element,this._eventFn,!0))},t.prototype.destroy=function(){var t,e,n,i;this._destroyed||(this._destroyed=!0,this.finish(),e=this._name,(i=dw(n=fw(t=this._element,"").split(","),e))>=0&&(n.splice(i,1),pw(t,"",n.join(","))))},t}();function uw(t,e,n){pw(t,"PlayState",n,cw(t,e))}function cw(t,e){var n=fw(t,"");return n.indexOf(",")>0?dw(n.split(","),e):dw([n],e)}function dw(t,e){for(var n=0;n=0)return n;return-1}function hw(t,e,n){n?t.removeEventListener(lw,e):t.addEventListener(lw,e)}function pw(t,e,n,i){var r=aw+e;if(null!=i){var o=t.style[r];if(o.length){var a=o.split(",");a[i]=n,n=a.join(",")}}t.style[r]=n}function fw(t,e){return t.style[aw+e]}var mw="linear",gw=function(){function t(t,e,n,i,r,o,a,l){this.element=t,this.keyframes=e,this.animationName=n,this._duration=i,this._delay=r,this._finalStyles=a,this._specialStyles=l,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=o||mw,this.totalTime=i+r,this._buildStyler()}return t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.destroy=function(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype._flushDoneFns=function(){this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[]},t.prototype._flushStartFns=function(){this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[]},t.prototype.finish=function(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())},t.prototype.setPosition=function(t){this._styler.setPosition(t)},t.prototype.getPosition=function(){return this._styler.getPosition()},t.prototype.hasStarted=function(){return this._state>=2},t.prototype.init=function(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())},t.prototype.play=function(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()},t.prototype.pause=function(){this.init(),this._styler.pause()},t.prototype.restart=function(){this.reset(),this.play()},t.prototype.reset=function(){this._styler.destroy(),this._buildStyler(),this._styler.apply()},t.prototype._buildStyler=function(){var t=this;this._styler=new sw(this.element,this.animationName,this._duration,this._delay,this.easing,"forwards",function(){return t.finish()})},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t.prototype.beforeDestroy=function(){var t=this;this.init();var e={};if(this.hasStarted()){var n=this._state>=3;Object.keys(this._finalStyles).forEach(function(i){"offset"!=i&&(e[i]=n?t._finalStyles[i]:nx(t.element,i))})}this.currentSnapshot=e},t}(),yw=function(t){function e(e,n){var i=t.call(this)||this;return i.element=e,i._startingStyles={},i.__initialized=!1,i._styles=Ob(n),i}return r(e,t),e.prototype.init=function(){var e=this;!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach(function(t){e._startingStyles[t]=e.element.style[t]}),t.prototype.init.call(this))},e.prototype.play=function(){var e=this;this._startingStyles&&(this.init(),Object.keys(this._styles).forEach(function(t){return e.element.style.setProperty(t,e._styles[t])}),t.prototype.play.call(this))},e.prototype.destroy=function(){var e=this;this._startingStyles&&(Object.keys(this._startingStyles).forEach(function(t){var n=e._startingStyles[t];n?e.element.style.setProperty(t,n):e.element.style.removeProperty(t)}),this._startingStyles=null,t.prototype.destroy.call(this))},e}(qv),_w=function(){function t(){this._count=0,this._head=document.querySelector("head"),this._warningIssued=!1}return t.prototype.validateStyleProperty=function(t){return Tb(t)},t.prototype.matchesElement=function(t,e){return Eb(t,e)},t.prototype.containsElement=function(t,e){return Ab(t,e)},t.prototype.query=function(t,e,n){return Pb(t,e,n)},t.prototype.computeStyle=function(t,e,n){return window.getComputedStyle(t)[e]},t.prototype.buildKeyframeElement=function(t,e,n){n=n.map(function(t){return Ob(t)});var i="@keyframes "+e+" {\n",r="";n.forEach(function(t){r=" ";var e=parseFloat(t.offset);i+=""+r+100*e+"% {\n",r+=" ",Object.keys(t).forEach(function(e){var n=t[e];switch(e){case"offset":return;case"easing":return void(n&&(i+=r+"animation-timing-function: "+n+";\n"));default:return void(i+=""+r+e+": "+n+";\n")}}),i+=r+"}\n"}),i+="}\n";var o=document.createElement("style");return o.innerHTML=i,o},t.prototype.animate=function(t,e,n,i,r,o,a){void 0===o&&(o=[]),a&&this._notifyFaultyScrubber();var l=o.filter(function(t){return t instanceof gw}),s={};$b(n,i)&&l.forEach(function(t){var e=t.currentSnapshot;Object.keys(e).forEach(function(t){return s[t]=e[t]})});var u=function(t){var e={};return t&&(Array.isArray(t)?t:[t]).forEach(function(t){Object.keys(t).forEach(function(n){"offset"!=n&&"easing"!=n&&(e[n]=t[n])})}),e}(e=tx(t,e,s));if(0==n)return new yw(t,u);var c="gen_css_kf_"+this._count++,d=this.buildKeyframeElement(t,c,e);document.querySelector("head").appendChild(d);var h=nw(t,e),p=new gw(t,e,c,n,i,r,u,h);return p.onDestroy(function(){var t;(t=d).parentNode.removeChild(t)}),p},t.prototype._notifyFaultyScrubber=function(){this._warningIssued||(console.warn("@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\n"," visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill."),this._warningIssued=!0)},t}(),vw=function(){function t(t,e,n,i){this.element=t,this.keyframes=e,this.options=n,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=n.duration,this._delay=n.delay||0,this.time=this._duration+this._delay}return t.prototype._onFinish=function(){this._finished||(this._finished=!0,this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[])},t.prototype.init=function(){this._buildPlayer(),this._preparePlayerBeforeStart()},t.prototype._buildPlayer=function(){var t=this;if(!this._initialized){this._initialized=!0;var e=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,e,this.options),this._finalKeyframe=e.length?e[e.length-1]:{},this.domPlayer.addEventListener("finish",function(){return t._onFinish()})}},t.prototype._preparePlayerBeforeStart=function(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()},t.prototype._triggerWebAnimation=function(t,e,n){return t.animate(e,n)},t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.play=function(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()},t.prototype.pause=function(){this.init(),this.domPlayer.pause()},t.prototype.finish=function(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()},t.prototype.reset=function(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1},t.prototype._resetDomPlayerState=function(){this.domPlayer&&this.domPlayer.cancel()},t.prototype.restart=function(){this.reset(),this.play()},t.prototype.hasStarted=function(){return this._started},t.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype.setPosition=function(t){this.domPlayer.currentTime=t*this.time},t.prototype.getPosition=function(){return this.domPlayer.currentTime/this.time},Object.defineProperty(t.prototype,"totalTime",{get:function(){return this._delay+this._duration},enumerable:!0,configurable:!0}),t.prototype.beforeDestroy=function(){var t=this,e={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach(function(n){"offset"!=n&&(e[n]=t._finished?t._finalKeyframe[n]:nx(t.element,n))}),this.currentSnapshot=e},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t}(),bw=function(){function t(){this._isNativeImpl=/\{\s*\[native\s+code\]\s*\}/.test(xw().toString()),this._cssKeyframesDriver=new _w}return t.prototype.validateStyleProperty=function(t){return Tb(t)},t.prototype.matchesElement=function(t,e){return Eb(t,e)},t.prototype.containsElement=function(t,e){return Ab(t,e)},t.prototype.query=function(t,e,n){return Pb(t,e,n)},t.prototype.computeStyle=function(t,e,n){return window.getComputedStyle(t)[e]},t.prototype.overrideWebAnimationsSupport=function(t){this._isNativeImpl=t},t.prototype.animate=function(t,e,n,i,r,o,a){if(void 0===o&&(o=[]),!a&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(t,e,n,i,r,o);var l={duration:n,delay:i,fill:0==i?"both":"forwards"};r&&(l.easing=r);var s={},u=o.filter(function(t){return t instanceof vw});$b(n,i)&&u.forEach(function(t){var e=t.currentSnapshot;Object.keys(e).forEach(function(t){return s[t]=e[t]})});var c=nw(t,e=tx(t,e=e.map(function(t){return Nb(t,!1)}),s));return new vw(t,e,l,c)},t}();function xw(){return"undefined"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}var ww=function(t){function e(e,n){var i=t.call(this)||this;return i._nextAnimationId=0,i._renderer=e.createRenderer(n.body,{id:"0",encapsulation:Kt.None,styles:[],data:{animation:[]}}),i}return r(e,t),e.prototype.build=function(t){var e=this._nextAnimationId.toString();this._nextAnimationId++;var n=Array.isArray(t)?Wv(t):t;return Sw(this._renderer,null,e,"register",[n]),new kw(e,this._renderer)},e}(Nv),kw=function(t){function e(e,n){var i=t.call(this)||this;return i._id=e,i._renderer=n,i}return r(e,t),e.prototype.create=function(t,e){return new Mw(this._id,t,e||{},this._renderer)},e}(Vv),Mw=function(){function t(t,e,n,i){this.id=t,this.element=e,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command("create",n)}return t.prototype._listen=function(t,e){return this._renderer.listen(this.element,"@@"+this.id+":"+t,e)},t.prototype._command=function(t){for(var e=[],n=1;n=0&&t enter",animation:[{type:6,styles:{opacity:0,transform:"translateY(-100%)"},offset:null},{type:4,styles:null,timings:"300ms cubic-bezier(0.55, 0, 0.55, 0.2)"}],options:null}],options:{}}]}});function Iw(t){return Ia(0,[(t()(),yo(0,0,null,null,8,null,null,null,null,null,null,null)),(t()(),yo(1,0,null,null,3,"div",[["class","mat-form-field-outline"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,0,"div",[["class","mat-form-field-outline-start"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,0,"div",[["class","mat-form-field-outline-gap"]],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,"div",[["class","mat-form-field-outline-end"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,3,"div",[["class","mat-form-field-outline mat-form-field-outline-thick"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,0,"div",[["class","mat-form-field-outline-start"]],null,null,null,null,null)),(t()(),yo(7,0,null,null,0,"div",[["class","mat-form-field-outline-gap"]],null,null,null,null,null)),(t()(),yo(8,0,null,null,0,"div",[["class","mat-form-field-outline-end"]],null,null,null,null,null))],null,null)}function Fw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[["class","mat-form-field-prefix"]],null,null,null,null,null)),La(null,0)],null,null)}function zw(t){return Ia(0,[(t()(),yo(0,0,null,null,2,null,null,null,null,null,null,null)),La(null,2),(t()(),Oa(2,null,["",""]))],null,function(t,e){t(e,2,0,e.component._control.placeholder)})}function jw(t){return Ia(0,[La(null,3),(t()(),go(0,null,null,0))],null,null)}function Hw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"span",[["aria-hidden","true"],["class","mat-placeholder-required mat-form-field-required-marker"]],null,null,null,null,null)),(t()(),Oa(-1,null,[" *"]))],null,null)}function Nw(t){return Ia(0,[(t()(),yo(0,0,[[4,0],["label",1]],null,8,"label",[["class","mat-form-field-label"]],[[8,"id",0],[1,"for",0],[1,"aria-owns",0],[2,"mat-empty",null],[2,"mat-form-field-empty",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"cdkObserveContent"]],function(t,e,n){var i=!0;return"cdkObserveContent"===e&&(i=!1!==t.component.updateOutlineGap()&&i),i},null,null)),oa(1,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),oa(2,1196032,null,0,db,[cb,Ve,Mi],{disabled:[0,"disabled"]},{event:"cdkObserveContent"}),(t()(),go(16777216,null,null,1,null,zw)),oa(4,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,jw)),oa(6,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,Hw)),oa(8,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,1,0,n._hasLabel()),t(e,2,0,"outline"!=n.appearance),t(e,4,0,!1),t(e,6,0,!0),t(e,8,0,!n.hideRequiredMarker&&n._control.required&&!n._control.disabled)},function(t,e){var n=e.component;t(e,0,0,n._labelId,n._control.id,n._control.id,n._control.empty&&!n._shouldAlwaysFloat,n._control.empty&&!n._shouldAlwaysFloat,"accent"==n.color,"warn"==n.color)})}function Vw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[["class","mat-form-field-suffix"]],null,null,null,null,null)),La(null,4)],null,null)}function Bw(t){return Ia(0,[(t()(),yo(0,0,[[1,0],["underline",1]],null,1,"div",[["class","mat-form-field-underline"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,0,"span",[["class","mat-form-field-ripple"]],[[2,"mat-accent",null],[2,"mat-warn",null]],null,null,null,null))],null,function(t,e){var n=e.component;t(e,1,0,"accent"==n.color,"warn"==n.color)})}function Ww(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[],[[24,"@transitionMessages",0]],null,null,null,null)),La(null,5)],null,function(t,e){t(e,0,0,e.component._subscriptAnimationState)})}function Uw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[["class","mat-hint"]],[[8,"id",0]],null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){var n=e.component;t(e,0,0,n._hintLabelId),t(e,1,0,n.hintLabel)})}function Gw(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","mat-form-field-hint-wrapper"]],[[24,"@transitionMessages",0]],null,null,null,null)),(t()(),go(16777216,null,null,1,null,Uw)),oa(2,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),La(null,6),(t()(),yo(4,0,null,null,0,"div",[["class","mat-form-field-hint-spacer"]],null,null,null,null,null)),La(null,7)],function(t,e){t(e,2,0,e.component.hintLabel)},function(t,e){t(e,0,0,e.component._subscriptAnimationState)})}function qw(t){return Ia(2,[wa(671088640,1,{underlineRef:0}),wa(402653184,2,{_connectionContainerRef:0}),wa(402653184,3,{_inputContainerRef:0}),wa(671088640,4,{_label:0}),(t()(),yo(4,0,null,null,20,"div",[["class","mat-form-field-wrapper"]],null,null,null,null,null)),(t()(),yo(5,0,[[2,0],["connectionContainer",1]],null,11,"div",[["class","mat-form-field-flex"]],null,[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==(r._control.onContainerClick&&r._control.onContainerClick(n))&&i),i},null,null)),(t()(),go(16777216,null,null,1,null,Iw)),oa(7,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,Fw)),oa(9,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(10,0,[[3,0],["inputContainer",1]],null,4,"div",[["class","mat-form-field-infix"]],null,null,null,null,null)),La(null,1),(t()(),yo(12,0,null,null,2,"span",[["class","mat-form-field-label-wrapper"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,Nw)),oa(14,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,Vw)),oa(16,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,Bw)),oa(18,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(19,0,null,null,5,"div",[["class","mat-form-field-subscript-wrapper"]],null,null,null,null,null)),oa(20,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,Ww)),oa(22,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,Gw)),oa(24,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){var n=e.component;t(e,7,0,"outline"==n.appearance),t(e,9,0,n._prefixChildren.length),t(e,14,0,n._hasFloatingLabel()),t(e,16,0,n._suffixChildren.length),t(e,18,0,"outline"!=n.appearance),t(e,20,0,n._getDisplayedMessages()),t(e,22,0,"error"),t(e,24,0,"hint")},null)}var Xw=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"],Kw=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=Xw,e}return r(e,t),e}(function(t){function e(e,n,i,r,o,a,l){var s=t.call(this,e,null,n,i)||this;return s.elementRef=e,s.styler=n,s.marshal=i,s.iterableDiffers=r,s.keyValueDiffers=o,s.renderer=a,s.ngClassInstance=l,s.DIRECTIVE_KEY="ngClass",s.ngClassInstance||(s.ngClassInstance=new hs(s.iterableDiffers,s.keyValueDiffers,s.elementRef,s.renderer)),s.init(),s.setValue("",""),s}return r(e,t),Object.defineProperty(e.prototype,"klass",{set:function(t){this.ngClassInstance.klass=t,this.setValue(t,"")},enumerable:!0,configurable:!0}),e.prototype.updateWithValue=function(t){this.ngClassInstance.ngClass=t,this.ngClassInstance.ngDoCheck()},e.prototype.ngDoCheck=function(){this.ngClassInstance.ngDoCheck()},e}(Lg)),Zw=function(){return function(t,e,n){void 0===n&&(n=!0),this.key=t,this.value=e,this.key=n?t.replace(/['"]/g,"").trim():t.trim(),this.value=n?e.replace(/['"]/g,"").trim():e.trim(),this.value=this.value.replace(/;/,"")}}();function Jw(t){var e=typeof t;return"object"===e?t.constructor===Array?"array":t.constructor===Set?"set":"object":e}function Qw(t){var e=t.split(":"),n=e[0],i=e.slice(1);return new Zw(n,i.join(":"))}function $w(t,e){return e.key&&(t[e.key]=e.value),t}var tk=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"],ek=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=tk,e}return r(e,t),e}(function(t){function e(e,n,i,r,o,a,l,s,u){var c=t.call(this,e,null,n,i)||this;c.elementRef=e,c.styler=n,c.marshal=i,c.keyValueDiffers=r,c.renderer=o,c.sanitizer=a,c.ngStyleInstance=l,c.DIRECTIVE_KEY="ngStyle",c.ngStyleInstance||(c.ngStyleInstance=new ks(c.keyValueDiffers,c.elementRef,c.renderer)),c.init();var d=c.nativeElement.getAttribute("style")||"";return c.fallbackStyles=c.buildStyleMap(d),c.isServer=s&&Rs(u),c}return r(e,t),e.prototype.updateWithValue=function(t){var e=this.buildStyleMap(t);this.ngStyleInstance.ngStyle=o({},this.fallbackStyles,e),this.isServer&&this.applyStyleToElement(e),this.ngStyleInstance.ngDoCheck()},e.prototype.clearStyles=function(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()},e.prototype.buildStyleMap=function(t){var e,n=this,i=function(t){return n.sanitizer.sanitize(Ke.STYLE,t)||""};if(t)switch(Jw(t)){case"string":return nk((void 0===e&&(e=";"),String(t).trim().split(e).map(function(t){return t.trim()}).filter(function(t){return""!==t})),i);case"array":return nk(t,i);case"set":default:return function(t,e){var n=[];return"set"===Jw(t)?t.forEach(function(t){return n.push(t)}):Object.keys(t).forEach(function(e){n.push(e+":"+t[e])}),function(t,e){return n.map(Qw).filter(function(t){return!!t}).map(function(t){return e&&(t.value=e(t.value)),t}).reduce($w,{})}(0,e)}(t,i)}return{}},e.prototype.ngDoCheck=function(){this.ngStyleInstance.ngDoCheck()},e}(Lg));function nk(t,e){return t.map(Qw).filter(function(t){return!!t}).map(function(t){return e&&(t.value=e(t.value)),t}).reduce($w,{})}var ik=function(){return function(){}}(),rk=function(){function t(t){this.durationSelector=t}return t.prototype.call=function(t,e){return e.subscribe(new ok(t,this.durationSelector))},t}(),ok=function(t){function e(e,n){var i=t.call(this,e)||this;return i.durationSelector=n,i.hasValue=!1,i}return r(e,t),e.prototype._next=function(t){if(this.value=t,this.hasValue=!0,!this.throttled){var e=_(this.durationSelector)(t);if(e===g)this.destination.error(g.e);else{var n=tt(this,e);!n||n.closed?this.clearThrottle():this.add(this.throttled=n)}}},e.prototype.clearThrottle=function(){var t=this.value,e=this.hasValue,n=this.throttled;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),e&&(this.value=null,this.hasValue=!1,this.destination.next(t))},e.prototype.notifyNext=function(t,e,n,i){this.clearThrottle()},e.prototype.notifyComplete=function(){this.clearThrottle()},e}(et);function ak(t){return!h(t)&&t-parseFloat(t)+1>=0}function lk(t){var e=t.index,n=t.period,i=t.subscriber;if(i.next(e),!i.closed){if(-1===n)return i.complete();t.index=e+1,this.schedule(t,n)}}function sk(t,e){return void 0===e&&(e=xc),n=function(){return function(t,e,n){void 0===t&&(t=0);var i=-1;return ak(e)?i=Number(e)<1?1:Number(e):V(e)&&(n=e),V(n)||(n=xc),new Y(function(e){var r=ak(t)?t:+t-n.now();return n.schedule(lk,r,{index:0,period:i,subscriber:e})})}(t,e)},function(t){return t.lift(new rk(n))};var n}var uk=ac({passive:!0}),ck=function(){function t(t,e){this._platform=t,this._ngZone=e,this._monitoredElements=new Map}return t.prototype.monitor=function(t){var e=this;if(!this._platform.isBrowser)return sc;var n=$u(t),i=this._monitoredElements.get(n);if(i)return i.subject.asObservable();var r=new H,o="cdk-text-field-autofilled",a=function(t){"cdk-text-field-autofill-start"!==t.animationName||n.classList.contains(o)?"cdk-text-field-autofill-end"===t.animationName&&n.classList.contains(o)&&(n.classList.remove(o),e._ngZone.run(function(){return r.next({target:t.target,isAutofilled:!1})})):(n.classList.add(o),e._ngZone.run(function(){return r.next({target:t.target,isAutofilled:!0})}))};return this._ngZone.runOutsideAngular(function(){n.addEventListener("animationstart",a,uk),n.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(n,{subject:r,unlisten:function(){n.removeEventListener("animationstart",a,uk)}}),r.asObservable()},t.prototype.stopMonitoring=function(t){var e=$u(t),n=this._monitoredElements.get(e);n&&(n.unlisten(),n.subject.complete(),e.classList.remove("cdk-text-field-autofill-monitored"),e.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(e))},t.prototype.ngOnDestroy=function(){var t=this;this._monitoredElements.forEach(function(e,n){return t.stopMonitoring(n)})},t.ngInjectableDef=St({factory:function(){return new t(ie(nc),ie(Mi))},token:t,providedIn:"root"}),t}(),dk=function(){return function(){}}(),hk=new Lt("MAT_INPUT_VALUE_ACCESSOR"),pk=["button","checkbox","file","hidden","image","radio","range","reset","submit"],fk=0,mk=function(t){function e(e,n,i,r,o,a,l,s,u){var c=t.call(this,a,r,o,i)||this;c._elementRef=e,c._platform=n,c.ngControl=i,c._autofillMonitor=s,c._uid="mat-input-"+fk++,c._isServer=!1,c._isNativeSelect=!1,c.focused=!1,c.stateChanges=new H,c.controlType="mat-input",c.autofilled=!1,c._disabled=!1,c._required=!1,c._type="text",c._readonly=!1,c._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(function(t){return oc().has(t)});var d=c._elementRef.nativeElement;return c._inputValueAccessor=l||d,c._previousNativeValue=c.value,c.id=c.id,n.IOS&&u.runOutsideAngular(function(){e.nativeElement.addEventListener("keyup",function(t){var e=t.target;e.value||e.selectionStart||e.selectionEnd||(e.setSelectionRange(1,1),e.setSelectionRange(0,0))})}),c._isServer=!c._platform.isBrowser,c._isNativeSelect="select"===d.nodeName.toLowerCase(),c._isNativeSelect&&(c.controlType=d.multiple?"mat-native-select-multiple":"mat-native-select"),c}return r(e,t),Object.defineProperty(e.prototype,"disabled",{get:function(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled},set:function(t){this._disabled=Xu(t),this.focused&&(this.focused=!1,this.stateChanges.next())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this._id},set:function(t){this._id=t||this._uid},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"type",{get:function(){return this._type},set:function(t){this._type=t||"text",this._validateType(),!this._isTextarea()&&oc().has(this._type)&&(this._elementRef.nativeElement.type=this._type)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this._inputValueAccessor.value},set:function(t){t!==this.value&&(this._inputValueAccessor.value=t,this.stateChanges.next())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"readonly",{get:function(){return this._readonly},set:function(t){this._readonly=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){var t=this;this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(function(e){t.autofilled=e.isAutofilled,t.stateChanges.next()})},e.prototype.ngOnChanges=function(){this.stateChanges.next()},e.prototype.ngOnDestroy=function(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement)},e.prototype.ngDoCheck=function(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue()},e.prototype.focus=function(){this._elementRef.nativeElement.focus()},e.prototype._focusChanged=function(t){t===this.focused||this.readonly&&t||(this.focused=t,this.stateChanges.next())},e.prototype._onInput=function(){},e.prototype._dirtyCheckNativeValue=function(){var t=this._elementRef.nativeElement.value;this._previousNativeValue!==t&&(this._previousNativeValue=t,this.stateChanges.next())},e.prototype._validateType=function(){if(pk.indexOf(this._type)>-1)throw Error('Input type "'+this._type+"\" isn't supported by matInput.")},e.prototype._isNeverEmpty=function(){return this._neverEmptyInputTypes.indexOf(this._type)>-1},e.prototype._isBadInput=function(){var t=this._elementRef.nativeElement.validity;return t&&t.badInput},e.prototype._isTextarea=function(){return"textarea"===this._elementRef.nativeElement.nodeName.toLowerCase()},Object.defineProperty(e.prototype,"empty",{get:function(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"shouldLabelFloat",{get:function(){if(this._isNativeSelect){var t=this._elementRef.nativeElement,e=t.options[0];return this.focused||t.multiple||!this.empty||!!(t.selectedIndex>-1&&e&&e.label)}return this.focused||!this.empty},enumerable:!0,configurable:!0}),e.prototype.setDescribedByIds=function(t){this._ariaDescribedby=t.join(" ")},e.prototype.onContainerClick=function(){this.focused||this.focus()},e}(sd(function(){return function(t,e,n,i){this._defaultErrorStateMatcher=t,this._parentForm=e,this._parentFormGroup=n,this.ngControl=i}}())),gk=function(){return function(){}}();function yk(t,e){return new Y(e?function(n){return e.schedule(_k,0,{error:t,subscriber:n})}:function(e){return e.error(t)})}function _k(t){t.subscriber.error(t.error)}function vk(t){return Error('Unable to find icon with the name "'+t+'"')}function bk(t){return Error("The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was \""+t+'".')}function xk(t){return Error("The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was \""+t+'".')}var wk=function(){return function(t){t.nodeName?this.svgElement=t:this.url=t}}(),kk=function(){function t(t,e,n){this._httpClient=t,this._sanitizer=e,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass="material-icons",this._document=n}return t.prototype.addSvgIcon=function(t,e){return this.addSvgIconInNamespace("",t,e)},t.prototype.addSvgIconLiteral=function(t,e){return this.addSvgIconLiteralInNamespace("",t,e)},t.prototype.addSvgIconInNamespace=function(t,e,n){return this._addSvgIconConfig(t,e,new wk(n))},t.prototype.addSvgIconLiteralInNamespace=function(t,e,n){var i=this._sanitizer.sanitize(Ke.HTML,n);if(!i)throw xk(n);var r=this._createSvgElementForSingleIcon(i);return this._addSvgIconConfig(t,e,new wk(r))},t.prototype.addSvgIconSet=function(t){return this.addSvgIconSetInNamespace("",t)},t.prototype.addSvgIconSetLiteral=function(t){return this.addSvgIconSetLiteralInNamespace("",t)},t.prototype.addSvgIconSetInNamespace=function(t,e){return this._addSvgIconSetConfig(t,new wk(e))},t.prototype.addSvgIconSetLiteralInNamespace=function(t,e){var n=this._sanitizer.sanitize(Ke.HTML,e);if(!n)throw xk(e);var i=this._svgElementFromString(n);return this._addSvgIconSetConfig(t,new wk(i))},t.prototype.registerFontClassAlias=function(t,e){return void 0===e&&(e=t),this._fontCssClassesByAlias.set(t,e),this},t.prototype.classNameForFontAlias=function(t){return this._fontCssClassesByAlias.get(t)||t},t.prototype.setDefaultFontSetClass=function(t){return this._defaultFontSetClass=t,this},t.prototype.getDefaultFontSetClass=function(){return this._defaultFontSetClass},t.prototype.getSvgIconFromUrl=function(t){var e=this,n=this._sanitizer.sanitize(Ke.RESOURCE_URL,t);if(!n)throw bk(t);var i=this._cachedIconsByUrl.get(n);return i?cc(Mk(i)):this._loadSvgIconFromConfig(new wk(t)).pipe(mc(function(t){return e._cachedIconsByUrl.set(n,t)}),nt(function(t){return Mk(t)}))},t.prototype.getNamedSvgIcon=function(t,e){void 0===e&&(e="");var n=Sk(e,t),i=this._svgIconConfigs.get(n);if(i)return this._getSvgFromConfig(i);var r=this._iconSetConfigs.get(e);return r?this._getSvgFromIconSetConfigs(t,r):yk(vk(n))},t.prototype.ngOnDestroy=function(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()},t.prototype._getSvgFromConfig=function(t){return t.svgElement?cc(Mk(t.svgElement)):this._loadSvgIconFromConfig(t).pipe(mc(function(e){return t.svgElement=e}),nt(function(t){return Mk(t)}))},t.prototype._getSvgFromIconSetConfigs=function(t,e){var n=this,i=this._extractIconWithNameFromAnySet(t,e);return i?cc(i):D_(e.filter(function(t){return!t.svgElement}).map(function(t){return n._loadSvgIconSetFromConfig(t).pipe(Jh(function(e){var i=n._sanitizer.sanitize(Ke.RESOURCE_URL,t.url);return console.error("Loading icon set URL: "+i+" failed: "+e.message),cc(null)}))})).pipe(nt(function(){var i=n._extractIconWithNameFromAnySet(t,e);if(!i)throw vk(t);return i}))},t.prototype._extractIconWithNameFromAnySet=function(t,e){for(var n=e.length-1;n>=0;n--){var i=e[n];if(i.svgElement){var r=this._extractSvgIconFromSet(i.svgElement,t);if(r)return r}}return null},t.prototype._loadSvgIconFromConfig=function(t){var e=this;return this._fetchUrl(t.url).pipe(nt(function(t){return e._createSvgElementForSingleIcon(t)}))},t.prototype._loadSvgIconSetFromConfig=function(t){var e=this;return t.svgElement?cc(t.svgElement):this._fetchUrl(t.url).pipe(nt(function(n){return t.svgElement||(t.svgElement=e._svgElementFromString(n)),t.svgElement}))},t.prototype._createSvgElementForSingleIcon=function(t){var e=this._svgElementFromString(t);return this._setSvgAttributes(e),e},t.prototype._extractSvgIconFromSet=function(t,e){var n=t.querySelector("#"+e);if(!n)return null;var i=n.cloneNode(!0);if(i.removeAttribute("id"),"svg"===i.nodeName.toLowerCase())return this._setSvgAttributes(i);if("symbol"===i.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(i));var r=this._svgElementFromString("");return r.appendChild(i),this._setSvgAttributes(r)},t.prototype._svgElementFromString=function(t){var e=this._document.createElement("DIV");e.innerHTML=t;var n=e.querySelector("svg");if(!n)throw Error(" tag not found");return n},t.prototype._toSvgElement=function(t){for(var e=this._svgElementFromString(""),n=0;n*,.mat-fab .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}@media (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}"],data:{}});function Nk(t){return Ia(2,[wa(402653184,1,{ripple:0}),(t()(),yo(1,0,null,null,1,"span",[["class","mat-button-wrapper"]],null,null,null,null,null)),La(null,0),(t()(),yo(3,0,null,null,1,"div",[["class","mat-button-ripple mat-ripple"],["matRipple",""]],[[2,"mat-button-ripple-round",null],[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(4,212992,[[1,4]],0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{centered:[0,"centered"],disabled:[1,"disabled"],trigger:[2,"trigger"]},null),(t()(),yo(5,0,null,null,0,"div",[["class","mat-button-focus-overlay"]],null,null,null,null,null))],function(t,e){var n=e.component;t(e,4,0,n.isIconButton,n._isRippleDisabled(),n._getHostElement())},function(t,e){var n=e.component;t(e,3,0,n.isRoundButton||n.isIconButton,Go(e,4).unbounded)})}var Vk=Vr({encapsulation:2,styles:[".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media (hover:none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-flat-button,.mat-icon-button,.mat-stroked-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-flat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-focus-overlay,.mat-stroked-button .mat-button-ripple.mat-ripple{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button .mat-icon,.mat-icon-button i{line-height:24px}.mat-button-focus-overlay,.mat-button-ripple.mat-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-focus-overlay{opacity:0;transition:opacity .2s cubic-bezier(.35,0,.25,1),background-color .2s cubic-bezier(.35,0,.25,1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}@media (-ms-high-contrast:active){.mat-button-focus-overlay{background-color:#fff}}@media (-ms-high-contrast:black-on-white){.mat-button-focus-overlay{background-color:#000}}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}@media (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}"],data:{}});function Bk(t){return Ia(2,[wa(402653184,1,{ripple:0}),(t()(),yo(1,0,null,null,1,"span",[["class","mat-button-wrapper"]],null,null,null,null,null)),La(null,0),(t()(),yo(3,0,null,null,1,"div",[["class","mat-button-ripple mat-ripple"],["matRipple",""]],[[2,"mat-button-ripple-round",null],[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(4,212992,[[1,4]],0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{centered:[0,"centered"],disabled:[1,"disabled"],trigger:[2,"trigger"]},null),(t()(),yo(5,0,null,null,0,"div",[["class","mat-button-focus-overlay"]],null,null,null,null,null))],function(t,e){var n=e.component;t(e,4,0,n.isIconButton,n._isRippleDisabled(),n._getHostElement())},function(t,e){var n=e.component;t(e,3,0,n.isRoundButton||n.isIconButton,Go(e,4).unbounded)})}var Wk=function(){function t(t,e,n,i,r){this.formBuilder=t,this.route=e,this.router=n,this.authenticationService=i,this.alertService=r,this.loading=!1,this.submitted=!1,this.hide=!0,this.authenticationService.currentUserValue&&this.router.navigate(["/home"])}return t.prototype.ngOnInit=function(){this.loginForm=this.formBuilder.group({username:["",R_.required],password:["",R_.required]}),this.returnUrl=this.route.snapshot.queryParams.returnUrl||"/home"},Object.defineProperty(t.prototype,"f",{get:function(){return this.loginForm.controls},enumerable:!0,configurable:!0}),t.prototype.onSubmit=function(){var t=this;this.submitted=!0,this.loginForm.invalid||(this.loading=!0,this.authenticationService.login(this.f.username.value,this.f.password.value).pipe(tp()).subscribe(function(e){if(t.returnUrl.includes("?")){var n=t.returnUrl.split("?")[0],i=new nh({fromString:t.returnUrl.split("?")[1]});i.get("From"),i.get("To"),t.router.navigate([n],{queryParams:{From:i.get("From"),To:i.get("To"),devicemodel:i.get("devicemodel"),email:i.get("email"),selectedResultID:i.get("selectedResultID")}})}else t.router.navigate([t.returnUrl])},function(e){t.alertService.error(e),t.loading=!1}))},t}(),Uk=Vr({encapsulation:0,styles:[[".center[_ngcontent-%COMP%]{width:auto;margin:10px auto;padding:7em}.main-div[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center;margin-top:15em}.login-container[_ngcontent-%COMP%]{align-items:center;display:initial}input[_ngcontent-%COMP%]{background:0 0;outline:0;font:inherit;text-align:center}button[_ngcontent-%COMP%]{position:relative;text-align:center;display:inline-block;justify-content:center;min-width:5em;margin-top:5em}.form-group[_ngcontent-%COMP%]{text-align:center}.loginButton[_ngcontent-%COMP%]{min-height:3em;min-width:15em;font-size:16pt}"]],data:{}});function Gk(t){return Ia(0,[(t()(),yo(0,0,null,null,0,"img",[["src","data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA=="]],null,null,null,null,null))],null,null)}function qk(t){return Ia(0,[(t()(),yo(0,0,null,null,88,"div",[["class","main-div"],["layout","column"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,87,"mat-card",[["class","z-depth center mat-card"],["flex","50"]],null,null,null,S_,M_)),oa(2,49152,null,0,x_,[],null,null),(t()(),yo(3,0,null,0,1,"h3",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Login"])),(t()(),yo(5,0,null,0,83,"form",[["class","login-container"],["novalidate",""]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],[[null,"ngSubmit"],[null,"submit"],[null,"reset"]],function(t,e,n){var i=!0,r=t.component;return"submit"===e&&(i=!1!==Go(t,7).onSubmit(n)&&i),"reset"===e&&(i=!1!==Go(t,7).onReset()&&i),"ngSubmit"===e&&(i=!1!==r.onSubmit()&&i),i},null,null)),oa(6,16384,null,0,Fv,[],null,null),oa(7,540672,null,0,Ev,[[8,null],[8,null]],{form:[0,"form"]},{ngSubmit:"ngSubmit"}),la(2048,null,A_,null,[Ev]),oa(9,16384,null,0,yv,[[4,A_]],null,null),(t()(),yo(10,0,null,null,35,"div",[["class","form-group"]],null,null,null,null,null)),(t()(),yo(11,0,null,null,34,"mat-form-field",[["appearance","standard"],["class","mat-form-field"],["style","width: 20em;"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(12,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],{appearance:[0,"appearance"],floatLabel:[1,"floatLabel"]},null),wa(335544320,1,{_control:0}),wa(335544320,2,{_placeholderChild:0}),wa(335544320,3,{_labelChild:0}),wa(603979776,4,{_errorChildren:1}),wa(603979776,5,{_hintChildren:1}),wa(603979776,6,{_prefixChildren:1}),wa(603979776,7,{_suffixChildren:1}),(t()(),yo(20,0,null,3,2,"mat-label",[],null,null,null,null,null)),oa(21,16384,[[3,4]],0,nb,[],null,null),(t()(),Oa(-1,null,["Enter your username"])),(t()(),yo(23,0,null,1,13,"input",[["autocomplete","username"],["class","mat-input-element mat-form-field-autofill-control"],["formControlName","username"],["matInput",""],["required",""],["type","text"]],[[1,"required",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,26)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,26).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,26)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,26)._compositionEnd(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,35)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,35)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,35)._onInput()&&i),i},null,null)),oa(24,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(25,{"is-invalid":0}),oa(26,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(27,16384,null,0,Rv,[],{required:[0,"required"]},null),la(1024,null,O_,function(t){return[t]},[Rv]),la(1024,null,j_,function(t){return[t]},[V_]),oa(30,671744,null,0,Yv,[[3,A_],[6,O_],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(32,16384,null,0,gv,[[4,q_]],null,null),oa(33,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(34,{"is-invalid":0}),oa(35,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{required:[0,"required"],type:[1,"type"]},null),la(2048,[[1,4]],Qv,null,[mk]),(t()(),yo(37,0,null,5,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(38,16384,[[4,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,["Username is required"])),(t()(),yo(40,0,null,4,2,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(41,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(42,16384,[[7,4]],0,ib,[],null,null),(t()(),yo(43,0,null,6,2,"mat-hint",[["class","mat-hint"]],[[2,"mat-right",null],[1,"id",0],[1,"align",0]],null,null,null,null)),oa(44,16384,[[5,4]],0,eb,[],null,null),(t()(),Oa(-1,null,["Username"])),(t()(),yo(46,0,null,null,36,"div",[["class","form-group"]],null,null,null,null,null)),(t()(),yo(47,0,null,null,35,"mat-form-field",[["appearance","standard"],["class","mat-form-field"],["style","width: 20em;"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(48,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],{appearance:[0,"appearance"],floatLabel:[1,"floatLabel"]},null),wa(335544320,8,{_control:0}),wa(335544320,9,{_placeholderChild:0}),wa(335544320,10,{_labelChild:0}),wa(603979776,11,{_errorChildren:1}),wa(603979776,12,{_hintChildren:1}),wa(603979776,13,{_prefixChildren:1}),wa(603979776,14,{_suffixChildren:1}),(t()(),yo(56,0,null,3,2,"mat-label",[],null,null,null,null,null)),oa(57,16384,[[10,4]],0,nb,[],null,null),(t()(),Oa(-1,null,["Enter your password"])),(t()(),yo(59,0,null,1,13,"input",[["autocomplete","current-password"],["class","mat-input-element mat-form-field-autofill-control"],["formControlName","password"],["matInput",""],["required",""]],[[1,"required",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,62)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,62).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,62)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,62)._compositionEnd(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,71)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,71)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,71)._onInput()&&i),i},null,null)),oa(60,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(61,{"is-invalid":0}),oa(62,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(63,16384,null,0,Rv,[],{required:[0,"required"]},null),la(1024,null,O_,function(t){return[t]},[Rv]),la(1024,null,j_,function(t){return[t]},[V_]),oa(66,671744,null,0,Yv,[[3,A_],[6,O_],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(68,16384,null,0,gv,[[4,q_]],null,null),oa(69,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(70,{"is-invalid":0}),oa(71,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{required:[0,"required"],type:[1,"type"]},null),la(2048,[[8,4]],Qv,null,[mk]),(t()(),yo(73,0,null,5,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(74,16384,[[11,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,["Password is required"])),(t()(),yo(76,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=0!=(r.hide=!r.hide)&&i),i},Yk,Ok)),oa(77,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(78,16384,[[14,4]],0,ib,[],null,null),(t()(),Oa(79,0,["",""])),(t()(),yo(80,0,null,6,2,"mat-hint",[["class","mat-hint"]],[[2,"mat-right",null],[1,"id",0],[1,"align",0]],null,null,null,null)),oa(81,16384,[[12,4]],0,eb,[],null,null),(t()(),Oa(-1,null,["Password"])),(t()(),yo(83,0,null,null,5,"div",[["class","form-group"],["color","primary"],["style","height: 100px; margin-top: 0px;"]],null,null,null,null,null)),(t()(),yo(84,0,null,null,2,"button",[["class","btn btn-primary loginButton"],["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(85,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],color:[1,"color"]},null),(t()(),Oa(-1,0,["Login"])),(t()(),go(16777216,null,null,1,null,Gk)),oa(88,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,7,0,n.loginForm),t(e,12,0,"standard","auto");var i=t(e,25,0,n.submitted&&n.f.username.errors);t(e,24,0,i),t(e,27,0,""),t(e,30,0,"username");var r=t(e,34,0,n.submitted&&n.f.username.errors);t(e,33,0,r),t(e,35,0,"","text"),t(e,41,0),t(e,48,0,"standard","auto");var o=t(e,61,0,n.submitted&&n.f.password.errors);t(e,60,0,o),t(e,63,0,""),t(e,66,0,"password");var a=t(e,70,0,n.submitted&&n.f.password.errors);t(e,69,0,a),t(e,71,0,"",n.hide?"password":"text"),t(e,77,0),t(e,85,0,n.loading,"primary"),t(e,88,0,n.loading)},function(t,e){var n=e.component;t(e,5,0,Go(e,9).ngClassUntouched,Go(e,9).ngClassTouched,Go(e,9).ngClassPristine,Go(e,9).ngClassDirty,Go(e,9).ngClassValid,Go(e,9).ngClassInvalid,Go(e,9).ngClassPending),t(e,11,1,["standard"==Go(e,12).appearance,"fill"==Go(e,12).appearance,"outline"==Go(e,12).appearance,"legacy"==Go(e,12).appearance,Go(e,12)._control.errorState,Go(e,12)._canLabelFloat,Go(e,12)._shouldLabelFloat(),Go(e,12)._hasFloatingLabel(),Go(e,12)._hideControlPlaceholder(),Go(e,12)._control.disabled,Go(e,12)._control.autofilled,Go(e,12)._control.focused,"accent"==Go(e,12).color,"warn"==Go(e,12).color,Go(e,12)._shouldForward("untouched"),Go(e,12)._shouldForward("touched"),Go(e,12)._shouldForward("pristine"),Go(e,12)._shouldForward("dirty"),Go(e,12)._shouldForward("valid"),Go(e,12)._shouldForward("invalid"),Go(e,12)._shouldForward("pending"),!Go(e,12)._animationsEnabled]),t(e,23,1,[Go(e,27).required?"":null,Go(e,32).ngClassUntouched,Go(e,32).ngClassTouched,Go(e,32).ngClassPristine,Go(e,32).ngClassDirty,Go(e,32).ngClassValid,Go(e,32).ngClassInvalid,Go(e,32).ngClassPending,Go(e,35)._isServer,Go(e,35).id,Go(e,35).placeholder,Go(e,35).disabled,Go(e,35).required,Go(e,35).readonly&&!Go(e,35)._isNativeSelect||null,Go(e,35)._ariaDescribedby||null,Go(e,35).errorState,Go(e,35).required.toString()]),t(e,37,0,Go(e,38).id),t(e,40,0,Go(e,41).inline,"primary"!==Go(e,41).color&&"accent"!==Go(e,41).color&&"warn"!==Go(e,41).color),t(e,43,0,"end"==Go(e,44).align,Go(e,44).id,null),t(e,47,1,["standard"==Go(e,48).appearance,"fill"==Go(e,48).appearance,"outline"==Go(e,48).appearance,"legacy"==Go(e,48).appearance,Go(e,48)._control.errorState,Go(e,48)._canLabelFloat,Go(e,48)._shouldLabelFloat(),Go(e,48)._hasFloatingLabel(),Go(e,48)._hideControlPlaceholder(),Go(e,48)._control.disabled,Go(e,48)._control.autofilled,Go(e,48)._control.focused,"accent"==Go(e,48).color,"warn"==Go(e,48).color,Go(e,48)._shouldForward("untouched"),Go(e,48)._shouldForward("touched"),Go(e,48)._shouldForward("pristine"),Go(e,48)._shouldForward("dirty"),Go(e,48)._shouldForward("valid"),Go(e,48)._shouldForward("invalid"),Go(e,48)._shouldForward("pending"),!Go(e,48)._animationsEnabled]),t(e,59,1,[Go(e,63).required?"":null,Go(e,68).ngClassUntouched,Go(e,68).ngClassTouched,Go(e,68).ngClassPristine,Go(e,68).ngClassDirty,Go(e,68).ngClassValid,Go(e,68).ngClassInvalid,Go(e,68).ngClassPending,Go(e,71)._isServer,Go(e,71).id,Go(e,71).placeholder,Go(e,71).disabled,Go(e,71).required,Go(e,71).readonly&&!Go(e,71)._isNativeSelect||null,Go(e,71)._ariaDescribedby||null,Go(e,71).errorState,Go(e,71).required.toString()]),t(e,73,0,Go(e,74).id),t(e,76,0,Go(e,77).inline,"primary"!==Go(e,77).color&&"accent"!==Go(e,77).color&&"warn"!==Go(e,77).color),t(e,79,0,n.hide?"visibility_off":"visibility"),t(e,80,0,"end"==Go(e,81).align,Go(e,81).id,null),t(e,84,0,Go(e,85).disabled||null,"NoopAnimations"===Go(e,85)._animationMode)})}function Xk(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-login",[],null,null,null,qk,Uk)),oa(1,114688,null,0,Wk,[Iv,xf,Am,Oh,d_],null,null)],function(t,e){t(e,1,0)},null)}var Kk=Ro("app-login",Wk,Xk,{},{},[]),Zk=Vr({encapsulation:2,styles:[".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:0;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}@media (-ms-high-contrast:active){.mat-option{margin:0 1px}.mat-option.mat-active{border:solid 1px currentColor;margin:0}}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}@media (-ms-high-contrast:active){.mat-option .mat-option-ripple{opacity:.5}}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}"],data:{}});function Jk(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-pseudo-checkbox",[["class","mat-option-pseudo-checkbox mat-pseudo-checkbox"]],[[2,"mat-pseudo-checkbox-indeterminate",null],[2,"mat-pseudo-checkbox-checked",null],[2,"mat-pseudo-checkbox-disabled",null],[2,"_mat-animation-noopable",null]],null,null,tM,$k)),oa(1,49152,null,0,Ed,[[2,Ow]],{state:[0,"state"],disabled:[1,"disabled"]},null)],function(t,e){var n=e.component;t(e,1,0,n.selected?"checked":"",n.disabled)},function(t,e){t(e,0,0,"indeterminate"===Go(e,1).state,"checked"===Go(e,1).state,Go(e,1).disabled,"NoopAnimations"===Go(e,1)._animationMode)})}function Qk(t){return Ia(2,[(t()(),go(16777216,null,null,1,null,Jk)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(2,0,null,null,1,"span",[["class","mat-option-text"]],null,null,null,null,null)),La(null,0),(t()(),yo(4,0,null,null,1,"div",[["class","mat-option-ripple mat-ripple"],["mat-ripple",""]],[[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(5,212992,null,0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{disabled:[0,"disabled"],trigger:[1,"trigger"]},null)],function(t,e){var n=e.component;t(e,1,0,n.multiple),t(e,5,0,n.disabled||n.disableRipple,n._getHostElement())},function(t,e){t(e,4,0,Go(e,5).unbounded)})}var $k=Vr({encapsulation:2,styles:[".mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0,0,.2,.1),background-color 90ms cubic-bezier(0,0,.2,.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:'';border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0,0,.2,.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}"],data:{}});function tM(t){return Ia(2,[],null,null)}function eM(){throw Error("Host already has a portal attached")}var nM=function(){function t(){}return t.prototype.attach=function(t){return null==t&&function(){throw Error("Attempting to attach a portal to a null PortalOutlet")}(),t.hasAttached()&&eM(),this._attachedHost=t,t.attach(this)},t.prototype.detach=function(){var t=this._attachedHost;null==t?function(){throw Error("Attempting to detach a portal that is not attached to a host")}():(this._attachedHost=null,t.detach())},Object.defineProperty(t.prototype,"isAttached",{get:function(){return null!=this._attachedHost},enumerable:!0,configurable:!0}),t.prototype.setAttachedHost=function(t){this._attachedHost=t},t}(),iM=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.component=e,o.viewContainerRef=n,o.injector=i,o.componentFactoryResolver=r,o}return r(e,t),e}(nM),rM=function(t){function e(e,n,i){var r=t.call(this)||this;return r.templateRef=e,r.viewContainerRef=n,r.context=i,r}return r(e,t),Object.defineProperty(e.prototype,"origin",{get:function(){return this.templateRef.elementRef},enumerable:!0,configurable:!0}),e.prototype.attach=function(e,n){return void 0===n&&(n=this.context),this.context=n,t.prototype.attach.call(this,e)},e.prototype.detach=function(){return this.context=void 0,t.prototype.detach.call(this)},e}(nM),oM=function(){function t(){this._isDisposed=!1}return t.prototype.hasAttached=function(){return!!this._attachedPortal},t.prototype.attach=function(t){return t||function(){throw Error("Must provide a portal to attach")}(),this.hasAttached()&&eM(),this._isDisposed&&function(){throw Error("This PortalOutlet has already been disposed")}(),t instanceof iM?(this._attachedPortal=t,this.attachComponentPortal(t)):t instanceof rM?(this._attachedPortal=t,this.attachTemplatePortal(t)):void function(){throw Error("Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.")}()},t.prototype.detach=function(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()},t.prototype.dispose=function(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0},t.prototype.setDisposeFn=function(t){this._disposeFn=t},t.prototype._invokeDisposeFn=function(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)},t}(),aM=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.outletElement=e,o._componentFactoryResolver=n,o._appRef=i,o._defaultInjector=r,o}return r(e,t),e.prototype.attachComponentPortal=function(t){var e,n=this,i=(t.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(t.component);return t.viewContainerRef?(e=t.viewContainerRef.createComponent(i,t.viewContainerRef.length,t.injector||t.viewContainerRef.injector),this.setDisposeFn(function(){return e.destroy()})):(e=i.create(t.injector||this._defaultInjector),this._appRef.attachView(e.hostView),this.setDisposeFn(function(){n._appRef.detachView(e.hostView),e.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(e)),e},e.prototype.attachTemplatePortal=function(t){var e=this,n=t.viewContainerRef,i=n.createEmbeddedView(t.templateRef,t.context);return i.detectChanges(),i.rootNodes.forEach(function(t){return e.outletElement.appendChild(t)}),this.setDisposeFn(function(){var t=n.indexOf(i);-1!==t&&n.remove(t)}),i},e.prototype.dispose=function(){t.prototype.dispose.call(this),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)},e.prototype._getComponentRootNode=function(t){return t.hostView.rootNodes[0]},e}(oM),lM=function(t){function e(e,n){var i=t.call(this)||this;return i._componentFactoryResolver=e,i._viewContainerRef=n,i._isInitialized=!1,i.attached=new kn,i}return r(e,t),Object.defineProperty(e.prototype,"portal",{get:function(){return this._attachedPortal},set:function(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&t.prototype.detach.call(this),e&&t.prototype.attach.call(this,e),this._attachedPortal=e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"attachedRef",{get:function(){return this._attachedRef},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){this._isInitialized=!0},e.prototype.ngOnDestroy=function(){t.prototype.dispose.call(this),this._attachedPortal=null,this._attachedRef=null},e.prototype.attachComponentPortal=function(e){e.setAttachedHost(this);var n=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,i=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),r=n.createComponent(i,n.length,e.injector||n.injector);return t.prototype.setDisposeFn.call(this,function(){return r.destroy()}),this._attachedPortal=e,this._attachedRef=r,this.attached.emit(r),r},e.prototype.attachTemplatePortal=function(e){var n=this;e.setAttachedHost(this);var i=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return t.prototype.setDisposeFn.call(this,function(){return n._viewContainerRef.clear()}),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i},e}(oM),sM=function(){return function(){}}(),uM=function(){function t(t,e){this._parentInjector=t,this._customTokens=e}return t.prototype.get=function(t,e){var n=this._customTokens.get(t);return void 0!==n?n:this._parentInjector.get(t,e)},t}();function cM(t,e){return function(n){return n.lift(new dM(t,e))}}var dM=function(){function t(t,e){this.compare=t,this.keySelector=e}return t.prototype.call=function(t,e){return e.subscribe(new hM(t,this.compare,this.keySelector))},t}(),hM=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.keySelector=i,r.hasKey=!1,"function"==typeof n&&(r.compare=n),r}return r(e,t),e.prototype.compare=function(t,e){return t===e},e.prototype._next=function(t){var e=t;if(this.keySelector&&(e=_(this.keySelector)(t))===g)return this.destination.error(g.e);var n=!1;if(this.hasKey){if((n=_(this.compare)(this.key,e))===g)return this.destination.error(g.e)}else this.hasKey=!0;!1===Boolean(n)&&(this.key=e,this.destination.next(t))},e}(D),pM=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.scheduler=e,i.work=n,i}return r(e,t),e.prototype.schedule=function(e,n){return void 0===n&&(n=0),n>0?t.prototype.schedule.call(this,e,n):(this.delay=n,this.state=e,this.scheduler.flush(this),this)},e.prototype.execute=function(e,n){return n>0||this.closed?t.prototype.execute.call(this,e,n):this._execute(e,n)},e.prototype.requestAsyncId=function(e,n,i){return void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0?t.prototype.requestAsyncId.call(this,e,n,i):e.flush(this)},e}(_c),fM=new(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e}(bc))(pM),mM=function(){function t(t,e,n){this.kind=t,this.value=e,this.error=n,this.hasValue="N"===t}return t.prototype.observe=function(t){switch(this.kind){case"N":return t.next&&t.next(this.value);case"E":return t.error&&t.error(this.error);case"C":return t.complete&&t.complete()}},t.prototype.do=function(t,e,n){switch(this.kind){case"N":return t&&t(this.value);case"E":return e&&e(this.error);case"C":return n&&n()}},t.prototype.accept=function(t,e,n){return t&&"function"==typeof t.next?this.observe(t):this.do(t,e,n)},t.prototype.toObservable=function(){switch(this.kind){case"N":return cc(this.value);case"E":return yk(this.error);case"C":return uc()}throw new Error("unexpected notification kind value")},t.createNext=function(e){return void 0!==e?new t("N",e):t.undefinedValueNotification},t.createError=function(e){return new t("E",void 0,e)},t.createComplete=function(){return t.completeNotification},t.completeNotification=new t("C"),t.undefinedValueNotification=new t("N",void 0),t}(),gM=function(){function t(t,e){void 0===e&&(e=0),this.scheduler=t,this.delay=e}return t.prototype.call=function(t,e){return e.subscribe(new yM(t,this.scheduler,this.delay))},t}(),yM=function(t){function e(e,n,i){void 0===i&&(i=0);var r=t.call(this,e)||this;return r.scheduler=n,r.delay=i,r}return r(e,t),e.dispatch=function(t){t.notification.observe(t.destination),this.unsubscribe()},e.prototype.scheduleMessage=function(t){this.destination.add(this.scheduler.schedule(e.dispatch,this.delay,new _M(t,this.destination)))},e.prototype._next=function(t){this.scheduleMessage(mM.createNext(t))},e.prototype._error=function(t){this.scheduleMessage(mM.createError(t)),this.unsubscribe()},e.prototype._complete=function(){this.scheduleMessage(mM.createComplete()),this.unsubscribe()},e}(D),_M=function(){return function(t,e){this.notification=t,this.destination=e}}(),vM=function(){return function(){}}();function bM(t){return t&&"function"==typeof t.connect}var xM=function(){function t(t,e,n){void 0===t&&(t=!1),void 0===n&&(n=!0);var i=this;this._multiple=t,this._emitChanges=n,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new H,this.onChange=this.changed,e&&e.length&&(t?e.forEach(function(t){return i._markSelected(t)}):this._markSelected(e[0]),this._selectedToEmit.length=0)}return Object.defineProperty(t.prototype,"selected",{get:function(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected},enumerable:!0,configurable:!0}),t.prototype.select=function(){for(var t=this,e=[],n=0;n1&&!this._multiple)throw Error("Cannot pass multiple values into SelectionModel with single-value mode.")},t}(),wM=function(){function t(){this._listeners=[]}return t.prototype.notify=function(t,e){for(var n=0,i=this._listeners;n0?e._scrolled.pipe(sk(t)).subscribe(n):e._scrolled.subscribe(n);return e._scrolledCount++,function(){i.unsubscribe(),e._scrolledCount--,e._scrolledCount||e._removeGlobalListener()}}):cc()},t.prototype.ngOnDestroy=function(){var t=this;this._removeGlobalListener(),this.scrollContainers.forEach(function(e,n){return t.deregister(n)}),this._scrolled.complete()},t.prototype.ancestorScrolled=function(t,e){var n=this.getAncestorScrollContainers(t);return this.scrolled(e).pipe(Cc(function(t){return!t||n.indexOf(t)>-1}))},t.prototype.getAncestorScrollContainers=function(t){var e=this,n=[];return this.scrollContainers.forEach(function(i,r){e._scrollableContainsElement(r,t)&&n.push(r)}),n},t.prototype._scrollableContainsElement=function(t,e){var n=e.nativeElement,i=t.getElementRef().nativeElement;do{if(n==i)return!0}while(n=n.parentElement);return!1},t.prototype._addGlobalListener=function(){var t=this;this._globalSubscription=this._ngZone.runOutsideAngular(function(){return pg(window.document,"scroll").subscribe(function(){return t._scrolled.next()})})},t.prototype._removeGlobalListener=function(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)},t.ngInjectableDef=St({factory:function(){return new t(ie(Mi),ie(nc))},token:t,providedIn:"root"}),t}(),MM=function(){return function(){}}(),SM=function(){function t(t,e){var n=this;this._platform=t,e.runOutsideAngular(function(){n._change=t.isBrowser?ht(pg(window,"resize"),pg(window,"orientationchange")):cc(),n._invalidateCache=n.change().subscribe(function(){return n._updateViewportSize()})})}return t.prototype.ngOnDestroy=function(){this._invalidateCache.unsubscribe()},t.prototype.getViewportSize=function(){this._viewportSize||this._updateViewportSize();var t={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),t},t.prototype.getViewportRect=function(){var t=this.getViewportScrollPosition(),e=this.getViewportSize(),n=e.width,i=e.height;return{top:t.top,left:t.left,bottom:t.top+i,right:t.left+n,height:i,width:n}},t.prototype.getViewportScrollPosition=function(){if(!this._platform.isBrowser)return{top:0,left:0};var t=document.documentElement,e=t.getBoundingClientRect();return{top:-e.top||document.body.scrollTop||window.scrollY||t.scrollTop||0,left:-e.left||document.body.scrollLeft||window.scrollX||t.scrollLeft||0}},t.prototype.change=function(t){return void 0===t&&(t=20),t>0?this._change.pipe(sk(t)):this._change},t.prototype._updateViewportSize=function(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}},t.ngInjectableDef=St({factory:function(){return new t(ie(nc),ie(Mi))},token:t,providedIn:"root"}),t}(),CM=function(){function t(t,e){this._viewportRuler=t,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=e}return t.prototype.attach=function(){},t.prototype.enable=function(){if(this._canBeEnabled()){var t=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=t.style.left||"",this._previousHTMLStyles.top=t.style.top||"",t.style.left=Qu(-this._previousScrollPosition.left),t.style.top=Qu(-this._previousScrollPosition.top),t.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}},t.prototype.disable=function(){if(this._isEnabled){var t=this._document.documentElement,e=t.style,n=this._document.body.style,i=e.scrollBehavior||"",r=n.scrollBehavior||"";this._isEnabled=!1,e.left=this._previousHTMLStyles.left,e.top=this._previousHTMLStyles.top,t.classList.remove("cdk-global-scrollblock"),e.scrollBehavior=n.scrollBehavior="auto",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),e.scrollBehavior=i,n.scrollBehavior=r}},t.prototype._canBeEnabled=function(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;var t=this._document.body,e=this._viewportRuler.getViewportSize();return t.scrollHeight>e.height||t.scrollWidth>e.width},t}();function LM(){return Error("Scroll strategy has already been attached.")}var DM=function(){function t(t,e,n,i){var r=this;this._scrollDispatcher=t,this._ngZone=e,this._viewportRuler=n,this._config=i,this._scrollSubscription=null,this._detach=function(){r.disable(),r._overlayRef.hasAttached()&&r._ngZone.run(function(){return r._overlayRef.detach()})}}return t.prototype.attach=function(t){if(this._overlayRef)throw LM();this._overlayRef=t},t.prototype.enable=function(){var t=this;if(!this._scrollSubscription){var e=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=e.subscribe(function(){var e=t._viewportRuler.getViewportScrollPosition().top;Math.abs(e-t._initialScrollPosition)>t._config.threshold?t._detach():t._overlayRef.updatePosition()})):this._scrollSubscription=e.subscribe(this._detach)}},t.prototype.disable=function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)},t}(),TM=function(){function t(){}return t.prototype.enable=function(){},t.prototype.disable=function(){},t.prototype.attach=function(){},t}();function EM(t,e){return e.some(function(e){return t.bottome.bottom||t.righte.right})}function AM(t,e){return e.some(function(e){return t.tope.bottom||t.lefte.right})}var PM=function(){function t(t,e,n,i){this._scrollDispatcher=t,this._viewportRuler=e,this._ngZone=n,this._config=i,this._scrollSubscription=null}return t.prototype.attach=function(t){if(this._overlayRef)throw LM();this._overlayRef=t},t.prototype.enable=function(){var t=this;this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(function(){if(t._overlayRef.updatePosition(),t._config&&t._config.autoClose){var e=t._overlayRef.overlayElement.getBoundingClientRect(),n=t._viewportRuler.getViewportSize(),i=n.width,r=n.height;EM(e,[{width:i,height:r,bottom:r,right:i,top:0,left:0}])&&(t.disable(),t._ngZone.run(function(){return t._overlayRef.detach()}))}}))},t.prototype.disable=function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)},t}(),OM=function(){function t(t,e,n,i){var r=this;this._scrollDispatcher=t,this._viewportRuler=e,this._ngZone=n,this.noop=function(){return new TM},this.close=function(t){return new DM(r._scrollDispatcher,r._ngZone,r._viewportRuler,t)},this.block=function(){return new CM(r._viewportRuler,r._document)},this.reposition=function(t){return new PM(r._scrollDispatcher,r._viewportRuler,r._ngZone,t)},this._document=i}return t.ngInjectableDef=St({factory:function(){return new t(ie(kM),ie(SM),ie(Mi),ie(As))},token:t,providedIn:"root"}),t}(),YM=function(){return function(t){var e=this;this.scrollStrategy=new TM,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,t&&Object.keys(t).forEach(function(n){void 0!==t[n]&&(e[n]=t[n])})}}(),RM=function(){return function(t,e,n,i,r){this.offsetX=n,this.offsetY=i,this.panelClass=r,this.originX=t.originX,this.originY=t.originY,this.overlayX=e.overlayX,this.overlayY=e.overlayY}}(),IM=function(){return function(t,e){this.connectionPair=t,this.scrollableViewProperties=e}}();function FM(t,e){if("top"!==e&&"bottom"!==e&&"center"!==e)throw Error("ConnectedPosition: Invalid "+t+' "'+e+'". Expected "top", "bottom" or "center".')}function zM(t,e){if("start"!==e&&"end"!==e&&"center"!==e)throw Error("ConnectedPosition: Invalid "+t+' "'+e+'". Expected "start", "end" or "center".')}var jM=function(){function t(t){var e=this;this._attachedOverlays=[],this._keydownListener=function(t){for(var n=e._attachedOverlays,i=n.length-1;i>-1;i--)if(n[i]._keydownEventSubscriptions>0){n[i]._keydownEvents.next(t);break}},this._document=t}return t.prototype.ngOnDestroy=function(){this._detach()},t.prototype.add=function(t){this.remove(t),this._isAttached||(this._document.body.addEventListener("keydown",this._keydownListener,!0),this._isAttached=!0),this._attachedOverlays.push(t)},t.prototype.remove=function(t){var e=this._attachedOverlays.indexOf(t);e>-1&&this._attachedOverlays.splice(e,1),0===this._attachedOverlays.length&&this._detach()},t.prototype._detach=function(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener,!0),this._isAttached=!1)},t.ngInjectableDef=St({factory:function(){return new t(ie(As))},token:t,providedIn:"root"}),t}(),HM=function(){function t(t){this._document=t}return t.prototype.ngOnDestroy=function(){this._containerElement&&this._containerElement.parentNode&&this._containerElement.parentNode.removeChild(this._containerElement)},t.prototype.getContainerElement=function(){return this._containerElement||this._createContainer(),this._containerElement},t.prototype._createContainer=function(){var t=this._document.createElement("div");t.classList.add("cdk-overlay-container"),this._document.body.appendChild(t),this._containerElement=t},t.ngInjectableDef=St({factory:function(){return new t(ie(As))},token:t,providedIn:"root"}),t}(),NM=function(){function t(t,e,n,i,r,o,a,l){var s=this;this._portalOutlet=t,this._host=e,this._pane=n,this._config=i,this._ngZone=r,this._keyboardDispatcher=o,this._document=a,this._location=l,this._backdropElement=null,this._backdropClick=new H,this._attachments=new H,this._detachments=new H,this._locationChanges=x.EMPTY,this._keydownEventsObservable=new Y(function(t){var e=s._keydownEvents.subscribe(t);return s._keydownEventSubscriptions++,function(){e.unsubscribe(),s._keydownEventSubscriptions--}}),this._keydownEvents=new H,this._keydownEventSubscriptions=0,i.scrollStrategy&&i.scrollStrategy.attach(this),this._positionStrategy=i.positionStrategy}return Object.defineProperty(t.prototype,"overlayElement",{get:function(){return this._pane},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"backdropElement",{get:function(){return this._backdropElement},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hostElement",{get:function(){return this._host},enumerable:!0,configurable:!0}),t.prototype.attach=function(t){var e=this,n=this._portalOutlet.attach(t);return this._positionStrategy&&this._positionStrategy.attach(this),!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._config.scrollStrategy&&this._config.scrollStrategy.enable(),this._ngZone.onStable.asObservable().pipe(Ac(1)).subscribe(function(){e.hasAttached()&&e.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&this._location&&(this._locationChanges=this._location.subscribe(function(){return e.dispose()})),n},t.prototype.detach=function(){if(this.hasAttached()){this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._config.scrollStrategy&&this._config.scrollStrategy.disable();var t=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),t}},t.prototype.dispose=function(){var t=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._config.scrollStrategy&&this._config.scrollStrategy.disable(),this.detachBackdrop(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._host&&this._host.parentNode&&(this._host.parentNode.removeChild(this._host),this._host=null),this._previousHostParent=this._pane=null,t&&this._detachments.next(),this._detachments.complete()},t.prototype.hasAttached=function(){return this._portalOutlet.hasAttached()},t.prototype.backdropClick=function(){return this._backdropClick.asObservable()},t.prototype.attachments=function(){return this._attachments.asObservable()},t.prototype.detachments=function(){return this._detachments.asObservable()},t.prototype.keydownEvents=function(){return this._keydownEventsObservable},t.prototype.getConfig=function(){return this._config},t.prototype.updatePosition=function(){this._positionStrategy&&this._positionStrategy.apply()},t.prototype.updatePositionStrategy=function(t){t!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=t,this.hasAttached()&&(t.attach(this),this.updatePosition()))},t.prototype.updateSize=function(t){this._config=o({},this._config,t),this._updateElementSize()},t.prototype.setDirection=function(t){this._config=o({},this._config,{direction:t}),this._updateElementDirection()},t.prototype.addPanelClass=function(t){this._pane&&this._toggleClasses(this._pane,t,!0)},t.prototype.removePanelClass=function(t){this._pane&&this._toggleClasses(this._pane,t,!1)},t.prototype.getDirection=function(){var t=this._config.direction;return t?"string"==typeof t?t:t.value:"ltr"},t.prototype._updateElementDirection=function(){this._host.setAttribute("dir",this.getDirection())},t.prototype._updateElementSize=function(){var t=this._pane.style;t.width=Qu(this._config.width),t.height=Qu(this._config.height),t.minWidth=Qu(this._config.minWidth),t.minHeight=Qu(this._config.minHeight),t.maxWidth=Qu(this._config.maxWidth),t.maxHeight=Qu(this._config.maxHeight)},t.prototype._togglePointerEvents=function(t){this._pane.style.pointerEvents=t?"auto":"none"},t.prototype._attachBackdrop=function(){var t=this;this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",function(e){return t._backdropClick.next(e)}),"undefined"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(function(){requestAnimationFrame(function(){t._backdropElement&&t._backdropElement.classList.add("cdk-overlay-backdrop-showing")})}):this._backdropElement.classList.add("cdk-overlay-backdrop-showing")},t.prototype._updateStackingOrder=function(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)},t.prototype.detachBackdrop=function(){var t=this,e=this._backdropElement;if(e){var n,i=function(){e&&e.parentNode&&e.parentNode.removeChild(e),t._backdropElement==e&&(t._backdropElement=null),t._config.backdropClass&&t._toggleClasses(e,t._config.backdropClass,!1),clearTimeout(n)};e.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(function(){e.addEventListener("transitionend",i)}),e.style.pointerEvents="none",n=this._ngZone.runOutsideAngular(function(){return setTimeout(i,500)})}},t.prototype._toggleClasses=function(t,e,n){var i=t.classList;Ju(e).forEach(function(t){n?i.add(t):i.remove(t)})},t.prototype._detachContentWhenStable=function(){var t=this;this._ngZone.runOutsideAngular(function(){var e=t._ngZone.onStable.asObservable().pipe(fg(ht(t._attachments,t._detachments))).subscribe(function(){t._pane&&t._host&&0!==t._pane.children.length||(t._pane&&t._config.panelClass&&t._toggleClasses(t._pane,t._config.panelClass,!1),t._host&&t._host.parentElement&&(t._previousHostParent=t._host.parentElement,t._previousHostParent.removeChild(t._host)),e.unsubscribe())})})},t}(),VM=function(){function t(t,e,n,i,r){var o=this;this._viewportRuler=e,this._document=n,this._platform=i,this._overlayContainer=r,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this.scrollables=[],this._preferredPositions=[],this._positionChanges=new H,this._resizeSubscription=x.EMPTY,this._offsetX=0,this._offsetY=0,this._positionChangeSubscriptions=0,this._appliedPanelClasses=[],this.positionChanges=new Y(function(t){var e=o._positionChanges.subscribe(t);return o._positionChangeSubscriptions++,function(){e.unsubscribe(),o._positionChangeSubscriptions--}}),this.setOrigin(t)}return Object.defineProperty(t.prototype,"positions",{get:function(){return this._preferredPositions},enumerable:!0,configurable:!0}),t.prototype.attach=function(t){var e=this;if(this._overlayRef&&t!==this._overlayRef)throw Error("This position strategy is already attached to an overlay");this._validatePositions(),t.hostElement.classList.add("cdk-overlay-connected-position-bounding-box"),this._overlayRef=t,this._boundingBox=t.hostElement,this._pane=t.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(function(){e._isInitialRender=!0,e.apply()})},t.prototype.apply=function(){if(!(this._isDisposed||this._platform&&!this._platform.isBrowser))if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)this.reapplyLastPosition();else{this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect();for(var t,e=this._originRect,n=this._overlayRect,i=this._viewportRect,r=[],o=0,a=this._preferredPositions;oh&&(h=g,d=m)}return this._isPushed=!1,void this._applyPosition(d.position,d.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(t.position,t.originPoint);this._applyPosition(t.position,t.originPoint)}},t.prototype.detach=function(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()},t.prototype.dispose=function(){this._isDisposed||(this._boundingBox&&BM(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove("cdk-overlay-connected-position-bounding-box"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)},t.prototype.reapplyLastPosition=function(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();var t=this._lastPosition||this._preferredPositions[0],e=this._getOriginPoint(this._originRect,t);this._applyPosition(t,e)}},t.prototype.withScrollableContainers=function(t){return this.scrollables=t,this},t.prototype.withPositions=function(t){return this._preferredPositions=t,-1===t.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this},t.prototype.withViewportMargin=function(t){return this._viewportMargin=t,this},t.prototype.withFlexibleDimensions=function(t){return void 0===t&&(t=!0),this._hasFlexibleDimensions=t,this},t.prototype.withGrowAfterOpen=function(t){return void 0===t&&(t=!0),this._growAfterOpen=t,this},t.prototype.withPush=function(t){return void 0===t&&(t=!0),this._canPush=t,this},t.prototype.withLockedPosition=function(t){return void 0===t&&(t=!0),this._positionLocked=t,this},t.prototype.setOrigin=function(t){return this._origin=t,this},t.prototype.withDefaultOffsetX=function(t){return this._offsetX=t,this},t.prototype.withDefaultOffsetY=function(t){return this._offsetY=t,this},t.prototype.withTransformOriginOn=function(t){return this._transformOriginSelector=t,this},t.prototype._getOriginPoint=function(t,e){var n;if("center"==e.originX)n=t.left+t.width/2;else{var i=this._isRtl()?t.right:t.left,r=this._isRtl()?t.left:t.right;n="start"==e.originX?i:r}return{x:n,y:"center"==e.originY?t.top+t.height/2:"top"==e.originY?t.top:t.bottom}},t.prototype._getOverlayPoint=function(t,e,n){var i;return i="center"==n.overlayX?-e.width/2:"start"===n.overlayX?this._isRtl()?-e.width:0:this._isRtl()?0:-e.width,{x:t.x+i,y:t.y+("center"==n.overlayY?-e.height/2:"top"==n.overlayY?0:-e.height)}},t.prototype._getOverlayFit=function(t,e,n,i){var r=t.x,o=t.y,a=this._getOffset(i,"x"),l=this._getOffset(i,"y");a&&(r+=a),l&&(o+=l);var s=0-o,u=o+e.height-n.height,c=this._subtractOverflows(e.width,0-r,r+e.width-n.width),d=this._subtractOverflows(e.height,s,u),h=c*d;return{visibleArea:h,isCompletelyWithinViewport:e.width*e.height===h,fitsInViewportVertically:d===e.height,fitsInViewportHorizontally:c==e.width}},t.prototype._canFitWithFlexibleDimensions=function(t,e,n){if(this._hasFlexibleDimensions){var i=n.bottom-e.y,r=n.right-e.x,o=this._overlayRef.getConfig().minHeight,a=this._overlayRef.getConfig().minWidth;return(t.fitsInViewportVertically||null!=o&&o<=i)&&(t.fitsInViewportHorizontally||null!=a&&a<=r)}},t.prototype._pushOverlayOnScreen=function(t,e,n){if(this._previousPushAmount&&this._positionLocked)return{x:t.x+this._previousPushAmount.x,y:t.y+this._previousPushAmount.y};var i,r,o=this._viewportRect,a=Math.max(t.x+e.width-o.right,0),l=Math.max(t.y+e.height-o.bottom,0),s=Math.max(o.top-n.top-t.y,0),u=Math.max(o.left-n.left-t.x,0);return this._previousPushAmount={x:i=e.width<=o.width?u||-a:t.x0){var n=this._getScrollVisibility(),i=new IM(t,n);this._positionChanges.next(i)}this._isInitialRender=!1},t.prototype._setTransformOrigin=function(t){if(this._transformOriginSelector){var e,n=this._boundingBox.querySelectorAll(this._transformOriginSelector),i=t.overlayY;e="center"===t.overlayX?"center":this._isRtl()?"start"===t.overlayX?"right":"left":"start"===t.overlayX?"left":"right";for(var r=0;rd&&!this._isInitialRender&&!this._growAfterOpen&&(i=t.y-d/2)}if("end"===e.overlayX&&!u||"start"===e.overlayX&&u)l=s.right-t.x+this._viewportMargin,o=t.x-s.left;else if("start"===e.overlayX&&!u||"end"===e.overlayX&&u)a=t.x,o=s.right-t.x;else{c=Math.min(s.right-t.x+s.left,t.x);var h=this._lastBoundingBoxSize.width;a=t.x-c,(o=2*c)>h&&!this._isInitialRender&&!this._growAfterOpen&&(a=t.x-h/2)}return{top:i,left:a,bottom:r,right:l,width:o,height:n}},t.prototype._setBoundingBoxStyles=function(t,e){var n=this._calculateBoundingBoxRect(t,e);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));var i={};if(this._hasExactPosition())i.top=i.left="0",i.bottom=i.right="",i.width=i.height="100%";else{var r=this._overlayRef.getConfig().maxHeight,o=this._overlayRef.getConfig().maxWidth;i.height=Qu(n.height),i.top=Qu(n.top),i.bottom=Qu(n.bottom),i.width=Qu(n.width),i.left=Qu(n.left),i.right=Qu(n.right),i.alignItems="center"===e.overlayX?"center":"end"===e.overlayX?"flex-end":"flex-start",i.justifyContent="center"===e.overlayY?"center":"bottom"===e.overlayY?"flex-end":"flex-start",r&&(i.maxHeight=Qu(r)),o&&(i.maxWidth=Qu(o))}this._lastBoundingBoxSize=n,BM(this._boundingBox.style,i)},t.prototype._resetBoundingBoxStyles=function(){BM(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})},t.prototype._resetOverlayElementStyles=function(){BM(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})},t.prototype._setOverlayElementStyles=function(t,e){var n={};if(this._hasExactPosition()){var i=this._viewportRuler.getViewportScrollPosition();BM(n,this._getExactOverlayY(e,t,i)),BM(n,this._getExactOverlayX(e,t,i))}else n.position="static";var r="",o=this._getOffset(e,"x"),a=this._getOffset(e,"y");o&&(r+="translateX("+o+"px) "),a&&(r+="translateY("+a+"px)"),n.transform=r.trim(),this._hasFlexibleDimensions&&this._overlayRef.getConfig().maxHeight&&(n.maxHeight=""),this._hasFlexibleDimensions&&this._overlayRef.getConfig().maxWidth&&(n.maxWidth=""),BM(this._pane.style,n)},t.prototype._getExactOverlayY=function(t,e,n){var i={top:null,bottom:null},r=this._getOverlayPoint(e,this._overlayRect,t);this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n));var o=this._overlayContainer?this._overlayContainer.getContainerElement().getBoundingClientRect().top:0;return r.y-=o,"bottom"===t.overlayY?i.bottom=this._document.documentElement.clientHeight-(r.y+this._overlayRect.height)+"px":i.top=Qu(r.y),i},t.prototype._getExactOverlayX=function(t,e,n){var i={left:null,right:null},r=this._getOverlayPoint(e,this._overlayRect,t);return this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n)),"right"==(this._isRtl()?"end"===t.overlayX?"left":"right":"end"===t.overlayX?"right":"left")?i.right=this._document.documentElement.clientWidth-(r.x+this._overlayRect.width)+"px":i.left=Qu(r.x),i},t.prototype._getScrollVisibility=function(){var t=this._getOriginRect(),e=this._pane.getBoundingClientRect(),n=this.scrollables.map(function(t){return t.getElementRef().nativeElement.getBoundingClientRect()});return{isOriginClipped:AM(t,n),isOriginOutsideView:EM(t,n),isOverlayClipped:AM(e,n),isOverlayOutsideView:EM(e,n)}},t.prototype._subtractOverflows=function(t){for(var e=[],n=1;n=0)&&(!this.maxDate||this._dateAdapter.compareDate(t,this.maxDate)<=0)},t.prototype._getDateInCurrentMonth=function(t){return t&&this._hasSameMonthAndYear(t,this.activeDate)?this._dateAdapter.getDate(t):null},t.prototype._hasSameMonthAndYear=function(t,e){return!(!t||!e||this._dateAdapter.getMonth(t)!=this._dateAdapter.getMonth(e)||this._dateAdapter.getYear(t)!=this._dateAdapter.getYear(e))},t.prototype._getValidDateOrNull=function(t){return this._dateAdapter.isDateInstance(t)&&this._dateAdapter.isValid(t)?t:null},t.prototype._isRtl=function(){return this._dir&&"rtl"===this._dir.value},t}(),aS=function(){function t(t,e,n){if(this._changeDetectorRef=t,this._dateAdapter=e,this._dir=n,this.selectedChange=new kn,this.yearSelected=new kn,this.activeDateChange=new kn,!this._dateAdapter)throw eS("DateAdapter");this._activeDate=this._dateAdapter.today()}return Object.defineProperty(t.prototype,"activeDate",{get:function(){return this._activeDate},set:function(t){var e=this._activeDate,n=this._getValidDateOrNull(this._dateAdapter.deserialize(t))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(n,this.minDate,this.maxDate),Math.floor(this._dateAdapter.getYear(e)/24)!=Math.floor(this._dateAdapter.getYear(this._activeDate)/24)&&this._init()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"selected",{get:function(){return this._selected},set:function(t){this._selected=this._getValidDateOrNull(this._dateAdapter.deserialize(t)),this._selectedYear=this._selected&&this._dateAdapter.getYear(this._selected)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"minDate",{get:function(){return this._minDate},set:function(t){this._minDate=this._getValidDateOrNull(this._dateAdapter.deserialize(t))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"maxDate",{get:function(){return this._maxDate},set:function(t){this._maxDate=this._getValidDateOrNull(this._dateAdapter.deserialize(t))},enumerable:!0,configurable:!0}),t.prototype.ngAfterContentInit=function(){this._init()},t.prototype._init=function(){var t=this;this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());var e=this._dateAdapter.getYear(this._activeDate),n=e%24;this._years=[];for(var i=0,r=[];i<24;i++)r.push(e-n+i),4==r.length&&(this._years.push(r.map(function(e){return t._createCellForYear(e)})),r=[]);this._changeDetectorRef.markForCheck()},t.prototype._yearSelected=function(t){this.yearSelected.emit(this._dateAdapter.createDate(t,0,1));var e=this._dateAdapter.getMonth(this.activeDate),n=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(t,e,1));this.selectedChange.emit(this._dateAdapter.createDate(t,e,Math.min(this._dateAdapter.getDate(this.activeDate),n)))},t.prototype._handleCalendarBodyKeydown=function(t){var e=this._activeDate,n=this._isRtl();switch(t.keyCode){case 37:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,n?1:-1);break;case 39:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,n?-1:1);break;case 38:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case 40:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case 36:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-this._dateAdapter.getYear(this._activeDate)%24);break;case 35:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-this._dateAdapter.getYear(this._activeDate)%24-1);break;case 33:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,t.altKey?-240:-24);break;case 34:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,t.altKey?240:24);break;case 13:case 32:this._yearSelected(this._dateAdapter.getYear(this._activeDate));break;default:return}this._dateAdapter.compareDate(e,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),t.preventDefault()},t.prototype._getActiveCell=function(){return this._dateAdapter.getYear(this.activeDate)%24},t.prototype._focusActiveCell=function(){this._matCalendarBody._focusActiveCell()},t.prototype._createCellForYear=function(t){var e=this._dateAdapter.getYearName(this._dateAdapter.createDate(t,0,1));return new iS(t,e,e,this._shouldEnableYear(t))},t.prototype._shouldEnableYear=function(t){if(null==t||this.maxDate&&t>this._dateAdapter.getYear(this.maxDate)||this.minDate&&tn||t===n&&e>i}return!1},t.prototype._isYearAndMonthBeforeMinDate=function(t,e){if(this.minDate){var n=this._dateAdapter.getYear(this.minDate),i=this._dateAdapter.getMonth(this.minDate);return t=0?null:{matDatepickerMax:{max:r.max,actual:e}}},this._filterValidator=function(t){var e=r._getValidDateOrNull(r._dateAdapter.deserialize(t.value));return r._dateFilter&&e&&!r._dateFilter(e)?{matDatepickerFilter:!0}:null},this._validator=R_.compose([this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]),this._lastValueValid=!1,!this._dateAdapter)throw eS("DateAdapter");if(!this._dateFormats)throw eS("MAT_DATE_FORMATS");this._localeSubscription=e.localeChanges.subscribe(function(){r.value=r.value})}return Object.defineProperty(t.prototype,"matDatepicker",{set:function(t){var e=this;t&&(this._datepicker=t,this._datepicker._registerInput(this),this._datepickerSubscription.unsubscribe(),this._datepickerSubscription=this._datepicker._selectedChanged.subscribe(function(t){e.value=t,e._cvaOnChange(t),e._onTouched(),e.dateInput.emit(new mS(e,e._elementRef.nativeElement)),e.dateChange.emit(new mS(e,e._elementRef.nativeElement))}))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"matDatepickerFilter",{set:function(t){this._dateFilter=t,this._validatorOnChange()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this._value},set:function(t){t=this._dateAdapter.deserialize(t),this._lastValueValid=!t||this._dateAdapter.isValid(t),t=this._getValidDateOrNull(t);var e=this.value;this._value=t,this._formatValue(t),this._dateAdapter.sameDate(e,t)||this._valueChange.emit(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"min",{get:function(){return this._min},set:function(t){this._min=this._getValidDateOrNull(this._dateAdapter.deserialize(t)),this._validatorOnChange()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"max",{get:function(){return this._max},set:function(t){this._max=this._getValidDateOrNull(this._dateAdapter.deserialize(t)),this._validatorOnChange()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return!!this._disabled},set:function(t){var e=Xu(t),n=this._elementRef.nativeElement;this._disabled!==e&&(this._disabled=e,this._disabledChange.emit(e)),e&&n.blur&&n.blur()},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){this._datepickerSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this._valueChange.complete(),this._disabledChange.complete()},t.prototype.registerOnValidatorChange=function(t){this._validatorOnChange=t},t.prototype.validate=function(t){return this._validator?this._validator(t):null},t.prototype.getPopupConnectionElementRef=function(){return this.getConnectedOverlayOrigin()},t.prototype.getConnectedOverlayOrigin=function(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef},t.prototype.writeValue=function(t){this.value=t},t.prototype.registerOnChange=function(t){this._cvaOnChange=t},t.prototype.registerOnTouched=function(t){this._onTouched=t},t.prototype.setDisabledState=function(t){this.disabled=t},t.prototype._onKeydown=function(t){this._datepicker&&t.altKey&&40===t.keyCode&&!this._elementRef.nativeElement.readOnly&&(this._datepicker.open(),t.preventDefault())},t.prototype._onInput=function(t){var e=this._dateAdapter.parse(t,this._dateFormats.parse.dateInput);this._lastValueValid=!e||this._dateAdapter.isValid(e),e=this._getValidDateOrNull(e),this._dateAdapter.sameDate(e,this._value)?this._validatorOnChange():(this._value=e,this._cvaOnChange(e),this._valueChange.emit(e),this.dateInput.emit(new mS(this,this._elementRef.nativeElement)))},t.prototype._onChange=function(){this.dateChange.emit(new mS(this,this._elementRef.nativeElement))},t.prototype._getThemePalette=function(){return this._formField?this._formField.color:void 0},t.prototype._onBlur=function(){this.value&&this._formatValue(this.value),this._onTouched()},t.prototype._formatValue=function(t){this._elementRef.nativeElement.value=t?this._dateAdapter.format(t,this._dateFormats.display.dateInput):""},t.prototype._getValidDateOrNull=function(t){return this._dateAdapter.isDateInstance(t)&&this._dateAdapter.isValid(t)?t:null},t}(),yS=function(){function t(t,e,n){this._intl=t,this._changeDetectorRef=e,this._stateChanges=x.EMPTY;var i=Number(n);this.tabIndex=i||0===i?i:null}return Object.defineProperty(t.prototype,"disabled",{get:function(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled},set:function(t){this._disabled=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(t){t.datepicker&&this._watchStateChanges()},t.prototype.ngOnDestroy=function(){this._stateChanges.unsubscribe()},t.prototype.ngAfterContentInit=function(){this._watchStateChanges()},t.prototype._open=function(t){this.datepicker&&!this.disabled&&(this.datepicker.open(),t.stopPropagation())},t.prototype._watchStateChanges=function(){var t=this,e=this.datepicker?this.datepicker._disabledChange:cc(),n=this.datepicker&&this.datepicker._datepickerInput?this.datepicker._datepickerInput._disabledChange:cc(),i=this.datepicker?ht(this.datepicker.openedStream,this.datepicker.closedStream):cc();this._stateChanges.unsubscribe(),this._stateChanges=ht(this._intl.changes,e,n,i).subscribe(function(){return t._changeDetectorRef.markForCheck()})},t}(),_S=function(){return function(){}}(),vS=function(){return function(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.maxWidth="80vw",this.data=null,this.ariaDescribedBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0}}();function bS(){throw Error("Attempting to attach dialog content after content is already attached")}var xS=function(t){function e(e,n,i,r,o){var a=t.call(this)||this;return a._elementRef=e,a._focusTrapFactory=n,a._changeDetectorRef=i,a._document=r,a._config=o,a._elementFocusedBeforeDialogWasOpened=null,a._state="enter",a._animationStateChanged=new kn,a._ariaLabelledBy=null,a}return r(e,t),e.prototype.attachComponentPortal=function(t){return this._portalOutlet.hasAttached()&&bS(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(t)},e.prototype.attachTemplatePortal=function(t){return this._portalOutlet.hasAttached()&&bS(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(t)},e.prototype._trapFocus=function(){this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement)),this._config.autoFocus&&this._focusTrap.focusInitialElementWhenReady()},e.prototype._restoreFocus=function(){var t=this._elementFocusedBeforeDialogWasOpened;this._config.restoreFocus&&t&&"function"==typeof t.focus&&t.focus(),this._focusTrap&&this._focusTrap.destroy()},e.prototype._savePreviouslyFocusedElement=function(){var t=this;this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(function(){return t._elementRef.nativeElement.focus()}))},e.prototype._onAnimationDone=function(t){"enter"===t.toState?this._trapFocus():"exit"===t.toState&&this._restoreFocus(),this._animationStateChanged.emit(t)},e.prototype._onAnimationStart=function(t){this._animationStateChanged.emit(t)},e.prototype._startExitAnimation=function(){this._state="exit",this._changeDetectorRef.markForCheck()},e}(oM),wS=0,kS=function(){function t(t,e,n,i){void 0===i&&(i="mat-dialog-"+wS++);var r=this;this._overlayRef=t,this._containerInstance=e,this.id=i,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new H,this._afterClosed=new H,this._beforeClosed=new H,e._id=i,e._animationStateChanged.pipe(Cc(function(t){return"done"===t.phaseName&&"enter"===t.toState}),Ac(1)).subscribe(function(){r._afterOpened.next(),r._afterOpened.complete()}),e._animationStateChanged.pipe(Cc(function(t){return"done"===t.phaseName&&"exit"===t.toState}),Ac(1)).subscribe(function(){return r._overlayRef.dispose()}),t.detachments().subscribe(function(){r._beforeClosed.next(r._result),r._beforeClosed.complete(),r._afterClosed.next(r._result),r._afterClosed.complete(),r.componentInstance=null,r._overlayRef.dispose()}),t.keydownEvents().pipe(Cc(function(t){return t.keyCode===pc&&!r.disableClose})).subscribe(function(){return r.close()})}return t.prototype.close=function(t){var e=this;this._result=t,this._containerInstance._animationStateChanged.pipe(Cc(function(t){return"start"===t.phaseName}),Ac(1)).subscribe(function(){e._beforeClosed.next(t),e._beforeClosed.complete(),e._overlayRef.detachBackdrop()}),this._containerInstance._startExitAnimation()},t.prototype.afterOpened=function(){return this._afterOpened.asObservable()},t.prototype.afterClosed=function(){return this._afterClosed.asObservable()},t.prototype.beforeClosed=function(){return this._beforeClosed.asObservable()},t.prototype.backdropClick=function(){return this._overlayRef.backdropClick()},t.prototype.keydownEvents=function(){return this._overlayRef.keydownEvents()},t.prototype.updatePosition=function(t){var e=this._getPositionStrategy();return t&&(t.left||t.right)?t.left?e.left(t.left):e.right(t.right):e.centerHorizontally(),t&&(t.top||t.bottom)?t.top?e.top(t.top):e.bottom(t.bottom):e.centerVertically(),this._overlayRef.updatePosition(),this},t.prototype.updateSize=function(t,e){return void 0===t&&(t=""),void 0===e&&(e=""),this._getPositionStrategy().width(t).height(e),this._overlayRef.updatePosition(),this},t.prototype.addPanelClass=function(t){return this._overlayRef.addPanelClass(t),this},t.prototype.removePanelClass=function(t){return this._overlayRef.removePanelClass(t),this},t.prototype.afterOpen=function(){return this.afterOpened()},t.prototype.beforeClose=function(){return this.beforeClosed()},t.prototype._getPositionStrategy=function(){return this._overlayRef.getConfig().positionStrategy},t}(),MS=new Lt("MatDialogData"),SS=new Lt("mat-dialog-default-options"),CS=new Lt("mat-dialog-scroll-strategy");function LS(t){return function(){return t.scrollStrategies.block()}}var DS=function(){function t(t,e,n,i,r,o,a){var l=this;this._overlay=t,this._injector=e,this._location=n,this._defaultOptions=i,this._parentDialog=o,this._overlayContainer=a,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new H,this._afterOpenedAtThisLevel=new H,this._ariaHiddenElements=new Map,this.afterAllClosed=Nh(function(){return l.openDialogs.length?l._afterAllClosed:l._afterAllClosed.pipe(hc(void 0))}),this._scrollStrategy=r}return Object.defineProperty(t.prototype,"openDialogs",{get:function(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"afterOpened",{get:function(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"afterOpen",{get:function(){return this.afterOpened},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"_afterAllClosed",{get:function(){var t=this._parentDialog;return t?t._afterAllClosed:this._afterAllClosedAtThisLevel},enumerable:!0,configurable:!0}),t.prototype.open=function(t,e){var n=this;if((e=function(t,e){return o({},e,t)}(e,this._defaultOptions||new vS)).id&&this.getDialogById(e.id))throw Error('Dialog with id "'+e.id+'" exists already. The dialog id must be unique.');var i=this._createOverlay(e),r=this._attachDialogContainer(i,e),a=this._attachDialogContent(t,r,i,e);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(a),a.afterClosed().subscribe(function(){return n._removeOpenDialog(a)}),this.afterOpened.next(a),a},t.prototype.closeAll=function(){this._closeDialogs(this.openDialogs)},t.prototype.getDialogById=function(t){return this.openDialogs.find(function(e){return e.id===t})},t.prototype.ngOnDestroy=function(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()},t.prototype._createOverlay=function(t){var e=this._getOverlayConfig(t);return this._overlay.create(e)},t.prototype._getOverlayConfig=function(t){var e=new YM({positionStrategy:this._overlay.position().global(),scrollStrategy:t.scrollStrategy||this._scrollStrategy(),panelClass:t.panelClass,hasBackdrop:t.hasBackdrop,direction:t.direction,minWidth:t.minWidth,minHeight:t.minHeight,maxWidth:t.maxWidth,maxHeight:t.maxHeight,disposeOnNavigation:t.closeOnNavigation});return t.backdropClass&&(e.backdropClass=t.backdropClass),e},t.prototype._attachDialogContainer=function(t,e){var n=new uM(e&&e.viewContainerRef&&e.viewContainerRef.injector||this._injector,new WeakMap([[vS,e]])),i=new iM(xS,e.viewContainerRef,n);return t.attach(i).instance},t.prototype._attachDialogContent=function(t,e,n,i){var r=new kS(n,e,this._location,i.id);if(i.hasBackdrop&&n.backdropClick().subscribe(function(){r.disableClose||r.close()}),t instanceof Mn)e.attachTemplatePortal(new rM(t,null,{$implicit:i.data,dialogRef:r}));else{var o=this._createInjector(i,r,e),a=e.attachComponentPortal(new iM(t,void 0,o));r.componentInstance=a.instance}return r.updateSize(i.width,i.height).updatePosition(i.position),r},t.prototype._createInjector=function(t,e,n){var i=t&&t.viewContainerRef&&t.viewContainerRef.injector,r=new WeakMap([[xS,n],[MS,t.data],[kS,e]]);return!t.direction||i&&i.get(Zy,null)||r.set(Zy,{value:t.direction,change:cc()}),new uM(i||this._injector,r)},t.prototype._removeOpenDialog=function(t){var e=this.openDialogs.indexOf(t);e>-1&&(this.openDialogs.splice(e,1),this.openDialogs.length||(this._ariaHiddenElements.forEach(function(t,e){t?e.setAttribute("aria-hidden",t):e.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))},t.prototype._hideNonDialogContentFromAssistiveTechnology=function(){var t=this._overlayContainer.getContainerElement();if(t.parentElement)for(var e=t.parentElement.children,n=e.length-1;n>-1;n--){var i=e[n];i===t||"SCRIPT"===i.nodeName||"STYLE"===i.nodeName||i.hasAttribute("aria-live")||(this._ariaHiddenElements.set(i,i.getAttribute("aria-hidden")),i.setAttribute("aria-hidden","true"))}},t.prototype._closeDialogs=function(t){for(var e=t.length;e--;)t[e].close()},t}(),TS=0,ES=function(){function t(t,e,n){this.dialogRef=t,this._elementRef=e,this._dialog=n}return t.prototype.ngOnInit=function(){this.dialogRef||(this.dialogRef=YS(this._elementRef,this._dialog.openDialogs))},t.prototype.ngOnChanges=function(t){var e=t._matDialogClose||t._matDialogCloseResult;e&&(this.dialogResult=e.currentValue)},t}(),AS=function(){function t(t,e,n){this._dialogRef=t,this._elementRef=e,this._dialog=n,this.id="mat-dialog-title-"+TS++}return t.prototype.ngOnInit=function(){var t=this;this._dialogRef||(this._dialogRef=YS(this._elementRef,this._dialog.openDialogs)),this._dialogRef&&Promise.resolve().then(function(){var e=t._dialogRef._containerInstance;e&&!e._ariaLabelledBy&&(e._ariaLabelledBy=t.id)})},t}(),PS=function(){return function(){}}(),OS=function(){return function(){}}();function YS(t,e){for(var n=t.nativeElement.parentElement;n&&!n.classList.contains("mat-dialog-container");)n=n.parentElement;return n?e.find(function(t){return t.id===n.id}):null}var RS=function(){return function(){}}(),IS=Vr({encapsulation:2,styles:[".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}@media (-ms-high-contrast:active){.mat-dialog-container{outline:solid 1px}}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button+.mat-button,.mat-dialog-actions .mat-button+.mat-raised-button,.mat-dialog-actions .mat-raised-button+.mat-button,.mat-dialog-actions .mat-raised-button+.mat-raised-button{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button+.mat-button,[dir=rtl] .mat-dialog-actions .mat-button+.mat-raised-button,[dir=rtl] .mat-dialog-actions .mat-raised-button+.mat-button,[dir=rtl] .mat-dialog-actions .mat-raised-button+.mat-raised-button{margin-left:0;margin-right:8px}"],data:{animation:[{type:7,name:"dialogContainer",definitions:[{type:0,name:"void, exit",styles:{type:6,styles:{opacity:0,transform:"scale(0.7)"},offset:null},options:void 0},{type:0,name:"enter",styles:{type:6,styles:{transform:"none"},offset:null},options:void 0},{type:1,expr:"* => enter",animation:{type:4,styles:{type:6,styles:{transform:"none",opacity:1},offset:null},timings:"150ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void, * => exit",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"75ms cubic-bezier(0.4, 0.0, 0.2, 1)"},options:null}],options:{}}]}});function FS(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function zS(t){return Ia(0,[wa(402653184,1,{_portalOutlet:0}),(t()(),go(16777216,null,null,1,null,FS)),oa(2,212992,[[1,4]],0,lM,[Fe,Xi],{portal:[0,"portal"]},null)],function(t,e){t(e,2,0,"")},null)}function jS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-dialog-container",[["aria-modal","true"],["class","mat-dialog-container"],["tabindex","-1"]],[[1,"id",0],[1,"role",0],[1,"aria-labelledby",0],[1,"aria-label",0],[1,"aria-describedby",0],[40,"@dialogContainer",0]],[["component","@dialogContainer.start"],["component","@dialogContainer.done"]],function(t,e,n){var i=!0;return"component:@dialogContainer.start"===e&&(i=!1!==Go(t,1)._onAnimationStart(n)&&i),"component:@dialogContainer.done"===e&&(i=!1!==Go(t,1)._onAnimationDone(n)&&i),i},zS,IS)),oa(1,49152,null,0,xS,[Ve,Gc,Zi,[2,As],vS],null,null)],null,function(t,e){t(e,0,0,Go(e,1)._id,Go(e,1)._config.role,Go(e,1)._config.ariaLabel?null:Go(e,1)._ariaLabelledBy,Go(e,1)._config.ariaLabel,Go(e,1)._config.ariaDescribedBy||null,Go(e,1)._state)})}var HS=Ro("mat-dialog-container",xS,jS,{},{},[]),NS=Vr({encapsulation:2,styles:[],data:{}});function VS(t){return Ia(2,[(t()(),yo(0,0,null,null,12,"div",[["class","mat-calendar-header"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,11,"div",[["class","mat-calendar-controls"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,4,"button",[["cdkAriaLive","polite"],["class","mat-calendar-period-button"],["mat-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.currentPeriodClicked()&&i),i},Nk,Hk)),oa(3,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),oa(4,147456,null,0,Zc,[Ve,Kc,cb,Mi],{politeness:[0,"politeness"]},null),(t()(),Oa(5,0,["",""])),(t()(),yo(6,0,null,0,0,"div",[["class","mat-calendar-arrow"]],[[2,"mat-calendar-invert",null]],null,null,null,null)),(t()(),yo(7,0,null,null,0,"div",[["class","mat-calendar-spacer"]],null,null,null,null,null)),La(null,0),(t()(),yo(9,0,null,null,1,"button",[["class","mat-calendar-previous-button"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.previousClicked()&&i),i},Nk,Hk)),oa(10,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),(t()(),yo(11,0,null,null,1,"button",[["class","mat-calendar-next-button"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.nextClicked()&&i),i},Nk,Hk)),oa(12,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null)],function(t,e){var n=e.component;t(e,4,0,"polite"),t(e,10,0,!n.previousEnabled()),t(e,12,0,!n.nextEnabled())},function(t,e){var n=e.component;t(e,2,0,n.periodButtonLabel,Go(e,3).disabled||null,"NoopAnimations"===Go(e,3)._animationMode),t(e,5,0,n.periodButtonText),t(e,6,0,"month"!=n.calendar.currentView),t(e,9,0,n.prevButtonLabel,Go(e,10).disabled||null,"NoopAnimations"===Go(e,10)._animationMode),t(e,11,0,n.nextButtonLabel,Go(e,12).disabled||null,"NoopAnimations"===Go(e,12)._animationMode)})}function BS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-calendar-header",[],null,null,null,VS,NS)),oa(1,49152,null,0,sS,[nS,uS,[2,dd],[2,hd],Zi],null,null)],null,null)}var WS=Ro("mat-calendar-header",sS,BS,{},{},["*"]),US=Vr({encapsulation:2,styles:[".mat-calendar{display:block}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:0}.mat-calendar-controls{display:flex;margin:5% calc(33% / 7 - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0}.mat-calendar-arrow{display:inline-block;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top-width:5px;border-top-style:solid;margin:0 0 0 5px;vertical-align:middle}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.mat-calendar-next-button,.mat-calendar-previous-button{position:relative}.mat-calendar-next-button::after,.mat-calendar-previous-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:'';margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-next-button,[dir=rtl] .mat-calendar-previous-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:'';position:absolute;top:0;left:-8px;right:-8px;height:1px}"],data:{}});function GS(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function qS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-month-view",[],null,[[null,"activeDateChange"],[null,"selectedChange"],[null,"_userSelection"]],function(t,e,n){var i=!0,r=t.component;return"activeDateChange"===e&&(i=!1!==(r.activeDate=n)&&i),"selectedChange"===e&&(i=!1!==r._dateSelected(n)&&i),"_userSelection"===e&&(i=!1!==r._userSelected()&&i),i},fC,hC)),oa(1,1097728,[[1,4]],0,oS,[Zi,[2,hd],[2,dd],[2,Zy]],{activeDate:[0,"activeDate"],selected:[1,"selected"],minDate:[2,"minDate"],maxDate:[3,"maxDate"],dateFilter:[4,"dateFilter"],dateClass:[5,"dateClass"]},{selectedChange:"selectedChange",_userSelection:"_userSelection",activeDateChange:"activeDateChange"})],function(t,e){var n=e.component;t(e,1,0,n.activeDate,n.selected,n.minDate,n.maxDate,n.dateFilter,n.dateClass)},null)}function XS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-year-view",[],null,[[null,"activeDateChange"],[null,"monthSelected"],[null,"selectedChange"]],function(t,e,n){var i=!0,r=t.component;return"activeDateChange"===e&&(i=!1!==(r.activeDate=n)&&i),"monthSelected"===e&&(i=!1!==r._monthSelectedInYearView(n)&&i),"selectedChange"===e&&(i=!1!==r._goToDateInView(n,"month")&&i),i},gC,mC)),oa(1,1097728,[[2,4]],0,lS,[Zi,[2,hd],[2,dd],[2,Zy]],{activeDate:[0,"activeDate"],selected:[1,"selected"],minDate:[2,"minDate"],maxDate:[3,"maxDate"],dateFilter:[4,"dateFilter"]},{selectedChange:"selectedChange",monthSelected:"monthSelected",activeDateChange:"activeDateChange"})],function(t,e){var n=e.component;t(e,1,0,n.activeDate,n.selected,n.minDate,n.maxDate,n.dateFilter)},null)}function KS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-multi-year-view",[],null,[[null,"activeDateChange"],[null,"yearSelected"],[null,"selectedChange"]],function(t,e,n){var i=!0,r=t.component;return"activeDateChange"===e&&(i=!1!==(r.activeDate=n)&&i),"yearSelected"===e&&(i=!1!==r._yearSelectedInMultiYearView(n)&&i),"selectedChange"===e&&(i=!1!==r._goToDateInView(n,"year")&&i),i},_C,yC)),oa(1,1097728,[[3,4]],0,aS,[Zi,[2,dd],[2,Zy]],{activeDate:[0,"activeDate"],selected:[1,"selected"],minDate:[2,"minDate"],maxDate:[3,"maxDate"],dateFilter:[4,"dateFilter"]},{selectedChange:"selectedChange",yearSelected:"yearSelected",activeDateChange:"activeDateChange"})],function(t,e){var n=e.component;t(e,1,0,n.activeDate,n.selected,n.minDate,n.maxDate,n.dateFilter)},null)}function ZS(t){return Ia(2,[wa(671088640,1,{monthView:0}),wa(671088640,2,{yearView:0}),wa(671088640,3,{multiYearView:0}),(t()(),go(16777216,null,null,1,null,GS)),oa(4,212992,null,0,lM,[Fe,Xi],{portal:[0,"portal"]},null),(t()(),yo(5,0,null,null,8,"div",[["cdkMonitorSubtreeFocus",""],["class","mat-calendar-content"],["tabindex","-1"]],null,null,null,null,null)),oa(6,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),oa(7,147456,null,0,td,[Ve,$c],null,null),(t()(),go(16777216,null,null,1,null,qS)),oa(9,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,XS)),oa(11,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,KS)),oa(13,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){var n=e.component;t(e,4,0,n._calendarHeaderPortal),t(e,6,0,n.currentView),t(e,9,0,"month"),t(e,11,0,"year"),t(e,13,0,"multi-year")},null)}var JS=Vr({encapsulation:2,styles:[".mat-calendar-body{min-width:224px}.mat-calendar-body-label{height:0;line-height:0;text-align:left;padding-left:4.71429%;padding-right:4.71429%}.mat-calendar-body-cell{position:relative;height:0;line-height:0;text-align:center;outline:0;cursor:pointer}.mat-calendar-body-disabled{cursor:default}.mat-calendar-body-cell-content{position:absolute;top:5%;left:5%;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px}@media (-ms-high-contrast:active){.mat-calendar-body-cell-content{border:none}}@media (-ms-high-contrast:active){.mat-calendar-body-selected,.mat-datepicker-popup:not(:empty){outline:solid 1px}.mat-calendar-body-today{outline:dotted 1px}}[dir=rtl] .mat-calendar-body-label{text-align:right}"],data:{}});function QS(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["aria-hidden","true"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,1,"td",[["class","mat-calendar-body-label"]],[[1,"colspan",0],[4,"paddingTop",null],[4,"paddingBottom",null]],null,null,null,null)),(t()(),Oa(2,null,["",""]))],null,function(t,e){var n=e.component;t(e,1,0,n.numCols,n._cellPadding,n._cellPadding),t(e,2,0,n.label)})}function $S(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"td",[["aria-hidden","true"],["class","mat-calendar-body-label"]],[[1,"colspan",0],[4,"paddingTop",null],[4,"paddingBottom",null]],null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){var n=e.component;t(e,0,0,n._firstRowOffset,n._cellPadding,n._cellPadding),t(e,1,0,n._firstRowOffset>=n.labelMinRequiredCells?n.label:"")})}function tC(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-calendar-body-cell"],["role","gridcell"]],[[8,"tabIndex",0],[2,"mat-calendar-body-disabled",null],[2,"mat-calendar-body-active",null],[1,"aria-label",0],[1,"aria-disabled",0],[1,"aria-selected",0],[4,"width",null],[4,"paddingTop",null],[4,"paddingBottom",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component._cellClicked(t.context.$implicit)&&i),i},null,null)),oa(1,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(t()(),yo(2,0,null,null,1,"div",[["class","mat-calendar-body-cell-content"]],[[2,"mat-calendar-body-selected",null],[2,"mat-calendar-body-today",null]],null,null,null,null)),(t()(),Oa(3,null,["",""]))],function(t,e){t(e,1,0,"mat-calendar-body-cell",e.context.$implicit.cssClasses)},function(t,e){var n=e.component;t(e,0,0,n._isActiveCell(e.parent.context.index,e.context.index)?0:-1,!e.context.$implicit.enabled,n._isActiveCell(e.parent.context.index,e.context.index),e.context.$implicit.ariaLabel,!e.context.$implicit.enabled||null,n.selectedValue===e.context.$implicit.value,n._cellWidth,n._cellPadding,n._cellPadding),t(e,2,0,n.selectedValue===e.context.$implicit.value,n.todayValue===e.context.$implicit.value),t(e,3,0,e.context.$implicit.displayValue)})}function eC(t){return Ia(0,[(t()(),yo(0,0,null,null,4,"tr",[["role","row"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,$S)),oa(2,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,tC)),oa(4,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null)],function(t,e){t(e,2,0,0===e.context.index&&e.component._firstRowOffset),t(e,4,0,e.context.$implicit)},null)}function nC(t){return Ia(2,[(t()(),go(16777216,null,null,1,null,QS)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,eC)),oa(3,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null)],function(t,e){var n=e.component;t(e,1,0,n._firstRowOffset enter",animation:{type:4,styles:{type:6,styles:{opacity:1,transform:"scale(1, 1)"},offset:null},timings:"120ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"100ms linear"},options:null}],options:{}},{type:7,name:"fadeInCalendar",definitions:[{type:0,name:"void",styles:{type:6,styles:{opacity:0},offset:null},options:void 0},{type:0,name:"enter",styles:{type:6,styles:{opacity:1},offset:null},options:void 0},{type:1,expr:"void => *",animation:{type:4,styles:null,timings:"120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"},options:null}],options:{}}]}});function rC(t){return Ia(2,[wa(402653184,1,{_calendar:0}),(t()(),yo(1,0,null,null,3,"mat-calendar",[["cdkTrapFocus",""],["class","mat-calendar"]],[[8,"id",0],[24,"@fadeInCalendar",0]],[[null,"selectedChange"],[null,"yearSelected"],[null,"monthSelected"],[null,"_userSelection"]],function(t,e,n){var i=!0,r=t.component;return"selectedChange"===e&&(i=!1!==r.datepicker.select(n)&&i),"yearSelected"===e&&(i=!1!==r.datepicker._selectYear(n)&&i),"monthSelected"===e&&(i=!1!==r.datepicker._selectMonth(n)&&i),"_userSelection"===e&&(i=!1!==r.datepicker.close()&&i),i},ZS,US)),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),oa(3,1458176,null,0,qc,[Ve,Gc,As],{enabled:[0,"enabled"]},null),oa(4,10141696,[[1,4]],0,uS,[nS,[2,dd],[2,hd],Zi],{headerComponent:[0,"headerComponent"],startAt:[1,"startAt"],startView:[2,"startView"],selected:[3,"selected"],minDate:[4,"minDate"],maxDate:[5,"maxDate"],dateFilter:[6,"dateFilter"],dateClass:[7,"dateClass"]},{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",_userSelection:"_userSelection"})],function(t,e){var n=e.component;t(e,2,0,n.datepicker.panelClass),t(e,3,0,""),t(e,4,0,n.datepicker.calendarHeaderComponent,n.datepicker.startAt,n.datepicker.startView,n.datepicker._selected,n.datepicker._minDate,n.datepicker._maxDate,n.datepicker._dateFilter,n.datepicker.dateClass)},function(t,e){t(e,1,0,e.component.datepicker.id,"enter")})}function oC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-datepicker-content",[["class","mat-datepicker-content"]],[[40,"@transformPanel",0],[2,"mat-datepicker-content-touch",null]],null,null,rC,iC)),oa(1,4243456,null,0,pS,[Ve],null,null)],null,function(t,e){t(e,0,0,"enter",Go(e,1).datepicker.touchUi)})}var aC=Ro("mat-datepicker-content",pS,oC,{color:"color"},{},[]),lC=Vr({encapsulation:2,styles:[],data:{}});function sC(t){return Ia(2,[],null,null)}var uC=Vr({encapsulation:2,styles:[".mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-datepicker-toggle-default-icon{display:block;width:1.5em;height:1.5em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-datepicker-toggle-default-icon{margin:auto}"],data:{}});function cC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,":svg:svg",[["class","mat-datepicker-toggle-default-icon"],["fill","currentColor"],["focusable","false"],["height","24px"],["viewBox","0 0 24 24"],["width","24px"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,0,":svg:path",[["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],null,null,null,null,null))],null,null)}function dC(t){return Ia(2,[wa(402653184,1,{_button:0}),(t()(),yo(1,0,null,null,4,"button",[["aria-haspopup","true"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[1,"tabindex",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component._open(n)&&i),i},Nk,Hk)),oa(2,180224,[[1,4],["button",4]],0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],disableRipple:[1,"disableRipple"]},null),(t()(),go(16777216,null,0,1,null,cC)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),La(0,0)],function(t,e){var n=e.component;t(e,2,0,n.disabled,n.disableRipple),t(e,4,0,!n._customIcon)},function(t,e){var n=e.component;t(e,1,0,n._intl.openCalendarLabel,n.disabled?-1:n.tabIndex,Go(e,2).disabled||null,"NoopAnimations"===Go(e,2)._animationMode)})}var hC=Vr({encapsulation:2,styles:[],data:{}});function pC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[],[[1,"aria-label",0]],null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,0,0,e.context.$implicit.long),t(e,1,0,e.context.$implicit.narrow)})}function fC(t){return Ia(2,[wa(402653184,1,{_matCalendarBody:0}),(t()(),yo(1,0,null,null,8,"table",[["class","mat-calendar-table"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,5,"thead",[["class","mat-calendar-table-header"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,2,"tr",[],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,pC)),oa(5,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(6,0,null,null,1,"tr",[],null,null,null,null,null)),(t()(),yo(7,0,null,null,0,"th",[["aria-hidden","true"],["class","mat-calendar-table-header-divider"],["colspan","7"]],null,null,null,null,null)),(t()(),yo(8,0,null,null,1,"tbody",[["aria-readonly","true"],["class","mat-calendar-body"],["mat-calendar-body",""],["role","grid"]],null,[[null,"selectedValueChange"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"selectedValueChange"===e&&(i=!1!==r._dateSelected(n)&&i),"keydown"===e&&(i=!1!==r._handleCalendarBodyKeydown(n)&&i),i},nC,JS)),oa(9,573440,[[1,4]],0,rS,[Ve,Mi],{label:[0,"label"],rows:[1,"rows"],todayValue:[2,"todayValue"],selectedValue:[3,"selectedValue"],labelMinRequiredCells:[4,"labelMinRequiredCells"],activeCell:[5,"activeCell"]},{selectedValueChange:"selectedValueChange"})],function(t,e){var n=e.component;t(e,5,0,n._weekdays),t(e,9,0,n._monthLabel,n._weeks,n._todayDate,n._selectedDate,3,n._dateAdapter.getDate(n.activeDate)-1)},null)}var mC=Vr({encapsulation:2,styles:[],data:{}});function gC(t){return Ia(2,[wa(402653184,1,{_matCalendarBody:0}),(t()(),yo(1,0,null,null,5,"table",[["class","mat-calendar-table"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,2,"thead",[["class","mat-calendar-table-header"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,1,"tr",[],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,"th",[["class","mat-calendar-table-header-divider"],["colspan","4"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,1,"tbody",[["aria-readonly","true"],["class","mat-calendar-body"],["mat-calendar-body",""],["role","grid"]],null,[[null,"selectedValueChange"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"selectedValueChange"===e&&(i=!1!==r._monthSelected(n)&&i),"keydown"===e&&(i=!1!==r._handleCalendarBodyKeydown(n)&&i),i},nC,JS)),oa(6,573440,[[1,4]],0,rS,[Ve,Mi],{label:[0,"label"],rows:[1,"rows"],todayValue:[2,"todayValue"],selectedValue:[3,"selectedValue"],labelMinRequiredCells:[4,"labelMinRequiredCells"],numCols:[5,"numCols"],activeCell:[6,"activeCell"],cellAspectRatio:[7,"cellAspectRatio"]},{selectedValueChange:"selectedValueChange"})],function(t,e){var n=e.component;t(e,6,0,n._yearLabel,n._months,n._todayMonth,n._selectedMonth,2,4,n._dateAdapter.getMonth(n.activeDate),4/7)},null)}var yC=Vr({encapsulation:2,styles:[],data:{}});function _C(t){return Ia(2,[wa(402653184,1,{_matCalendarBody:0}),(t()(),yo(1,0,null,null,5,"table",[["class","mat-calendar-table"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,2,"thead",[["class","mat-calendar-table-header"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,1,"tr",[],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,"th",[["class","mat-calendar-table-header-divider"],["colspan","4"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,1,"tbody",[["aria-readonly","true"],["class","mat-calendar-body"],["mat-calendar-body",""],["role","grid"]],null,[[null,"selectedValueChange"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"selectedValueChange"===e&&(i=!1!==r._yearSelected(n)&&i),"keydown"===e&&(i=!1!==r._handleCalendarBodyKeydown(n)&&i),i},nC,JS)),oa(6,573440,[[1,4]],0,rS,[Ve,Mi],{rows:[0,"rows"],todayValue:[1,"todayValue"],selectedValue:[2,"selectedValue"],numCols:[3,"numCols"],activeCell:[4,"activeCell"],cellAspectRatio:[5,"cellAspectRatio"]},{selectedValueChange:"selectedValueChange"})],function(t,e){var n=e.component;t(e,6,0,n._years,n._todayYear,n._selectedYear,4,n._getActiveCell(),4/7)},null)}var vC=function(){function t(t,e){this.delay=t,this.scheduler=e}return t.prototype.call=function(t,e){return e.subscribe(new bC(t,this.delay,this.scheduler))},t}(),bC=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.delay=n,r.scheduler=i,r.queue=[],r.active=!1,r.errored=!1,r}return r(e,t),e.dispatch=function(t){for(var e=t.source,n=e.queue,i=t.scheduler,r=t.destination;n.length>0&&n[0].time-i.now()<=0;)n.shift().notification.observe(r);if(n.length>0){var o=Math.max(0,n[0].time-i.now());this.schedule(t,o)}else this.unsubscribe(),e.active=!1},e.prototype._schedule=function(t){this.active=!0,this.destination.add(t.schedule(e.dispatch,this.delay,{source:this,destination:this.destination,scheduler:t}))},e.prototype.scheduleNotification=function(t){if(!0!==this.errored){var e=this.scheduler,n=new xC(e.now()+this.delay,t);this.queue.push(n),!1===this.active&&this._schedule(e)}},e.prototype._next=function(t){this.scheduleNotification(mM.createNext(t))},e.prototype._error=function(t){this.errored=!0,this.queue=[],this.destination.error(t),this.unsubscribe()},e.prototype._complete=function(){this.scheduleNotification(mM.createComplete()),this.unsubscribe()},e}(D),xC=function(){return function(t,e){this.time=t,this.notification=e}}(),wC=0,kC=function(){return function(t,e){this.source=t,this.option=e}}(),MC=ad(function(){return function(){}}()),SC=new Lt("mat-autocomplete-default-options",{providedIn:"root",factory:function(){return{autoActiveFirstOption:!1}}}),CC=function(t){function e(e,n,i){var r=t.call(this)||this;return r._changeDetectorRef=e,r._elementRef=n,r.showPanel=!1,r._isOpen=!1,r.displayWith=null,r.optionSelected=new kn,r.opened=new kn,r.closed=new kn,r._classList={},r.id="mat-autocomplete-"+wC++,r._autoActiveFirstOption=!!i.autoActiveFirstOption,r}return r(e,t),Object.defineProperty(e.prototype,"isOpen",{get:function(){return this._isOpen&&this.showPanel},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"autoActiveFirstOption",{get:function(){return this._autoActiveFirstOption},set:function(t){this._autoActiveFirstOption=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"classList",{set:function(t){var e=this;t&&t.length&&(t.split(" ").forEach(function(t){return e._classList[t.trim()]=!0}),this._elementRef.nativeElement.className="")},enumerable:!0,configurable:!0}),e.prototype.ngAfterContentInit=function(){this._keyManager=new Hc(this.options).withWrap(),this._setVisibility()},e.prototype._setScrollTop=function(t){this.panel&&(this.panel.nativeElement.scrollTop=t)},e.prototype._getScrollTop=function(){return this.panel?this.panel.nativeElement.scrollTop:0},e.prototype._setVisibility=function(){this.showPanel=!!this.options.length,this._classList["mat-autocomplete-visible"]=this.showPanel,this._classList["mat-autocomplete-hidden"]=!this.showPanel,this._changeDetectorRef.markForCheck()},e.prototype._emitSelectEvent=function(t){var e=new kC(this,t);this.optionSelected.emit(e)},e}(MC),LC=new Lt("mat-autocomplete-scroll-strategy");function DC(t){return function(){return t.scrollStrategies.reposition()}}var TC=function(){function t(t,e,n,i,r,o,a,l,s,u){var c=this;this._element=t,this._overlay=e,this._viewContainerRef=n,this._zone=i,this._changeDetectorRef=r,this._dir=a,this._formField=l,this._document=s,this._viewportRuler=u,this._componentDestroyed=!1,this._autocompleteDisabled=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=x.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new H,this._windowBlurHandler=function(){c._canOpenOnNextFocus=document.activeElement!==c._element.nativeElement||c.panelOpen},this._onChange=function(){},this._onTouched=function(){},this.autocompleteAttribute="off",this._overlayAttached=!1,this.optionSelections=Nh(function(){return c.autocomplete&&c.autocomplete.options?ht.apply(void 0,c.autocomplete.options.map(function(t){return t.onSelectionChange})):c._zone.onStable.asObservable().pipe(Ac(1),ip(function(){return c.optionSelections}))}),"undefined"!=typeof window&&i.runOutsideAngular(function(){window.addEventListener("blur",c._windowBlurHandler)}),this._scrollStrategy=o}return Object.defineProperty(t.prototype,"autocompleteDisabled",{get:function(){return this._autocompleteDisabled},set:function(t){this._autocompleteDisabled=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){"undefined"!=typeof window&&window.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete()},Object.defineProperty(t.prototype,"panelOpen",{get:function(){return this._overlayAttached&&this.autocomplete.showPanel},enumerable:!0,configurable:!0}),t.prototype.openPanel=function(){this._attachOverlay(),this._floatLabel()},t.prototype.closePanel=function(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this.autocomplete.closed.emit(),this.autocomplete._isOpen=this._overlayAttached=!1,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._componentDestroyed||this._changeDetectorRef.detectChanges())},t.prototype.updatePosition=function(){this._overlayAttached&&this._overlayRef.updatePosition()},Object.defineProperty(t.prototype,"panelClosingActions",{get:function(){var t=this;return ht(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe(Cc(function(){return t._overlayAttached})),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe(Cc(function(){return t._overlayAttached})):cc()).pipe(nt(function(t){return t instanceof Rd?t:null}))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activeOption",{get:function(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null},enumerable:!0,configurable:!0}),t.prototype._getOutsideClickStream=function(){var t=this;return this._document?ht(pg(this._document,"click"),pg(this._document,"touchend")).pipe(Cc(function(e){var n=e.target,i=t._formField?t._formField._elementRef.nativeElement:null;return t._overlayAttached&&n!==t._element.nativeElement&&(!i||!i.contains(n))&&!!t._overlayRef&&!t._overlayRef.overlayElement.contains(n)})):cc(null)},t.prototype.writeValue=function(t){var e=this;Promise.resolve(null).then(function(){return e._setTriggerValue(t)})},t.prototype.registerOnChange=function(t){this._onChange=t},t.prototype.registerOnTouched=function(t){this._onTouched=t},t.prototype.setDisabledState=function(t){this._element.nativeElement.disabled=t},t.prototype._handleKeydown=function(t){var e=t.keyCode;if(e===pc&&t.preventDefault(),this.activeOption&&13===e&&this.panelOpen)this.activeOption._selectViaInteraction(),this._resetActiveItem(),t.preventDefault();else if(this.autocomplete){var n=this.autocomplete._keyManager.activeItem,i=38===e||40===e;this.panelOpen||9===e?this.autocomplete._keyManager.onKeydown(t):i&&this._canOpen()&&this.openPanel(),(i||this.autocomplete._keyManager.activeItem!==n)&&this._scrollToOption()}},t.prototype._handleInput=function(t){var e=t.target,n=e.value;"number"===e.type&&(n=""==n?null:parseFloat(n)),this._previousValue!==n&&(this._previousValue=n,this._onChange(n),this._canOpen()&&document.activeElement===t.target&&this.openPanel())},t.prototype._handleFocus=function(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(),this._floatLabel(!0)):this._canOpenOnNextFocus=!0},t.prototype._floatLabel=function(t){void 0===t&&(t=!1),this._formField&&"auto"===this._formField.floatLabel&&(t?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)},t.prototype._resetLabel=function(){this._manuallyFloatingLabel&&(this._formField.floatLabel="auto",this._manuallyFloatingLabel=!1)},t.prototype._scrollToOption=function(){var t=this.autocomplete._keyManager.activeItemIndex||0,e=jd(t+zd(t,this.autocomplete.options,this.autocomplete.optionGroups),48,this.autocomplete._getScrollTop(),256);this.autocomplete._setScrollTop(e)},t.prototype._subscribeToClosingActions=function(){var t=this;return ht(this._zone.onStable.asObservable().pipe(Ac(1)),this.autocomplete.options.changes.pipe(mc(function(){return t._positionStrategy.reapplyLastPosition()}),function(t,e){void 0===e&&(e=xc);var n=0 instanceof Date&&!isNaN(0)?0-e.now():Math.abs(0);return function(t){return t.lift(new vC(n,e))}}())).pipe(ip(function(){return t._resetActiveItem(),t.autocomplete._setVisibility(),t.panelOpen&&t._overlayRef.updatePosition(),t.panelClosingActions}),Ac(1)).subscribe(function(e){return t._setValueAndClose(e)})},t.prototype._destroyPanel=function(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)},t.prototype._setTriggerValue=function(t){var e=this.autocomplete&&this.autocomplete.displayWith?this.autocomplete.displayWith(t):t,n=null!=e?e:"";this._formField?this._formField._control.value=n:this._element.nativeElement.value=n,this._previousValue=n},t.prototype._setValueAndClose=function(t){t&&t.source&&(this._clearPreviousSelectedOption(t.source),this._setTriggerValue(t.source.value),this._onChange(t.source.value),this._element.nativeElement.focus(),this.autocomplete._emitSelectEvent(t.source)),this.closePanel()},t.prototype._clearPreviousSelectedOption=function(t){this.autocomplete.options.forEach(function(e){e!=t&&e.selected&&e.deselect()})},t.prototype._attachOverlay=function(){var t=this;if(!this.autocomplete)throw Error("Attempting to open an undefined instance of `mat-autocomplete`. Make sure that the id passed to the `matAutocomplete` is correct and that you're attempting to open it after the ngAfterContentInit hook.");var e=this._overlayRef;e?(e.getConfig().positionStrategy.setOrigin(this._getConnectedElement()),e.updateSize({width:this._getPanelWidth()})):(this._portal=new rM(this.autocomplete.template,this._viewContainerRef),e=this._overlay.create(this._getOverlayConfig()),this._overlayRef=e,e.keydownEvents().subscribe(function(e){(e.keyCode===pc||38===e.keyCode&&e.altKey)&&(t._resetActiveItem(),t._closeKeyEventStream.next())}),this._viewportRuler&&(this._viewportSubscription=this._viewportRuler.change().subscribe(function(){t.panelOpen&&e&&e.updateSize({width:t._getPanelWidth()})}))),e&&!e.hasAttached()&&(e.attach(this._portal),this._closingActionsSubscription=this._subscribeToClosingActions());var n=this.panelOpen;this.autocomplete._setVisibility(),this.autocomplete._isOpen=this._overlayAttached=!0,this.panelOpen&&n!==this.panelOpen&&this.autocomplete.opened.emit()},t.prototype._getOverlayConfig=function(){return new YM({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir})},t.prototype._getOverlayPosition=function(){return this._positionStrategy=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1).withPositions([{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-autocomplete-panel-above"}]),this._positionStrategy},t.prototype._getConnectedElement=function(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element},t.prototype._getPanelWidth=function(){return this.autocomplete.panelWidth||this._getHostWidth()},t.prototype._getHostWidth=function(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width},t.prototype._resetActiveItem=function(){this.autocomplete._keyManager.setActiveItem(this.autocomplete.autoActiveFirstOption?0:-1)},t.prototype._canOpen=function(){var t=this._element.nativeElement;return!t.readOnly&&!t.disabled&&!this._autocompleteDisabled},t}(),EC=function(){return function(){}}(),AC=Vr({encapsulation:2,styles:[".mat-autocomplete-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;visibility:hidden;max-width:none;max-height:256px;position:relative;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mat-autocomplete-panel.mat-autocomplete-visible{visibility:visible}.mat-autocomplete-panel.mat-autocomplete-hidden{visibility:hidden}.mat-autocomplete-panel-above .mat-autocomplete-panel{border-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.mat-autocomplete-panel .mat-divider-horizontal{margin-top:-1px}@media (-ms-high-contrast:active){.mat-autocomplete-panel{outline:solid 1px}}"],data:{}});function PC(t){return Ia(0,[(t()(),yo(0,0,[[2,0],["panel",1]],null,2,"div",[["class","mat-autocomplete-panel"],["role","listbox"]],[[8,"id",0]],null,null,null,null)),oa(1,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),La(null,0)],function(t,e){t(e,1,0,"mat-autocomplete-panel",e.component._classList)},function(t,e){t(e,0,0,e.component.id)})}function OC(t){return Ia(2,[wa(402653184,1,{template:0}),wa(671088640,2,{panel:0}),(t()(),go(0,[[1,2]],null,0,null,PC))],null,null)}var YC=function(){function t(t,e){this.el=t,this._zone=e,this.updateChange=new kn(!0),this.chartInstance=new kn}return Object.defineProperty(t.prototype,"options",{set:function(t){this.optionsValue=t,this.wrappedUpdateOrCreateChart()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"update",{set:function(t){t&&(this.wrappedUpdateOrCreateChart(),this.updateChange.emit(!1))},enumerable:!0,configurable:!0}),t.prototype.wrappedUpdateOrCreateChart=function(){var t=this;this.runOutsideAngular?this._zone.runOutsideAngular(function(){t.updateOrCreateChart()}):this.updateOrCreateChart()},t.prototype.updateOrCreateChart=function(){this.chart&&this.chart.update?this.chart.update(this.optionsValue,!0,this.oneToOne||!1):(this.chart=this.Highcharts[this.constructorType||"chart"](this.el.nativeElement,this.optionsValue,this.callbackFunction||null),this.chartInstance.emit(this.chart))},t.prototype.ngOnDestroy=function(){this.chart&&(this.chart.destroy(),this.chart=null)},t}(),RC=function(){return function(){}}(),IC=Vr({encapsulation:2,styles:[],data:{}});function FC(t){return Ia(0,[],null,null)}n("2BfV")(a_),n("Tos5")(a_),n("M8aS")(a_),n("Z9Wc")(a_),n("AxlJ")(a_),n("1op0")(a_);var zC=function(){function t(){this.updateFromInput=!1,this.scatter2d=a_,this.detectionResults=[],this.scatter2DArr=[],this.selectedResultID=0,this.selHoverIndex=-1,this.scatter2DOptions={renderTo:"sccontainer2D",chart:{type:"scatter",zoomType:"xy",panning:!0,panKey:"shift",width:700,height:360,events:{load:function(t){t.target.reflow()}}},title:{text:"",floating:!0,align:"left",margin:0},credits:{enabled:!1},exporting:{enabled:!1},xAxis:{min:-16777215,max:0,ceiling:0,minPadding:0,maxPadding:0,endOnTick:!1,tickInterval:3355443,title:{enabled:!0,text:"Raw Color",style:{color:"#000",fontWeight:"600",fontSize:"14px",fontFamily:"sans-serif"}},showLastLabel:!0,labels:{align:"center",formatter:function(){return this.value}}},yAxis:{min:-16777215,max:0,tickInterval:3355443,title:{text:"Processed Color",style:{color:"#000",fontWeight:"600",fontSize:"14px",fontFamily:"sans-serif"}},startOnTick:!0,endOnTick:!1,showLastLabel:!0,labels:{formatter:function(){return this.value}}},legend:{enabled:!1},plotOptions:{scatter:{marker:{radius:5,states:{hover:{enabled:!0,lineColor:"rgb(100,100,100)"}}}},states:{hover:{marker:{enabled:!1}}},series:{cursor:"pointer",stickyTracking:!1,point:{events:{click:(function(t){this.chart2DClicked(t.point)}).bind(this)}}}},series:[{name:"Colors",data:[],id:"series1",tooltip:{headerFormat:"{series.name}
",pointFormat:"Raw: {point.x}
Processed: {point.y}
DeltaE: {point.deltaE}"}},{type:"line",name:"Regression Line",data:[],color:"#66c2ff",marker:{enabled:!1},states:{hover:{lineWidth:0}},enableMouseTracking:!1,tooltip:{enabled:!1}}]},this.emitSelResult=new kn}return t.prototype.ngOnInit=function(){this.chart2DHolder=a_.chart("sccontainer2D",this.scatter2DOptions),this.updateFromInput=!0},t.prototype.generate2DData=function(){this.scatter2DArr=[],this.scatter2DOptions.series[0].data=[];for(var t=0,e=this.detectionResults;t0&&(t.series[1].data=this.getLinearRegression())},t.prototype.getLinearRegression=function(){for(var t,e,n,i,r=[],o=0,a=0,l=0,s=0,u=this.detectionResults.length,c=0,d=this.detectionResults;ce.RawColor?1:0}),this.createApproximateLine(this.scatter2DOptions),this.generate2DData(),this.scatter2DOptions.series[0].data=this.scatter2DArr,this.updateFromInput=!0},t.prototype.setHoverPoint=function(t){var e=this.getChart();if(e)if(0===t&&this.selHoverIndex>-1)e.series[0].data[this.selHoverIndex].setState(""),this.selHoverIndex=-1;else if(t){var n=e.series[0].data.findIndex(function(e){return e.resultID===t});n>=0&&(e.series[0].data[n].setState("hover"),this.selHoverIndex=n)}},t.prototype.getChart=function(){var t=this.scatter2d.charts,e=t.findIndex(function(t){return t&&"sccontainer2D"===t.renderTo.id});return e?t[e]:null},t}(),jC=Vr({encapsulation:0,styles:[["#sccontainer2D[_ngcontent-%COMP%]{min-width:30em;max-width:30em;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content}"]],data:{}});function HC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"highcharts-chart",[["id","sccontainer2D"]],null,[[null,"updateChange"]],function(t,e,n){var i=!0;return"updateChange"===e&&(i=!1!==(t.component.updateFromInput=n)&&i),i},FC,IC)),oa(1,180224,null,0,YC,[Ve,Mi],{Highcharts:[0,"Highcharts"],options:[1,"options"],update:[2,"update"]},{updateChange:"updateChange"})],function(t,e){var n=e.component;t(e,1,0,n.scatter2d,n.scatter2DOptions,n.updateFromInput)},null)}function NC(t){return function(t){function e(){for(var e=[],n=0;n0;r--)e[r]&&(n[r]=i,i+=t[r]);return n},t}(),rL=function(){return function(t,e){this.viewContainer=t,this.elementRef=e}}(),oL=function(){return function(t,e){this.viewContainer=t,this.elementRef=e}}(),aL=function(){return function(t,e){this.viewContainer=t,this.elementRef=e}}(),lL=function(){function t(t,e,n,i,r,o,a){this._differs=t,this._changeDetectorRef=e,this._elementRef=n,this._dir=r,this._platform=a,this._onDestroy=new H,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this._multiTemplateDataRows=!1,this.viewChange=new Th({start:0,end:Number.MAX_VALUE}),i||this._elementRef.nativeElement.setAttribute("role","grid"),this._document=o,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName}return Object.defineProperty(t.prototype,"trackBy",{get:function(){return this._trackByFn},set:function(t){tn()&&null!=t&&"function"!=typeof t&&console&&console.warn&&console.warn("trackBy must be a function, but received "+JSON.stringify(t)+"."),this._trackByFn=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"dataSource",{get:function(){return this._dataSource},set:function(t){this._dataSource!==t&&this._switchDataSource(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"multiTemplateDataRows",{get:function(){return this._multiTemplateDataRows},set:function(t){this._multiTemplateDataRows=Xu(t),this._rowOutlet.viewContainer.length&&this._forceRenderDataRows()},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this._setupStickyStyler(),this._isNativeHtmlTable&&this._applyNativeTableSections(),this._dataDiffer=this._differs.find([]).create(function(e,n){return t.trackBy?t.trackBy(n.dataIndex,n.data):n})},t.prototype.ngAfterContentChecked=function(){if(this._cacheRowDefs(),this._cacheColumnDefs(),!this._headerRowDefs.length&&!this._footerRowDefs.length&&!this._rowDefs.length)throw Error("Missing definitions for header, footer, and row; cannot determine which columns should be rendered.");this._renderUpdatedColumns(),this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription&&this._observeRenderChanges(),this._checkStickyStates()},t.prototype.ngOnDestroy=function(){this._rowOutlet.viewContainer.clear(),this._headerRowOutlet.viewContainer.clear(),this._footerRowOutlet.viewContainer.clear(),this._cachedRenderRowsMap.clear(),this._onDestroy.next(),this._onDestroy.complete(),bM(this.dataSource)&&this.dataSource.disconnect(this)},t.prototype.renderRows=function(){var t=this;this._renderRows=this._getAllRenderRows();var e=this._dataDiffer.diff(this._renderRows);if(e){var n=this._rowOutlet.viewContainer;e.forEachOperation(function(e,i,r){if(null==e.previousIndex)t._insertRow(e.item,r);else if(null==r)n.remove(i);else{var o=n.get(i);n.move(o,r)}}),this._updateRowIndexContext(),e.forEachIdentityChange(function(t){n.get(t.currentIndex).context.$implicit=t.item.data}),this.updateStickyColumnStyles()}},t.prototype.setHeaderRowDef=function(t){this._customHeaderRowDefs=new Set([t]),this._headerRowDefChanged=!0},t.prototype.setFooterRowDef=function(t){this._customFooterRowDefs=new Set([t]),this._footerRowDefChanged=!0},t.prototype.addColumnDef=function(t){this._customColumnDefs.add(t)},t.prototype.removeColumnDef=function(t){this._customColumnDefs.delete(t)},t.prototype.addRowDef=function(t){this._customRowDefs.add(t)},t.prototype.removeRowDef=function(t){this._customRowDefs.delete(t)},t.prototype.addHeaderRowDef=function(t){this._customHeaderRowDefs.add(t),this._headerRowDefChanged=!0},t.prototype.removeHeaderRowDef=function(t){this._customHeaderRowDefs.delete(t),this._headerRowDefChanged=!0},t.prototype.addFooterRowDef=function(t){this._customFooterRowDefs.add(t),this._footerRowDefChanged=!0},t.prototype.removeFooterRowDef=function(t){this._customFooterRowDefs.delete(t),this._footerRowDefChanged=!0},t.prototype.updateStickyHeaderRowStyles=function(){var t=this._getRenderedRows(this._headerRowOutlet),e=this._elementRef.nativeElement.querySelector("thead");e&&(e.style.display=t.length?"":"none");var n=this._headerRowDefs.map(function(t){return t.sticky});this._stickyStyler.clearStickyPositioning(t,["top"]),this._stickyStyler.stickRows(t,n,"top"),this._headerRowDefs.forEach(function(t){return t.resetStickyChanged()})},t.prototype.updateStickyFooterRowStyles=function(){var t=this._getRenderedRows(this._footerRowOutlet),e=this._elementRef.nativeElement.querySelector("tfoot");e&&(e.style.display=t.length?"":"none");var n=this._footerRowDefs.map(function(t){return t.sticky});this._stickyStyler.clearStickyPositioning(t,["bottom"]),this._stickyStyler.stickRows(t,n,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,n),this._footerRowDefs.forEach(function(t){return t.resetStickyChanged()})},t.prototype.updateStickyColumnStyles=function(){var t=this,e=this._getRenderedRows(this._headerRowOutlet),n=this._getRenderedRows(this._rowOutlet),i=this._getRenderedRows(this._footerRowOutlet);this._stickyStyler.clearStickyPositioning(e.concat(n,i),["left","right"]),e.forEach(function(e,n){t._addStickyColumnStyles([e],t._headerRowDefs[n])}),this._rowDefs.forEach(function(e){for(var i=[],r=0;r1)throw Error("There can only be one default row without a when predicate function.");this._defaultRowDef=t[0]},t.prototype._renderUpdatedColumns=function(){var t=function(t,e){return t||!!e.getColumnsDiff()};this._rowDefs.reduce(t,!1)&&this._forceRenderDataRows(),this._headerRowDefs.reduce(t,!1)&&this._forceRenderHeaderRows(),this._footerRowDefs.reduce(t,!1)&&this._forceRenderFooterRows()},t.prototype._switchDataSource=function(t){this._data=[],bM(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),t||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear()),this._dataSource=t},t.prototype._observeRenderChanges=function(){var t=this;if(this.dataSource){var e;if(bM(this.dataSource)?e=this.dataSource.connect(this):this.dataSource instanceof Y?e=this.dataSource:Array.isArray(this.dataSource)&&(e=cc(this.dataSource)),void 0===e)throw Error("Provided data source did not match an array, Observable, or DataSource");this._renderChangeSubscription=e.pipe(fg(this._onDestroy)).subscribe(function(e){t._data=e||[],t.renderRows()})}},t.prototype._forceRenderHeaderRows=function(){var t=this;this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach(function(e,n){return t._renderRow(t._headerRowOutlet,e,n)}),this.updateStickyHeaderRowStyles(),this.updateStickyColumnStyles()},t.prototype._forceRenderFooterRows=function(){var t=this;this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach(function(e,n){return t._renderRow(t._footerRowOutlet,e,n)}),this.updateStickyFooterRowStyles(),this.updateStickyColumnStyles()},t.prototype._addStickyColumnStyles=function(t,e){var n=this,i=Array.from(e.columns||[]).map(function(t){var e=n._columnDefsByName.get(t);if(!e)throw eL(t);return e}),r=i.map(function(t){return t.sticky}),o=i.map(function(t){return t.stickyEnd});this._stickyStyler.updateStickyColumns(t,r,o)},t.prototype._getRenderedRows=function(t){for(var e=[],n=0;na?l=1:o0)){var i=Math.ceil(n.length/n.pageSize)-1||0,r=Math.min(n.pageIndex,i);r!==n.pageIndex&&(n.pageIndex=r,e._internalPageChanges.next())}})},e.prototype.connect=function(){return this._renderData},e.prototype.disconnect=function(){},e}(vM),kL=Vr({encapsulation:2,styles:["mat-table{display:block}mat-header-row{min-height:56px}mat-footer-row,mat-row{min-height:48px}mat-footer-row,mat-header-row,mat-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-footer-row::after,mat-header-row::after,mat-row::after{display:inline-block;min-height:inherit;content:''}mat-cell:first-of-type,mat-footer-cell:first-of-type,mat-header-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type,[dir=rtl] mat-footer-cell:first-of-type,[dir=rtl] mat-header-cell:first-of-type{padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-footer-cell:last-of-type,mat-header-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type,[dir=rtl] mat-footer-cell:last-of-type,[dir=rtl] mat-header-cell:last-of-type{padding-right:0;padding-left:24px}mat-cell,mat-footer-cell,mat-header-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}table.mat-table{border-spacing:0}tr.mat-header-row{height:56px}tr.mat-footer-row,tr.mat-row{height:48px}th.mat-header-cell{text-align:left}[dir=rtl] th.mat-header-cell{text-align:right}td.mat-cell,td.mat-footer-cell,th.mat-header-cell{padding:0;border-bottom-width:1px;border-bottom-style:solid}td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type,th.mat-header-cell:first-of-type{padding-left:24px}[dir=rtl] td.mat-cell:first-of-type,[dir=rtl] td.mat-footer-cell:first-of-type,[dir=rtl] th.mat-header-cell:first-of-type{padding-left:0;padding-right:24px}td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type,th.mat-header-cell:last-of-type{padding-right:24px}[dir=rtl] td.mat-cell:last-of-type,[dir=rtl] td.mat-footer-cell:last-of-type,[dir=rtl] th.mat-header-cell:last-of-type{padding-right:0;padding-left:24px}"],data:{}});function ML(t){return Ia(2,[wa(402653184,1,{_rowOutlet:0}),wa(402653184,2,{_headerRowOutlet:0}),wa(402653184,3,{_footerRowOutlet:0}),La(null,0),(t()(),yo(4,16777216,null,null,1,null,null,null,null,null,null,null)),oa(5,16384,[[2,4]],0,oL,[Xi,Ve],null,null),(t()(),yo(6,16777216,null,null,1,null,null,null,null,null,null,null)),oa(7,16384,[[1,4]],0,rL,[Xi,Ve],null,null),(t()(),yo(8,16777216,null,null,1,null,null,null,null,null,null,null)),oa(9,16384,[[3,4]],0,aL,[Xi,Ve],null,null)],null,null)}var SL=Vr({encapsulation:2,styles:[],data:{}});function CL(t){return Ia(2,[(t()(),yo(0,16777216,null,null,1,null,null,null,null,null,null,null)),oa(1,147456,null,0,QC,[Xi],null,null)],null,null)}var LL=Vr({encapsulation:2,styles:[],data:{}});function DL(t){return Ia(2,[(t()(),yo(0,16777216,null,null,1,null,null,null,null,null,null,null)),oa(1,147456,null,0,QC,[Xi],null,null)],null,null)}var TL=100,EL=od(function(){return function(t){this._elementRef=t}}(),"primary"),AL=new Lt("mat-progress-spinner-default-options",{providedIn:"root",factory:function(){return{diameter:TL}}}),PL=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n,i,r,o)||this;return a.mode="indeterminate",a}return r(e,t),e}(function(t){function e(e,n,i,r,o){var a=t.call(this,e)||this;return a._elementRef=e,a._document=i,a.animationMode=r,a.defaults=o,a._value=0,a._fallbackAnimation=!1,a._noopAnimations="NoopAnimations"===a.animationMode&&!!a.defaults&&!a.defaults._forceAnimations,a._diameter=TL,a.mode="determinate",a._fallbackAnimation=n.EDGE||n.TRIDENT,o&&(o.diameter&&(a.diameter=o.diameter),o.strokeWidth&&(a.strokeWidth=o.strokeWidth)),e.nativeElement.classList.add("mat-progress-spinner-indeterminate"+(a._fallbackAnimation?"-fallback":"")+"-animation"),a}return r(e,t),Object.defineProperty(e.prototype,"diameter",{get:function(){return this._diameter},set:function(t){this._diameter=Ku(t),this._fallbackAnimation||e.diameters.has(this._diameter)||this._attachStyleNode()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"strokeWidth",{get:function(){return this._strokeWidth||this.diameter/10},set:function(t){this._strokeWidth=Ku(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return"determinate"===this.mode?this._value:0},set:function(t){this._value=Math.max(0,Math.min(100,Ku(t)))},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_circleRadius",{get:function(){return(this.diameter-10)/2},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_viewBox",{get:function(){var t=2*this._circleRadius+this.strokeWidth;return"0 0 "+t+" "+t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_strokeCircumference",{get:function(){return 2*Math.PI*this._circleRadius},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_strokeDashOffset",{get:function(){return"determinate"===this.mode?this._strokeCircumference*(100-this._value)/100:this._fallbackAnimation&&"indeterminate"===this.mode?.2*this._strokeCircumference:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_circleStrokeWidth",{get:function(){return this.strokeWidth/this.diameter*100},enumerable:!0,configurable:!0}),e.prototype._attachStyleNode=function(){var t=e.styleTag;t||(t=this._document.createElement("style"),this._document.head.appendChild(t),e.styleTag=t),t&&t.sheet&&t.sheet.insertRule(this._getAnimationText(),0),e.diameters.add(this.diameter)},e.prototype._getAnimationText=function(){return"\n @keyframes mat-progress-spinner-stroke-rotate-DIAMETER {\n 0% { stroke-dashoffset: START_VALUE; transform: rotate(0); }\n 12.5% { stroke-dashoffset: END_VALUE; transform: rotate(0); }\n 12.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n 25% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n\n 25.0001% { stroke-dashoffset: START_VALUE; transform: rotate(270deg); }\n 37.5% { stroke-dashoffset: END_VALUE; transform: rotate(270deg); }\n 37.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n 50% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n\n 50.0001% { stroke-dashoffset: START_VALUE; transform: rotate(180deg); }\n 62.5% { stroke-dashoffset: END_VALUE; transform: rotate(180deg); }\n 62.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n 75% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n\n 75.0001% { stroke-dashoffset: START_VALUE; transform: rotate(90deg); }\n 87.5% { stroke-dashoffset: END_VALUE; transform: rotate(90deg); }\n 87.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n 100% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n }\n".replace(/START_VALUE/g,""+.95*this._strokeCircumference).replace(/END_VALUE/g,""+.2*this._strokeCircumference).replace(/DIAMETER/g,""+this.diameter)},e.diameters=new Set([TL]),e.styleTag=null,e}(EL)),OL=function(){return function(){}}(),YL=Vr({encapsulation:2,styles:[".mat-progress-spinner{display:block;position:relative}.mat-progress-spinner svg{position:absolute;transform:rotate(-90deg);top:0;left:0;transform-origin:center;overflow:visible}.mat-progress-spinner circle{fill:transparent;transform-origin:center;transition:stroke-dashoffset 225ms linear}._mat-animation-noopable.mat-progress-spinner circle{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate]{animation:mat-progress-spinner-linear-rotate 2s linear infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate]{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition-property:stroke;animation-duration:4s;animation-timing-function:cubic-bezier(.35,0,.25,1);animation-iteration-count:infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate]{animation:mat-progress-spinner-stroke-rotate-fallback 10s cubic-bezier(.87,.03,.33,1) infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate]{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate] circle{transition-property:stroke}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate] circle{transition:none;animation:none}@keyframes mat-progress-spinner-linear-rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes mat-progress-spinner-stroke-rotate-100{0%{stroke-dashoffset:268.60617px;transform:rotate(0)}12.5%{stroke-dashoffset:56.54867px;transform:rotate(0)}12.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(72.5deg)}25%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(72.5deg)}25.0001%{stroke-dashoffset:268.60617px;transform:rotate(270deg)}37.5%{stroke-dashoffset:56.54867px;transform:rotate(270deg)}37.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(161.5deg)}50%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(161.5deg)}50.0001%{stroke-dashoffset:268.60617px;transform:rotate(180deg)}62.5%{stroke-dashoffset:56.54867px;transform:rotate(180deg)}62.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(251.5deg)}75%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(251.5deg)}75.0001%{stroke-dashoffset:268.60617px;transform:rotate(90deg)}87.5%{stroke-dashoffset:56.54867px;transform:rotate(90deg)}87.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(341.5deg)}100%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(341.5deg)}}@keyframes mat-progress-spinner-stroke-rotate-fallback{0%{transform:rotate(0)}25%{transform:rotate(1170deg)}50%{transform:rotate(2340deg)}75%{transform:rotate(3510deg)}100%{transform:rotate(4680deg)}}"],data:{}});function RL(t){return Ia(0,[(t()(),yo(0,0,null,null,0,":svg:circle",[["cx","50%"],["cy","50%"]],[[1,"r",0],[4,"animation-name",null],[4,"stroke-dashoffset","px"],[4,"stroke-dasharray","px"],[4,"stroke-width","%"]],null,null,null,null))],null,function(t,e){var n=e.component;t(e,0,0,n._circleRadius,"mat-progress-spinner-stroke-rotate-"+n.diameter,n._strokeDashOffset,n._strokeCircumference,n._circleStrokeWidth)})}function IL(t){return Ia(0,[(t()(),yo(0,0,null,null,0,":svg:circle",[["cx","50%"],["cy","50%"]],[[1,"r",0],[4,"stroke-dashoffset","px"],[4,"stroke-dasharray","px"],[4,"stroke-width","%"]],null,null,null,null))],null,function(t,e){var n=e.component;t(e,0,0,n._circleRadius,n._strokeDashOffset,n._strokeCircumference,n._circleStrokeWidth)})}function FL(t){return Ia(2,[(t()(),yo(0,0,null,null,5,":svg:svg",[["focusable","false"],["preserveAspectRatio","xMidYMid meet"]],[[4,"width","px"],[4,"height","px"],[1,"viewBox",0]],null,null,null,null)),oa(1,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,RL)),oa(3,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,IL)),oa(5,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){t(e,1,0,"indeterminate"===e.component.mode),t(e,3,0,!0),t(e,5,0,!1)},function(t,e){var n=e.component;t(e,0,0,n.diameter,n.diameter,n._viewBox)})}var zL=function(){function t(t,e){this.dialogRef=t,this.data=e,this.imageURL="",this.title="Image",this.event=new kn,this.imageURL=e.imageURL,this.title=e.title}return t.prototype.ngOnInit=function(){},t.prototype.onOk=function(){this.dialogRef.close("Ok")},t.prototype.onLoadImage=function(){var t=document.createElement("a");t.href=this.imageURL,t.download="image.png",document.body.appendChild(t),t.style="display: none",t.click(),t.remove()},t.prototype.onMouseMove=function(t){t.style&&(t.style.backgroundPosition.xpos=-t.offsetX+"px",t.style.backgroundPosition.ypos=-t.offsetY+"px")},t}(),jL=function(){function t(t,e){this.router=t,this.dialog=e,this.loading=!0,this.showLoadImage=!1,this.imageloadingUrl=Bl.assetPath+"/assets/362.gif",this.imageSourceUrl="",this.imageSampleUrl="",this.cardTable=new wL,this.displayedCardColumns=["cardname","value"],this.displayedDeviceColumns=["deviceName","deviceValue"],this.deviceTable=new wL,this.cards=[],this.deviceProperties=[]}return t.prototype.ngOnInit=function(){},t.prototype.updateSelResult=function(t){var e=this;this.selectedResult!==t&&(this.cards=[],this.deviceProperties=[],this.selectedResult=t,this.selectedResult&&(this.loading=!0,this.showLoadImage=!0,this.imageSourceUrl=Bl.apiUrl+t.SourceImageURL,this.imageSampleUrl=Bl.apiUrl+t.SampleImageURL,this.cards.push({name:"Card ID",value:this.selectedResult.CardCode}),this.selectedResult.Device&&Object.entries(this.selectedResult.Device).forEach(function(t){var n=t[0],i=t[1];"LastLogin"===n&&(i=e.selectedResult.Device.getDateFormatString()),e.deviceProperties.push({name:n,value:i})})),this.cardTable.data=this.cards,this.deviceTable.data=this.deviceProperties)},t.prototype.onLoad=function(){this.loading=!1,this.showLoadImage=!1},t.prototype.ClickOnSource=function(){this.dialog.open(zL,{width:"50em",data:{imageURL:this.imageSourceUrl,title:"Source Image"}})},t.prototype.ClickOnSample=function(){this.dialog.open(zL,{width:"50em",data:{imageURL:this.imageSampleUrl,title:"Sample Image"}})},t}(),HL=Vr({encapsulation:0,styles:[["md-list-item[_ngcontent-%COMP%]{min-height:2em!important}mat-card-header[_ngcontent-%COMP%]{display:inline;text-align:center} .mat-card-content{padding-top:0;padding-bottom:0;margin-top:2px;align-content:center}mat-card[_ngcontent-%COMP%]{height:100%;padding:8px} .mat-card-header-text{margin-top:0;padding:0}.mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-list-item-content[_ngcontent-%COMP%], .mat-list .mat-list-item .mat-list-item-content{width:99vw}.circle[_ngcontent-%COMP%]{height:8em;width:8em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.circle-small[_ngcontent-%COMP%]{height:5em;width:5em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.mat-expansion-panel-body[_ngcontent-%COMP%]{padding:0!important}.topOffset[_ngcontent-%COMP%]{margin-top:1em}.contentColor[_ngcontent-%COMP%]{flex-flow:row wrap;box-sizing:border-box;display:flex;place-content:stretch space-between;align-items:stretch}.cardcontexttext[_ngcontent-%COMP%]{display:flex;margin-top:3px;text-align:center!important;font-size:10pt;align-items:center;justify-content:center}[_nghost-%COMP%]{display:block}.mat-card-image[_ngcontent-%COMP%]{margin:.1em!important;height:20em;width:auto}.loading-image[_ngcontent-%COMP%]{position:absolute;left:0;top:0;right:0;bottom:0;margin:auto}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden}mat-card-header[_ngcontent-%COMP%], td[_ngcontent-%COMP%]{font-size:10pt;font-weight:500}.wrapcolumn[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:nth-child(1){display:block;width:50px}.mat-column-cardname[_ngcontent-%COMP%]{word-wrap:break-word!important;white-space:unset!important;flex:0 0 40%!important;width:40%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}th.mat-header-cell[_ngcontent-%COMP%]{border-bottom-style:hidden}tr.mat-header-row[_ngcontent-%COMP%]{height:0}tr.mat-footer-row[_ngcontent-%COMP%], tr.mat-row[_ngcontent-%COMP%]{height:2em}.mat-card-header[_ngcontent-%COMP%]{min-height:1em;width:100%;padding:0;display:flex}.mat-card-header[_ngcontent-%COMP%] .mat-card-title[_ngcontent-%COMP%]{font-size:12pt}"]],data:{}});function NL(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","cardcontexttext"],["style","align-items: center"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,4,"div",[["class","circle"]],null,null,null,null,null)),oa(2,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(3,{"background-color":0}),oa(4,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0})],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,2,0,i);var r=t(e,5,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,4,0,r)},null)}function VL(t){return Ia(0,[(t()(),yo(0,0,null,null,10,"div",[["class","cardcontexttext"],["style","margin-top: 1em;"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(3,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(4,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(6,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(9,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(10,null,["",""]))],null,function(t,e){var n=e.component;t(e,4,0,n.selectedResult.RawColorRGB.r),t(e,7,0,n.selectedResult.RawColorRGB.g),t(e,10,0,n.selectedResult.RawColorRGB.b)})}function BL(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["fxLayout","column"],["style","text-align: center;position: relative;height:100%; margin-top: 2em;"]],null,null,null,null,null)),oa(1,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),go(16777216,null,null,1,null,NL)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,VL)),oa(5,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,1,0,"column"),t(e,3,0,n.selectedResult&&n.selectedResult.RawColorRGB),t(e,5,0,n.selectedResult&&n.selectedResult.RawColorRGB)},null)}function WL(t){return Ia(0,[(t()(),yo(0,0,null,null,18,"div",[["fxLayout","column"],["style","text-align: center;position: relative;height:100%; margin-top: 2em;"]],null,null,null,null,null)),oa(1,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(2,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,4,"div",[["class","circle"]],null,null,null,null,null)),oa(4,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0}),oa(6,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(7,{"background-color":0}),(t()(),yo(8,0,null,null,10,"div",[["class","cardcontexttext"],["style","margin-top: 1em;"]],null,null,null,null,null)),(t()(),yo(9,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(11,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(12,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(14,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(15,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(17,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(18,null,["",""]))],function(t,e){var n=e.component;t(e,1,0,"column");var i=t(e,5,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,4,0,i);var r=t(e,7,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,6,0,r)},function(t,e){var n=e.component;t(e,12,0,n.selectedResult.ProcessedColorRGB.r),t(e,15,0,n.selectedResult.ProcessedColorRGB.g),t(e,18,0,n.selectedResult.ProcessedColorRGB.b)})}function UL(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function GL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function qL(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function XL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function KL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function ZL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function JL(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function QL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function $L(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function tD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function eD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function nD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function iD(t){return Ia(0,[(t()(),yo(0,0,null,null,202,"div",[["fxFlex",""],["style","margin: 1em;"]],null,null,null,null,null)),oa(1,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(2,0,null,null,1,"h5",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Details"])),(t()(),yo(4,0,null,null,198,"div",[],null,null,null,null,null)),(t()(),yo(5,0,null,null,197,"div",[["class","topOffset"],["fxFlex","1 0 100%"],["fxFlexAlign"," start strech"],["fxLayout","row wrap"],["fxLayoutAlign","space-between"],["fxLayoutGap","10px grid"],["fxLayoutWrap",""],["style","max-height: 40em;"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(7,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(8,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(9,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(10,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(11,0,null,null,38,"div",[["fxFlex","40"],["fxLayoutWrap",""],["style","min-width: 10em;"]],null,null,null,null,null)),oa(12,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(13,0,null,null,36,"div",[["fxFlex","100"]],null,null,null,null,null)),oa(14,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(15,0,null,null,34,"div",[["fxFlexFill",""],["fxLayout","row"],["fxLayoutAlign","space-between stretch"],["fxLayoutGap","10px"]],null,null,null,null,null)),oa(16,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(17,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(18,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(19,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),(t()(),yo(20,0,null,null,16,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(21,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(22,0,null,null,14,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(23,49152,null,0,x_,[],null,null),(t()(),yo(24,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(25,49152,null,0,w_,[],null,null),(t()(),yo(26,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(27,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Source"])),(t()(),yo(29,0,null,0,7,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(30,16384,null,0,__,[],null,null),(t()(),yo(31,0,null,null,3,"div",[["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"hidden",0]],null,null,null,null)),oa(32,16384,null,0,b_,[],null,null),(t()(),yo(33,0,null,null,1,"mat-spinner",[["class","loading-image mat-spinner mat-progress-spinner"],["mode","indeterminate"],["role","progressbar"]],[[2,"_mat-animation-noopable",null],[4,"width","px"],[4,"height","px"]],null,null,FL,YL)),oa(34,49152,null,0,PL,[Ve,nc,[2,As],[2,Ow],AL],null,null),(t()(),yo(35,0,null,null,1,"img",[["alt","Source"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"hidden",0],[8,"src",4]],[[null,"load"],[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"load"===e&&(i=!1!==r.onLoad()&&i),"click"===e&&(i=!1!==r.ClickOnSource()&&i),i},null,null)),oa(36,16384,null,0,b_,[],null,null),(t()(),yo(37,0,null,null,12,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(38,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(39,0,null,null,10,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(40,49152,null,0,x_,[],null,null),(t()(),yo(41,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(42,49152,null,0,w_,[],null,null),(t()(),yo(43,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(44,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Sample "])),(t()(),yo(46,0,null,0,3,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(47,16384,null,0,__,[],null,null),(t()(),yo(48,0,null,null,1,"img",[["alt","Sample photo"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"src",4],[8,"hidden",0]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.ClickOnSample()&&i),i},null,null)),oa(49,16384,null,0,b_,[],null,null),(t()(),yo(50,0,null,null,37,"div",[["fxFlex","40"],["fxLayoutWrap",""],["style","min-width: 650px;"]],null,null,null,null,null)),oa(51,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(52,0,null,null,35,"div",[["fxFlex","100"]],null,null,null,null,null)),oa(53,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(54,0,null,null,33,"div",[["fxFlexFill",""],["fxLayout","row"],["fxLayoutAlign","space-between stretch"],["fxLayoutGap","10px"]],null,null,null,null,null)),oa(55,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(56,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(57,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(58,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),(t()(),yo(59,0,null,null,13,"div",[["fxFlex","50"],["fxFlexFill",""]],null,null,null,null,null)),oa(60,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),oa(61,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(62,0,null,null,10,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(63,49152,null,0,x_,[],null,null),(t()(),yo(64,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(65,49152,null,0,w_,[],null,null),(t()(),yo(66,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(67,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Raw Color"])),(t()(),yo(69,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"],["style","height:100%"]],null,null,null,null,null)),oa(70,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,BL)),oa(72,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(73,0,null,null,14,"div",[["fxFlex","50"],["fxFlexFill",""]],null,null,null,null,null)),oa(74,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),oa(75,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(76,0,null,null,11,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(77,49152,null,0,x_,[],null,null),(t()(),yo(78,0,null,0,5,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(79,49152,null,0,w_,[],null,null),(t()(),yo(80,0,null,1,3,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(81,16384,null,0,v_,[],null,null),(t()(),yo(82,0,null,null,1,"div",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Processed Color"])),(t()(),yo(84,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"],["style","height:100%"]],null,null,null,null,null)),oa(85,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,WL)),oa(87,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(88,0,null,null,114,"div",[["fxFlex","20"],["fxLayoutWrap",""],["style","min-width: 350px;"]],null,null,null,null,null)),oa(89,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(90,0,null,null,112,"div",[["fxLayout","column"],["fxLayoutGap","20px"]],null,null,null,null,null)),oa(91,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(92,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(93,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(94,49152,null,0,x_,[],null,null),(t()(),yo(95,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(96,49152,null,0,w_,[],null,null),(t()(),yo(97,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(98,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Card"])),(t()(),yo(100,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(101,16384,null,0,__,[],null,null),(t()(),yo(102,0,null,null,39,"div",[["style"," overflow-y: auto;"]],null,null,null,null,null)),(t()(),yo(103,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(104,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,1,{_contentColumnDefs:1}),wa(603979776,2,{_contentRowDefs:1}),wa(603979776,3,{_contentHeaderRowDefs:1}),wa(603979776,4,{_contentFooterRowDefs:1}),(t()(),yo(109,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(111,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,5,{cell:0}),wa(335544320,6,{headerCell:0}),wa(335544320,7,{footerCell:0}),la(2048,[[1,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,UL)),oa(117,16384,null,0,hL,[Mn],null,null),la(2048,[[6,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,GL)),oa(120,16384,null,0,dL,[Mn],null,null),la(2048,[[5,4]],VC,null,[dL]),(t()(),yo(122,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(124,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,8,{cell:0}),wa(335544320,9,{headerCell:0}),wa(335544320,10,{footerCell:0}),la(2048,[[1,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,qL)),oa(130,16384,null,0,hL,[Mn],null,null),la(2048,[[9,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,XL)),oa(133,16384,null,0,dL,[Mn],null,null),la(2048,[[8,4]],VC,null,[dL]),(t()(),yo(135,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,KL)),oa(137,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[3,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,ZL)),oa(140,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[2,4]],JC,null,[yL]),(t()(),yo(142,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(143,49152,null,0,x_,[],null,null),(t()(),yo(144,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(145,49152,null,0,w_,[],null,null),(t()(),yo(146,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(147,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Device"])),(t()(),yo(149,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(150,16384,null,0,__,[],null,null),(t()(),yo(151,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(152,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(153,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,11,{_contentColumnDefs:1}),wa(603979776,12,{_contentRowDefs:1}),wa(603979776,13,{_contentHeaderRowDefs:1}),wa(603979776,14,{_contentFooterRowDefs:1}),(t()(),yo(158,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(160,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,15,{cell:0}),wa(335544320,16,{headerCell:0}),wa(335544320,17,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,JL)),oa(166,16384,null,0,hL,[Mn],null,null),la(2048,[[16,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,QL)),oa(169,16384,null,0,dL,[Mn],null,null),la(2048,[[15,4]],VC,null,[dL]),(t()(),yo(171,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(173,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,18,{cell:0}),wa(335544320,19,{headerCell:0}),wa(335544320,20,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,$L)),oa(179,16384,null,0,hL,[Mn],null,null),la(2048,[[19,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,tD)),oa(182,16384,null,0,dL,[Mn],null,null),la(2048,[[18,4]],VC,null,[dL]),(t()(),yo(184,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,eD)),oa(186,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[13,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,nD)),oa(189,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[12,4]],JC,null,[yL]),(t()(),yo(191,0,null,null,11,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(192,49152,null,0,x_,[],null,null),(t()(),yo(193,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(194,49152,null,0,w_,[],null,null),(t()(),yo(195,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(196,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["DeltaE"])),(t()(),yo(198,0,null,0,4,"mat-card-content",[["class","topOffset mat-card-content"]],null,null,null,null,null)),oa(199,16384,null,0,__,[],null,null),(t()(),yo(200,0,null,null,2,"div",[["class","cardcontexttext"],["style","font-size: 12pt"]],null,null,null,null,null)),(t()(),Oa(201,null,[" ",""])),Ta(202,2)],function(t,e){var n=e.component;t(e,1,0,""),t(e,6,0,"row wrap"),t(e,7,0,"10px grid"),t(e,8,0,"space-between"),t(e,9,0," start strech"),t(e,10,0,"1 0 100%"),t(e,12,0,"40"),t(e,14,0,"100"),t(e,16,0,"row"),t(e,17,0,"10px"),t(e,18,0,"space-between stretch"),t(e,21,0,"50"),t(e,38,0,"50"),t(e,51,0,"40"),t(e,53,0,"100"),t(e,55,0,"row"),t(e,56,0,"10px"),t(e,57,0,"space-between stretch"),t(e,61,0,"50"),t(e,72,0,n.selectedResult),t(e,75,0,"50"),t(e,87,0,n.selectedResult),t(e,89,0,"20"),t(e,91,0,"column"),t(e,92,0,"20px"),t(e,104,0,n.cardTable),t(e,111,0,"cardname"),t(e,124,0,"value"),t(e,137,0,n.displayedCardColumns),t(e,140,0,n.displayedCardColumns),t(e,153,0,n.deviceTable),t(e,160,0,"deviceName"),t(e,173,0,"deviceValue"),t(e,186,0,n.displayedDeviceColumns),t(e,189,0,n.displayedDeviceColumns)},function(t,e){var n=e.component;t(e,31,0,!n.showLoadImage),t(e,33,0,Go(e,34)._noopAnimations,Go(e,34).diameter,Go(e,34).diameter),t(e,35,0,n.loading,n.imageSourceUrl),t(e,48,0,n.imageSampleUrl,""===n.imageSampleUrl);var i=n.selectedResult?jr(e,201,0,t(e,202,0,Go(e.parent,0),n.selectedResult.DeltaE,"1.2")):0;t(e,201,0,i)})}function rD(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],null,null,null,null,null)),oa(1,16384,null,0,b_,[],null,null),(t()(),yo(2,0,null,null,1,"mat-spinner",[["class","loading-image mat-spinner mat-progress-spinner"],["mode","indeterminate"],["role","progressbar"]],[[2,"_mat-animation-noopable",null],[4,"width","px"],[4,"height","px"]],null,null,FL,YL)),oa(3,49152,null,0,PL,[Ve,nc,[2,As],[2,Ow],AL],null,null)],null,function(t,e){t(e,2,0,Go(e,3)._noopAnimations,Go(e,3).diameter,Go(e,3).diameter)})}function oD(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,4,"div",[["class","circle-small"]],null,null,null,null,null)),oa(2,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(3,{"background-color":0}),oa(4,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0})],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,2,0,i);var r=t(e,5,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,4,0,r)},null)}function aD(t){return Ia(0,[(t()(),yo(0,0,null,null,10,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(3,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(4,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(6,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(9,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(10,null,["",""]))],null,function(t,e){var n=e.component;t(e,4,0,n.selectedResult.RawColorRGB.r),t(e,7,0,n.selectedResult.RawColorRGB.g),t(e,10,0,n.selectedResult.RawColorRGB.b)})}function lD(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,4,"div",[["class","circle-small"]],null,null,null,null,null)),oa(2,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(3,{"background-color":0}),oa(4,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0})],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,2,0,i);var r=t(e,5,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,4,0,r)},null)}function sD(t){return Ia(0,[(t()(),yo(0,0,null,null,10,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(3,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(4,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(6,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(9,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(10,null,["",""]))],null,function(t,e){var n=e.component;t(e,4,0,n.selectedResult.ProcessedColorRGB.r),t(e,7,0,n.selectedResult.ProcessedColorRGB.g),t(e,10,0,n.selectedResult.ProcessedColorRGB.b)})}function uD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function cD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function dD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function hD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function pD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function fD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function mD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function gD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function yD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function _D(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function vD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function bD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function xD(t){return Ia(0,[(t()(),yo(0,0,null,null,193,"div",[["fxFlex",""],["style","margin: 1em;"]],null,null,null,null,null)),oa(1,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(2,0,null,null,1,"h5",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Details"])),(t()(),yo(4,0,null,null,189,"div",[],null,null,null,null,null)),(t()(),yo(5,0,null,null,188,"div",[["fxLayout","column"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(7,0,null,null,33,"div",[["class","topOffset"],["fxFlex","100"],["fxLayoutAlign","center"]],null,null,null,null,null)),oa(8,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(9,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(10,0,null,null,30,"div",[["fxLayout","row"],["fxLayoutGap","20px"],["style","width: 100%;"]],null,null,null,null,null)),oa(11,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(12,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(13,0,null,null,14,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(14,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(15,0,null,null,12,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(16,49152,null,0,x_,[],null,null),(t()(),yo(17,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(18,49152,null,0,w_,[],null,null),(t()(),yo(19,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(20,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Source"])),(t()(),yo(22,0,null,0,5,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(23,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,rD)),oa(25,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(26,0,null,null,1,"img",[["alt","Source picture"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"hidden",0],[8,"src",4]],[[null,"load"],[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"load"===e&&(i=!1!==r.onLoad()&&i),"click"===e&&(i=!1!==r.ClickOnSource()&&i),i},null,null)),oa(27,16384,null,0,b_,[],null,null),(t()(),yo(28,0,null,null,12,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(29,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(30,0,null,null,10,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(31,49152,null,0,x_,[],null,null),(t()(),yo(32,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(33,49152,null,0,w_,[],null,null),(t()(),yo(34,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(35,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Sample "])),(t()(),yo(37,0,null,0,3,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(38,16384,null,0,__,[],null,null),(t()(),yo(39,0,null,null,1,"img",[["alt","Sample picture"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"src",4],[8,"hidden",0]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.ClickOnSample()&&i),i},null,null)),oa(40,16384,null,0,b_,[],null,null),(t()(),yo(41,0,null,null,35,"div",[["fxFlex","100"]],null,null,null,null,null)),oa(42,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(43,0,null,null,33,"div",[["class","topOffset"],["fxLayout","row"],["fxLayoutGap","20px"]],null,null,null,null,null)),oa(44,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(45,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(46,0,null,null,14,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(47,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(48,0,null,null,12,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(49,49152,null,0,x_,[],null,null),(t()(),yo(50,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(51,49152,null,0,w_,[],null,null),(t()(),yo(52,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(53,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Raw Color"])),(t()(),go(16777216,null,0,1,null,oD)),oa(56,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(57,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"]],null,null,null,null,null)),oa(58,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,aD)),oa(60,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(61,0,null,null,15,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(62,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(63,0,null,null,13,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(64,49152,null,0,x_,[],null,null),(t()(),yo(65,0,null,0,5,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(66,49152,null,0,w_,[],null,null),(t()(),yo(67,0,null,1,3,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(68,16384,null,0,v_,[],null,null),(t()(),yo(69,0,null,null,1,"div",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Processed Color"])),(t()(),go(16777216,null,0,1,null,lD)),oa(72,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(73,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"]],null,null,null,null,null)),oa(74,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,sD)),oa(76,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(77,0,null,null,51,"div",[["class","topOffset"],["fxFlex","100"]],null,null,null,null,null)),oa(78,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(79,0,null,null,49,"div",[],null,null,null,null,null)),(t()(),yo(80,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(81,49152,null,0,x_,[],null,null),(t()(),yo(82,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(83,49152,null,0,w_,[],null,null),(t()(),yo(84,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(85,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Card"])),(t()(),yo(87,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(88,16384,null,0,__,[],null,null),(t()(),yo(89,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(90,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(91,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,21,{_contentColumnDefs:1}),wa(603979776,22,{_contentRowDefs:1}),wa(603979776,23,{_contentHeaderRowDefs:1}),wa(603979776,24,{_contentFooterRowDefs:1}),(t()(),yo(96,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(98,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,25,{cell:0}),wa(335544320,26,{headerCell:0}),wa(335544320,27,{footerCell:0}),la(2048,[[21,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,uD)),oa(104,16384,null,0,hL,[Mn],null,null),la(2048,[[26,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,cD)),oa(107,16384,null,0,dL,[Mn],null,null),la(2048,[[25,4]],VC,null,[dL]),(t()(),yo(109,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(111,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,28,{cell:0}),wa(335544320,29,{headerCell:0}),wa(335544320,30,{footerCell:0}),la(2048,[[21,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,dD)),oa(117,16384,null,0,hL,[Mn],null,null),la(2048,[[29,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,hD)),oa(120,16384,null,0,dL,[Mn],null,null),la(2048,[[28,4]],VC,null,[dL]),(t()(),yo(122,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,pD)),oa(124,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[23,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,fD)),oa(127,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[22,4]],JC,null,[yL]),(t()(),yo(129,0,null,null,50,"div",[["class","topOffset"],["fxFlex","100"]],null,null,null,null,null)),oa(130,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(131,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(132,49152,null,0,x_,[],null,null),(t()(),yo(133,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(134,49152,null,0,w_,[],null,null),(t()(),yo(135,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(136,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Device"])),(t()(),yo(138,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(139,16384,null,0,__,[],null,null),(t()(),yo(140,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(141,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(142,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,31,{_contentColumnDefs:1}),wa(603979776,32,{_contentRowDefs:1}),wa(603979776,33,{_contentHeaderRowDefs:1}),wa(603979776,34,{_contentFooterRowDefs:1}),(t()(),yo(147,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(149,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,35,{cell:0}),wa(335544320,36,{headerCell:0}),wa(335544320,37,{footerCell:0}),la(2048,[[31,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,mD)),oa(155,16384,null,0,hL,[Mn],null,null),la(2048,[[36,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,gD)),oa(158,16384,null,0,dL,[Mn],null,null),la(2048,[[35,4]],VC,null,[dL]),(t()(),yo(160,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(162,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,38,{cell:0}),wa(335544320,39,{headerCell:0}),wa(335544320,40,{footerCell:0}),la(2048,[[31,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,yD)),oa(168,16384,null,0,hL,[Mn],null,null),la(2048,[[39,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,_D)),oa(171,16384,null,0,dL,[Mn],null,null),la(2048,[[38,4]],VC,null,[dL]),(t()(),yo(173,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,vD)),oa(175,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[33,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,bD)),oa(178,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[32,4]],JC,null,[yL]),(t()(),yo(180,0,null,null,13,"div",[["class","topOffset"],["fxFlex","100"]],null,null,null,null,null)),oa(181,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(182,0,null,null,11,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(183,49152,null,0,x_,[],null,null),(t()(),yo(184,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(185,49152,null,0,w_,[],null,null),(t()(),yo(186,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(187,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["DeltaE"])),(t()(),yo(189,0,null,0,4,"mat-card-content",[["class","topOffset cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(190,16384,null,0,__,[],null,null),(t()(),yo(191,0,null,null,2,"div",[["class","cardcontexttext"],["style","font-size:16pt"]],null,null,null,null,null)),(t()(),Oa(192,null,[" ",""])),Ta(193,2)],function(t,e){var n=e.component;t(e,1,0,""),t(e,6,0,"column"),t(e,8,0,"center"),t(e,9,0,"100"),t(e,11,0,"row"),t(e,12,0,"20px"),t(e,14,0,"50"),t(e,25,0,n.showLoadImage),t(e,29,0,"50"),t(e,42,0,"100"),t(e,44,0,"row"),t(e,45,0,"20px"),t(e,47,0,"50"),t(e,56,0,n.selectedResult&&n.selectedResult.RawColorRGB),t(e,60,0,n.selectedResult&&n.selectedResult.RawColorRGB),t(e,62,0,"50"),t(e,72,0,n.selectedResult&&n.selectedResult.ProcessedColorRGB),t(e,76,0,n.selectedResult&&n.selectedResult.ProcessedColorRGB),t(e,78,0,"100"),t(e,91,0,n.cardTable),t(e,98,0,"cardname"),t(e,111,0,"value"),t(e,124,0,n.displayedCardColumns),t(e,127,0,n.displayedCardColumns),t(e,130,0,"100"),t(e,142,0,n.deviceTable),t(e,149,0,"deviceName"),t(e,162,0,"deviceValue"),t(e,175,0,n.displayedDeviceColumns),t(e,178,0,n.displayedDeviceColumns),t(e,181,0,"100")},function(t,e){var n=e.component;t(e,26,0,n.loading,n.imageSourceUrl),t(e,39,0,n.imageSampleUrl,""===n.imageSampleUrl);var i=n.selectedResult?jr(e,192,0,t(e,193,0,Go(e.parent,0),n.selectedResult.DeltaE,"1.2")):0;t(e,192,0,i)})}function wD(t){return Ia(0,[aa(0,Ts,[br]),(t()(),go(16777216,null,null,1,null,iD)),oa(2,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,xD)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,2,0,"statistics"===n.view),t(e,4,0,"result"===n.view)},null)}var kD=function(){function t(t){this.http=t,this.emails=[],this.deviceModels=[],this.httpOptions={headers:new $d({"Content-Type":"application/json"})}}return t.prototype.getEmails=function(t){var e=(new nh).set("searchString",t);return this.http.get(Bl.apiUrl+"/api/Devices/GetEmails",{params:e}).pipe(nt(this.extractEmails),Jh(this.handleError("getEmails")))},t.prototype.extractEmails=function(t){return this.emails=[],this.emails=t||[],this.emails},t.prototype.getDeviceModels=function(t){new nh({fromString:t});var e=(new nh).set("searchString",t);return this.http.get(Bl.apiUrl+"/api/Devices/GetModels",{params:e}).pipe(nt(this.extractDeviceModels),Jh(this.handleError("getDeviceModels")))},t.prototype.extractDeviceModels=function(t){return this.deviceModels=[],this.deviceModels=t||[],this.deviceModels},t.prototype.handleError=function(t,e){return void 0===t&&(t="operation"),function(n){return console.error(n),console.log(t+" failed: "+n.message),cc(e)}},t.ngInjectableDef=St({factory:function(){return new t(ie(ph))},token:t,providedIn:"root"}),t}(),MD=function(){function t(t,e,n,i,r,o,a){this.resultService=t,this.router=e,this.route=n,this.location=i,this.deviceService=r,this.matIconRegistry=o,this.domSanitizer=a,this.isValidFromDate=!1,this.isValidToDate=!1,this.fromDateParam="",this.toDateParam="",this.emailParam="",this.devicemodelParam="",this.fromDate=new wv("",R_.required),this.toDate=new wv(this.toDateParam,R_.required),this.email=new wv("",R_.email),this.devicemodel=new wv(""),this.detectionResults=[],this.selectedResultID=0,this.matIconRegistry.addSvgIcon("icon_funnel",this.domSanitizer.bypassSecurityTrustResourceUrl(Bl.assetPath+"/assets/filter.svg"))}return Object.defineProperty(t.prototype,"content",{set:function(t){this.resultComponent=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"sccontent",{set:function(t){this.scatter3DChart=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"plcontent",{set:function(t){this.scatter2DChart=t},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.route.queryParams.subscribe(function(e){if(e){if(void 0===e.From){var n=new Date;t.fromDateParam=n.toJSON(),t.fromDate.setValue(n)}else t.fromDateParam=e.From,t.fromDate.setValue(new Date(Date.parse(t.fromDateParam)));if(void 0===e.To){var i=new Date;t.toDateParam=i.toJSON(),t.toDate.setValue(i)}else t.toDateParam=e.To,t.toDate.setValue(new Date(Date.parse(t.toDateParam)));t.emailParam=void 0===e.email?"":e.email,t.email.setValue(t.emailParam),t.devicemodelParam=void 0===e.devicemodel?"":e.devicemodel,t.devicemodel.setValue(t.devicemodelParam),t.selectedResultID=void 0===e.selectedResultID?0:e.selectedResultID,t.getResults()}}),this.email.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){t.email.setValue(e.trim(),{emitEvent:!1});var n=e.trim();n.length>0?t.deviceService.getEmails(n).subscribe(function(e){t.registeredEmails=e}):t.registeredEmails=[]}),this.devicemodel.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){var n=e.trim();n.length>0?t.deviceService.getDeviceModels(n).subscribe(function(e){t.registeredDevices=e}):t.registeredDevices=[]})},t.prototype.ngAfterViewInit=function(){var t=this;this.picker._selectedChanged.subscribe(function(e){t.isValidFromDate=Vd.isMoment(e)},function(t){throw Error(t)}),this.picker2._selectedChanged.subscribe(function(e){t.isValidToDate=Vd.isMoment(e)},function(t){throw Error(t)})},t.prototype.filteringResults=function(){this.fromDateParam=this.fromDate.value.toISOString(),this.toDateParam=this.toDate.value.toISOString(),this.emailParam=this.email.value.trim(),this.devicemodelParam=this.devicemodel.value.trim(),this.handleFiltersChange()},t.prototype.handleFiltersChange=function(){this.router.navigate(["/statistics"],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam},queryParamsHandling:"merge"})},t.prototype.getResults=function(){var t=this;""!==this.fromDateParam&&""!==this.toDateParam&&this.resultService.getResults(this.fromDateParam,this.toDateParam,this.devicemodelParam,this.emailParam).subscribe(function(e){if(t.detectionResults=e||[],t.scatter2DChart.updateResults(t.detectionResults),t.scatter3DChart.updateResults(t.detectionResults),t.selectedResultID){var n=t.selectedResultID,i=t.detectionResults.filter(function(t){return t.Guid===n});i.length>0&&(t.selectedPoint=i[0],t.resultComponent&&t.resultComponent.updateSelResult(t.selectedPoint))}})},t.prototype.selectResult=function(t){this.selectedPoint=t,this.selectedResultID=t.Guid;var e=this.router.createUrlTree([],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam,selectedResultID:this.selectedResultID},preserveFragment:!0});this.location.go(e.toString()),this.resultComponent&&this.resultComponent.updateSelResult(this.selectedPoint)},t.prototype.hover3DPoint=function(t){this.scatter2DChart.setHoverPoint(t)},t}(),SD=Vr({encapsulation:0,styles:[[".statistic[_ngcontent-%COMP%]{margin-left:4em;height:100%;margin-top:8px}.container[_ngcontent-%COMP%]{min-width:900px}mat-form-field[_ngcontent-%COMP%]{margin-right:2.5rem;width:calc(100% - 2.5rem)}.cardinforow[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;box-sizing:border-box;display:inline-block;height:10em;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content;width:92%;margin:0!important}md-list-item[_ngcontent-%COMP%]{min-height:70px!important}mat-card-header[_ngcontent-%COMP%]{display:inline;text-align:center}.mat-expansion-panel-body[_ngcontent-%COMP%]{padding:0!important}.content[_ngcontent-%COMP%]{margin:15px;overflow:hidden}td[_ngcontent-%COMP%]{font-size:14pt;font-weight:500}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:1em;font-size:14pt;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}.mat-table__wrapper[_ngcontent-%COMP%] .mat-table[_ngcontent-%COMP%]{min-width:auto!important;width:100%!important}.mat-header-row[_ngcontent-%COMP%], .mat-row[_ngcontent-%COMP%]{width:100%}.card[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;margin:1rem;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:92%;align-content:center}.charttable[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;height:24em;margin:1rem;position:relative;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content;align-items:center;background-color:#fff}.tp-form[_ngcontent-%COMP%]{min-width:150px;max-width:500px;width:100%} .cdk-overlay-pane{width:auto!important}"]],data:{}});function CD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[29,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function LD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(1,16384,[[25,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,[" Please enter a valid email address "]))],null,function(t,e){t(e,0,0,Go(e,1).id)})}function DD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[38,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function TD(t){return Ia(0,[wa(402653184,1,{content:0}),wa(402653184,2,{picker:0}),wa(402653184,3,{picker2:0}),wa(402653184,4,{sccontent:0}),wa(402653184,5,{plcontent:0}),(t()(),yo(5,0,null,null,143,"div",[["fxFlexAlign","center start"],["fxLayout","column"],["style","padding-top: 65px; justify-content:center; align-items: center; padding-bottom: 30px;"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(7,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),(t()(),yo(8,0,null,null,117,"div",[["class","card"]],null,null,null,null,null)),(t()(),yo(9,0,null,null,116,"div",[["fxLayout","row"],["style","height: 4em; padding: 1em; margin-top: 1em;"]],null,null,null,null,null)),oa(10,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(11,0,null,null,114,"div",[["fxFill",""],["fxFlex","98"],["fxLayout",""],["fxLayoutAlign","strech center"]],null,null,null,null,null)),oa(12,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(13,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(14,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),oa(15,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(16,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(17,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,6,{_control:0}),wa(335544320,7,{_placeholderChild:0}),wa(335544320,8,{_labelChild:0}),wa(603979776,9,{_errorChildren:1}),wa(603979776,10,{_hintChildren:1}),wa(603979776,11,{_prefixChildren:1}),wa(603979776,12,{_suffixChildren:1}),(t()(),yo(25,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","From Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,26)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,26).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,26)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,26)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,28)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,28)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,28)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,28)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,35)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,35)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,35)._onInput()&&i),i},null,null)),oa(26,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(27,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(28,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(31,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(33,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(35,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[6,4]],Qv,null,[mk]),(t()(),yo(37,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,38)._button.focus()&&i),i},dC,uC)),oa(38,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,13,{_customIcon:0}),oa(40,16384,[[12,4]],0,ib,[],null,null),(t()(),yo(41,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(42,180224,[[2,4],[3,4],["picker1",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(43,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(44,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,14,{_control:0}),wa(335544320,15,{_placeholderChild:0}),wa(335544320,16,{_labelChild:0}),wa(603979776,17,{_errorChildren:1}),wa(603979776,18,{_hintChildren:1}),wa(603979776,19,{_prefixChildren:1}),wa(603979776,20,{_suffixChildren:1}),(t()(),yo(52,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","To Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,53)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,53).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,53)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,53)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,55)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,55)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,55)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,55)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,62)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,62)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,62)._onInput()&&i),i},null,null)),oa(53,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(54,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(55,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(58,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(60,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(62,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[14,4]],Qv,null,[mk]),(t()(),yo(64,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,65)._button.focus()&&i),i},dC,uC)),oa(65,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,21,{_customIcon:0}),oa(67,16384,[[20,4]],0,ib,[],null,null),(t()(),yo(68,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(69,180224,[[2,4],[3,4],["picker2",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(70,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(71,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,22,{_control:0}),wa(335544320,23,{_placeholderChild:0}),wa(335544320,24,{_labelChild:0}),wa(603979776,25,{_errorChildren:1}),wa(603979776,26,{_hintChildren:1}),wa(603979776,27,{_prefixChildren:1}),wa(603979776,28,{_suffixChildren:1}),(t()(),yo(79,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","email"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,80)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,80).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,80)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,80)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,81)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,81)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,81)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,81)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,86)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,86)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,86)._onInput()&&i),i},null,null)),oa(80,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(81,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(83,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(85,16384,null,0,gv,[[4,q_]],null,null),oa(86,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[22,4]],Qv,null,[mk]),(t()(),yo(88,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(90,1097728,[["auto",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,29,{options:1}),wa(603979776,30,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,CD)),oa(94,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),go(16777216,null,5,1,null,LD)),oa(96,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(97,0,null,null,24,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(98,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,31,{_control:0}),wa(335544320,32,{_placeholderChild:0}),wa(335544320,33,{_labelChild:0}),wa(603979776,34,{_errorChildren:1}),wa(603979776,35,{_hintChildren:1}),wa(603979776,36,{_prefixChildren:1}),wa(603979776,37,{_suffixChildren:1}),(t()(),yo(106,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","device model"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,107)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,107).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,107)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,107)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,108)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,108)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,108)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,108)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,113)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,113)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,113)._onInput()&&i),i},null,null)),oa(107,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(108,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(110,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(112,16384,null,0,gv,[[4,q_]],null,null),oa(113,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[31,4]],Qv,null,[mk]),(t()(),yo(115,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(117,1097728,[["autod",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,38,{options:1}),wa(603979776,39,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,DD)),oa(121,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(122,0,null,null,3,"button",[["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.filteringResults()&&i),i},Nk,Hk)),oa(123,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],color:[1,"color"]},null),(t()(),yo(124,0,null,0,1,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"],["style","vertical-align: top; height:auto;"],["svgIcon","icon_funnel"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(125,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],{svgIcon:[0,"svgIcon"]},null),(t()(),yo(126,0,null,null,14,"div",[["class","cardinforow"],["fxFlex","1 1 100%"],["fxFlexAlign","space-between strech"],["fxLayout","row wrap"],["fxLayoutGap","10px grid"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(127,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(128,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(129,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(130,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(131,0,null,null,4,"div",[["class","charttable"],["fxFlex","48"]],null,null,null,null,null)),oa(132,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(133,0,null,null,2,"div",[["class","statistics"],["style","margin-left: 4em; margin-top: 4px; height:100%"]],null,null,null,null,null)),(t()(),yo(134,0,null,null,1,"app-scatter3-dchart",[],null,[[null,"emitPass"],[null,"hoverPoint"]],function(t,e,n){var i=!0,r=t.component;return"emitPass"===e&&(i=!1!==r.selectResult(n)&&i),"hoverPoint"===e&&(i=!1!==r.hover3DPoint(n)&&i),i},u_,s_)),oa(135,114688,[[4,4],["scatter3D",4]],0,l_,[],null,{emitPass:"emitPass",hoverPoint:"hoverPoint"}),(t()(),yo(136,0,null,null,4,"div",[["class","charttable"],["fxFlex","48"]],null,null,null,null,null)),oa(137,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(138,0,null,null,2,"div",[["class","statistics"],["style","margin-left: 4em; height:100%; margin-top: 8px;"]],null,null,null,null,null)),(t()(),yo(139,0,null,null,1,"app-scatter2-dplot",[],null,[[null,"emitSelResult"]],function(t,e,n){var i=!0;return"emitSelResult"===e&&(i=!1!==t.component.selectResult(n)&&i),i},HC,jC)),oa(140,114688,[[5,4],["scatter2D",4]],0,zC,[],null,{emitSelResult:"emitSelResult"}),(t()(),yo(141,0,null,null,7,"div",[["fxFlex","100"],["style"," margin-top: 16px; width:92%; height: auto;"]],null,null,null,null,null)),oa(142,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(143,0,null,null,5,"div",[["class","cardinforow"],["fxFlex","1 1 100%"],["fxFlexAlign","space-between strech"],["fxLayout","row wrap"],["style","height: auto;"]],null,null,null,null,null)),oa(144,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(145,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(146,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(147,0,null,null,1,"app-details",[["style","width: 98%;\n margin-left: 1em; "]],null,null,null,wD,HL)),oa(148,114688,[[1,4],["details",4]],0,jL,[Am,DS],{selectedResult:[0,"selectedResult"],view:[1,"view"]},null)],function(t,e){var n=e.component;t(e,6,0,"column"),t(e,7,0,"center start"),t(e,10,0,"row"),t(e,12,0,""),t(e,13,0,"strech center"),t(e,15,0,"98"),t(e,27,0,""),t(e,28,0,n.picker),t(e,31,0,n.fromDate),t(e,35,0,"From Date",""),t(e,38,0,n.picker),t(e,54,0,""),t(e,55,0,Go(e,69)),t(e,58,0,n.toDate),t(e,62,0,"To Date",""),t(e,65,0,Go(e,69)),t(e,81,0,Go(e,90)),t(e,83,0,n.email),t(e,86,0,"email","text"),t(e,90,0,""),t(e,94,0,n.registeredEmails),t(e,96,0,n.email.hasError("email")&&!n.email.hasError("required")),t(e,108,0,Go(e,117)),t(e,110,0,n.devicemodel),t(e,113,0,"device model","text"),t(e,117,0,""),t(e,121,0,n.registeredDevices),t(e,123,0,!(n.fromDate.valid&&n.toDate.valid&&n.email.valid),"primary"),t(e,125,0,"icon_funnel"),t(e,127,0,"row wrap"),t(e,128,0,"10px grid"),t(e,129,0,"space-between strech"),t(e,130,0,"1 1 100%"),t(e,132,0,"48"),t(e,135,0),t(e,137,0,"48"),t(e,140,0),t(e,142,0,"100"),t(e,144,0,"row wrap"),t(e,145,0,"space-between strech"),t(e,146,0,"1 1 100%"),t(e,148,0,n.selectedPoint,"statistics")},function(t,e){t(e,16,1,["standard"==Go(e,17).appearance,"fill"==Go(e,17).appearance,"outline"==Go(e,17).appearance,"legacy"==Go(e,17).appearance,Go(e,17)._control.errorState,Go(e,17)._canLabelFloat,Go(e,17)._shouldLabelFloat(),Go(e,17)._hasFloatingLabel(),Go(e,17)._hideControlPlaceholder(),Go(e,17)._control.disabled,Go(e,17)._control.autofilled,Go(e,17)._control.focused,"accent"==Go(e,17).color,"warn"==Go(e,17).color,Go(e,17)._shouldForward("untouched"),Go(e,17)._shouldForward("touched"),Go(e,17)._shouldForward("pristine"),Go(e,17)._shouldForward("dirty"),Go(e,17)._shouldForward("valid"),Go(e,17)._shouldForward("invalid"),Go(e,17)._shouldForward("pending"),!Go(e,17)._animationsEnabled]),t(e,25,1,[Go(e,27).required?"":null,!0,(null==Go(e,28)._datepicker?null:Go(e,28)._datepicker.opened)&&Go(e,28)._datepicker.id||null,Go(e,28).min?Go(e,28)._dateAdapter.toIso8601(Go(e,28).min):null,Go(e,28).max?Go(e,28)._dateAdapter.toIso8601(Go(e,28).max):null,Go(e,28).disabled,Go(e,33).ngClassUntouched,Go(e,33).ngClassTouched,Go(e,33).ngClassPristine,Go(e,33).ngClassDirty,Go(e,33).ngClassValid,Go(e,33).ngClassInvalid,Go(e,33).ngClassPending,Go(e,35)._isServer,Go(e,35).id,Go(e,35).placeholder,Go(e,35).disabled,Go(e,35).required,Go(e,35).readonly&&!Go(e,35)._isNativeSelect||null,Go(e,35)._ariaDescribedby||null,Go(e,35).errorState,Go(e,35).required.toString()]),t(e,37,0,-1,Go(e,38).datepicker&&Go(e,38).datepicker.opened,Go(e,38).datepicker&&"accent"===Go(e,38).datepicker.color,Go(e,38).datepicker&&"warn"===Go(e,38).datepicker.color),t(e,43,1,["standard"==Go(e,44).appearance,"fill"==Go(e,44).appearance,"outline"==Go(e,44).appearance,"legacy"==Go(e,44).appearance,Go(e,44)._control.errorState,Go(e,44)._canLabelFloat,Go(e,44)._shouldLabelFloat(),Go(e,44)._hasFloatingLabel(),Go(e,44)._hideControlPlaceholder(),Go(e,44)._control.disabled,Go(e,44)._control.autofilled,Go(e,44)._control.focused,"accent"==Go(e,44).color,"warn"==Go(e,44).color,Go(e,44)._shouldForward("untouched"),Go(e,44)._shouldForward("touched"),Go(e,44)._shouldForward("pristine"),Go(e,44)._shouldForward("dirty"),Go(e,44)._shouldForward("valid"),Go(e,44)._shouldForward("invalid"),Go(e,44)._shouldForward("pending"),!Go(e,44)._animationsEnabled]),t(e,52,1,[Go(e,54).required?"":null,!0,(null==Go(e,55)._datepicker?null:Go(e,55)._datepicker.opened)&&Go(e,55)._datepicker.id||null,Go(e,55).min?Go(e,55)._dateAdapter.toIso8601(Go(e,55).min):null,Go(e,55).max?Go(e,55)._dateAdapter.toIso8601(Go(e,55).max):null,Go(e,55).disabled,Go(e,60).ngClassUntouched,Go(e,60).ngClassTouched,Go(e,60).ngClassPristine,Go(e,60).ngClassDirty,Go(e,60).ngClassValid,Go(e,60).ngClassInvalid,Go(e,60).ngClassPending,Go(e,62)._isServer,Go(e,62).id,Go(e,62).placeholder,Go(e,62).disabled,Go(e,62).required,Go(e,62).readonly&&!Go(e,62)._isNativeSelect||null,Go(e,62)._ariaDescribedby||null,Go(e,62).errorState,Go(e,62).required.toString()]),t(e,64,0,-1,Go(e,65).datepicker&&Go(e,65).datepicker.opened,Go(e,65).datepicker&&"accent"===Go(e,65).datepicker.color,Go(e,65).datepicker&&"warn"===Go(e,65).datepicker.color),t(e,70,1,["standard"==Go(e,71).appearance,"fill"==Go(e,71).appearance,"outline"==Go(e,71).appearance,"legacy"==Go(e,71).appearance,Go(e,71)._control.errorState,Go(e,71)._canLabelFloat,Go(e,71)._shouldLabelFloat(),Go(e,71)._hasFloatingLabel(),Go(e,71)._hideControlPlaceholder(),Go(e,71)._control.disabled,Go(e,71)._control.autofilled,Go(e,71)._control.focused,"accent"==Go(e,71).color,"warn"==Go(e,71).color,Go(e,71)._shouldForward("untouched"),Go(e,71)._shouldForward("touched"),Go(e,71)._shouldForward("pristine"),Go(e,71)._shouldForward("dirty"),Go(e,71)._shouldForward("valid"),Go(e,71)._shouldForward("invalid"),Go(e,71)._shouldForward("pending"),!Go(e,71)._animationsEnabled]),t(e,79,1,[Go(e,81).autocompleteAttribute,Go(e,81).autocompleteDisabled?null:"combobox",Go(e,81).autocompleteDisabled?null:"list",Go(e,81).panelOpen&&Go(e,81).activeOption?Go(e,81).activeOption.id:null,Go(e,81).autocompleteDisabled?null:Go(e,81).panelOpen.toString(),Go(e,81).autocompleteDisabled||!Go(e,81).panelOpen?null:null==Go(e,81).autocomplete?null:Go(e,81).autocomplete.id,!Go(e,81).autocompleteDisabled,Go(e,85).ngClassUntouched,Go(e,85).ngClassTouched,Go(e,85).ngClassPristine,Go(e,85).ngClassDirty,Go(e,85).ngClassValid,Go(e,85).ngClassInvalid,Go(e,85).ngClassPending,Go(e,86)._isServer,Go(e,86).id,Go(e,86).placeholder,Go(e,86).disabled,Go(e,86).required,Go(e,86).readonly&&!Go(e,86)._isNativeSelect||null,Go(e,86)._ariaDescribedby||null,Go(e,86).errorState,Go(e,86).required.toString()]),t(e,97,1,["standard"==Go(e,98).appearance,"fill"==Go(e,98).appearance,"outline"==Go(e,98).appearance,"legacy"==Go(e,98).appearance,Go(e,98)._control.errorState,Go(e,98)._canLabelFloat,Go(e,98)._shouldLabelFloat(),Go(e,98)._hasFloatingLabel(),Go(e,98)._hideControlPlaceholder(),Go(e,98)._control.disabled,Go(e,98)._control.autofilled,Go(e,98)._control.focused,"accent"==Go(e,98).color,"warn"==Go(e,98).color,Go(e,98)._shouldForward("untouched"),Go(e,98)._shouldForward("touched"),Go(e,98)._shouldForward("pristine"),Go(e,98)._shouldForward("dirty"),Go(e,98)._shouldForward("valid"),Go(e,98)._shouldForward("invalid"),Go(e,98)._shouldForward("pending"),!Go(e,98)._animationsEnabled]),t(e,106,1,[Go(e,108).autocompleteAttribute,Go(e,108).autocompleteDisabled?null:"combobox",Go(e,108).autocompleteDisabled?null:"list",Go(e,108).panelOpen&&Go(e,108).activeOption?Go(e,108).activeOption.id:null,Go(e,108).autocompleteDisabled?null:Go(e,108).panelOpen.toString(),Go(e,108).autocompleteDisabled||!Go(e,108).panelOpen?null:null==Go(e,108).autocomplete?null:Go(e,108).autocomplete.id,!Go(e,108).autocompleteDisabled,Go(e,112).ngClassUntouched,Go(e,112).ngClassTouched,Go(e,112).ngClassPristine,Go(e,112).ngClassDirty,Go(e,112).ngClassValid,Go(e,112).ngClassInvalid,Go(e,112).ngClassPending,Go(e,113)._isServer,Go(e,113).id,Go(e,113).placeholder,Go(e,113).disabled,Go(e,113).required,Go(e,113).readonly&&!Go(e,113)._isNativeSelect||null,Go(e,113)._ariaDescribedby||null,Go(e,113).errorState,Go(e,113).required.toString()]),t(e,122,0,Go(e,123).disabled||null,"NoopAnimations"===Go(e,123)._animationMode),t(e,124,0,Go(e,125).inline,"primary"!==Go(e,125).color&&"accent"!==Go(e,125).color&&"warn"!==Go(e,125).color)})}function ED(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-statistics",[],null,null,null,TD,SD)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,MD,[c_,Am,xf,Xl,kD,kk,Iu],null,null)],function(t,e){t(e,2,0)},null)}var AD=Ro("app-statistics",MD,ED,{},{},[]),PD=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.sortables=new Map,e._stateChanges=new H,e.start="asc",e._direction="",e.sortChange=new kn,e}return r(e,t),Object.defineProperty(e.prototype,"direction",{get:function(){return this._direction},set:function(t){if(tn()&&t&&"asc"!==t&&"desc"!==t)throw function(t){return Error(t+" is not a valid sort direction ('asc' or 'desc').")}(t);this._direction=t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disableClear",{get:function(){return this._disableClear},set:function(t){this._disableClear=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.register=function(t){if(!t.id)throw Error("MatSortHeader must be provided with a unique id.");if(this.sortables.has(t.id))throw Error("Cannot have two MatSortables with the same id ("+t.id+").");this.sortables.set(t.id,t)},e.prototype.deregister=function(t){this.sortables.delete(t.id)},e.prototype.sort=function(t){this.active!=t.id?(this.active=t.id,this.direction=t.start?t.start:this.start):this.direction=this.getNextSortDirection(t),this.sortChange.emit({active:this.active,direction:this.direction})},e.prototype.getNextSortDirection=function(t){if(!t)return"";var e,n,i=(e=null!=t.disableClear?t.disableClear:this.disableClear,n=["asc","desc"],"desc"==(t.start||this.start)&&n.reverse(),e||n.push(""),n),r=i.indexOf(this.direction)+1;return r>=i.length&&(r=0),i[r]},e.prototype.ngOnInit=function(){this._markInitialized()},e.prototype.ngOnChanges=function(){this._stateChanges.next()},e.prototype.ngOnDestroy=function(){this._stateChanges.complete()},e}(ud(rd(function(){return function(){}}()))),OD=function(){function t(){this.changes=new H,this.sortButtonLabel=function(t){return"Change sorting for "+t}}return t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}();function YD(t){return t||new OD}var RD=function(t){function e(e,n,i,r){var o=t.call(this)||this;if(o._intl=e,o._sort=i,o._columnDef=r,o._showIndicatorHint=!1,o._arrowDirection="",o._disableViewStateAnimation=!1,o.arrowPosition="after",!i)throw Error("MatSortHeader must be placed within a parent element with the MatSort directive.");return o._rerenderSubscription=ht(i.sortChange,i._stateChanges,e.changes).subscribe(function(){o._isSorted()&&o._updateArrowDirection(),!o._isSorted()&&o._viewState&&"active"===o._viewState.toState&&(o._disableViewStateAnimation=!1,o._setAnimationTransitionState({fromState:"active",toState:o._arrowDirection})),n.markForCheck()}),o}return r(e,t),Object.defineProperty(e.prototype,"disableClear",{get:function(){return this._disableClear},set:function(t){this._disableClear=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this)},e.prototype.ngOnDestroy=function(){this._sort.deregister(this),this._rerenderSubscription.unsubscribe()},e.prototype._setIndicatorHintVisible=function(t){this._isDisabled()&&t||(this._showIndicatorHint=t,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))},e.prototype._setAnimationTransitionState=function(t){this._viewState=t,this._disableViewStateAnimation&&(this._viewState={toState:t.toState})},e.prototype._handleClick=function(){if(!this._isDisabled()){this._sort.sort(this),"hint"!==this._viewState.toState&&"active"!==this._viewState.toState||(this._disableViewStateAnimation=!0);var t=this._isSorted()?{fromState:this._arrowDirection,toState:"active"}:{fromState:"active",toState:this._arrowDirection};this._setAnimationTransitionState(t),this._showIndicatorHint=!1}},e.prototype._isSorted=function(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)},e.prototype._getArrowDirectionState=function(){return(this._isSorted()?"active-":"")+this._arrowDirection},e.prototype._getArrowViewState=function(){var t=this._viewState.fromState;return(t?t+"-to-":"")+this._viewState.toState},e.prototype._updateArrowDirection=function(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start},e.prototype._isDisabled=function(){return this._sort.disabled||this.disabled},e.prototype._getAriaSortAttribute=function(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":null},e.prototype._renderArrow=function(){return!this._isDisabled()||this._isSorted()},e}(rd(function(){return function(){}}())),ID=function(){return function(){}}(),FD=Vr({encapsulation:2,styles:[".mat-sort-header-container{display:flex;cursor:pointer;align-items:center}.mat-sort-header-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-button{border:none;background:0 0;display:flex;align-items:center;padding:0;cursor:inherit;outline:0;font:inherit;color:currentColor}.mat-sort-header-button::-moz-focus-inner{border:0}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;opacity:0}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}@media (-ms-high-contrast:active){.mat-sort-header-stem{width:0;border-left:solid 2px}}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}@media (-ms-high-contrast:active){.mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}@media (-ms-high-contrast:active){.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}"],data:{animation:[{type:7,name:"indicator",definitions:[{type:0,name:"active-asc, asc",styles:{type:6,styles:{transform:"translateY(0px)"},offset:null},options:void 0},{type:0,name:"active-desc, desc",styles:{type:6,styles:{transform:"translateY(10px)"},offset:null},options:void 0},{type:1,expr:"active-asc <=> active-desc",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"leftPointer",definitions:[{type:0,name:"active-asc, asc",styles:{type:6,styles:{transform:"rotate(-45deg)"},offset:null},options:void 0},{type:0,name:"active-desc, desc",styles:{type:6,styles:{transform:"rotate(45deg)"},offset:null},options:void 0},{type:1,expr:"active-asc <=> active-desc",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"rightPointer",definitions:[{type:0,name:"active-asc, asc",styles:{type:6,styles:{transform:"rotate(45deg)"},offset:null},options:void 0},{type:0,name:"active-desc, desc",styles:{type:6,styles:{transform:"rotate(-45deg)"},offset:null},options:void 0},{type:1,expr:"active-asc <=> active-desc",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"arrowOpacity",definitions:[{type:0,name:"desc-to-active, asc-to-active, active",styles:{type:6,styles:{opacity:1},offset:null},options:void 0},{type:0,name:"desc-to-hint, asc-to-hint, hint",styles:{type:6,styles:{opacity:.54},offset:null},options:void 0},{type:0,name:"hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",styles:{type:6,styles:{opacity:0},offset:null},options:void 0},{type:1,expr:"* => asc, * => desc, * => active, * => hint, * => void",animation:{type:4,styles:null,timings:"0ms"},options:null},{type:1,expr:"* <=> *",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"arrowPosition",definitions:[{type:1,expr:"* => desc-to-hint, * => desc-to-active",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(-25%)"},offset:null},{type:6,styles:{transform:"translateY(0)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:1,expr:"* => hint-to-desc, * => active-to-desc",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(0)"},offset:null},{type:6,styles:{transform:"translateY(25%)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:1,expr:"* => asc-to-hint, * => asc-to-active",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(25%)"},offset:null},{type:6,styles:{transform:"translateY(0)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:1,expr:"* => hint-to-asc, * => active-to-asc",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(0)"},offset:null},{type:6,styles:{transform:"translateY(-25%)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:0,name:"desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",styles:{type:6,styles:{transform:"translateY(0)"},offset:null},options:void 0},{type:0,name:"hint-to-desc, active-to-desc, desc",styles:{type:6,styles:{transform:"translateY(-25%)"},offset:null},options:void 0},{type:0,name:"hint-to-asc, active-to-asc, asc",styles:{type:6,styles:{transform:"translateY(25%)"},offset:null},options:void 0}],options:{}},{type:7,name:"allowChildren",definitions:[{type:1,expr:"* <=> *",animation:[{type:11,selector:"@*",animation:{type:9,options:null},options:{optional:!0}}],options:null}],options:{}}]}});function zD(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","mat-sort-header-arrow"]],[[24,"@arrowOpacity",0],[24,"@arrowPosition",0],[24,"@allowChildren",0]],[[null,"@arrowPosition.start"],[null,"@arrowPosition.done"]],function(t,e,n){var i=!0,r=t.component;return"@arrowPosition.start"===e&&(i=0!=(r._disableViewStateAnimation=!0)&&i),"@arrowPosition.done"===e&&(i=0!=(r._disableViewStateAnimation=!1)&&i),i},null,null)),(t()(),yo(1,0,null,null,0,"div",[["class","mat-sort-header-stem"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,3,"div",[["class","mat-sort-header-indicator"]],[[24,"@indicator",0]],null,null,null,null)),(t()(),yo(3,0,null,null,0,"div",[["class","mat-sort-header-pointer-left"]],[[24,"@leftPointer",0]],null,null,null,null)),(t()(),yo(4,0,null,null,0,"div",[["class","mat-sort-header-pointer-right"]],[[24,"@rightPointer",0]],null,null,null,null)),(t()(),yo(5,0,null,null,0,"div",[["class","mat-sort-header-pointer-middle"]],null,null,null,null,null))],null,function(t,e){var n=e.component;t(e,0,0,n._getArrowViewState(),n._getArrowViewState(),n._getArrowDirectionState()),t(e,2,0,n._getArrowDirectionState()),t(e,3,0,n._getArrowDirectionState()),t(e,4,0,n._getArrowDirectionState())})}function jD(t){return Ia(2,[(t()(),yo(0,0,null,null,4,"div",[["class","mat-sort-header-container"]],[[2,"mat-sort-header-sorted",null],[2,"mat-sort-header-position-before",null]],null,null,null,null)),(t()(),yo(1,0,null,null,1,"button",[["class","mat-sort-header-button"],["type","button"]],[[1,"disabled",0],[1,"aria-label",0]],[[null,"focus"],[null,"blur"]],function(t,e,n){var i=!0,r=t.component;return"focus"===e&&(i=!1!==r._setIndicatorHintVisible(!0)&&i),"blur"===e&&(i=!1!==r._setIndicatorHintVisible(!1)&&i),i},null,null)),La(null,0),(t()(),go(16777216,null,null,1,null,zD)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){t(e,4,0,e.component._renderArrow())},function(t,e){var n=e.component;t(e,0,0,n._isSorted(),"before"==n.arrowPosition),t(e,1,0,n._isDisabled()||null,n._intl.sortButtonLabel(n.id))})}var HD=function(){function t(){this.changes=new H,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=function(t,e,n){if(0==n||0==e)return"0 of "+n;var i=t*e;return i+1+" - "+(i<(n=Math.max(n,0))?Math.min(i+e,n):i+e)+" of "+n}}return t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}();function ND(t){return t||new HD}var VD,BD=function(t){function e(e,n){var i=t.call(this)||this;return i._intl=e,i._changeDetectorRef=n,i._pageIndex=0,i._length=0,i._pageSizeOptions=[],i._hidePageSize=!1,i._showFirstLastButtons=!1,i.page=new kn,i._intlChanges=e.changes.subscribe(function(){return i._changeDetectorRef.markForCheck()}),i}return r(e,t),Object.defineProperty(e.prototype,"pageIndex",{get:function(){return this._pageIndex},set:function(t){this._pageIndex=Math.max(Ku(t),0),this._changeDetectorRef.markForCheck()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"length",{get:function(){return this._length},set:function(t){this._length=Ku(t),this._changeDetectorRef.markForCheck()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"pageSize",{get:function(){return this._pageSize},set:function(t){this._pageSize=Math.max(Ku(t),0),this._updateDisplayedPageSizeOptions()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"pageSizeOptions",{get:function(){return this._pageSizeOptions},set:function(t){this._pageSizeOptions=(t||[]).map(function(t){return Ku(t)}),this._updateDisplayedPageSizeOptions()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hidePageSize",{get:function(){return this._hidePageSize},set:function(t){this._hidePageSize=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"showFirstLastButtons",{get:function(){return this._showFirstLastButtons},set:function(t){this._showFirstLastButtons=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){this._initialized=!0,this._updateDisplayedPageSizeOptions(),this._markInitialized()},e.prototype.ngOnDestroy=function(){this._intlChanges.unsubscribe()},e.prototype.nextPage=function(){if(this.hasNextPage()){var t=this.pageIndex;this.pageIndex++,this._emitPageEvent(t)}},e.prototype.previousPage=function(){if(this.hasPreviousPage()){var t=this.pageIndex;this.pageIndex--,this._emitPageEvent(t)}},e.prototype.firstPage=function(){if(this.hasPreviousPage()){var t=this.pageIndex;this.pageIndex=0,this._emitPageEvent(t)}},e.prototype.lastPage=function(){if(this.hasNextPage()){var t=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(t)}},e.prototype.hasPreviousPage=function(){return this.pageIndex>=1&&0!=this.pageSize},e.prototype.hasNextPage=function(){var t=this.getNumberOfPages()-1;return this.pageIndex visible",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{opacity:0,transform:"scale(0)",offset:0},offset:null},{type:6,styles:{opacity:.5,transform:"scale(0.99)",offset:.5},offset:null},{type:6,styles:{opacity:1,transform:"scale(1)",offset:1},offset:null}]},timings:"200ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => hidden",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"100ms cubic-bezier(0, 0, 0.2, 1)"},options:null}],options:{}}]}});function aT(t){return Ia(2,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-tooltip"]],[[2,"mat-tooltip-handset",null],[24,"@state",0]],[[null,"@state.start"],[null,"@state.done"]],function(t,e,n){var i=!0,r=t.component;return"@state.start"===e&&(i=!1!==r._animationStart()&&i),"@state.done"===e&&(i=!1!==r._animationDone(n)&&i),i},null,null)),oa(1,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),aa(131072,Ds,[Zi]),(t()(),Oa(3,null,["",""]))],function(t,e){t(e,1,0,"mat-tooltip",e.component.tooltipClass)},function(t,e){var n,i=e.component;t(e,0,0,null==(n=jr(e,0,0,Go(e,2).transform(i._isHandset)))?null:n.matches,i._visibility),t(e,3,0,i.message)})}function lT(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-tooltip-component",[["aria-hidden","true"]],[[4,"zoom",null]],[["body","click"]],function(t,e,n){var i=!0;return"body:click"===e&&(i=!1!==Go(t,1)._handleBodyInteraction()&&i),i},aT,oT)),oa(1,180224,null,0,iT,[Zi,XD],null,null)],null,function(t,e){t(e,0,0,"visible"===Go(e,1)._visibility?1:null)})}var sT=Ro("mat-tooltip-component",iT,lT,{},{},[]),uT=0,cT=0,dT=new Lt("mat-select-scroll-strategy");function hT(t){return function(){return t.scrollStrategies.reposition()}}var pT=function(){return function(t,e){this.source=t,this.value=e}}(),fT=function(t){function e(e,n,i,r,o,a,l,s,u,c,d,h,p){var f=t.call(this,o,r,l,s,c)||this;return f._viewportRuler=e,f._changeDetectorRef=n,f._ngZone=i,f._dir=a,f._parentFormField=u,f.ngControl=c,f._liveAnnouncer=p,f._panelOpen=!1,f._required=!1,f._scrollTop=0,f._multiple=!1,f._compareWith=function(t,e){return t===e},f._uid="mat-select-"+uT++,f._destroy=new H,f._triggerFontSize=0,f._onChange=function(){},f._onTouched=function(){},f._optionIds="",f._transformOrigin="top",f._panelDoneAnimatingStream=new H,f._offsetY=0,f._positions=[{originX:"start",originY:"top",overlayX:"start",overlayY:"top"},{originX:"start",originY:"bottom",overlayX:"start",overlayY:"bottom"}],f._disableOptionCentering=!1,f._focused=!1,f.controlType="mat-select",f.ariaLabel="",f.optionSelectionChanges=Nh(function(){return f.options?ht.apply(void 0,f.options.map(function(t){return t.onSelectionChange})):f._ngZone.onStable.asObservable().pipe(Ac(1),ip(function(){return f.optionSelectionChanges}))}),f.openedChange=new kn,f._openedStream=f.openedChange.pipe(Cc(function(t){return t}),nt(function(){})),f._closedStream=f.openedChange.pipe(Cc(function(t){return!t}),nt(function(){})),f.selectionChange=new kn,f.valueChange=new kn,f.ngControl&&(f.ngControl.valueAccessor=f),f._scrollStrategyFactory=h,f._scrollStrategy=f._scrollStrategyFactory(),f.tabIndex=parseInt(d)||0,f.id=f.id,f}return r(e,t),Object.defineProperty(e.prototype,"focused",{get:function(){return this._focused||this._panelOpen},set:function(t){this._focused=t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"placeholder",{get:function(){return this._placeholder},set:function(t){this._placeholder=t,this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t),this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"multiple",{get:function(){return this._multiple},set:function(t){if(this._selectionModel)throw Error("Cannot change `multiple` mode of select after initialization.");this._multiple=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disableOptionCentering",{get:function(){return this._disableOptionCentering},set:function(t){this._disableOptionCentering=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"compareWith",{get:function(){return this._compareWith},set:function(t){if("function"!=typeof t)throw Error("`compareWith` must be a function.");this._compareWith=t,this._selectionModel&&this._initializeSelection()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this._value},set:function(t){t!==this._value&&(this.writeValue(t),this._value=t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this._id},set:function(t){this._id=t||this._uid,this.stateChanges.next()},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){var t=this;this._selectionModel=new xM(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(cM(),fg(this._destroy)).subscribe(function(){t.panelOpen?(t._scrollTop=0,t.openedChange.emit(!0)):(t.openedChange.emit(!1),t.overlayDir.offsetX=0,t._changeDetectorRef.markForCheck())})},e.prototype.ngAfterContentInit=function(){var t=this;this._initKeyManager(),this._selectionModel.onChange.pipe(fg(this._destroy)).subscribe(function(t){t.added.forEach(function(t){return t.select()}),t.removed.forEach(function(t){return t.deselect()})}),this.options.changes.pipe(hc(null),fg(this._destroy)).subscribe(function(){t._resetOptions(),t._initializeSelection()})},e.prototype.ngDoCheck=function(){this.ngControl&&this.updateErrorState()},e.prototype.ngOnChanges=function(t){t.disabled&&this.stateChanges.next()},e.prototype.ngOnDestroy=function(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()},e.prototype.toggle=function(){this.panelOpen?this.close():this.open()},e.prototype.open=function(){var t=this;!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||"0"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(Ac(1)).subscribe(function(){t._triggerFontSize&&t.overlayDir.overlayRef&&t.overlayDir.overlayRef.overlayElement&&(t.overlayDir.overlayRef.overlayElement.style.fontSize=t._triggerFontSize+"px")}))},e.prototype.close=function(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())},e.prototype.writeValue=function(t){this.options&&this._setSelectionByValue(t)},e.prototype.registerOnChange=function(t){this._onChange=t},e.prototype.registerOnTouched=function(t){this._onTouched=t},e.prototype.setDisabledState=function(t){this.disabled=t,this._changeDetectorRef.markForCheck(),this.stateChanges.next()},Object.defineProperty(e.prototype,"panelOpen",{get:function(){return this._panelOpen},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"selected",{get:function(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"triggerValue",{get:function(){if(this.empty)return"";if(this._multiple){var t=this._selectionModel.selected.map(function(t){return t.viewValue});return this._isRtl()&&t.reverse(),t.join(", ")}return this._selectionModel.selected[0].viewValue},enumerable:!0,configurable:!0}),e.prototype._isRtl=function(){return!!this._dir&&"rtl"===this._dir.value},e.prototype._handleKeydown=function(t){this.disabled||(this.panelOpen?this._handleOpenKeydown(t):this._handleClosedKeydown(t))},e.prototype._handleClosedKeydown=function(t){var e=t.keyCode,n=40===e||38===e||37===e||39===e,i=this._keyManager;if((13===e||32===e)&&!fc(t)||(this.multiple||t.altKey)&&n)t.preventDefault(),this.open();else if(!this.multiple){var r=this.selected;36===e||35===e?(36===e?i.setFirstItemActive():i.setLastItemActive(),t.preventDefault()):i.onKeydown(t),this._liveAnnouncer&&r!==this.selected&&this._liveAnnouncer.announce(this.selected.viewValue)}},e.prototype._handleOpenKeydown=function(t){var e=t.keyCode,n=40===e||38===e,i=this._keyManager;if(36===e||35===e)t.preventDefault(),36===e?i.setFirstItemActive():i.setLastItemActive();else if(n&&t.altKey)t.preventDefault(),this.close();else if(13!==e&&32!==e||!i.activeItem||fc(t))if(this._multiple&&65===e&&t.ctrlKey){t.preventDefault();var r=this.options.some(function(t){return!t.disabled&&!t.selected});this.options.forEach(function(t){t.disabled||(r?t.select():t.deselect())})}else{var o=i.activeItemIndex;i.onKeydown(t),this._multiple&&n&&t.shiftKey&&i.activeItem&&i.activeItemIndex!==o&&i.activeItem._selectViaInteraction()}else t.preventDefault(),i.activeItem._selectViaInteraction()},e.prototype._onFocus=function(){this.disabled||(this._focused=!0,this.stateChanges.next())},e.prototype._onBlur=function(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())},e.prototype._onAttached=function(){var t=this;this.overlayDir.positionChange.pipe(Ac(1)).subscribe(function(){t._setPseudoCheckboxPaddingSize(),t._changeDetectorRef.detectChanges(),t._calculateOverlayOffsetX(),t.panel.nativeElement.scrollTop=t._scrollTop})},e.prototype._getPanelTheme=function(){return this._parentFormField?"mat-"+this._parentFormField.color:""},e.prototype._setPseudoCheckboxPaddingSize=function(){if(!cT&&this.multiple){var t=this.panel.nativeElement.querySelector(".mat-pseudo-checkbox");t&&(cT=24+t.offsetWidth)}},Object.defineProperty(e.prototype,"empty",{get:function(){return!this._selectionModel||this._selectionModel.isEmpty()},enumerable:!0,configurable:!0}),e.prototype._initializeSelection=function(){var t=this;Promise.resolve().then(function(){t._setSelectionByValue(t.ngControl?t.ngControl.value:t._value),t.stateChanges.next()})},e.prototype._setSelectionByValue=function(t){var e=this;if(this.multiple&&t){if(!Array.isArray(t))throw Error("Value must be an array in multiple-selection mode.");this._selectionModel.clear(),t.forEach(function(t){return e._selectValue(t)}),this._sortValues()}else{this._selectionModel.clear();var n=this._selectValue(t);n&&this._keyManager.setActiveItem(n)}this._changeDetectorRef.markForCheck()},e.prototype._selectValue=function(t){var e=this,n=this.options.find(function(n){try{return null!=n.value&&e._compareWith(n.value,t)}catch(i){return tn()&&console.warn(i),!1}});return n&&this._selectionModel.select(n),n},e.prototype._initKeyManager=function(){var t=this;this._keyManager=new Hc(this.options).withTypeAhead().withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withAllowedModifierKeys(["shiftKey"]),this._keyManager.tabOut.pipe(fg(this._destroy)).subscribe(function(){t.focus(),t.close()}),this._keyManager.change.pipe(fg(this._destroy)).subscribe(function(){t._panelOpen&&t.panel?t._scrollActiveOptionIntoView():t._panelOpen||t.multiple||!t._keyManager.activeItem||t._keyManager.activeItem._selectViaInteraction()})},e.prototype._resetOptions=function(){var t=this,e=ht(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(fg(e)).subscribe(function(e){t._onSelect(e.source,e.isUserInput),e.isUserInput&&!t.multiple&&t._panelOpen&&(t.close(),t.focus())}),ht.apply(void 0,this.options.map(function(t){return t._stateChanges})).pipe(fg(e)).subscribe(function(){t._changeDetectorRef.markForCheck(),t.stateChanges.next()}),this._setOptionIds()},e.prototype._onSelect=function(t,e){var n=this._selectionModel.isSelected(t);null!=t.value||this._multiple?(t.selected?this._selectionModel.select(t):this._selectionModel.deselect(t),e&&this._keyManager.setActiveItem(t),this.multiple&&(this._sortValues(),e&&this.focus())):(t.deselect(),this._selectionModel.clear(),this._propagateChanges(t.value)),n!==this._selectionModel.isSelected(t)&&this._propagateChanges(),this.stateChanges.next()},e.prototype._sortValues=function(){var t=this;if(this.multiple){var e=this.options.toArray();this._selectionModel.sort(function(n,i){return t.sortComparator?t.sortComparator(n,i,e):e.indexOf(n)-e.indexOf(i)}),this.stateChanges.next()}},e.prototype._propagateChanges=function(t){var e;e=this.multiple?this.selected.map(function(t){return t.value}):this.selected?this.selected.value:t,this._value=e,this.valueChange.emit(e),this._onChange(e),this.selectionChange.emit(new pT(this,e)),this._changeDetectorRef.markForCheck()},e.prototype._setOptionIds=function(){this._optionIds=this.options.map(function(t){return t.id}).join(" ")},e.prototype._highlightCorrectOption=function(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))},e.prototype._scrollActiveOptionIntoView=function(){var t=this._keyManager.activeItemIndex||0,e=zd(t,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=jd(t+e,this._getItemHeight(),this.panel.nativeElement.scrollTop,256)},e.prototype.focus=function(){this._elementRef.nativeElement.focus()},e.prototype._getOptionIndex=function(t){return this.options.reduce(function(e,n,i){return void 0===e?t===n?i:void 0:e},void 0)},e.prototype._calculateOverlayPosition=function(){var t=this._getItemHeight(),e=this._getItemCount(),n=Math.min(e*t,256),i=e*t-n,r=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);r+=zd(r,this.options,this.optionGroups);var o=n/2;this._scrollTop=this._calculateOverlayScroll(r,o,i),this._offsetY=this._calculateOverlayOffsetY(r,o,i),this._checkOverlayWithinViewport(i)},e.prototype._calculateOverlayScroll=function(t,e,n){var i=this._getItemHeight();return Math.min(Math.max(0,i*t-e+i/2),n)},e.prototype._getAriaLabel=function(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder},e.prototype._getAriaLabelledby=function(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null},e.prototype._getAriaActiveDescendant=function(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null},e.prototype._calculateOverlayOffsetX=function(){var t,e=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),n=this._viewportRuler.getViewportSize(),i=this._isRtl(),r=this.multiple?cT+16:32;if(this.multiple)t=cT;else{var o=this._selectionModel.selected[0]||this.options.first;t=o&&o.group?32:16}i||(t*=-1);var a=0-(e.left+t-(i?r:0)),l=e.right+t-n.width+(i?0:r);a>0?t+=a+8:l>0&&(t-=l+8),this.overlayDir.offsetX=Math.round(t),this.overlayDir.overlayRef.updatePosition()},e.prototype._calculateOverlayOffsetY=function(t,e,n){var i,r=this._getItemHeight(),o=(r-this._triggerRect.height)/2,a=Math.floor(256/r);return this._disableOptionCentering?0:(i=0===this._scrollTop?t*r:this._scrollTop===n?(t-(this._getItemCount()-a))*r+(r-(this._getItemCount()*r-256)%r):e-r/2,Math.round(-1*i-o))},e.prototype._checkOverlayWithinViewport=function(t){var e=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),i=this._triggerRect.top-8,r=n.height-this._triggerRect.bottom-8,o=Math.abs(this._offsetY),a=Math.min(this._getItemCount()*e,256)-o-this._triggerRect.height;a>r?this._adjustPanelUp(a,r):o>i?this._adjustPanelDown(o,i,t):this._transformOrigin=this._getOriginBasedOnOption()},e.prototype._adjustPanelUp=function(t,e){var n=Math.round(t-e);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin="50% bottom 0px")},e.prototype._adjustPanelDown=function(t,e,n){var i=Math.round(t-e);if(this._scrollTop+=i,this._offsetY+=i,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin="50% top 0px")},e.prototype._getOriginBasedOnOption=function(){var t=this._getItemHeight(),e=(t-this._triggerRect.height)/2;return"50% "+(Math.abs(this._offsetY)-e+t/2)+"px 0px"},e.prototype._getItemCount=function(){return this.options.length+this.optionGroups.length},e.prototype._getItemHeight=function(){return 3*this._triggerFontSize},e.prototype.setDescribedByIds=function(t){this._ariaDescribedby=t.join(" ")},e.prototype.onContainerClick=function(){this.focus(),this.open()},Object.defineProperty(e.prototype,"shouldLabelFloat",{get:function(){return this._panelOpen||!this.empty},enumerable:!0,configurable:!0}),e}(ad(ld(rd(sd(function(){return function(t,e,n,i,r){this._elementRef=t,this._defaultErrorStateMatcher=e,this._parentForm=n,this._parentFormGroup=i,this.ngControl=r}}()))))),mT=function(){return function(){}}(),gT=Vr({encapsulation:2,styles:[".mat-select{display:inline-block;width:100%;outline:0}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform .4s cubic-bezier(.25,.8,.25,1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}@media (-ms-high-contrast:active){.mat-select-panel{outline:solid 1px}}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color .4s .133s cubic-bezier(.25,.8,.25,1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}"],data:{animation:[{type:7,name:"transformPanelWrap",definitions:[{type:1,expr:"* => void",animation:{type:11,selector:"@transformPanel",animation:[{type:9,options:null}],options:{optional:!0}},options:null}],options:{}},{type:7,name:"transformPanel",definitions:[{type:0,name:"void",styles:{type:6,styles:{transform:"scaleY(0.8)",minWidth:"100%",opacity:0},offset:null},options:void 0},{type:0,name:"showing",styles:{type:6,styles:{opacity:1,minWidth:"calc(100% + 32px)",transform:"scaleY(1)"},offset:null},options:void 0},{type:0,name:"showing-multiple",styles:{type:6,styles:{opacity:1,minWidth:"calc(100% + 64px)",transform:"scaleY(1)"},offset:null},options:void 0},{type:1,expr:"void => *",animation:{type:4,styles:null,timings:"120ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"100ms 25ms linear"},options:null}],options:{}}]}});function yT(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"span",[["class","mat-select-placeholder"]],null,null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,1,0,e.component.placeholder||"\xa0")})}function _T(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"span",[],null,null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,1,0,e.component.triggerValue||"\xa0")})}function vT(t){return Ia(0,[La(null,0),(t()(),go(0,null,null,0))],null,null)}function bT(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"span",[["class","mat-select-value-text"]],null,null,null,null,null)),oa(1,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,_T)),oa(3,16384,null,0,ws,[Xi,Mn,bs],null,null),(t()(),go(16777216,null,null,1,null,vT)),oa(5,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){t(e,1,0,!!e.component.customTrigger),t(e,5,0,!0)},null)}function xT(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-select-panel-wrap"]],[[24,"@transformPanelWrap",0]],null,null,null,null)),(t()(),yo(1,0,[[2,0],["panel",1]],null,2,"div",[],[[24,"@transformPanel",0],[4,"transformOrigin",null],[4,"font-size","px"]],[[null,"@transformPanel.done"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"@transformPanel.done"===e&&(i=!1!==r._panelDoneAnimatingStream.next(n.toState)&&i),"keydown"===e&&(i=!1!==r._handleKeydown(n)&&i),i},null,null)),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),La(null,1)],function(t,e){var n,i,r=e.component;t(e,2,0,("mat-select-panel ",n=r._getPanelTheme(),"mat-select-panel "+(null!=(i=n)?i.toString():"")),r.panelClass)},function(t,e){var n=e.component;t(e,0,0,void 0),t(e,1,0,n.multiple?"showing-multiple":"showing",n._transformOrigin,n._triggerFontSize)})}function wT(t){return Ia(2,[wa(402653184,1,{trigger:0}),wa(671088640,2,{panel:0}),wa(402653184,3,{overlayDir:0}),(t()(),yo(3,0,[[1,0],["trigger",1]],null,9,"div",[["aria-hidden","true"],["cdk-overlay-origin",""],["class","mat-select-trigger"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.toggle()&&i),i},null,null)),oa(4,16384,[["origin",4]],0,JM,[Ve],null,null),(t()(),yo(5,0,null,null,5,"div",[["class","mat-select-value"]],null,null,null,null,null)),oa(6,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,yT)),oa(8,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,bT)),oa(10,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),yo(11,0,null,null,1,"div",[["class","mat-select-arrow-wrapper"]],null,null,null,null,null)),(t()(),yo(12,0,null,null,0,"div",[["class","mat-select-arrow"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,function(t,e,n){var i=!0,r=t.component;return"backdropClick"===e&&(i=!1!==r.close()&&i),"attach"===e&&(i=!1!==r._onAttached()&&i),"detach"===e&&(i=!1!==r.close()&&i),i},xT)),oa(14,671744,[[3,4]],0,QM,[XM,Mn,Xi,ZM,[2,Zy]],{origin:[0,"origin"],positions:[1,"positions"],offsetY:[2,"offsetY"],minWidth:[3,"minWidth"],backdropClass:[4,"backdropClass"],scrollStrategy:[5,"scrollStrategy"],open:[6,"open"],hasBackdrop:[7,"hasBackdrop"],lockPosition:[8,"lockPosition"]},{backdropClick:"backdropClick",attach:"attach",detach:"detach"})],function(t,e){var n=e.component;t(e,6,0,n.empty),t(e,8,0,!0),t(e,10,0,!1),t(e,14,0,Go(e,4),n._positions,n._offsetY,null==n._triggerRect?null:n._triggerRect.width,"cdk-overlay-transparent-backdrop",n._scrollStrategy,n.panelOpen,"","")},null)}var kT=Vr({encapsulation:2,styles:[".mat-paginator{display:block}.mat-paginator-outer-container{display:flex}.mat-paginator-container{display:flex;align-items:center;justify-content:flex-end;min-height:56px;padding:0 8px;flex-wrap:wrap-reverse;width:100%}.mat-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-paginator-page-size{margin-right:0;margin-left:8px}.mat-paginator-page-size-label{margin:0 4px}.mat-paginator-page-size-select{margin:6px 4px 0 4px;width:56px}.mat-paginator-page-size-select.mat-form-field-appearance-outline{width:64px}.mat-paginator-page-size-select.mat-form-field-appearance-fill{width:64px}.mat-paginator-range-label{margin:0 32px 0 24px}.mat-paginator-range-actions{display:flex;align-items:center}.mat-paginator-icon{width:28px;fill:currentColor}[dir=rtl] .mat-paginator-icon{transform:rotate(180deg)}"],data:{}});function MT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[8,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,["",""]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function ST(t){return Ia(0,[(t()(),yo(0,0,null,null,17,"mat-form-field",[["class","mat-paginator-page-size-select mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(1,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],{color:[0,"color"]},null),wa(335544320,1,{_control:0}),wa(335544320,2,{_placeholderChild:0}),wa(335544320,3,{_labelChild:0}),wa(603979776,4,{_errorChildren:1}),wa(603979776,5,{_hintChildren:1}),wa(603979776,6,{_prefixChildren:1}),wa(603979776,7,{_suffixChildren:1}),(t()(),yo(9,0,null,1,8,"mat-select",[["class","mat-select"],["role","listbox"]],[[1,"id",0],[1,"tabindex",0],[1,"aria-label",0],[1,"aria-labelledby",0],[1,"aria-required",0],[1,"aria-disabled",0],[1,"aria-invalid",0],[1,"aria-owns",0],[1,"aria-multiselectable",0],[1,"aria-describedby",0],[1,"aria-activedescendant",0],[2,"mat-select-disabled",null],[2,"mat-select-invalid",null],[2,"mat-select-required",null],[2,"mat-select-empty",null]],[[null,"selectionChange"],[null,"keydown"],[null,"focus"],[null,"blur"]],function(t,e,n){var i=!0,r=t.component;return"keydown"===e&&(i=!1!==Go(t,11)._handleKeydown(n)&&i),"focus"===e&&(i=!1!==Go(t,11)._onFocus()&&i),"blur"===e&&(i=!1!==Go(t,11)._onBlur()&&i),"selectionChange"===e&&(i=!1!==r._changePageSize(n.value)&&i),i},wT,gT)),la(6144,null,Id,null,[fT]),oa(11,2080768,null,3,fT,[SM,Zi,Mi,md,Ve,[2,Zy],[2,Cv],[2,Ev],[2,lb],[8,null],[8,null],dT,Kc],{disabled:[0,"disabled"],value:[1,"value"],ariaLabel:[2,"ariaLabel"]},{selectionChange:"selectionChange"}),wa(603979776,8,{options:1}),wa(603979776,9,{optionGroups:1}),wa(335544320,10,{customTrigger:0}),la(2048,[[1,4]],Qv,null,[fT]),(t()(),go(16777216,null,1,1,null,MT)),oa(17,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null)],function(t,e){var n=e.component;t(e,1,0,n.color),t(e,11,0,n.disabled,n.pageSize,n._intl.itemsPerPageLabel),t(e,17,0,n._displayedPageSizeOptions)},function(t,e){t(e,0,1,["standard"==Go(e,1).appearance,"fill"==Go(e,1).appearance,"outline"==Go(e,1).appearance,"legacy"==Go(e,1).appearance,Go(e,1)._control.errorState,Go(e,1)._canLabelFloat,Go(e,1)._shouldLabelFloat(),Go(e,1)._hasFloatingLabel(),Go(e,1)._hideControlPlaceholder(),Go(e,1)._control.disabled,Go(e,1)._control.autofilled,Go(e,1)._control.focused,"accent"==Go(e,1).color,"warn"==Go(e,1).color,Go(e,1)._shouldForward("untouched"),Go(e,1)._shouldForward("touched"),Go(e,1)._shouldForward("pristine"),Go(e,1)._shouldForward("dirty"),Go(e,1)._shouldForward("valid"),Go(e,1)._shouldForward("invalid"),Go(e,1)._shouldForward("pending"),!Go(e,1)._animationsEnabled]),t(e,9,1,[Go(e,11).id,Go(e,11).tabIndex,Go(e,11)._getAriaLabel(),Go(e,11)._getAriaLabelledby(),Go(e,11).required.toString(),Go(e,11).disabled.toString(),Go(e,11).errorState,Go(e,11).panelOpen?Go(e,11)._optionIds:null,Go(e,11).multiple,Go(e,11)._ariaDescribedby||null,Go(e,11)._getAriaActiveDescendant(),Go(e,11).disabled,Go(e,11).errorState,Go(e,11).required,Go(e,11).empty])})}function CT(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[],null,null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,1,0,e.component.pageSize)})}function LT(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"div",[["class","mat-paginator-page-size"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,1,"div",[["class","mat-paginator-page-size-label"]],null,null,null,null,null)),(t()(),Oa(2,null,["",""])),(t()(),go(16777216,null,null,1,null,ST)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,CT)),oa(6,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,4,0,n._displayedPageSizeOptions.length>1),t(e,6,0,n._displayedPageSizeOptions.length<=1)},function(t,e){t(e,2,0,e.component._intl.itemsPerPageLabel)})}function DT(t){return Ia(0,[(t()(),yo(0,16777216,null,null,4,"button",[["class","mat-paginator-navigation-first"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,2).show()&&i),"keydown"===e&&(i=!1!==Go(t,2)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,2)._handleTouchend()&&i),"click"===e&&(i=!1!==r.firstPage()&&i),i},Nk,Hk)),oa(1,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(2,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(3,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,":svg:path",[["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"]],null,null,null,null,null)),(t()(),go(0,null,null,0))],function(t,e){var n=e.component;t(e,1,0,n._previousButtonsDisabled()),t(e,2,0,"above",n._previousButtonsDisabled(),n._intl.firstPageLabel)},function(t,e){t(e,0,0,e.component._intl.firstPageLabel,Go(e,1).disabled||null,"NoopAnimations"===Go(e,1)._animationMode)})}function TT(t){return Ia(0,[(t()(),yo(0,16777216,null,null,4,"button",[["class","mat-paginator-navigation-last"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,2).show()&&i),"keydown"===e&&(i=!1!==Go(t,2)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,2)._handleTouchend()&&i),"click"===e&&(i=!1!==r.lastPage()&&i),i},Nk,Hk)),oa(1,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(2,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(3,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,":svg:path",[["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],null,null,null,null,null)),(t()(),go(0,null,null,0))],function(t,e){var n=e.component;t(e,1,0,n._nextButtonsDisabled()),t(e,2,0,"above",n._nextButtonsDisabled(),n._intl.lastPageLabel)},function(t,e){t(e,0,0,e.component._intl.lastPageLabel,Go(e,1).disabled||null,"NoopAnimations"===Go(e,1)._animationMode)})}function ET(t){return Ia(2,[(t()(),yo(0,0,null,null,20,"div",[["class","mat-paginator-outer-container"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,19,"div",[["class","mat-paginator-container"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,LT)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(4,0,null,null,16,"div",[["class","mat-paginator-range-actions"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,1,"div",[["class","mat-paginator-range-label"]],null,null,null,null,null)),(t()(),Oa(6,null,["",""])),(t()(),go(16777216,null,null,1,null,DT)),oa(8,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(9,16777216,null,null,4,"button",[["class","mat-paginator-navigation-previous"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,11).show()&&i),"keydown"===e&&(i=!1!==Go(t,11)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,11)._handleTouchend()&&i),"click"===e&&(i=!1!==r.previousPage()&&i),i},Nk,Hk)),oa(10,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(11,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(12,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(13,0,null,null,0,":svg:path",[["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"]],null,null,null,null,null)),(t()(),yo(14,16777216,null,null,4,"button",[["class","mat-paginator-navigation-next"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,16).show()&&i),"keydown"===e&&(i=!1!==Go(t,16)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,16)._handleTouchend()&&i),"click"===e&&(i=!1!==r.nextPage()&&i),i},Nk,Hk)),oa(15,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(16,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(17,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(18,0,null,null,0,":svg:path",[["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,TT)),oa(20,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,3,0,!n.hidePageSize),t(e,8,0,n.showFirstLastButtons),t(e,10,0,n._previousButtonsDisabled()),t(e,11,0,"above",n._previousButtonsDisabled(),n._intl.previousPageLabel),t(e,15,0,n._nextButtonsDisabled()),t(e,16,0,"above",n._nextButtonsDisabled(),n._intl.nextPageLabel),t(e,20,0,n.showFirstLastButtons)},function(t,e){var n=e.component;t(e,6,0,n._intl.getRangeLabel(n.pageIndex,n.pageSize,n.length)),t(e,9,0,n._intl.previousPageLabel,Go(e,10).disabled||null,"NoopAnimations"===Go(e,10)._animationMode),t(e,14,0,n._intl.nextPageLabel,Go(e,15).disabled||null,"NoopAnimations"===Go(e,15)._animationMode)})}var AT=function(){function t(t,e,n,i,r,o,a,l){var s=this;this.resultService=t,this.dateAdapter=e,this.router=n,this.route=i,this.location=r,this.deviceService=o,this.matIconRegistry=a,this.domSanitizer=l,this.dataSource=new wL,this.selectedResultID=0,this.displayedColumns=["image","date","rawColor","processColor","device"],this.imageUrl=Bl.assetPath+"/assets/card_new_small.bmp",this.funnelImage="./../../../assets/filter.svg",this.fromDateParam="",this.toDateParam="",this.emailParam="",this.devicemodelParam="",this.isValidFromDate=!1,this.isValidToDate=!1,this.fromDate=new wv(null,R_.required),this.toDate=new wv(null,R_.required),this.email=new wv("",R_.email),this.devicemodel=new wv(""),this.doFilter=function(t){s.dataSource.filter=t.trim().toLowerCase()},this.selectedResult=null,e.setLocale("en-in"),this.matIconRegistry.addSvgIcon("icon_funnel",this.domSanitizer.bypassSecurityTrustResourceUrl(Bl.assetPath+"/assets/filter.svg"))}return Object.defineProperty(t.prototype,"content",{set:function(t){this.resultComponent=t},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.route.queryParams.subscribe(function(e){if(e){if(void 0===e.From){var n=new Date;t.fromDateParam=n.toJSON(),t.fromDate.setValue(n)}else t.fromDateParam=e.From,t.fromDate.setValue(new Date(Date.parse(t.fromDateParam)));if(void 0===e.To){var i=new Date;t.toDateParam=i.toJSON(),t.toDate.setValue(i)}else t.toDateParam=e.To,t.toDate.setValue(new Date(Date.parse(t.toDateParam)));t.emailParam=void 0===e.email?"":e.email,t.email.setValue(t.emailParam),t.devicemodelParam=void 0===e.devicemodel?"":e.devicemodel,t.devicemodel.setValue(t.devicemodelParam),t.selectedResultID=void 0===e.selectedResultID?0:e.selectedResultID,t.getResults()}}),this.dataSource.filterPredicate=function(t,e){return-1!==JSON.stringify(t.Device).trim().toLowerCase().indexOf(e)},this.email.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){t.email.setValue(e.trim(),{emitEvent:!1});var n=e.trim();n.length>0?t.deviceService.getEmails(n).subscribe(function(e){t.registeredEmails=e}):t.registeredEmails=[]}),this.devicemodel.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){var n=e.trim();n.length>0?t.deviceService.getDeviceModels(n).subscribe(function(e){t.registeredDevices=e}):t.registeredDevices=[]})},t.prototype.ngAfterViewInit=function(){var t=this;this.dataSource.sort=this.sort,this.dataSource.sortingDataAccessor=function(t,e){switch(e){case"date":return t.DateTime;default:return t[e]}},this.dataSource.paginator=this.paginator,this.sort.sortChange.subscribe(function(){return t.paginator.pageIndex=0}),this.picker._selectedChanged.subscribe(function(e){t.isValidFromDate=Vd.isMoment(e)},function(t){throw Error(t)}),this.picker2._selectedChanged.subscribe(function(e){t.isValidToDate=Vd.isMoment(e)},function(t){throw Error(t)})},t.prototype.resultRowClick=function(t){this.selectedResult=t,this.selectedResultID=t.Guid;var e=this.router.createUrlTree([],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam,selectedResultID:this.selectedResultID},preserveFragment:!0});this.location.go(e.toString()),this.resultComponent&&this.resultComponent.updateSelResult(this.selectedResult)},t.prototype.toUTCDate=function(t){return new Date(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds())},t.prototype.filteringResults=function(){this.fromDateParam=this.fromDate.value.toISOString(),this.toDateParam=this.toDate.value.toISOString(),this.emailParam=this.email.value.trim(),this.devicemodelParam=this.devicemodel.value.trim(),this.selectedResultID=0,this.selectedResult=null,this.handleFiltersChange()},t.prototype.handleFiltersChange=function(){this.router.navigate(["/results"],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam,selectedResultID:this.selectedResultID},queryParamsHandling:"merge"})},t.prototype.getResults=function(){var t=this;""!==this.fromDateParam&&""!==this.toDateParam&&this.resultService.getResults(Vd.utc(this.fromDateParam).toJSON(),Vd.utc(this.toDateParam).toJSON(),this.devicemodelParam,this.emailParam).subscribe(function(e){if(t.dataSource.data=e||[],t.selectedResultID){var n=t.selectedResultID,i=t.dataSource.data.filter(function(t){return t.Guid===n});i.length>0&&(t.selectedResult=i[0],t.resultComponent&&t.resultComponent.updateSelResult(t.selectedResult))}})},t}(),PT=Vr({encapsulation:0,styles:[["table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden;min-width:50rem}td[_ngcontent-%COMP%]{font-size:12pt;font-weight:500;cursor:pointer}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:1em;font-size:12pt;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}.mat-table__wrapper[_ngcontent-%COMP%] .mat-table[_ngcontent-%COMP%]{min-width:auto!important;width:100%!important}.mat-header-row[_ngcontent-%COMP%], .mat-row[_ngcontent-%COMP%]{width:100%}mat-form-field[_ngcontent-%COMP%]{margin-right:2.5rem;width:calc(100% - 2.5rem)}.mat-column-image[_ngcontent-%COMP%]{-o-object-fit:scale-down;object-fit:scale-down;flex:0 0 10%!important;min-width:2rem!important;width:10%!important}.mat-column-date[_ngcontent-%COMP%], .mat-column-device[_ngcontent-%COMP%], .mat-column-processColor[_ngcontent-%COMP%], .mat-column-rawColor[_ngcontent-%COMP%]{flex:0 0 15%!important;word-wrap:break-word!important;white-space:unset!important;width:15%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mat-card-image[_ngcontent-%COMP%]{margin:.5em!important;max-width:4em}.image[_ngcontent-%COMP%]{-o-object-fit:contain;object-fit:contain;max-width:80px}.tablecircle[_ngcontent-%COMP%]{height:2em;width:2em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.highlight[_ngcontent-%COMP%]{background:#dfdfdf!important}.card[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;height:90vh;margin:1rem 1rem 1rem 10px;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tp-form[_ngcontent-%COMP%]{min-width:150px;max-width:500px;width:100%} .cdk-overlay-pane{width:auto!important}.table-container[_ngcontent-%COMP%]{max-height:calc(100vh - 280px);overflow:auto}"]],data:{}});function OT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[29,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function YT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(1,16384,[[25,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,[" Please enter a valid email address "]))],null,function(t,e){t(e,0,0,Go(e,1).id)})}function RT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[38,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function IT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Source "]))],null,null)}function FT(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,1,"img",[["alt","static photo"],["class","mat-card-image"],["mat-card-image",""]],[[8,"src",4]],null,null,null,null)),oa(3,16384,null,0,b_,[],null,null)],null,function(t,e){t(e,2,0,e.component.imageUrl)})}function zT(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Date "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function jT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){var n=e.context.$implicit.DateTime.toLocaleString();t(e,2,0,n)})}function HT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Raw Color "]))],null,null)}function NT(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.RawColorRGB.r,e.context.$implicit.RawColorRGB.g,e.context.$implicit.RawColorRGB.b)})}function VT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Processed Color "]))],null,null)}function BT(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.ProcessedColorRGB.r,e.context.$implicit.ProcessedColorRGB.g,e.context.$implicit.ProcessedColorRGB.b)})}function WT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Device "]))],null,null)}function UT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.DeviceModel)})}function GT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function qT(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.resultRowClick(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,2,0,i);var r=t(e,5,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,4,0,r)},null)}function XT(t){return Ia(0,[wa(402653184,1,{picker:0}),wa(402653184,2,{picker2:0}),wa(402653184,3,{sort:0}),wa(402653184,4,{paginator:0}),wa(402653184,5,{content:0}),(t()(),yo(5,0,null,null,210,"div",[["fxFlex","1 1 100%"],["fxFlexAlign","start strech"],["fxLayout","row wrap"],["fxLayoutGap","10px grid "],["style","padding-top: 60px;"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(7,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(8,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(9,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(10,0,null,null,201,"div",[["class","card"],["fxFlex","56"]],null,null,null,null,null)),oa(11,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(12,0,null,null,199,"div",[["fxLayout","column"],["style","min-height: 30vh; margin: 1em;"]],null,null,null,null,null)),oa(13,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(14,0,null,null,113,"div",[["fxFill",""],["fxLayout",""],["fxLayoutAlign","strech center"]],null,null,null,null,null)),oa(15,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(16,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(17,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),(t()(),yo(18,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(19,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,6,{_control:0}),wa(335544320,7,{_placeholderChild:0}),wa(335544320,8,{_labelChild:0}),wa(603979776,9,{_errorChildren:1}),wa(603979776,10,{_hintChildren:1}),wa(603979776,11,{_prefixChildren:1}),wa(603979776,12,{_suffixChildren:1}),(t()(),yo(27,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","From Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,28)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,28).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,28)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,28)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,30)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,30)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,30)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,30)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,37)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,37)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,37)._onInput()&&i),i},null,null)),oa(28,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(29,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(30,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(33,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(35,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(37,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[6,4]],Qv,null,[mk]),(t()(),yo(39,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,40)._button.focus()&&i),i},dC,uC)),oa(40,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,13,{_customIcon:0}),oa(42,16384,[[12,4]],0,ib,[],null,null),(t()(),yo(43,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(44,180224,[[1,4],[2,4],["picker1",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(45,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(46,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,14,{_control:0}),wa(335544320,15,{_placeholderChild:0}),wa(335544320,16,{_labelChild:0}),wa(603979776,17,{_errorChildren:1}),wa(603979776,18,{_hintChildren:1}),wa(603979776,19,{_prefixChildren:1}),wa(603979776,20,{_suffixChildren:1}),(t()(),yo(54,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","To Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,55)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,55).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,55)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,55)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,57)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,57)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,57)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,57)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,64)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,64)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,64)._onInput()&&i),i},null,null)),oa(55,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(56,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(57,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(60,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(62,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(64,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[14,4]],Qv,null,[mk]),(t()(),yo(66,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,67)._button.focus()&&i),i},dC,uC)),oa(67,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,21,{_customIcon:0}),oa(69,16384,[[20,4]],0,ib,[],null,null),(t()(),yo(70,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(71,180224,[[1,4],[2,4],["picker2",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(72,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(73,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,22,{_control:0}),wa(335544320,23,{_placeholderChild:0}),wa(335544320,24,{_labelChild:0}),wa(603979776,25,{_errorChildren:1}),wa(603979776,26,{_hintChildren:1}),wa(603979776,27,{_prefixChildren:1}),wa(603979776,28,{_suffixChildren:1}),(t()(),yo(81,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","email"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,82)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,82).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,82)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,82)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,83)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,83)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,83)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,83)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,88)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,88)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,88)._onInput()&&i),i},null,null)),oa(82,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(83,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(85,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(87,16384,null,0,gv,[[4,q_]],null,null),oa(88,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[22,4]],Qv,null,[mk]),(t()(),yo(90,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(92,1097728,[["auto",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,29,{options:1}),wa(603979776,30,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,OT)),oa(96,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),go(16777216,null,5,1,null,YT)),oa(98,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(99,0,null,null,24,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(100,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,31,{_control:0}),wa(335544320,32,{_placeholderChild:0}),wa(335544320,33,{_labelChild:0}),wa(603979776,34,{_errorChildren:1}),wa(603979776,35,{_hintChildren:1}),wa(603979776,36,{_prefixChildren:1}),wa(603979776,37,{_suffixChildren:1}),(t()(),yo(108,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","device model"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,109)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,109).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,109)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,109)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,110)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,110)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,110)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,110)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,115)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,115)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,115)._onInput()&&i),i},null,null)),oa(109,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(110,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(112,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(114,16384,null,0,gv,[[4,q_]],null,null),oa(115,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[31,4]],Qv,null,[mk]),(t()(),yo(117,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(119,1097728,[["autod",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,38,{options:1}),wa(603979776,39,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,RT)),oa(123,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(124,0,null,null,3,"button",[["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.filteringResults()&&i),i},Nk,Hk)),oa(125,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],color:[1,"color"]},null),(t()(),yo(126,0,null,0,1,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"],["style","vertical-align: top; height:24pt;"],["svgIcon","icon_funnel"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(127,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],{svgIcon:[0,"svgIcon"]},null),(t()(),yo(128,0,null,null,83,"div",[["class","mat-elevation-z2"]],null,null,null,null,null)),(t()(),yo(129,0,null,null,79,"div",[["class","table-container"]],null,null,null,null,null)),(t()(),yo(130,0,null,null,78,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""],["matSort",""],["matSortActive","date"],["matSortDirection","asc"],["style","min-width: 30vm; \n width: 100%; min-height: inherit;"]],null,null,null,ML,kL)),oa(131,737280,[[3,4]],0,PD,[],{active:[0,"active"],direction:[1,"direction"]},null),oa(132,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,40,{_contentColumnDefs:1}),wa(603979776,41,{_contentRowDefs:1}),wa(603979776,42,{_contentHeaderRowDefs:1}),wa(603979776,43,{_contentFooterRowDefs:1}),(t()(),yo(137,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(139,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,44,{cell:0}),wa(335544320,45,{headerCell:0}),wa(335544320,46,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,IT)),oa(145,16384,null,0,hL,[Mn],null,null),la(2048,[[45,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,FT)),oa(148,16384,null,0,dL,[Mn],null,null),la(2048,[[44,4]],VC,null,[dL]),(t()(),yo(150,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(152,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,47,{cell:0}),wa(335544320,48,{headerCell:0}),wa(335544320,49,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,zT)),oa(158,16384,null,0,hL,[Mn],null,null),la(2048,[[48,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,jT)),oa(161,16384,null,0,dL,[Mn],null,null),la(2048,[[47,4]],VC,null,[dL]),(t()(),yo(163,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(165,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,50,{cell:0}),wa(335544320,51,{headerCell:0}),wa(335544320,52,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,HT)),oa(171,16384,null,0,hL,[Mn],null,null),la(2048,[[51,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,NT)),oa(174,16384,null,0,dL,[Mn],null,null),la(2048,[[50,4]],VC,null,[dL]),(t()(),yo(176,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(178,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,53,{cell:0}),wa(335544320,54,{headerCell:0}),wa(335544320,55,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,VT)),oa(184,16384,null,0,hL,[Mn],null,null),la(2048,[[54,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,BT)),oa(187,16384,null,0,dL,[Mn],null,null),la(2048,[[53,4]],VC,null,[dL]),(t()(),yo(189,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(191,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,56,{cell:0}),wa(335544320,57,{headerCell:0}),wa(335544320,58,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,WT)),oa(197,16384,null,0,hL,[Mn],null,null),la(2048,[[57,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,UT)),oa(200,16384,null,0,dL,[Mn],null,null),la(2048,[[56,4]],VC,null,[dL]),(t()(),yo(202,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,GT)),oa(204,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[42,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,qT)),oa(207,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[41,4]],JC,null,[yL]),(t()(),yo(209,0,null,null,2,"mat-paginator",[["class","mat-paginator"]],null,null,null,ET,kT)),oa(210,245760,[[4,4]],0,BD,[HD,Zi],{length:[0,"length"],pageSize:[1,"pageSize"],pageSizeOptions:[2,"pageSizeOptions"]},null),Ea(211,5),(t()(),yo(212,0,null,null,3,"div",[["class","card"],["fxFlex","40"],["style","overflow: auto"]],null,null,null,null,null)),oa(213,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(214,0,null,null,1,"app-details",[],null,null,null,wD,HL)),oa(215,114688,[[5,4],["details",4]],0,jL,[Am,DS],{selectedResult:[0,"selectedResult"],view:[1,"view"]},null)],function(t,e){var n=e.component;t(e,6,0,"row wrap"),t(e,7,0,"10px grid "),t(e,8,0,"start strech"),t(e,9,0,"1 1 100%"),t(e,11,0,"56"),t(e,13,0,"column"),t(e,15,0,""),t(e,16,0,"strech center"),t(e,29,0,""),t(e,30,0,n.picker),t(e,33,0,n.fromDate),t(e,37,0,"From Date",""),t(e,40,0,n.picker),t(e,56,0,""),t(e,57,0,Go(e,71)),t(e,60,0,n.toDate),t(e,64,0,"To Date",""),t(e,67,0,Go(e,71)),t(e,83,0,Go(e,92)),t(e,85,0,n.email),t(e,88,0,"email","text"),t(e,92,0,""),t(e,96,0,n.registeredEmails),t(e,98,0,n.email.hasError("email")&&!n.email.hasError("required")),t(e,110,0,Go(e,119)),t(e,112,0,n.devicemodel),t(e,115,0,"device model","text"),t(e,119,0,""),t(e,123,0,n.registeredDevices),t(e,125,0,!(n.fromDate.valid&&n.toDate.valid&&n.email.valid),"primary"),t(e,127,0,"icon_funnel"),t(e,131,0,"date","asc"),t(e,132,0,n.dataSource),t(e,139,0,"image"),t(e,152,0,"date"),t(e,165,0,"rawColor"),t(e,178,0,"processColor"),t(e,191,0,"device"),t(e,204,0,n.displayedColumns),t(e,207,0,n.displayedColumns);var i=t(e,211,0,5,10,15,25,100);t(e,210,0,100,10,i),t(e,213,0,"40"),t(e,215,0,n.selectedResult,"result")},function(t,e){t(e,18,1,["standard"==Go(e,19).appearance,"fill"==Go(e,19).appearance,"outline"==Go(e,19).appearance,"legacy"==Go(e,19).appearance,Go(e,19)._control.errorState,Go(e,19)._canLabelFloat,Go(e,19)._shouldLabelFloat(),Go(e,19)._hasFloatingLabel(),Go(e,19)._hideControlPlaceholder(),Go(e,19)._control.disabled,Go(e,19)._control.autofilled,Go(e,19)._control.focused,"accent"==Go(e,19).color,"warn"==Go(e,19).color,Go(e,19)._shouldForward("untouched"),Go(e,19)._shouldForward("touched"),Go(e,19)._shouldForward("pristine"),Go(e,19)._shouldForward("dirty"),Go(e,19)._shouldForward("valid"),Go(e,19)._shouldForward("invalid"),Go(e,19)._shouldForward("pending"),!Go(e,19)._animationsEnabled]),t(e,27,1,[Go(e,29).required?"":null,!0,(null==Go(e,30)._datepicker?null:Go(e,30)._datepicker.opened)&&Go(e,30)._datepicker.id||null,Go(e,30).min?Go(e,30)._dateAdapter.toIso8601(Go(e,30).min):null,Go(e,30).max?Go(e,30)._dateAdapter.toIso8601(Go(e,30).max):null,Go(e,30).disabled,Go(e,35).ngClassUntouched,Go(e,35).ngClassTouched,Go(e,35).ngClassPristine,Go(e,35).ngClassDirty,Go(e,35).ngClassValid,Go(e,35).ngClassInvalid,Go(e,35).ngClassPending,Go(e,37)._isServer,Go(e,37).id,Go(e,37).placeholder,Go(e,37).disabled,Go(e,37).required,Go(e,37).readonly&&!Go(e,37)._isNativeSelect||null,Go(e,37)._ariaDescribedby||null,Go(e,37).errorState,Go(e,37).required.toString()]),t(e,39,0,-1,Go(e,40).datepicker&&Go(e,40).datepicker.opened,Go(e,40).datepicker&&"accent"===Go(e,40).datepicker.color,Go(e,40).datepicker&&"warn"===Go(e,40).datepicker.color),t(e,45,1,["standard"==Go(e,46).appearance,"fill"==Go(e,46).appearance,"outline"==Go(e,46).appearance,"legacy"==Go(e,46).appearance,Go(e,46)._control.errorState,Go(e,46)._canLabelFloat,Go(e,46)._shouldLabelFloat(),Go(e,46)._hasFloatingLabel(),Go(e,46)._hideControlPlaceholder(),Go(e,46)._control.disabled,Go(e,46)._control.autofilled,Go(e,46)._control.focused,"accent"==Go(e,46).color,"warn"==Go(e,46).color,Go(e,46)._shouldForward("untouched"),Go(e,46)._shouldForward("touched"),Go(e,46)._shouldForward("pristine"),Go(e,46)._shouldForward("dirty"),Go(e,46)._shouldForward("valid"),Go(e,46)._shouldForward("invalid"),Go(e,46)._shouldForward("pending"),!Go(e,46)._animationsEnabled]),t(e,54,1,[Go(e,56).required?"":null,!0,(null==Go(e,57)._datepicker?null:Go(e,57)._datepicker.opened)&&Go(e,57)._datepicker.id||null,Go(e,57).min?Go(e,57)._dateAdapter.toIso8601(Go(e,57).min):null,Go(e,57).max?Go(e,57)._dateAdapter.toIso8601(Go(e,57).max):null,Go(e,57).disabled,Go(e,62).ngClassUntouched,Go(e,62).ngClassTouched,Go(e,62).ngClassPristine,Go(e,62).ngClassDirty,Go(e,62).ngClassValid,Go(e,62).ngClassInvalid,Go(e,62).ngClassPending,Go(e,64)._isServer,Go(e,64).id,Go(e,64).placeholder,Go(e,64).disabled,Go(e,64).required,Go(e,64).readonly&&!Go(e,64)._isNativeSelect||null,Go(e,64)._ariaDescribedby||null,Go(e,64).errorState,Go(e,64).required.toString()]),t(e,66,0,-1,Go(e,67).datepicker&&Go(e,67).datepicker.opened,Go(e,67).datepicker&&"accent"===Go(e,67).datepicker.color,Go(e,67).datepicker&&"warn"===Go(e,67).datepicker.color),t(e,72,1,["standard"==Go(e,73).appearance,"fill"==Go(e,73).appearance,"outline"==Go(e,73).appearance,"legacy"==Go(e,73).appearance,Go(e,73)._control.errorState,Go(e,73)._canLabelFloat,Go(e,73)._shouldLabelFloat(),Go(e,73)._hasFloatingLabel(),Go(e,73)._hideControlPlaceholder(),Go(e,73)._control.disabled,Go(e,73)._control.autofilled,Go(e,73)._control.focused,"accent"==Go(e,73).color,"warn"==Go(e,73).color,Go(e,73)._shouldForward("untouched"),Go(e,73)._shouldForward("touched"),Go(e,73)._shouldForward("pristine"),Go(e,73)._shouldForward("dirty"),Go(e,73)._shouldForward("valid"),Go(e,73)._shouldForward("invalid"),Go(e,73)._shouldForward("pending"),!Go(e,73)._animationsEnabled]),t(e,81,1,[Go(e,83).autocompleteAttribute,Go(e,83).autocompleteDisabled?null:"combobox",Go(e,83).autocompleteDisabled?null:"list",Go(e,83).panelOpen&&Go(e,83).activeOption?Go(e,83).activeOption.id:null,Go(e,83).autocompleteDisabled?null:Go(e,83).panelOpen.toString(),Go(e,83).autocompleteDisabled||!Go(e,83).panelOpen?null:null==Go(e,83).autocomplete?null:Go(e,83).autocomplete.id,!Go(e,83).autocompleteDisabled,Go(e,87).ngClassUntouched,Go(e,87).ngClassTouched,Go(e,87).ngClassPristine,Go(e,87).ngClassDirty,Go(e,87).ngClassValid,Go(e,87).ngClassInvalid,Go(e,87).ngClassPending,Go(e,88)._isServer,Go(e,88).id,Go(e,88).placeholder,Go(e,88).disabled,Go(e,88).required,Go(e,88).readonly&&!Go(e,88)._isNativeSelect||null,Go(e,88)._ariaDescribedby||null,Go(e,88).errorState,Go(e,88).required.toString()]),t(e,99,1,["standard"==Go(e,100).appearance,"fill"==Go(e,100).appearance,"outline"==Go(e,100).appearance,"legacy"==Go(e,100).appearance,Go(e,100)._control.errorState,Go(e,100)._canLabelFloat,Go(e,100)._shouldLabelFloat(),Go(e,100)._hasFloatingLabel(),Go(e,100)._hideControlPlaceholder(),Go(e,100)._control.disabled,Go(e,100)._control.autofilled,Go(e,100)._control.focused,"accent"==Go(e,100).color,"warn"==Go(e,100).color,Go(e,100)._shouldForward("untouched"),Go(e,100)._shouldForward("touched"),Go(e,100)._shouldForward("pristine"),Go(e,100)._shouldForward("dirty"),Go(e,100)._shouldForward("valid"),Go(e,100)._shouldForward("invalid"),Go(e,100)._shouldForward("pending"),!Go(e,100)._animationsEnabled]),t(e,108,1,[Go(e,110).autocompleteAttribute,Go(e,110).autocompleteDisabled?null:"combobox",Go(e,110).autocompleteDisabled?null:"list",Go(e,110).panelOpen&&Go(e,110).activeOption?Go(e,110).activeOption.id:null,Go(e,110).autocompleteDisabled?null:Go(e,110).panelOpen.toString(),Go(e,110).autocompleteDisabled||!Go(e,110).panelOpen?null:null==Go(e,110).autocomplete?null:Go(e,110).autocomplete.id,!Go(e,110).autocompleteDisabled,Go(e,114).ngClassUntouched,Go(e,114).ngClassTouched,Go(e,114).ngClassPristine,Go(e,114).ngClassDirty,Go(e,114).ngClassValid,Go(e,114).ngClassInvalid,Go(e,114).ngClassPending,Go(e,115)._isServer,Go(e,115).id,Go(e,115).placeholder,Go(e,115).disabled,Go(e,115).required,Go(e,115).readonly&&!Go(e,115)._isNativeSelect||null,Go(e,115)._ariaDescribedby||null,Go(e,115).errorState,Go(e,115).required.toString()]),t(e,124,0,Go(e,125).disabled||null,"NoopAnimations"===Go(e,125)._animationMode),t(e,126,0,Go(e,127).inline,"primary"!==Go(e,127).color&&"accent"!==Go(e,127).color&&"warn"!==Go(e,127).color)})}function KT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-results",[],null,null,null,XT,PT)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,AT,[c_,dd,Am,xf,Xl,kD,kk,Iu],null,null)],function(t,e){t(e,2,0)},null)}var ZT=Ro("app-results",AT,KT,{},{},[]),JT=function(){function t(t,e){this.dialogRef=t,this.data=e}return t.prototype.ngOnInit=function(){},t.prototype.closeDialog=function(){this.dialogRef.close()},t}(),QT=function(){function t(t,e,n,i,r,o){var a=this;this.resultService=t,this.deviceService=e,this.router=n,this.route=i,this.location=r,this.dialog=o,this.toggle=!1,this.state=!0,this.dataSource=new wL,this.selectedResultID=0,this.allResults=[],this.displayedColumns=["image","date","rawColor","processColor","device"],this.imageUrl=Bl.assetPath+"/assets/card_new_small.bmp",this.emailParam="",this.email=new wv("",[R_.required,R_.email]),this.domainVerification=!1,this.doFilter=function(t){a.dataSource.filter=t.trim().toLowerCase()},this.selectedResult=null,this.subscribeToEvents()}return Object.defineProperty(t.prototype,"stateIcon",{get:function(){return this.state?"play_arrow":"stop"},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"content",{set:function(t){this.resultComponent=t},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.route.queryParams.subscribe(function(e){e&&(t.selectedResultID=+(void 0===e.selectedResultID?0:e.selectedResultID))}),this.dataSource.filterPredicate=function(t,e){return-1!==JSON.stringify(t.Device).trim().toLowerCase().indexOf(e)},this.email.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){t.email.setValue(e.trim(),{emitEvent:!1});var n=e.trim();n.length>0?t.deviceService.getEmails(n).subscribe(function(e){t.registeredEmails=e}):t.registeredEmails=[]})},t.prototype.ngAfterViewInit=function(){},t.prototype.resultRowClick=function(t){this.selectedResult=t,this.selectedResultID=t.Guid,this.resultComponent&&this.resultComponent.updateSelResult(this.selectedResult)},t.prototype.setEmailToHub=function(){var t=this;this.state?this.email.valid&&(this.dataSource.data=[],this.emailParam=this.email.value,this.selectedResultID=0,this.selectedResult=null,this.resultService.verification(this.email.value).subscribe(function(e){!1===e?t.dialog.open(JT,{data:{error:!0,msg:"The specified email does not match any registered device. Please make sure you have sent at least one color result via email and try again."},width:"350px"}):(t.state=!t.state,t.dialog.open(JT,{data:{msg:"Results captured by the selected device will now appear as soon as they arrive.",error:!1},width:"350px"}),t.resultService.setEmailToHubConnection(t.email.value))})):(this.resultService.setEmailToHubConnection(""),this.state=!this.state)},t.prototype.handleFiltersChange=function(){this.router.navigate(["/realtime"],{queryParams:{email:this.emailParam,selectedResultID:this.selectedResultID},queryParamsHandling:"merge"})},t.prototype.subscribeToEvents=function(){var t=this;this.resultService.messageReceived.subscribe(function(e){var n=e;t.allResults.unshift(n),t.dataSource.data=t.allResults,t.resultRowClick(n)})},t.prototype.removeSpaces=function(t){return t&&t.value&&!t.value.replace(/\s/g,"").length&&t.setValue(""),null},t}(),$T=Vr({encapsulation:0,styles:[["mat-card[_ngcontent-%COMP%]{padding:50px}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden;min-width:50rem}td[_ngcontent-%COMP%]{font-size:16px;font-weight:500;cursor:pointer}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:25px;font-size:16px;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}.mat-table__wrapper[_ngcontent-%COMP%] .mat-table[_ngcontent-%COMP%]{min-width:auto!important;width:100%!important}.mat-header-row[_ngcontent-%COMP%], .mat-row[_ngcontent-%COMP%]{width:100%}mat-form-field[_ngcontent-%COMP%]{margin-right:2.5rem;width:calc(100% - 2.5rem)}.mat-column-image[_ngcontent-%COMP%]{-o-object-fit:scale-down;object-fit:scale-down;flex:0 0 10%!important;min-width:2rem!important;width:10%!important}.mat-column-date[_ngcontent-%COMP%], .mat-column-device[_ngcontent-%COMP%], .mat-column-processColor[_ngcontent-%COMP%], .mat-column-rawColor[_ngcontent-%COMP%]{flex:0 0 15%!important;word-wrap:break-word!important;white-space:unset!important;width:15%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mat-card-image[_ngcontent-%COMP%]{margin:.5em!important;max-width:4em}.image[_ngcontent-%COMP%]{-o-object-fit:contain;object-fit:contain;max-width:80px}.tablecircle[_ngcontent-%COMP%]{height:2em;width:2em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.cardspage[_ngcontent-%COMP%]{width:100%;margin-top:2em;background-color:#f1f5fa;padding:0;display:flex;flex-flow:row wrap}.cardinforow[_ngcontent-%COMP%]{margin:0 1em 1em;padding:0}.carditem[_ngcontent-%COMP%]{margin-top:1em;margin-left:20px;margin-right:20px;max-width:145em}.container[_ngcontent-%COMP%]{width:100%;padding-right:0;padding-left:0;margin-right:0;margin-left:0}.highlight[_ngcontent-%COMP%]{background:#f3f3f3!important}.cardcontainer[_ngcontent-%COMP%]{margin-bottom:1em}.card[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;height:85vh;margin:1rem 1rem 1rem 10px;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.blink[_ngcontent-%COMP%]{animation:1s steps(2,start) infinite blink-animation;-webkit-animation:1s steps(2,start) infinite blink-animation}@keyframes blink-animation{to{visibility:hidden}}@-webkit-keyframes blink-animation{to{visibility:hidden}}.tp-form[_ngcontent-%COMP%]{min-width:150px;max-width:500px;width:100%} .cdk-overlay-pane{width:auto!important}"]],data:{}});function tE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[9,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function eE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(1,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["play_arrow"]))],function(t,e){t(e,1,0)},function(t,e){t(e,0,0,Go(e,1).inline,"primary"!==Go(e,1).color&&"accent"!==Go(e,1).color&&"warn"!==Go(e,1).color)})}function nE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-icon",[["class","mat-18 blink mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(1,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["stop"]))],function(t,e){t(e,1,0)},function(t,e){t(e,0,0,Go(e,1).inline,"primary"!==Go(e,1).color&&"accent"!==Go(e,1).color&&"warn"!==Go(e,1).color)})}function iE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Source "]))],null,null)}function rE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,1,"img",[["alt","static photo"],["class","mat-card-image"],["mat-card-image",""]],[[8,"src",4]],null,null,null,null)),oa(3,16384,null,0,b_,[],null,null)],null,function(t,e){t(e,2,0,e.component.imageUrl)})}function oE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Date "]))],null,null)}function aE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){var n=e.context.$implicit.DateTime.toLocaleString();t(e,2,0,n)})}function lE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Raw Color "]))],null,null)}function sE(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.RawColorRGB.r,e.context.$implicit.RawColorRGB.g,e.context.$implicit.RawColorRGB.b)})}function uE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Processed Color "]))],null,null)}function cE(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.ProcessedColorRGB.r,e.context.$implicit.ProcessedColorRGB.g,e.context.$implicit.ProcessedColorRGB.b)})}function dE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Device "]))],null,null)}function hE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.DeviceModel)})}function pE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function fE(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.resultRowClick(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,2,0,i);var r=t(e,5,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,4,0,r)},null)}function mE(t){return Ia(0,[wa(402653184,1,{content:0}),(t()(),yo(1,0,null,null,128,"div",[["fxFlex","1 1 100%"],["fxFlexAlign","start strech"],["fxLayout","row wrap"],["fxLayoutGap","10px grid "],["style","padding-top: 60px;"]],null,null,null,null,null)),oa(2,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(3,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(4,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(5,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(6,0,null,null,119,"div",[["class","card"],["fxFlex","56"]],null,null,null,null,null)),oa(7,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(8,0,null,null,117,"mat-card",[["class","mat-card"],["fxFlex",""]],null,null,null,S_,M_)),oa(9,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(10,49152,null,0,x_,[],null,null),(t()(),yo(11,0,null,0,36,"div",[["fxLayout",""],["fxLayoutAlign","strech center"]],null,null,null,null,null)),oa(12,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(13,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(14,0,null,null,27,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(15,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,2,{_control:0}),wa(335544320,3,{_placeholderChild:0}),wa(335544320,4,{_labelChild:0}),wa(603979776,5,{_errorChildren:1}),wa(603979776,6,{_hintChildren:1}),wa(603979776,7,{_prefixChildren:1}),wa(603979776,8,{_suffixChildren:1}),(t()(),yo(23,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","email"],["type","text"]],[[8,"readOnly",0],[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,24)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,24).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,24)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,24)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,25)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,25)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,25)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,25)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,30)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,30)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,30)._onInput()&&i),i},null,null)),oa(24,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(25,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(27,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(29,16384,null,0,gv,[[4,q_]],null,null),oa(30,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[2,4]],Qv,null,[mk]),(t()(),yo(32,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(34,1097728,[["auto",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,9,{options:1}),wa(603979776,10,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,tE)),oa(38,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(39,0,null,5,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(40,16384,[[5,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,[" Please, enter a valid address "])),(t()(),yo(42,0,null,null,5,"button",[["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.setEmailToHub()&&i),i},Nk,Hk)),oa(43,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),(t()(),go(16777216,null,0,1,null,eE)),oa(45,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,0,1,null,nE)),oa(47,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(48,0,null,0,77,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(49,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,11,{_contentColumnDefs:1}),wa(603979776,12,{_contentRowDefs:1}),wa(603979776,13,{_contentHeaderRowDefs:1}),wa(603979776,14,{_contentFooterRowDefs:1}),(t()(),yo(54,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(56,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,15,{cell:0}),wa(335544320,16,{headerCell:0}),wa(335544320,17,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,iE)),oa(62,16384,null,0,hL,[Mn],null,null),la(2048,[[16,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,rE)),oa(65,16384,null,0,dL,[Mn],null,null),la(2048,[[15,4]],VC,null,[dL]),(t()(),yo(67,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(69,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,18,{cell:0}),wa(335544320,19,{headerCell:0}),wa(335544320,20,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,oE)),oa(75,16384,null,0,hL,[Mn],null,null),la(2048,[[19,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,aE)),oa(78,16384,null,0,dL,[Mn],null,null),la(2048,[[18,4]],VC,null,[dL]),(t()(),yo(80,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(82,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,21,{cell:0}),wa(335544320,22,{headerCell:0}),wa(335544320,23,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,lE)),oa(88,16384,null,0,hL,[Mn],null,null),la(2048,[[22,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,sE)),oa(91,16384,null,0,dL,[Mn],null,null),la(2048,[[21,4]],VC,null,[dL]),(t()(),yo(93,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(95,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,24,{cell:0}),wa(335544320,25,{headerCell:0}),wa(335544320,26,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,uE)),oa(101,16384,null,0,hL,[Mn],null,null),la(2048,[[25,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,cE)),oa(104,16384,null,0,dL,[Mn],null,null),la(2048,[[24,4]],VC,null,[dL]),(t()(),yo(106,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(108,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,27,{cell:0}),wa(335544320,28,{headerCell:0}),wa(335544320,29,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,dE)),oa(114,16384,null,0,hL,[Mn],null,null),la(2048,[[28,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,hE)),oa(117,16384,null,0,dL,[Mn],null,null),la(2048,[[27,4]],VC,null,[dL]),(t()(),yo(119,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,pE)),oa(121,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[13,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,fE)),oa(124,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[12,4]],JC,null,[yL]),(t()(),yo(126,0,null,null,3,"div",[["class","card"],["fxFlex","38"],["style","overflow: auto"]],null,null,null,null,null)),oa(127,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(128,0,null,null,1,"app-details",[],null,null,null,wD,HL)),oa(129,114688,[[1,4],["details",4]],0,jL,[Am,DS],{selectedResult:[0,"selectedResult"],view:[1,"view"]},null)],function(t,e){var n=e.component;t(e,2,0,"row wrap"),t(e,3,0,"10px grid "),t(e,4,0,"start strech"),t(e,5,0,"1 1 100%"),t(e,7,0,"56"),t(e,9,0,""),t(e,12,0,""),t(e,13,0,"strech center"),t(e,25,0,Go(e,34)),t(e,27,0,n.email),t(e,30,0,"email","text"),t(e,34,0,""),t(e,38,0,n.registeredEmails),t(e,43,0,"primary"),t(e,45,0,n.state),t(e,47,0,!n.state),t(e,49,0,n.dataSource),t(e,56,0,"image"),t(e,69,0,"date"),t(e,82,0,"rawColor"),t(e,95,0,"processColor"),t(e,108,0,"device"),t(e,121,0,n.displayedColumns),t(e,124,0,n.displayedColumns),t(e,127,0,"38"),t(e,129,0,n.selectedResult,"result")},function(t,e){var n=e.component;t(e,14,1,["standard"==Go(e,15).appearance,"fill"==Go(e,15).appearance,"outline"==Go(e,15).appearance,"legacy"==Go(e,15).appearance,Go(e,15)._control.errorState,Go(e,15)._canLabelFloat,Go(e,15)._shouldLabelFloat(),Go(e,15)._hasFloatingLabel(),Go(e,15)._hideControlPlaceholder(),Go(e,15)._control.disabled,Go(e,15)._control.autofilled,Go(e,15)._control.focused,"accent"==Go(e,15).color,"warn"==Go(e,15).color,Go(e,15)._shouldForward("untouched"),Go(e,15)._shouldForward("touched"),Go(e,15)._shouldForward("pristine"),Go(e,15)._shouldForward("dirty"),Go(e,15)._shouldForward("valid"),Go(e,15)._shouldForward("invalid"),Go(e,15)._shouldForward("pending"),!Go(e,15)._animationsEnabled]),t(e,23,1,[!n.state,Go(e,25).autocompleteAttribute,Go(e,25).autocompleteDisabled?null:"combobox",Go(e,25).autocompleteDisabled?null:"list",Go(e,25).panelOpen&&Go(e,25).activeOption?Go(e,25).activeOption.id:null,Go(e,25).autocompleteDisabled?null:Go(e,25).panelOpen.toString(),Go(e,25).autocompleteDisabled||!Go(e,25).panelOpen?null:null==Go(e,25).autocomplete?null:Go(e,25).autocomplete.id,!Go(e,25).autocompleteDisabled,Go(e,29).ngClassUntouched,Go(e,29).ngClassTouched,Go(e,29).ngClassPristine,Go(e,29).ngClassDirty,Go(e,29).ngClassValid,Go(e,29).ngClassInvalid,Go(e,29).ngClassPending,Go(e,30)._isServer,Go(e,30).id,Go(e,30).placeholder,Go(e,30).disabled,Go(e,30).required,Go(e,30).readonly&&!Go(e,30)._isNativeSelect||null,Go(e,30)._ariaDescribedby||null,Go(e,30).errorState,Go(e,30).required.toString()]),t(e,39,0,Go(e,40).id),t(e,42,0,Go(e,43).disabled||null,"NoopAnimations"===Go(e,43)._animationMode)})}function gE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-real-time-results",[],null,null,null,mE,$T)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,QT,[c_,kD,Am,xf,Xl,DS],null,null)],function(t,e){t(e,2,0)},null)}var yE=Ro("app-real-time-results",QT,gE,{state:"state"},{},[]),_E=0,vE=function(){function t(){this._stateChanges=new H,this._openCloseAllActions=new H,this.id="cdk-accordion-"+_E++,this._multi=!1}return Object.defineProperty(t.prototype,"multi",{get:function(){return this._multi},set:function(t){this._multi=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.openAll=function(){this._openCloseAll(!0)},t.prototype.closeAll=function(){this._openCloseAll(!1)},t.prototype.ngOnChanges=function(t){this._stateChanges.next(t)},t.prototype.ngOnDestroy=function(){this._stateChanges.complete()},t.prototype._openCloseAll=function(t){this.multi&&this._openCloseAllActions.next(t)},t}(),bE=0,xE=function(){function t(t,e,n){var i=this;this.accordion=t,this._changeDetectorRef=e,this._expansionDispatcher=n,this._openCloseAllSubscription=x.EMPTY,this.closed=new kn,this.opened=new kn,this.destroyed=new kn,this.expandedChange=new kn,this.id="cdk-accordion-child-"+bE++,this._expanded=!1,this._disabled=!1,this._removeUniqueSelectionListener=function(){},this._removeUniqueSelectionListener=n.listen(function(t,e){i.accordion&&!i.accordion.multi&&i.accordion.id===e&&i.id!==t&&(i.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}return Object.defineProperty(t.prototype,"expanded",{get:function(){return this._expanded},set:function(t){t=Xu(t),this._expanded!==t&&(this._expanded=t,this.expandedChange.emit(t),t?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return this._disabled},set:function(t){this._disabled=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()},t.prototype.toggle=function(){this.disabled||(this.expanded=!this.expanded)},t.prototype.close=function(){this.disabled||(this.expanded=!1)},t.prototype.open=function(){this.disabled||(this.expanded=!0)},t.prototype._subscribeToOpenCloseAllActions=function(){var t=this;return this.accordion._openCloseAllActions.subscribe(function(e){t.disabled||(t.expanded=e)})},t}(),wE=function(){return function(){}}(),kE=new Lt("MAT_ACCORDION"),ME=0,SE=new Lt("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS"),CE=function(t){function e(e,n,i,r,o,a,l){var s=t.call(this,e,n,i)||this;return s._viewContainerRef=r,s._animationMode=a,s._hideToggle=!1,s.afterExpand=new kn,s.afterCollapse=new kn,s._inputChanges=new H,s._headerId="mat-expansion-panel-header-"+ME++,s._bodyAnimationDone=new H,s.accordion=e,s._document=o,s._bodyAnimationDone.pipe(cM(function(t,e){return t.fromState===e.fromState&&t.toState===e.toState})).subscribe(function(t){"void"!==t.fromState&&("expanded"===t.toState?s.afterExpand.emit():"collapsed"===t.toState&&s.afterCollapse.emit())}),l&&(s.hideToggle=l.hideToggle),s}return r(e,t),Object.defineProperty(e.prototype,"hideToggle",{get:function(){return this._hideToggle||this.accordion&&this.accordion.hideToggle},set:function(t){this._hideToggle=Xu(t)},enumerable:!0,configurable:!0}),e.prototype._hasSpacing=function(){return!!this.accordion&&"default"===(this.expanded?this.accordion.displayMode:this._getExpandedState())},e.prototype._getExpandedState=function(){return this.expanded?"expanded":"collapsed"},e.prototype.ngAfterContentInit=function(){var t=this;this._lazyContent&&this.opened.pipe(hc(null),Cc(function(){return t.expanded&&!t._portal}),Ac(1)).subscribe(function(){t._portal=new rM(t._lazyContent._template,t._viewContainerRef)})},e.prototype.ngOnChanges=function(t){this._inputChanges.next(t)},e.prototype.ngOnDestroy=function(){t.prototype.ngOnDestroy.call(this),this._bodyAnimationDone.complete(),this._inputChanges.complete()},e.prototype._containsFocus=function(){if(this._body&&this._document){var t=this._document.activeElement,e=this._body.nativeElement;return t===e||e.contains(t)}return!1},e}(xE),LE=function(){function t(t,e,n,i,r){var o=this;this.panel=t,this._element=e,this._focusMonitor=n,this._changeDetectorRef=i,this._parentChangeSubscription=x.EMPTY;var a=t.accordion?t.accordion._stateChanges.pipe(Cc(function(t){return!!t.hideToggle})):sc;this._parentChangeSubscription=ht(t.opened,t.closed,a,t._inputChanges.pipe(Cc(function(t){return!(!t.hideToggle&&!t.disabled)}))).subscribe(function(){return o._changeDetectorRef.markForCheck()}),t.closed.pipe(Cc(function(){return t._containsFocus()})).subscribe(function(){return n.focusVia(e,"program")}),n.monitor(e).subscribe(function(e){e&&t.accordion&&t.accordion._handleHeaderFocus(o)}),r&&(this.expandedHeight=r.expandedHeight,this.collapsedHeight=r.collapsedHeight)}return Object.defineProperty(t.prototype,"disabled",{get:function(){return this.panel.disabled},enumerable:!0,configurable:!0}),t.prototype._toggle=function(){this.panel.toggle()},t.prototype._isExpanded=function(){return this.panel.expanded},t.prototype._getExpandedState=function(){return this.panel._getExpandedState()},t.prototype._getPanelId=function(){return this.panel.id},t.prototype._showToggle=function(){return!this.panel.hideToggle&&!this.panel.disabled},t.prototype._keydown=function(t){switch(t.keyCode){case 32:case 13:fc(t)||(t.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(t))}},t.prototype.focus=function(t){void 0===t&&(t="program"),this._focusMonitor.focusVia(this._element,t)},t.prototype.ngOnDestroy=function(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)},t}(),DE=function(){return function(){}}(),TE=function(){return function(){}}(),EE=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._hideToggle=!1,e.displayMode="default",e}return r(e,t),Object.defineProperty(e.prototype,"hideToggle",{get:function(){return this._hideToggle},set:function(t){this._hideToggle=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngAfterContentInit=function(){this._keyManager=new Nc(this._headers).withWrap()},e.prototype._handleHeaderKeydown=function(t){var e=t.keyCode,n=this._keyManager;36===e?(n.setFirstItemActive(),t.preventDefault()):35===e?(n.setLastItemActive(),t.preventDefault()):this._keyManager.onKeydown(t)},e.prototype._handleHeaderFocus=function(t){this._keyManager.updateActiveItem(t)},e}(vE),AE=function(){return function(){}}(),PE=Vr({encapsulation:2,styles:[".mat-expansion-panel{box-sizing:content-box;display:block;margin:0;border-radius:4px;overflow:hidden;transition:margin 225ms cubic-bezier(.4,0,.2,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:4px;border-top-left-radius:4px}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:4px;border-bottom-left-radius:4px}@media (-ms-high-contrast:active){.mat-expansion-panel{outline:solid 1px}}.mat-expansion-panel._mat-animation-noopable,.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px}.mat-action-row button.mat-button{margin-left:8px}[dir=rtl] .mat-action-row button.mat-button{margin-left:0;margin-right:8px}"],data:{animation:[{type:7,name:"bodyExpansion",definitions:[{type:0,name:"collapsed, void",styles:{type:6,styles:{height:"0px",visibility:"hidden"},offset:null},options:void 0},{type:0,name:"expanded",styles:{type:6,styles:{height:"*",visibility:"visible"},offset:null},options:void 0},{type:1,expr:"expanded <=> collapsed, void => collapsed",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}}]}});function OE(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function YE(t){return Ia(2,[wa(402653184,1,{_body:0}),La(null,0),(t()(),yo(2,0,[[1,0],["body",1]],null,5,"div",[["class","mat-expansion-panel-content"],["role","region"]],[[24,"@bodyExpansion",0],[1,"aria-labelledby",0],[8,"id",0]],[[null,"@bodyExpansion.done"]],function(t,e,n){var i=!0;return"@bodyExpansion.done"===e&&(i=!1!==t.component._bodyAnimationDone.next(n)&&i),i},null,null)),(t()(),yo(3,0,null,null,3,"div",[["class","mat-expansion-panel-body"]],null,null,null,null,null)),La(null,1),(t()(),go(16777216,null,null,1,null,OE)),oa(6,212992,null,0,lM,[Fe,Xi],{portal:[0,"portal"]},null),La(null,2)],function(t,e){t(e,6,0,e.component._portal)},function(t,e){var n=e.component;t(e,2,0,n._getExpandedState(),n._headerId,n.id)})}var RE=Vr({encapsulation:2,styles:[".mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:0}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-expansion-panel-header-description,.mat-expansion-panel-header-title{display:flex;flex-grow:1;margin-right:16px}[dir=rtl] .mat-expansion-panel-header-description,[dir=rtl] .mat-expansion-panel-header-title{margin-right:0;margin-left:16px}.mat-expansion-panel-header-description{flex-grow:2}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:'';display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle}"],data:{animation:[{type:7,name:"indicatorRotate",definitions:[{type:0,name:"collapsed, void",styles:{type:6,styles:{transform:"rotate(0deg)"},offset:null},options:void 0},{type:0,name:"expanded",styles:{type:6,styles:{transform:"rotate(180deg)"},offset:null},options:void 0},{type:1,expr:"expanded <=> collapsed, void => collapsed",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"expansionHeight",definitions:[{type:0,name:"collapsed, void",styles:{type:6,styles:{height:"{{collapsedHeight}}"},offset:null},options:{params:{collapsedHeight:"48px"}}},{type:0,name:"expanded",styles:{type:6,styles:{height:"{{expandedHeight}}"},offset:null},options:{params:{expandedHeight:"64px"}}},{type:1,expr:"expanded <=> collapsed, void => collapsed",animation:{type:3,steps:[{type:11,selector:"@indicatorRotate",animation:{type:9,options:null},options:{optional:!0}},{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"}],options:null},options:null}],options:{}}]}});function IE(t){return Ia(0,[(t()(),yo(0,0,null,null,0,"span",[["class","mat-expansion-indicator"]],[[24,"@indicatorRotate",0]],null,null,null,null))],null,function(t,e){t(e,0,0,e.component._getExpandedState())})}function FE(t){return Ia(2,[(t()(),yo(0,0,null,null,3,"span",[["class","mat-content"]],null,null,null,null,null)),La(null,0),La(null,1),La(null,2),(t()(),go(16777216,null,null,1,null,IE)),oa(5,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){t(e,5,0,e.component._showToggle())},null)}var zE=function(){function t(){this._vertical=!1,this._inset=!1}return Object.defineProperty(t.prototype,"vertical",{get:function(){return this._vertical},set:function(t){this._vertical=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"inset",{get:function(){return this._inset},set:function(t){this._inset=Xu(t)},enumerable:!0,configurable:!0}),t}(),jE=function(){return function(){}}(),HE=Vr({encapsulation:2,styles:[".mat-divider{display:block;margin:0;border-top-width:1px;border-top-style:solid}.mat-divider.mat-divider-vertical{border-top:0;border-right-width:1px;border-right-style:solid}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],data:{}});function NE(t){return Ia(2,[],null,null)}var VE=function(){function t(t,e,n,i){this.dialogRef=t,this.data=e,this.dataService=n,this.fb=i,this.categories=[{value:"Web-Development",viewValue:"Web Development"},{value:"Android-Development",viewValue:"Android Development"},{value:"IOS-Development",viewValue:"IOS Development"}],this.title="Update",this.event=new kn,this.newCard=Object.create(e.card),this.title=e.title,this.form=new kv({CardCode:new wv(this.newCard.CardCode),Version:new wv(this.newCard.Version),Batch:new wv(this.newCard.Batch),Rows:new wv(this.newCard.Rows),Columns:new wv(this.newCard.Columns),TargetIndex:new wv(this.newCard.TargetIndex),SampleWidth:new wv(this.newCard.SampleWidth),SampleHeighth:new wv(this.newCard.SampleHeighth),EnableDoubleChecking:new wv(this.newCard.EnableDoubleChecking),EnforceBarcodeDetection:new wv(this.newCard.EnforceBarcodeDetection),PDFPath:new wv(this.data.PDFPath),SCVPath:new wv(this.data.SCVPath),TempPath:new wv(this.data.Template)})}return t.prototype.ngOnInit=function(){},t.prototype.openfileDialog=function(t){},t.prototype.onCancel=function(){this.dialogRef.close("Cancel")},t.prototype.onSave=function(){this.event.emit({data:this.form.value}),this.dialogRef.close("Ok")},t}(),BE=function(){function t(t,e,n,i){var r=this;this.cardService=t,this.dialog=e,this.router=n,this.activatedRoute=i,this.dataSource=new wL,this.displayedCardColumns=["template","cardid","version","batch","columns","rows","targetIndex","update"],this.benchmarks=new wL,this.displayedBenchmarkColumns=["benchmarkid","rgb","lab","color"],this.imageUrl=Bl.assetPath+"/assets/card_new_small.bmp",this.cardDetails=new wL,this.cardProperties=[],this.displayedDetails=["valueName","value"],this.updateCard=function(t){var e=r.dialog.open(VE,{width:"50em",data:{card:t,title:"Update Card"}}),n=e.componentInstance.event.subscribe(function(t){r.cardService.updateCard(t.data),r.getCards(),r.selectedCard=t.data,r.InitCardDetails()});e.afterClosed().subscribe(function(t){n.unsubscribe()})},this.deleteCard=function(t){r.cardService.deleteCard(t),r.getCards(),r.selectedCard=new n_,r.InitCardDetails()};var o=this.router.getCurrentNavigation().extras.state;o&&(this.selectedCardCode=o.id)}return t.prototype.ngOnInit=function(){this.selectedCard=new n_,this.getCards()},t.prototype.ngAfterViewInit=function(){var t=this;this.dataSource.sort=this.sort,this.dataSource.sortingDataAccessor=function(t,e){switch(e){case"cardid":return t.CardCode;default:return t[e]}},this.dataSource.paginator=this.paginator,this.sort.sortChange.subscribe(function(){return t.paginator.pageIndex=0})},t.prototype.highlight=function(t){this.selectedCard=t,this.InitCardDetails()},t.prototype.getCards=function(){var t=this;this.cardService.getCards().subscribe(function(e){if(t.dataSource.data=e||[],t.selectedCardCode){var n=t.dataSource.data.find(function(e){return e.CardCode===t.selectedCardCode});n&&(t.selectedCard=n,t.InitCardDetails())}},function(t){return console.log(t)})},t.prototype.InitCardDetails=function(){this.cardProperties=[],this.cardProperties.push({name:"Card ID",value:this.selectedCard.CardCode}),this.cardProperties.push({name:"Version",value:String(this.selectedCard.Version)}),this.cardProperties.push({name:"Batch",value:String(this.selectedCard.Batch)}),this.cardProperties.push({name:"Rows",value:String(this.selectedCard.Rows)}),this.cardProperties.push({name:"Columns",value:String(this.selectedCard.Columns)}),this.cardProperties.push({name:"Target Index",value:String(this.selectedCard.TargetIndex)}),this.cardProperties.push({name:"Home Printed",value:String(this.selectedCard.IsHomePrinted)}),this.cardDetails.data=this.cardProperties},t.prototype.AddCard=function(){var t=this,e=this.dialog.open(VE,{width:"50em",data:{card:new n_,title:"New Card"}}),n=e.componentInstance.event.subscribe(function(e){t.cardService.addCard(e.data),t.getCards(),t.selectedCard=e.data,t.InitCardDetails()});e.afterClosed().subscribe(function(t){n.unsubscribe()})},t}(),WE=Vr({encapsulation:0,styles:[[".main-div[_ngcontent-%COMP%]{height:100vh;display:flex;justify-content:center;align-items:center;overflow:hidden;width:92%;margin-left:3em;padding-top:90px}mat-card[_ngcontent-%COMP%]{padding:0}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden}td[_ngcontent-%COMP%]{font-size:16px;font-weight:500}.cardtable[_ngcontent-%COMP%]{min-width:50rem;padding:50px;table-layout:fixed}.filesRow[_ngcontent-%COMP%]{display:table-row;vertical-align:inherit;border-color:inherit;height:48px}.filesRowContent[_ngcontent-%COMP%]{padding:0;border-bottom-width:1px;border-bottom-style:solid;font-size:16px;font-weight:500}.filesRowContent[_ngcontent-%COMP%] *[_ngcontent-%COMP%], .filesRowContent[_ngcontent-%COMP%] [_ngcontent-%COMP%]::after, .filesRowContent[_ngcontent-%COMP%] [_ngcontent-%COMP%]::before{box-sizing:border-box}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:2em;font-size:18px;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit} .mat-card-header{padding:1em!important;min-height:2em;font-size:18px;font-weight:500;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}md-list-item[_ngcontent-%COMP%]{min-height:70px!important}.mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-list-item-content[_ngcontent-%COMP%], .mat-list .mat-list-item .mat-list-item-content{width:99vw}.mat-divider[_ngcontent-%COMP%]{border-top-width:2px}mat-panel-title[_ngcontent-%COMP%]{min-height:2em;font-size:18px;background-color:inherit;font-weight:500;padding:1em!important;top:0;position:-webkit-sticky;position:sticky}.topOffset[_ngcontent-%COMP%]{margin-top:30px}.highlight[_ngcontent-%COMP%]{background:#e9edfa!important}.mat-column-delete[_ngcontent-%COMP%], .mat-column-update[_ngcontent-%COMP%]{flex:0 0 5%!important;width:5%!important}example-container[_ngcontent-%COMP%]{display:flex;flex-direction:column}.example-container[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{width:100%}span[_ngcontent-%COMP%]{font-weight:500}button[_ngcontent-%COMP%]{outline:0!important;border:0!important}.mat-card-image[_ngcontent-%COMP%]{margin:.5em!important;width:3em}.wrapcolumn[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:nth-child(1){display:block;width:50px}.mat-column-benchmarkid[_ngcontent-%COMP%]{word-wrap:break-word!important;white-space:unset!important;flex:0 0 20%!important;width:20%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mat-column-color[_ngcontent-%COMP%], .mat-column-lab[_ngcontent-%COMP%], .mat-column-rgb[_ngcontent-%COMP%]{word-wrap:break-word!important;white-space:unset!important;flex:0 0 20%!important;width:25%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}"]],data:{}});function UE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Template "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function GE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,1,"img",[["alt","Photo of a Shiba Inu"],["class","mat-card-image"],["mat-card-image",""]],[[8,"src",4]],null,null,null,null)),oa(3,16384,null,0,b_,[],null,null)],null,function(t,e){t(e,2,0,e.component.imageUrl)})}function qE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Card ID "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function XE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.CardCode)})}function KE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Version "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function ZE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Version)})}function JE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Batch "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function QE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Batch)})}function $E(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Columns "]))],null,null)}function tA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Columns)})}function eA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Rows "]))],null,null)}function nA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Rows)})}function iA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Target Index "]))],null,null)}function rA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.TargetIndex)})}function oA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function aA(t){return Ia(0,[(t()(),yo(0,0,null,null,15,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,13,"div",[["fxLayout","row"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(4,16777216,null,null,5,"button",[["color","primary"],["mat-icon-button",""],["matTooltip","Edit"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,6).show()&&i),"keydown"===e&&(i=!1!==Go(t,6)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,6)._handleTouchend()&&i),"click"===e&&(i=!1!==r.updateCard(t.context.$implicit)&&i),i},Nk,Hk)),oa(5,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),oa(6,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{message:[0,"message"]},null),(t()(),yo(7,0,null,0,2,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(8,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["edit"])),(t()(),yo(10,16777216,null,null,5,"button",[["color","warn"],["mat-icon-button",""],["matTooltip","Delete"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,12).show()&&i),"keydown"===e&&(i=!1!==Go(t,12)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,12)._handleTouchend()&&i),"click"===e&&(i=!1!==r.deleteCard(t.context.$implicit)&&i),i},Nk,Hk)),oa(11,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),oa(12,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{message:[0,"message"]},null),(t()(),yo(13,0,null,0,2,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(14,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["delete"]))],function(t,e){t(e,3,0,"row"),t(e,5,0,"primary"),t(e,6,0,"Edit"),t(e,8,0),t(e,11,0,"warn"),t(e,12,0,"Delete"),t(e,14,0)},function(t,e){t(e,4,0,Go(e,5).disabled||null,"NoopAnimations"===Go(e,5)._animationMode),t(e,7,0,Go(e,8).inline,"primary"!==Go(e,8).color&&"accent"!==Go(e,8).color&&"warn"!==Go(e,8).color),t(e,10,0,Go(e,11).disabled||null,"NoopAnimations"===Go(e,11)._animationMode),t(e,13,0,Go(e,14).inline,"primary"!==Go(e,14).color&&"accent"!==Go(e,14).color&&"warn"!==Go(e,14).color)})}function lA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function sA(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.highlight(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedCard.CardCode===e.context.$implicit.CardCode);t(e,2,0,i);var r=t(e,5,0,n.selectedCard.CardCode===e.context.$implicit.CardCode);t(e,4,0,r)},null)}function uA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function cA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function dA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function hA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function pA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function fA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function mA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","wrapcolumn mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" ID "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function gA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","wrapcolumn mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.ID)})}function yA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" RGB "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function _A(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.CardCode)})}function vA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Lab "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function bA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Version)})}function xA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Color "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function wA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Batch)})}function kA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function MA(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.highlight(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedBenchmark&&n.selectedBenchmark.ID===e.context.$implicit.ID);t(e,2,0,i);var r=t(e,5,0,n.selectedBenchmark&&n.selectedBenchmark.ID===e.context.$implicit.ID);t(e,4,0,r)},null)}function SA(t){return Ia(0,[wa(402653184,1,{sort:0}),wa(402653184,2,{paginator:0}),(t()(),yo(2,0,null,null,335,"div",[["fxLayout","column"],["fxLayoutAlign","space-around stretch"],["style","padding-top: 120px;"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(5,0,null,null,130,"mat-card",[["class","mat-card"],["style","margin: 2em; min-height: 10em;"]],null,null,null,S_,M_)),oa(6,49152,null,0,x_,[],null,null),(t()(),yo(7,0,null,0,128,"mat-card-content",[["class"," cardinforow mat-card-content"]],null,null,null,null,null)),oa(8,16384,null,0,__,[],null,null),(t()(),yo(9,0,null,null,126,"div",[["class","mat-elevation-z8"]],null,null,null,null,null)),(t()(),yo(10,0,null,null,4,"a",[["color","primary"],["mat-mini-fab",""],["style","margin-top: 0.5em; position: absolute; right: 20px; z-index:5;"]],[[1,"tabindex",0],[1,"disabled",0],[1,"aria-disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==Go(t,11)._haltDisabledEvents(n)&&i),"click"===e&&(i=!1!==r.AddCard()&&i),i},Bk,Vk)),oa(11,180224,null,0,zk,[nc,$c,Ve,[2,Ow]],{color:[0,"color"]},null),(t()(),yo(12,0,null,0,2,"mat-icon",[["class","mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(13,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["add"])),(t()(),yo(15,0,null,null,117,"table",[["class","mat-elevation-z8 cardtable mat-table"],["mat-table",""],["matSort",""],["matSortActive","cardid"],["matSortDirection","asc"]],null,null,null,ML,kL)),oa(16,737280,[[1,4]],0,PD,[],{active:[0,"active"],direction:[1,"direction"]},null),oa(17,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,3,{_contentColumnDefs:1}),wa(603979776,4,{_contentRowDefs:1}),wa(603979776,5,{_contentHeaderRowDefs:1}),wa(603979776,6,{_contentFooterRowDefs:1}),(t()(),yo(22,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(24,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,7,{cell:0}),wa(335544320,8,{headerCell:0}),wa(335544320,9,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,UE)),oa(30,16384,null,0,hL,[Mn],null,null),la(2048,[[8,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,GE)),oa(33,16384,null,0,dL,[Mn],null,null),la(2048,[[7,4]],VC,null,[dL]),(t()(),yo(35,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(37,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,10,{cell:0}),wa(335544320,11,{headerCell:0}),wa(335544320,12,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,qE)),oa(43,16384,null,0,hL,[Mn],null,null),la(2048,[[11,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,XE)),oa(46,16384,null,0,dL,[Mn],null,null),la(2048,[[10,4]],VC,null,[dL]),(t()(),yo(48,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(50,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,13,{cell:0}),wa(335544320,14,{headerCell:0}),wa(335544320,15,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,KE)),oa(56,16384,null,0,hL,[Mn],null,null),la(2048,[[14,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,ZE)),oa(59,16384,null,0,dL,[Mn],null,null),la(2048,[[13,4]],VC,null,[dL]),(t()(),yo(61,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(63,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,16,{cell:0}),wa(335544320,17,{headerCell:0}),wa(335544320,18,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,JE)),oa(69,16384,null,0,hL,[Mn],null,null),la(2048,[[17,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,QE)),oa(72,16384,null,0,dL,[Mn],null,null),la(2048,[[16,4]],VC,null,[dL]),(t()(),yo(74,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(76,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,19,{cell:0}),wa(335544320,20,{headerCell:0}),wa(335544320,21,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,$E)),oa(82,16384,null,0,hL,[Mn],null,null),la(2048,[[20,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,tA)),oa(85,16384,null,0,dL,[Mn],null,null),la(2048,[[19,4]],VC,null,[dL]),(t()(),yo(87,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(89,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,22,{cell:0}),wa(335544320,23,{headerCell:0}),wa(335544320,24,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,eA)),oa(95,16384,null,0,hL,[Mn],null,null),la(2048,[[23,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,nA)),oa(98,16384,null,0,dL,[Mn],null,null),la(2048,[[22,4]],VC,null,[dL]),(t()(),yo(100,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(102,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,25,{cell:0}),wa(335544320,26,{headerCell:0}),wa(335544320,27,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,iA)),oa(108,16384,null,0,hL,[Mn],null,null),la(2048,[[26,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,rA)),oa(111,16384,null,0,dL,[Mn],null,null),la(2048,[[25,4]],VC,null,[dL]),(t()(),yo(113,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(115,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,28,{cell:0}),wa(335544320,29,{headerCell:0}),wa(335544320,30,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,oA)),oa(121,16384,null,0,hL,[Mn],null,null),la(2048,[[29,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,aA)),oa(124,16384,null,0,dL,[Mn],null,null),la(2048,[[28,4]],VC,null,[dL]),(t()(),yo(126,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,lA)),oa(128,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[5,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,sA)),oa(131,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[4,4]],JC,null,[yL]),(t()(),yo(133,0,null,null,2,"mat-paginator",[["class","mat-paginator"]],null,null,null,ET,kT)),oa(134,245760,[[2,4]],0,BD,[HD,Zi],{length:[0,"length"],pageSize:[1,"pageSize"],pageSizeOptions:[2,"pageSizeOptions"]},null),Ea(135,4),(t()(),yo(136,0,null,null,201,"mat-card",[["class","mat-card"],["style","margin-left: 2em; margin-right: 2em; min-height: 10em;"]],null,null,null,S_,M_)),oa(137,49152,null,0,x_,[],null,null),(t()(),yo(138,0,null,0,199,"mat-card-content",[["class"," cardinforow mat-card-content"]],null,null,null,null,null)),oa(139,16384,null,0,__,[],null,null),(t()(),yo(140,0,null,null,197,"mat-accordion",[["class","mat-accordion"]],null,null,null,null,null)),oa(141,1720320,null,1,EE,[],null,null),wa(603979776,31,{_headers:1}),la(2048,null,kE,null,[EE]),(t()(),yo(144,16777216,null,null,193,"mat-expansion-panel",[["class","mat-expansion-panel"]],[[2,"mat-expanded",null],[2,"_mat-animation-noopable",null],[2,"mat-expansion-panel-spacing",null]],null,null,YE,PE)),oa(145,1753088,null,1,CE,[[3,kE],Zi,wM,Xi,As,[2,Ow],[2,SE]],{expanded:[0,"expanded"]},null),wa(335544320,32,{_lazyContent:0}),la(256,null,kE,void 0,[]),(t()(),yo(148,0,null,0,6,"mat-expansion-panel-header",[["class","mat-expansion-panel-header"],["green-100-fg",""],["role","button"]],[[1,"id",0],[1,"tabindex",0],[1,"aria-controls",0],[1,"aria-expanded",0],[1,"aria-disabled",0],[2,"mat-expanded",null],[40,"@expansionHeight",0]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,149)._toggle()&&i),"keydown"===e&&(i=!1!==Go(t,149)._keydown(n)&&i),i},FE,RE)),oa(149,180224,[[31,4]],0,LE,[CE,Ve,$c,Zi,[2,SE]],null,null),Aa(150,{collapsedHeight:0,expandedHeight:1}),Aa(151,{value:0,params:1}),(t()(),yo(152,0,null,0,2,"mat-panel-title",[["class","mat-expansion-panel-header-title"],["color","primary"]],null,null,null,null,null)),oa(153,16384,null,0,TE,[],null,null),(t()(),Oa(-1,null,[" Card Details "])),(t()(),yo(155,0,null,1,182,"mat-panel-description",[["class","mat-expansion-panel-header-description"]],null,null,null,null,null)),oa(156,16384,null,0,DE,[],null,null),(t()(),yo(157,0,null,null,180,"div",[["fxFlex",""]],null,null,null,null,null)),oa(158,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(159,0,null,null,178,"div",[["class","topOffset"],["fxLayout","row "],["fxLayoutGap","1.25em"]],null,null,null,null,null)),oa(160,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(161,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(162,0,null,null,48,"div",[["fxFlex","30"]],null,null,null,null,null)),oa(163,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(164,0,null,null,46,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(165,49152,null,0,x_,[],null,null),(t()(),yo(166,0,null,0,2,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(167,49152,null,0,w_,[],null,null),(t()(),Oa(-1,2,[" Details "])),(t()(),yo(169,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(170,16384,null,0,__,[],null,null),(t()(),yo(171,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(172,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(173,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,33,{_contentColumnDefs:1}),wa(603979776,34,{_contentRowDefs:1}),wa(603979776,35,{_contentHeaderRowDefs:1}),wa(603979776,36,{_contentFooterRowDefs:1}),(t()(),yo(178,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(180,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,37,{cell:0}),wa(335544320,38,{headerCell:0}),wa(335544320,39,{footerCell:0}),la(2048,[[33,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,uA)),oa(186,16384,null,0,hL,[Mn],null,null),la(2048,[[38,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,cA)),oa(189,16384,null,0,dL,[Mn],null,null),la(2048,[[37,4]],VC,null,[dL]),(t()(),yo(191,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(193,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,40,{cell:0}),wa(335544320,41,{headerCell:0}),wa(335544320,42,{footerCell:0}),la(2048,[[33,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,dA)),oa(199,16384,null,0,hL,[Mn],null,null),la(2048,[[41,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,hA)),oa(202,16384,null,0,dL,[Mn],null,null),la(2048,[[40,4]],VC,null,[dL]),(t()(),yo(204,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,pA)),oa(206,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[35,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,fA)),oa(209,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[34,4]],JC,null,[yL]),(t()(),yo(211,0,null,null,50,"div",[["fxFlex","30"]],null,null,null,null,null)),oa(212,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(213,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(214,49152,null,0,x_,[],null,null),(t()(),yo(215,0,null,0,2,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(216,49152,null,0,w_,[],null,null),(t()(),Oa(-1,2,[" Files "])),(t()(),yo(218,0,null,0,43,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(219,16384,null,0,__,[],null,null),(t()(),yo(220,0,null,null,41,"div",[["fxLayout","column"]],null,null,null,null,null)),oa(221,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(222,0,null,null,11,"div",[["class","filesRow"],["fxFlex","100%"]],null,null,null,null,null)),oa(223,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(224,0,null,null,9,"div",[["class","filesRowContent"],["fxLayout","row"],["fxLayoutAlign"," center"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(225,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(226,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(227,0,null,null,2,"span",[["fxFlex","80"]],null,null,null,null,null)),oa(228,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),Oa(-1,null,[" Benchmark "])),(t()(),yo(230,0,null,null,3,"button",[["fxFlex","20"],["mat-button",""],["mat-raised-button",""],["style","min-width: unset;"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(231,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(232,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(234,0,null,null,1,"mat-divider",[["class","mat-divider"],["role","separator"]],[[1,"aria-orientation",0],[2,"mat-divider-vertical",null],[2,"mat-divider-horizontal",null],[2,"mat-divider-inset",null]],null,null,NE,HE)),oa(235,49152,null,0,zE,[],null,null),(t()(),yo(236,0,null,null,11,"div",[["class","filesRow"],["fxFlex","100%"]],null,null,null,null,null)),oa(237,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(238,0,null,null,9,"div",[["class","filesRowContent"],["fxLayout","row"],["fxLayoutAlign"," center"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(239,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(240,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(241,0,null,null,2,"span",[["fxFlex","80"]],null,null,null,null,null)),oa(242,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),Oa(-1,null,[" PDF "])),(t()(),yo(244,0,null,null,3,"button",[["fxFlex","20"],["mat-button",""],["mat-raised-button",""],["style","min-width: unset;"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(245,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(246,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(248,0,null,null,1,"mat-divider",[["class","mat-divider"],["role","separator"]],[[1,"aria-orientation",0],[2,"mat-divider-vertical",null],[2,"mat-divider-horizontal",null],[2,"mat-divider-inset",null]],null,null,NE,HE)),oa(249,49152,null,0,zE,[],null,null),(t()(),yo(250,0,null,null,11,"div",[["class","filesRow"],["fxFlex","100%"]],null,null,null,null,null)),oa(251,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(252,0,null,null,9,"div",[["class","filesRowContent"],["fxLayout","row"],["fxLayoutAlign"," center"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(253,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(254,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(255,0,null,null,2,"span",[["fxFlex","80"]],null,null,null,null,null)),oa(256,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),Oa(-1,null,[" Template "])),(t()(),yo(258,0,null,null,3,"button",[["fxFlex","20"],["mat-button",""],["mat-raised-button",""],["style","min-width: unset;"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(259,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(260,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(262,0,null,null,75,"div",[["fxFlex","32"]],null,null,null,null,null)),oa(263,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(264,0,null,null,73,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(265,49152,null,0,x_,[],null,null),(t()(),yo(266,0,null,0,2,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(267,49152,null,0,w_,[],null,null),(t()(),Oa(-1,2,[" Benchmarks "])),(t()(),yo(269,0,null,0,68,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(270,16384,null,0,__,[],null,null),(t()(),yo(271,0,null,null,66,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(272,0,null,null,65,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""],["matSort",""]],null,null,null,ML,kL)),oa(273,737280,[[1,4]],0,PD,[],null,null),oa(274,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,43,{_contentColumnDefs:1}),wa(603979776,44,{_contentRowDefs:1}),wa(603979776,45,{_contentHeaderRowDefs:1}),wa(603979776,46,{_contentFooterRowDefs:1}),(t()(),yo(279,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(281,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,47,{cell:0}),wa(335544320,48,{headerCell:0}),wa(335544320,49,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,mA)),oa(287,16384,null,0,hL,[Mn],null,null),la(2048,[[48,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,gA)),oa(290,16384,null,0,dL,[Mn],null,null),la(2048,[[47,4]],VC,null,[dL]),(t()(),yo(292,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(294,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,50,{cell:0}),wa(335544320,51,{headerCell:0}),wa(335544320,52,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,yA)),oa(300,16384,null,0,hL,[Mn],null,null),la(2048,[[51,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,_A)),oa(303,16384,null,0,dL,[Mn],null,null),la(2048,[[50,4]],VC,null,[dL]),(t()(),yo(305,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(307,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,53,{cell:0}),wa(335544320,54,{headerCell:0}),wa(335544320,55,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,vA)),oa(313,16384,null,0,hL,[Mn],null,null),la(2048,[[54,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,bA)),oa(316,16384,null,0,dL,[Mn],null,null),la(2048,[[53,4]],VC,null,[dL]),(t()(),yo(318,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(320,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,56,{cell:0}),wa(335544320,57,{headerCell:0}),wa(335544320,58,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,xA)),oa(326,16384,null,0,hL,[Mn],null,null),la(2048,[[57,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,wA)),oa(329,16384,null,0,dL,[Mn],null,null),la(2048,[[56,4]],VC,null,[dL]),(t()(),yo(331,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,kA)),oa(333,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[45,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,MA)),oa(336,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[44,4]],JC,null,[yL])],function(t,e){var n=e.component;t(e,3,0,"column"),t(e,4,0,"space-around stretch"),t(e,11,0,"primary"),t(e,13,0),t(e,16,0,"cardid","asc"),t(e,17,0,n.dataSource),t(e,24,0,"template"),t(e,37,0,"cardid"),t(e,50,0,"version"),t(e,63,0,"batch"),t(e,76,0,"columns"),t(e,89,0,"rows"),t(e,102,0,"targetIndex"),t(e,115,0,"update"),t(e,128,0,n.displayedCardColumns),t(e,131,0,n.displayedCardColumns);var i=t(e,135,0,5,10,25,100);t(e,134,0,100,10,i),t(e,145,0,!0),t(e,158,0,""),t(e,160,0,"row "),t(e,161,0,"1.25em"),t(e,163,0,"30"),t(e,173,0,n.cardDetails),t(e,180,0,"valueName"),t(e,193,0,"value"),t(e,206,0,n.displayedDetails),t(e,209,0,n.displayedDetails),t(e,212,0,"30"),t(e,221,0,"column"),t(e,223,0,"100%"),t(e,225,0,"row"),t(e,226,0," center"),t(e,228,0,"80"),t(e,231,0,"20"),t(e,237,0,"100%"),t(e,239,0,"row"),t(e,240,0," center"),t(e,242,0,"80"),t(e,245,0,"20"),t(e,251,0,"100%"),t(e,253,0,"row"),t(e,254,0," center"),t(e,256,0,"80"),t(e,259,0,"20"),t(e,263,0,"32"),t(e,273,0),t(e,274,0,n.benchmarks),t(e,281,0,"benchmarkid"),t(e,294,0,"rgb"),t(e,307,0,"lab"),t(e,320,0,"color"),t(e,333,0,n.displayedBenchmarkColumns),t(e,336,0,n.displayedBenchmarkColumns)},function(t,e){t(e,10,0,Go(e,11).disabled?-1:Go(e,11).tabIndex||0,Go(e,11).disabled||null,Go(e,11).disabled.toString(),"NoopAnimations"===Go(e,11)._animationMode),t(e,12,0,Go(e,13).inline,"primary"!==Go(e,13).color&&"accent"!==Go(e,13).color&&"warn"!==Go(e,13).color),t(e,144,0,Go(e,145).expanded,"NoopAnimations"===Go(e,145)._animationMode,Go(e,145)._hasSpacing());var n=Go(e,149).panel._headerId,i=Go(e,149).disabled?-1:0,r=Go(e,149)._getPanelId(),o=Go(e,149)._isExpanded(),a=Go(e,149).panel.disabled,l=Go(e,149)._isExpanded(),s=t(e,151,0,Go(e,149)._getExpandedState(),t(e,150,0,Go(e,149).collapsedHeight,Go(e,149).expandedHeight));t(e,148,0,n,i,r,o,a,l,s),t(e,230,0,Go(e,232).disabled||null,"NoopAnimations"===Go(e,232)._animationMode),t(e,234,0,Go(e,235).vertical?"vertical":"horizontal",Go(e,235).vertical,!Go(e,235).vertical,Go(e,235).inset),t(e,244,0,Go(e,246).disabled||null,"NoopAnimations"===Go(e,246)._animationMode),t(e,248,0,Go(e,249).vertical?"vertical":"horizontal",Go(e,249).vertical,!Go(e,249).vertical,Go(e,249).inset),t(e,258,0,Go(e,260).disabled||null,"NoopAnimations"===Go(e,260)._animationMode)})}function CA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"app-cards",[],null,null,null,SA,WE)),la(4608,null,c_,c_,[ph]),la(512,null,h_,h_,[ph]),oa(3,4308992,null,0,BE,[h_,DS,Am,xf],null,null)],function(t,e){t(e,3,0)},null)}var LA=Ro("app-cards",BE,CA,{},{},[]),DA=function(){function t(t){this.resultService=t,this.dataSource=new wL,this.displayedAlgoColumns=["algorithmid","RGB","LAB","Color"]}return t.prototype.ngOnInit=function(){this.dataSource.data=this.resultService.getAlgorithm()},t.prototype.ngAfterViewInit=function(){var t=this;this.dataSource.sort=this.sort,this.dataSource.sortingDataAccessor=function(t,e){switch(e){case"algorithmid":return t.ID;default:return t[e]}},this.dataSource.paginator=this.paginator,this.sort.sortChange.subscribe(function(){return t.paginator.pageIndex=0})},t.prototype.highlight=function(t){this.selectedAlgorithm=t},t.prototype.TestAlgorithm=function(){},t}(),TA=Vr({encapsulation:0,styles:[["mat-card[_ngcontent-%COMP%]{padding:0}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden;min-width:50rem;padding:50px}td[_ngcontent-%COMP%]{font-size:16px;font-weight:500}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:2em;font-size:18px;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit} .mat-card-header{padding:1em!important;min-height:2em;font-size:18px;font-weight:500;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}"]],data:{}});function EA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Algorithm ID "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function AA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.ID)})}function PA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" RGB "]))],null,null)}function OA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.RGB)})}function YA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" LAB "]))],null,null)}function RA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Lab)})}function IA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Color "]))],null,null)}function FA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Color)})}function zA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function jA(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.highlight(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedAlgorithm&&n.selectedAlgorithm.ID===e.context.$implicit.ID);t(e,2,0,i);var r=t(e,5,0,n.selectedAlgorithm&&n.selectedAlgorithm.ID===e.context.$implicit.ID);t(e,4,0,r)},null)}function HA(t){return Ia(0,[wa(402653184,1,{sort:0}),wa(402653184,2,{paginator:0}),(t()(),yo(2,0,null,null,76,"div",[["style","padding-top: 120px;"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,71,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(4,49152,null,0,x_,[],null,null),(t()(),yo(5,0,null,0,69,"div",[["class","mat-elevation-z8"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,65,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""],["matSort",""],["matSortActive","cardid"],["matSortDirection","asc"]],null,null,null,ML,kL)),oa(7,737280,[[1,4]],0,PD,[],{active:[0,"active"],direction:[1,"direction"]},null),oa(8,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,3,{_contentColumnDefs:1}),wa(603979776,4,{_contentRowDefs:1}),wa(603979776,5,{_contentHeaderRowDefs:1}),wa(603979776,6,{_contentFooterRowDefs:1}),(t()(),yo(13,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(15,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,7,{cell:0}),wa(335544320,8,{headerCell:0}),wa(335544320,9,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,EA)),oa(21,16384,null,0,hL,[Mn],null,null),la(2048,[[8,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,AA)),oa(24,16384,null,0,dL,[Mn],null,null),la(2048,[[7,4]],VC,null,[dL]),(t()(),yo(26,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(28,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,10,{cell:0}),wa(335544320,11,{headerCell:0}),wa(335544320,12,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,PA)),oa(34,16384,null,0,hL,[Mn],null,null),la(2048,[[11,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,OA)),oa(37,16384,null,0,dL,[Mn],null,null),la(2048,[[10,4]],VC,null,[dL]),(t()(),yo(39,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(41,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,13,{cell:0}),wa(335544320,14,{headerCell:0}),wa(335544320,15,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,YA)),oa(47,16384,null,0,hL,[Mn],null,null),la(2048,[[14,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,RA)),oa(50,16384,null,0,dL,[Mn],null,null),la(2048,[[13,4]],VC,null,[dL]),(t()(),yo(52,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(54,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,16,{cell:0}),wa(335544320,17,{headerCell:0}),wa(335544320,18,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,IA)),oa(60,16384,null,0,hL,[Mn],null,null),la(2048,[[17,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,FA)),oa(63,16384,null,0,dL,[Mn],null,null),la(2048,[[16,4]],VC,null,[dL]),(t()(),yo(65,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,zA)),oa(67,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[5,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,jA)),oa(70,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[4,4]],JC,null,[yL]),(t()(),yo(72,0,null,null,2,"mat-paginator",[["class","mat-paginator"]],null,null,null,ET,kT)),oa(73,245760,[[2,4]],0,BD,[HD,Zi],{length:[0,"length"],pageSize:[1,"pageSize"],pageSizeOptions:[2,"pageSizeOptions"]},null),Ea(74,4),(t()(),yo(75,0,null,null,3,"a",[["color","primary"],["mat-fab",""],["style"," position: absolute; bottom: 2em; right: 3em; z-index:5; "]],[[1,"tabindex",0],[1,"disabled",0],[1,"aria-disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==Go(t,76)._haltDisabledEvents(n)&&i),"click"===e&&(i=!1!==r.TestAlgorithm()&&i),i},Bk,Vk)),oa(76,180224,null,0,zk,[nc,$c,Ve,[2,Ow]],{color:[0,"color"]},null),(t()(),yo(77,0,null,0,1,"span",[],null,null,null,null,null)),(t()(),Oa(-1,null,[" TEST "]))],function(t,e){var n=e.component;t(e,7,0,"cardid","asc"),t(e,8,0,n.dataSource),t(e,15,0,"algorithmid"),t(e,28,0,"RGB"),t(e,41,0,"LAB"),t(e,54,0,"Color"),t(e,67,0,n.displayedAlgoColumns),t(e,70,0,n.displayedAlgoColumns);var i=t(e,74,0,5,10,25,100);t(e,73,0,100,10,i),t(e,76,0,"primary")},function(t,e){t(e,75,0,Go(e,76).disabled?-1:Go(e,76).tabIndex||0,Go(e,76).disabled||null,Go(e,76).disabled.toString(),"NoopAnimations"===Go(e,76)._animationMode)})}function NA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-algorithm",[],null,null,null,HA,TA)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,DA,[c_],null,null)],function(t,e){t(e,2,0)},null)}var VA=Ro("app-algorithm",DA,NA,{},{},[]),BA=function(){function t(){}return t.prototype.ngOnInit=function(){},t}(),WA=Vr({encapsulation:0,styles:[[""]],data:{}});function UA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"h2",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Page not found"]))],null,null)}function GA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-page-not-found",[],null,null,null,UA,WA)),oa(1,114688,null,0,BA,[],null,null)],function(t,e){t(e,1,0)},null)}var qA=Ro("app-page-not-found",BA,GA,{},{},[]),XA=function(){return function(){this.data=null,this.hasBackdrop=!0,this.disableClose=!1,this.ariaLabel=null,this.closeOnNavigation=!0,this.autoFocus=!1,this.restoreFocus=!0}}(),KA=function(t){function e(e,n,i,r,o,a){var l=t.call(this)||this;return l._elementRef=e,l._changeDetectorRef=n,l._focusTrapFactory=i,l.bottomSheetConfig=a,l._animationState="void",l._animationStateChanged=new kn,l._elementFocusedBeforeOpened=null,l._document=o,l._breakpointSubscription=r.observe([ZD.Medium,ZD.Large,ZD.XLarge]).subscribe(function(){l._toggleClass("mat-bottom-sheet-container-medium",r.isMatched(ZD.Medium)),l._toggleClass("mat-bottom-sheet-container-large",r.isMatched(ZD.Large)),l._toggleClass("mat-bottom-sheet-container-xlarge",r.isMatched(ZD.XLarge))}),l}return r(e,t),e.prototype.attachComponentPortal=function(t){return this._validatePortalAttached(),this._setPanelClass(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(t)},e.prototype.attachTemplatePortal=function(t){return this._validatePortalAttached(),this._setPanelClass(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(t)},e.prototype.enter=function(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges())},e.prototype.exit=function(){this._destroyed||(this._animationState="hidden",this._changeDetectorRef.markForCheck())},e.prototype.ngOnDestroy=function(){this._breakpointSubscription.unsubscribe(),this._destroyed=!0},e.prototype._onAnimationDone=function(t){"hidden"===t.toState?this._restoreFocus():"visible"===t.toState&&this.bottomSheetConfig.autoFocus&&this._trapFocus(),this._animationStateChanged.emit(t)},e.prototype._onAnimationStart=function(t){this._animationStateChanged.emit(t)},e.prototype._toggleClass=function(t,e){var n=this._elementRef.nativeElement.classList;e?n.add(t):n.remove(t)},e.prototype._validatePortalAttached=function(){if(this._portalOutlet.hasAttached())throw Error("Attempting to attach bottom sheet content after content is already attached")},e.prototype._setPanelClass=function(){var t=this._elementRef.nativeElement,e=this.bottomSheetConfig.panelClass;Array.isArray(e)?e.forEach(function(e){return t.classList.add(e)}):e&&t.classList.add(e)},e.prototype._trapFocus=function(){this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement)),this._focusTrap.focusInitialElementWhenReady()},e.prototype._restoreFocus=function(){var t=this._elementFocusedBeforeOpened;this.bottomSheetConfig.restoreFocus&&t&&"function"==typeof t.focus&&t.focus(),this._focusTrap&&this._focusTrap.destroy()},e.prototype._savePreviouslyFocusedElement=function(){var t=this;this._elementFocusedBeforeOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(function(){return t._elementRef.nativeElement.focus()})},e}(oM),ZA=function(){return function(){}}(),JA=Vr({encapsulation:2,styles:[".mat-bottom-sheet-container{padding:8px 16px;min-width:100vw;box-sizing:border-box;display:block;outline:0;max-height:80vh;overflow:auto}@media (-ms-high-contrast:active){.mat-bottom-sheet-container{outline:1px solid}}.mat-bottom-sheet-container-large,.mat-bottom-sheet-container-medium,.mat-bottom-sheet-container-xlarge{border-top-left-radius:4px;border-top-right-radius:4px}.mat-bottom-sheet-container-medium{min-width:384px;max-width:calc(100vw - 128px)}.mat-bottom-sheet-container-large{min-width:512px;max-width:calc(100vw - 256px)}.mat-bottom-sheet-container-xlarge{min-width:576px;max-width:calc(100vw - 384px)}"],data:{animation:[{type:7,name:"state",definitions:[{type:0,name:"void, hidden",styles:{type:6,styles:{transform:"translateY(100%)"},offset:null},options:void 0},{type:0,name:"visible",styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},options:void 0},{type:1,expr:"visible => void, visible => hidden",animation:{type:4,styles:null,timings:"375ms cubic-bezier(0.4,0.0,1,1)"},options:null},{type:1,expr:"void => visible",animation:{type:4,styles:null,timings:"195ms cubic-bezier(0.0,0.0,0.2,1)"},options:null}],options:{}}]}});function QA(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function $A(t){return Ia(2,[wa(402653184,1,{_portalOutlet:0}),(t()(),go(16777216,null,null,1,null,QA)),oa(2,212992,[[1,4]],0,lM,[Fe,Xi],{portal:[0,"portal"]},null)],function(t,e){t(e,2,0,"")},null)}function tP(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-bottom-sheet-container",[["aria-modal","true"],["class","mat-bottom-sheet-container"],["role","dialog"],["tabindex","-1"]],[[1,"aria-label",0],[40,"@state",0]],[["component","@state.start"],["component","@state.done"]],function(t,e,n){var i=!0;return"component:@state.start"===e&&(i=!1!==Go(t,1)._onAnimationStart(n)&&i),"component:@state.done"===e&&(i=!1!==Go(t,1)._onAnimationDone(n)&&i),i},$A,JA)),oa(1,180224,null,0,KA,[Ve,Zi,Gc,XD,[2,As],XA],null,null)],null,function(t,e){t(e,0,0,null==Go(e,1).bottomSheetConfig?null:Go(e,1).bottomSheetConfig.ariaLabel,Go(e,1)._animationState)})}var eP=Ro("mat-bottom-sheet-container",KA,tP,{},{},[]),nP=function(){function t(t,e){var n=this;this._overlayRef=e,this._afterDismissed=new H,this._afterOpened=new H,this._onAction=new H,this._dismissedByAction=!1,this.containerInstance=t,this.onAction().subscribe(function(){return n.dismiss()}),t._onExit.subscribe(function(){return n._finishDismiss()})}return t.prototype.dismiss=function(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)},t.prototype.dismissWithAction=function(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete())},t.prototype.closeWithAction=function(){this.dismissWithAction()},t.prototype._dismissAfter=function(t){var e=this;this._durationTimeoutId=setTimeout(function(){return e.dismiss()},t)},t.prototype._open=function(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())},t.prototype._finishDismiss=function(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1},t.prototype.afterDismissed=function(){return this._afterDismissed.asObservable()},t.prototype.afterOpened=function(){return this.containerInstance._onEnter},t.prototype.onAction=function(){return this._onAction.asObservable()},t}(),iP=new Lt("MatSnackBarData"),rP=function(){return function(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}(),oP=function(){function t(t,e){this.snackBarRef=t,this.data=e}return t.prototype.action=function(){this.snackBarRef.dismissWithAction()},Object.defineProperty(t.prototype,"hasAction",{get:function(){return!!this.data.action},enumerable:!0,configurable:!0}),t}(),aP=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o._ngZone=e,o._elementRef=n,o._changeDetectorRef=i,o.snackBarConfig=r,o._destroyed=!1,o._onExit=new H,o._onEnter=new H,o._animationState="void",o._role="assertive"!==r.politeness||r.announcementMessage?"off"===r.politeness?null:"status":"alert",o}return r(e,t),e.prototype.attachComponentPortal=function(t){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachComponentPortal(t)},e.prototype.attachTemplatePortal=function(t){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachTemplatePortal(t)},e.prototype.onAnimationEnd=function(t){var e=t.toState;if(("void"===e&&"void"!==t.fromState||"hidden"===e)&&this._completeExit(),"visible"===e){var n=this._onEnter;this._ngZone.run(function(){n.next(),n.complete()})}},e.prototype.enter=function(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges())},e.prototype.exit=function(){return this._animationState="hidden",this._onExit},e.prototype.ngOnDestroy=function(){this._destroyed=!0,this._completeExit()},e.prototype._completeExit=function(){var t=this;this._ngZone.onMicrotaskEmpty.asObservable().pipe(Ac(1)).subscribe(function(){t._onExit.next(),t._onExit.complete()})},e.prototype._applySnackBarClasses=function(){var t=this._elementRef.nativeElement,e=this.snackBarConfig.panelClass;e&&(Array.isArray(e)?e.forEach(function(e){return t.classList.add(e)}):t.classList.add(e)),"center"===this.snackBarConfig.horizontalPosition&&t.classList.add("mat-snack-bar-center"),"top"===this.snackBarConfig.verticalPosition&&t.classList.add("mat-snack-bar-top")},e.prototype._assertNotAttached=function(){if(this._portalOutlet.hasAttached())throw Error("Attempting to attach snack bar content after content is already attached")},e}(oM),lP=function(){return function(){}}(),sP=Vr({encapsulation:2,styles:[".mat-snack-bar-container{border-radius:4px;box-sizing:border-box;display:block;margin:24px;max-width:33vw;min-width:344px;padding:14px 16px;min-height:48px;transform-origin:center}@media (-ms-high-contrast:active){.mat-snack-bar-container{border:solid 1px}}.mat-snack-bar-handset{width:100%}.mat-snack-bar-handset .mat-snack-bar-container{margin:8px;max-width:100%;min-width:0;width:100%}"],data:{animation:[{type:7,name:"state",definitions:[{type:0,name:"void, hidden",styles:{type:6,styles:{transform:"scale(0.8)",opacity:0},offset:null},options:void 0},{type:0,name:"visible",styles:{type:6,styles:{transform:"scale(1)",opacity:1},offset:null},options:void 0},{type:1,expr:"* => visible",animation:{type:4,styles:null,timings:"150ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void, * => hidden",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"75ms cubic-bezier(0.4, 0.0, 1, 1)"},options:null}],options:{}}]}});function uP(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function cP(t){return Ia(0,[wa(402653184,1,{_portalOutlet:0}),(t()(),go(16777216,null,null,1,null,uP)),oa(2,212992,[[1,4]],0,lM,[Fe,Xi],{portal:[0,"portal"]},null)],function(t,e){t(e,2,0,"")},null)}function dP(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"snack-bar-container",[["class","mat-snack-bar-container"]],[[1,"role",0],[40,"@state",0]],[["component","@state.done"]],function(t,e,n){var i=!0;return"component:@state.done"===e&&(i=!1!==Go(t,1).onAnimationEnd(n)&&i),i},cP,sP)),oa(1,180224,null,0,aP,[Mi,Ve,Zi,rP],null,null)],null,function(t,e){t(e,0,0,Go(e,1)._role,Go(e,1)._animationState)})}var hP=Ro("snack-bar-container",aP,dP,{},{},[]),pP=Vr({encapsulation:2,styles:[".mat-simple-snackbar{display:flex;justify-content:space-between;align-items:center;height:100%;line-height:20px;opacity:1}.mat-simple-snackbar-action{flex-shrink:0;margin:-8px -8px -8px 8px}.mat-simple-snackbar-action button{max-height:36px;min-width:0}[dir=rtl] .mat-simple-snackbar-action{margin-left:-8px;margin-right:8px}"],data:{}});function fP(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-simple-snackbar-action"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,2,"button",[["mat-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.action()&&i),i},Nk,Hk)),oa(2,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(3,0,["",""]))],null,function(t,e){var n=e.component;t(e,1,0,Go(e,2).disabled||null,"NoopAnimations"===Go(e,2)._animationMode),t(e,3,0,n.data.action)})}function mP(t){return Ia(2,[(t()(),yo(0,0,null,null,1,"span",[],null,null,null,null,null)),(t()(),Oa(1,null,["",""])),(t()(),go(16777216,null,null,1,null,fP)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){t(e,3,0,e.component.hasAction)},function(t,e){t(e,1,0,e.component.data.message)})}function gP(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"simple-snack-bar",[["class","mat-simple-snackbar"]],null,null,null,mP,pP)),oa(1,49152,null,0,oP,[nP,iP],null,null)],null,null)}var yP=Ro("simple-snack-bar",oP,gP,{},{},[]),_P=Vr({encapsulation:0,styles:["[_nghost-%COMP%]{display:inline-block}[_nghost-%COMP%]:not(.file-input-disabled){cursor:pointer}input[_ngcontent-%COMP%]{width:0;height:0;opacity:0;overflow:hidden;position:absolute;z-index:-1}.filename[_ngcontent-%COMP%]{display:inline-block}"],data:{}});function vP(t){return Ia(0,[(t()(),yo(0,0,[["input",1]],null,0,"input",[["type","file"]],[[1,"multiple",0],[1,"accept",0]],null,null,null,null)),(t()(),yo(1,0,null,null,1,"span",[["class","filename"]],null,null,null,null,null)),(t()(),Oa(2,null,["",""]))],null,function(t,e){var n=e.component;t(e,0,0,n.multiple?"":null,n.accept),t(e,2,0,n.fileNames)})}var bP=new Lt("mat-checkbox-click-action"),xP=0,wP=function(){var t={Init:0,Checked:1,Unchecked:2,Indeterminate:3};return t[t.Init]="Init",t[t.Checked]="Checked",t[t.Unchecked]="Unchecked",t[t.Indeterminate]="Indeterminate",t}(),kP=function(){return function(){}}(),MP=function(t){function e(e,n,i,r,o,a,l){var s=t.call(this,e)||this;return s._changeDetectorRef=n,s._focusMonitor=i,s._ngZone=r,s._clickAction=a,s._animationMode=l,s.ariaLabel="",s.ariaLabelledby=null,s._uniqueId="mat-checkbox-"+ ++xP,s.id=s._uniqueId,s.labelPosition="after",s.name=null,s.change=new kn,s.indeterminateChange=new kn,s._onTouched=function(){},s._currentAnimationClass="",s._currentCheckState=wP.Init,s._controlValueAccessorChangeFn=function(){},s._checked=!1,s._disabled=!1,s._indeterminate=!1,s.tabIndex=parseInt(o)||0,s._focusMonitor.monitor(e,!0).subscribe(function(t){t||Promise.resolve().then(function(){s._onTouched(),n.markForCheck()})}),s}return r(e,t),Object.defineProperty(e.prototype,"inputId",{get:function(){return(this.id||this._uniqueId)+"-input"},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngAfterViewChecked=function(){},e.prototype.ngOnDestroy=function(){this._focusMonitor.stopMonitoring(this._elementRef)},Object.defineProperty(e.prototype,"checked",{get:function(){return this._checked},set:function(t){t!=this.checked&&(this._checked=t,this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disabled",{get:function(){return this._disabled},set:function(t){var e=Xu(t);e!==this.disabled&&(this._disabled=e,this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"indeterminate",{get:function(){return this._indeterminate},set:function(t){var e=t!=this._indeterminate;this._indeterminate=t,e&&(this._transitionCheckState(this._indeterminate?wP.Indeterminate:this.checked?wP.Checked:wP.Unchecked),this.indeterminateChange.emit(this._indeterminate))},enumerable:!0,configurable:!0}),e.prototype._isRippleDisabled=function(){return this.disableRipple||this.disabled},e.prototype._onLabelTextChange=function(){this._changeDetectorRef.detectChanges()},e.prototype.writeValue=function(t){this.checked=!!t},e.prototype.registerOnChange=function(t){this._controlValueAccessorChangeFn=t},e.prototype.registerOnTouched=function(t){this._onTouched=t},e.prototype.setDisabledState=function(t){this.disabled=t},e.prototype._getAriaChecked=function(){return this.checked?"true":this.indeterminate?"mixed":"false"},e.prototype._transitionCheckState=function(t){var e=this._currentCheckState,n=this._elementRef.nativeElement;if(e!==t&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(e,t),this._currentCheckState=t,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);var i=this._currentAnimationClass;this._ngZone.runOutsideAngular(function(){setTimeout(function(){n.classList.remove(i)},1e3)})}},e.prototype._emitChangeEvent=function(){var t=new kP;t.source=this,t.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(t)},e.prototype.toggle=function(){this.checked=!this.checked},e.prototype._onInputClick=function(t){var e=this;t.stopPropagation(),this.disabled||"noop"===this._clickAction?this.disabled||"noop"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==this._clickAction&&Promise.resolve().then(function(){e._indeterminate=!1,e.indeterminateChange.emit(e._indeterminate)}),this.toggle(),this._transitionCheckState(this._checked?wP.Checked:wP.Unchecked),this._emitChangeEvent())},e.prototype.focus=function(){this._focusMonitor.focusVia(this._inputElement,"keyboard")},e.prototype._onInteractionEvent=function(t){t.stopPropagation()},e.prototype._getAnimationClassForCheckStateTransition=function(t,e){if("NoopAnimations"===this._animationMode)return"";var n="";switch(t){case wP.Init:if(e===wP.Checked)n="unchecked-checked";else{if(e!=wP.Indeterminate)return"";n="unchecked-indeterminate"}break;case wP.Unchecked:n=e===wP.Checked?"unchecked-checked":"unchecked-indeterminate";break;case wP.Checked:n=e===wP.Unchecked?"checked-unchecked":"checked-indeterminate";break;case wP.Indeterminate:n=e===wP.Checked?"indeterminate-checked":"indeterminate-unchecked"}return"mat-checkbox-anim-"+n},e}(ld(od(ad(rd(function(){return function(t){this._elementRef=t}}())),"accent"))),SP=function(){return function(){}}(),CP=Vr({encapsulation:2,styles:["@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.91026}50%{animation-timing-function:cubic-bezier(0,0,.2,.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0,0,0,1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(.4,0,1,1);stroke-dashoffset:0}to{stroke-dashoffset:-22.91026}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0,0,.2,.1);opacity:1;transform:rotate(0)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(.14,0,0,1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0,0,.2,.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(.14,0,0,1);opacity:1;transform:rotate(0)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}100%,32.8%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0,0,.2,.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}@media (-ms-high-contrast:active){.mat-checkbox.cdk-keyboard-focused .mat-checkbox-frame{border-style:dotted}}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0,0,.2,.1),opacity 90ms cubic-bezier(0,0,.2,.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.91026;stroke-dasharray:22.91026;stroke-width:2.13333px}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0);border-radius:2px}@media (-ms-high-contrast:active){.mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0s mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0s mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0s mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0s mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0s mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:.5s linear 0s mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:.5s linear 0s mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:.3s linear 0s mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}"],data:{}});function LP(t){return Ia(2,[wa(402653184,1,{_inputElement:0}),wa(402653184,2,{ripple:0}),(t()(),yo(2,0,[["label",1]],null,16,"label",[["class","mat-checkbox-layout"]],[[1,"for",0]],null,null,null,null)),(t()(),yo(3,0,null,null,10,"div",[["class","mat-checkbox-inner-container"]],[[2,"mat-checkbox-inner-container-no-side-margin",null]],null,null,null,null)),(t()(),yo(4,0,[[1,0],["input",1]],null,0,"input",[["class","mat-checkbox-input cdk-visually-hidden"],["type","checkbox"]],[[8,"id",0],[8,"required",0],[8,"checked",0],[1,"value",0],[8,"disabled",0],[1,"name",0],[8,"tabIndex",0],[8,"indeterminate",0],[1,"aria-label",0],[1,"aria-labelledby",0],[1,"aria-checked",0]],[[null,"change"],[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"change"===e&&(i=!1!==r._onInteractionEvent(n)&&i),"click"===e&&(i=!1!==r._onInputClick(n)&&i),i},null,null)),(t()(),yo(5,0,null,null,3,"div",[["class","mat-checkbox-ripple mat-ripple"],["matRipple",""]],[[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(6,212992,[[2,4]],0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{centered:[0,"centered"],radius:[1,"radius"],animation:[2,"animation"],disabled:[3,"disabled"],trigger:[4,"trigger"]},null),Aa(7,{enterDuration:0}),(t()(),yo(8,0,null,null,0,"div",[["class","mat-ripple-element mat-checkbox-persistent-ripple"]],null,null,null,null,null)),(t()(),yo(9,0,null,null,0,"div",[["class","mat-checkbox-frame"]],null,null,null,null,null)),(t()(),yo(10,0,null,null,3,"div",[["class","mat-checkbox-background"]],null,null,null,null,null)),(t()(),yo(11,0,null,null,1,":svg:svg",[[":xml:space","preserve"],["class","mat-checkbox-checkmark"],["focusable","false"],["version","1.1"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(12,0,null,null,0,":svg:path",[["class","mat-checkbox-checkmark-path"],["d","M4.1,12.7 9,17.6 20.3,6.3"],["fill","none"],["stroke","white"]],null,null,null,null,null)),(t()(),yo(13,0,null,null,0,"div",[["class","mat-checkbox-mixedmark"]],null,null,null,null,null)),(t()(),yo(14,0,[["checkboxLabel",1]],null,4,"span",[["class","mat-checkbox-label"]],null,[[null,"cdkObserveContent"]],function(t,e,n){var i=!0;return"cdkObserveContent"===e&&(i=!1!==t.component._onLabelTextChange()&&i),i},null,null)),oa(15,1196032,null,0,db,[cb,Ve,Mi],null,{event:"cdkObserveContent"}),(t()(),yo(16,0,null,null,1,"span",[["style","display:none"]],null,null,null,null,null)),(t()(),Oa(-1,null,["\xa0"])),La(null,0)],function(t,e){var n=e.component,i=t(e,7,0,150);t(e,6,0,!0,20,i,n._isRippleDisabled(),Go(e,2))},function(t,e){var n=e.component;t(e,2,0,n.inputId),t(e,3,0,!Go(e,14).textContent||!Go(e,14).textContent.trim()),t(e,4,1,[n.inputId,n.required,n.checked,n.value,n.disabled,n.name,n.tabIndex,n.indeterminate,n.ariaLabel||null,n.ariaLabelledby,n._getAriaChecked()]),t(e,5,0,Go(e,6).unbounded)})}var DP=Vr({encapsulation:0,styles:[[".example-form[_ngcontent-%COMP%]{display:flex;flex-direction:column}.example-form[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{width:100%}.formbutton[_ngcontent-%COMP%]{margin-right:1em;margin-bottom:2px}.example-ripple-checkbox[_ngcontent-%COMP%]{margin:6px 12px 6px 0}ngx-mat-file-input[_ngcontent-%COMP%]{margin-bottom:10px;overflow:hidden}"]],data:{}});function TP(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"h1",[["class","mat-dialog-title"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(1,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),Oa(2,null,["",""])),(t()(),yo(3,0,null,null,193,"div",[["class","mat-dialog-content"],["mat-dialog-content",""]],null,null,null,null,null)),oa(4,16384,null,0,PS,[],null,null),(t()(),yo(5,0,null,null,191,"form",[["class","example-form"],["novalidate",""]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],[[null,"submit"],[null,"reset"]],function(t,e,n){var i=!0;return"submit"===e&&(i=!1!==Go(t,7).onSubmit(n)&&i),"reset"===e&&(i=!1!==Go(t,7).onReset()&&i),i},null,null)),oa(6,16384,null,0,Fv,[],null,null),oa(7,540672,null,0,Ev,[[8,null],[8,null]],{form:[0,"form"]},null),la(2048,null,A_,null,[Ev]),oa(9,16384,null,0,yv,[[4,A_]],null,null),(t()(),yo(10,0,null,null,16,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(11,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,1,{_control:0}),wa(335544320,2,{_placeholderChild:0}),wa(335544320,3,{_labelChild:0}),wa(603979776,4,{_errorChildren:1}),wa(603979776,5,{_hintChildren:1}),wa(603979776,6,{_prefixChildren:1}),wa(603979776,7,{_suffixChildren:1}),(t()(),yo(19,0,null,1,7,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","CardCode"],["matInput",""],["name","Code"],["placeholder","Card Code"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,20)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,20).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,20)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,20)._compositionEnd(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,25)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,25)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,25)._onInput()&&i),i},null,null)),oa(20,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),la(1024,null,j_,function(t){return[t]},[V_]),oa(22,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(24,16384,null,0,gv,[[4,q_]],null,null),oa(25,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],readonly:[1,"readonly"]},null),la(2048,[[1,4]],Qv,null,[mk]),(t()(),yo(27,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(28,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,8,{_control:0}),wa(335544320,9,{_placeholderChild:0}),wa(335544320,10,{_labelChild:0}),wa(603979776,11,{_errorChildren:1}),wa(603979776,12,{_hintChildren:1}),wa(603979776,13,{_prefixChildren:1}),wa(603979776,14,{_suffixChildren:1}),(t()(),yo(36,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","Rows"],["matInput",""],["name","rows"],["placeholder","Rows"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,37)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,37).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,37)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,37)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,38).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,38).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,38).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,43)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,43)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,43)._onInput()&&i),i},null,null)),oa(37,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(38,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(40,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(42,16384,null,0,gv,[[4,q_]],null,null),oa(43,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[8,4]],Qv,null,[mk]),(t()(),yo(45,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(46,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,15,{_control:0}),wa(335544320,16,{_placeholderChild:0}),wa(335544320,17,{_labelChild:0}),wa(603979776,18,{_errorChildren:1}),wa(603979776,19,{_hintChildren:1}),wa(603979776,20,{_prefixChildren:1}),wa(603979776,21,{_suffixChildren:1}),(t()(),yo(54,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","Columns"],["matInput",""],["name","columns"],["placeholder","Columns"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,55)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,55).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,55)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,55)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,56).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,56).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,56).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,61)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,61)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,61)._onInput()&&i),i},null,null)),oa(55,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(56,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(58,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(60,16384,null,0,gv,[[4,q_]],null,null),oa(61,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[15,4]],Qv,null,[mk]),(t()(),yo(63,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(64,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,22,{_control:0}),wa(335544320,23,{_placeholderChild:0}),wa(335544320,24,{_labelChild:0}),wa(603979776,25,{_errorChildren:1}),wa(603979776,26,{_hintChildren:1}),wa(603979776,27,{_prefixChildren:1}),wa(603979776,28,{_suffixChildren:1}),(t()(),yo(72,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","TargetIndex"],["matInput",""],["name","targetIndex"],["placeholder","Target Index"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,73)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,73).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,73)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,73)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,74).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,74).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,74).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,79)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,79)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,79)._onInput()&&i),i},null,null)),oa(73,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(74,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(76,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(78,16384,null,0,gv,[[4,q_]],null,null),oa(79,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[22,4]],Qv,null,[mk]),(t()(),yo(81,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(82,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,29,{_control:0}),wa(335544320,30,{_placeholderChild:0}),wa(335544320,31,{_labelChild:0}),wa(603979776,32,{_errorChildren:1}),wa(603979776,33,{_hintChildren:1}),wa(603979776,34,{_prefixChildren:1}),wa(603979776,35,{_suffixChildren:1}),(t()(),yo(90,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","SampleWidth"],["matInput",""],["name","sampleWidth"],["placeholder","Sample Width"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,91)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,91).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,91)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,91)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,92).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,92).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,92).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,97)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,97)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,97)._onInput()&&i),i},null,null)),oa(91,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(92,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(94,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(96,16384,null,0,gv,[[4,q_]],null,null),oa(97,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[29,4]],Qv,null,[mk]),(t()(),yo(99,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(100,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,36,{_control:0}),wa(335544320,37,{_placeholderChild:0}),wa(335544320,38,{_labelChild:0}),wa(603979776,39,{_errorChildren:1}),wa(603979776,40,{_hintChildren:1}),wa(603979776,41,{_prefixChildren:1}),wa(603979776,42,{_suffixChildren:1}),(t()(),yo(108,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","SampleHeighth"],["matInput",""],["name","sampleHeighth"],["placeholder","Sample Heighth"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,109)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,109).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,109)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,109)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,110).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,110).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,110).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,115)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,115)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,115)._onInput()&&i),i},null,null)),oa(109,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(110,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(112,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(114,16384,null,0,gv,[[4,q_]],null,null),oa(115,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[36,4]],Qv,null,[mk]),(t()(),yo(117,0,null,null,18,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(118,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,43,{_control:0}),wa(335544320,44,{_placeholderChild:0}),wa(335544320,45,{_labelChild:0}),wa(603979776,46,{_errorChildren:1}),wa(603979776,47,{_hintChildren:1}),wa(603979776,48,{_prefixChildren:1}),wa(603979776,49,{_suffixChildren:1}),(t()(),yo(126,0,null,1,5,"ngx-mat-file-input",[["formControlName","PDFPath"],["name","pdfFile"],["placeholder","PDF file"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[8,"id",0],[1,"aria-describedby",0],[2,"mat-form-field-should-float",null],[2,"file-input-disabled",null]],[[null,"change"],[null,"focusout"]],function(t,e,n){var i=!0;return"change"===e&&(i=!1!==Go(t,130).change(n)&&i),"focusout"===e&&(i=!1!==Go(t,130).blur()&&i),i},vP,_P)),oa(127,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[8,null],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(129,16384,null,0,gv,[[4,q_]],null,null),oa(130,245760,null,0,t_,[[6,q_],$c,Ve,qe],{accept:[0,"accept"],placeholder:[1,"placeholder"]},null),la(2048,[[43,4]],Qv,null,[t_]),(t()(),yo(132,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(133,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(134,16384,[[49,4]],0,ib,[],null,null),(t()(),Oa(-1,0,["attach_file"])),(t()(),yo(136,0,null,null,18,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(137,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,50,{_control:0}),wa(335544320,51,{_placeholderChild:0}),wa(335544320,52,{_labelChild:0}),wa(603979776,53,{_errorChildren:1}),wa(603979776,54,{_hintChildren:1}),wa(603979776,55,{_prefixChildren:1}),wa(603979776,56,{_suffixChildren:1}),(t()(),yo(145,0,null,1,5,"ngx-mat-file-input",[["formControlName","SCVPath"],["name","scvFile"],["placeholder","SCV file"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[8,"id",0],[1,"aria-describedby",0],[2,"mat-form-field-should-float",null],[2,"file-input-disabled",null]],[[null,"change"],[null,"focusout"]],function(t,e,n){var i=!0;return"change"===e&&(i=!1!==Go(t,149).change(n)&&i),"focusout"===e&&(i=!1!==Go(t,149).blur()&&i),i},vP,_P)),oa(146,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[8,null],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(148,16384,null,0,gv,[[4,q_]],null,null),oa(149,245760,null,0,t_,[[6,q_],$c,Ve,qe],{accept:[0,"accept"],placeholder:[1,"placeholder"]},null),la(2048,[[50,4]],Qv,null,[t_]),(t()(),yo(151,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(152,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(153,16384,[[56,4]],0,ib,[],null,null),(t()(),Oa(-1,0,["attach_file"])),(t()(),yo(155,0,null,null,18,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(156,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,57,{_control:0}),wa(335544320,58,{_placeholderChild:0}),wa(335544320,59,{_labelChild:0}),wa(603979776,60,{_errorChildren:1}),wa(603979776,61,{_hintChildren:1}),wa(603979776,62,{_prefixChildren:1}),wa(603979776,63,{_suffixChildren:1}),(t()(),yo(164,0,null,1,5,"ngx-mat-file-input",[["formControlName","TempPath"],["name","templFile"],["placeholder","Template file"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[8,"id",0],[1,"aria-describedby",0],[2,"mat-form-field-should-float",null],[2,"file-input-disabled",null]],[[null,"change"],[null,"focusout"]],function(t,e,n){var i=!0;return"change"===e&&(i=!1!==Go(t,168).change(n)&&i),"focusout"===e&&(i=!1!==Go(t,168).blur()&&i),i},vP,_P)),oa(165,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[8,null],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(167,16384,null,0,gv,[[4,q_]],null,null),oa(168,245760,null,0,t_,[[6,q_],$c,Ve,qe],{accept:[0,"accept"],placeholder:[1,"placeholder"]},null),la(2048,[[57,4]],Qv,null,[t_]),(t()(),yo(170,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(171,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(172,16384,[[63,4]],0,ib,[],null,null),(t()(),Oa(-1,0,["attach_file"])),(t()(),yo(174,0,null,null,6,"mat-checkbox",[["class","example-ripple-checkbox mat-checkbox"],["color","primary"],["formControlName","EnableDoubleChecking"],["name","enableDoubleChecking"]],[[8,"id",0],[1,"tabindex",0],[2,"mat-checkbox-indeterminate",null],[2,"mat-checkbox-checked",null],[2,"mat-checkbox-disabled",null],[2,"mat-checkbox-label-before",null],[2,"_mat-animation-noopable",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],null,null,LP,CP)),oa(175,8568832,null,0,MP,[Ve,Zi,$c,Mi,[8,null],[2,bP],[2,Ow]],{color:[0,"color"],name:[1,"name"]},null),la(1024,null,j_,function(t){return[t]},[MP]),oa(177,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(179,16384,null,0,gv,[[4,q_]],null,null),(t()(),Oa(-1,0,["Enable Double Checking"])),(t()(),yo(181,0,null,null,6,"mat-checkbox",[["class","example-ripple-checkbox mat-checkbox"],["color","primary"],["formControlName","EnforceBarcodeDetection"],["name","enforceBarcodeDetection"]],[[8,"id",0],[1,"tabindex",0],[2,"mat-checkbox-indeterminate",null],[2,"mat-checkbox-checked",null],[2,"mat-checkbox-disabled",null],[2,"mat-checkbox-label-before",null],[2,"_mat-animation-noopable",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],null,null,LP,CP)),oa(182,8568832,null,0,MP,[Ve,Zi,$c,Mi,[8,null],[2,bP],[2,Ow]],{color:[0,"color"],name:[1,"name"]},null),la(1024,null,j_,function(t){return[t]},[MP]),oa(184,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(186,16384,null,0,gv,[[4,q_]],null,null),(t()(),Oa(-1,0,["Enforce Barcode Detection"])),(t()(),yo(188,0,null,null,8,"div",[["fxLayout","row"],["fxLayoutAlign","end center"]],null,null,null,null,null)),oa(189,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(190,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(191,0,null,null,2,"button",[["class","formbutton"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onCancel()&&i),i},Nk,Hk)),oa(192,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Cancel"])),(t()(),yo(194,0,null,null,2,"button",[["class","formbutton"],["color","primary"],["mat-primary",""],["mat-raised-button",""],["type","submit"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onSave()&&i),i},Nk,Hk)),oa(195,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),(t()(),Oa(-1,0,["Save"]))],function(t,e){var n=e.component;t(e,1,0),t(e,7,0,n.form),t(e,22,0,"CardCode"),t(e,25,0,"Card Code",!0),t(e,40,0,"Rows"),t(e,43,0,"Rows","number"),t(e,58,0,"Columns"),t(e,61,0,"Columns","number"),t(e,76,0,"TargetIndex"),t(e,79,0,"Target Index","number"),t(e,94,0,"SampleWidth"),t(e,97,0,"Sample Width","number"),t(e,112,0,"SampleHeighth"),t(e,115,0,"Sample Heighth","number"),t(e,127,0,"PDFPath"),t(e,130,0,".pdf","PDF file"),t(e,133,0),t(e,146,0,"SCVPath"),t(e,149,0,".csv","SCV file"),t(e,152,0),t(e,165,0,"TempPath"),t(e,168,0,".pdf","Template file"),t(e,171,0),t(e,175,0,"primary","enableDoubleChecking"),t(e,177,0,"EnableDoubleChecking"),t(e,182,0,"primary","enforceBarcodeDetection"),t(e,184,0,"EnforceBarcodeDetection"),t(e,189,0,"row"),t(e,190,0,"end center"),t(e,195,0,"primary")},function(t,e){var n=e.component;t(e,0,0,Go(e,1).id),t(e,2,0,n.title),t(e,5,0,Go(e,9).ngClassUntouched,Go(e,9).ngClassTouched,Go(e,9).ngClassPristine,Go(e,9).ngClassDirty,Go(e,9).ngClassValid,Go(e,9).ngClassInvalid,Go(e,9).ngClassPending),t(e,10,1,["standard"==Go(e,11).appearance,"fill"==Go(e,11).appearance,"outline"==Go(e,11).appearance,"legacy"==Go(e,11).appearance,Go(e,11)._control.errorState,Go(e,11)._canLabelFloat,Go(e,11)._shouldLabelFloat(),Go(e,11)._hasFloatingLabel(),Go(e,11)._hideControlPlaceholder(),Go(e,11)._control.disabled,Go(e,11)._control.autofilled,Go(e,11)._control.focused,"accent"==Go(e,11).color,"warn"==Go(e,11).color,Go(e,11)._shouldForward("untouched"),Go(e,11)._shouldForward("touched"),Go(e,11)._shouldForward("pristine"),Go(e,11)._shouldForward("dirty"),Go(e,11)._shouldForward("valid"),Go(e,11)._shouldForward("invalid"),Go(e,11)._shouldForward("pending"),!Go(e,11)._animationsEnabled]),t(e,19,1,[Go(e,24).ngClassUntouched,Go(e,24).ngClassTouched,Go(e,24).ngClassPristine,Go(e,24).ngClassDirty,Go(e,24).ngClassValid,Go(e,24).ngClassInvalid,Go(e,24).ngClassPending,Go(e,25)._isServer,Go(e,25).id,Go(e,25).placeholder,Go(e,25).disabled,Go(e,25).required,Go(e,25).readonly&&!Go(e,25)._isNativeSelect||null,Go(e,25)._ariaDescribedby||null,Go(e,25).errorState,Go(e,25).required.toString()]),t(e,27,1,["standard"==Go(e,28).appearance,"fill"==Go(e,28).appearance,"outline"==Go(e,28).appearance,"legacy"==Go(e,28).appearance,Go(e,28)._control.errorState,Go(e,28)._canLabelFloat,Go(e,28)._shouldLabelFloat(),Go(e,28)._hasFloatingLabel(),Go(e,28)._hideControlPlaceholder(),Go(e,28)._control.disabled,Go(e,28)._control.autofilled,Go(e,28)._control.focused,"accent"==Go(e,28).color,"warn"==Go(e,28).color,Go(e,28)._shouldForward("untouched"),Go(e,28)._shouldForward("touched"),Go(e,28)._shouldForward("pristine"),Go(e,28)._shouldForward("dirty"),Go(e,28)._shouldForward("valid"),Go(e,28)._shouldForward("invalid"),Go(e,28)._shouldForward("pending"),!Go(e,28)._animationsEnabled]),t(e,36,1,[Go(e,42).ngClassUntouched,Go(e,42).ngClassTouched,Go(e,42).ngClassPristine,Go(e,42).ngClassDirty,Go(e,42).ngClassValid,Go(e,42).ngClassInvalid,Go(e,42).ngClassPending,Go(e,43)._isServer,Go(e,43).id,Go(e,43).placeholder,Go(e,43).disabled,Go(e,43).required,Go(e,43).readonly&&!Go(e,43)._isNativeSelect||null,Go(e,43)._ariaDescribedby||null,Go(e,43).errorState,Go(e,43).required.toString()]),t(e,45,1,["standard"==Go(e,46).appearance,"fill"==Go(e,46).appearance,"outline"==Go(e,46).appearance,"legacy"==Go(e,46).appearance,Go(e,46)._control.errorState,Go(e,46)._canLabelFloat,Go(e,46)._shouldLabelFloat(),Go(e,46)._hasFloatingLabel(),Go(e,46)._hideControlPlaceholder(),Go(e,46)._control.disabled,Go(e,46)._control.autofilled,Go(e,46)._control.focused,"accent"==Go(e,46).color,"warn"==Go(e,46).color,Go(e,46)._shouldForward("untouched"),Go(e,46)._shouldForward("touched"),Go(e,46)._shouldForward("pristine"),Go(e,46)._shouldForward("dirty"),Go(e,46)._shouldForward("valid"),Go(e,46)._shouldForward("invalid"),Go(e,46)._shouldForward("pending"),!Go(e,46)._animationsEnabled]),t(e,54,1,[Go(e,60).ngClassUntouched,Go(e,60).ngClassTouched,Go(e,60).ngClassPristine,Go(e,60).ngClassDirty,Go(e,60).ngClassValid,Go(e,60).ngClassInvalid,Go(e,60).ngClassPending,Go(e,61)._isServer,Go(e,61).id,Go(e,61).placeholder,Go(e,61).disabled,Go(e,61).required,Go(e,61).readonly&&!Go(e,61)._isNativeSelect||null,Go(e,61)._ariaDescribedby||null,Go(e,61).errorState,Go(e,61).required.toString()]),t(e,63,1,["standard"==Go(e,64).appearance,"fill"==Go(e,64).appearance,"outline"==Go(e,64).appearance,"legacy"==Go(e,64).appearance,Go(e,64)._control.errorState,Go(e,64)._canLabelFloat,Go(e,64)._shouldLabelFloat(),Go(e,64)._hasFloatingLabel(),Go(e,64)._hideControlPlaceholder(),Go(e,64)._control.disabled,Go(e,64)._control.autofilled,Go(e,64)._control.focused,"accent"==Go(e,64).color,"warn"==Go(e,64).color,Go(e,64)._shouldForward("untouched"),Go(e,64)._shouldForward("touched"),Go(e,64)._shouldForward("pristine"),Go(e,64)._shouldForward("dirty"),Go(e,64)._shouldForward("valid"),Go(e,64)._shouldForward("invalid"),Go(e,64)._shouldForward("pending"),!Go(e,64)._animationsEnabled]),t(e,72,1,[Go(e,78).ngClassUntouched,Go(e,78).ngClassTouched,Go(e,78).ngClassPristine,Go(e,78).ngClassDirty,Go(e,78).ngClassValid,Go(e,78).ngClassInvalid,Go(e,78).ngClassPending,Go(e,79)._isServer,Go(e,79).id,Go(e,79).placeholder,Go(e,79).disabled,Go(e,79).required,Go(e,79).readonly&&!Go(e,79)._isNativeSelect||null,Go(e,79)._ariaDescribedby||null,Go(e,79).errorState,Go(e,79).required.toString()]),t(e,81,1,["standard"==Go(e,82).appearance,"fill"==Go(e,82).appearance,"outline"==Go(e,82).appearance,"legacy"==Go(e,82).appearance,Go(e,82)._control.errorState,Go(e,82)._canLabelFloat,Go(e,82)._shouldLabelFloat(),Go(e,82)._hasFloatingLabel(),Go(e,82)._hideControlPlaceholder(),Go(e,82)._control.disabled,Go(e,82)._control.autofilled,Go(e,82)._control.focused,"accent"==Go(e,82).color,"warn"==Go(e,82).color,Go(e,82)._shouldForward("untouched"),Go(e,82)._shouldForward("touched"),Go(e,82)._shouldForward("pristine"),Go(e,82)._shouldForward("dirty"),Go(e,82)._shouldForward("valid"),Go(e,82)._shouldForward("invalid"),Go(e,82)._shouldForward("pending"),!Go(e,82)._animationsEnabled]),t(e,90,1,[Go(e,96).ngClassUntouched,Go(e,96).ngClassTouched,Go(e,96).ngClassPristine,Go(e,96).ngClassDirty,Go(e,96).ngClassValid,Go(e,96).ngClassInvalid,Go(e,96).ngClassPending,Go(e,97)._isServer,Go(e,97).id,Go(e,97).placeholder,Go(e,97).disabled,Go(e,97).required,Go(e,97).readonly&&!Go(e,97)._isNativeSelect||null,Go(e,97)._ariaDescribedby||null,Go(e,97).errorState,Go(e,97).required.toString()]),t(e,99,1,["standard"==Go(e,100).appearance,"fill"==Go(e,100).appearance,"outline"==Go(e,100).appearance,"legacy"==Go(e,100).appearance,Go(e,100)._control.errorState,Go(e,100)._canLabelFloat,Go(e,100)._shouldLabelFloat(),Go(e,100)._hasFloatingLabel(),Go(e,100)._hideControlPlaceholder(),Go(e,100)._control.disabled,Go(e,100)._control.autofilled,Go(e,100)._control.focused,"accent"==Go(e,100).color,"warn"==Go(e,100).color,Go(e,100)._shouldForward("untouched"),Go(e,100)._shouldForward("touched"),Go(e,100)._shouldForward("pristine"),Go(e,100)._shouldForward("dirty"),Go(e,100)._shouldForward("valid"),Go(e,100)._shouldForward("invalid"),Go(e,100)._shouldForward("pending"),!Go(e,100)._animationsEnabled]),t(e,108,1,[Go(e,114).ngClassUntouched,Go(e,114).ngClassTouched,Go(e,114).ngClassPristine,Go(e,114).ngClassDirty,Go(e,114).ngClassValid,Go(e,114).ngClassInvalid,Go(e,114).ngClassPending,Go(e,115)._isServer,Go(e,115).id,Go(e,115).placeholder,Go(e,115).disabled,Go(e,115).required,Go(e,115).readonly&&!Go(e,115)._isNativeSelect||null,Go(e,115)._ariaDescribedby||null,Go(e,115).errorState,Go(e,115).required.toString()]),t(e,117,1,["standard"==Go(e,118).appearance,"fill"==Go(e,118).appearance,"outline"==Go(e,118).appearance,"legacy"==Go(e,118).appearance,Go(e,118)._control.errorState,Go(e,118)._canLabelFloat,Go(e,118)._shouldLabelFloat(),Go(e,118)._hasFloatingLabel(),Go(e,118)._hideControlPlaceholder(),Go(e,118)._control.disabled,Go(e,118)._control.autofilled,Go(e,118)._control.focused,"accent"==Go(e,118).color,"warn"==Go(e,118).color,Go(e,118)._shouldForward("untouched"),Go(e,118)._shouldForward("touched"),Go(e,118)._shouldForward("pristine"),Go(e,118)._shouldForward("dirty"),Go(e,118)._shouldForward("valid"),Go(e,118)._shouldForward("invalid"),Go(e,118)._shouldForward("pending"),!Go(e,118)._animationsEnabled]),t(e,126,1,[Go(e,129).ngClassUntouched,Go(e,129).ngClassTouched,Go(e,129).ngClassPristine,Go(e,129).ngClassDirty,Go(e,129).ngClassValid,Go(e,129).ngClassInvalid,Go(e,129).ngClassPending,Go(e,130).id,Go(e,130).describedBy,Go(e,130).shouldLabelFloat,Go(e,130).isDisabled]),t(e,132,0,Go(e,133).inline,"primary"!==Go(e,133).color&&"accent"!==Go(e,133).color&&"warn"!==Go(e,133).color),t(e,136,1,["standard"==Go(e,137).appearance,"fill"==Go(e,137).appearance,"outline"==Go(e,137).appearance,"legacy"==Go(e,137).appearance,Go(e,137)._control.errorState,Go(e,137)._canLabelFloat,Go(e,137)._shouldLabelFloat(),Go(e,137)._hasFloatingLabel(),Go(e,137)._hideControlPlaceholder(),Go(e,137)._control.disabled,Go(e,137)._control.autofilled,Go(e,137)._control.focused,"accent"==Go(e,137).color,"warn"==Go(e,137).color,Go(e,137)._shouldForward("untouched"),Go(e,137)._shouldForward("touched"),Go(e,137)._shouldForward("pristine"),Go(e,137)._shouldForward("dirty"),Go(e,137)._shouldForward("valid"),Go(e,137)._shouldForward("invalid"),Go(e,137)._shouldForward("pending"),!Go(e,137)._animationsEnabled]),t(e,145,1,[Go(e,148).ngClassUntouched,Go(e,148).ngClassTouched,Go(e,148).ngClassPristine,Go(e,148).ngClassDirty,Go(e,148).ngClassValid,Go(e,148).ngClassInvalid,Go(e,148).ngClassPending,Go(e,149).id,Go(e,149).describedBy,Go(e,149).shouldLabelFloat,Go(e,149).isDisabled]),t(e,151,0,Go(e,152).inline,"primary"!==Go(e,152).color&&"accent"!==Go(e,152).color&&"warn"!==Go(e,152).color),t(e,155,1,["standard"==Go(e,156).appearance,"fill"==Go(e,156).appearance,"outline"==Go(e,156).appearance,"legacy"==Go(e,156).appearance,Go(e,156)._control.errorState,Go(e,156)._canLabelFloat,Go(e,156)._shouldLabelFloat(),Go(e,156)._hasFloatingLabel(),Go(e,156)._hideControlPlaceholder(),Go(e,156)._control.disabled,Go(e,156)._control.autofilled,Go(e,156)._control.focused,"accent"==Go(e,156).color,"warn"==Go(e,156).color,Go(e,156)._shouldForward("untouched"),Go(e,156)._shouldForward("touched"),Go(e,156)._shouldForward("pristine"),Go(e,156)._shouldForward("dirty"),Go(e,156)._shouldForward("valid"),Go(e,156)._shouldForward("invalid"),Go(e,156)._shouldForward("pending"),!Go(e,156)._animationsEnabled]),t(e,164,1,[Go(e,167).ngClassUntouched,Go(e,167).ngClassTouched,Go(e,167).ngClassPristine,Go(e,167).ngClassDirty,Go(e,167).ngClassValid,Go(e,167).ngClassInvalid,Go(e,167).ngClassPending,Go(e,168).id,Go(e,168).describedBy,Go(e,168).shouldLabelFloat,Go(e,168).isDisabled]),t(e,170,0,Go(e,171).inline,"primary"!==Go(e,171).color&&"accent"!==Go(e,171).color&&"warn"!==Go(e,171).color),t(e,174,1,[Go(e,175).id,null,Go(e,175).indeterminate,Go(e,175).checked,Go(e,175).disabled,"before"==Go(e,175).labelPosition,"NoopAnimations"===Go(e,175)._animationMode,Go(e,179).ngClassUntouched,Go(e,179).ngClassTouched,Go(e,179).ngClassPristine,Go(e,179).ngClassDirty,Go(e,179).ngClassValid,Go(e,179).ngClassInvalid,Go(e,179).ngClassPending]),t(e,181,1,[Go(e,182).id,null,Go(e,182).indeterminate,Go(e,182).checked,Go(e,182).disabled,"before"==Go(e,182).labelPosition,"NoopAnimations"===Go(e,182)._animationMode,Go(e,186).ngClassUntouched,Go(e,186).ngClassTouched,Go(e,186).ngClassPristine,Go(e,186).ngClassDirty,Go(e,186).ngClassValid,Go(e,186).ngClassInvalid,Go(e,186).ngClassPending]),t(e,191,0,Go(e,192).disabled||null,"NoopAnimations"===Go(e,192)._animationMode),t(e,194,0,Go(e,195).disabled||null,"NoopAnimations"===Go(e,195)._animationMode)})}function EP(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-add-card",[],null,null,null,TP,DP)),la(512,null,h_,h_,[ph]),oa(2,114688,null,0,VE,[kS,MS,h_,Iv],null,null)],function(t,e){t(e,2,0)},null)}var AP=Ro("app-add-card",VE,EP,{},{},[]);function PP(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function OP(t,e){var n=e?"":"none";PP(t.style,{touchAction:e?"":"none",webkitUserDrag:e?"":"none",webkitTapHighlightColor:e?"":"transparent",userSelect:n,msUserSelect:n,webkitUserSelect:n,MozUserSelect:n})}function YP(t){var e=t.toLowerCase().indexOf("ms")>-1?1:1e3;return parseFloat(t)*e}function RP(t,e){return t.getPropertyValue(e).split(",").map(function(t){return t.trim()})}var IP=ac({passive:!0}),FP=ac({passive:!1}),zP=function(){function t(t,e,n,i,r,o){var a=this;this._config=e,this._document=n,this._ngZone=i,this._viewportRuler=r,this._dragDropRegistry=o,this._passiveTransform={x:0,y:0},this._activeTransform={x:0,y:0},this._moveEvents=new H,this._moveEventSubscriptions=0,this._pointerMoveSubscription=x.EMPTY,this._pointerUpSubscription=x.EMPTY,this._boundaryElement=null,this._nativeInteractionsEnabled=!0,this._handles=[],this._disabledHandles=new Set,this._direction="ltr",this._disabled=!1,this.beforeStarted=new H,this.started=new H,this.released=new H,this.ended=new H,this.entered=new H,this.exited=new H,this.dropped=new H,this.moved=new Y(function(t){var e=a._moveEvents.subscribe(t);return a._moveEventSubscriptions++,function(){e.unsubscribe(),a._moveEventSubscriptions--}}),this._pointerDown=function(t){if(a.beforeStarted.next(),a._handles.length){var e=a._handles.find(function(e){var n=t.target;return!!n&&(n===e||e.contains(n))});!e||a._disabledHandles.has(e)||a.disabled||a._initializeDragSequence(e,t)}else a.disabled||a._initializeDragSequence(a._rootElement,t)},this._pointerMove=function(t){if(a._hasStartedDragging){a._boundaryElement&&(a._previewRect&&(a._previewRect.width||a._previewRect.height)||(a._previewRect=(a._preview||a._rootElement).getBoundingClientRect()));var e=a._getConstrainedPointerPosition(t);if(a._hasMoved=!0,t.preventDefault(),a._updatePointerDirectionDelta(e),a._dropContainer)a._updateActiveDropContainer(e);else{var n=a._activeTransform;n.x=e.x-a._pickupPositionOnPage.x+a._passiveTransform.x,n.y=e.y-a._pickupPositionOnPage.y+a._passiveTransform.y;var i=jP(n.x,n.y);a._rootElement.style.transform=a._initialTransform?i+" "+a._initialTransform:i,"undefined"!=typeof SVGElement&&a._rootElement instanceof SVGElement&&a._rootElement.setAttribute("transform","translate("+n.x+" "+n.y+")")}a._moveEventSubscriptions>0&&a._ngZone.run(function(){a._moveEvents.next({source:a,pointerPosition:e,event:t,delta:a._pointerDirectionDelta})})}else{var r=a._getPointerPositionOnPage(t);Math.abs(r.x-a._pickupPositionOnPage.x)+Math.abs(r.y-a._pickupPositionOnPage.y)>=a._config.dragStartThreshold&&(a._hasStartedDragging=!0,a._ngZone.run(function(){return a._startDragSequence(t)}))}},this._pointerUp=function(t){if(a._dragDropRegistry.isDragging(a)&&(a._removeSubscriptions(),a._dragDropRegistry.stopDragging(a),a._handles&&(a._rootElement.style.webkitTapHighlightColor=a._rootElementTapHighlight),a._hasStartedDragging)){if(a.released.next({source:a}),!a._dropContainer)return a._passiveTransform.x=a._activeTransform.x,a._passiveTransform.y=a._activeTransform.y,a._ngZone.run(function(){return a.ended.next({source:a})}),void a._dragDropRegistry.stopDragging(a);a._animatePreviewToPlaceholder().then(function(){a._cleanupDragArtifacts(t),a._dragDropRegistry.stopDragging(a)})}},this.withRootElement(t),o.registerDragItem(this)}return Object.defineProperty(t.prototype,"disabled",{get:function(){return this._disabled||!(!this._dropContainer||!this._dropContainer.disabled)},set:function(t){var e=Xu(t);e!==this._disabled&&(this._disabled=e,this._toggleNativeDragInteractions())},enumerable:!0,configurable:!0}),t.prototype.getPlaceholderElement=function(){return this._placeholder},t.prototype.getRootElement=function(){return this._rootElement},t.prototype.withHandles=function(t){return this._handles=t.map(function(t){return $u(t)}),this._handles.forEach(function(t){return OP(t,!1)}),this._toggleNativeDragInteractions(),this},t.prototype.withPreviewTemplate=function(t){return this._previewTemplate=t,this},t.prototype.withPlaceholderTemplate=function(t){return this._placeholderTemplate=t,this},t.prototype.withRootElement=function(t){var e=$u(t);return e!==this._rootElement&&(this._rootElement&&this._removeRootElementListeners(this._rootElement),e.addEventListener("mousedown",this._pointerDown,FP),e.addEventListener("touchstart",this._pointerDown,IP),this._initialTransform=void 0,this._rootElement=e),this},t.prototype.withBoundaryElement=function(t){return this._boundaryElement=t?$u(t):null,this},t.prototype.dispose=function(){this._removeRootElementListeners(this._rootElement),this.isDragging()&&VP(this._rootElement),this._destroyPreview(),this._destroyPlaceholder(),this._dragDropRegistry.removeDragItem(this),this._removeSubscriptions(),this.beforeStarted.complete(),this.started.complete(),this.released.complete(),this.ended.complete(),this.entered.complete(),this.exited.complete(),this.dropped.complete(),this._moveEvents.complete(),this._handles=[],this._disabledHandles.clear(),this._dropContainer=void 0,this._boundaryElement=this._rootElement=this._placeholderTemplate=this._previewTemplate=this._nextSibling=null},t.prototype.isDragging=function(){return this._hasStartedDragging&&this._dragDropRegistry.isDragging(this)},t.prototype.reset=function(){this._rootElement.style.transform=this._initialTransform||"",this._activeTransform={x:0,y:0},this._passiveTransform={x:0,y:0}},t.prototype.disableHandle=function(t){this._handles.indexOf(t)>-1&&this._disabledHandles.add(t)},t.prototype.enableHandle=function(t){this._disabledHandles.delete(t)},t.prototype.withDirection=function(t){return this._direction=t,this},t.prototype._withDropContainer=function(t){this._dropContainer=t},t.prototype._removeSubscriptions=function(){this._pointerMoveSubscription.unsubscribe(),this._pointerUpSubscription.unsubscribe()},t.prototype._destroyPreview=function(){this._preview&&VP(this._preview),this._previewRef&&this._previewRef.destroy(),this._preview=this._previewRef=null},t.prototype._destroyPlaceholder=function(){this._placeholder&&VP(this._placeholder),this._placeholderRef&&this._placeholderRef.destroy(),this._placeholder=this._placeholderRef=null},t.prototype._startDragSequence=function(t){if(this.started.next({source:this}),BP(t)&&(this._lastTouchEventTime=Date.now()),this._dropContainer){var e=this._rootElement;this._nextSibling=e.nextSibling;var n=this._preview=this._createPreviewElement(),i=this._placeholder=this._createPlaceholderElement();e.style.display="none",this._document.body.appendChild(e.parentNode.replaceChild(i,e)),this._document.body.appendChild(n),this._dropContainer.start()}},t.prototype._initializeDragSequence=function(t,e){e.stopPropagation();var n=this.isDragging(),i=BP(e),r=!i&&0!==e.button,o=this._rootElement,a=!i&&this._lastTouchEventTime&&this._lastTouchEventTime+800>Date.now();if(e.target&&e.target.draggable&&"mousedown"===e.type&&e.preventDefault(),!(n||r||a)){null==this._initialTransform&&(this._initialTransform=this._rootElement.style.transform||""),this._handles.length&&(this._rootElementTapHighlight=o.style.webkitTapHighlightColor,o.style.webkitTapHighlightColor="transparent"),this._toggleNativeDragInteractions(),this._hasStartedDragging=this._hasMoved=!1,this._initialContainer=this._dropContainer,this._pointerMoveSubscription=this._dragDropRegistry.pointerMove.subscribe(this._pointerMove),this._pointerUpSubscription=this._dragDropRegistry.pointerUp.subscribe(this._pointerUp),this._scrollPosition=this._viewportRuler.getViewportScrollPosition(),this._boundaryElement&&(this._boundaryRect=this._boundaryElement.getBoundingClientRect()),this._pickupPositionInElement=this._previewTemplate&&this._previewTemplate.template?{x:0,y:0}:this._getPointerPositionInElement(t,e);var l=this._pickupPositionOnPage=this._getPointerPositionOnPage(e);this._pointerDirectionDelta={x:0,y:0},this._pointerPositionAtLastDirectionChange={x:l.x,y:l.y},this._dragDropRegistry.startDragging(this,e)}},t.prototype._cleanupDragArtifacts=function(t){var e=this;this._rootElement.style.display="",this._nextSibling?this._nextSibling.parentNode.insertBefore(this._rootElement,this._nextSibling):this._initialContainer.element.appendChild(this._rootElement),this._destroyPreview(),this._destroyPlaceholder(),this._boundaryRect=this._previewRect=void 0,this._ngZone.run(function(){var n=e._dropContainer,i=n.getItemIndex(e),r=e._getPointerPositionOnPage(t),o=n._isOverContainer(r.x,r.y);e.ended.next({source:e}),e.dropped.next({item:e,currentIndex:i,previousIndex:e._initialContainer.getItemIndex(e),container:n,previousContainer:e._initialContainer,isPointerOverContainer:o}),n.drop(e,i,e._initialContainer,o),e._dropContainer=e._initialContainer})},t.prototype._updateActiveDropContainer=function(t){var e=this,n=t.x,i=t.y,r=this._dropContainer._getSiblingContainerFromPosition(this,n,i)||this._initialContainer._getSiblingContainerFromPosition(this,n,i);!r&&this._dropContainer!==this._initialContainer&&this._initialContainer._isOverContainer(n,i)&&(r=this._initialContainer),r&&r!==this._dropContainer&&this._ngZone.run(function(){e.exited.next({item:e,container:e._dropContainer}),e._dropContainer.exit(e),e.entered.next({item:e,container:r}),e._dropContainer=r,e._dropContainer.enter(e,n,i)}),this._dropContainer._sortItem(this,n,i,this._pointerDirectionDelta),this._preview.style.transform=jP(n-this._pickupPositionInElement.x,i-this._pickupPositionInElement.y)},t.prototype._createPreviewElement=function(){var t,e=this._previewTemplate,n=e?e.template:null;if(n){var i=e.viewContainer.createEmbeddedView(n,e.context);t=i.rootNodes[0],this._previewRef=i,t.style.transform=jP(this._pickupPositionOnPage.x,this._pickupPositionOnPage.y)}else{var r=this._rootElement,o=r.getBoundingClientRect();(t=HP(r)).style.width=o.width+"px",t.style.height=o.height+"px",t.style.transform=jP(o.left,o.top)}return PP(t.style,{pointerEvents:"none",position:"fixed",top:"0",left:"0",zIndex:"1000"}),OP(t,!1),t.classList.add("cdk-drag-preview"),t.setAttribute("dir",this._direction),t},t.prototype._animatePreviewToPlaceholder=function(){var t=this;if(!this._hasMoved)return Promise.resolve();var e=this._placeholder.getBoundingClientRect();this._preview.classList.add("cdk-drag-animating"),this._preview.style.transform=jP(e.left,e.top);var n=function(t){var e=getComputedStyle(t),n=RP(e,"transition-property"),i=n.find(function(t){return"transform"===t||"all"===t});if(!i)return 0;var r=n.indexOf(i),o=RP(e,"transition-duration"),a=RP(e,"transition-delay");return YP(o[r])+YP(a[r])}(this._preview);return 0===n?Promise.resolve():this._ngZone.runOutsideAngular(function(){return new Promise(function(e){var i=function(n){(!n||n.target===t._preview&&"transform"===n.propertyName)&&(t._preview.removeEventListener("transitionend",i),e(),clearTimeout(r))},r=setTimeout(i,1.5*n);t._preview.addEventListener("transitionend",i)})})},t.prototype._createPlaceholderElement=function(){var t,e=this._placeholderTemplate,n=e?e.template:null;return n?(this._placeholderRef=e.viewContainer.createEmbeddedView(n,e.context),t=this._placeholderRef.rootNodes[0]):t=HP(this._rootElement),t.classList.add("cdk-drag-placeholder"),t},t.prototype._getPointerPositionInElement=function(t,e){var n=this._rootElement.getBoundingClientRect(),i=t===this._rootElement?null:t,r=i?i.getBoundingClientRect():n,o=BP(e)?e.targetTouches[0]:e;return{x:r.left-n.left+(o.pageX-r.left-this._scrollPosition.left),y:r.top-n.top+(o.pageY-r.top-this._scrollPosition.top)}},t.prototype._getPointerPositionOnPage=function(t){var e=BP(t)?t.touches[0]||t.changedTouches[0]:t;return{x:e.pageX-this._scrollPosition.left,y:e.pageY-this._scrollPosition.top}},t.prototype._getConstrainedPointerPosition=function(t){var e=this._getPointerPositionOnPage(t),n=this._dropContainer?this._dropContainer.lockAxis:null;if("x"===this.lockAxis||"x"===n?e.y=this._pickupPositionOnPage.y:"y"!==this.lockAxis&&"y"!==n||(e.x=this._pickupPositionOnPage.x),this._boundaryRect){var i=this._pickupPositionInElement,r=i.x,o=i.y,a=this._boundaryRect,l=this._previewRect,s=a.top+o,u=a.bottom-(l.height-o);e.x=NP(e.x,a.left+r,a.right-(l.width-r)),e.y=NP(e.y,s,u)}return e},t.prototype._updatePointerDirectionDelta=function(t){var e=t.x,n=t.y,i=this._pointerDirectionDelta,r=this._pointerPositionAtLastDirectionChange,o=Math.abs(e-r.x),a=Math.abs(n-r.y);return o>this._config.pointerDirectionChangeThreshold&&(i.x=e>r.x?1:-1,r.x=e),a>this._config.pointerDirectionChangeThreshold&&(i.y=n>r.y?1:-1,r.y=n),i},t.prototype._toggleNativeDragInteractions=function(){if(this._rootElement&&this._handles){var t=this.disabled||this._handles.length>0;t!==this._nativeInteractionsEnabled&&(this._nativeInteractionsEnabled=t,OP(this._rootElement,t))}},t.prototype._removeRootElementListeners=function(t){t.removeEventListener("mousedown",this._pointerDown,FP),t.removeEventListener("touchstart",this._pointerDown,IP)},t}();function jP(t,e){return"translate3d("+Math.round(t)+"px, "+Math.round(e)+"px, 0)"}function HP(t){var e=t.cloneNode(!0);return e.removeAttribute("id"),e}function NP(t,e,n){return Math.max(e,Math.min(n,t))}function VP(t){t&&t.parentNode&&t.parentNode.removeChild(t)}function BP(t){return t.type.startsWith("touch")}function WP(t,e){return Math.max(0,Math.min(e,t))}var UP=0,GP=function(){function t(t,e,n){this._dragDropRegistry=e,this.id="cdk-drop-list-ref-"+UP++,this.disabled=!1,this.enterPredicate=function(){return!0},this.beforeStarted=new H,this.entered=new H,this.exited=new H,this.dropped=new H,this.sorted=new H,this._isDragging=!1,this._itemPositions=[],this._previousSwap={drag:null,delta:0},this._siblings=[],this._orientation="vertical",this._activeSiblings=new Set,this._direction="ltr",e.registerDropContainer(this),this._document=n,this.element=t instanceof Ve?t.nativeElement:t}return t.prototype.dispose=function(){this.beforeStarted.complete(),this.entered.complete(),this.exited.complete(),this.dropped.complete(),this.sorted.complete(),this._activeSiblings.clear(),this._dragDropRegistry.removeDropContainer(this)},t.prototype.isDragging=function(){return this._isDragging},t.prototype.start=function(){var t=this;this.beforeStarted.next(),this._isDragging=!0,this._activeDraggables=this._draggables.slice(),this._cacheOwnPosition(),this._cacheItemPositions(),this._siblings.forEach(function(e){return e._startReceiving(t)})},t.prototype.enter=function(t,e,n){this.entered.next({item:t,container:this}),this.start();var i=this._getItemIndexFromPointerPosition(t,e,n),r=this._activeDraggables.indexOf(t),o=this._activeDraggables[i],a=t.getPlaceholderElement();if(r>-1&&this._activeDraggables.splice(r,1),o&&!this._dragDropRegistry.isDragging(o)){var l=o.getRootElement();l.parentElement.insertBefore(a,l),this._activeDraggables.splice(i,0,t)}else this.element.appendChild(a),this._activeDraggables.push(t);a.style.transform="",this._cacheItemPositions()},t.prototype.exit=function(t){this._reset(),this.exited.next({item:t,container:this})},t.prototype.drop=function(t,e,n,i){this._reset(),this.dropped.next({item:t,currentIndex:e,previousIndex:n.getItemIndex(t),container:this,previousContainer:n,isPointerOverContainer:i})},t.prototype.withItems=function(t){var e=this;return this._draggables=t,t.forEach(function(t){return t._withDropContainer(e)}),this},t.prototype.withDirection=function(t){return this._direction=t,this},t.prototype.connectedTo=function(t){return this._siblings=t.slice(),this},t.prototype.withOrientation=function(t){return this._orientation=t,this},t.prototype.getItemIndex=function(t){return this._isDragging?XP("horizontal"===this._orientation&&"rtl"===this._direction?this._itemPositions.slice().reverse():this._itemPositions,function(e){return e.drag===t}):this._draggables.indexOf(t)},t.prototype.isReceiving=function(){return this._activeSiblings.size>0},t.prototype._sortItem=function(t,e,n,i){if(this._isPointerNearDropContainer(e,n)){var r=this._itemPositions,o=this._getItemIndexFromPointerPosition(t,e,n,i);if(!(-1===o&&r.length>0)){var a="horizontal"===this._orientation,l=XP(r,function(e){return e.drag===t}),s=r[o],u=r[l].clientRect,c=s.clientRect,d=l>o?1:-1;this._previousSwap.drag=s.drag,this._previousSwap.delta=a?i.x:i.y;var h=this._getItemOffsetPx(u,c,d),p=this._getSiblingOffsetPx(l,r,d),f=r.slice();!function(t,e,n){var i=WP(l,t.length-1),r=WP(n,t.length-1);if(i!==r){for(var o=t[i],a=rn.top-r&&en.left-i&&t=Math.floor(c.left)&&e<=Math.floor(c.right):n>=Math.floor(c.top)&&n<=Math.floor(c.bottom))})},t.prototype._isOverContainer=function(t,e){return KP(this._clientRect,t,e)},t.prototype._getSiblingContainerFromPosition=function(t,e,n){return this._siblings.find(function(i){return i._canReceive(t,e,n)})},t.prototype._canReceive=function(t,e,n){if(!this.enterPredicate(t,this)||!KP(this._clientRect,e,n))return!1;var i=this._document.elementFromPoint(e,n);return!!i&&(i===this.element||this.element.contains(i))},t.prototype._startReceiving=function(t){var e=this._activeSiblings;e.has(t)||(e.add(t),this._cacheOwnPosition())},t.prototype._stopReceiving=function(t){this._activeSiblings.delete(t)},t}();function qP(t,e,n){t.top+=e,t.bottom=t.top+t.height,t.left+=n,t.right=t.left+t.width}function XP(t,e){for(var n=0;n=t.top&&n<=t.bottom&&e>=t.left&&e<=t.right}var ZP=ac({passive:!1,capture:!0}),JP=function(){function t(t,e){var n=this;this._ngZone=t,this._dropInstances=new Set,this._dragInstances=new Set,this._activeDragInstances=new Set,this._globalListeners=new Map,this.pointerMove=new H,this.pointerUp=new H,this._preventDefaultWhileDragging=function(t){n._activeDragInstances.size&&t.preventDefault()},this._document=e}return t.prototype.registerDropContainer=function(t){if(!this._dropInstances.has(t)){if(this.getDropContainer(t.id))throw Error('Drop instance with id "'+t.id+'" has already been registered.');this._dropInstances.add(t)}},t.prototype.registerDragItem=function(t){var e=this;this._dragInstances.add(t),1===this._dragInstances.size&&this._ngZone.runOutsideAngular(function(){e._document.addEventListener("touchmove",e._preventDefaultWhileDragging,ZP)})},t.prototype.removeDropContainer=function(t){this._dropInstances.delete(t)},t.prototype.removeDragItem=function(t){this._dragInstances.delete(t),this.stopDragging(t),0===this._dragInstances.size&&this._document.removeEventListener("touchmove",this._preventDefaultWhileDragging,ZP)},t.prototype.startDragging=function(t,e){var n=this;if(this._activeDragInstances.add(t),1===this._activeDragInstances.size){var i=e.type.startsWith("touch"),r=i?"touchend":"mouseup";this._globalListeners.set(i?"touchmove":"mousemove",{handler:function(t){return n.pointerMove.next(t)},options:ZP}).set(r,{handler:function(t){return n.pointerUp.next(t)},options:!0}).set("selectstart",{handler:this._preventDefaultWhileDragging,options:ZP}),i||this._globalListeners.set("wheel",{handler:this._preventDefaultWhileDragging,options:ZP}),this._ngZone.runOutsideAngular(function(){n._globalListeners.forEach(function(t,e){n._document.addEventListener(e,t.handler,t.options)})})}},t.prototype.stopDragging=function(t){this._activeDragInstances.delete(t),0===this._activeDragInstances.size&&this._clearGlobalListeners()},t.prototype.isDragging=function(t){return this._activeDragInstances.has(t)},t.prototype.getDropContainer=function(t){return Array.from(this._dropInstances).find(function(e){return e.id===t})},t.prototype.ngOnDestroy=function(){var t=this;this._dragInstances.forEach(function(e){return t.removeDragItem(e)}),this._dropInstances.forEach(function(e){return t.removeDropContainer(e)}),this._clearGlobalListeners(),this.pointerMove.complete(),this.pointerUp.complete()},t.prototype._clearGlobalListeners=function(){var t=this;this._globalListeners.forEach(function(e,n){t._document.removeEventListener(n,e.handler,e.options)}),this._globalListeners.clear()},t.ngInjectableDef=St({factory:function(){return new t(ie(Mi),ie(As))},token:t,providedIn:"root"}),t}(),QP={dragStartThreshold:5,pointerDirectionChangeThreshold:5},$P=function(){function t(t,e,n,i){this._document=t,this._ngZone=e,this._viewportRuler=n,this._dragDropRegistry=i}return t.prototype.createDrag=function(t,e){return void 0===e&&(e=QP),new zP(t,e,this._document,this._ngZone,this._viewportRuler,this._dragDropRegistry)},t.prototype.createDropList=function(t){return new GP(t,this._dragDropRegistry,this._document)},t.ngInjectableDef=St({factory:function(){return new t(ie(As),ie(Mi),ie(SM),ie(JP))},token:t,providedIn:"root"}),t}(),tO=new Lt("CDK_DROP_LIST"),eO=new Lt("CDK_DRAG_PARENT"),nO=new Lt("CDK_DRAG_CONFIG",{providedIn:"root",factory:function(){return{dragStartThreshold:5,pointerDirectionChangeThreshold:5}}}),iO=function(){function t(t,e,n,i,r,o,a,l,s,u,c){var d=this;this.element=t,this.dropContainer=e,this._document=n,this._ngZone=i,this._viewContainerRef=r,this._dir=s,this._changeDetectorRef=c,this._destroyed=new H,this._disabled=!1,this.started=new kn,this.released=new kn,this.ended=new kn,this.entered=new kn,this.exited=new kn,this.dropped=new kn,this.moved=new Y(function(t){var e=d._dragRef.moved.pipe(nt(function(t){return{source:d,pointerPosition:t.pointerPosition,event:t.event,delta:t.delta}})).subscribe(t);return function(){e.unsubscribe()}}),this._dragRef=u?u.createDrag(t,l):new zP(t,l,n,i,o,a),this._dragRef.data=this,this._syncInputs(this._dragRef),this._handleEvents(this._dragRef)}return Object.defineProperty(t.prototype,"disabled",{get:function(){return this._disabled||this.dropContainer&&this.dropContainer.disabled},set:function(t){this._disabled=Xu(t),this._dragRef.disabled=this._disabled},enumerable:!0,configurable:!0}),t.prototype.getPlaceholderElement=function(){return this._dragRef.getPlaceholderElement()},t.prototype.getRootElement=function(){return this._dragRef.getRootElement()},t.prototype.reset=function(){this._dragRef.reset()},t.prototype.ngAfterViewInit=function(){var t=this;this._ngZone.onStable.asObservable().pipe(Ac(1),fg(this._destroyed)).subscribe(function(){t._updateRootElement(),t._handles.changes.pipe(hc(t._handles),mc(function(e){var n=e.filter(function(e){return e._parentDrag===t}).map(function(t){return t.element});t._dragRef.withHandles(n)}),ip(function(t){return ht.apply(void 0,t.map(function(t){return t._stateChanges}))}),fg(t._destroyed)).subscribe(function(e){var n=t._dragRef,i=e.element.nativeElement;e.disabled?n.disableHandle(i):n.enableHandle(i)})})},t.prototype.ngOnChanges=function(t){var e=t.rootElementSelector;e&&!e.firstChange&&this._updateRootElement()},t.prototype.ngOnDestroy=function(){this._destroyed.next(),this._destroyed.complete(),this._dragRef.dispose()},t.prototype._updateRootElement=function(){var t=this.element.nativeElement,e=this.rootElementSelector?rO(t,this.rootElementSelector):t;if(e&&e.nodeType!==this._document.ELEMENT_NODE)throw Error('cdkDrag must be attached to an element node. Currently attached to "'+e.nodeName+'".');this._dragRef.withRootElement(e||t)},t.prototype._getBoundaryElement=function(){var t=this.boundaryElementSelector;return t?rO(this.element.nativeElement,t):null},t.prototype._syncInputs=function(t){var e=this;t.beforeStarted.subscribe(function(){if(!t.isDragging()){var n=e._dir,i=e._placeholderTemplate?{template:e._placeholderTemplate.templateRef,context:e._placeholderTemplate.data,viewContainer:e._viewContainerRef}:null,r=e._previewTemplate?{template:e._previewTemplate.templateRef,context:e._previewTemplate.data,viewContainer:e._viewContainerRef}:null;t.disabled=e.disabled,t.lockAxis=e.lockAxis,t.withBoundaryElement(e._getBoundaryElement()).withPlaceholderTemplate(i).withPreviewTemplate(r),n&&t.withDirection(n.value)}})},t.prototype._handleEvents=function(t){var e=this;t.started.subscribe(function(){e.started.emit({source:e}),e._changeDetectorRef&&e._changeDetectorRef.markForCheck()}),t.released.subscribe(function(){e.released.emit({source:e})}),t.ended.subscribe(function(){e.ended.emit({source:e}),e._changeDetectorRef&&e._changeDetectorRef.markForCheck()}),t.entered.subscribe(function(t){e.entered.emit({container:t.container.data,item:e})}),t.exited.subscribe(function(t){e.exited.emit({container:t.container.data,item:e})}),t.dropped.subscribe(function(t){e.dropped.emit({previousIndex:t.previousIndex,currentIndex:t.currentIndex,previousContainer:t.previousContainer.data,container:t.container.data,isPointerOverContainer:t.isPointerOverContainer,item:e})})},t}();function rO(t,e){for(var n=t.parentElement;n;){if(n.matches?n.matches(e):n.msMatchesSelector(e))return n;n=n.parentElement}return null}var oO=function(){return function(){}}(),aO=Vr({encapsulation:0,styles:[[".mat-card-image[_ngcontent-%COMP%]{margin:.1em!important;display:block;-o-object-fit:cover;object-fit:cover;width:90%}.formbutton[_ngcontent-%COMP%]{margin-right:1em;margin-bottom:2px}.mat-card-header[_ngcontent-%COMP%]{min-height:1em;width:100%;padding:0;display:flex}.module[_ngcontent-%COMP%]{cursor:-webkit-grab;cursor:-moz-grab}.module[_ngcontent-%COMP%]:active{cursor:-webkit-grabbing;cursor:-moz-grabbing}.cardcontexttext[_ngcontent-%COMP%]{display:flex;margin-top:3px;text-align:center!important;font-size:10pt;align-items:center;justify-content:center}"]],data:{}});function lO(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","mat-dialog-title"],["disableTypography",""],["fxLayout","row"],["fxLayoutAlign","space-between center"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(1,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(2,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(3,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),yo(4,0,null,null,1,"h1",[],null,null,null,null,null)),(t()(),Oa(5,null,["",""])),(t()(),yo(6,0,null,null,19,"mat-dialog-content",[["class","mat-typography mat-dialog-content"],["style","overflow: hidden;"]],null,null,null,null,null)),oa(7,16384,null,0,PS,[],null,null),(t()(),yo(8,0,null,null,17,"div",[["fxLayout","column"],["fxLayoutAlign","center"]],null,null,null,null,null)),oa(9,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(10,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(11,0,null,null,14,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(12,49152,null,0,x_,[],null,null),(t()(),yo(13,0,null,0,12,"mat-card-content",[["class","cardcontexttext mat-card-content"],["fxLayoutAlign","center"]],null,null,null,null,null)),oa(14,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(15,16384,null,0,__,[],null,null),(t()(),yo(16,0,null,null,9,"div",[["flex-direction:column",""],["fxFlex",""],["fxLayoutAlign","center"],["style","justify-content: center; overflow: hidden; align-items:center; width: 100%;\n height: 100%;"]],null,null,null,null,null)),oa(17,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(18,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(19,16777216,null,null,6,"img",[["alt","Source picture"],["cdkDrag",""],["class","module mat-card-image cdk-drag"],["mat-card-image",""]],[[8,"src",4],[2,"cdk-drag-disabled",null],[2,"cdk-drag-dragging",null]],null,null,null,null)),la(6144,null,eO,null,[iO]),oa(21,16384,null,0,b_,[],null,null),oa(22,4866048,null,3,iO,[Ve,[3,tO],As,Mi,Xi,SM,JP,nO,[2,Zy],$P,Zi],null,null),wa(603979776,1,{_handles:1}),wa(335544320,2,{_previewTemplate:0}),wa(335544320,3,{_placeholderTemplate:0}),(t()(),yo(26,0,null,null,7,"mat-dialog-actions",[["align","end"],["class","mat-dialog-actions"],["style"," margin-top: 1em;"]],null,null,null,null,null)),oa(27,16384,null,0,OS,[],null,null),(t()(),yo(28,0,null,null,2,"button",[["class","formbutton"],["color","primary"],["focus","true"],["mat-primary",""],["mat-raised-button",""],["type","submit"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onLoadImage()&&i),i},Nk,Hk)),oa(29,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(31,0,null,null,2,"button",[["class","formbutton"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onOk()&&i),i},Nk,Hk)),oa(32,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Close"]))],function(t,e){t(e,1,0,"row"),t(e,2,0,"space-between center"),t(e,3,0),t(e,9,0,"column"),t(e,10,0,"center"),t(e,14,0,"center"),t(e,17,0,"center"),t(e,18,0,""),t(e,29,0,"primary")},function(t,e){var n=e.component;t(e,0,0,Go(e,3).id),t(e,5,0,n.title),t(e,19,0,n.imageURL,Go(e,22).disabled,Go(e,22)._dragRef.isDragging()),t(e,28,0,Go(e,29).disabled||null,"NoopAnimations"===Go(e,29)._animationMode),t(e,31,0,Go(e,32).disabled||null,"NoopAnimations"===Go(e,32)._animationMode)})}function sO(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-image-dialog",[],null,null,null,lO,aO)),oa(1,114688,null,0,zL,[kS,MS],null,null)],function(t,e){t(e,1,0)},null)}var uO=Ro("app-image-dialog",zL,sO,{},{},[]),cO=Vr({encapsulation:0,styles:[["h2[_ngcontent-%COMP%]{height:30px;padding-top:unset;margin-left:40px;margin-top:10px;text-align:center}.mat-icon[_ngcontent-%COMP%]{font-size:50px}.red[_ngcontent-%COMP%]{color:red}.green[_ngcontent-%COMP%]{color:green}"]],data:{}});function dO(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"div",[["class","row red"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,2,"mat-icon",[["aria-hidden","false"],["aria-label","error"],["aria-setsize","36"],["class","red mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(2,9158656,null,0,Ak,[Ve,kk,[8,"false"],[2,Lk]],null,null),(t()(),Oa(-1,0,["error"])),(t()(),yo(4,0,null,null,2,"h2",[["class","aligned-with-icon mat-dialog-title"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(5,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),Oa(-1,null,["Error"]))],function(t,e){t(e,2,0),t(e,5,0)},function(t,e){t(e,1,0,Go(e,2).inline,"primary"!==Go(e,2).color&&"accent"!==Go(e,2).color&&"warn"!==Go(e,2).color),t(e,4,0,Go(e,5).id)})}function hO(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"div",[["class","row green"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,2,"mat-icon",[["aria-hidden","false"],["aria-label","error"],["aria-setsize","36"],["class","green mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(2,9158656,null,0,Ak,[Ve,kk,[8,"false"],[2,Lk]],null,null),(t()(),Oa(-1,0,["check"])),(t()(),yo(4,0,null,null,2,"h2",[["class","aligned-with-icon mat-dialog-title"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(5,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),Oa(-1,null,["OK"]))],function(t,e){t(e,2,0),t(e,5,0)},function(t,e){t(e,1,0,Go(e,2).inline,"primary"!==Go(e,2).color&&"accent"!==Go(e,2).color&&"warn"!==Go(e,2).color),t(e,4,0,Go(e,5).id)})}function pO(t){return Ia(0,[(t()(),go(16777216,null,null,1,null,dO)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,hO)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(4,0,null,null,3,"mat-dialog-content",[["class","mat-dialog-content"]],null,null,null,null,null)),oa(5,16384,null,0,PS,[],null,null),(t()(),yo(6,0,null,null,1,"p",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),yo(8,0,null,null,5,"mat-dialog-actions",[["align","end"],["class","mat-dialog-actions"]],null,null,null,null,null)),oa(9,16384,null,0,OS,[],null,null),(t()(),yo(10,0,null,null,3,"button",[["cdkFocusInitial",""],["mat-button",""],["type","button"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null],[1,"aria-label",0]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,12).dialogRef.close(Go(t,12).dialogResult)&&i),i},Nk,Hk)),oa(11,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),oa(12,606208,null,0,ES,[[2,kS],Ve,DS],{dialogResult:[0,"dialogResult"]},null),(t()(),Oa(-1,0,["Close"]))],function(t,e){var n=e.component;t(e,1,0,n.data.error),t(e,3,0,!n.data.error),t(e,12,0,!0)},function(t,e){t(e,7,0,e.component.data.msg),t(e,10,0,Go(e,11).disabled||null,"NoopAnimations"===Go(e,11)._animationMode,Go(e,12).ariaLabel||null)})}function fO(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-error-dialog",[],null,null,null,pO,cO)),oa(1,114688,null,0,JT,[kS,MS],null,null)],function(t,e){t(e,1,0)},null)}var mO=Ro("app-error-dialog",JT,fO,{},{},[]),gO=od(function(){return function(t){this._elementRef=t}}()),yO=function(){return function(){}}(),_O=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r._platform=n,r._document=i,r}return r(e,t),e.prototype.ngAfterViewInit=function(){var t=this;tn()&&this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(function(){return t._checkToolbarMixedModes()}))},e.prototype._checkToolbarMixedModes=function(){var t=this;this._toolbarRows.length&&Array.from(this._elementRef.nativeElement.childNodes).filter(function(t){return!(t.classList&&t.classList.contains("mat-toolbar-row"))}).filter(function(e){return e.nodeType!==(t._document?t._document.COMMENT_NODE:8)}).some(function(t){return!(!t.textContent||!t.textContent.trim())})&&function(){throw Error("MatToolbar: Attempting to combine different toolbar modes. Either specify multiple `` elements explicitly or just place content inside of a `` for a single row.")}()},e}(gO),vO=function(){return function(){}}(),bO=Vr({encapsulation:2,styles:["@media (-ms-high-contrast:active){.mat-toolbar{outline:solid 1px}}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width:599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}"],data:{}});function xO(t){return Ia(2,[La(null,0),La(null,1)],null,null)}var wO=Vr({encapsulation:0,styles:[["a[_ngcontent-%COMP%]{text-decoration:none;color:#fff;padding:30px}body[_ngcontent-%COMP%]{margin:0;background-color:#fafafa}a[_ngcontent-%COMP%]:active, a[_ngcontent-%COMP%]:hover{color:#d3d3d3}.login-button[_ngcontent-%COMP%]{margin-left:1em}.active_route[_ngcontent-%COMP%]{text-decoration:none;display:inline-block}.active-span[_ngcontent-%COMP%]{padding:5px;border-bottom:2px solid #fff}mat-toolbar[_ngcontent-%COMP%]{font-size:12pt;position:fixed;z-index:100;box-shadow:0 5px 20px #696969}mat-toolbar[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%]{padding:30px;box-shadow:0 5px 20px #696969;position:fixed}.mat-toolbar-multiple-rows[_ngcontent-%COMP%]{min-height:0}.mat-toolbar-row[_ngcontent-%COMP%], .mat-toolbar-single-row[_ngcontent-%COMP%]{padding:35px 10px 35px 20px}@media (max-width:959px){mat-toolbar[_ngcontent-%COMP%]{border-radius:0;z-index:50}}@media screen and (max-width:599px){mat-toolbar[_ngcontent-%COMP%]{z-index:0}}.fill-remaining-space[_ngcontent-%COMP%]{flex:1 1 auto}.content-scrollable[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center}"]],data:{}});function kO(t){return Ia(0,[(t()(),yo(0,0,null,null,41,"mat-toolbar",[["class","mat-toolbar"],["color","primary"]],[[2,"mat-toolbar-multiple-rows",null],[2,"mat-toolbar-single-row",null]],null,null,xO,bO)),oa(1,4243456,null,1,_O,[Ve,nc,As],{color:[0,"color"]},null),wa(603979776,1,{_toolbarRows:1}),(t()(),yo(3,0,null,1,38,"mat-toolbar-row",[["class","mat-toolbar-row"]],null,null,null,null,null)),oa(4,16384,[[1,4]],0,yO,[],null,null),(t()(),yo(5,0,null,null,0,"img",[["height","40px"],["style","margin-right: 40px"]],[[8,"src",4]],null,null,null,null)),(t()(),yo(6,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/home"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,7).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(7,671744,[[3,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(8,1720320,[["homea",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,2,{links:1}),wa(603979776,3,{linksWithHrefs:1}),(t()(),yo(11,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,[" Home "])),(t()(),yo(13,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/statistics"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,14).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(14,671744,[[5,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(15,1720320,[["stata",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,4,{links:1}),wa(603979776,5,{linksWithHrefs:1}),(t()(),yo(18,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,["Statistics"])),(t()(),yo(20,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/results"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,21).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(21,671744,[[7,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(22,1720320,[["resa",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,6,{links:1}),wa(603979776,7,{linksWithHrefs:1}),(t()(),yo(25,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,["Results"])),(t()(),yo(27,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/realtime"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,28).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(28,671744,[[9,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(29,1720320,[["rta",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,8,{links:1}),wa(603979776,9,{linksWithHrefs:1}),(t()(),yo(32,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,["RealTime"])),(t()(),yo(34,0,null,null,0,"span",[["class","fill-remaining-space"]],null,null,null,null,null)),(t()(),yo(35,0,null,null,6,"a",[["class","login-button"],["color","primary"],["routerLink","/login"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==Go(t,36).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),"click"===e&&(i=!1!==r.logout()&&i),i},null,null)),oa(36,671744,[[11,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(37,1720320,null,2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,10,{links:1}),wa(603979776,11,{linksWithHrefs:1}),(t()(),yo(40,0,null,null,1,"span",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Logout"]))],function(t,e){t(e,1,0,"primary"),t(e,7,0,"/home"),t(e,8,0,"active_route"),t(e,14,0,"/statistics"),t(e,15,0,"active_route"),t(e,21,0,"/results"),t(e,22,0,"active_route"),t(e,28,0,"/realtime"),t(e,29,0,"active_route"),t(e,36,0,"/login"),t(e,37,0,"active_route")},function(t,e){var n=e.component;t(e,0,0,Go(e,1)._toolbarRows.length>0,0===Go(e,1)._toolbarRows.length),t(e,5,0,n.imageUrl),t(e,6,0,Go(e,7).target,Go(e,7).href),t(e,11,0,Go(e,8).isActive),t(e,13,0,Go(e,14).target,Go(e,14).href),t(e,18,0,Go(e,15).isActive),t(e,20,0,Go(e,21).target,Go(e,21).href),t(e,25,0,Go(e,22).isActive),t(e,27,0,Go(e,28).target,Go(e,28).href),t(e,32,0,Go(e,29).isActive),t(e,35,0,Go(e,36).target,Go(e,36).href)})}function MO(t){return Ia(0,[(t()(),go(16777216,null,null,1,null,kO)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(2,0,null,null,4,"div",[["class","content-scrollable"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,3,"div",[["fxFlex",""],["style","overflow: hidden;"]],null,null,null,null,null)),oa(4,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(5,16777216,null,null,1,"router-outlet",[],null,null,null,null,null)),oa(6,212992,null,0,Fm,[Im,Xi,Fe,[8,null],Zi],null,null)],function(t,e){t(e,1,0,e.component.currentUser),t(e,4,0,""),t(e,6,0)},null)}function SO(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-root",[],null,null,null,MO,wO)),oa(1,49152,null,0,Yh,[Am,Oh],null,null)],null,null)}var CO=Ro("app-root",Yh,SO,{},{},[]),LO=function(){function t(t){this.authenticationService=t}return t.prototype.intercept=function(t,e){var n=this.authenticationService.currentUserValue;return n&&n.AccessToken&&(t=t.clone({setHeaders:{Authorization:"Bearer "+n.AccessToken}})),e.handle(t)},t}(),DO=function(){return function(){}}(),TO=function(){function t(){this.changes=new H,this.optionalLabel="Optional"}return t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}();function EO(t){return t||new TO}var AO=function(){return function(){}}(),PO=new Lt("mat-menu-scroll-strategy");function OO(t){return function(){return t.scrollStrategies.reposition()}}var YO=function(){return function(){}}(),RO=function(t){function e(e){return t.call(this,e)||this}return r(e,t),e.prototype.createDate=function(t,e,n){if(e<0||e>11)throw Error('Invalid month index "'+e+'". Month index has to be between 0 and 11.');if(n<1)throw Error('Invalid date "'+n+'". Date has to be greater than 0.');var i=Vd.utc({year:t,month:e,date:n}).locale(this.locale);if(!i.isValid())throw Error('Invalid date "'+n+'" for month with index "'+e+'".');return i},e}(Ud),IO=function(){return function(t){this.template=t}}(),FO=function(){return function(){}}();function zO(){for(var t=[],e=0;e0){var a=o.indexOf(n);-1!==a&&o.splice(a,1)}},e.prototype.notifyComplete=function(){},e.prototype._next=function(t){if(0===this.toRespond.length){var e=[t].concat(this.values);this.project?this._tryProject(e):this.destination.next(e)}},e.prototype._tryProject=function(t){var e;try{e=this.project.apply(this,t)}catch(n){return void this.destination.error(n)}this.destination.next(e)},e}(et),NO="@ngrx/store/init",VO=function(t){function e(){return t.call(this,{type:NO})||this}return r(e,t),e.prototype.next=function(e){if(void 0===e)throw new TypeError("Actions must be objects");if(void 0===e.type)throw new TypeError("Actions must have a type property");t.prototype.next.call(this,e)},e.prototype.complete=function(){},e.prototype.ngOnDestroy=function(){t.prototype.complete.call(this)},e}(Th),BO=new Lt("@ngrx/store Internal Initial State"),WO=new Lt("@ngrx/store Initial State"),UO=new Lt("@ngrx/store Reducer Factory"),GO=new Lt("@ngrx/store Reducer Factory Provider"),qO=new Lt("@ngrx/store Initial Reducers"),XO=new Lt("@ngrx/store Internal Initial Reducers"),KO=new Lt("@ngrx/store Meta Reducers"),ZO=new Lt("@ngrx/store Internal Store Reducers"),JO=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},QO=function(){for(var t=[],e=0;e0&&(t=tY.apply(null,QO(e,[t]))),function(e,n){var i=t(e);return function(t,e){return i(t=void 0===t?n:t,e)}}}var nY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),iY=function(){return(iY=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0?tY.apply(void 0,QO(t)):function(t){return t};return function(t,n){return t=e(t),function(e,i){return t(e=void 0===e?n:e,i)}}}(r)(n,o):eY(i,r)(n,o);return t[a]=l,t},{});this.addReducers(e)},e.prototype.removeFeature=function(t){this.removeFeatures([t])},e.prototype.removeFeatures=function(t){this.removeReducers(t.map(function(t){return t.key}))},e.prototype.addReducer=function(t,e){var n;this.addReducers(((n={})[t]=e,n))},e.prototype.addReducers=function(t){this.reducers=iY({},this.reducers,t),this.updateReducers(Object.keys(t))},e.prototype.removeReducer=function(t){this.removeReducers([t])},e.prototype.removeReducers=function(t){var e=this;t.forEach(function(t){var n,i;e.reducers=(n=e.reducers,i=t,Object.keys(n).filter(function(t){return t!==i}).reduce(function(t,e){var i;return Object.assign(t,((i={})[e]=n[e],i))},{}))}),this.updateReducers(t)},e.prototype.updateReducers=function(t){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:"@ngrx/store/update-reducers",features:t})},e.prototype.ngOnDestroy=function(){this.complete()},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var l=t.length-1;l>=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn(),l(1,Zt(WO)),l(2,Zt(qO)),l(3,Zt(UO)),rY("design:paramtypes",[aY,Object,Object,Function])],e)}(Th),sY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),uY=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return sY(e,t),e.prototype.ngOnDestroy=function(){this.complete()},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var l=t.length-1;l>=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn()],e)}(H),cY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),dY=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},hY=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},pY=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return cY(e,t),e}(Y),fY=function(t){function e(e,n,i,r){var o,a,l=t.call(this,r)||this,s=e.pipe((o=fM,void 0===a&&(a=0),function(t){return t.lift(new gM(o,a))})).pipe(zO(n)).pipe(ap(mY,{state:r}));return l.stateSubscription=s.subscribe(function(t){var e=t.action;l.next(t.state),i.next(e)}),l}return cY(e,t),e.prototype.ngOnDestroy=function(){this.stateSubscription.unsubscribe(),this.complete()},e.INIT=NO,function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var l=t.length-1;l>=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn(),(3,n=Zt(WO),function(t,e){n(t,e,3)}),dY("design:paramtypes",[VO,oY,uY,Object])],e);var n}(Th);function mY(t,e){void 0===t&&(t={state:void 0});var n=hY(e,2),i=n[0];return{state:(0,n[1])(t.state,i),action:i}}var gY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),yY=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},_Y=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},vY=function(){for(var t=[],e=0;e=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn(),yY("design:paramtypes",[pY,VO,lY])],e)}(Y);function xY(t,e){for(var n=[],i=2;i=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Vn({}),wY("design:paramtypes",[VO,oY,uY,bY])],function(t,e,n,i){})}();function MY(t,e,n){return e instanceof Lt?t.get(e):e}function SY(t){return"function"==typeof t?t():t}var CY="@ngrx/router-store/navigation",LY="@ngrx/router-store/cancel",DY="@ngrx/router-store/error";function TY(t,e){var n=e;switch(n.type){case CY:case DY:case LY:return{state:n.payload.routerState,navigationId:n.payload.event.id};default:return t}}var EY=function(){return function(){}}(),AY=function(){function t(){}return t.prototype.serialize=function(t){return{root:this.serializeRoute(t.root),url:t.url}},t.prototype.serializeRoute=function(t){var e=this,n=t.children.map(function(t){return e.serializeRoute(t)});return{params:t.params,paramMap:t.paramMap,data:t.data,url:t.url,outlet:t.outlet,routeConfig:t.routeConfig?{component:t.routeConfig.component,path:t.routeConfig.path,pathMatch:t.routeConfig.pathMatch,redirectTo:t.routeConfig.redirectTo,outlet:t.routeConfig.outlet}:null,queryParams:t.queryParams,queryParamMap:t.queryParamMap,fragment:t.fragment,component:t.routeConfig?t.routeConfig.component:void 0,root:void 0,parent:void 0,firstChild:n[0],pathFromRoot:void 0,children:n}},t}(),PY=function(){return(PY=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},YY=function(t){return t[t.PreActivation=1]="PreActivation",t[t.PostActivation=2]="PostActivation",t}({}),RY=new Lt("@ngrx/router-store Internal Configuration"),IY=new Lt("@ngrx/router-store Configuration"),FY="router";function zY(t){return PY({stateKey:FY,serializer:AY,navigationActionTiming:YY.PreActivation},t)}var jY=function(t){return t[t.NONE=1]="NONE",t[t.ROUTER=2]="ROUTER",t[t.STORE=3]="STORE",t}({}),HY=function(){function t(t,e,n,i,r){this.store=t,this.router=e,this.serializer=n,this.errorHandler=i,this.config=r,this.lastEvent=null,this.trigger=jY.NONE,this.stateKey=this.config.stateKey,this.setUpStoreStateListener(),this.setUpRouterEventsListener()}var e;return e=t,t.forRoot=function(t){return void 0===t&&(t={}),{ngModule:e,providers:[{provide:RY,useValue:t},{provide:EY,useClass:t.serializer?t.serializer:AY}]}},t.prototype.setUpStoreStateListener=function(){var t=this;this.store.pipe(xY(this.stateKey),zO(this.store)).subscribe(function(e){var n=OY(e,2);t.navigateIfNeeded(n[0],n[1])})},t.prototype.navigateIfNeeded=function(t,e){var n=this;if(t&&t.state&&this.trigger!==jY.ROUTER&&!(this.lastEvent instanceof pp)){var i=t.state.url;this.router.url!==i&&(this.storeState=e,this.trigger=jY.STORE,this.router.navigateByUrl(i).catch(function(t){n.errorHandler.handleError(t)}))}},t.prototype.setUpRouterEventsListener=function(){var t,e=this,n=this.config.navigationActionTiming===YY.PostActivation;this.router.events.pipe(zO(this.store)).subscribe(function(i){var r=OY(i,2),o=r[0],a=r[1];e.lastEvent=o,o instanceof pp?(e.routerState=e.serializer.serialize(e.router.routerState.snapshot),e.trigger!==jY.STORE&&(e.storeState=a,e.dispatchRouterRequest(o))):o instanceof yp?(t=o,n||e.trigger===jY.STORE||e.dispatchRouterNavigation(o)):o instanceof mp?(e.dispatchRouterCancel(o),e.reset()):o instanceof gp?(e.dispatchRouterError(o),e.reset()):o instanceof fp&&(e.trigger!==jY.STORE&&(n&&e.dispatchRouterNavigation(t),e.dispatchRouterNavigated(o)),e.reset())})},t.prototype.dispatchRouterRequest=function(t){this.dispatchRouterAction("@ngrx/router-store/request",{event:t})},t.prototype.dispatchRouterNavigation=function(t){var e=this.serializer.serialize(t.state);this.dispatchRouterAction(CY,{routerState:e,event:new yp(t.id,t.url,t.urlAfterRedirects,e)})},t.prototype.dispatchRouterCancel=function(t){this.dispatchRouterAction(LY,{storeState:this.storeState,event:t})},t.prototype.dispatchRouterError=function(t){this.dispatchRouterAction(DY,{storeState:this.storeState,event:new gp(t.id,t.url,""+t)})},t.prototype.dispatchRouterNavigated=function(t){var e=this.serializer.serialize(this.router.routerState.snapshot);this.dispatchRouterAction("@ngrx/router-store/navigated",{event:t,routerState:e})},t.prototype.dispatchRouterAction=function(t,e){this.trigger=jY.ROUTER;try{this.store.dispatch({type:t,payload:PY({routerState:this.routerState},e)})}finally{this.trigger=jY.NONE}},t.prototype.reset=function(){this.trigger=jY.NONE,this.storeState=null,this.routerState=null},t}(),NY=function(){function t(t,e){this.router=t,this.authenticationService=e}return t.prototype.canActivate=function(t,e){return!!this.authenticationService.currentUserValue||(this.router.navigate(["/login"],{queryParams:{returnUrl:e.url}}),!1)},t.ngInjectableDef=St({factory:function(){return new t(ie(Am),ie(Oh))},token:t,providedIn:"root"}),t}(),VY=function(){function t(){}return t.prototype.serialize=function(t){for(var e=t.root;e.firstChild;)e=e.firstChild;return{url:t.url,params:e.params,queryParams:t.root.queryParams}},t}(),BY=function(){return function(){}}(),WY=function(){return function(){}}(),UY=function(){function t(t,e){Rs(e)&&!t&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}return t.withConfig=function(e,n){return void 0===n&&(n=[]),{ngModule:t,providers:e.serverLoaded?[{provide:xg,useValue:o({},bg,e)},{provide:kg,useValue:n,multi:!0},{provide:wg,useValue:!0}]:[{provide:xg,useValue:o({},bg,e)},{provide:kg,useValue:n,multi:!0}]}},t}(),GY=function(){return function(){}}(),qY=function(){return function(){}}(),XY=new Lt("mat-chips-default-options"),KY=function(){return function(){}}(),ZY=function(){return function(){}}(),JY=function(){return function(){}}(),QY=function(){return function(){}}(),$Y=function(){return function(){}}(),tR=function(){return function(){}}(),eR=function(){return function(){}}(),nR=function(){return function(){}}(),iR=function(){return function(){}}(),rR=function(){return function(){}}(),oR=Nl(Kd,[Yh],function(t){return function(t){for(var e={},n=[],i=!1,r=0;r=2&&t<=4?e[1]:e[2]},translate:function(t,n,i){var r=e.words[i];return 1===i.length?n?r[0]:r[1]:t+" "+e.correctGrammaticalCase(t,r)}};t.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010de u] LT",lastWeek:function(){return["[pro\u0161le] [nedelje] [u] LT","[pro\u0161log] [ponedeljka] [u] LT","[pro\u0161log] [utorka] [u] LT","[pro\u0161le] [srede] [u] LT","[pro\u0161log] [\u010detvrtka] [u] LT","[pro\u0161log] [petka] [u] LT","[pro\u0161le] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mesec",MM:e.translate,y:"godinu",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("wd/R"))}},[[0,0]]]); \ No newline at end of file diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.826fac31276dc923ae22.js b/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.826fac31276dc923ae22.js deleted file mode 100644 index b10a3686b..000000000 --- a/Software/Visual_Studio/TCC/Tango.TCC.Service/Bundles/main.826fac31276dc923ae22.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{"+s0g":function(t,e,n){!function(t){"use strict";var e="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;t.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"\xe9\xe9n minuut",mm:"%d minuten",h:"\xe9\xe9n uur",hh:"%d uur",d:"\xe9\xe9n dag",dd:"%d dagen",M:"\xe9\xe9n maand",MM:"%d maanden",y:"\xe9\xe9n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},"//9w":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("se",{months:"o\u0111\u0111ajagem\xe1nnu_guovvam\xe1nnu_njuk\u010dam\xe1nnu_cuo\u014bom\xe1nnu_miessem\xe1nnu_geassem\xe1nnu_suoidnem\xe1nnu_borgem\xe1nnu_\u010dak\u010dam\xe1nnu_golggotm\xe1nnu_sk\xe1bmam\xe1nnu_juovlam\xe1nnu".split("_"),monthsShort:"o\u0111\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\u010dak\u010d_golg_sk\xe1b_juov".split("_"),weekdays:"sotnabeaivi_vuoss\xe1rga_ma\u014b\u014beb\xe1rga_gaskavahkku_duorastat_bearjadat_l\xe1vvardat".split("_"),weekdaysShort:"sotn_vuos_ma\u014b_gask_duor_bear_l\xe1v".split("_"),weekdaysMin:"s_v_m_g_d_b_L".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT",nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s gea\u017ees",past:"ma\u014bit %s",s:"moadde sekunddat",ss:"%d sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta m\xe1nnu",MM:"%d m\xe1nut",y:"okta jahki",yy:"%d jagit"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},"/X5v":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("x-pseudo",{months:"J~\xe1\xf1\xfa\xe1~r\xfd_F~\xe9br\xfa~\xe1r\xfd_~M\xe1rc~h_\xc1p~r\xedl_~M\xe1\xfd_~J\xfa\xf1\xe9~_J\xfal~\xfd_\xc1\xfa~g\xfast~_S\xe9p~t\xe9mb~\xe9r_\xd3~ct\xf3b~\xe9r_\xd1~\xf3v\xe9m~b\xe9r_~D\xe9c\xe9~mb\xe9r".split("_"),monthsShort:"J~\xe1\xf1_~F\xe9b_~M\xe1r_~\xc1pr_~M\xe1\xfd_~J\xfa\xf1_~J\xfal_~\xc1\xfag_~S\xe9p_~\xd3ct_~\xd1\xf3v_~D\xe9c".split("_"),monthsParseExact:!0,weekdays:"S~\xfa\xf1d\xe1~\xfd_M\xf3~\xf1d\xe1\xfd~_T\xfa\xe9~sd\xe1\xfd~_W\xe9d~\xf1\xe9sd~\xe1\xfd_T~h\xfars~d\xe1\xfd_~Fr\xedd~\xe1\xfd_S~\xe1t\xfar~d\xe1\xfd".split("_"),weekdaysShort:"S~\xfa\xf1_~M\xf3\xf1_~T\xfa\xe9_~W\xe9d_~Th\xfa_~Fr\xed_~S\xe1t".split("_"),weekdaysMin:"S~\xfa_M\xf3~_T\xfa_~W\xe9_T~h_Fr~_S\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[T~\xf3d\xe1~\xfd \xe1t] LT",nextDay:"[T~\xf3m\xf3~rr\xf3~w \xe1t] LT",nextWeek:"dddd [\xe1t] LT",lastDay:"[\xdd~\xe9st~\xe9rd\xe1~\xfd \xe1t] LT",lastWeek:"[L~\xe1st] dddd [\xe1t] LT",sameElse:"L"},relativeTime:{future:"\xed~\xf1 %s",past:"%s \xe1~g\xf3",s:"\xe1 ~f\xe9w ~s\xe9c\xf3~\xf1ds",ss:"%d s~\xe9c\xf3\xf1~ds",m:"\xe1 ~m\xed\xf1~\xfat\xe9",mm:"%d m~\xed\xf1\xfa~t\xe9s",h:"\xe1~\xf1 h\xf3~\xfar",hh:"%d h~\xf3\xfars",d:"\xe1 ~d\xe1\xfd",dd:"%d d~\xe1\xfds",M:"\xe1 ~m\xf3\xf1~th",MM:"%d m~\xf3\xf1t~hs",y:"\xe1 ~\xfd\xe9\xe1r",yy:"%d \xfd~\xe9\xe1rs"},dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},0:function(t,e,n){t.exports=n("zUnb")},"0mo+":function(t,e,n){!function(t){"use strict";var e={1:"\u0f21",2:"\u0f22",3:"\u0f23",4:"\u0f24",5:"\u0f25",6:"\u0f26",7:"\u0f27",8:"\u0f28",9:"\u0f29",0:"\u0f20"},n={"\u0f21":"1","\u0f22":"2","\u0f23":"3","\u0f24":"4","\u0f25":"5","\u0f26":"6","\u0f27":"7","\u0f28":"8","\u0f29":"9","\u0f20":"0"};t.defineLocale("bo",{months:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54".split("_"),monthsShort:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54".split("_"),weekdays:"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74_\u0f42\u0f5f\u0f60\u0f0b\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b_\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b".split("_"),weekdaysShort:"\u0f49\u0f72\u0f0b\u0f58\u0f0b_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b_\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b_\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b_\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74_\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b_\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b".split("_"),weekdaysMin:"\u0f49\u0f72\u0f0b\u0f58\u0f0b_\u0f5f\u0fb3\u0f0b\u0f56\u0f0b_\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b_\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b_\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74_\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b_\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[\u0f51\u0f72\u0f0b\u0f62\u0f72\u0f44] LT",nextDay:"[\u0f66\u0f44\u0f0b\u0f49\u0f72\u0f53] LT",nextWeek:"[\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f55\u0fb2\u0f42\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58], LT",lastDay:"[\u0f41\u0f0b\u0f66\u0f44] LT",lastWeek:"[\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f55\u0fb2\u0f42\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f58] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0f63\u0f0b",past:"%s \u0f66\u0f94\u0f53\u0f0b\u0f63",s:"\u0f63\u0f58\u0f0b\u0f66\u0f44",ss:"%d \u0f66\u0f90\u0f62\u0f0b\u0f46\u0f0d",m:"\u0f66\u0f90\u0f62\u0f0b\u0f58\u0f0b\u0f42\u0f45\u0f72\u0f42",mm:"%d \u0f66\u0f90\u0f62\u0f0b\u0f58",h:"\u0f46\u0f74\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f42\u0f45\u0f72\u0f42",hh:"%d \u0f46\u0f74\u0f0b\u0f5a\u0f7c\u0f51",d:"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f45\u0f72\u0f42",dd:"%d \u0f49\u0f72\u0f53\u0f0b",M:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f45\u0f72\u0f42",MM:"%d \u0f5f\u0fb3\u0f0b\u0f56",y:"\u0f63\u0f7c\u0f0b\u0f42\u0f45\u0f72\u0f42",yy:"%d \u0f63\u0f7c"},preparse:function(t){return t.replace(/[\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\u0f29\u0f20]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c|\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66|\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44|\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42|\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"===e&&t>=4||"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44"===e&&t<5||"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42"===e?t+12:t},meridiem:function(t,e,n){return t<4?"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c":t<10?"\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66":t<17?"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44":t<20?"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42":"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"},week:{dow:0,doy:6}})}(n("wd/R"))},"0tRk":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("pt-br",{months:"Janeiro_Fevereiro_Mar\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Ter\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\xe1bado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_S\xe1b".split("_"),weekdaysMin:"Do_2\xaa_3\xaa_4\xaa_5\xaa_6\xaa_S\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xe0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xe0s] HH:mm"},calendar:{sameDay:"[Hoje \xe0s] LT",nextDay:"[Amanh\xe3 \xe0s] LT",nextWeek:"dddd [\xe0s] LT",lastDay:"[Ontem \xe0s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[\xdaltimo] dddd [\xe0s] LT":"[\xdaltima] dddd [\xe0s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"h\xe1 %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xeas",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba"})}()},"1op0":function(t,e,n){var i,r;r=function(t){var e;(e=t).ajax=function(t){var n=e.merge(!0,{url:!1,type:"GET",dataType:"json",success:!1,error:!1,data:!1,headers:{}},t);t={json:"application/json",xml:"application/xml",text:"text/plain",octet:"application/octet-stream"};var i=new XMLHttpRequest;if(!n.url)return!1;i.open(n.type.toUpperCase(),n.url,!0),i.setRequestHeader("Content-Type",t[n.dataType]||t.text),e.objectEach(n.headers,function(t,e){i.setRequestHeader(e,t)}),i.onreadystatechange=function(){var t;if(4===i.readyState){if(200===i.status){if(t=i.responseText,"json"===n.dataType)try{t=JSON.parse(t)}catch(e){return void(n.error&&n.error(i,e))}return n.success&&n.success(t)}n.error&&n.error(i,i.responseText)}};try{n.data=JSON.stringify(n.data)}catch(r){}i.send(n.data||!0)},function(t){var e=t.win,n=e.navigator,i=e.document,r=e.URL||e.webkitURL||e,o=/Edge\/\d+/.test(n.userAgent);t.dataURLtoBlob=function(t){if((t=t.match(/data:([^;]*)(;base64)?,([0-9A-Za-z+\/]+)/))&&3',r=this.options,o=e?1.1.toLocaleString()[1]:".",a=i(r.exporting.useMultiLevelHeaders,!0);e=this.getDataRows(a);var l=0,s=a?e.shift():null,u=e.shift(),c=function(t,e,n,r){var a=i(r,"");return e="text"+(e?" "+e:""),"number"==typeof a?(a=a.toString(),","===o&&(a=a.replace(".",o)),e="number"):r||(e="empty"),"<"+t+(n?" "+n:"")+' class="'+e+'">'+a+""};!1!==r.exporting.tableCaption&&(n+=''+i(r.exporting.tableCaption,r.title.text?r.title.text.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'").replace(/\//g,"/"):"Chart")+"");for(var d=0,h=e.length;dl&&(l=e[d].length);return n+=function(t,e,n){var i="",o=0;n=n||e&&e.length;var l,s,u=0;if(s=a&&t&&e){t:if(s=t.length,e.length===s){for(;s--;)if(t[s]!==e[s]){s=!1;break t}s=!0}else s=!1;s=!s}if(s){for(i+="";o"}return i+""}(s,u,Math.max(l,u.length)),n+="",e.forEach(function(t){n+="";for(var e=0;e"}),t.fireEvent(this,"afterGetTable",e={html:n+=""}),e.html},t.Chart.prototype.downloadCSV=function(){var t=this.getCSV(!0);l(e(t,"text/csv")||"data:text/csv,\ufeff"+encodeURIComponent(t),this.getFilename()+".csv")},t.Chart.prototype.downloadXLS=function(){var t='\x3c!--[if gte mso 9]>Ark1td{border:none;font-family: Calibri, sans-serif;} .number{mso-number-format:"0.00";} .text{ mso-number-format:"@";}'+this.getTable(!0)+"";l(e(t,"application/vnd.ms-excel")||"data:application/vnd.ms-excel;base64,"+r.btoa(unescape(encodeURIComponent(t))),this.getFilename()+".xls")},t.Chart.prototype.viewData=function(){this.dataTableDiv||(this.dataTableDiv=o.createElement("div"),this.dataTableDiv.className="highcharts-data-table",this.renderTo.parentNode.insertBefore(this.dataTableDiv,this.renderTo.nextSibling)),this.dataTableDiv.innerHTML=this.getTable()},t.Chart.prototype.openInCloud=function(){var e,n;(function e(n){Object.keys(n).forEach(function(i){"function"==typeof n[i]&&delete n[i],t.isObject(n[i])&&e(n[i])})})(e=t.merge(this.userOptions)),e={name:e.title&&e.title.text||"Chart title",options:e,settings:{constructor:"Chart",dataProvider:{csv:this.getCSV()}}},n=JSON.stringify(e),function(){var t=o.createElement("form");o.body.appendChild(t),t.method="post",t.action="https://cloud-api.highcharts.com/openincloud",t.target="_blank";var e=o.createElement("input");e.type="hidden",e.name="chart",e.value=n,t.appendChild(e),t.submit(),o.body.removeChild(t)}()};var s=t.getOptions().exporting;s&&(t.extend(s.menuItemDefinitions,{downloadCSV:{textKey:"downloadCSV",onclick:function(){this.downloadCSV()}},downloadXLS:{textKey:"downloadXLS",onclick:function(){this.downloadXLS()}},viewData:{textKey:"viewData",onclick:function(){this.viewData()}},openInCloud:{textKey:"openInCloud",onclick:function(){this.openInCloud()}}}),s.buttons.contextButton.menuItems.push("separator","downloadCSV","downloadXLS","viewData","openInCloud")),a.map&&(a.map.prototype.exportKey="name"),a.mapbubble&&(a.mapbubble.prototype.exportKey="name"),a.treemap&&(a.treemap.prototype.exportKey="name")}(t)},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},"1rYy":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("hy-am",{months:{format:"\u0570\u0578\u0582\u0576\u057e\u0561\u0580\u056b_\u0583\u0565\u057f\u0580\u057e\u0561\u0580\u056b_\u0574\u0561\u0580\u057f\u056b_\u0561\u057a\u0580\u056b\u056c\u056b_\u0574\u0561\u0575\u056b\u057d\u056b_\u0570\u0578\u0582\u0576\u056b\u057d\u056b_\u0570\u0578\u0582\u056c\u056b\u057d\u056b_\u0585\u0563\u0578\u057d\u057f\u0578\u057d\u056b_\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580\u056b_\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b_\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056b_\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b".split("_"),standalone:"\u0570\u0578\u0582\u0576\u057e\u0561\u0580_\u0583\u0565\u057f\u0580\u057e\u0561\u0580_\u0574\u0561\u0580\u057f_\u0561\u057a\u0580\u056b\u056c_\u0574\u0561\u0575\u056b\u057d_\u0570\u0578\u0582\u0576\u056b\u057d_\u0570\u0578\u0582\u056c\u056b\u057d_\u0585\u0563\u0578\u057d\u057f\u0578\u057d_\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580_\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580_\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580_\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580".split("_")},monthsShort:"\u0570\u0576\u057e_\u0583\u057f\u0580_\u0574\u0580\u057f_\u0561\u057a\u0580_\u0574\u0575\u057d_\u0570\u0576\u057d_\u0570\u056c\u057d_\u0585\u0563\u057d_\u057d\u057a\u057f_\u0570\u056f\u057f_\u0576\u0574\u0562_\u0564\u056f\u057f".split("_"),weekdays:"\u056f\u056b\u0580\u0561\u056f\u056b_\u0565\u0580\u056f\u0578\u0582\u0577\u0561\u0562\u0569\u056b_\u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b_\u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b_\u0570\u056b\u0576\u0563\u0577\u0561\u0562\u0569\u056b_\u0578\u0582\u0580\u0562\u0561\u0569_\u0577\u0561\u0562\u0561\u0569".split("_"),weekdaysShort:"\u056f\u0580\u056f_\u0565\u0580\u056f_\u0565\u0580\u0584_\u0579\u0580\u0584_\u0570\u0576\u0563_\u0578\u0582\u0580\u0562_\u0577\u0562\u0569".split("_"),weekdaysMin:"\u056f\u0580\u056f_\u0565\u0580\u056f_\u0565\u0580\u0584_\u0579\u0580\u0584_\u0570\u0576\u0563_\u0578\u0582\u0580\u0562_\u0577\u0562\u0569".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0569.",LLL:"D MMMM YYYY \u0569., HH:mm",LLLL:"dddd, D MMMM YYYY \u0569., HH:mm"},calendar:{sameDay:"[\u0561\u0575\u057d\u0585\u0580] LT",nextDay:"[\u057e\u0561\u0572\u0568] LT",lastDay:"[\u0565\u0580\u0565\u056f] LT",nextWeek:function(){return"dddd [\u0585\u0580\u0568 \u056a\u0561\u0574\u0568] LT"},lastWeek:function(){return"[\u0561\u0576\u0581\u0561\u056e] dddd [\u0585\u0580\u0568 \u056a\u0561\u0574\u0568] LT"},sameElse:"L"},relativeTime:{future:"%s \u0570\u0565\u057f\u0578",past:"%s \u0561\u057c\u0561\u057b",s:"\u0574\u056b \u0584\u0561\u0576\u056b \u057e\u0561\u0575\u0580\u056f\u0575\u0561\u0576",ss:"%d \u057e\u0561\u0575\u0580\u056f\u0575\u0561\u0576",m:"\u0580\u0578\u057a\u0565",mm:"%d \u0580\u0578\u057a\u0565",h:"\u056a\u0561\u0574",hh:"%d \u056a\u0561\u0574",d:"\u0585\u0580",dd:"%d \u0585\u0580",M:"\u0561\u0574\u056b\u057d",MM:"%d \u0561\u0574\u056b\u057d",y:"\u057f\u0561\u0580\u056b",yy:"%d \u057f\u0561\u0580\u056b"},meridiemParse:/\u0563\u056b\u0577\u0565\u0580\u057e\u0561|\u0561\u057c\u0561\u057e\u0578\u057f\u057e\u0561|\u0581\u0565\u0580\u0565\u056f\u057e\u0561|\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576/,isPM:function(t){return/^(\u0581\u0565\u0580\u0565\u056f\u057e\u0561|\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576)$/.test(t)},meridiem:function(t){return t<4?"\u0563\u056b\u0577\u0565\u0580\u057e\u0561":t<12?"\u0561\u057c\u0561\u057e\u0578\u057f\u057e\u0561":t<17?"\u0581\u0565\u0580\u0565\u056f\u057e\u0561":"\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576"},dayOfMonthOrdinalParse:/\d{1,2}|\d{1,2}-(\u056b\u0576|\u0580\u0564)/,ordinal:function(t,e){switch(e){case"DDD":case"w":case"W":case"DDDo":return 1===t?t+"-\u056b\u0576":t+"-\u0580\u0564";default:return t}},week:{dow:1,doy:7}})}()},"1xZ4":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ca",{months:{standalone:"gener_febrer_mar\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de mar\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._mar\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[dem\xe0 a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aqu\xed %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|\xe8|a)/,ordinal:function(t,e){var n=1===t?"r":2===t?"n":3===t?"r":4===t?"t":"\xe8";return"w"!==e&&"W"!==e||(n="a"),t+n},week:{dow:1,doy:4}})}()},"2BfV":function(t,e,n){var i,r;r=function(t){!function(t){function e(){var t=Array.prototype.slice.call(arguments),e=-Number.MAX_VALUE;return t.forEach(function(t){if(null!=t&&void 0!==t.length&&0=(n.options.boostThreshold||Number.MAX_VALUE)&&++i);return t.boostForceChartBoost=o&&(r===t.series.length&&0a||0>e)&&(e=0),(!n||n>a)&&(n=a),t.drawArrays(t[(i||"points").toUpperCase()],e/l,(n-e)/l),0))},allocate:function(t){u=-1,s=new Float32Array(4*t)},push:function(t,e,n,i){s&&(s[++u]=t,s[++u]=e,s[++u]=n,s[++u]=i)}}}function o(e,n){var i=e.chartWidth,o=e.chartHeight,a=e,l=e.seriesGroup||n.group;return d.implementation.hasFeature("www.http://w3.org/TR/SVG11/feature#Extensibility","1.1"),(a=e.isChartSeriesBoosting()?e:n).renderTarget||(a.canvas=C,a.renderTarget=e.renderer.image("",0,0,i,o).addClass("highcharts-boost-canvas").add(l),a.boostClear=function(){a.renderTarget.attr({href:""})},a.boostCopy=function(){a.boostResizeTarget(),a.renderTarget.attr({href:a.canvas.toDataURL("image/png")})},a.boostResizeTarget=function(){(a.renderTargetFo||a.renderTarget).attr({x:0,y:0,width:i=e.chartWidth,height:o=e.chartHeight}).css({pointerEvents:"none",mixedBlendMode:"normal",opacity:1}),a instanceof t.Chart&&a.markerGroup.translate(e.plotLeft,e.plotTop)},a.boostClipRect=e.renderer.clipRect(),(a.renderTargetFo||a.renderTarget).clip(a.boostClipRect),a instanceof t.Chart&&(a.markerGroup=a.renderer.g().add(l),a.markerGroup.translate(n.xAxis.pos,n.yAxis.pos))),a.canvas.width=i,a.canvas.height=o,a.boostClipRect.attr(e.getBoostClipRect(a)),a.boostResizeTarget(),a.boostClear(),a.ogl||(a.ogl=function(e){function n(t){var e;return t.isSeriesBoosting?(e=((e=!!t.options.stacking)?t.data:t.xData||t.options.xData||t.processedXData||t.options.data).length,"treemap"===t.type?e*=12:"heatmap"===t.type?e*=6:L[t.type]&&(e*=2),e):0}function i(){p.clear(p.COLOR_BUFFER_BIT|p.DEPTH_BUFFER_BIT)}function o(){S=[],b.data=_=[],v=[],h&&h.destroy()}function a(t){c&&(c.setUniform("xAxisTrans",t.transA),c.setUniform("xAxisMin",t.min),c.setUniform("xAxisMinPad",t.minPixelPadding),c.setUniform("xAxisPointRange",t.pointRange),c.setUniform("xAxisLen",t.len),c.setUniform("xAxisPos",t.pos),c.setUniform("xAxisCVSCoord",!t.horiz))}function l(t){c&&(c.setUniform("yAxisTrans",t.transA),c.setUniform("yAxisMin",t.min),c.setUniform("yAxisMinPad",t.minPixelPadding),c.setUniform("yAxisPointRange",t.pointRange),c.setUniform("yAxisLen",t.len),c.setUniform("yAxisPos",t.pos),c.setUniform("yAxisCVSCoord",!t.horiz))}function s(t,e){c.setUniform("hasThreshold",t),c.setUniform("translatedThreshold",e)}function u(n){return!!n&&(m=n.chartWidth||800,g=n.chartHeight||400,!!(p&&m&&g&&c)&&(T.debug.timeRendering&&console.time("gl rendering"),p.canvas.width=m,p.canvas.height=g,c.bind(),p.viewport(0,0,m,g),c.setPMatrix([2/m,0,0,0,0,-2/g,0,0,0,0,-2,0,-1,1,-1,1]),c.setPlotHeight(n.plotHeight),12*((u.marker?u.marker.radius:10)||10));if(d=C[d&&d.symbol||e.series.symbol]||C.circle,!(0===e.segments.length||e.segmentslength&&e.segments[0].from===e.segments[0].to)){if(d.isReady&&(p.bindTexture(p.TEXTURE_2D,d.handle),c.setTexture(d.handle)),n.styledMode?d=e.series.markerGroup&&e.series.markerGroup.getStyle("fill"):(d=e.series.pointAttribs&&e.series.pointAttribs().fill||e.series.color,u.colorByPoint&&(d=e.series.chart.options.colors[i])),e.series.fillOpacity&&u.fillOpacity&&(d=new f(d).setOpacity(k(u.fillOpacity,1)).get()),d=t.color(d).rgba,T.useAlpha||(d[3]=1),"lines"===e.drawMode&&T.useAlpha&&1>d[3]&&(d[3]/=10),"add"===u.boostBlending?(p.blendFunc(p.SRC_ALPHA,p.ONE),p.blendEquation(p.FUNC_ADD)):"mult"===u.boostBlending||"multiply"===u.boostBlending?p.blendFunc(p.DST_COLOR,p.ZERO):"darken"===u.boostBlending?(p.blendFunc(p.ONE,p.ONE),p.blendEquation(p.FUNC_MIN)):p.blendFuncSeparate(p.SRC_ALPHA,p.ONE_MINUS_SRC_ALPHA,p.ONE,p.ONE_MINUS_SRC_ALPHA),c.reset(),0e.node.levelDynamic)return 1;if(t.node.levelDynamicn.zMax&&(n.zMax=u[2]),u[2]n.zMax&&(n.zMax=D[B]),D[B]=w&&U<=k&&(q=!0),W&&W>=w&&W<=k&&(X=!0),g?(Y&&(p=u.slice(1,3)),m=p[0],p=p[1]):b&&(I=u.x,m=(p=u.stackY)-u.y),null!=M&&null!=S&&(J=p>=M&&p<=S),I>k&&H.xw&&(j.x=I,j.y=p),null!==p||!R)if(null!==p&&(J||q||X)){if(I>=w&&I<=k&&(Z=!0),Z||q||X){if(!T.useGPUTranslations&&(n.skipTranslation=!0,I=A.toPixels(I,!0),(p=E.toPixels(p,!0))>P&&(p=P),I>O&&"points"===n.drawMode))continue;K&&(u=m,!1!==m&&void 0!==m||(u=0>p?p:0),g||b||(u=Math.max($,M)),T.useGPUTranslations||(u=E.toPixels(u,!0)),r(I,u,0,0,!1)),n.hasMarkers&&Z&&!1!==F&&(e.closestPointRangePx=Math.min(e.closestPointRangePx,Math.abs(I-F))),!T.useGPUTranslations&&!T.usePreallocated&&F&&1>Math.abs(I-F)&&z&&1>Math.abs(p-z)?T.debug.showSkipSummary&&++N:(v.step&&!Q&&r(I,z,0,2,!1),r(I,p,0,"bubble"===e.type?f||1:2,!1),F=I,z=p,V=!0,Q=!1)}}else a()}else a();T.debug.showSkipSummary&&console.log("skipped points:",N),V||!1===R||"line_strip"!==e.drawMode||(j.x-Number.MAX_VALUE&&s(H))}o()}}(e,S[S.length-1]),T.debug.timeSeriesProcessing&&console.timeEnd("building "+e.type+" series")},setSize:function(t,e){m===t&&g===e||!c||(m=t,g=e,c.bind(),c.setPMatrix([2/m,0,0,0,0,-2/g,0,0,0,0,-2,0,-1,1,-1,1]))},inited:function(){return M},setThreshold:s,init:function(e,n){function i(t,e){var n={isReady:!1,texture:d.createElement("canvas"),handle:p.createTexture()},i=n.texture.getContext("2d");C[t]=n,n.texture.width=512,n.texture.height=512,i.mozImageSmoothingEnabled=!1,i.webkitImageSmoothingEnabled=!1,i.msImageSmoothingEnabled=!1,i.imageSmoothingEnabled=!1,i.strokeStyle="rgba(255, 255, 255, 0)",i.fillStyle="#FFF",e(i);try{p.activeTexture(p.TEXTURE0),p.bindTexture(p.TEXTURE_2D,n.handle),p.texImage2D(p.TEXTURE_2D,0,p.RGBA,p.RGBA,p.UNSIGNED_BYTE,n.texture),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_WRAP_S,p.CLAMP_TO_EDGE),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_WRAP_T,p.CLAMP_TO_EDGE),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_MAG_FILTER,p.LINEAR),p.texParameteri(p.TEXTURE_2D,p.TEXTURE_MIN_FILTER,p.LINEAR),p.bindTexture(p.TEXTURE_2D,null),n.isReady=!0}catch(r){}}var a=0,l=["webgl","experimental-webgl","moz-webgl","webkit-3d"];if(M=!1,!e)return!1;for(T.debug.timeSetup&&console.time("gl setup");a 0.0 ? (value - zMin) / zRange : 0.5;\nif (bubbleSizeByArea && pos > 0.0){\npos = sqrt(pos);\n}\nradius = ceil(bubbleMinSize + pos * (bubbleMaxSize - bubbleMinSize)) / 2.0;\n}\nreturn radius * 2.0;\n}\nfloat translate(float val,\nfloat pointPlacement,\nfloat localA,\nfloat localMin,\nfloat minPixelPadding,\nfloat pointRange,\nfloat len,\nbool cvsCoord\n){\nfloat sign = 1.0;\nfloat cvsOffset = 0.0;\nif (cvsCoord) {\nsign *= -1.0;\ncvsOffset = len;\n}\nreturn sign * (val - localMin) * localA + cvsOffset + \n(sign * minPixelPadding);\n}\nfloat xToPixels(float value){\nif (skipTranslation){\nreturn value;// + xAxisPos;\n}\nreturn translate(value, 0.0, xAxisTrans, xAxisMin, xAxisMinPad, xAxisPointRange, xAxisLen, xAxisCVSCoord);// + xAxisPos;\n}\nfloat yToPixels(float value, float checkTreshold){\nfloat v;\nif (skipTranslation){\nv = value;// + yAxisPos;\n} else {\nv = translate(value, 0.0, yAxisTrans, yAxisMin, yAxisMinPad, yAxisPointRange, yAxisLen, yAxisCVSCoord);// + yAxisPos;\nif (v > plotHeight) {\nv = plotHeight;\n}\n}\nif (checkTreshold > 0.0 && hasThreshold) {\nv = min(v, translatedThreshold);\n}\nreturn v;\n}\nvoid main(void) {\nif (isBubble){\ngl_PointSize = bubbleRadius();\n} else {\ngl_PointSize = pSize;\n}\nvColor = aColor;\nif (isInverted) {\ngl_Position = uPMatrix * vec4(xToPixels(aVertexPosition.y) + yAxisPos, yToPixels(aVertexPosition.x, aVertexPosition.z) + xAxisPos, 0.0, 1.0);\n} else {\ngl_Position = uPMatrix * vec4(xToPixels(aVertexPosition.x) + xAxisPos, yToPixels(aVertexPosition.y, aVertexPosition.z) + yAxisPos, 0.0, 1.0);\n}\n}","vertex"),o=i("precision highp float;\nuniform vec4 fillColor;\nvarying highp vec2 position;\nvarying highp vec4 vColor;\nuniform sampler2D uSampler;\nuniform bool isCircle;\nuniform bool hasColor;\nvoid main(void) {\nvec4 col = fillColor;\nvec4 tcol;\nif (hasColor) {\ncol = vColor;\n}\nif (isCircle) {\ntcol = texture2D(uSampler, gl_PointCoord.st);\ncol *= tcol;\nif (tcol.r < 0.0) {\ndiscard;\n} else {\ngl_FragColor = col;\n}\n} else {\ngl_FragColor = col;\n}\n}","fragment");return r&&o?(a=e.createProgram(),e.attachShader(a,r),e.attachShader(a,o),e.linkProgram(a),e.getProgramParameter(a,e.LINK_STATUS)?(e.useProgram(a),e.bindAttribLocation(a,0,"aVertexPosition"),l=t("uPMatrix"),s=t("pSize"),u=t("fillColor"),c=t("isBubble"),d=t("bubbleSizeAbs"),h=t("bubbleSizeByArea"),y=t("uSampler"),p=t("skipTranslation"),f=t("isCircle"),m=t("isInverted"),g=t("plotHeight"),!0):(v.push(e.getProgramInfoLog(a)),n(),a=!1)):(a=!1,n(),!1)}function o(t,n){e&&a&&(t=_[t]=_[t]||e.getUniformLocation(a,t),e.uniform1f(t,n))}var a,l,s,u,c,d,h,p,f,m,g,y,_={},v=[];return!(e&&!r())&&{psUniform:function(){return s},pUniform:function(){return l},fillColorUniform:function(){return u},setPlotHeight:function(t){e&&a&&e.uniform1f(g,t)},setBubbleUniforms:function(t,n,i){var r=t.options,l=Number.MAX_VALUE,s=-Number.MAX_VALUE;e&&a&&"bubble"===t.type&&(l=k(r.zMin,Math.min(l,Math.max(n,!1===r.displayNegative?r.zThreshold:-Number.MAX_VALUE))),s=k(r.zMax,Math.max(s,i)),e.uniform1i(c,1),e.uniform1i(f,1),e.uniform1i(h,"width"!==t.options.sizeBy),e.uniform1i(d,t.options.sizeByAbsoluteValue),o("bubbleZMin",l),o("bubbleZMax",s),o("bubbleZThreshold",t.options.zThreshold),o("bubbleMinSize",t.minPxSize),o("bubbleMaxSize",t.maxPxSize))},bind:function(){e&&a&&e.useProgram(a)},program:function(){return a},create:r,setUniform:o,setPMatrix:function(t){e&&a&&e.uniformMatrix4fv(l,!1,t)},setColor:function(t){e&&a&&e.uniform4f(u,t[0]/255,t[1]/255,t[2]/255,t[3])},setPointSize:function(t){e&&a&&e.uniform1f(s,t)},setSkipTranslation:function(t){e&&a&&e.uniform1i(p,!0===t?1:0)},setTexture:function(t){e&&a&&e.uniform1i(y,t)},setDrawAsCircle:function(t){e&&a&&e.uniform1i(f,t?1:0)},reset:function(){e&&a&&(e.uniform1i(c,0),e.uniform1i(f,0))},setInverted:function(t){e&&a&&e.uniform1i(m,t)},destroy:function(){e&&a&&(e.deleteProgram(a),a=!1)}}}(p))&&(h=r(p,c),i("circle",function(t){t.beginPath(),t.arc(256,256,256,0,2*Math.PI),t.stroke(),t.fill()}),i("square",function(t){t.fillRect(0,0,512,512)}),i("diamond",function(t){t.beginPath(),t.moveTo(256,0),t.lineTo(512,256),t.lineTo(256,512),t.lineTo(0,256),t.lineTo(256,0),t.fill()}),i("triangle",function(t){t.beginPath(),t.moveTo(0,512),t.lineTo(256,0),t.lineTo(512,512),t.lineTo(0,512),t.fill()}),i("triangle-down",function(t){t.beginPath(),t.moveTo(0,0),t.lineTo(256,512),t.lineTo(512,0),t.lineTo(0,0),t.fill()}),M=!0,T.debug.timeSetup&&console.timeEnd("gl setup"),!0))},render:function t(e){if(i(),e.renderer.forExport)return u(e);M?u(e):setTimeout(function(){t(e)},1)},settings:T,valid:function(){return!1!==p},clear:i,flush:o,setXAxis:a,setYAxis:l,data:_,gl:function(){return p},allocateBuffer:function(t){var e=0;T.usePreallocated&&(t.series.forEach(function(t){t.isSeriesBoosting&&(e+=n(t))}),h.allocate(e))},destroy:function(){o(),h.destroy(),c.destroy(),p&&(y(C,function(t){C[t].handle&&p.deleteTexture(C[t].handle)}),p.canvas.width=1,p.canvas.height=1)},setOptions:function(t){w(!0,T,t)}}}(function(){a.ogl.settings.debug.timeBufferCopy&&console.time("buffer copy"),a.boostCopy(),a.ogl.settings.debug.timeBufferCopy&&console.timeEnd("buffer copy")}),a.ogl.init(a.canvas)||t.error("[highcharts boost] - unable to init WebGL renderer"),a.ogl.setOptions(e.options.boost||{}),a instanceof t.Chart&&a.ogl.allocateBuffer(e)),a.ogl.setSize(i,o),a.ogl}function a(t,e,n){t&&e.renderTarget&&e.canvas&&!(n||e.chart).isChartSeriesBoosting()&&t.render(n||e.chart)}function l(t,e){t&&e.renderTarget&&e.canvas&&!e.chart.isChartSeriesBoosting()&&t.allocateBufferForSingleSeries(e)}function s(t){var e=!0;if(this.chart.options&&this.chart.options.boost&&(e=void 0===this.chart.options.boost.enabled||this.chart.options.boost.enabled),!e||!this.isSeriesBoosting)return t.call(this);this.chart.isBoosting=!0,(t=o(this.chart,this))&&(l(t,this),t.pushSeries(this)),a(t,this)}var u,c=t.win,d=c.document,h=function(){},p=t.Chart,f=t.Color,m=t.Series,g=t.seriesTypes,y=t.objectEach,_=t.extend,v=t.addEvent,b=t.fireEvent,x=t.isNumber,w=t.merge,k=t.pick,M=t.wrap,S=t.getOptions().plotOptions,C=d.createElement("canvas"),L="area arearange column columnrange bar line scatter heatmap bubble treemap".split(" "),D={};L.forEach(function(t){D[t]=1}),f.prototype.names={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",feldspar:"#d19275",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslateblue:"#8470ff",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",violetred:"#d02090",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},p.prototype.isChartSeriesBoosting=function(){return k(this.options.boost&&this.options.boost.seriesThreshold,50)<=this.series.length||n(this)},p.prototype.getBoostClipRect=function(t){var e={x:this.plotLeft,y:this.plotTop,width:this.plotWidth,height:this.plotHeight};return t===this&&this.yAxis.forEach(function(t){e.y=Math.min(t.pos,e.y),e.height=Math.max(t.pos-this.plotTop+t.len,e.height)},this),e},t.eachAsync=function(e,n,i,r,o,a){for(var l=(o=o||0)+(r=r||3e4),s=!0;s&&o=(n.options.boostThreshold||Number.MAX_VALUE)}var n=this,r=this.options.data;i(this.chart)&&D[this.type]?(e(r)&&"heatmap"!==this.type&&"treemap"!==this.type&&!this.options.stacking&&this.hasExtremes&&this.hasExtremes(!0)||(t.apply(this,Array.prototype.slice.call(arguments,1)),r=this.processedXData),(this.isSeriesBoosting=e(r))?this.enterBoost():this.exitBoost&&this.exitBoost()):t.apply(this,Array.prototype.slice.call(arguments,1))}),v(m,"hide",function(){this.canvas&&this.renderTarget&&(this.ogl&&this.ogl.clear(),this.boostClear())}),m.prototype.enterBoost=function(){this.alteredByBoost=[],["allowDG","directTouch","stickyTracking"].forEach(function(t){this.alteredByBoost.push({prop:t,val:this[t],own:this.hasOwnProperty(t)})},this),this.directTouch=this.allowDG=!1,this.stickyTracking=!0,this.animate=null,this.labelBySeries&&(this.labelBySeries=this.labelBySeries.destroy())},m.prototype.exitBoost=function(){(this.alteredByBoost||[]).forEach(function(t){t.own?this[t.prop]=t.val:delete this[t.prop]},this),this.boostClear&&this.boostClear()},m.prototype.hasExtremes=function(t){var e=this.options,n=this.xAxis&&this.xAxis.options,i=this.yAxis&&this.yAxis.options;return e.data.length>(e.boostThreshold||Number.MAX_VALUE)&&x(i.min)&&x(i.max)&&(!t||x(n.min)&&x(n.max))},m.prototype.destroyGraphics=function(){var t,e,n=this,i=this.points;if(i)for(e=0;e=S&&a<=C),null!==a&&o>=k&&o<=M&&d)&&(t=y.toPixels(o,!0),D?(void 0!==s&&t!==e||(A||(l=a),(void 0===c||a>r)&&(r=a,c=n),(void 0===s||l=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},"3E1r":function(t,e,n){!function(t){"use strict";var e={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};t.defineLocale("hi",{months:"\u091c\u0928\u0935\u0930\u0940_\u092b\u093c\u0930\u0935\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u0948\u0932_\u092e\u0908_\u091c\u0942\u0928_\u091c\u0941\u0932\u093e\u0908_\u0905\u0917\u0938\u094d\u0924_\u0938\u093f\u0924\u092e\u094d\u092c\u0930_\u0905\u0915\u094d\u091f\u0942\u092c\u0930_\u0928\u0935\u092e\u094d\u092c\u0930_\u0926\u093f\u0938\u092e\u094d\u092c\u0930".split("_"),monthsShort:"\u091c\u0928._\u092b\u093c\u0930._\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u0948._\u092e\u0908_\u091c\u0942\u0928_\u091c\u0941\u0932._\u0905\u0917._\u0938\u093f\u0924._\u0905\u0915\u094d\u091f\u0942._\u0928\u0935._\u0926\u093f\u0938.".split("_"),monthsParseExact:!0,weekdays:"\u0930\u0935\u093f\u0935\u093e\u0930_\u0938\u094b\u092e\u0935\u093e\u0930_\u092e\u0902\u0917\u0932\u0935\u093e\u0930_\u092c\u0941\u0927\u0935\u093e\u0930_\u0917\u0941\u0930\u0942\u0935\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930_\u0936\u0928\u093f\u0935\u093e\u0930".split("_"),weekdaysShort:"\u0930\u0935\u093f_\u0938\u094b\u092e_\u092e\u0902\u0917\u0932_\u092c\u0941\u0927_\u0917\u0941\u0930\u0942_\u0936\u0941\u0915\u094d\u0930_\u0936\u0928\u093f".split("_"),weekdaysMin:"\u0930_\u0938\u094b_\u092e\u0902_\u092c\u0941_\u0917\u0941_\u0936\u0941_\u0936".split("_"),longDateFormat:{LT:"A h:mm \u092c\u091c\u0947",LTS:"A h:mm:ss \u092c\u091c\u0947",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u092c\u091c\u0947",LLLL:"dddd, D MMMM YYYY, A h:mm \u092c\u091c\u0947"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0915\u0932] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u0932] LT",lastWeek:"[\u092a\u093f\u091b\u0932\u0947] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u092e\u0947\u0902",past:"%s \u092a\u0939\u0932\u0947",s:"\u0915\u0941\u091b \u0939\u0940 \u0915\u094d\u0937\u0923",ss:"%d \u0938\u0947\u0915\u0902\u0921",m:"\u090f\u0915 \u092e\u093f\u0928\u091f",mm:"%d \u092e\u093f\u0928\u091f",h:"\u090f\u0915 \u0918\u0902\u091f\u093e",hh:"%d \u0918\u0902\u091f\u0947",d:"\u090f\u0915 \u0926\u093f\u0928",dd:"%d \u0926\u093f\u0928",M:"\u090f\u0915 \u092e\u0939\u0940\u0928\u0947",MM:"%d \u092e\u0939\u0940\u0928\u0947",y:"\u090f\u0915 \u0935\u0930\u094d\u0937",yy:"%d \u0935\u0930\u094d\u0937"},preparse:function(t){return t.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0930\u093e\u0924|\u0938\u0941\u092c\u0939|\u0926\u094b\u092a\u0939\u0930|\u0936\u093e\u092e/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0930\u093e\u0924"===e?t<4?t:t+12:"\u0938\u0941\u092c\u0939"===e?t:"\u0926\u094b\u092a\u0939\u0930"===e?t>=10?t:t+12:"\u0936\u093e\u092e"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0930\u093e\u0924":t<10?"\u0938\u0941\u092c\u0939":t<17?"\u0926\u094b\u092a\u0939\u0930":t<20?"\u0936\u093e\u092e":"\u0930\u093e\u0924"},week:{dow:0,doy:6}})}(n("wd/R"))},"4MV3":function(t,e,n){!function(t){"use strict";var e={1:"\u0ae7",2:"\u0ae8",3:"\u0ae9",4:"\u0aea",5:"\u0aeb",6:"\u0aec",7:"\u0aed",8:"\u0aee",9:"\u0aef",0:"\u0ae6"},n={"\u0ae7":"1","\u0ae8":"2","\u0ae9":"3","\u0aea":"4","\u0aeb":"5","\u0aec":"6","\u0aed":"7","\u0aee":"8","\u0aef":"9","\u0ae6":"0"};t.defineLocale("gu",{months:"\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0_\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0_\u0aae\u0abe\u0ab0\u0acd\u0a9a_\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2_\u0aae\u0ac7_\u0a9c\u0ac2\u0aa8_\u0a9c\u0ac1\u0ab2\u0abe\u0a88_\u0a91\u0a97\u0ab8\u0acd\u0a9f_\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0_\u0a91\u0a95\u0acd\u0a9f\u0acd\u0aac\u0ab0_\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0_\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0".split("_"),monthsShort:"\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1._\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1._\u0aae\u0abe\u0ab0\u0acd\u0a9a_\u0a8f\u0aaa\u0acd\u0ab0\u0abf._\u0aae\u0ac7_\u0a9c\u0ac2\u0aa8_\u0a9c\u0ac1\u0ab2\u0abe._\u0a91\u0a97._\u0ab8\u0aaa\u0acd\u0a9f\u0ac7._\u0a91\u0a95\u0acd\u0a9f\u0acd._\u0aa8\u0ab5\u0ac7._\u0aa1\u0abf\u0ab8\u0ac7.".split("_"),monthsParseExact:!0,weekdays:"\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0_\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0_\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0_\u0aac\u0ac1\u0aa7\u0acd\u0ab5\u0abe\u0ab0_\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0_\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0_\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0".split("_"),weekdaysShort:"\u0ab0\u0ab5\u0abf_\u0ab8\u0acb\u0aae_\u0aae\u0a82\u0a97\u0ab3_\u0aac\u0ac1\u0aa7\u0acd_\u0a97\u0ac1\u0ab0\u0ac1_\u0ab6\u0ac1\u0a95\u0acd\u0ab0_\u0ab6\u0aa8\u0abf".split("_"),weekdaysMin:"\u0ab0_\u0ab8\u0acb_\u0aae\u0a82_\u0aac\u0ac1_\u0a97\u0ac1_\u0ab6\u0ac1_\u0ab6".split("_"),longDateFormat:{LT:"A h:mm \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7",LTS:"A h:mm:ss \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7",LLLL:"dddd, D MMMM YYYY, A h:mm \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7"},calendar:{sameDay:"[\u0a86\u0a9c] LT",nextDay:"[\u0a95\u0abe\u0ab2\u0ac7] LT",nextWeek:"dddd, LT",lastDay:"[\u0a97\u0a87\u0a95\u0abe\u0ab2\u0ac7] LT",lastWeek:"[\u0aaa\u0abe\u0a9b\u0ab2\u0abe] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0aae\u0abe",past:"%s \u0aaa\u0ac7\u0ab9\u0ab2\u0abe",s:"\u0a85\u0aae\u0ac1\u0a95 \u0aaa\u0ab3\u0acb",ss:"%d \u0ab8\u0ac7\u0a95\u0a82\u0aa1",m:"\u0a8f\u0a95 \u0aae\u0abf\u0aa8\u0abf\u0a9f",mm:"%d \u0aae\u0abf\u0aa8\u0abf\u0a9f",h:"\u0a8f\u0a95 \u0a95\u0ab2\u0abe\u0a95",hh:"%d \u0a95\u0ab2\u0abe\u0a95",d:"\u0a8f\u0a95 \u0aa6\u0abf\u0ab5\u0ab8",dd:"%d \u0aa6\u0abf\u0ab5\u0ab8",M:"\u0a8f\u0a95 \u0aae\u0ab9\u0abf\u0aa8\u0acb",MM:"%d \u0aae\u0ab9\u0abf\u0aa8\u0acb",y:"\u0a8f\u0a95 \u0ab5\u0ab0\u0acd\u0ab7",yy:"%d \u0ab5\u0ab0\u0acd\u0ab7"},preparse:function(t){return t.replace(/[\u0ae7\u0ae8\u0ae9\u0aea\u0aeb\u0aec\u0aed\u0aee\u0aef\u0ae6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0ab0\u0abe\u0aa4|\u0aac\u0aaa\u0acb\u0ab0|\u0ab8\u0ab5\u0abe\u0ab0|\u0ab8\u0abe\u0a82\u0a9c/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0ab0\u0abe\u0aa4"===e?t<4?t:t+12:"\u0ab8\u0ab5\u0abe\u0ab0"===e?t:"\u0aac\u0aaa\u0acb\u0ab0"===e?t>=10?t:t+12:"\u0ab8\u0abe\u0a82\u0a9c"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0ab0\u0abe\u0aa4":t<10?"\u0ab8\u0ab5\u0abe\u0ab0":t<17?"\u0aac\u0aaa\u0acb\u0ab0":t<20?"\u0ab8\u0abe\u0a82\u0a9c":"\u0ab0\u0abe\u0aa4"},week:{dow:0,doy:6}})}(n("wd/R"))},"4dOw":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},"6+QB":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(t,e){return 12===t&&(t=0),"pagi"===e?t:"tengahari"===e?t>=11?t:t+12:"petang"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"tengahari":t<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}()},"6B0Y":function(t,e,n){!function(t){"use strict";var e={1:"\u17e1",2:"\u17e2",3:"\u17e3",4:"\u17e4",5:"\u17e5",6:"\u17e6",7:"\u17e7",8:"\u17e8",9:"\u17e9",0:"\u17e0"},n={"\u17e1":"1","\u17e2":"2","\u17e3":"3","\u17e4":"4","\u17e5":"5","\u17e6":"6","\u17e7":"7","\u17e8":"8","\u17e9":"9","\u17e0":"0"};t.defineLocale("km",{months:"\u1798\u1780\u179a\u17b6_\u1780\u17bb\u1798\u17d2\u1797\u17c8_\u1798\u17b8\u1793\u17b6_\u1798\u17c1\u179f\u17b6_\u17a7\u179f\u1797\u17b6_\u1798\u17b7\u1790\u17bb\u1793\u17b6_\u1780\u1780\u17d2\u1780\u178a\u17b6_\u179f\u17b8\u17a0\u17b6_\u1780\u1789\u17d2\u1789\u17b6_\u178f\u17bb\u179b\u17b6_\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6_\u1792\u17d2\u1793\u17bc".split("_"),monthsShort:"\u1798\u1780\u179a\u17b6_\u1780\u17bb\u1798\u17d2\u1797\u17c8_\u1798\u17b8\u1793\u17b6_\u1798\u17c1\u179f\u17b6_\u17a7\u179f\u1797\u17b6_\u1798\u17b7\u1790\u17bb\u1793\u17b6_\u1780\u1780\u17d2\u1780\u178a\u17b6_\u179f\u17b8\u17a0\u17b6_\u1780\u1789\u17d2\u1789\u17b6_\u178f\u17bb\u179b\u17b6_\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6_\u1792\u17d2\u1793\u17bc".split("_"),weekdays:"\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799_\u1785\u17d0\u1793\u17d2\u1791_\u17a2\u1784\u17d2\u1782\u17b6\u179a_\u1796\u17bb\u1792_\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd_\u179f\u17bb\u1780\u17d2\u179a_\u179f\u17c5\u179a\u17cd".split("_"),weekdaysShort:"\u17a2\u17b6_\u1785_\u17a2_\u1796_\u1796\u17d2\u179a_\u179f\u17bb_\u179f".split("_"),weekdaysMin:"\u17a2\u17b6_\u1785_\u17a2_\u1796_\u1796\u17d2\u179a_\u179f\u17bb_\u179f".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/\u1796\u17d2\u179a\u17b9\u1780|\u179b\u17d2\u1784\u17b6\u1785/,isPM:function(t){return"\u179b\u17d2\u1784\u17b6\u1785"===t},meridiem:function(t,e,n){return t<12?"\u1796\u17d2\u179a\u17b9\u1780":"\u179b\u17d2\u1784\u17b6\u1785"},calendar:{sameDay:"[\u1790\u17d2\u1784\u17c3\u1793\u17c1\u17c7 \u1798\u17c9\u17c4\u1784] LT",nextDay:"[\u179f\u17d2\u17a2\u17c2\u1780 \u1798\u17c9\u17c4\u1784] LT",nextWeek:"dddd [\u1798\u17c9\u17c4\u1784] LT",lastDay:"[\u1798\u17d2\u179f\u17b7\u179b\u1798\u17b7\u1789 \u1798\u17c9\u17c4\u1784] LT",lastWeek:"dddd [\u179f\u1794\u17d2\u178f\u17b6\u17a0\u17cd\u1798\u17bb\u1793] [\u1798\u17c9\u17c4\u1784] LT",sameElse:"L"},relativeTime:{future:"%s\u1791\u17c0\u178f",past:"%s\u1798\u17bb\u1793",s:"\u1794\u17c9\u17bb\u1793\u17d2\u1798\u17b6\u1793\u179c\u17b7\u1793\u17b6\u1791\u17b8",ss:"%d \u179c\u17b7\u1793\u17b6\u1791\u17b8",m:"\u1798\u17bd\u1799\u1793\u17b6\u1791\u17b8",mm:"%d \u1793\u17b6\u1791\u17b8",h:"\u1798\u17bd\u1799\u1798\u17c9\u17c4\u1784",hh:"%d \u1798\u17c9\u17c4\u1784",d:"\u1798\u17bd\u1799\u1790\u17d2\u1784\u17c3",dd:"%d \u1790\u17d2\u1784\u17c3",M:"\u1798\u17bd\u1799\u1781\u17c2",MM:"%d \u1781\u17c2",y:"\u1798\u17bd\u1799\u1786\u17d2\u1793\u17b6\u17c6",yy:"%d \u1786\u17d2\u1793\u17b6\u17c6"},dayOfMonthOrdinalParse:/\u1791\u17b8\d{1,2}/,ordinal:"\u1791\u17b8%d",preparse:function(t){return t.replace(/[\u17e1\u17e2\u17e3\u17e4\u17e5\u17e6\u17e7\u17e8\u17e9\u17e0]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},week:{dow:1,doy:4}})}(n("wd/R"))},"6n/F":function(t,e,n){var i,r,o;r="undefined"!=typeof window?window:this,o=function(t){var e,n,i,r,o,a,l,s,u=(i=(e=void 0===t?"undefined"!=typeof window?window:{}:t).navigator&&e.navigator.userAgent||"",r=(n=e.document)&&n.createElementNS&&!!n.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,o=/(edge|msie|trident)/i.test(i)&&!e.opera,a=-1!==i.indexOf("Firefox"),l=-1!==i.indexOf("Chrome"),s=a&&4>parseInt(i.split("Firefox/")[1],10),e.Highcharts?e.Highcharts.error(16,!0):{product:"Highcharts",version:"7.0.3",deg2rad:2*Math.PI/360,doc:n,hasBidiBug:s,hasTouch:n&&void 0!==n.documentElement.ontouchstart,isMS:o,isWebKit:-1!==i.indexOf("AppleWebKit"),isFirefox:a,isChrome:l,isSafari:!l&&-1!==i.indexOf("Safari"),isTouchDevice:/(Mobile|Android|Windows Phone)/.test(i),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:r,win:e,marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){},charts:[]});!function(t){t.timers=[];var e=t.charts,n=t.doc,i=t.win;t.error=function(e,n,r){var o=t.isNumber(e)?"Highcharts error #"+e+": www.highcharts.com/errors/"+e:e;if(r&&t.fireEvent(r,"displayError",{code:e}),n)throw Error(o);i.console&&console.log(o)},t.Fx=function(t,e,n){this.options=e,this.elem=t,this.prop=n},t.Fx.prototype={dSetter:function(){var t,e=this.paths[0],n=this.paths[1],i=[],r=this.now,o=e.length;if(1===r)i=this.toD;else if(o===n.length&&1>r)for(;o--;)t=parseFloat(e[o]),i[o]=isNaN(t)?n[o]:r*parseFloat(n[o]-t)+t;else i=n;this.elem.attr("d",i,null,!0)},update:function(){var t=this.elem,e=this.prop,n=this.now,i=this.options.step;this[e+"Setter"]?this[e+"Setter"]():t.attr?t.element&&t.attr(e,n,null,!0):t.style[e]=n+this.unit,i&&i.call(t,n,this)},run:function(e,n,r){var o=this,a=o.options,l=function(t){return!l.stopped&&o.step(t)},s=i.requestAnimationFrame||function(t){setTimeout(t,13)},u=function(){for(var e=0;e=l+this.startTime?(this.now=this.end,this.pos=1,this.update(),n=s[this.prop]=!0,t.objectEach(s,function(t){!0!==t&&(n=!1)}),n&&a&&a.call(o),e=!1):(this.pos=r.easing((i-this.startTime)/l),this.now=this.start+(this.end-this.start)*this.pos,this.update(),e=!0),e},initPath:function(e,n,i){function r(t){var e,n;for(c=t.length;c--;)e="M"===t[c]||"L"===t[c],n=/[a-zA-Z]/.test(t[c+3]),e&&n&&t.splice(c+1,0,t[c+1],t[c+2],t[c+1],t[c+2])}function o(t,e){for(;t.lengtht&&-1/0=i&&(n=[1/i]))),r=0;r=e||!o&&a<=(n[r]+(n[r+1]||n[r]))/2));r++);return t.correctFloat(l*i,-Math.round(Math.log(.001)/Math.LN10))},t.stableSort=function(t,e){var n,i,r=t.length;for(i=0;in&&(n=t[e]);return n},t.destroyObjectProperties=function(e,n){t.objectEach(e,function(t,i){t&&t!==n&&t.destroy&&t.destroy(),delete e[i]})},t.discardElement=function(e){var n=t.garbageBin;n||(n=t.createElement("div")),e&&n.appendChild(e),n.innerHTML=""},t.correctFloat=function(t,e){return parseFloat(t.toPrecision(e||14))},t.setAnimation=function(e,n){n.renderer.globalAnimation=t.pick(e,n.options.chart.animation,!0)},t.animObject=function(e){return t.isObject(e)?t.merge(e):{duration:e?500:0}},t.timeUnits={millisecond:1,second:1e3,minute:6e4,hour:36e5,day:864e5,week:6048e5,month:24192e5,year:314496e5},t.numberFormat=function(e,n,i,r){n=+n;var o,a,l=t.defaultOptions.lang,s=((e=+e||0).toString().split(".")[1]||"").split("e")[0].length,u=e.toString().split("e");return-1===n?n=Math.min(s,20):t.isNumber(n)?n&&u[1]&&0>u[1]&&(0<=(o=n+ +u[1])?(u[0]=(+u[0]).toExponential(o).split("e")[0],n=o):(u[0]=u[0].split(".")[0]||0,e=20>n?(u[0]*Math.pow(10,u[1])).toFixed(n):0,u[1]=0)):n=2,a=(Math.abs(u[1]?u[0]:e)+Math.pow(10,-Math.max(n,s)-1)).toFixed(n),o=3<(s=String(t.pInt(a))).length?s.length%3:0,i=t.pick(i,l.decimalPoint),r=t.pick(r,l.thousandsSep),e=(0>e?"-":"")+(o?s.substr(0,o)+r:""),e+=s.substr(o).replace(/(\d{3})(?=\d)/g,"$1"+r),n&&(e+=i+a.slice(-n)),u[1]&&0!=+e&&(e+="e"+u[1]),e},Math.easeInOutSine=function(t){return-.5*(Math.cos(Math.PI*t)-1)},t.getStyle=function(e,n,r){return"width"===n?Math.max(0,Math.min(e.offsetWidth,e.scrollWidth,e.getBoundingClientRect&&"none"===t.getStyle(e,"transform",!1)?Math.floor(e.getBoundingClientRect().width):1/0)-t.getStyle(e,"padding-left")-t.getStyle(e,"padding-right")):"height"===n?Math.max(0,Math.min(e.offsetHeight,e.scrollHeight)-t.getStyle(e,"padding-top")-t.getStyle(e,"padding-bottom")):(i.getComputedStyle||t.error(27,!0),(e=i.getComputedStyle(e,void 0))&&(e=e.getPropertyValue(n),t.pick(r,"opacity"!==n)&&(e=t.pInt(e))),e)},t.inArray=function(t,e,n){return e.indexOf(t,n)},t.find=Array.prototype.find?function(t,e){return t.find(e)}:function(t,e){var n,i=t.length;for(n=0;n>16,(65280&e)>>8,255&e,1]:4===n&&(i=[(3840&e)>>4|(3840&e)>>8,(240&e)>>4|240&e,(15&e)<<4|15&e,1])),!i)for(r=this.parsers.length;r--&&!i;)(n=(o=this.parsers[r]).regex.exec(e))&&(i=o.parse(n));this.rgba=i||[]},get:function(t){var i,r=this.input,o=this.rgba;return this.stops?((i=n(r)).stops=[].concat(i.stops),this.stops.forEach(function(e,n){i.stops[n]=[i.stops[n][0],e.get(t)]})):i=o&&e(o[0])?"rgb"===t||!t&&1===o[3]?"rgb("+o[0]+","+o[1]+","+o[2]+")":"a"===t?o[3]:"rgba("+o.join(",")+")":r,i},brighten:function(t){var n,r=this.rgba;if(this.stops)this.stops.forEach(function(e){e.brighten(t)});else if(e(t)&&0!==t)for(n=0;3>n;n++)r[n]+=i(255*t),0>r[n]&&(r[n]=0),255i.width)&&(i={width:0,height:0})}else i=this.htmlGetBBox();if(s.isSVG&&(t=i.width,s=i.height,y&&(i.height=s={"11px,17":14,"13px,20":16}[h&&h.fontSize+","+Math.round(s)]||s),n&&(i.width=Math.abs(s*Math.sin(r))+Math.abs(t*Math.cos(r)),i.height=Math.abs(s*Math.cos(r))+Math.abs(t*Math.sin(r)))),l&&0]*>/g,"").replace(/</g,"<").replace(/>/g,">")))},textSetter:function(t){t!==this.textStr&&(delete this.bBox,this.textStr=t,this.added&&this.renderer.buildText(this))},fillSetter:function(t,e,n){"string"==typeof t?n.setAttribute(e,t):t&&this.complexColor(t,e,n)},visibilitySetter:function(t,e,n){"inherit"===t?n.removeAttribute(e):this[e]!==t&&n.setAttribute(e,t),this[e]=t},zIndexSetter:function(t,e){var n,i,r,o,a=this.renderer,l=this.parentGroup,s=(l||a).element||a.box,u=this.element;if(a=s===a.box,n=this.added,c(t)?(u.setAttribute("data-z-index",t),this[e]===(t=+t)&&(n=!1)):c(this[e])&&u.removeAttribute("data-z-index"),this[e]=t,n){for((t=this.zIndex)&&l&&(l.handleZ=!0),o=(e=s.childNodes).length-1;0<=o&&!i;o--)n=(l=e[o]).getAttribute("data-z-index"),r=!c(n),l!==u&&(0>t&&r&&!a&&!o?(s.insertBefore(u,e[o]),i=!0):(L(n)<=t||r&&(!c(t)||0<=t))&&(s.insertBefore(u,e[o+1]||null),i=!0));i||(s.insertBefore(u,e[a?3:0]||null),i=!0)}return i},_defaultSetter:function(t,e,n){n.setAttribute(e,t)}}),e.prototype.yGetter=e.prototype.xGetter,e.prototype.translateXSetter=e.prototype.translateYSetter=e.prototype.rotationSetter=e.prototype.verticalAlignSetter=e.prototype.rotationOriginXSetter=e.prototype.rotationOriginYSetter=e.prototype.scaleXSetter=e.prototype.scaleYSetter=e.prototype.matrixSetter=function(t,e){this[e]=t,this.doTransform=!0},e.prototype["stroke-widthSetter"]=e.prototype.strokeSetter=function(t,n,i){this[n]=t,this.stroke&&this["stroke-width"]?(e.prototype.fillSetter.call(this,this.stroke,"stroke",i),i.setAttribute("stroke-width",this["stroke-width"]),this.hasStroke=!0):"stroke-width"===n&&0===t&&this.hasStroke&&(i.removeAttribute("stroke"),this.hasStroke=!1)},n=t.SVGRenderer=function(){this.init.apply(this,arguments)},f(n.prototype,{Element:e,SVG_NS:P,init:function(t,e,n,r,a,l,u){var c,d;c=this.createElement("svg").attr({version:"1.1",class:"highcharts-root"}),u||c.css(this.getStyle(r)),t.appendChild(r=c.element),o(t,"dir","ltr"),-1===t.innerHTML.indexOf("xmlns")&&o(r,"xmlns",this.SVG_NS),this.isSVG=!0,this.box=r,this.boxWrapper=c,this.alignedObjects=[],this.url=(_||w)&&p.getElementsByTagName("base").length?Y.location.href.split("#")[0].replace(/<[^>]*>/g,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"",this.createElement("desc").add().element.appendChild(p.createTextNode("Created with Highcharts 7.0.3")),this.defs=this.createElement("defs").add(),this.allowHTML=l,this.forExport=a,this.styledMode=u,this.gradients={},this.cache={},this.cacheKeys=[],this.imgCount=0,this.setSize(e,n,!1),_&&t.getBoundingClientRect&&((e=function(){s(t,{left:0,top:0}),d=t.getBoundingClientRect(),s(t,{left:Math.ceil(d.left)-d.left+"px",top:Math.ceil(d.top)-d.top+"px"})})(),this.unSubPixelFix=i(Y,"resize",e))},definition:function(t){var e=this;return function t(n,i){var r;return T(n).forEach(function(n){var o=e.createElement(n.tagName),a={};S(n,function(t,e){"tagName"!==e&&"children"!==e&&"textContent"!==e&&(a[e]=t)}),o.attr(a),o.add(i||e.defs),n.textContent&&o.element.appendChild(p.createTextNode(n.textContent)),t(n.children||[],o),r=o}),r}(t)},getStyle:function(t){return this.style=f({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},t)},setStyle:function(t){this.boxWrapper.css(this.getStyle(t))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var t=this.defs;return this.box=null,this.boxWrapper=this.boxWrapper.destroy(),h(this.gradients||{}),this.gradients=null,t&&(this.defs=t.destroy()),this.unSubPixelFix&&this.unSubPixelFix(),this.alignedObjects=null},createElement:function(t){var e=new this.Element;return e.init(this,t),e},draw:M,getRadialAttr:function(t,e){return{cx:t[0]-t[2]/2+e.cx*t[2],cy:t[1]-t[2]/2+e.cy*t[2],r:e.r*t[2]}},truncate:function(t,e,n,i,r,o,a){var l,s,u,c=this,d=t.rotation,h=i?1:0,f=(n||i).length,m=f,g=[],y=function(t){e.firstChild&&e.removeChild(e.firstChild),t&&e.appendChild(p.createTextNode(t))},_=function(o,l){if(void 0===g[l=l||o])if(e.getSubStringLength)try{g[l]=r+e.getSubStringLength(0,i?l+1:l)}catch(s){}else c.getSpanWidth&&(y(a(n||i,o)),g[l]=r+c.getSpanWidth(t,e));return g[l]};if(t.rotation=0,s=_(e.textContent.length),u=r+s>o){for(;h<=f;)m=Math.ceil((h+f)/2),i&&(l=a(i,m)),s=_(m,l&&l.length-1),h===f?h=f+1:s>o?f=m-1:h=m;0===f?y(""):n&&f===n.length-1||y(l||a(n||i,m))}return i&&i.splice(0,m),t.actualWidth=s,t.rotation=d,u},escapes:{"&":"&","<":"<",">":">","'":"'",'"':"""},buildText:function(t){var e,n,i,r=t.element,a=this,l=a.forExport,u=C(t.textStr,"").toString(),c=-1!==u.indexOf("<"),d=r.childNodes,h=o(r,"x"),f=t.textWidth,m=(x=t.styles)&&x.lineHeight,g=x&&x.textOutline,y=x&&"ellipsis"===x.textOverflow,_=x&&"nowrap"===x.whiteSpace,v=x&&x.fontSize,b=d.length,x=f&&!t.added&&this.box,w=function(t){var e;return a.styledMode||(e=/(px|em)$/.test(t&&t.style.fontSize)?t.style.fontSize:v||a.style.fontSize||12),m?L(m):a.fontMetrics(e,t.getAttribute("style")?t:r).h},k=function(t,e){return S(a.escapes,function(n,i){e&&-1!==e.indexOf(n)||(t=t.toString().replace(new RegExp(n,"g"),i))}),t},M=function(t,e){var n;if(n=t.indexOf("<"),-1!==(n=(t=t.substring(n,t.indexOf(">")-n)).indexOf(e+"="))&&('"'===(e=t.charAt(n=n+e.length+1))||"'"===e))return(t=t.substring(n+1)).substring(0,t.indexOf(e))};if((n=[u,y,_,m,g,v,f].join())!==t.textCache){for(t.textCache=n;b--;)r.removeChild(d[b]);c||g||y||f||-1!==u.indexOf(" ")?(x&&x.appendChild(r),(u=(u=c?(u=a.styledMode?u.replace(/<(b|strong)>/g,'').replace(/<(i|em)>/g,''):u.replace(/<(b|strong)>/g,'').replace(/<(i|em)>/g,'')).replace(/
/g,"
").split(//g):[u]).filter(function(t){return""!==t})).forEach(function(n,u){var c,d=0,m=0;n=n.replace(/^\s+|\s+$/g,"").replace(//g,"|||"),(c=n.split("|||")).forEach(function(n){if(""!==n||1===c.length){var g,b,x={},S=p.createElementNS(a.SVG_NS,"tspan");if((g=M(n,"class"))&&o(S,"class",g),(g=M(n,"style"))&&(g=g.replace(/(;| |^)color([ :])/,"$1fill$2"),o(S,"style",g)),(b=M(n,"href"))&&!l&&(o(S,"onclick",'location.href="'+b+'"'),o(S,"class","highcharts-anchor"),a.styledMode||s(S,{cursor:"pointer"}))," "!==(n=k(n.replace(/<[a-zA-Z\/](.|\n)*?>/g,"")||" "))){if(S.appendChild(p.createTextNode(n)),d?x.dx=0:u&&null!==h&&(x.x=h),o(S,x),r.appendChild(S),!d&&i&&(!A&&l&&s(S,{display:"block"}),o(S,"dy",w(S))),f){var C=n.replace(/([^\^])-/g,"$1- ").split(" ");x=!_&&(1Math.abs(r.end-r.start-2*Math.PI));var u=Math.cos(o),d=Math.sin(o),h=Math.cos(s);return s=Math.sin(s),a=["M",t+a*u,e+l*d,"A",a,l,0,r=.001>r.end-o-Math.PI?0:1,1,t+a*h,e+l*s],c(n)&&a.push(i?"M":"L",t+n*h,e+n*s,"A",n,n,0,r,0,t+n*u,e+n*d),a.push(i?"":"Z"),a},callout:function(t,e,n,i,r){var o,a=Math.min(r&&r.r||0,n,i),l=a+6,s=r&&r.anchorX;return r=r&&r.anchorY,o=["M",t+a,e,"L",t+n-a,e,"C",t+n,e,t+n,e,t+n,e+a,"L",t+n,e+i-a,"C",t+n,e+i,t+n,e+i,t+n-a,e+i,"L",t+a,e+i,"C",t,e+i,t,e+i,t,e+i-a,"L",t,e+a,"C",t,e,t,e,t+a,e],s&&s>n?r>e+l&&rs?r>e+l&&ri&&s>t+l&&sr&&s>t+l&&s(t=/px/.test(t)?L(t):12)?t+3:Math.round(1.2*t),b:Math.round(.8*n),f:t}},rotCorr:function(t,e,n){var i=t;return e&&n&&(i=Math.max(i*Math.cos(e*d),4)),{x:-t/3*Math.sin(e*d),y:i}},label:function(n,i,r,o,a,l,s,u,d){var h,p,m,g,y,_,v,b,x,w,M,S,C=this,L=C.styledMode,T=C.g("button"!==d&&"label"),E=T.text=C.text("",0,0,s).attr({zIndex:1}),A=0,P=3,O=0,Y={},R=/^url\((.*?)\)$/.test(o),I=L||R,F=function(){return L?h.strokeWidth()%2/2:(b?parseInt(b,10):0)%2/2};d&&T.addClass("highcharts-"+d),w=function(){var t=E.element.style,e={};p=(void 0===m||void 0===g||v)&&c(E.textStr)&&E.getBBox(),T.width=(m||p.width||0)+2*P+O,T.height=(g||p.height||0)+2*P,x=P+Math.min(C.fontMetrics(t&&t.fontSize,E).b,p?p.height:1/0),I&&(h||(T.box=h=C.symbols[o]||R?C.symbol(o):C.rect(),h.addClass(("button"===d?"":"highcharts-label-box")+(d?" highcharts-"+d+"-box":"")),h.add(T),t=F(),e.x=t,e.y=(u?-x:0)+t),e.width=Math.round(T.width),e.height=Math.round(T.height),h.attr(f(e,Y)),Y={})},M=function(){var t,e=O+P;t=u?0:x,c(m)&&p&&("center"===v||"right"===v)&&(e+={center:.5,right:1}[v]*(m-p.width)),e===E.x&&t===E.y||(E.attr("x",e),E.hasBoxWidthChanged&&(p=E.getBBox(!0),w()),void 0!==t&&E.attr("y",t)),E.x=e,E.y=t},S=function(t,e){h?h.attr(t,e):Y[t]=e},T.onAdd=function(){E.add(T),T.attr({text:n||0===n?n:"",x:i,y:r}),h&&c(a)&&T.attr({anchorX:a,anchorY:l})},T.widthSetter=function(e){m=t.isNumber(e)?e:null},T.heightSetter=function(t){g=t},T["text-alignSetter"]=function(t){v=t},T.paddingSetter=function(t){c(t)&&t!==P&&(P=T.padding=t,M())},T.paddingLeftSetter=function(t){c(t)&&t!==O&&(O=t,M())},T.alignSetter=function(t){(t={left:0,center:.5,right:1}[t])!==A&&(A=t,p&&T.attr({x:y}))},T.textSetter=function(t){void 0!==t&&E.textSetter(t),w(),M()},T["stroke-widthSetter"]=function(t,e){t&&(I=!0),b=this["stroke-width"]=t,S(e,t)},L?T.rSetter=function(t,e){S(e,t)}:T.strokeSetter=T.fillSetter=T.rSetter=function(t,e){"r"!==e&&("fill"===e&&t&&(I=!0),T[e]=t),S(e,t)},T.anchorXSetter=function(t,e){a=T.anchorX=t,S(e,Math.round(t)-F()-y)},T.anchorYSetter=function(t,e){l=T.anchorY=t,S(e,t-_)},T.xSetter=function(t){T.x=t,A&&(t-=A*((m||p.width)+2*P),T["forceAnimate:x"]=!0),y=Math.round(t),T.attr("translateX",y)},T.ySetter=function(t){_=T.y=Math.round(t),T.attr("translateY",_)};var z=T.css;return s={css:function(t){if(t){var e={};t=k(t),T.textProps.forEach(function(n){void 0!==t[n]&&(e[n]=t[n],delete t[n])}),E.css(e),"width"in e&&w(),"fontSize"in e&&(w(),M())}return z.call(T,t)},getBBox:function(){return{width:p.width+2*P,height:p.height+2*P,x:p.x-P,y:p.y-P}},destroy:function(){D(T.element,"mouseenter"),D(T.element,"mouseleave"),E&&(E=E.destroy()),h&&(h=h.destroy()),e.prototype.destroy.call(T),T=C=w=M=S=null}},L||(s.shadow=function(t){return t&&(w(),h&&h.shadow(t)),T}),f(T,s)}}),t.Renderer=n}(u),function(t){var e=t.attr,n=t.createElement,i=t.css,r=t.defined,o=t.extend,a=t.isFirefox,l=t.isMS,s=t.isWebKit,u=t.pick,c=t.pInt,d=t.SVGElement,h=t.SVGRenderer,p=t.win;o(d.prototype,{htmlCss:function(t){var e,n="SPAN"===this.element.tagName&&t&&"width"in t,r=u(n&&t.width,void 0);return n&&(delete t.width,this.textWidth=r,e=!0),t&&"ellipsis"===t.textOverflow&&(t.whiteSpace="nowrap",t.overflow="hidden"),this.styles=o(this.styles,t),i(this.element,t),e&&this.htmlUpdateTransform(),this},htmlGetBBox:function(){var t=this.element;return{x:t.offsetLeft,y:t.offsetTop,width:t.offsetWidth,height:t.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var t=this.renderer,e=this.element,n=this.translateX||0,o=this.translateY||0,a=this.x||0,l=this.y||0,s=this.textAlign||"left",u={left:0,center:.5,right:1}[s],d=(p=this.styles)&&p.whiteSpace;if(i(e,{marginLeft:n,marginTop:o}),!t.styledMode&&this.shadows&&this.shadows.forEach(function(t){i(t,{marginLeft:n+1,marginTop:o+1})}),this.inverted&&[].forEach.call(e.childNodes,function(n){t.invertChild(n,e)}),"SPAN"===e.tagName){var h,p=this.rotation,f=this.textWidth&&c(this.textWidth),m=[p,s,e.innerHTML,this.textWidth,this.textAlign].join();(h=f!==this.oldTextWidth)&&!(h=f>this.oldTextWidth)&&((h=this.textPxLength)||(i(e,{width:"",whiteSpace:d||"nowrap"}),h=e.offsetWidth),h=h>f),h&&(/[ \-]/.test(e.textContent||e.innerText)||"ellipsis"===e.style.textOverflow)?(i(e,{width:f+"px",display:"block",whiteSpace:d||"normal"}),this.oldTextWidth=f,this.hasBoxWidthChanged=!0):this.hasBoxWidthChanged=!1,m!==this.cTT&&(d=t.fontMetrics(e.style.fontSize,e).b,!r(p)||p===(this.oldRotation||0)&&s===this.oldAlign||this.setSpanRotation(p,u,d),this.getSpanCorrection(!r(p)&&this.textPxLength||e.offsetWidth,d,u,p,s)),i(e,{left:a+(this.xCorr||0)+"px",top:l+(this.yCorr||0)+"px"}),this.cTT=m,this.oldRotation=p,this.oldAlign=s}}else this.alignOnAdd=!0},setSpanRotation:function(t,e,n){var r={},o=this.renderer.getTransformKey();r[o]=r.transform="rotate("+t+"deg)",r[o+(a?"Origin":"-origin")]=r.transformOrigin=100*e+"% "+n+"px",i(this.element,r)},getSpanCorrection:function(t,e,n){this.xCorr=-t*n,this.yCorr=-e}}),o(h.prototype,{getTransformKey:function(){return l&&!/Edge/.test(p.navigator.userAgent)?"-ms-transform":s?"-webkit-transform":a?"MozTransform":p.opera?"-o-transform":""},html:function(i,r,a){var l=this.createElement("span"),s=l.element,c=l.renderer,h=c.isSVG,p=function(t,e){["opacity","visibility"].forEach(function(n){t[n+"Setter"]=function(t,i,r){d.prototype[n+"Setter"].call(this,t,i,r),e[i]=t}}),t.addedSetters=!0},f=(f=t.charts[c.chartIndex])&&f.styledMode;return l.textSetter=function(t){t!==s.innerHTML&&delete this.bBox,this.textStr=t,s.innerHTML=u(t,""),l.doTransform=!0},h&&p(l,l.element.style),l.xSetter=l.ySetter=l.alignSetter=l.rotationSetter=function(t,e){"align"===e&&(e="textAlign"),l[e]=t,l.doTransform=!0},l.afterSetters=function(){this.doTransform&&(this.htmlUpdateTransform(),this.doTransform=!1)},l.attr({text:i,x:Math.round(r),y:Math.round(a)}).css({position:"absolute"}),f||l.css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize}),s.style.whiteSpace="nowrap",l.css=l.htmlCss,h&&(l.add=function(t){var i,r=c.box.parentNode,a=[];if(this.parentGroup=t){if(!(i=t.div)){for(;t;)a.push(t),t=t.parentGroup;a.reverse().forEach(function(t){function s(e,n){t[n]=e,"translateX"===n?u.left=e+"px":u.top=e+"px",t.doTransform=!0}var u,c=e(t.element,"class");c&&(c={className:c}),i=t.div=t.div||n("div",c,{position:"absolute",left:(t.translateX||0)+"px",top:(t.translateY||0)+"px",display:t.display,opacity:t.opacity,pointerEvents:t.styles&&t.styles.pointerEvents},i||r),u=i.style,o(t,{classSetter:function(t){return function(e){this.element.setAttribute("class",e),t.className=e}}(i),on:function(){return a[0].div&&l.on.apply({element:a[0].div},arguments),t},translateXSetter:s,translateYSetter:s}),t.addedSetters||p(t,u)})}}else i=r;return i.appendChild(s),l.added=!0,l.alignOnAdd&&l.htmlUpdateTransform(),l}),l}})}(u),function(t){var e=t.defined,n=t.extend,i=t.merge,r=t.pick,o=t.timeUnits,a=t.win;t.Time=function(t){this.update(t,!1)},t.Time.prototype={defaultOptions:{},update:function(t){var e=r(t&&t.useUTC,!0),n=this;this.options=t=i(!0,this.options||{},t),this.Date=t.Date||a.Date||Date,this.timezoneOffset=(this.useUTC=e)&&t.timezoneOffset,this.getTimezoneOffset=this.timezoneOffsetFunction(),(this.variableTimezone=!(e&&!t.getTimezoneOffset&&!t.timezone))||this.timezoneOffset?(this.get=function(t,e){var i=e.getTime(),r=i-n.getTimezoneOffset(e);return e.setTime(r),t=e["getUTC"+t](),e.setTime(i),t},this.set=function(t,e,i){var r;"Milliseconds"===t||"Seconds"===t||"Minutes"===t&&0==e.getTimezoneOffset()%60?e["set"+t](i):(r=n.getTimezoneOffset(e),r=e.getTime()-r,e.setTime(r),e["setUTC"+t](i),t=n.getTimezoneOffset(e),r=e.getTime()+t,e.setTime(r))}):e?(this.get=function(t,e){return e["getUTC"+t]()},this.set=function(t,e,n){return e["setUTC"+t](n)}):(this.get=function(t,e){return e["get"+t]()},this.set=function(t,e,n){return e["set"+t](n)})},makeTime:function(e,n,i,o,a,l){var s,u,c;return this.useUTC?(s=this.Date.UTC.apply(0,arguments),(u=this.getTimezoneOffset(s))!==(c=this.getTimezoneOffset(s+=u))?s+=c-u:u-36e5!==this.getTimezoneOffset(s-36e5)||t.isSafari||(s-=36e5)):s=new this.Date(e,n,r(i,1),r(o,0),r(a,0),r(l,0)).getTime(),s},timezoneOffsetFunction:function(){var e=this,n=this.options,i=a.moment;if(!this.useUTC)return function(t){return 6e4*new Date(t).getTimezoneOffset()};if(n.timezone){if(i)return function(t){return 6e4*-i.tz(t,n.timezone).utcOffset()};t.error(25)}return this.useUTC&&n.getTimezoneOffset?function(t){return 6e4*n.getTimezoneOffset(t)}:function(){return 6e4*(e.timezoneOffset||0)}},dateFormat:function(e,n,i){if(!t.defined(n)||isNaN(n))return t.defaultOptions.lang.invalidDate||"";e=t.pick(e,"%Y-%m-%d %H:%M:%S");var r=this,o=new this.Date(n),a=this.get("Hours",o),l=this.get("Day",o),s=this.get("Date",o),u=this.get("Month",o),c=this.get("FullYear",o),d=t.defaultOptions.lang,h=d.weekdays,p=d.shortWeekdays,f=t.pad;return o=t.extend({a:p?p[l]:h[l].substr(0,3),A:h[l],d:f(s),e:f(s,2," "),w:l,b:d.shortMonths[u],B:d.months[u],m:f(u+1),o:u+1,y:c.toString().substr(2,2),Y:c,H:f(a),k:a,I:f(a%12||12),l:a%12||12,M:f(r.get("Minutes",o)),p:12>a?"AM":"PM",P:12>a?"am":"pm",S:f(o.getSeconds()),L:f(Math.floor(n%1e3),3)},t.dateFormats),t.objectEach(o,function(t,i){for(;-1!==e.indexOf("%"+i);)e=e.replace("%"+i,"function"==typeof t?t.call(r,n):t)}),i?e.substr(0,1).toUpperCase()+e.substr(1):e},resolveDTLFormat:function(e){return t.isObject(e,!0)?e:{main:(e=t.splat(e))[0],from:e[1],to:e[2]}},getTimeTicks:function(t,i,a,l){var s,u,c=this,d=[],h={};s=new c.Date(i);var p,f=t.unitRange,m=t.count||1;if(l=r(l,1),e(i)){c.set("Milliseconds",s,f>=o.second?0:m*Math.floor(c.get("Milliseconds",s)/m)),f>=o.second&&c.set("Seconds",s,f>=o.minute?0:m*Math.floor(c.get("Seconds",s)/m)),f>=o.minute&&c.set("Minutes",s,f>=o.hour?0:m*Math.floor(c.get("Minutes",s)/m)),f>=o.hour&&c.set("Hours",s,f>=o.day?0:m*Math.floor(c.get("Hours",s)/m)),f>=o.day&&c.set("Date",s,f>=o.month?1:Math.max(1,m*Math.floor(c.get("Date",s)/m))),f>=o.month&&(c.set("Month",s,f>=o.year?0:m*Math.floor(c.get("Month",s)/m)),u=c.get("FullYear",s)),f>=o.year&&c.set("FullYear",s,u-u%m),f===o.week&&(u=c.get("Day",s),c.set("Date",s,c.get("Date",s)-u+l+(u4*o.month||c.getTimezoneOffset(i)!==c.getTimezoneOffset(a)),i=s.getTime(),s=1;id.length&&d.forEach(function(t){0==t%18e5&&"000000000"===c.dateFormat("%H%M%S%L",t)&&(h[t]="day")})}return d.info=n(t,{higherRanks:h,totalRange:f*m}),d}}}(u),function(t){var e=t.color,n=t.merge;t.defaultOptions={colors:"#7cb5ec #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1".split(" "),symbols:["circle","diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:"January February March April May June July August September October November December".split(" "),shortMonths:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),weekdays:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),decimalPoint:".",numericSymbols:"kMGTPE".split(""),resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:" "},global:{},time:t.Time.prototype.defaultOptions,chart:{styledMode:!1,borderRadius:0,colorCount:10,defaultSeriesType:"line",ignoreHiddenSeries:!0,spacing:[10,10,15,10],resetZoomButton:{theme:{zIndex:6},position:{align:"right",x:-10,y:10}},width:null,height:null,borderColor:"#335cad",backgroundColor:"#ffffff",plotBorderColor:"#cccccc"},title:{text:"Chart title",align:"center",margin:15,widthAdjust:-44},subtitle:{text:"",align:"center",widthAdjust:-44},plotOptions:{},labels:{style:{position:"absolute",color:"#333333"}},legend:{enabled:!0,align:"center",alignColumns:!0,layout:"horizontal",labelFormatter:function(){return this.name},borderColor:"#999999",borderRadius:0,navigation:{activeColor:"#003399",inactiveColor:"#cccccc"},itemStyle:{color:"#333333",cursor:"pointer",fontSize:"12px",fontWeight:"bold",textOverflow:"ellipsis"},itemHoverStyle:{color:"#000000"},itemHiddenStyle:{color:"#cccccc"},shadow:!1,itemCheckboxStyle:{position:"absolute",width:"13px",height:"13px"},squareSymbol:!0,symbolPadding:5,verticalAlign:"bottom",x:0,y:0,title:{style:{fontWeight:"bold"}}},loading:{labelStyle:{fontWeight:"bold",position:"relative",top:"45%"},style:{position:"absolute",backgroundColor:"#ffffff",opacity:.5,textAlign:"center"}},tooltip:{enabled:!0,animation:t.svg,borderRadius:3,dateTimeLabelFormats:{millisecond:"%A, %b %e, %H:%M:%S.%L",second:"%A, %b %e, %H:%M:%S",minute:"%A, %b %e, %H:%M",hour:"%A, %b %e, %H:%M",day:"%A, %b %e, %Y",week:"Week from %A, %b %e, %Y",month:"%B %Y",year:"%Y"},footerFormat:"",padding:8,snap:t.isTouchDevice?25:10,headerFormat:'{point.key}
',pointFormat:'\u25cf {series.name}: {point.y}
',backgroundColor:e("#f7f7f7").setOpacity(.85).get(),borderWidth:1,shadow:!0,style:{color:"#333333",cursor:"default",fontSize:"12px",pointerEvents:"none",whiteSpace:"nowrap"}},credits:{enabled:!0,href:"https://www.highcharts.com?credits",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#999999",fontSize:"9px"},text:"Highcharts.com"}},t.setOptions=function(e){return t.defaultOptions=n(!0,t.defaultOptions,e),t.time.update(n(t.defaultOptions.global,t.defaultOptions.time),!1),t.defaultOptions},t.getOptions=function(){return t.defaultOptions},t.defaultPlotOptions=t.defaultOptions.plotOptions,t.time=new t.Time(n(t.defaultOptions.global,t.defaultOptions.time)),t.dateFormat=function(e,n,i){return t.time.dateFormat(e,n,i)}}(u),function(t){var e=t.correctFloat,n=t.defined,i=t.destroyObjectProperties,r=t.fireEvent,o=t.isNumber,a=t.merge,l=t.pick,s=t.deg2rad;t.Tick=function(t,e,n,i,r){this.axis=t,this.pos=e,this.type=n||"",this.isNewLabel=this.isNew=!0,this.parameters=r||{},this.tickmarkOffset=this.parameters.tickmarkOffset,this.options=this.parameters.options,n||i||this.addLabel()},t.Tick.prototype={addLabel:function(){var i,r,o,s,u=this,c=u.axis,d=c.options,h=c.chart,p=c.categories,f=c.names,m=u.pos,g=l(u.options&&u.options.labels,d.labels),y=m===(b=c.tickPositions)[0],_=m===b[b.length-1],v=(p=this.parameters.category||(p?l(p[m],f[m],m):m),u.label),b=b.info;c.isDatetimeAxis&&b&&(i=(r=h.time.resolveDTLFormat(d.dateTimeLabelFormats[!d.grid&&b.higherRanks[m]||b.unitName])).main),u.isFirst=y,u.isLast=_,u.formatCtx={axis:c,chart:h,isFirst:y,isLast:_,dateTimeLabelFormat:i,tickPositionInfo:b,value:c.isLog?e(c.lin2log(p)):p,pos:m},d=c.labelFormatter.call(u.formatCtx,this.formatCtx),(s=r&&r.list)&&(u.shortenLabel=function(){for(o=0;od&&r-h*pa&&(e=Math.round((o-r)/Math.cos(d*s))):(o=r+(1-h)*p,r-h*pa&&(m=a-t.x+m*h,g=-1),(m=Math.min(f,m))m||n.autoRotation&&(c.styles||{}).width)&&(e=m)),e&&(this.shortenLabel?this.shortenLabel():(y.width=Math.floor(e),(i.style||{}).textOverflow||(y.textOverflow="ellipsis"),c.css(y)))},getPosition:function(e,n,i,o){var a=this.axis,l=a.chart,s=o&&l.oldChartHeight||l.chartHeight;return e={x:e?t.correctFloat(a.translate(n+i,null,null,o)+a.transB):a.left+a.offset+(a.opposite?(o&&l.oldChartWidth||l.chartWidth)-a.right-a.left:0),y:e?s-a.bottom+a.offset-(a.opposite?a.height:0):t.correctFloat(s-a.translate(n+i,null,null,o)-a.transB)},r(this,"afterGetPosition",{pos:e}),e},getLabelPosition:function(t,e,i,o,a,l,u,c){var d=this.axis,h=d.transA,p=d.reversed,f=d.staggerLines,m=d.tickRotCorr||{x:0,y:0},g=a.y,y=o||d.reserveSpaceDefault?0:-d.labelOffset*("center"===d.labelAlign?.5:1),_={};return n(g)||(g=0===d.side?i.rotation?-8:-i.getBBox().height:2===d.side?m.y+8:Math.cos(i.rotation*s)*(m.y-i.getBBox(!1,0).height/2)),e=e+g-(l&&!o?l*h*(p?1:-1):0),f&&(i=u/(c||1)%f,d.opposite&&(i=f-i-1),e+=d.labelOffset/f*i),_.x=t=t+a.x+y+m.x-(l&&o?l*h*(p?-1:1):0),_.y=Math.round(e),r(this,"afterGetLabelPosition",{pos:_,tickmarkOffset:l,index:u}),_},getMarkPath:function(t,e,n,i,r,o){return o.crispLine(["M",t,e,"L",t+(r?0:-n),e+(r?n:0)],i)},renderGridLine:function(t,e,n){var i=this.axis,r=i.options,o=this.gridLine,a={},s=this.pos,u=this.type,c=l(this.tickmarkOffset,i.tickmarkOffset),d=i.chart.renderer,h=u?u+"Grid":"grid",p=r[h+"LineWidth"],f=r[h+"LineColor"];r=r[h+"LineDashStyle"],o||(i.chart.styledMode||(a.stroke=f,a["stroke-width"]=p,r&&(a.dashstyle=r)),u||(a.zIndex=1),t&&(e=0),this.gridLine=o=d.path().attr(a).addClass("highcharts-"+(u?u+"-":"")+"grid-line").add(i.gridGroup)),o&&(n=i.getPlotLinePath(s+c,o.strokeWidth()*n,t,"pass"))&&o[t||this.isNew?"attr":"animate"]({d:n,opacity:e})},renderMark:function(t,e,n){var i=this.axis,r=i.options,o=i.chart.renderer,a=this.type,s=a?a+"Tick":"tick",u=i.tickSize(s),c=this.mark,d=!c,h=t.x;t=t.y;var p=l(r[s+"Width"],!a&&i.isXAxis?1:0);r=r[s+"Color"],u&&(i.opposite&&(u[0]=-u[0]),d&&(this.mark=c=o.path().addClass("highcharts-"+(a?a+"-":"")+"tick").add(i.axisGroup),i.chart.styledMode||c.attr({stroke:r,"stroke-width":p})),c[d?"attr":"animate"]({d:this.getMarkPath(h,t,u[0],c.strokeWidth()*n,i.horiz,o),opacity:e}))},renderLabel:function(t,e,n,i){var r=(d=this.axis).horiz,a=d.options,s=this.label,u=a.labels,c=u.step,d=l(this.tickmarkOffset,d.tickmarkOffset),h=!0,p=t.x;t=t.y,s&&o(p)&&(s.xy=t=this.getLabelPosition(p,t,s,r,u,d,i,c),this.isFirst&&!this.isLast&&!l(a.showFirstLabel,1)||this.isLast&&!this.isFirst&&!l(a.showLastLabel,1)?h=!1:!r||u.step||u.rotation||e||0===n||this.handleOverflow(t),c&&i%c&&(h=!1),h&&o(t.y)?(t.opacity=n,s[this.isNewLabel?"attr":"animate"](t),this.isNewLabel=!1):(s.attr("y",-9999),this.isNewLabel=!0))},render:function(e,n,i){var r=(s=this.axis).horiz,o=this.pos,a=l(this.tickmarkOffset,s.tickmarkOffset),s=(a=(o=this.getPosition(r,o,a,n)).x,r&&a===s.pos+s.len||!r&&o.y===s.pos?-1:1);i=l(i,1),this.isActive=!0,this.renderGridLine(n,i,s),this.renderMark(o,i,s),this.renderLabel(o,n,i,e),this.isNew=!1,t.fireEvent(this,"afterRender")},destroy:function(){i(this,this.axis)}}}(u);var c=function(t){var e=t.addEvent,n=t.animObject,i=t.arrayMax,r=t.arrayMin,o=t.color,a=t.correctFloat,l=t.defaultOptions,s=t.defined,u=t.deg2rad,c=t.destroyObjectProperties,d=t.extend,h=t.fireEvent,p=t.format,f=t.getMagnitude,m=t.isArray,g=t.isNumber,y=t.isString,_=t.merge,v=t.normalizeTickInterval,b=t.objectEach,x=t.pick,w=t.removeEvent,k=t.splat,M=t.syncTimeout,S=t.Tick,C=function(){this.init.apply(this,arguments)};return t.extend(C.prototype,{defaultOptions:{dateTimeLabelFormats:{millisecond:{main:"%H:%M:%S.%L",range:!1},second:{main:"%H:%M:%S",range:!1},minute:{main:"%H:%M",range:!1},hour:{main:"%H:%M",range:!1},day:{main:"%e. %b"},week:{main:"%e. %b"},month:{main:"%b '%y"},year:{main:"%Y"}},endOnTick:!1,labels:{enabled:!0,indentation:10,x:0,style:{color:"#666666",cursor:"default",fontSize:"11px"}},maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",minPadding:.01,startOfWeek:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickmarkPlacement:"between",tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb",lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,maxPadding:.05,minPadding:.05,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{allowOverlap:!1,enabled:!1,formatter:function(){return t.numberFormat(this.total,-1)},style:{color:"#000000",fontSize:"11px",fontWeight:"bold",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15},title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},init:function(t,n){var i=n.isX,r=this;r.chart=t,r.horiz=t.inverted&&!r.isZAxis?!i:i,r.isXAxis=i,r.coll=r.coll||(i?"xAxis":"yAxis"),h(this,"init",{userOptions:n}),r.opposite=n.opposite,r.side=n.side||(r.horiz?r.opposite?0:2:r.opposite?1:3),r.setOptions(n);var o=this.options,a=o.type;r.labelFormatter=o.labels.formatter||r.defaultLabelFormatter,r.userOptions=n,r.minPixelPadding=0,r.reversed=o.reversed,r.visible=!1!==o.visible,r.zoomEnabled=!1!==o.zoomEnabled,r.hasNames="category"===a||!0===o.categories,r.categories=o.categories||r.hasNames,r.names||(r.names=[],r.names.keys={}),r.plotLinesAndBandsGroups={},r.isLog="logarithmic"===a,r.isDatetimeAxis="datetime"===a,r.positiveValuesOnly=r.isLog&&!r.allowNegativeLog,r.isLinked=s(o.linkedTo),r.ticks={},r.labelEdge=[],r.minorTicks={},r.plotLinesAndBands=[],r.alternateBands={},r.len=0,r.minRange=r.userMinRange=o.minRange||o.maxZoom,r.range=o.range,r.offset=o.offset||0,r.stacks={},r.oldStacks={},r.stacksTouched=0,r.max=null,r.min=null,r.crosshair=x(o.crosshair,k(t.options.tooltip.crosshairs)[i?0:1],!1),n=r.options.events,-1===t.axes.indexOf(r)&&(i?t.axes.splice(t.xAxis.length,0,r):t.axes.push(r),t[r.coll].push(r)),r.series=r.series||[],t.inverted&&!r.isZAxis&&i&&void 0===r.reversed&&(r.reversed=!0),b(n,function(t,n){e(r,n,t)}),r.lin2log=o.linearToLogConverter||r.lin2log,r.isLog&&(r.val2lin=r.log2lin,r.lin2val=r.lin2log),h(this,"afterInit")},setOptions:function(t){this.options=_(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],_(l[this.coll],t)),h(this,"afterSetOptions",{userOptions:t})},defaultLabelFormatter:function(){var e,n=this.value,i=(d=this.axis).chart.time,r=d.categories,o=this.dateTimeLabelFormat,a=(s=l.lang).numericSymbols,s=s.numericSymbolMagnitude||1e3,u=a&&a.length,c=d.options.labels.format,d=d.isLog?Math.abs(n):d.tickInterval;if(c)e=p(c,this,i);else if(r)e=n;else if(o)e=i.dateFormat(o,n);else if(u&&1e3<=d)for(;u--&&void 0===e;)d>=(i=Math.pow(s,u+1))&&0==10*n%i&&null!==a[u]&&0!==n&&(e=t.numberFormat(n/i,-1)+a[u]);return void 0===e&&(e=1e4<=Math.abs(n)?t.numberFormat(n,-1):t.numberFormat(n,-1,void 0,"")),e},getSeriesExtremes:function(){var t=this,e=t.chart;h(this,"getSeriesExtremes",null,function(){t.hasVisibleSeries=!1,t.dataMin=t.dataMax=t.threshold=null,t.softThreshold=!t.isXAxis,t.buildStacks&&t.buildStacks(),t.series.forEach(function(n){if(n.visible||!e.options.chart.ignoreHiddenSeries){var o,a=n.options,l=a.threshold;t.hasVisibleSeries=!0,t.positiveValuesOnly&&0>=l&&(l=null),t.isXAxis?(a=n.xData).length&&(n=r(a),o=i(a),g(n)||n instanceof Date||(a=a.filter(g),n=r(a),o=i(a)),a.length&&(t.dataMin=Math.min(x(t.dataMin,a[0],n),n),t.dataMax=Math.max(x(t.dataMax,a[0],o),o))):(n.getExtremes(),o=n.dataMax,s(n=n.dataMin)&&s(o)&&(t.dataMin=Math.min(x(t.dataMin,n),n),t.dataMax=Math.max(x(t.dataMax,o),o)),s(l)&&(t.threshold=l),(!a.softThreshold||t.positiveValuesOnly)&&(t.softThreshold=!1))}})}),h(this,"afterGetSeriesExtremes")},translate:function(t,e,n,i,r,o){var a=this.linkedParent||this,l=1,s=0,u=i?a.oldTransA:a.transA;i=i?a.oldMin:a.min;var c=a.minPixelPadding;return r=(a.isOrdinal||a.isBroken||a.isLog&&r)&&a.lin2val,u||(u=a.transA),n&&(l*=-1,s=a.len),a.reversed&&(s-=(l*=-1)*(a.sector||a.len)),e?(t=(t*l+s-c)/u+i,r&&(t=a.lin2val(t))):(r&&(t=a.val2lin(t)),t=g(i)?l*(t-i)*u+s+l*c+(g(o)?u*o:0):void 0),t},toPixels:function(t,e){return this.translate(t,!1,!this.horiz,null,!0)+(e?0:this.pos)},toValue:function(t,e){return this.translate(t-(e?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(t,e,n,i,r){var o,a,l,s,u,c,d=this,p=d.chart,f=d.left,m=d.top,y=n&&p.oldChartHeight||p.chartHeight,_=n&&p.oldChartWidth||p.chartWidth,v=d.transB,b=function(t,e,n){return("pass"!==i&&tn)&&(i?t=Math.min(Math.max(e,t),n):u=!0),t};return h(this,"getPlotLinePath",c={value:t,lineWidth:e,old:n,force:i,translatedValue:r},function(c){r=x(r,d.translate(t,null,null,n)),r=Math.min(Math.max(-1e5,r),1e5),o=l=Math.round(r+v),a=s=Math.round(y-r-v),g(r)?d.horiz?(a=m,s=y-d.bottom,o=l=b(o,f,f+d.width)):(o=f,l=_-d.right,a=s=b(a,m,m+d.height)):(u=!0,i=!1),c.path=u&&!i?null:p.renderer.crispLine(["M",o,a,"L",l,s],e||1)}),c.path},getLinearTickPositions:function(t,e,n){var i,r=a(Math.floor(e/t)*t);n=a(Math.ceil(n/t)*t);var o,l=[];if(a(r+t)===r&&(o=20),this.single)return[e];for(e=r;e<=n&&(l.push(e),(e=a(e+t,o))!==i);)i=e;return l},getMinorTickInterval:function(){var t=this.options;return!0===t.minorTicks?x(t.minorTickInterval,"auto"):!1===t.minorTicks?null:t.minorTickInterval},getMinorTickPositions:function(){var t,e=this,n=e.options,i=e.tickPositions,r=e.minorTickInterval,o=[],a=e.min-(t=e.pointRangePadding||0),l=(t=e.max+t)-a;if(l&&l/r=this.minRange,t=[d-(t=((u=this.minRange)-h+d)/2),x(c.min,d-t)],e&&(t[2]=this.isLog?this.log2lin(this.dataMin):this.dataMin),h=[(d=i(t))+u,x(c.max,d+u)],e&&(h[2]=this.isLog?this.log2lin(this.dataMax):this.dataMax),(h=r(h))-d=S?(n=S,b=0):l.dataMax<=S&&(i=S,_=0)),l.min=x(r,n,l.dataMin),l.max=x(o,i,l.dataMax)),d&&(l.positiveValuesOnly&&!e&&0>=Math.min(l.min,x(l.dataMin,l.min))&&t.error(10,1,u),l.min=a(l.log2lin(l.min),15),l.max=a(l.log2lin(l.max),15)),l.range&&s(l.max)&&(l.userMin=l.min=r=Math.max(l.dataMin,l.minFromRange()),l.userMax=o=l.max,l.range=null),h(l,"foundExtremes"),l.beforePadding&&l.beforePadding(),l.adjustForMinRange(),!(M||l.axisPointRange||l.usePercentage||y)&&s(l.min)&&s(l.max)&&(u=l.max-l.min)&&(!s(r)&&b&&(l.min-=u*b),!s(o)&&_&&(l.max+=u*_)),g(c.softMin)&&!g(l.userMin)&&(l.min=Math.min(l.min,c.softMin)),g(c.softMax)&&!g(l.userMax)&&(l.max=Math.max(l.max,c.softMax)),g(c.floor)&&(l.min=Math.min(Math.max(l.min,c.floor),Number.MAX_VALUE)),g(c.ceiling)&&(l.max=Math.max(Math.min(l.max,c.ceiling),x(l.userMax,-Number.MAX_VALUE))),C&&s(l.dataMin)&&(S=S||0,!s(r)&&l.min=S?l.min=S:!s(o)&&l.max>S&&l.dataMax<=S&&(l.max=S)),l.tickInterval=l.min===l.max||void 0===l.min||void 0===l.max?1:y&&!w&&k===l.linkedParent.options.tickPixelInterval?w=l.linkedParent.tickInterval:x(w,this.tickAmount?(l.max-l.min)/Math.max(this.tickAmount-1,1):void 0,M?1:(l.max-l.min)*k/Math.max(l.len,k)),m&&!e&&l.series.forEach(function(t){t.processData(l.min!==l.oldMin||l.max!==l.oldMax)}),l.setAxisTranslation(!0),l.beforeSetTickPositions&&l.beforeSetTickPositions(),l.postProcessTickInterval&&(l.tickInterval=l.postProcessTickInterval(l.tickInterval)),l.pointRange&&!w&&(l.tickInterval=Math.max(l.pointRange,l.tickInterval)),e=x(c.minTickInterval,l.isDatetimeAxis&&l.closestPointRange),!w&&l.tickIntervall.tickInterval&&1e3l.max)),!!this.tickAmount)),this.tickAmount||(l.tickInterval=l.unsquish()),this.setTickPositions()},setTickPositions:function(){var e,n=this.options,i=n.tickPositions;e=this.getMinorTickInterval();var r=n.tickPositioner,o=n.startOnTick,a=n.endOnTick;this.tickmarkOffset=this.categories&&"between"===n.tickmarkPlacement&&1===this.tickInterval?.5:0,this.minorTickInterval="auto"===e&&this.tickInterval?this.tickInterval/5:e,this.single=this.min===this.max&&s(this.min)&&!this.tickAmount&&(parseInt(this.min,10)===this.min||!1!==n.allowDecimals),this.tickPositions=e=i&&i.slice(),!e&&(!this.ordinalPositions&&(this.max-this.min)/this.tickInterval>Math.max(2*this.len,200)?(e=[this.min,this.max],t.error(19,!1,this.chart)):e=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,n.units),this.min,this.max,n.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),e.length>this.len&&(e=[e[0],e.pop()])[0]===e[1]&&(e.length=1),this.tickPositions=e,r&&(r=r.apply(this,[this.min,this.max])))&&(this.tickPositions=e=r),this.paddedTicks=e.slice(0),this.trimTicks(e,o,a),this.isLinked||(this.single&&2>e.length&&(this.min-=.5,this.max+=.5),i||r||this.adjustTickAmount()),h(this,"afterSetTickPositions")},trimTicks:function(t,e,n){var i=t[0],r=t[t.length-1],o=this.minPointOffset||0;if(h(this,"trimTicks"),!this.isLinked){if(e&&-1/0!==i)this.min=i;else for(;this.min-o>t[0];)t.shift();if(n)this.max=r;else for(;this.max+oe&&(this.finalTickAmt=e,e=5),this.tickAmount=e},adjustTickAmount:function(){var t,e=this.options,n=this.tickInterval,i=this.tickPositions,r=this.tickAmount,o=this.finalTickAmt,l=i&&i.length,u=x(this.threshold,this.softThreshold?0:null);if(this.hasData()){if(lr&&(this.tickInterval*=2,this.setTickPositions());if(s(o)){for(n=e=i.length;n--;)(3===o&&1==n%2||2>=o&&0a&&(e=a)),s(i)&&(ra&&(r=a))),this.displayBtn=void 0!==e||void 0!==r,this.setExtremes(e,r,!1,void 0,{trigger:"zoom"})),t.zoomed=!0}),t.zoomed},setAxisSize:function(){var e=this.chart,n=(l=this.options).offsets||[0,0,0,0],i=this.horiz,r=this.width=Math.round(t.relativeLength(x(l.width,e.plotWidth-n[3]+n[1]),e.plotWidth)),o=this.height=Math.round(t.relativeLength(x(l.height,e.plotHeight-n[0]+n[2]),e.plotHeight)),a=this.top=Math.round(t.relativeLength(x(l.top,e.plotTop+n[0]),e.plotHeight,e.plotTop)),l=this.left=Math.round(t.relativeLength(x(l.left,e.plotLeft+n[3]),e.plotWidth,e.plotLeft));this.bottom=e.chartHeight-o-a,this.right=e.chartWidth-r-l,this.len=Math.max(i?r:o,0),this.pos=i?l:a},getExtremes:function(){var t=this.isLog;return{min:t?a(this.lin2log(this.min)):this.min,max:t?a(this.lin2log(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(t){var e=(n=this.isLog)?this.lin2log(this.min):this.min,n=n?this.lin2log(this.max):this.max;return null===t||-1/0===t?t=e:1/0===t?t=n:e>t?t=e:ne?t.align="right":195e&&(t.align="left")}),t.align},tickSize:function(t){var e,n=this.options,i=n[t+"Length"],r=x(n[t+"Width"],"tick"===t&&this.isXAxis?1:0);return r&&i&&("inside"===n[t+"Position"]&&(i=-i),e=[i,r]),h(this,"afterTickSize",t={tickSize:e}),t.tickSize},labelMetrics:function(){var t=this.tickPositions&&this.tickPositions[0]||0;return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize,this.ticks[t]&&this.ticks[t].label)},unsquish:function(){var t,e,n,i=this.options.labels,r=this.horiz,o=this.tickInterval,l=o,c=this.len/(((this.categories?1:0)+this.max-this.min)/o),d=i.rotation,h=this.labelMetrics(),p=Number.MAX_VALUE,f=this.max-this.min,m=function(t){var e;return(e=1<(e=t/(c||1))?Math.ceil(e):1)*o>f&&1/0!==t&&1/0!==c&&(e=Math.ceil(f/o)),a(e*o)};return r?(n=!i.staggerLines&&!i.step&&(s(d)?[d]:c=n)&&(i=(e=m(Math.abs(h.h/Math.sin(u*n))))+Math.abs(n/360))(i.step||0)&&!i.rotation&&(this.staggerLines||1)*this.len/r||!n&&(i.style&&parseInt(i.style.width,10)||o&&o-e.spacing[3]||.33*e.chartWidth)},renderUnsquish:function(){var t,e,n,i=this.chart,r=i.renderer,o=this.tickPositions,a=this.ticks,l=this.options.labels,s=l&&l.style||{},u=this.horiz,c=this.getSlotWidth(),d=Math.max(1,Math.round(c-2*(l.padding||5))),h={},p=this.labelMetrics(),f=l.style&&l.style.textOverflow,m=0;if(y(l.rotation)||(h.rotation=l.rotation||0),o.forEach(function(t){(t=a[t])&&t.label&&t.label.textPxLength>m&&(m=t.label.textPxLength)}),this.maxLabelLength=m,this.autoRotation)m>d&&m>p.h?h.rotation=this.labelRotation:this.labelRotation=0;else if(c&&(t=d,!f))for(e="clip",d=o.length;!u&&d--;)(n=a[n=o[d]].label)&&(n.styles&&"ellipsis"===n.styles.textOverflow?n.css({textOverflow:"clip"}):n.textPxLength>c&&n.css({width:c+"px"}),n.getBBox().height>this.len/o.length-(p.h-p.f)&&(n.specificTextOverflow="ellipsis"));h.rotation&&(t=m>.5*i.chartHeight?.33*i.chartHeight:m,f||(e="ellipsis")),(this.labelAlign=l.align||this.autoLabelAlign(this.labelRotation))&&(h.align=this.labelAlign),o.forEach(function(n){var i=(n=a[n])&&n.label,r=s.width,o={};i&&(i.attr(h),n.shortenLabel?n.shortenLabel():t&&!r&&"nowrap"!==s.whiteSpace&&(t=this.min&&t<=this.max)&&(i[t]||(i[t]=new S(this,t)),r&&i[t].isNew&&i[t].render(e,!0,-1),i[t].render(e))},render:function(){var e,i,r=this,o=r.chart,a=r.options,l=r.isLog,s=r.isLinked,u=r.tickPositions,c=r.axisTitle,d=r.ticks,p=r.minorTicks,f=r.alternateBands,m=a.stackLabels,y=a.alternateGridColor,_=r.tickmarkOffset,v=r.axisLine,x=r.showAxis,w=n(o.renderer.globalAnimation);r.labelEdge.length=0,r.overlap=!1,[d,p,f].forEach(function(t){b(t,function(t){t.isActive=!1})}),(r.hasData()||s)&&(r.minorTickInterval&&!r.categories&&r.getMinorTickPositions().forEach(function(t){r.renderMinorTick(t)}),u.length&&(u.forEach(function(t,e){r.renderTick(t,e)}),_&&(0===r.min||r.single)&&(d[-1]||(d[-1]=new S(r,-1,null,!0)),d[-1].render(-1))),y&&u.forEach(function(n,a){i=void 0!==u[a+1]?u[a+1]+_:r.max-_,0==a%2&&ne&&(!a||p<=o)&&void 0!==p&&u.push(p),p>o&&(f=!0),p=h}else e=this.lin2log(e),o=this.lin2log(o),t=a?this.getMinorTickInterval():l.tickInterval,t=r("auto"===t?null:t,this._minorAutoInterval,l.tickPixelInterval/(a?5:1)*(o-e)/((a?s/this.tickPositions.length:s)||1)),t=i(t,null,n(t)),u=this.getLinearTickPositions(t,e,o).map(this.log2lin),a||(this._minorAutoInterval=t/5);return a||(this.tickInterval=t),u},e.prototype.log2lin=function(t){return Math.log(t)/Math.LN10},e.prototype.lin2log=function(t){return Math.pow(10,t)}}(),function(t,e){var n=t.arrayMax,i=t.arrayMin,r=t.defined,o=t.destroyObjectProperties,a=t.erase,l=t.merge,s=t.pick;t.PlotLineOrBand=function(t,e){this.axis=t,e&&(this.options=e,this.id=e.id)},t.PlotLineOrBand.prototype={render:function(){t.fireEvent(this,"render");var e=this,n=e.axis,i=n.horiz,o=e.options,a=o.label,u=e.label,c=o.to,d=o.from,h=o.value,p=r(d)&&r(c),f=r(h),m=e.svgElem,g=!m,y=[],_=o.color,v=s(o.zIndex,0),b=o.events,x=(y={class:"highcharts-plot-"+(p?"band ":"line ")+(o.className||"")},{}),w=n.chart.renderer,k=p?"bands":"lines";if(n.isLog&&(d=n.log2lin(d),c=n.log2lin(c),h=n.log2lin(h)),n.chart.styledMode||(f?(y.stroke=_,y["stroke-width"]=o.width,o.dashStyle&&(y.dashstyle=o.dashStyle)):p&&(_&&(y.fill=_),o.borderWidth&&(y.stroke=o.borderColor,y["stroke-width"]=o.borderWidth))),x.zIndex=v,(_=n.plotLinesAndBandsGroups[k+="-"+v])||(n.plotLinesAndBandsGroups[k]=_=w.g("plot-"+k).attr(x).add()),g&&(e.svgElem=m=w.path().attr(y).add(_)),f)y=n.getPlotLinePath(h,m.strokeWidth());else{if(!p)return;y=n.getPlotBandPath(d,c,o)}return g&&y&&y.length?(m.attr({d:y}),b&&t.objectEach(b,function(t,n){m.on(n,function(t){b[n].apply(e,[t])})})):m&&(y?(m.show(),m.animate({d:y})):(m.hide(),u&&(e.label=u=u.destroy()))),a&&r(a.text)&&y&&y.length&&0this.max&&e>this.max,r&&i)for(t&&(n=r.toString()===i.toString(),l=0),t=0;td-u?d:d-u);else{if(!c)return!1;s[t]=Math.max(r,i+u+n>e?i:i+u)}}).apply(0,f)?!1!==(function(t,e,n,i){var r;return ie-l?r=!1:s[t]=ie-n/2?e-n-2:i-n/2,r}).apply(0,m)||r||(y(!0),_()):r?s.x=s.y=0:(y(!0),_())};return(o.inverted||1g&&(u=!1),t=(e.series&&e.series.yAxis&&e.series.yAxis.pos)+(e.plotY||0),t-=p,e.isHeader&&(t=i?-d:l.plotHeight+d),o.push({target:t,rank:e.isHeader?1:0,size:f.tt.getBBox().height+1,point:e,x:g,tt:m})}}),this.cleanSplit(),c.positioner&&o.forEach(function(t){var e=c.positioner.call(r,t.tt.getBBox().width,t.size,t.point);t.x=e.x,t.align=0,t.target=e.y,t.rank=a(e.rank,t.rank)}),t.distribute(o,l.plotHeight+d),o.forEach(function(t){var e=t.point,n=e.series;t.tt.attr({visibility:void 0===t.pos?"hidden":"inherit",x:u||e.isHeader||c.positioner?t.x:e.plotX+l.plotLeft+r.distance,y:t.pos+p,anchorX:e.isHeader?e.plotX+l.plotLeft:e.plotX+n.xAxis.pos,anchorY:e.isHeader?l.plotTop+l.plotHeight/2:e.plotY+n.yAxis.pos})})},updatePosition:function(t){var e,n=this.chart,i=this.getLabel(),r=(this.options.positioner||this.getPosition).call(this,i.width,i.height,t),o=t.plotX+n.plotLeft;t=t.plotY+n.plotTop,this.outside&&(this.renderer.setSize(i.width+(e=(this.options.borderWidth||0)+2*this.distance),i.height+e,!1),o+=n.pointer.chartPosition.left-r.x,t+=n.pointer.chartPosition.top-r.y),this.move(Math.round(r.x),Math.round(r.y||0),o,t)},getDateFormat:function(t,e,n,i){var r,o,a=this.chart.time,l=a.dateFormat("%m-%d %H:%M:%S.%L",e),s={millisecond:15,second:12,minute:9,hour:6,day:3},c="millisecond";for(o in u){if(t===u.week&&+a.dateFormat("%w",e)===n&&"00:00:00.000"===l.substr(6)){o="week";break}if(u[o]>t){o=c;break}if(s[o]&&l.substr(s[o])!=="01-01 00:00:00.000".substr(s[o]))break;"week"!==o&&(c=o)}return o&&(r=a.resolveDTLFormat(i[o]).main),r},getXDateFormat:function(t,e,n){e=e.dateTimeLabelFormats;var i=n&&n.closestPointRange;return(i?this.getDateFormat(i,t.x,n.options.startOfWeek,e):e.day)||e.year},tooltipFooterHeaderFormatter:function(e,n){var o=n?"footer":"header",a=e.series,l=a.tooltipOptions,s=l.xDateFormat,u=a.xAxis,c=u&&"datetime"===u.options.type&&r(e.key),d=l[o+"Format"];return t.fireEvent(this,"headerFormatter",n={isFooter:n,labelConfig:e},function(t){c&&!s&&(s=this.getXDateFormat(e,l,u)),c&&s&&(e.point&&e.point.tooltipDateKeys||["key"]).forEach(function(t){d=d.replace("{point."+t+"}","{point."+t+":"+s+"}")}),a.chart.styledMode&&(d=this.styledModeFormat(d)),t.text=i(d,{point:e,series:a},this.chart.time)}),n.text},bodyFormatter:function(t){return t.map(function(t){var e=t.series.tooltipOptions;return(e[(t.point.formatPrefix||"point")+"Formatter"]||t.point.tooltipFormatter).call(t.point,e[(t.point.formatPrefix||"point")+"Format"]||"")})},styledModeFormat:function(t){return t.replace('style="font-size: 10px"','class="highcharts-header"').replace(/style="color:{(point|series)\.color}"/g,'class="highcharts-color-{$1.colorIndex}"')}}}(u),function(t){var e=t.addEvent,n=t.attr,i=t.charts,r=t.color,o=t.css,a=t.defined,l=t.extend,s=t.find,u=t.fireEvent,c=t.isNumber,d=t.isObject,h=t.offset,p=t.pick,f=t.splat,m=t.Tooltip;t.Pointer=function(t,e){this.init(t,e)},t.Pointer.prototype={init:function(t,e){this.options=e,this.chart=t,this.runChartClick=e.chart.events&&!!e.chart.events.click,this.pinchDown=[],this.lastValidTouch={},m&&(t.tooltip=new m(t,e.tooltip),this.followTouchMove=p(e.tooltip.followTouchMove,!0)),this.setDOMEvents()},zoomOption:function(t){var e=(i=this.chart).options.chart,n=e.zoomType||"",i=i.inverted;/touch/.test(t.type)&&(n=p(e.pinchType,n)),this.zoomX=t=/x/.test(n),this.zoomY=n=/y/.test(n),this.zoomHor=t&&!i||n&&i,this.zoomVert=n&&!i||t&&i,this.hasZoom=t||n},normalize:function(t,e){var n;return n=t.touches?t.touches.length?t.touches.item(0):t.changedTouches[0]:t,e||(this.chartPosition=e=h(this.chart.container)),l(t,{chartX:Math.round(n.pageX-e.left),chartY:Math.round(n.pageY-e.top)})},getCoordinates:function(t){var e={xAxis:[],yAxis:[]};return this.chart.axes.forEach(function(n){e[n.isXAxis?"xAxis":"yAxis"].push({axis:n,value:n.toValue(t[n.horiz?"chartX":"chartY"])})}),e},findNearestKDPoint:function(t,e,n){var i;return t.forEach(function(t){var r=!(t.noSharedTooltip&&e)&&0>t.options.findNearestPointBy.indexOf("y");if(t=t.searchPoint(n,r),(r=d(t,!0))&&!(r=!d(i,!0))){var o=i.dist-t.dist,a=(t.series.group&&t.series.group.zIndex)-(i.series.group&&i.series.group.zIndex);r=0<(0!=(r=i.distX-t.distX)&&e?r:0!==o?o:0!==a?a:i.series.index>t.series.index?-1:1)}r&&(i=t)}),i},getPointFromEvent:function(t){t=t.target;for(var e;t&&!e;)e=t.point,t=t.parentNode;return e},getChartCoordinatesFromPoint:function(t,e){var n=(i=t.series).xAxis,i=i.yAxis,r=p(t.clientX,t.plotX),o=t.shapeArgs;return n&&i?e?{chartX:n.len+n.pos-r,chartY:i.len+i.pos-t.plotY}:{chartX:r+n.pos,chartY:t.plotY+i.pos}:o&&o.x&&o.y?{chartX:o.x,chartY:o.y}:void 0},getHoverData:function(t,e,n,i,r,o){var a,l=[];i=!(!i||!t);var u=e&&!e.stickyTracking?[e]:n.filter(function(t){return t.visible&&!(!r&&t.directTouch)&&p(t.options.enableMouseTracking,!0)&&t.stickyTracking});return e=(a=i?t:this.findNearestKDPoint(u,r,o))&&a.series,a&&(r&&!e.noSharedTooltip?(u=n.filter(function(t){return t.visible&&!(!r&&t.directTouch)&&p(t.options.enableMouseTracking,!0)&&!t.noSharedTooltip})).forEach(function(t){var e=s(t.points,function(t){return t.x===a.x&&!t.isNull});d(e)&&(t.chart.isBoosting&&(e=t.getPoint(e)),l.push(e))}):l.push(a)),{hoverPoint:a,hoverSeries:e,hoverPoints:l}},runPointActions:function(n,r){var o,a,l=this.chart,s=l.tooltip&&l.tooltip.options.enabled?l.tooltip:void 0,u=!!s&&s.shared,c=(o=this.getHoverData(c=r||l.hoverPoint,o=c&&c.series||l.hoverSeries,l.series,"touchmove"!==n.type&&(!!r||o&&o.directTouch&&this.isDirectTouch),u,n)).hoverPoint;if(a=o.hoverPoints,r=(o=o.hoverSeries)&&o.tooltipOptions.followPointer,u=u&&o&&!o.noSharedTooltip,c&&(c!==l.hoverPoint||s&&s.isHidden)){if((l.hoverPoints||[]).forEach(function(t){-1===a.indexOf(t)&&t.setState()}),(a||[]).forEach(function(t){t.setState("hover")}),l.hoverSeries!==o&&o.onMouseOver(),l.hoverPoint&&l.hoverPoint.firePointEvent("mouseOut"),!c.series)return;c.firePointEvent("mouseOver"),l.hoverPoints=a,l.hoverPoint=c,s&&s.refresh(u?a:c,n)}else r&&s&&!s.isHidden&&(c=s.getAnchor([{}],n),s.updatePosition({plotX:c[0],plotY:c[1]}));this.unDocMouseMove||(this.unDocMouseMove=e(l.container.ownerDocument,"mousemove",function(e){var n=i[t.hoverChartIndex];n&&n.pointer.onDocumentMouseMove(e)})),l.axes.forEach(function(e){var i=p(e.crosshair.snap,!0),r=i?t.find(a,function(t){return t.series[e.coll]===e}):void 0;r||!i?e.drawCrosshair(n,r):e.hideCrosshair()})},reset:function(t,e){var n=this.chart,i=n.hoverSeries,r=n.hoverPoint,o=n.hoverPoints,a=n.tooltip,l=a&&a.shared?o:r;t&&l&&f(l).forEach(function(e){e.series.isCartesian&&void 0===e.plotX&&(t=!1)}),t?a&&l&&f(l).length&&(a.refresh(l),a.shared&&o?o.forEach(function(t){t.setState(t.state,!0),t.series.isCartesian&&(t.series.xAxis.crosshair&&t.series.xAxis.drawCrosshair(null,t),t.series.yAxis.crosshair&&t.series.yAxis.drawCrosshair(null,t))}):r&&(r.setState(r.state,!0),n.axes.forEach(function(t){t.crosshair&&t.drawCrosshair(null,r)}))):(r&&r.onMouseOut(),o&&o.forEach(function(t){t.setState()}),i&&i.onMouseOut(),a&&a.hide(e),this.unDocMouseMove&&(this.unDocMouseMove=this.unDocMouseMove()),n.axes.forEach(function(t){t.hideCrosshair()}),this.hoverX=n.hoverPoints=n.hoverPoint=null)},scaleGroups:function(t,e){var n,i=this.chart;i.series.forEach(function(r){n=t||r.getPlotBox(),r.xAxis&&r.xAxis.zoomEnabled&&r.group&&(r.group.attr(n),r.markerGroup&&(r.markerGroup.attr(n),r.markerGroup.clip(e?i.clipRect:null)),r.dataLabelsGroup&&r.dataLabelsGroup.attr(n))}),i.clipRect.attr(e||i.clipBox)},dragStart:function(t){var e=this.chart;e.mouseIsDown=t.type,e.cancelClick=!1,e.mouseDownX=this.mouseDownX=t.chartX,e.mouseDownY=this.mouseDownY=t.chartY},drag:function(t){var e,n=this.chart,i=n.options.chart,o=t.chartX,a=t.chartY,l=this.zoomHor,s=this.zoomVert,u=n.plotLeft,c=n.plotTop,d=n.plotWidth,h=n.plotHeight,p=this.selectionMarker,f=this.mouseDownX,m=this.mouseDownY,g=i.panKey&&t[i.panKey+"Key"];p&&p.touch||(ou+d&&(o=u+d),ac+h&&(a=c+h),this.hasDragged=Math.sqrt(Math.pow(f-o,2)+Math.pow(m-a,2)),10v.max&&(e=v.max-s,c=!0),c?(w-=.8*(w-a[h][0]),b||(M-=.8*(M-a[h][1])),n()):a[h]=[w,M],_||(o[h]=u-g,o[m]=s),o=_?1/y:y,r[m]=s,r[h]=e,i[_?t?"scaleY":"scaleX":"scale"+p]=y,i["translate"+p]=o*g+(w-o*x)},pinch:function(t){var e=this,o=e.chart,a=e.pinchDown,l=t.touches,s=l.length,u=e.lastValidTouch,c=e.hasZoom,d=e.selectionMarker,h={},p=1===s&&(e.inClass(t.target,"highcharts-tracker")&&o.runTrackerClick||e.runChartClick),f={};1t-6&&al?this.maxItemWidth:t.itemWidth;n&&this.itemX-e+s>l&&(this.itemX=e,this.itemY+=o+this.lastLineHeight+r,this.lastLineHeight=0),this.lastItemY=o+this.itemY+r,this.lastLineHeight=Math.max(i,this.lastLineHeight),t._legendItemPos=[this.itemX,this.itemY],n?this.itemX+=s:(this.itemY+=o+i+r,this.lastLineHeight=i),this.offsetWidth=this.widthOption||Math.max((n?this.itemX-e-(t.checkbox?0:a):s)+e,this.offsetWidth)},getAllItems:function(){var t=[];return this.chart.series.forEach(function(e){var n=e&&e.options;e&&u(n.showInLegend,!r(n.linkedTo)&&void 0,!0)&&(t=t.concat(e.legendItems||("point"===n.legendType?e.data:e)))}),o(this,"afterGetAllItems",{allItems:t}),t},getAlignment:function(){var t=this.options;return this.proximate?t.align.charAt(0)+"tv":t.floating?"":t.align.charAt(0)+t.verticalAlign.charAt(0)+t.layout.charAt(0)},adjustMargins:function(t,e){var n=this.chart,i=this.options,o=this.getAlignment(),a=void 0!==n.options.title.margin?n.titleOffset+n.options.title.margin:0;o&&[/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/].forEach(function(s,c){s.test(o)&&!r(t[c])&&(n[l[c]]=Math.max(n[l[c]],n.legend[(c+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][c]*i[c%2?"x":"y"]+u(i.margin,12)+e[c]+(0===c&&(0===n.titleOffset?0:a))))})},proximatePositions:function(){var e=this.chart,n=[],i="left"===this.options.align;this.allItems.forEach(function(r){var o,a;o=i,r.xAxis&&r.points&&(r.xAxis.options.reversed&&(o=!o),o=t.find(o?r.points:r.points.slice(0).reverse(),function(e){return t.isNumber(e.plotY)}),a=r.legendGroup.getBBox().height,n.push({target:r.visible?(o?o.plotY:r.xAxis.height)-.3*a:e.plotHeight,size:a,item:r}))},this),t.distribute(n,e.plotHeight),n.forEach(function(t){t.item._legendItemPos[1]=e.plotTop-e.spacing[0]+t.pos})},render:function(){var e,n,i,r=this.chart,a=r.renderer,l=this.group,u=this.box,c=this.options,h=this.padding;this.itemX=h,this.itemY=this.initialItemY,this.lastItemY=this.offsetWidth=0,this.widthOption=t.relativeLength(c.width,r.spacingBox.width-h),e=r.spacingBox.width-2*h-c.x,-1<["rm","lm"].indexOf(this.getAlignment().substring(0,2))&&(e/=2),this.maxLegendWidth=this.widthOption||e,l||(this.group=l=a.g("legend").attr({zIndex:7}).add(),this.contentGroup=a.g().attr({zIndex:1}).add(l),this.scrollGroup=a.g().add(this.contentGroup)),this.renderTitle(),e=this.getAllItems(),d(e,function(t,e){return(t.options&&t.options.legendIndex||0)-(e.options&&e.options.legendIndex||0)}),c.reversed&&e.reverse(),this.allItems=e,this.display=n=!!e.length,this.itemHeight=this.totalItemWidth=this.maxItemWidth=this.lastLineHeight=0,e.forEach(this.renderItem,this),e.forEach(this.layoutItem,this),e=(this.widthOption||this.offsetWidth)+h,i=this.handleOverflow(i=this.lastItemY+this.lastLineHeight+this.titleHeight),i+=h,u||(this.box=u=a.rect().addClass("highcharts-legend-box").attr({r:c.borderRadius}).add(l),u.isNew=!0),r.styledMode||u.attr({stroke:c.borderColor,"stroke-width":c.borderWidth||0,fill:c.backgroundColor||"none"}).shadow(c.shadow),0l&&!1!==h.enabled?(this.clipHeight=e=Math.max(l-20-this.titleHeight-s,0),this.currentPage=u(this.currentPage,1),this.fullHeight=t,y.forEach(function(t,i){var r=t._legendItemPos[1],o=Math.round(t.legendItem.getBBox().height),a=g.length;(!a||r-g[a-1]>e&&(n||r)!==g[a-1])&&(g.push(n||r),a++),t.pageIx=a-1,n&&(y[i-1].pageIx=a-1),i===y.length-1&&r+o-g[a-1]>e&&r!==n&&(g.push(r),t.pageIx=a),r!==n&&(n=r)}),d||(d=i.clipRect=o.clipRect(0,s,9999,0),i.contentGroup.clip(d)),_(e),m||(this.nav=m=o.g().attr({zIndex:1}).add(this.group),this.up=o.symbol("triangle",0,0,f,f).on("click",function(){i.scroll(-1,p)}).add(m),this.pager=o.text("",15,10).addClass("highcharts-legend-navigation"),r.styledMode||this.pager.css(h.style),this.pager.add(m),this.down=o.symbol("triangle-down",0,0,f,f).on("click",function(){i.scroll(1,p)}).add(m)),i.scroll(0),t=l):m&&(_(),this.nav=m.destroy(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0),t},scroll:function(t,e){var n=this.pages,i=n.length,r=this.clipHeight,o=this.options.navigation,a=this.pager,l=this.padding;(t=this.currentPage+t)>i&&(t=i),0s&&("string"==(i=typeof e[0])?n.name=e[0]:"number"===i&&(n.x=e[0]),u++);c=t.value;)t=e[++i];return this.nonZonedColor||(this.nonZonedColor=this.color),this.color=t&&t.color&&!this.options.color?t.color:this.nonZonedColor,t},destroy:function(){var t,e=this.series.chart,n=e.hoverPoints;for(t in e.pointCount--,n&&(this.setState(),i(n,this),n.length||(e.hoverPoints=null)),this===e.hoverPoint&&this.onMouseOut(),(this.graphic||this.dataLabel||this.dataLabels)&&(d(this),this.destroyElements()),this.legendItem&&e.legend.destroyItem(this),this)this[t]=null},destroyElements:function(){for(var t,e=["graphic","dataLabel","dataLabelUpper","connector","shadowGroup"],n=6;n--;)this[t=e[n]]&&(this[t]=this[t].destroy());this.dataLabels&&(this.dataLabels.forEach(function(t){t.element&&t.destroy()}),delete this.dataLabels),this.connectors&&(this.connectors.forEach(function(t){t.element&&t.destroy()}),delete this.connectors)},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,colorIndex:this.colorIndex,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(t){var e=this.series,n=e.tooltipOptions,i=s(n.valueDecimals,""),r=n.valuePrefix||"",a=n.valueSuffix||"";return e.chart.styledMode&&(t=e.chart.tooltip.styledModeFormat(t)),(e.pointArrayMap||["y"]).forEach(function(e){e="{point."+e,(r||a)&&(t=t.replace(RegExp(e+"}","g"),r+e+"}"+a)),t=t.replace(RegExp(e+"}","g"),e+":,."+i+"f}")}),o(t,{point:this,series:this.series},e.chart.time)},firePointEvent:function(t,e,n){var i=this,o=this.series.options;(o.point.events[t]||i.options&&i.options.events&&i.options.events[t])&&this.importEvents(),"click"===t&&o.allowPointSelect&&(n=function(t){i.select&&i.select(null,t.ctrlKey||t.metaKey||t.shiftKey)}),r(this,t,e,n)},visible:!0}}(u),function(t){var e=t.addEvent,n=t.animObject,i=t.arrayMax,r=t.arrayMin,o=t.correctFloat,a=t.defaultOptions,l=t.defaultPlotOptions,s=t.defined,u=t.erase,c=t.extend,d=t.fireEvent,h=t.isArray,p=t.isNumber,f=t.isString,m=t.merge,g=t.objectEach,y=t.pick,_=t.removeEvent,v=t.splat,b=t.SVGElement,x=t.syncTimeout,w=t.win;t.Series=t.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1e3},events:{},marker:{lineWidth:0,lineColor:"#ffffff",enabledThreshold:2,radius:4,states:{normal:{animation:!0},hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":t.numberFormat(this.y,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0,padding:5},cropThreshold:300,pointRange:0,softThreshold:!0,states:{normal:{animation:!0},hover:{animation:{duration:50},lineWidthPlus:1,marker:{},halo:{size:10,opacity:.25}},select:{animation:{duration:0}}},stickyTracking:!0,turboThreshold:1e3,findNearestPointBy:"x"},{isCartesian:!0,pointClass:t.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",cropShoulder:1,init:function(t,n){d(this,"init",{options:n});var i,r,o=this,a=t.series;o.chart=t,o.options=n=o.setOptions(n),o.linkedSeries=[],o.bindAxes(),c(o,{name:n.name,state:"",visible:!1!==n.visible,selected:!0===n.selected}),g(i=n.events,function(t,n){o.hcEvents&&o.hcEvents[n]&&-1!==o.hcEvents[n].indexOf(t)||e(o,n,t)}),(i&&i.click||n.point&&n.point.events&&n.point.events.click||n.allowPointSelect)&&(t.runTrackerClick=!0),o.getColor(),o.getSymbol(),o.parallelArrays.forEach(function(t){o[t+"Data"]=[]}),o.setData(n.data,!1),o.isCartesian&&(t.hasCartesianSeries=!0),a.length&&(r=a[a.length-1]),o._i=y(r&&r._i,-1)+1,t.orderSeries(this.insert(a)),d(this,"afterInit")},insert:function(t){var e,n=this.options.index;if(p(n)){for(e=t.length;e--;)if(n>=y(t[e].options.index,t[e]._i)){t.splice(e+1,0,this);break}-1===e&&t.unshift(this),e+=1}else t.push(this);return y(e,t.length-1)},bindAxes:function(){var e,n=this,i=n.options,r=n.chart;d(this,"bindAxes",null,function(){(n.axisTypes||[]).forEach(function(o){r[o].forEach(function(t){(i[o]===(e=t.options).index||void 0!==i[o]&&i[o]===e.id||void 0===i[o]&&0===e.index)&&(n.insert(t.series),n[o]=t,t.isDirty=!0)}),n[o]||n.optionalAxis===o||t.error(18,!0,r)})})},updateParallelArrays:function(t,e){var n=t.series,i=arguments,r=p(e)?function(i){var r="y"===i&&n.toYData?n.toYData(t):t[i];n[i+"Data"][e]=r}:function(t){Array.prototype[e].apply(n[t+"Data"],Array.prototype.slice.call(i,2))};n.parallelArrays.forEach(r)},autoIncrement:function(){var t,e=this.options,n=e.pointIntervalUnit,i=this.chart.time,r=y(r=this.xIncrement,e.pointStart,0);return this.pointInterval=t=y(this.pointInterval,e.pointInterval,1),n&&(e=new i.Date(r),"day"===n?i.set("Date",e,i.get("Date",e)+t):"month"===n?i.set("Month",e,i.get("Month",e)+t):"year"===n&&i.set("FullYear",e,i.get("FullYear",e)+t),t=e.getTime()-r),this.xIncrement=r+t,r},setOptions:function(t){var e=this.chart,n=e.options,i=n.plotOptions,r=(e.userOptions||{}).plotOptions||{},o=i[this.type],l=m(t);return t=e.styledMode,d(this,"setOptions",{userOptions:l}),this.userOptions=l,e=m(o,i.series,l),this.tooltipOptions=m(a.tooltip,a.plotOptions.series&&a.plotOptions.series.tooltip,a.plotOptions[this.type].tooltip,n.tooltip.userOptions,i.series&&i.series.tooltip,i[this.type].tooltip,l.tooltip),this.stickyTracking=y(l.stickyTracking,r[this.type]&&r[this.type].stickyTracking,r.series&&r.series.stickyTracking,!(!this.tooltipOptions.shared||this.noSharedTooltip)||e.stickyTracking),null===o.marker&&delete e.marker,this.zoneAxis=e.zoneAxis,n=this.zones=(e.zones||[]).slice(),!e.negativeColor&&!e.negativeFillColor||e.zones||(i={value:e[this.zoneAxis+"Threshold"]||e.threshold||0,className:"highcharts-negative"},t||(i.color=e.negativeColor,i.fillColor=e.negativeFillColor),n.push(i)),n.length&&s(n[n.length-1].value)&&n.push(t?{}:{color:this.color,fillColor:this.fillColor}),d(this,"afterSetOptions",{options:e}),e},getName:function(){return y(this.options.name,"Series "+(this.index+1))},getCyclic:function(t,e,n){var i,r=this.chart,o=this.userOptions,a=t+"Index",l=t+"Counter",u=n?n.length:y(r.options.chart[t+"Count"],r[t+"Count"]);e||(i=y(o[a],o["_"+a]),s(i)||(r.series.length||(r[l]=0),o["_"+a]=i=r[l]%u,r[l]+=1),n&&(e=n[i])),void 0!==i&&(this[a]=i),this[t]=e},getColor:function(){this.chart.styledMode?this.getCyclic("color"):this.options.colorByPoint?this.options.color=null:this.getCyclic("color",this.options.color||l[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol,this.chart.options.symbols)},drawLegendSymbol:t.LegendSymbolMixin.drawLineMarker,updateData:function(e){var n,i,r,o=this.options,a=this.points,l=[],s=this.requireSorting;if(this.xIncrement=null,e.forEach(function(e){var i,u,c;c=(i=t.defined(e)&&this.pointClass.prototype.optionsToObject.call({series:this},e)||{}).x,((i=i.id)||p(c))&&(i&&(u=(u=this.chart.get(i))&&u.index),void 0===u&&p(c)&&(u=this.xData.indexOf(c,r)),-1!==u&&void 0!==u&&this.cropped&&(u=u>=this.cropStart?u-this.cropStart:u),-1===u||void 0===u||a[u]&&a[u].touched?l.push(e):e!==o.data[u]?(a[u].update(e,!1,null,!1),a[u].touched=!0,s&&(r=u+1)):a[u]&&(a[u].touched=!0),n=!0)},this),n)for(e=a.length;e--;)(i=a[e]).touched||i.remove(!1),i.touched=!1;else{if(e.length!==a.length)return!1;e.forEach(function(t,e){a[e].update&&t!==o.data[e]&&a[e].update(t,!1,null,!1)})}return l.forEach(function(t){this.addPoint(t,!1)},this),!0},setData:function(e,n,i,r){var o,a,l=this,s=l.points,u=s&&s.length||0,c=l.options,d=l.chart,m=null,g=l.xAxis,_=c.turboThreshold,v=this.xData,b=this.yData,x=(o=l.pointArrayMap)&&o.length,w=c.keys,k=0,M=1;if(o=(e=e||[]).length,n=y(n,!0),!1!==r&&o&&u&&!l.cropped&&!l.hasGroupedData&&l.visible&&!l.isSeriesBoosting&&(a=this.updateData(e)),!a){if(l.xIncrement=null,l.colorCounter=0,this.parallelArrays.forEach(function(t){l[t+"Data"].length=0}),_&&o>_){for(i=0;null===m&&is||this.forceCrop)&&(i[o-1]d?(i=[],r=[]):this.yData&&(i[0]d)&&(i=(n=this.cropData(this.xData,this.yData,c,d)).xData,r=n.yData,n=n.start,a=!0)),s=i.length||1;--s;)0<(o=m?f(i[s])-f(i[s-1]):i[s]-i[s-1])&&(void 0===l||oo&&g&&(t.error(15,!1,this.chart),g=!1);this.cropped=a,this.cropStart=n,this.processedXData=i,this.processedYData=r,this.closestPointRange=l},cropData:function(t,e,n,i,r){var o,a=t.length,l=0,s=a;for(r=y(r,this.cropShoulder),o=0;o=n){l=Math.max(0,o-r);break}for(n=o;ni){s=n+r;break}return{xData:t.slice(l,s),yData:e.slice(l,s),start:l,end:s}},generatePoints:function(){var t,e,n,i,r=(f=this.options).data,o=this.data,a=this.processedXData,l=this.processedYData,s=this.pointClass,u=a.length,h=this.cropStart||0,p=this.hasGroupedData,f=f.keys,m=[];for(o||p||((o=[]).length=r.length,o=this.data=o),f&&p&&(this.options.keys=!1),i=0;i=m&&(u[l-y]||o)<=g,n&&o)if(n=a.length)for(;n--;)"number"==typeof a[n]&&(c[f++]=a[n]);else c[f++]=a;this.dataMin=r(c),this.dataMax=i(c),d(this,"afterGetExtremes")},translate:function(){this.processedXData||this.processData(),this.generatePoints();var t,e,n,i,r,a=this.options,l=a.stacking,u=this.xAxis,c=u.categories,h=this.yAxis,f=this.points,m=f.length,g=!!this.modifyValue,_=this.pointPlacementToXValue(),v=p(_),b=a.threshold,x=a.startFromThreshold?b:0,w=this.zoneAxis||"y",k=Number.MAX_VALUE;for(t=0;t=C&&(M.isNull=!0),M.plotX=e=o(Math.min(Math.max(-1e5,u.translate(S,0,0,0,1,_,"flags"===this.type)),1e5)),l&&this.visible&&!M.isNull&&D&&D[S]&&(r=this.getStackIndicator(r,S,this.index),n=(C=(L=D[S]).points[r.key])[0],C=C[1],n===x&&r.key===D[S].base&&(n=y(p(b)&&b,h.min)),h.positiveValuesOnly&&0>=n&&(n=null),M.total=M.stackTotal=L.total,M.percentage=L.total&&M.y/L.total*100,M.stackY=C,L.setOffset(this.pointXOffset||0,this.barW||0)),M.yBottom=s(n)?Math.min(Math.max(-1e5,h.translate(n,0,1,0,1)),1e5):null,g&&(C=this.modifyValue(C,M)),M.plotY=n="number"==typeof C&&1/0!==C?Math.min(Math.max(-1e5,h.translate(C,0,1,0,1)),1e5):void 0,M.isInside=void 0!==n&&0<=n&&n<=h.len&&0<=e&&e<=u.len,M.clientX=v?o(u.translate(S,0,0,0,1,_)):e,M.negative=M[w]<(a[w+"Threshold"]||b||0),M.category=c&&void 0!==c[M.x]?c[M.x]:M.x,M.isNull||(void 0!==i&&(k=Math.min(k,Math.abs(e-i))),i=e),M.zone=this.zones.length&&M.getZone()}this.closestPointRangePx=k,d(this,"afterTranslate")},getValidPoints:function(t,e,n){var i=this.chart;return(t||this.points||[]).filter(function(t){return!(e&&!i.isInsidePlot(t.plotX,t.plotY,i.inverted))&&(n||!t.isNull)})},setClip:function(t){var e=this.chart,n=this.options,i=e.renderer,r=e.inverted,o=this.clipBox,a=o||e.clipBox,l=this.sharedClipKey||["_sharedClip",t&&t.duration,t&&t.easing,a.height,n.xAxis,n.yAxis].join(),s=e[l],u=e[l+"m"];s||(t&&(a.width=0,r&&(a.x=e.plotSizeX),e[l+"m"]=u=i.clipRect(r?e.plotSizeX+99:-99,r?-e.plotLeft:-e.plotTop,99,r?e.chartWidth:e.chartHeight)),e[l]=s=i.clipRect(a),s.count={length:0}),t&&!s.count[this.index]&&(s.count[this.index]=!0,s.count.length+=1),!1!==n.clip&&(this.group.clip(t||o?s:e.clipRect),this.markerGroup.clip(u),this.sharedClipKey=l),t||(s.count[this.index]&&(delete s.count[this.index],--s.count.length),0===s.count.length&&l&&e[l]&&(o||(e[l]=e[l].destroy()),e[l+"m"]&&(e[l+"m"]=e[l+"m"].destroy())))},animate:function(t){var e,i=this.chart,r=n(this.options.animation);t?this.setClip(r):((t=i[e=this.sharedClipKey])&&t.animate({width:i.plotSizeX,x:0},r),i[e+"m"]&&i[e+"m"].animate({width:i.plotSizeX+99,x:0},r),this.animate=null)},afterAnimate:function(){this.setClip(),d(this,"afterAnimate"),this.finishedAnimating=!0},drawPoints:function(){var t,e,n,i,r,o,a,l,s=this.points,u=this.chart,c=this.options.marker,d=this[this.specialGroup]||this.markerGroup,h=y(c.enabled,!((t=this.xAxis)&&!t.isRadial)||null,this.closestPointRangePx>=c.enabledThreshold*c.radius);if(!1!==c.enabled||this._hasPointMarkers)for(t=0;to&&e.shadow))),l&&(l.startX=n.xMap,l.isArea=n.isArea)})},getZonesGraphs:function(t){return this.zones.forEach(function(e,n){n=["zone-graph-"+n,"highcharts-graph highcharts-zone-graph-"+n+" "+(e.className||"")],this.chart.styledMode||n.push(e.color||this.color,e.dashStyle||this.options.dashStyle),t.push(n)},this),t},applyZones:function(){var t,e,n,i,r,o,a,l,s,u=this,c=this.chart,d=c.renderer,h=this.zones,p=this.clips||[],f=this.graph,m=this.area,g=Math.max(c.chartWidth,c.chartHeight),_=this[(this.zoneAxis||"y")+"Axis"],v=c.inverted,b=!1;h.length&&(f||m)&&_&&void 0!==_.min&&(r=_.reversed,o=_.horiz,f&&!this.showLine&&f.hide(),m&&m.hide(),i=_.getExtremes(),h.forEach(function(h,x){t=r?o?c.plotWidth:0:o?0:_.toPixels(i.min)||0,t=Math.min(Math.max(y(e,t),0),g),e=Math.min(Math.max(Math.round(_.toPixels(y(h.value,i.max),!0)||0),0),g),b&&(t=e=_.toPixels(i.max)),a=Math.abs(t-e),l=Math.min(t,e),s=Math.max(t,e),_.isXAxis?(n={x:v?s:l,y:0,width:a,height:g},o||(n.x=c.plotHeight-n.x)):(n={x:0,y:v?s:l,width:g,height:a},o&&(n.y=c.plotWidth-n.y)),v&&d.isVML&&(n=_.isXAxis?{x:0,y:r?l:s,height:n.width,width:c.chartWidth}:{x:n.y-c.plotLeft-c.spacingBox.x,y:0,width:n.height,height:c.chartHeight}),p[x]?p[x].animate(n):(p[x]=d.clipRect(n),f&&u["zone-graph-"+x].clip(p[x]),m&&u["zone-area-"+x].clip(p[x])),b=h.value>i.max,u.resetZones&&0===e&&(e=void 0)}),this.clips=p)},invertGroups:function(t){function n(){["group","markerGroup"].forEach(function(e){r[e]&&(o.renderer.isVML&&r[e].attr({width:r.yAxis.len,height:r.xAxis.len}),r[e].width=r.yAxis.len,r[e].height=r.xAxis.len,r[e].invert(t))})}var i,r=this,o=r.chart;r.xAxis&&(i=e(o,"resize",n),e(r,"destroy",i),n(),r.invertGroups=n)},plotGroup:function(t,e,n,i,r){var o=this[t],a=!o;return a&&(this[t]=o=this.chart.renderer.g().attr({zIndex:i||.1}).add(r)),o.addClass("highcharts-"+e+" highcharts-series-"+this.index+" highcharts-"+this.type+"-series "+(s(this.colorIndex)?"highcharts-color-"+this.colorIndex+" ":"")+(this.options.className||"")+(o.hasClass("highcharts-tracker")?" highcharts-tracker":""),!0),o.attr({visibility:n})[a?"attr":"animate"](this.getPlotBox()),o},getPlotBox:function(){var t=this.chart,e=this.xAxis,n=this.yAxis;return t.inverted&&(e=n,n=this.xAxis),{translateX:e?e.left:t.plotLeft,translateY:n?n.top:t.plotTop,scaleX:1,scaleY:1}},render:function(){var t,e=this,i=e.chart,r=e.options,o=!!e.animate&&i.renderer.isSVG&&n(r.animation).duration,a=e.visible?"inherit":"hidden",l=r.zIndex,s=e.hasRendered,u=i.seriesGroup,c=i.inverted;d(this,"render"),t=e.plotGroup("group","series",a,l,u),e.markerGroup=e.plotGroup("markerGroup","markers",a,l,u),o&&e.animate(!0),t.inverted=!!e.isCartesian&&c,e.drawGraph&&(e.drawGraph(),e.applyZones()),e.drawDataLabels&&e.drawDataLabels(),e.visible&&e.drawPoints(),e.drawTracker&&!1!==e.options.enableMouseTracking&&e.drawTracker(),e.invertGroups(c),!1===r.clip||e.sharedClipKey||s||t.clip(i.clipRect),o&&e.animate(),s||(e.animationTimeout=x(function(){e.afterAnimate()},o)),e.isDirty=!1,e.hasRendered=!0,d(e,"afterRender")},redraw:function(){var t=this.chart,e=this.isDirty||this.isDirtyData,n=this.group,i=this.xAxis,r=this.yAxis;n&&(t.inverted&&n.attr({width:t.plotWidth,height:t.plotHeight}),n.animate({translateX:y(i&&i.left,t.plotLeft),translateY:y(r&&r.top,t.plotTop)})),this.translate(),this.render(),e&&delete this.kdTree},kdAxisArray:["clientX","plotY"],searchPoint:function(t,e){var n=this.xAxis,i=this.yAxis,r=this.chart.inverted;return this.searchKDTree({clientX:r?n.len-t.chartY+n.pos:t.chartX-n.pos,plotY:r?i.len-t.chartX+i.pos:t.chartY-i.pos},e,t)},buildKDTree:function(t){this.buildingKdTree=!0;var e=this,n=-1(p=e[p]-h[p])?"right":"left",n[c=0>p?"left":"right"]&&(f=(c=t(e,n[c],l+1,u))[a]l;)a--;this.updateParallelArrays(r,"splice",a,0,0),this.updateParallelArrays(r,a),d&&r.name&&(d[l]=r.name),h.splice(a,0,t),o&&(this.data.splice(a,0,null),this.processData()),"point"===s.legendType&&this.generatePoints(),n&&(u[0]&&u[0].remove?u[0].remove(!1):(u.shift(),this.updateParallelArrays(r,"shift"),h.shift())),this.isDirtyData=this.isDirty=!0,e&&c.redraw(i)},removePoint:function(t,e,n){var i=this,r=i.data,o=r[t],a=i.points,l=i.chart,s=function(){a&&a.length===r.length&&a.splice(t,1),r.splice(t,1),i.options.data.splice(t,1),i.updateParallelArrays(o||{series:i},"splice",t,1),o&&o.destroy(),i.isDirty=!0,i.isDirtyData=!0,e&&l.redraw()};b(n,l),e=g(e,!0),o?o.firePointEvent("remove",null,s):s()},remove:function(t,e,n,i){function r(){o.destroy(i),o.remove=null,a.isDirtyLegend=a.isDirtyBox=!0,a.linkSeries(),g(t,!0)&&a.redraw(e)}var o=this,a=o.chart;!1!==n?c(o,"remove",null,r):r()},update:function(e,n){e=t.cleanRecursively(e,this.userOptions);var i,r=this,o=r.chart,a=r.userOptions,l=r.initialType||r.type,s=e.type||a.type||o.options.chart.type,d=v[l].prototype,h=["group","markerGroup","dataLabelsGroup"],p=["navigatorSeries","baseSeries"],m=r.finishedAnimating&&{animation:!1},y=["data","name","turboThreshold"],_=Object.keys(e),b=0<_.length;if(_.forEach(function(t){-1===y.indexOf(t)&&(b=!1)}),b)e.data&&this.setData(e.data,!1),e.name&&this.setName(e.name,!1);else{for(i in(p=h.concat(p)).forEach(function(t){p[t]=r[t],delete r[t]}),e=f(a,m,{index:r.index,pointStart:g(a.pointStart,r.xData[0])},{data:r.options.data},e),r.remove(!1,null,!1,!0),d)r[i]=void 0;v[s||l]?u(r,v[s||l].prototype):t.error(17,!0,o),p.forEach(function(t){r[t]=p[t]}),r.init(o,e),e.zIndex!==a.zIndex&&h.forEach(function(t){r[t]&&r[t].attr({zIndex:e.zIndex})}),r.initialType=l,o.linkSeries()}c(this,"afterUpdate"),g(n,!0)&&o.redraw(!!b&&void 0)},setName:function(t){this.name=this.options.name=this.userOptions.name=t,this.chart.isDirtyLegend=!0}}),u(i.prototype,{update:function(t,e){var n=this.chart,i=t&&t.events||{};t=f(this.userOptions,t),n.options[this.coll].indexOf&&(n.options[this.coll][n.options[this.coll].indexOf(this.userOptions)]=t),m(n.options[this.coll].events,function(t,e){void 0===i[e]&&(i[e]=void 0)}),this.destroy(!0),this.init(n,u(t,{events:i})),n.isDirtyBox=!0,g(e,!0)&&n.redraw()},remove:function(t){for(var e=this.chart,n=this.coll,i=this.series,r=i.length;r--;)i[r]&&i[r].remove(!1);s(e.axes,this),s(e[n],this),p(e.options[n])?e.options[n].splice(this.options.index,1):delete e.options[n],e[n].forEach(function(t,e){t.options.index=t.userOptions.index=e}),this.destroy(),e.isDirtyBox=!0,g(t,!0)&&e.redraw()},setTitle:function(t,e){this.update({title:t},e)},setCategories:function(t,e){this.update({categories:t},e)}})}(u),function(t){var e=t.color,n=t.pick,i=t.Series;(0,t.seriesType)("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(e){var i,r,o=[],a=[],l=this.xAxis,s=this.yAxis,u=s.stacks[this.stackKey],c={},d=this.index,h=s.series,p=h.length,f=n(s.options.reversedStacks,!0)?1:-1;if(e=e||this.points,this.options.stacking){for(r=0;rt&&o>u?l=2*u-(o=Math.max(t,u)):oi&&l>u?o=2*u-(l=Math.max(i,u)):l=Math.abs(e)&&.5t.closestPointRange*t.xAxis.transA,o=(i=t.borderWidth=l(n.borderWidth,i?0:1),t.yAxis),a=n.threshold,u=t.translatedThreshold=o.getThreshold(a),c=l(n.minPointLength,5),d=t.getColumnMetrics(),h=d.width,p=t.barW=Math.max(h,1+2*i),f=t.pointXOffset=d.offset;e.inverted&&(u-=.5),n.pointPadding&&(p=Math.ceil(p)),s.prototype.translate.apply(t),t.points.forEach(function(n){var i,s=l(n.yBottom,u),d=999+Math.abs(s),m=h,g=(d=Math.min(Math.max(-d,n.plotY),o.len+d),n.plotX+f),y=p,_=Math.min(d,s),v=Math.max(d,s)-_;c&&Math.abs(v)c?s-c:u-(i?c:0)),r(n.options.pointWidth)&&(m=y=Math.ceil(n.options.pointWidth),g-=Math.round((m-h)/2)),n.barX=g,n.pointWidth=m,n.tooltipPos=e.inverted?[o.len+o.pos-e.plotLeft-d,t.xAxis.len-g-y/2,v]:[g+y/2,d+o.pos-e.plotTop,v],n.shapeType=n.shapeType||"rect",n.shapeArgs=t.crispCol.apply(t,n.isNull?[g,u,y,0]:[g,_,y,v])})},getSymbol:u.noop,drawLegendSymbol:u.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(t,e){var i,r=this.options;i=(c=this.pointAttrToOptions||{}).stroke||"borderColor";var o=c["stroke-width"]||"borderWidth",l=t&&t.color||this.color,s=t&&t[i]||r[i]||this.color||l,u=t&&t[o]||r[o]||this[o]||0,c=r.dashStyle;return t&&this.zones.length&&(l=t.getZone(),l=t.options.color||l&&l.color||this.color),e&&(e=(t=a(r.states[e],t.options.states&&t.options.states[e]||{})).brightness,l=t.color||void 0!==e&&n(l).brighten(t.brightness).get()||l,s=t[i]||s,u=t[o]||u,c=t.dashStyle||c),i={fill:l,stroke:s,"stroke-width":u},c&&(i.dashstyle=c),i},drawPoints:function(){var t,e=this,n=this.chart,i=e.options,r=n.renderer,l=i.animationLimit||250;e.points.forEach(function(s){var u=s.graphic,c=u&&n.pointCount\u25cf
{series.name}
',pointFormat:"x: {point.x}
y: {point.y}
"}},{sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","markerGroup","dataLabelsGroup"],takeOrdinalPosition:!1,drawGraph:function(){this.options.lineWidth&&e.prototype.drawGraph.call(this)},applyJitter:function(){var t=this,e=this.options.jitter,n=this.points.length;e&&this.points.forEach(function(i,r){["x","y"].forEach(function(o,a){var l,s,u,c="plot"+o.toUpperCase();e[o]&&!i.isNull&&(u=e[o]*(l=t[o+"Axis"]).transA,l&&!l.isLog&&(s=Math.max(0,i[c]-u),l=Math.min(l.len,i[c]+u),a=1e4*Math.sin(r+a*n),i[c]=s+(l-s)*(a-Math.floor(a)),"x"===o&&(i.clientX=i.plotX)))})})}}),t.addEvent(e,"afterTranslate",function(){this.applyJitter&&this.applyJitter()})}(u),function(t){var e=u.deg2rad,n=u.isNumber,i=u.pick,r=u.relativeLength;u.CenteredSeriesMixin={getCenter:function(){var t,e,n=this.options,o=2*(n.slicedOffset||0),a=(l=this.chart).plotWidth-2*o,l=l.plotHeight-2*o,s=[i((s=n.center)[0],"50%"),i(s[1],"50%"),n.size||"100%",n.innerSize||0],u=Math.min(a,l);for(t=0;4>t;++t)e=s[t],n=2>t||2===t&&/%$/.test(e),s[t]=r(e,[a,l,u,s[2]][t])+(n?o:0);return s[3]>s[2]&&(s[3]=s[2]),s},getStartAndEndRadians:function(t,i){return t=n(t)?t:0,i=n(i)&&i>t&&360>i-t?i:t+360,{start:e*(t+-90),end:e*(i+-90)}}}}(),function(t){var e=t.addEvent,n=t.CenteredSeriesMixin,i=t.defined,r=t.extend,o=n.getStartAndEndRadians,a=t.noop,l=t.pick,s=t.Point,u=t.Series,c=t.setAnimation;(0,t.seriesType)("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{allowOverlap:!0,connectorPadding:5,distance:30,enabled:!0,formatter:function(){return this.point.isNull?void 0:this.point.name},softConnector:!0,x:0,connectorShape:"fixedOffset",crookDistance:"70%"},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:t.seriesTypes.column.prototype.pointAttribs,animate:function(t){var e=this,n=e.startAngleRad;t||(e.points.forEach(function(t){var i=t.graphic,r=t.shapeArgs;i&&(i.attr({r:t.startR||e.center[3]/2,start:n,end:n}),i.animate({r:r.r,start:r.start,end:r.end},e.options.animation))}),e.animate=null)},updateTotals:function(){var t,e,n=0,i=this.points,r=i.length,o=this.options.ignoreHiddenPoint;for(t=0;t1.5*Math.PI?n-=2*Math.PI:n<-Math.PI/2&&(n+=2*Math.PI),s.slicedTranslation={translateX:Math.round(Math.cos(n)*c),translateY:Math.round(Math.sin(n)*c)},i=Math.cos(n)*t[2]/2,r=Math.sin(n)*t[2]/2,s.tooltipPos=[t[0]+.7*i,t[1]+.7*r],s.half=n<-Math.PI/2||n>Math.PI/2?1:0,s.angle=n,e=Math.min(d,s.labelDistance/5),s.labelPosition={natural:{x:t[0]+i+Math.cos(n)*s.labelDistance,y:t[1]+r+Math.sin(n)*s.labelDistance},final:{},alignment:0>s.labelDistance?"center":s.half?"right":"left",connectorPosition:{breakAt:{x:t[0]+i+Math.cos(n)*e,y:t[1]+r+Math.sin(n)*e},touchingSliceAt:{x:t[0]+i,y:t[1]+r}}}},drawGraph:null,drawPoints:function(){var t,e,n,i,o=this,a=o.chart,l=a.renderer,s=o.options.shadow;!s||o.shadowGroup||a.styledMode||(o.shadowGroup=l.g("shadow").add(o.group)),o.points.forEach(function(u){if(e=u.graphic,u.isNull)e&&(u.graphic=e.destroy());else{if(i=u.shapeArgs,t=u.getTranslate(),!a.styledMode){var c=u.shadowGroup;s&&!c&&(c=u.shadowGroup=l.g("shadow").add(o.shadowGroup)),c&&c.attr(t),n=o.pointAttribs(u,u.selected&&"select")}e?(e.setRadialReference(o.center),a.styledMode||e.attr(n),e.animate(r(i,t))):(u.graphic=e=l[u.shapeType](i).setRadialReference(o.center).attr(t).add(o.group),a.styledMode||e.attr(n).attr({"stroke-linejoin":"round"}).shadow(s,c)),e.attr({visibility:u.visible?"inherit":"hidden"}),e.addClass(u.getClassName())}})},searchPoint:a,sortByAngle:function(t,e){t.sort(function(t,n){return void 0!==t.angle&&(n.angle-t.angle)*e})},drawLegendSymbol:t.LegendSymbolMixin.drawRectangle,getCenter:n.getCenter,getSymbol:a},{init:function(){s.prototype.init.apply(this,arguments);var t,n=this;return n.name=l(n.name,"Slice"),t=function(t){n.slice("select"===t.type)},e(n,"select",t),e(n,"unselect",t),n},isValid:function(){return t.isNumber(this.y,!0)&&0<=this.y},setVisible:function(t,e){var n=this,i=n.series,r=i.chart,o=i.options.ignoreHiddenPoint;e=l(e,o),t!==n.visible&&(n.visible=n.options.visible=t=void 0===t?!n.visible:t,i.options.data[i.data.indexOf(n)]=n.options,["graphic","dataLabel","connector","shadowGroup"].forEach(function(e){n[e]&&n[e][t?"show":"hide"](!0)}),n.legendItem&&r.legend.colorizeItem(n,t),t||"hover"!==n.state||n.setState(""),o&&(i.isDirty=!0),e&&r.redraw())},slice:function(t,e,n){var r=this.series;c(n,r.chart),l(e,!0),this.sliced=this.options.sliced=i(t)?t:!this.sliced,r.options.data[r.data.indexOf(this)]=this.options,this.graphic.animate(this.getTranslate()),this.shadowGroup&&this.shadowGroup.animate(this.getTranslate())},getTranslate:function(){return this.sliced?this.slicedTranslation:{translateX:0,translateY:0}},haloPath:function(t){var e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+t,e.r+t,{innerR:this.shapeArgs.r-1,start:e.start,end:e.end})},connectorShapes:{fixedOffset:function(t,e,n){var i=e.breakAt;return e=e.touchingSliceAt,["M",t.x,t.y].concat(n.softConnector?["C",t.x+("left"===t.alignment?-5:5),t.y,2*i.x-e.x,2*i.y-e.y,i.x,i.y]:["L",i.x,i.y]).concat(["L",e.x,e.y])},straight:function(t,e){return["M",t.x,t.y,"L",(e=e.touchingSliceAt).x,e.y]},crookedLine:function(e,n,i){n=n.touchingSliceAt;var r=(l=this.series).center[0],o=l.chart.plotWidth,a=l.chart.plotLeft,l=e.alignment,s=this.shapeArgs.r;return i=t.relativeLength(i.crookDistance,1),r=["L",i="left"===l?r+s+(o+a-r-s)*(1-i):a+(r-s)*i,e.y],("left"===l?i>e.x||in.x)&&(r=[]),["M",e.x,e.y].concat(r).concat(["L",n.x,n.y])}},getConnectorPath:function(){var t=this.labelPosition,e=this.series.options.dataLabels,n=e.connectorShape,i=this.connectorShapes;return i[n]&&(n=i[n]),n.call(this,{x:t.final.x,y:t.final.y,alignment:t.alignment},t.connectorPosition,e)}})}(u),function(t){var e=t.addEvent,n=t.arrayMax,i=t.defined,r=t.extend,o=t.format,a=t.merge,l=t.noop,s=t.pick,u=t.relativeLength,c=t.Series,d=t.seriesTypes,h=t.stableSort,p=t.isArray,f=t.splat;t.distribute=function(e,n,i){function r(t,e){return t.target-e.target}var o,a,l=!0,u=e,c=[];a=0;var d=u.reducedLen||n;for(o=e.length;o--;)a+=e[o].size;if(a>d){for(h(e,function(t,e){return(e.rank||0)-(t.rank||0)}),a=o=0;a<=d;)a+=e[o].size,o++;c=e.splice(o-1,e.length)}for(h(e,r),e=e.map(function(t){return{size:t.size,targets:[t.target],align:s(t.align,.5)}});l;){for(o=e.length;o--;)l=e[o],a=(Math.min.apply(0,l.targets)+Math.max.apply(0,l.targets))/2,l.pos=Math.min(Math.max(0,a-l.size*l.align),n-l.size);for(o=e.length,l=!1;o--;)0e[o].pos&&(e[o-1].size+=e[o].size,e[o-1].targets=e[o-1].targets.concat(e[o].targets),e[o-1].align=.5,e[o-1].pos+e[o-1].size>n&&(e[o-1].pos=n-e[o-1].size),e.splice(o,1),l=!0)}u.push.apply(u,c),o=0,e.some(function(e){var r=0;if(e.targets.some(function(){if(u[o].pos=e.pos+r,Math.abs(u[o].pos-u[o].target)>i)return u.slice(0,o+1).forEach(function(t){delete t.pos}),u.reducedLen=(u.reducedLen||n)-.1*n,u.reducedLen>.1*n&&t.distribute(u,n,i),!0;r+=u[o].size,o++}))return!0}),h(u,r)},c.prototype.drawDataLabels=function(){function n(t,e){var n,i=[];if(p(t)&&!p(e))i=t.map(function(t){return a(t,e)});else if(p(e)&&!p(t))i=e.map(function(e){return a(t,e)});else if(p(t)||p(e))for(n=Math.max(t.length,e.length);n--;)i[n]=a(t[n],e[n]);else i=a(t,e);return i}var r,l=this,u=l.chart,c=l.options,d=l.points,h=l.hasRendered||0,m=s((y=c.dataLabels).defer,!!c.animation),g=u.renderer,y=n(n(u.options.plotOptions&&u.options.plotOptions.series&&u.options.plotOptions.series.dataLabels,u.options.plotOptions&&u.options.plotOptions[l.type]&&u.options.plotOptions[l.type].dataLabels),y);t.fireEvent(this,"drawDataLabels"),(p(y)||y.enabled||l._hasPointLabels)&&(r=l.plotGroup("dataLabelsGroup","data-labels",m&&!h?"hidden":"visible",y.zIndex||6),m&&(r.attr({opacity:+h}),h||e(l,"afterAnimate",function(){l.visible&&r.show(!0),r[c.animation?"animate":"attr"]({opacity:1},{duration:200})})),d.forEach(function(e){f(n(y,e.dlOptions||e.options&&e.options.dataLabels)).forEach(function(n,a){var d,h,p,f,m=n.enabled&&!e.isNull&&function(t,e){var n=e.filter;return!n||(e=n.operator,t=t[n.property],n=n.value,">"===e&&t>n||"<"===e&&t="===e&&t>=n||"<="===e&&t<=n||"=="===e&&t==n||"==="===e&&t===n)}(e,n),y=e.dataLabels?e.dataLabels[a]:e.dataLabel,_=e.connectors?e.connectors[a]:e.connector,v=!y;m&&(d=e.getLabelConfig(),d=i(h=n[e.formatPrefix+"Format"]||n.format)?o(h,d,u.time):(n[e.formatPrefix+"Formatter"]||n.formatter).call(d,n),h=n.style,p=n.rotation,u.styledMode||(h.color=s(n.color,h.color,l.color,"#000000"),"contrast"===h.color&&(e.contrastColor=g.getContrast(e.color||l.color),h.color=n.inside||0>s(n.distance,e.labelDistance)||c.stacking?e.contrastColor:"#000000"),c.cursor&&(h.cursor=c.cursor)),f={r:n.borderRadius||0,rotation:p,padding:n.padding,zIndex:1},u.styledMode||(f.fill=n.backgroundColor,f.stroke=n.borderColor,f["stroke-width"]=n.borderWidth),t.objectEach(f,function(t,e){void 0===t&&delete f[e]})),!y||m&&i(d)?m&&i(d)&&(y?f.text=d:(e.dataLabels=e.dataLabels||[],y=e.dataLabels[a]=p?g.text(d,0,-9999).addClass("highcharts-data-label"):g.label(d,0,-9999,n.shape,null,null,n.useHTML,null,"data-label"),a||(e.dataLabel=y),y.addClass(" highcharts-data-label-color-"+e.colorIndex+" "+(n.className||"")+(n.useHTML?" highcharts-tracker":""))),y.options=n,y.attr(f),u.styledMode||y.css(h).shadow(n.shadow),y.added||y.add(r),l.alignDataLabel(e,y,n,null,v)):(e.dataLabel=e.dataLabel&&e.dataLabel.destroy(),e.dataLabels&&(1===e.dataLabels.length?delete e.dataLabels:delete e.dataLabels[a]),a||delete e.dataLabel,_&&(e.connector=e.connector.destroy(),e.connectors&&(1===e.connectors.length?delete e.connectors:delete e.connectors[a])))})})),t.fireEvent(this,"afterDrawDataLabels")},c.prototype.alignDataLabel=function(t,e,n,i,o){var a,l=this.chart,u=this.isCartesian&&l.inverted,c=s(t.dlBox&&t.dlBox.centerX,t.plotX,-9999),d=s(t.plotY,-9999),h=e.getBBox(),p=n.rotation,f=n.align,m=this.visible&&(t.series.forceDL||l.isInsidePlot(c,Math.round(d),u)||i&&l.isInsidePlot(c,u?i.x+1:i.y+i.height-1,u)),g="justify"===s(n.overflow,"justify");m&&(a=l.renderer.fontMetrics(l.styledMode?void 0:n.style.fontSize,e).b,i=r({x:u?this.yAxis.len-d:c,y:Math.round(u?this.xAxis.len-c:d),width:0,height:0},i),r(n,{width:h.width,height:h.height}),p?(g=!1,c=l.renderer.rotCorr(a,p),e[o?"attr":"animate"](c={x:i.x+n.x+i.width/2+c.x,y:i.y+n.y+{top:0,middle:.5,bottom:1}[n.verticalAlign]*i.height}).attr({align:f}),d=180<(d=(p+720)%360)&&360>d,"left"===f?c.y-=d?h.height:0:"center"===f?(c.x-=h.width/2,c.y-=h.height/2):"right"===f&&(c.x-=h.width,c.y-=d?0:h.height),e.placed=!0,e.alignAttr=c):(e.align(n,null,i),c=e.alignAttr),g&&0<=i.height?t.isLabelJustified=this.justifyDataLabel(e,n,c,h,i,o):s(n.crop,!0)&&(m=l.isInsidePlot(c.x,c.y)&&l.isInsidePlot(c.x+h.width,c.y+h.height)),n.shape&&!p)&&e[o?"attr":"animate"]({anchorX:u?l.plotWidth-t.plotY:t.plotX,anchorY:u?l.plotHeight-t.plotX:t.plotY}),m||(e.attr({y:-9999}),e.placed=!1)},c.prototype.justifyDataLabel=function(t,e,n,i,r,o){var a,l,s=this.chart,u=e.align,c=e.verticalAlign,d=t.box?0:t.padding||0;return 0>(a=n.x+d)&&("right"===u?e.align="left":e.x=-a,l=!0),(a=n.x+i.width-d)>s.plotWidth&&("left"===u?e.align="right":e.x=s.plotWidth-a,l=!0),0>(a=n.y+d)&&("bottom"===c?e.verticalAlign="top":e.y=-a,l=!0),(a=n.y+i.height-d)>s.plotHeight&&("top"===c?e.verticalAlign="bottom":e.y=s.plotHeight-a,l=!0),l&&(t.placed=!o,t.align(e,null,r)),l},d.pie&&(d.pie.prototype.dataLabelPositioners={radialDistributionY:function(t){return t.top+t.distributeBox.pos},radialDistributionX:function(t,e,n,i){return t.getX(ne.bottom-2?i:n,e.half,e)},justify:function(t,e,n){return n[0]+(t.half?-1:1)*(e+t.labelDistance)},alignToPlotEdges:function(t,e,n,i){return t=t.getBBox().width,e?t+i:n-t-i},alignToConnectors:function(t,e,n,i){var r,o=0;return t.forEach(function(t){(r=t.dataLabel.getBBox().width)>o&&(o=r)}),e?o+i:n-o-i}},d.pie.prototype.drawDataLabels=function(){var e,r,o,a,l,u,d,h,p,f,m=this,g=m.data,y=m.chart,_=m.options.dataLabels,v=_.connectorPadding,b=s(_.connectorWidth,1),x=y.plotWidth,w=y.plotHeight,k=y.plotLeft,M=Math.round(y.chartWidth/3),S=m.center,C=S[2]/2,L=S[1],D=[[],[]],T=[0,0,0,0],E=m.dataLabelPositioners;m.visible&&(_.enabled||m._hasPointLabels)&&(g.forEach(function(t){t.dataLabel&&t.visible&&t.dataLabel.shortened&&(t.dataLabel.attr({width:"auto"}).css({width:"auto",textOverflow:"clip"}),t.dataLabel.shortened=!1)}),c.prototype.drawDataLabels.apply(m),g.forEach(function(t){t.dataLabel&&(t.visible?(D[t.half].push(t),t.dataLabel._pos=null,!i(_.style.width)&&!i(t.options.dataLabels&&t.options.dataLabels.style&&t.options.dataLabels.style.width)&&t.dataLabel.getBBox().width>M&&(t.dataLabel.css({width:.7*M}),t.dataLabel.shortened=!0)):(t.dataLabel=t.dataLabel.destroy(),t.dataLabels&&1===t.dataLabels.length&&delete t.dataLabels))}),D.forEach(function(n,r){var c,g,b,M=n.length,D=[];if(M)for(m.sortByAngle(n,r-.5),0x-v&&0===r&&(c=Math.round(d+a-x+v),T[1]=Math.max(c,T[1])),0>h-u/2?T[0]=Math.max(Math.round(u/2-h),T[0]):h+u/2>w&&(T[2]=Math.max(Math.round(h+u/2-w),T[2])),o.sideOverflow=c)}}),0===n(T)||this.verifyDataLabelOverflow(T))&&(this.placeDataLabels(),b&&this.points.forEach(function(t){var e;r=t.connector,(o=t.dataLabel)&&o._pos&&t.visible&&0s(this.translatedThreshold,l.yAxis.len)),h=s(n.inside,!!this.options.stacking);u&&(0>(i=a(u)).y&&(i.height+=i.y,i.y=0),0<(u=i.y+i.height-l.yAxis.len)&&(i.height-=u),o&&(i={x:l.yAxis.len-i.y-i.height,y:l.xAxis.len-i.x-i.width,width:i.height,height:i.width}),h||(o?(i.x+=d?0:i.width,i.width=0):(i.y+=d?i.height:0,i.height=0))),n.align=s(n.align,!o||h?"center":d?"right":"left"),n.verticalAlign=s(n.verticalAlign,o||h?"middle":d?"top":"bottom"),c.prototype.alignDataLabel.call(this,t,e,n,i,r),t.isLabelJustified&&t.contrastColor&&e.css({color:t.contrastColor})})}(u),function(t){var e=u.Chart,n=u.isArray,i=u.objectEach,r=u.pick,o=u.fireEvent;(0,u.addEvent)(e,"render",function(){var t=[];(this.labelCollectors||[]).forEach(function(e){t=t.concat(e())}),(this.yAxis||[]).forEach(function(e){e.options.stackLabels&&!e.options.stackLabels.allowOverlap&&i(e.stacks,function(e){i(e,function(e){t.push(e.label)})})}),(this.series||[]).forEach(function(e){e.visible&&(!1!==e.options.dataLabels.enabled||e._hasPointLabels)&&e.points.forEach(function(e){e.visible&&(n(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[]).forEach(function(n){var i=n.options;n.labelrank=r(i.labelrank,e.labelrank,e.shapeArgs&&e.shapeArgs.height),i.allowOverlap||t.push(n)})})}),this.hideOverlappingLabels(t)}),e.prototype.hideOverlappingLabels=function(t){var e,n,i,r,a,l,s=this,u=t.length,c=s.renderer,d=function(t,e,n,i,r,o,a,l){return!(r>t+n||r+ae+i||o+lthis.pointCount))},pan:function(t,e){var n,i=this,r=i.hoverPoints;u(this,"pan",{originalEvent:t},function(){r&&r.forEach(function(t){t.setState()}),("xy"===e?[1,0]:[1]).forEach(function(e){var r,o,a=t[(r=(e=i[e?"xAxis":"yAxis"][0]).horiz)?"chartX":"chartY"],l=i[r=r?"mouseDownX":"mouseDownY"],s=(e.pointRange||0)/2,u=e.reversed&&!i.inverted||!e.reversed&&i.inverted?-1:1,c=e.getExtremes(),d=e.toValue(l-a,!0)+s*u;l=(o=(u=e.toValue(l+e.len-a,!0)-s*u)=r(n.minWidth,0)&&this.chartHeight>=r(n.minHeight,0)}).call(this)&&e.push(t._id)},e.prototype.currentOptions=function(e){var r={};return function e(r,a,l,s){var u;t.objectEach(r,function(t,r){if(!s&&-1<["series","xAxis","yAxis"].indexOf(r))for(t=o(t),l[r]=[],u=0;u11?n?"\u0db4.\u0dc0.":"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4":n?"\u0db4\u0dd9.\u0dc0.":"\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4"}})}()},"8/+R":function(t,e,n){!function(t){"use strict";var e={1:"\u0a67",2:"\u0a68",3:"\u0a69",4:"\u0a6a",5:"\u0a6b",6:"\u0a6c",7:"\u0a6d",8:"\u0a6e",9:"\u0a6f",0:"\u0a66"},n={"\u0a67":"1","\u0a68":"2","\u0a69":"3","\u0a6a":"4","\u0a6b":"5","\u0a6c":"6","\u0a6d":"7","\u0a6e":"8","\u0a6f":"9","\u0a66":"0"};t.defineLocale("pa-in",{months:"\u0a1c\u0a28\u0a35\u0a30\u0a40_\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40_\u0a2e\u0a3e\u0a30\u0a1a_\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32_\u0a2e\u0a08_\u0a1c\u0a42\u0a28_\u0a1c\u0a41\u0a32\u0a3e\u0a08_\u0a05\u0a17\u0a38\u0a24_\u0a38\u0a24\u0a70\u0a2c\u0a30_\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30_\u0a28\u0a35\u0a70\u0a2c\u0a30_\u0a26\u0a38\u0a70\u0a2c\u0a30".split("_"),monthsShort:"\u0a1c\u0a28\u0a35\u0a30\u0a40_\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40_\u0a2e\u0a3e\u0a30\u0a1a_\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32_\u0a2e\u0a08_\u0a1c\u0a42\u0a28_\u0a1c\u0a41\u0a32\u0a3e\u0a08_\u0a05\u0a17\u0a38\u0a24_\u0a38\u0a24\u0a70\u0a2c\u0a30_\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30_\u0a28\u0a35\u0a70\u0a2c\u0a30_\u0a26\u0a38\u0a70\u0a2c\u0a30".split("_"),weekdays:"\u0a10\u0a24\u0a35\u0a3e\u0a30_\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30_\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30_\u0a2c\u0a41\u0a27\u0a35\u0a3e\u0a30_\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30_\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30_\u0a38\u0a3c\u0a28\u0a40\u0a1a\u0a30\u0a35\u0a3e\u0a30".split("_"),weekdaysShort:"\u0a10\u0a24_\u0a38\u0a4b\u0a2e_\u0a2e\u0a70\u0a17\u0a32_\u0a2c\u0a41\u0a27_\u0a35\u0a40\u0a30_\u0a38\u0a3c\u0a41\u0a15\u0a30_\u0a38\u0a3c\u0a28\u0a40".split("_"),weekdaysMin:"\u0a10\u0a24_\u0a38\u0a4b\u0a2e_\u0a2e\u0a70\u0a17\u0a32_\u0a2c\u0a41\u0a27_\u0a35\u0a40\u0a30_\u0a38\u0a3c\u0a41\u0a15\u0a30_\u0a38\u0a3c\u0a28\u0a40".split("_"),longDateFormat:{LT:"A h:mm \u0a35\u0a1c\u0a47",LTS:"A h:mm:ss \u0a35\u0a1c\u0a47",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0a35\u0a1c\u0a47",LLLL:"dddd, D MMMM YYYY, A h:mm \u0a35\u0a1c\u0a47"},calendar:{sameDay:"[\u0a05\u0a1c] LT",nextDay:"[\u0a15\u0a32] LT",nextWeek:"[\u0a05\u0a17\u0a32\u0a3e] dddd, LT",lastDay:"[\u0a15\u0a32] LT",lastWeek:"[\u0a2a\u0a3f\u0a1b\u0a32\u0a47] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0a35\u0a3f\u0a71\u0a1a",past:"%s \u0a2a\u0a3f\u0a1b\u0a32\u0a47",s:"\u0a15\u0a41\u0a1d \u0a38\u0a15\u0a3f\u0a70\u0a1f",ss:"%d \u0a38\u0a15\u0a3f\u0a70\u0a1f",m:"\u0a07\u0a15 \u0a2e\u0a3f\u0a70\u0a1f",mm:"%d \u0a2e\u0a3f\u0a70\u0a1f",h:"\u0a07\u0a71\u0a15 \u0a18\u0a70\u0a1f\u0a3e",hh:"%d \u0a18\u0a70\u0a1f\u0a47",d:"\u0a07\u0a71\u0a15 \u0a26\u0a3f\u0a28",dd:"%d \u0a26\u0a3f\u0a28",M:"\u0a07\u0a71\u0a15 \u0a2e\u0a39\u0a40\u0a28\u0a3e",MM:"%d \u0a2e\u0a39\u0a40\u0a28\u0a47",y:"\u0a07\u0a71\u0a15 \u0a38\u0a3e\u0a32",yy:"%d \u0a38\u0a3e\u0a32"},preparse:function(t){return t.replace(/[\u0a67\u0a68\u0a69\u0a6a\u0a6b\u0a6c\u0a6d\u0a6e\u0a6f\u0a66]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0a30\u0a3e\u0a24|\u0a38\u0a35\u0a47\u0a30|\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30|\u0a38\u0a3c\u0a3e\u0a2e/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0a30\u0a3e\u0a24"===e?t<4?t:t+12:"\u0a38\u0a35\u0a47\u0a30"===e?t:"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30"===e?t>=10?t:t+12:"\u0a38\u0a3c\u0a3e\u0a2e"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0a30\u0a3e\u0a24":t<10?"\u0a38\u0a35\u0a47\u0a30":t<17?"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30":t<20?"\u0a38\u0a3c\u0a3e\u0a2e":"\u0a30\u0a3e\u0a24"},week:{dow:0,doy:6}})}(n("wd/R"))},"8mBD":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("pt",{months:"Janeiro_Fevereiro_Mar\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Ter\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\xe1bado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_S\xe1b".split("_"),weekdaysMin:"Do_2\xaa_3\xaa_4\xaa_5\xaa_6\xaa_S\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje \xe0s] LT",nextDay:"[Amanh\xe3 \xe0s] LT",nextWeek:"dddd [\xe0s] LT",lastDay:"[Ontem \xe0s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[\xdaltimo] dddd [\xe0s] LT":"[\xdaltima] dddd [\xe0s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"h\xe1 %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xeas",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},"9rRi":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("gd",{months:["Am Faoilleach","An Gearran","Am M\xe0rt","An Giblean","An C\xe8itean","An t-\xd2gmhios","An t-Iuchar","An L\xf9nastal","An t-Sultain","An D\xe0mhair","An t-Samhain","An D\xf9bhlachd"],monthsShort:["Faoi","Gear","M\xe0rt","Gibl","C\xe8it","\xd2gmh","Iuch","L\xf9n","Sult","D\xe0mh","Samh","D\xf9bh"],monthsParseExact:!0,weekdays:["Did\xf2mhnaich","Diluain","Dim\xe0irt","Diciadain","Diardaoin","Dihaoine","Disathairne"],weekdaysShort:["Did","Dil","Dim","Dic","Dia","Dih","Dis"],weekdaysMin:["D\xf2","Lu","M\xe0","Ci","Ar","Ha","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[An-diugh aig] LT",nextDay:"[A-m\xe0ireach aig] LT",nextWeek:"dddd [aig] LT",lastDay:"[An-d\xe8 aig] LT",lastWeek:"dddd [seo chaidh] [aig] LT",sameElse:"L"},relativeTime:{future:"ann an %s",past:"bho chionn %s",s:"beagan diogan",ss:"%d diogan",m:"mionaid",mm:"%d mionaidean",h:"uair",hh:"%d uairean",d:"latha",dd:"%d latha",M:"m\xecos",MM:"%d m\xecosan",y:"bliadhna",yy:"%d bliadhna"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(t){return t+(1===t?"d":t%10==2?"na":"mh")},week:{dow:1,doy:4}})}()},"A+xa":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("cv",{months:"\u043a\u04d1\u0440\u043b\u0430\u0447_\u043d\u0430\u0440\u04d1\u0441_\u043f\u0443\u0448_\u0430\u043a\u0430_\u043c\u0430\u0439_\u04ab\u04d7\u0440\u0442\u043c\u0435_\u0443\u0442\u04d1_\u04ab\u0443\u0440\u043b\u0430_\u0430\u0432\u04d1\u043d_\u044e\u043f\u0430_\u0447\u04f3\u043a_\u0440\u0430\u0448\u0442\u0430\u0432".split("_"),monthsShort:"\u043a\u04d1\u0440_\u043d\u0430\u0440_\u043f\u0443\u0448_\u0430\u043a\u0430_\u043c\u0430\u0439_\u04ab\u04d7\u0440_\u0443\u0442\u04d1_\u04ab\u0443\u0440_\u0430\u0432\u043d_\u044e\u043f\u0430_\u0447\u04f3\u043a_\u0440\u0430\u0448".split("_"),weekdays:"\u0432\u044b\u0440\u0441\u0430\u0440\u043d\u0438\u043a\u0443\u043d_\u0442\u0443\u043d\u0442\u0438\u043a\u0443\u043d_\u044b\u0442\u043b\u0430\u0440\u0438\u043a\u0443\u043d_\u044e\u043d\u043a\u0443\u043d_\u043a\u04d7\u04ab\u043d\u0435\u0440\u043d\u0438\u043a\u0443\u043d_\u044d\u0440\u043d\u0435\u043a\u0443\u043d_\u0448\u04d1\u043c\u0430\u0442\u043a\u0443\u043d".split("_"),weekdaysShort:"\u0432\u044b\u0440_\u0442\u0443\u043d_\u044b\u0442\u043b_\u044e\u043d_\u043a\u04d7\u04ab_\u044d\u0440\u043d_\u0448\u04d1\u043c".split("_"),weekdaysMin:"\u0432\u0440_\u0442\u043d_\u044b\u0442_\u044e\u043d_\u043a\u04ab_\u044d\u0440_\u0448\u043c".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7]",LLL:"YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7], HH:mm",LLLL:"dddd, YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7], HH:mm"},calendar:{sameDay:"[\u041f\u0430\u044f\u043d] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",nextDay:"[\u042b\u0440\u0430\u043d] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",lastDay:"[\u04d6\u043d\u0435\u0440] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",nextWeek:"[\u04aa\u0438\u0442\u0435\u0441] dddd LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",lastWeek:"[\u0418\u0440\u0442\u043d\u04d7] dddd LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",sameElse:"L"},relativeTime:{future:function(t){return t+(/\u0441\u0435\u0445\u0435\u0442$/i.exec(t)?"\u0440\u0435\u043d":/\u04ab\u0443\u043b$/i.exec(t)?"\u0442\u0430\u043d":"\u0440\u0430\u043d")},past:"%s \u043a\u0430\u044f\u043b\u043b\u0430",s:"\u043f\u04d7\u0440-\u0438\u043a \u04ab\u0435\u043a\u043a\u0443\u043d\u0442",ss:"%d \u04ab\u0435\u043a\u043a\u0443\u043d\u0442",m:"\u043f\u04d7\u0440 \u043c\u0438\u043d\u0443\u0442",mm:"%d \u043c\u0438\u043d\u0443\u0442",h:"\u043f\u04d7\u0440 \u0441\u0435\u0445\u0435\u0442",hh:"%d \u0441\u0435\u0445\u0435\u0442",d:"\u043f\u04d7\u0440 \u043a\u0443\u043d",dd:"%d \u043a\u0443\u043d",M:"\u043f\u04d7\u0440 \u0443\u0439\u04d1\u0445",MM:"%d \u0443\u0439\u04d1\u0445",y:"\u043f\u04d7\u0440 \u04ab\u0443\u043b",yy:"%d \u04ab\u0443\u043b"},dayOfMonthOrdinalParse:/\d{1,2}-\u043c\u04d7\u0448/,ordinal:"%d-\u043c\u04d7\u0448",week:{dow:1,doy:7}})}()},AQ68:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}})}()},AvvY:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ml",{months:"\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f_\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f_\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d_\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d_\u0d2e\u0d47\u0d2f\u0d4d_\u0d1c\u0d42\u0d7a_\u0d1c\u0d42\u0d32\u0d48_\u0d13\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d_\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c_\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d7c_\u0d28\u0d35\u0d02\u0d2c\u0d7c_\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c".split("_"),monthsShort:"\u0d1c\u0d28\u0d41._\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41._\u0d2e\u0d3e\u0d7c._\u0d0f\u0d2a\u0d4d\u0d30\u0d3f._\u0d2e\u0d47\u0d2f\u0d4d_\u0d1c\u0d42\u0d7a_\u0d1c\u0d42\u0d32\u0d48._\u0d13\u0d17._\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31._\u0d12\u0d15\u0d4d\u0d1f\u0d4b._\u0d28\u0d35\u0d02._\u0d21\u0d3f\u0d38\u0d02.".split("_"),monthsParseExact:!0,weekdays:"\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a_\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a_\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a_\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a_\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a_\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a_\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a".split("_"),weekdaysShort:"\u0d1e\u0d3e\u0d2f\u0d7c_\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d7e_\u0d1a\u0d4a\u0d35\u0d4d\u0d35_\u0d2c\u0d41\u0d27\u0d7b_\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02_\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f_\u0d36\u0d28\u0d3f".split("_"),weekdaysMin:"\u0d1e\u0d3e_\u0d24\u0d3f_\u0d1a\u0d4a_\u0d2c\u0d41_\u0d35\u0d4d\u0d2f\u0d3e_\u0d35\u0d46_\u0d36".split("_"),longDateFormat:{LT:"A h:mm -\u0d28\u0d41",LTS:"A h:mm:ss -\u0d28\u0d41",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -\u0d28\u0d41",LLLL:"dddd, D MMMM YYYY, A h:mm -\u0d28\u0d41"},calendar:{sameDay:"[\u0d07\u0d28\u0d4d\u0d28\u0d4d] LT",nextDay:"[\u0d28\u0d3e\u0d33\u0d46] LT",nextWeek:"dddd, LT",lastDay:"[\u0d07\u0d28\u0d4d\u0d28\u0d32\u0d46] LT",lastWeek:"[\u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d",past:"%s \u0d2e\u0d41\u0d7b\u0d2a\u0d4d",s:"\u0d05\u0d7d\u0d2a \u0d28\u0d3f\u0d2e\u0d3f\u0d37\u0d19\u0d4d\u0d19\u0d7e",ss:"%d \u0d38\u0d46\u0d15\u0d4d\u0d15\u0d7b\u0d21\u0d4d",m:"\u0d12\u0d30\u0d41 \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d",mm:"%d \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d",h:"\u0d12\u0d30\u0d41 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c",hh:"%d \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c",d:"\u0d12\u0d30\u0d41 \u0d26\u0d3f\u0d35\u0d38\u0d02",dd:"%d \u0d26\u0d3f\u0d35\u0d38\u0d02",M:"\u0d12\u0d30\u0d41 \u0d2e\u0d3e\u0d38\u0d02",MM:"%d \u0d2e\u0d3e\u0d38\u0d02",y:"\u0d12\u0d30\u0d41 \u0d35\u0d7c\u0d37\u0d02",yy:"%d \u0d35\u0d7c\u0d37\u0d02"},meridiemParse:/\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f|\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46|\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d|\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02|\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f/i,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"===e&&t>=4||"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d"===e||"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02"===e?t+12:t},meridiem:function(t,e,n){return t<4?"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f":t<12?"\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46":t<17?"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d":t<20?"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02":"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"}})}()},AxlJ:function(t,e,n){var i,r;r=function(t){!function(t,e){var n=t.defaultOptions,i=t.doc,r=t.Chart,o=t.addEvent,a=t.removeEvent,l=t.fireEvent,s=t.createElement,u=t.discardElement,c=t.css,d=t.merge,h=t.pick,p=t.objectEach,f=t.extend,m=t.isTouchDevice,g=t.win,y=g.navigator.userAgent,_=t.SVGRenderer,v=t.Renderer.prototype.symbols,b=/Edge\/|Trident\/|MSIE /.test(y),x=/firefox/i.test(y);f(n.lang,{printChart:"Print chart",downloadPNG:"Download PNG image",downloadJPEG:"Download JPEG image",downloadPDF:"Download PDF document",downloadSVG:"Download SVG vector image",contextButtonTitle:"Chart context menu"}),n.navigation||(n.navigation={}),d(!0,n.navigation,{buttonOptions:{theme:{},symbolSize:14,symbolX:12.5,symbolY:10.5,align:"right",buttonSpacing:3,height:22,verticalAlign:"top",width:24}}),d(!0,n.navigation,{menuStyle:{border:"1px solid #999999",background:"#ffffff",padding:"5px 0"},menuItemStyle:{padding:"0.5em 1em",color:"#333333",background:"none",fontSize:m?"14px":"11px",transition:"background 250ms, color 250ms"},menuItemHoverStyle:{background:"#335cad",color:"#ffffff"},buttonOptions:{symbolFill:"#666666",symbolStroke:"#666666",symbolStrokeWidth:3,theme:{padding:5}}}),n.exporting={type:"image/png",url:"https://export.highcharts.com/",printMaxWidth:780,scale:2,buttons:{contextButton:{className:"highcharts-contextbutton",menuClassName:"highcharts-contextmenu",symbol:"menu",titleKey:"contextButtonTitle",menuItems:"printChart separator downloadPNG downloadJPEG downloadPDF downloadSVG".split(" ")}},menuItemDefinitions:{printChart:{textKey:"printChart",onclick:function(){this.print()}},separator:{separator:!0},downloadPNG:{textKey:"downloadPNG",onclick:function(){this.exportChart()}},downloadJPEG:{textKey:"downloadJPEG",onclick:function(){this.exportChart({type:"image/jpeg"})}},downloadPDF:{textKey:"downloadPDF",onclick:function(){this.exportChart({type:"application/pdf"})}},downloadSVG:{textKey:"downloadSVG",onclick:function(){this.exportChart({type:"image/svg+xml"})}}}},t.post=function(t,e,n){var r=s("form",d({method:"post",action:t,enctype:"multipart/form-data"},n),{display:"none"},i.body);p(e,function(t,e){s("input",{type:"hidden",name:e,value:t},null,r)}),r.submit(),u(r)},f(r.prototype,{sanitizeSVG:function(t,e){if(e&&e.exporting&&e.exporting.allowHTML){var n=t.match(/<\/svg>(.*?$)/);n&&n[1]&&(t=t.replace("",(n=''+n[1]+"")+""))}return t=t.replace(/zIndex="[^"]+"/g,"").replace(/symbolName="[^"]+"/g,"").replace(/jQuery[0-9]+="[^"]+"/g,"").replace(/url\(("|")(\S+)("|")\)/g,"url($2)").replace(/url\([^#]+#/g,"url(#").replace(/.*?$/,"").replace(/(fill|stroke)="rgba\(([ 0-9]+,[ 0-9]+,[ 0-9]+),([ 0-9\.]+)\)"/g,'$1="rgb($2)" $1-opacity="$3"').replace(/ /g,"\xa0").replace(/­/g,"\xad"),this.ieSanitizeSVG&&(t=this.ieSanitizeSVG(t)),t},getChartHTML:function(){return this.styledMode&&this.inlineStyles(),this.container.innerHTML},getSVG:function(e){var n,r,o,a,c,h=d(this.options,e);return r=s("div",null,{position:"absolute",top:"-9999em",width:this.chartWidth+"px",height:this.chartHeight+"px"},i.body),o=this.renderTo.style.width,c=this.renderTo.style.height,o=h.exporting.sourceWidth||h.chart.width||/px$/.test(o)&&parseInt(o,10)||(h.isGantt?800:600),c=h.exporting.sourceHeight||h.chart.height||/px$/.test(c)&&parseInt(c,10)||400,f(h.chart,{animation:!1,renderTo:r,forExport:!0,renderer:"SVGRenderer",width:o,height:c}),h.exporting.enabled=!1,delete h.data,h.series=[],this.series.forEach(function(t){(a=d(t.userOptions,{animation:!1,enableMouseTracking:!1,showCheckbox:!1,visible:t.visible})).isInternal||h.series.push(a)}),this.axes.forEach(function(e){e.userOptions.internalKey||(e.userOptions.internalKey=t.uniqueKey())}),n=new t.Chart(h,this.callback),e&&["xAxis","yAxis","series"].forEach(function(t){var i={};e[t]&&(i[t]=e[t],n.update(i))}),this.axes.forEach(function(e){var i=t.find(n.axes,function(t){return t.options.internalKey===e.userOptions.internalKey}),r=(o=e.getExtremes()).userMin,o=o.userMax;i&&(void 0!==r&&r!==i.min||void 0!==o&&o!==i.max)&&i.setExtremes(r,o,!0,!1)}),o=n.getChartHTML(),l(this,"getSVG",{chartCopy:n}),o=this.sanitizeSVG(o,h),h=null,n.destroy(),u(r),o},getSVGForExport:function(t,e){var n=this.options.exporting;return this.getSVG(d({chart:{borderRadius:0}},n.chartOptions,e,{exporting:{sourceWidth:t&&t.sourceWidth||n.sourceWidth,sourceHeight:t&&t.sourceHeight||n.sourceHeight}}))},getFilename:function(){var t=this.userOptions.title&&this.userOptions.title.text,e=this.options.exporting.filename;return e||("string"==typeof t&&(e=t.toLowerCase().replace(/<\/?[^>]+(>|$)/g,"").replace(/[\s_]+/g,"-").replace(/[^a-z0-9\-]/g,"").replace(/^[\-]+/g,"").replace(/[\-]+/g,"-").substr(0,24).replace(/[\-]+$/g,"")),(!e||5>e.length)&&(e="chart"),e)},exportChart:function(e,n){n=this.getSVGForExport(e,n),e=d(this.options.exporting,e),t.post(e.url,{filename:e.filename||this.getFilename(),type:e.type,width:e.width||0,scale:e.scale,svg:n},e.formAttributes)},print:function(){function t(t){(r.fixedDiv?[r.fixedDiv,r.scrollingContainer]:[r.container]).forEach(function(e){t.appendChild(e)})}var e,n,r=this,o=[],a=i.body,s=a.childNodes,u=r.options.exporting.printMaxWidth;r.isPrinting||(r.isPrinting=!0,r.pointer.reset(null,0),l(r,"beforePrint"),(n=u&&r.chartWidth>u)&&(e=[r.options.chart.width,void 0,!1],r.setSize(u,void 0,!1)),s.forEach(function(t,e){1===t.nodeType&&(o[e]=t.style.display,t.style.display="none")}),t(a),setTimeout(function(){g.focus(),g.print(),setTimeout(function(){t(r.renderTo),s.forEach(function(t,e){1===t.nodeType&&(t.style.display=o[e])}),r.isPrinting=!1,n&&r.setSize.apply(r,e),l(r,"afterPrint")},1e3)},1))},contextMenu:function(e,n,r,a,l,u,d){var h,p=this,m=p.options.navigation,g=p.chartWidth,y=p.chartHeight,_="cache-"+e,v=p[_],b=Math.max(l,u);v||(p.exportContextMenu=p[_]=v=s("div",{className:e},{position:"absolute",zIndex:1e3,padding:b+"px",pointerEvents:"auto"},p.fixedDiv||p.container),h=s("div",{className:"highcharts-menu"},null,v),p.styledMode||c(h,f({MozBoxShadow:"3px 3px 10px #888",WebkitBoxShadow:"3px 3px 10px #888",boxShadow:"3px 3px 10px #888"},m.menuStyle)),v.hideMenu=function(){c(v,{display:"none"}),d&&d.setState(0),p.openMenu=!1,t.clearTimeout(v.hideTimer)},p.exportEvents.push(o(v,"mouseleave",function(){v.hideTimer=setTimeout(v.hideMenu,500)}),o(v,"mouseenter",function(){t.clearTimeout(v.hideTimer)}),o(i,"mouseup",function(t){p.pointer.inClass(t.target,e)||v.hideMenu()}),o(v,"click",function(){p.openMenu&&v.hideMenu()})),n.forEach(function(e){var n;"string"==typeof e&&(e=p.options.exporting.menuItemDefinitions[e]),t.isObject(e,!0)&&(e.separator?n=s("hr",null,null,h):(n=s("div",{className:"highcharts-menu-item",onclick:function(t){t&&t.stopPropagation(),v.hideMenu(),e.onclick&&e.onclick.apply(p,arguments)},innerHTML:e.text||p.options.lang[e.textKey]},null,h),p.styledMode||(n.onmouseover=function(){c(this,m.menuItemHoverStyle)},n.onmouseout=function(){c(this,m.menuItemStyle)},c(n,f({cursor:"pointer"},m.menuItemStyle)))),p.exportDivElements.push(n))}),p.exportDivElements.push(h,v),p.exportMenuWidth=v.offsetWidth,p.exportMenuHeight=v.offsetHeight),n={display:"block"},r+p.exportMenuWidth>g?n.right=g-r-l-b+"px":n.left=r-b+"px",a+u+p.exportMenuHeight>y&&"top"!==d.alignOptions.verticalAlign?n.bottom=y-a-b+"px":n.top=a+u-b+"px",c(v,n),p.openMenu=!0},addButton:function(t){var e,n,i=this,r=i.renderer,o=d(i.options.navigation.buttonOptions,t),a=o.onclick,l=o.menuItems,s=o.symbolSize||12;if(i.btnCount||(i.btnCount=0),i.exportDivElements||(i.exportDivElements=[],i.exportSVGElements=[]),!1!==o.enabled){var u,c=o.theme,p=(m=c.states)&&m.hover,m=m&&m.select;i.styledMode||(c.fill=h(c.fill,"#ffffff"),c.stroke=h(c.stroke,"none")),delete c.states,a?u=function(t){t&&t.stopPropagation(),a.call(i,t)}:l&&(u=function(t){t&&t.stopPropagation(),i.contextMenu(n.menuClassName,l,n.translateX,n.translateY,n.width,n.height,n),n.setState(2)}),o.text&&o.symbol?c.paddingLeft=h(c.paddingLeft,25):o.text||f(c,{width:o.width,height:o.height,padding:0}),i.styledMode||(c["stroke-linecap"]="round",c.fill=h(c.fill,"#ffffff"),c.stroke=h(c.stroke,"none")),(n=r.button(o.text,0,0,u,c,p,m).addClass(t.className).attr({title:h(i.options.lang[o._titleKey||o.titleKey],"")})).menuClassName=t.menuClassName||"highcharts-menu-"+i.btnCount++,o.symbol&&(e=r.symbol(o.symbol,o.symbolX-s/2,o.symbolY-s/2,s,s,{width:s,height:s}).addClass("highcharts-button-symbol").attr({zIndex:1}).add(n),i.styledMode||e.attr({stroke:o.symbolStroke,fill:o.symbolFill,"stroke-width":o.symbolStrokeWidth||1})),n.add(i.exportingGroup).align(f(o,{width:n.width,x:h(o.x,i.buttonOffset)}),!0,"spacingBox"),i.buttonOffset+=(n.width+o.buttonSpacing)*("right"===o.align?-1:1),i.exportSVGElements.push(n,e)}},destroyExport:function(e){var n,i=e?e.target:this,r=i.exportDivElements,o=i.exportEvents;(e=i.exportSVGElements)&&(e.forEach(function(t,e){t&&(t.onclick=t.ontouchstart=null,i[n="cache-"+t.menuClassName]&&delete i[n],i.exportSVGElements[e]=t.destroy())}),e.length=0),i.exportingGroup&&(i.exportingGroup.destroy(),delete i.exportingGroup),r&&(r.forEach(function(e,n){t.clearTimeout(e.hideTimer),a(e,"mouseleave"),i.exportDivElements[n]=e.onmouseout=e.onmouseover=e.ontouchstart=e.onclick=null,u(e)}),r.length=0),o&&(o.forEach(function(t){t()}),o.length=0)}}),_.prototype.inlineToAttributes="fill stroke strokeLinecap strokeLinejoin strokeWidth textAnchor x y".split(" "),_.prototype.inlineBlacklist=[/-/,/^(clipPath|cssText|d|height|width)$/,/^font$/,/[lL]ogical(Width|Height)$/,/perspective/,/TapHighlightColor/,/^transition/,/^length$/],_.prototype.unstyledElements=["clipPath","defs","desc"],r.prototype.inlineStyles=function(){function t(t){return t.replace(/([A-Z])/g,function(t,e){return"-"+e.toLowerCase()})}var e,n,r=(u=this.renderer).inlineToAttributes,o=u.inlineBlacklist,a=u.inlineWhitelist,l=u.unstyledElements,s={},u=i.createElement("iframe");c(u,{width:"1px",height:"1px",visibility:"hidden"}),i.body.appendChild(u),(n=u.contentWindow.document).open(),n.write(''),n.close(),function i(u){function c(e,n){if(y=_=!1,a){for(v=a.length;v--&&!_;)_=a[v].test(n);y=!_}for("transform"===n&&"none"===e&&(y=!0),v=o.length;v--&&!y;)y=o[v].test(n)||"function"==typeof e;y||f[n]===e&&"svg"!==u.nodeName||s[u.nodeName][n]===e||(-1!==r.indexOf(n)?u.setAttribute(t(n),e):w+=t(n)+":"+e+";")}var h,f,m,y,_,v,w="";if(1===u.nodeType&&-1===l.indexOf(u.nodeName)){if(h=g.getComputedStyle(u,null),f="svg"===u.nodeName?{}:g.getComputedStyle(u.parentNode,null),s[u.nodeName]||(e=n.getElementsByTagName("svg")[0],m=n.createElementNS(u.namespaceURI,u.nodeName),e.appendChild(m),s[u.nodeName]=d(g.getComputedStyle(m,null)),"text"===u.nodeName&&delete s.text.fill,e.removeChild(m)),x||b)for(var k in h)c(h[k],k);else p(h,c);w&&(h=u.getAttribute("style"),u.setAttribute("style",(h?h+";":"")+w)),"svg"===u.nodeName&&u.setAttribute("stroke-width","1px"),"text"!==u.nodeName&&[].forEach.call(u.children||u.childNodes,i)}}(this.container.querySelector("svg")),e.parentNode.removeChild(e)},v.menu=function(t,e,n,i){return["M",t,e+2.5,"L",t+n,e+2.5,"M",t,e+i/2+.5,"L",t+n,e+i/2+.5,"M",t,e+i-1.5,"L",t+n,e+i-1.5]},v.menuball=function(t,e,n,i){return[].concat(this.circle(n-(i=i/3-2),e,i,i),this.circle(n-i,e+i+4,i,i),this.circle(n-i,e+2*(i+4),i,i))},r.prototype.renderExporting=function(){var t=this,e=t.options.exporting,n=e.buttons,i=t.isDirtyExporting||!t.exportSVGElements;t.buttonOffset=0,t.isDirtyExporting&&t.destroyExport(),i&&!1!==e.enabled&&(t.exportEvents=[],t.exportingGroup=t.exportingGroup||t.renderer.g("exporting-group").attr({zIndex:3}).add(),p(n,function(e){t.addButton(e)}),t.isDirtyExporting=!1),o(t,"destroy",t.destroyExport)},o(r,"init",function(){var t=this;t.exporting={update:function(e,n){t.isDirtyExporting=!0,d(!0,t.options.exporting,e),h(n,!0)&&t.redraw()}},e.addUpdate(function(e,n){t.isDirtyExporting=!0,d(!0,t.options.navigation,e),h(n,!0)&&t.redraw()},t)}),r.prototype.callbacks.push(function(t){t.renderExporting(),o(t,"redraw",t.renderExporting)})}(t,{initUpdate:function(t){t.navigation||(t.navigation={updates:[],update:function(t,e){this.updates.forEach(function(n){n.update.call(n.context,t,e)})}})},addUpdate:function(t,e){e.navigation||this.initUpdate(e),e.navigation.updates.push({update:t,context:e})}})},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},B55N:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ja",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u65e5\u66dc\u65e5_\u6708\u66dc\u65e5_\u706b\u66dc\u65e5_\u6c34\u66dc\u65e5_\u6728\u66dc\u65e5_\u91d1\u66dc\u65e5_\u571f\u66dc\u65e5".split("_"),weekdaysShort:"\u65e5_\u6708_\u706b_\u6c34_\u6728_\u91d1_\u571f".split("_"),weekdaysMin:"\u65e5_\u6708_\u706b_\u6c34_\u6728_\u91d1_\u571f".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5(ddd) HH:mm"},meridiemParse:/\u5348\u524d|\u5348\u5f8c/i,isPM:function(t){return"\u5348\u5f8c"===t},meridiem:function(t,e,n){return t<12?"\u5348\u524d":"\u5348\u5f8c"},calendar:{sameDay:"[\u4eca\u65e5] LT",nextDay:"[\u660e\u65e5] LT",nextWeek:function(t){return t.week()12?t:t+12:"sanje"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"rati":t<12?"sokalli":t<16?"donparam":t<20?"sanje":"rati"}})}()},Dkky:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("fr-ch",{months:"janvier_f\xe9vrier_mars_avril_mai_juin_juillet_ao\xfbt_septembre_octobre_novembre_d\xe9cembre".split("_"),monthsShort:"janv._f\xe9vr._mars_avr._mai_juin_juil._ao\xfbt_sept._oct._nov._d\xe9c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd\u2019hui \xe0] LT",nextDay:"[Demain \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[Hier \xe0] LT",lastWeek:"dddd [dernier \xe0] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(t,e){switch(e){default:case"M":case"Q":case"D":case"DDD":case"d":return t+(1===t?"er":"e");case"w":case"W":return t+(1===t?"re":"e")}},week:{dow:1,doy:4}})}()},Dmvi:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},DoHr:function(t,e,n){!function(t){"use strict";var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'\xfcnc\xfc",4:"'\xfcnc\xfc",100:"'\xfcnc\xfc",6:"'nc\u0131",9:"'uncu",10:"'uncu",30:"'uncu",60:"'\u0131nc\u0131",90:"'\u0131nc\u0131"};t.defineLocale("tr",{months:"Ocak_\u015eubat_Mart_Nisan_May\u0131s_Haziran_Temmuz_A\u011fustos_Eyl\xfcl_Ekim_Kas\u0131m_Aral\u0131k".split("_"),monthsShort:"Oca_\u015eub_Mar_Nis_May_Haz_Tem_A\u011fu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Sal\u0131_\xc7ar\u015famba_Per\u015fembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_\xc7ar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_\xc7a_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bug\xfcn saat] LT",nextDay:"[yar\u0131n saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[d\xfcn] LT",lastWeek:"[ge\xe7en] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s \xf6nce",s:"birka\xe7 saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir g\xfcn",dd:"%d g\xfcn",M:"bir ay",MM:"%d ay",y:"bir y\u0131l",yy:"%d y\u0131l"},ordinal:function(t,n){switch(n){case"d":case"D":case"Do":case"DD":return t;default:if(0===t)return t+"'\u0131nc\u0131";var i=t%10;return t+(e[i]||e[t%100-i]||e[t>=100?100:null])}},week:{dow:1,doy:7}})}(n("wd/R"))},DxQv:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"s\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\xf8rdag".split("_"),weekdaysShort:"s\xf8n_man_tir_ons_tor_fre_l\xf8r".split("_"),weekdaysMin:"s\xf8_ma_ti_on_to_fr_l\xf8".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"p\xe5 dddd [kl.] LT",lastDay:"[i g\xe5r kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"f\xe5 sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en m\xe5ned",MM:"%d m\xe5neder",y:"et \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},Dzi0:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}})}()},"E+lV":function(t,e,n){!function(t){"use strict";var e={words:{ss:["\u0441\u0435\u043a\u0443\u043d\u0434\u0430","\u0441\u0435\u043a\u0443\u043d\u0434\u0435","\u0441\u0435\u043a\u0443\u043d\u0434\u0438"],m:["\u0458\u0435\u0434\u0430\u043d \u043c\u0438\u043d\u0443\u0442","\u0458\u0435\u0434\u043d\u0435 \u043c\u0438\u043d\u0443\u0442\u0435"],mm:["\u043c\u0438\u043d\u0443\u0442","\u043c\u0438\u043d\u0443\u0442\u0435","\u043c\u0438\u043d\u0443\u0442\u0430"],h:["\u0458\u0435\u0434\u0430\u043d \u0441\u0430\u0442","\u0458\u0435\u0434\u043d\u043e\u0433 \u0441\u0430\u0442\u0430"],hh:["\u0441\u0430\u0442","\u0441\u0430\u0442\u0430","\u0441\u0430\u0442\u0438"],dd:["\u0434\u0430\u043d","\u0434\u0430\u043d\u0430","\u0434\u0430\u043d\u0430"],MM:["\u043c\u0435\u0441\u0435\u0446","\u043c\u0435\u0441\u0435\u0446\u0430","\u043c\u0435\u0441\u0435\u0446\u0438"],yy:["\u0433\u043e\u0434\u0438\u043d\u0430","\u0433\u043e\u0434\u0438\u043d\u0435","\u0433\u043e\u0434\u0438\u043d\u0430"]},correctGrammaticalCase:function(t,e){return 1===t?e[0]:t>=2&&t<=4?e[1]:e[2]},translate:function(t,n,i){var r=e.words[i];return 1===i.length?n?r[0]:r[1]:t+" "+e.correctGrammaticalCase(t,r)}};t.defineLocale("sr-cyrl",{months:"\u0458\u0430\u043d\u0443\u0430\u0440_\u0444\u0435\u0431\u0440\u0443\u0430\u0440_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0438\u043b_\u043c\u0430\u0458_\u0458\u0443\u043d_\u0458\u0443\u043b_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440_\u043e\u043a\u0442\u043e\u0431\u0430\u0440_\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440_\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440".split("_"),monthsShort:"\u0458\u0430\u043d._\u0444\u0435\u0431._\u043c\u0430\u0440._\u0430\u043f\u0440._\u043c\u0430\u0458_\u0458\u0443\u043d_\u0458\u0443\u043b_\u0430\u0432\u0433._\u0441\u0435\u043f._\u043e\u043a\u0442._\u043d\u043e\u0432._\u0434\u0435\u0446.".split("_"),monthsParseExact:!0,weekdays:"\u043d\u0435\u0434\u0435\u0459\u0430_\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a_\u0443\u0442\u043e\u0440\u0430\u043a_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a_\u043f\u0435\u0442\u0430\u043a_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),weekdaysShort:"\u043d\u0435\u0434._\u043f\u043e\u043d._\u0443\u0442\u043e._\u0441\u0440\u0435._\u0447\u0435\u0442._\u043f\u0435\u0442._\u0441\u0443\u0431.".split("_"),weekdaysMin:"\u043d\u0435_\u043f\u043e_\u0443\u0442_\u0441\u0440_\u0447\u0435_\u043f\u0435_\u0441\u0443".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[\u0434\u0430\u043d\u0430\u0441 \u0443] LT",nextDay:"[\u0441\u0443\u0442\u0440\u0430 \u0443] LT",nextWeek:function(){switch(this.day()){case 0:return"[\u0443] [\u043d\u0435\u0434\u0435\u0459\u0443] [\u0443] LT";case 3:return"[\u0443] [\u0441\u0440\u0435\u0434\u0443] [\u0443] LT";case 6:return"[\u0443] [\u0441\u0443\u0431\u043e\u0442\u0443] [\u0443] LT";case 1:case 2:case 4:case 5:return"[\u0443] dddd [\u0443] LT"}},lastDay:"[\u0458\u0443\u0447\u0435 \u0443] LT",lastWeek:function(){return["[\u043f\u0440\u043e\u0448\u043b\u0435] [\u043d\u0435\u0434\u0435\u0459\u0435] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u0443\u0442\u043e\u0440\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u0435] [\u0441\u0440\u0435\u0434\u0435] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u0447\u0435\u0442\u0432\u0440\u0442\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u043f\u0435\u0442\u043a\u0430] [\u0443] LT","[\u043f\u0440\u043e\u0448\u043b\u0435] [\u0441\u0443\u0431\u043e\u0442\u0435] [\u0443] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"\u0437\u0430 %s",past:"\u043f\u0440\u0435 %s",s:"\u043d\u0435\u043a\u043e\u043b\u0438\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"\u0434\u0430\u043d",dd:e.translate,M:"\u043c\u0435\u0441\u0435\u0446",MM:e.translate,y:"\u0433\u043e\u0434\u0438\u043d\u0443",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("wd/R"))},EOgW:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("th",{months:"\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21_\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c_\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21_\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19_\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21_\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19_\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21_\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21_\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19_\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21_\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19_\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21".split("_"),monthsShort:"\u0e21.\u0e04._\u0e01.\u0e1e._\u0e21\u0e35.\u0e04._\u0e40\u0e21.\u0e22._\u0e1e.\u0e04._\u0e21\u0e34.\u0e22._\u0e01.\u0e04._\u0e2a.\u0e04._\u0e01.\u0e22._\u0e15.\u0e04._\u0e1e.\u0e22._\u0e18.\u0e04.".split("_"),monthsParseExact:!0,weekdays:"\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c_\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c_\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23_\u0e1e\u0e38\u0e18_\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35_\u0e28\u0e38\u0e01\u0e23\u0e4c_\u0e40\u0e2a\u0e32\u0e23\u0e4c".split("_"),weekdaysShort:"\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c_\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c_\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23_\u0e1e\u0e38\u0e18_\u0e1e\u0e24\u0e2b\u0e31\u0e2a_\u0e28\u0e38\u0e01\u0e23\u0e4c_\u0e40\u0e2a\u0e32\u0e23\u0e4c".split("_"),weekdaysMin:"\u0e2d\u0e32._\u0e08._\u0e2d._\u0e1e._\u0e1e\u0e24._\u0e28._\u0e2a.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY \u0e40\u0e27\u0e25\u0e32 H:mm",LLLL:"\u0e27\u0e31\u0e19dddd\u0e17\u0e35\u0e48 D MMMM YYYY \u0e40\u0e27\u0e25\u0e32 H:mm"},meridiemParse:/\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07|\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07/,isPM:function(t){return"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"===t},meridiem:function(t,e,n){return t<12?"\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07":"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"},calendar:{sameDay:"[\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49 \u0e40\u0e27\u0e25\u0e32] LT",nextDay:"[\u0e1e\u0e23\u0e38\u0e48\u0e07\u0e19\u0e35\u0e49 \u0e40\u0e27\u0e25\u0e32] LT",nextWeek:"dddd[\u0e2b\u0e19\u0e49\u0e32 \u0e40\u0e27\u0e25\u0e32] LT",lastDay:"[\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e27\u0e32\u0e19\u0e19\u0e35\u0e49 \u0e40\u0e27\u0e25\u0e32] LT",lastWeek:"[\u0e27\u0e31\u0e19]dddd[\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27 \u0e40\u0e27\u0e25\u0e32] LT",sameElse:"L"},relativeTime:{future:"\u0e2d\u0e35\u0e01 %s",past:"%s\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27",s:"\u0e44\u0e21\u0e48\u0e01\u0e35\u0e48\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35",ss:"%d \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35",m:"1 \u0e19\u0e32\u0e17\u0e35",mm:"%d \u0e19\u0e32\u0e17\u0e35",h:"1 \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07",hh:"%d \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07",d:"1 \u0e27\u0e31\u0e19",dd:"%d \u0e27\u0e31\u0e19",M:"1 \u0e40\u0e14\u0e37\u0e2d\u0e19",MM:"%d \u0e40\u0e14\u0e37\u0e2d\u0e19",y:"1 \u0e1b\u0e35",yy:"%d \u0e1b\u0e35"}})}()},G0Uy:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\u010bembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_\u0120un_Lul_Aww_Set_Ott_Nov_Di\u010b".split("_"),weekdays:"Il-\u0126add_It-Tnejn_It-Tlieta_L-Erbg\u0127a_Il-\u0126amis_Il-\u0120img\u0127a_Is-Sibt".split("_"),weekdaysShort:"\u0126ad_Tne_Tli_Erb_\u0126am_\u0120im_Sib".split("_"),weekdaysMin:"\u0126a_Tn_Tl_Er_\u0126a_\u0120i_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[G\u0127ada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-biera\u0127 fil-]LT",lastWeek:"dddd [li g\u0127adda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f\u2019 %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"sieg\u0127a",hh:"%d sieg\u0127at",d:"\u0121urnata",dd:"%d \u0121ranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},H8ED:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i,r;return"m"===n?e?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443":"h"===n?e?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443":t+" "+(i=+t,r={ss:e?"\u0441\u0435\u043a\u0443\u043d\u0434\u0430_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434":"\u0441\u0435\u043a\u0443\u043d\u0434\u0443_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434",mm:e?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d",hh:e?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d",dd:"\u0434\u0437\u0435\u043d\u044c_\u0434\u043d\u0456_\u0434\u0437\u0451\u043d",MM:"\u043c\u0435\u0441\u044f\u0446_\u043c\u0435\u0441\u044f\u0446\u044b_\u043c\u0435\u0441\u044f\u0446\u0430\u045e",yy:"\u0433\u043e\u0434_\u0433\u0430\u0434\u044b_\u0433\u0430\u0434\u043e\u045e"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}n("wd/R").defineLocale("be",{months:{format:"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f_\u043b\u044e\u0442\u0430\u0433\u0430_\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430_\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430_\u0442\u0440\u0430\u045e\u043d\u044f_\u0447\u044d\u0440\u0432\u0435\u043d\u044f_\u043b\u0456\u043f\u0435\u043d\u044f_\u0436\u043d\u0456\u045e\u043d\u044f_\u0432\u0435\u0440\u0430\u0441\u043d\u044f_\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430_\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434\u0430_\u0441\u043d\u0435\u0436\u043d\u044f".split("_"),standalone:"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c_\u043b\u044e\u0442\u044b_\u0441\u0430\u043a\u0430\u0432\u0456\u043a_\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a_\u0442\u0440\u0430\u0432\u0435\u043d\u044c_\u0447\u044d\u0440\u0432\u0435\u043d\u044c_\u043b\u0456\u043f\u0435\u043d\u044c_\u0436\u043d\u0456\u0432\u0435\u043d\u044c_\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c_\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a_\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434_\u0441\u043d\u0435\u0436\u0430\u043d\u044c".split("_")},monthsShort:"\u0441\u0442\u0443\u0434_\u043b\u044e\u0442_\u0441\u0430\u043a_\u043a\u0440\u0430\u0441_\u0442\u0440\u0430\u0432_\u0447\u044d\u0440\u0432_\u043b\u0456\u043f_\u0436\u043d\u0456\u0432_\u0432\u0435\u0440_\u043a\u0430\u0441\u0442_\u043b\u0456\u0441\u0442_\u0441\u043d\u0435\u0436".split("_"),weekdays:{format:"\u043d\u044f\u0434\u0437\u0435\u043b\u044e_\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a_\u0430\u045e\u0442\u043e\u0440\u0430\u043a_\u0441\u0435\u0440\u0430\u0434\u0443_\u0447\u0430\u0446\u0432\u0435\u0440_\u043f\u044f\u0442\u043d\u0456\u0446\u0443_\u0441\u0443\u0431\u043e\u0442\u0443".split("_"),standalone:"\u043d\u044f\u0434\u0437\u0435\u043b\u044f_\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a_\u0430\u045e\u0442\u043e\u0440\u0430\u043a_\u0441\u0435\u0440\u0430\u0434\u0430_\u0447\u0430\u0446\u0432\u0435\u0440_\u043f\u044f\u0442\u043d\u0456\u0446\u0430_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),isFormat:/\[ ?[\u0423\u0443\u045e] ?(?:\u043c\u0456\u043d\u0443\u043b\u0443\u044e|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0443\u044e)? ?\] ?dddd/},weekdaysShort:"\u043d\u0434_\u043f\u043d_\u0430\u0442_\u0441\u0440_\u0447\u0446_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0430\u0442_\u0441\u0440_\u0447\u0446_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., HH:mm",LLLL:"dddd, D MMMM YYYY \u0433., HH:mm"},calendar:{sameDay:"[\u0421\u0451\u043d\u043d\u044f \u045e] LT",nextDay:"[\u0417\u0430\u045e\u0442\u0440\u0430 \u045e] LT",lastDay:"[\u0423\u0447\u043e\u0440\u0430 \u045e] LT",nextWeek:function(){return"[\u0423] dddd [\u045e] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u0443\u044e] dddd [\u045e] LT";case 1:case 2:case 4:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u044b] dddd [\u045e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u0440\u0430\u0437 %s",past:"%s \u0442\u0430\u043c\u0443",s:"\u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456 \u0441\u0435\u043a\u0443\u043d\u0434",m:e,mm:e,h:e,hh:e,d:"\u0434\u0437\u0435\u043d\u044c",dd:e,M:"\u043c\u0435\u0441\u044f\u0446",MM:e,y:"\u0433\u043e\u0434",yy:e},meridiemParse:/\u043d\u043e\u0447\u044b|\u0440\u0430\u043d\u0456\u0446\u044b|\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430/,isPM:function(t){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430)$/.test(t)},meridiem:function(t,e,n){return t<4?"\u043d\u043e\u0447\u044b":t<12?"\u0440\u0430\u043d\u0456\u0446\u044b":t<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0430\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0456|\u044b|\u0433\u0430)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":case"w":case"W":return t%10!=2&&t%10!=3||t%100==12||t%100==13?t+"-\u044b":t+"-\u0456";case"D":return t+"-\u0433\u0430";default:return t}},week:{dow:1,doy:7}})}()},HP3h:function(t,e,n){!function(t){"use strict";var e={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},n=function(t){return 0===t?0:1===t?1:2===t?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5},i={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"],h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645","\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627","%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645","\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},r=function(t){return function(e,r,o,a){var l=n(e),s=i[t][n(e)];return 2===l&&(s=s[r?0:1]),s.replace(/%d/i,e)}},o=["\u064a\u0646\u0627\u064a\u0631","\u0641\u0628\u0631\u0627\u064a\u0631","\u0645\u0627\u0631\u0633","\u0623\u0628\u0631\u064a\u0644","\u0645\u0627\u064a\u0648","\u064a\u0648\u0646\u064a\u0648","\u064a\u0648\u0644\u064a\u0648","\u0623\u063a\u0633\u0637\u0633","\u0633\u0628\u062a\u0645\u0628\u0631","\u0623\u0643\u062a\u0648\u0628\u0631","\u0646\u0648\u0641\u0645\u0628\u0631","\u062f\u064a\u0633\u0645\u0628\u0631"];t.defineLocale("ar-ly",{months:o,monthsShort:o,weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(t){return"\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u064b\u0627 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(n("wd/R"))},IBtZ:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ka",{months:{standalone:"\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8_\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8_\u10db\u10d0\u10e0\u10e2\u10d8_\u10d0\u10de\u10e0\u10d8\u10da\u10d8_\u10db\u10d0\u10d8\u10e1\u10d8_\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8_\u10d8\u10d5\u10da\u10d8\u10e1\u10d8_\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd_\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8_\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8_\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8_\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8".split("_"),format:"\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10e1_\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10e1_\u10db\u10d0\u10e0\u10e2\u10e1_\u10d0\u10de\u10e0\u10d8\u10da\u10d8\u10e1_\u10db\u10d0\u10d8\u10e1\u10e1_\u10d8\u10d5\u10dc\u10d8\u10e1\u10e1_\u10d8\u10d5\u10da\u10d8\u10e1\u10e1_\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10e1_\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10e1_\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10e1_\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10e1_\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10e1".split("_")},monthsShort:"\u10d8\u10d0\u10dc_\u10d7\u10d4\u10d1_\u10db\u10d0\u10e0_\u10d0\u10de\u10e0_\u10db\u10d0\u10d8_\u10d8\u10d5\u10dc_\u10d8\u10d5\u10da_\u10d0\u10d2\u10d5_\u10e1\u10d4\u10e5_\u10dd\u10e5\u10e2_\u10dc\u10dd\u10d4_\u10d3\u10d4\u10d9".split("_"),weekdays:{standalone:"\u10d9\u10d5\u10d8\u10e0\u10d0_\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8_\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8_\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8".split("_"),format:"\u10d9\u10d5\u10d8\u10e0\u10d0\u10e1_\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1_\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10e1_\u10e8\u10d0\u10d1\u10d0\u10d7\u10e1".split("_"),isFormat:/(\u10ec\u10d8\u10dc\u10d0|\u10e8\u10d4\u10db\u10d3\u10d4\u10d2)/},weekdaysShort:"\u10d9\u10d5\u10d8_\u10dd\u10e0\u10e8_\u10e1\u10d0\u10db_\u10dd\u10d7\u10ee_\u10ee\u10e3\u10d7_\u10de\u10d0\u10e0_\u10e8\u10d0\u10d1".split("_"),weekdaysMin:"\u10d9\u10d5_\u10dd\u10e0_\u10e1\u10d0_\u10dd\u10d7_\u10ee\u10e3_\u10de\u10d0_\u10e8\u10d0".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[\u10d3\u10e6\u10d4\u10e1] LT[-\u10d6\u10d4]",nextDay:"[\u10ee\u10d5\u10d0\u10da] LT[-\u10d6\u10d4]",lastDay:"[\u10d2\u10e3\u10e8\u10d8\u10dc] LT[-\u10d6\u10d4]",nextWeek:"[\u10e8\u10d4\u10db\u10d3\u10d4\u10d2] dddd LT[-\u10d6\u10d4]",lastWeek:"[\u10ec\u10d8\u10dc\u10d0] dddd LT-\u10d6\u10d4",sameElse:"L"},relativeTime:{future:function(t){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10ec\u10d4\u10da\u10d8)/.test(t)?t.replace(/\u10d8$/,"\u10e8\u10d8"):t+"\u10e8\u10d8"},past:function(t){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10d3\u10e6\u10d4|\u10d7\u10d5\u10d4)/.test(t)?t.replace(/(\u10d8|\u10d4)$/,"\u10d8\u10e1 \u10ec\u10d8\u10dc"):/\u10ec\u10d4\u10da\u10d8/.test(t)?t.replace(/\u10ec\u10d4\u10da\u10d8$/,"\u10ec\u10da\u10d8\u10e1 \u10ec\u10d8\u10dc"):void 0},s:"\u10e0\u10d0\u10db\u10d3\u10d4\u10dc\u10d8\u10db\u10d4 \u10ec\u10d0\u10db\u10d8",ss:"%d \u10ec\u10d0\u10db\u10d8",m:"\u10ec\u10e3\u10d7\u10d8",mm:"%d \u10ec\u10e3\u10d7\u10d8",h:"\u10e1\u10d0\u10d0\u10d7\u10d8",hh:"%d \u10e1\u10d0\u10d0\u10d7\u10d8",d:"\u10d3\u10e6\u10d4",dd:"%d \u10d3\u10e6\u10d4",M:"\u10d7\u10d5\u10d4",MM:"%d \u10d7\u10d5\u10d4",y:"\u10ec\u10d4\u10da\u10d8",yy:"%d \u10ec\u10d4\u10da\u10d8"},dayOfMonthOrdinalParse:/0|1-\u10da\u10d8|\u10db\u10d4-\d{1,2}|\d{1,2}-\u10d4/,ordinal:function(t){return 0===t?t:1===t?t+"-\u10da\u10d8":t<20||t<=100&&t%20==0||t%100==0?"\u10db\u10d4-"+t:t+"-\u10d4"},week:{dow:1,doy:7}})}()},"Ivi+":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ko",{months:"1\uc6d4_2\uc6d4_3\uc6d4_4\uc6d4_5\uc6d4_6\uc6d4_7\uc6d4_8\uc6d4_9\uc6d4_10\uc6d4_11\uc6d4_12\uc6d4".split("_"),monthsShort:"1\uc6d4_2\uc6d4_3\uc6d4_4\uc6d4_5\uc6d4_6\uc6d4_7\uc6d4_8\uc6d4_9\uc6d4_10\uc6d4_11\uc6d4_12\uc6d4".split("_"),weekdays:"\uc77c\uc694\uc77c_\uc6d4\uc694\uc77c_\ud654\uc694\uc77c_\uc218\uc694\uc77c_\ubaa9\uc694\uc77c_\uae08\uc694\uc77c_\ud1a0\uc694\uc77c".split("_"),weekdaysShort:"\uc77c_\uc6d4_\ud654_\uc218_\ubaa9_\uae08_\ud1a0".split("_"),weekdaysMin:"\uc77c_\uc6d4_\ud654_\uc218_\ubaa9_\uae08_\ud1a0".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY\ub144 MMMM D\uc77c",LLL:"YYYY\ub144 MMMM D\uc77c A h:mm",LLLL:"YYYY\ub144 MMMM D\uc77c dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY\ub144 MMMM D\uc77c",lll:"YYYY\ub144 MMMM D\uc77c A h:mm",llll:"YYYY\ub144 MMMM D\uc77c dddd A h:mm"},calendar:{sameDay:"\uc624\ub298 LT",nextDay:"\ub0b4\uc77c LT",nextWeek:"dddd LT",lastDay:"\uc5b4\uc81c LT",lastWeek:"\uc9c0\ub09c\uc8fc dddd LT",sameElse:"L"},relativeTime:{future:"%s \ud6c4",past:"%s \uc804",s:"\uba87 \ucd08",ss:"%d\ucd08",m:"1\ubd84",mm:"%d\ubd84",h:"\ud55c \uc2dc\uac04",hh:"%d\uc2dc\uac04",d:"\ud558\ub8e8",dd:"%d\uc77c",M:"\ud55c \ub2ec",MM:"%d\ub2ec",y:"\uc77c \ub144",yy:"%d\ub144"},dayOfMonthOrdinalParse:/\d{1,2}(\uc77c|\uc6d4|\uc8fc)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\uc77c";case"M":return t+"\uc6d4";case"w":case"W":return t+"\uc8fc";default:return t}},meridiemParse:/\uc624\uc804|\uc624\ud6c4/,isPM:function(t){return"\uc624\ud6c4"===t},meridiem:function(t,e,n){return t<12?"\uc624\uc804":"\uc624\ud6c4"}})}()},"JCF/":function(t,e,n){!function(t){"use strict";var e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},i=["\u06a9\u0627\u0646\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645","\u0634\u0648\u0628\u0627\u062a","\u0626\u0627\u0632\u0627\u0631","\u0646\u06cc\u0633\u0627\u0646","\u0626\u0627\u06cc\u0627\u0631","\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646","\u062a\u06d5\u0645\u0645\u0648\u0632","\u0626\u0627\u0628","\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644","\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u0643\u06d5\u0645","\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645","\u0643\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"];t.defineLocale("ku",{months:i,monthsShort:i,weekdays:"\u06cc\u0647\u200c\u0643\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u062f\u0648\u0648\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u0633\u06ce\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u0686\u0648\u0627\u0631\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u067e\u06ce\u0646\u062c\u0634\u0647\u200c\u0645\u0645\u0647\u200c_\u0647\u0647\u200c\u06cc\u0646\u06cc_\u0634\u0647\u200c\u0645\u0645\u0647\u200c".split("_"),weekdaysShort:"\u06cc\u0647\u200c\u0643\u0634\u0647\u200c\u0645_\u062f\u0648\u0648\u0634\u0647\u200c\u0645_\u0633\u06ce\u0634\u0647\u200c\u0645_\u0686\u0648\u0627\u0631\u0634\u0647\u200c\u0645_\u067e\u06ce\u0646\u062c\u0634\u0647\u200c\u0645_\u0647\u0647\u200c\u06cc\u0646\u06cc_\u0634\u0647\u200c\u0645\u0645\u0647\u200c".split("_"),weekdaysMin:"\u06cc_\u062f_\u0633_\u0686_\u067e_\u0647_\u0634".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/\u0626\u06ce\u0648\u0627\u0631\u0647\u200c|\u0628\u0647\u200c\u06cc\u0627\u0646\u06cc/,isPM:function(t){return/\u0626\u06ce\u0648\u0627\u0631\u0647\u200c/.test(t)},meridiem:function(t,e,n){return t<12?"\u0628\u0647\u200c\u06cc\u0627\u0646\u06cc":"\u0626\u06ce\u0648\u0627\u0631\u0647\u200c"},calendar:{sameDay:"[\u0626\u0647\u200c\u0645\u0631\u06c6 \u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",nextDay:"[\u0628\u0647\u200c\u06cc\u0627\u0646\u06cc \u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",nextWeek:"dddd [\u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",lastDay:"[\u062f\u0648\u06ce\u0646\u06ce \u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",lastWeek:"dddd [\u0643\u0627\u062a\u0698\u0645\u06ce\u0631] LT",sameElse:"L"},relativeTime:{future:"\u0644\u0647\u200c %s",past:"%s",s:"\u0686\u0647\u200c\u0646\u062f \u0686\u0631\u0643\u0647\u200c\u06cc\u0647\u200c\u0643",ss:"\u0686\u0631\u0643\u0647\u200c %d",m:"\u06cc\u0647\u200c\u0643 \u062e\u0648\u0644\u0647\u200c\u0643",mm:"%d \u062e\u0648\u0644\u0647\u200c\u0643",h:"\u06cc\u0647\u200c\u0643 \u0643\u0627\u062a\u0698\u0645\u06ce\u0631",hh:"%d \u0643\u0627\u062a\u0698\u0645\u06ce\u0631",d:"\u06cc\u0647\u200c\u0643 \u0695\u06c6\u0698",dd:"%d \u0695\u06c6\u0698",M:"\u06cc\u0647\u200c\u0643 \u0645\u0627\u0646\u06af",MM:"%d \u0645\u0627\u0646\u06af",y:"\u06cc\u0647\u200c\u0643 \u0633\u0627\u06b5",yy:"%d \u0633\u0627\u06b5"},preparse:function(t){return t.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(n("wd/R"))},JVSJ:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i=t+" ";switch(n){case"ss":return i+(1===t?"sekunda":2===t||3===t||4===t?"sekunde":"sekundi");case"m":return e?"jedna minuta":"jedne minute";case"mm":return i+(1===t?"minuta":2===t||3===t||4===t?"minute":"minuta");case"h":return e?"jedan sat":"jednog sata";case"hh":return i+(1===t?"sat":2===t||3===t||4===t?"sata":"sati");case"dd":return i+(1===t?"dan":"dana");case"MM":return i+(1===t?"mjesec":2===t||3===t||4===t?"mjeseca":"mjeseci");case"yy":return i+(1===t?"godina":2===t||3===t||4===t?"godine":"godina")}}n("wd/R").defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010der u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[pro\u0161lu] dddd [u] LT";case 6:return"[pro\u0161le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:e,m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}()},JvlW:function(t,e,n){!function(t){"use strict";var e={ss:"sekund\u0117_sekund\u017ei\u0173_sekundes",m:"minut\u0117_minut\u0117s_minut\u0119",mm:"minut\u0117s_minu\u010di\u0173_minutes",h:"valanda_valandos_valand\u0105",hh:"valandos_valand\u0173_valandas",d:"diena_dienos_dien\u0105",dd:"dienos_dien\u0173_dienas",M:"m\u0117nuo_m\u0117nesio_m\u0117nes\u012f",MM:"m\u0117nesiai_m\u0117nesi\u0173_m\u0117nesius",y:"metai_met\u0173_metus",yy:"metai_met\u0173_metus"};function n(t,e,n,i){return e?r(n)[0]:i?r(n)[1]:r(n)[2]}function i(t){return t%10==0||t>10&&t<20}function r(t){return e[t].split("_")}function o(t,e,o,a){var l=t+" ";return 1===t?l+n(0,e,o[0],a):e?l+(i(t)?r(o)[1]:r(o)[0]):a?l+r(o)[1]:l+(i(t)?r(o)[1]:r(o)[2])}t.defineLocale("lt",{months:{format:"sausio_vasario_kovo_baland\u017eio_gegu\u017e\u0117s_bir\u017eelio_liepos_rugpj\u016b\u010dio_rugs\u0117jo_spalio_lapkri\u010dio_gruod\u017eio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegu\u017e\u0117_bir\u017eelis_liepa_rugpj\u016btis_rugs\u0117jis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadien\u012f_pirmadien\u012f_antradien\u012f_tre\u010diadien\u012f_ketvirtadien\u012f_penktadien\u012f_\u0161e\u0161tadien\u012f".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_tre\u010diadienis_ketvirtadienis_penktadienis_\u0161e\u0161tadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_\u0160e\u0161".split("_"),weekdaysMin:"S_P_A_T_K_Pn_\u0160".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[\u0160iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Pra\u0117jus\u012f] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prie\u0161 %s",s:function(t,e,n,i){return e?"kelios sekund\u0117s":i?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},ss:o,m:n,mm:o,h:n,hh:o,d:n,dd:o,M:n,MM:o,y:n,yy:o},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(t){return t+"-oji"},week:{dow:1,doy:4}})}(n("wd/R"))},"K/tc":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(t){return/^nm$/i.test(t)},meridiem:function(t,e,n){return t<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[M\xf4re om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}})}()},KSF8:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("vi",{months:"th\xe1ng 1_th\xe1ng 2_th\xe1ng 3_th\xe1ng 4_th\xe1ng 5_th\xe1ng 6_th\xe1ng 7_th\xe1ng 8_th\xe1ng 9_th\xe1ng 10_th\xe1ng 11_th\xe1ng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"ch\u1ee7 nh\u1eadt_th\u1ee9 hai_th\u1ee9 ba_th\u1ee9 t\u01b0_th\u1ee9 n\u0103m_th\u1ee9 s\xe1u_th\u1ee9 b\u1ea3y".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(t){return/^ch$/i.test(t)},meridiem:function(t,e,n){return t<12?n?"sa":"SA":n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [n\u0103m] YYYY",LLL:"D MMMM [n\u0103m] YYYY HH:mm",LLLL:"dddd, D MMMM [n\u0103m] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[H\xf4m nay l\xfac] LT",nextDay:"[Ng\xe0y mai l\xfac] LT",nextWeek:"dddd [tu\u1ea7n t\u1edbi l\xfac] LT",lastDay:"[H\xf4m qua l\xfac] LT",lastWeek:"dddd [tu\u1ea7n r\u1ed3i l\xfac] LT",sameElse:"L"},relativeTime:{future:"%s t\u1edbi",past:"%s tr\u01b0\u1edbc",s:"v\xe0i gi\xe2y",ss:"%d gi\xe2y",m:"m\u1ed9t ph\xfat",mm:"%d ph\xfat",h:"m\u1ed9t gi\u1edd",hh:"%d gi\u1edd",d:"m\u1ed9t ng\xe0y",dd:"%d ng\xe0y",M:"m\u1ed9t th\xe1ng",MM:"%d th\xe1ng",y:"m\u1ed9t n\u0103m",yy:"%d n\u0103m"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}})}()},KTz0:function(t,e,n){!function(t){"use strict";var e={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(t,e){return 1===t?e[0]:t>=2&&t<=4?e[1]:e[2]},translate:function(t,n,i){var r=e.words[i];return 1===i.length?n?r[0]:r[1]:t+" "+e.correctGrammaticalCase(t,r)}};t.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010de u] LT",lastWeek:function(){return["[pro\u0161le] [nedjelje] [u] LT","[pro\u0161log] [ponedjeljka] [u] LT","[pro\u0161log] [utorka] [u] LT","[pro\u0161le] [srijede] [u] LT","[pro\u0161log] [\u010detvrtka] [u] LT","[pro\u0161log] [petka] [u] LT","[pro\u0161le] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mjesec",MM:e.translate,y:"godinu",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("wd/R"))},Loxo:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("uz",{months:"\u044f\u043d\u0432\u0430\u0440_\u0444\u0435\u0432\u0440\u0430\u043b_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440_\u043e\u043a\u0442\u044f\u0431\u0440_\u043d\u043e\u044f\u0431\u0440_\u0434\u0435\u043a\u0430\u0431\u0440".split("_"),monthsShort:"\u044f\u043d\u0432_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433_\u0441\u0435\u043d_\u043e\u043a\u0442_\u043d\u043e\u044f_\u0434\u0435\u043a".split("_"),weekdays:"\u042f\u043a\u0448\u0430\u043d\u0431\u0430_\u0414\u0443\u0448\u0430\u043d\u0431\u0430_\u0421\u0435\u0448\u0430\u043d\u0431\u0430_\u0427\u043e\u0440\u0448\u0430\u043d\u0431\u0430_\u041f\u0430\u0439\u0448\u0430\u043d\u0431\u0430_\u0416\u0443\u043c\u0430_\u0428\u0430\u043d\u0431\u0430".split("_"),weekdaysShort:"\u042f\u043a\u0448_\u0414\u0443\u0448_\u0421\u0435\u0448_\u0427\u043e\u0440_\u041f\u0430\u0439_\u0416\u0443\u043c_\u0428\u0430\u043d".split("_"),weekdaysMin:"\u042f\u043a_\u0414\u0443_\u0421\u0435_\u0427\u043e_\u041f\u0430_\u0416\u0443_\u0428\u0430".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[\u0411\u0443\u0433\u0443\u043d \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",nextDay:"[\u042d\u0440\u0442\u0430\u0433\u0430] LT [\u0434\u0430]",nextWeek:"dddd [\u043a\u0443\u043d\u0438 \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",lastDay:"[\u041a\u0435\u0447\u0430 \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",lastWeek:"[\u0423\u0442\u0433\u0430\u043d] dddd [\u043a\u0443\u043d\u0438 \u0441\u043e\u0430\u0442] LT [\u0434\u0430]",sameElse:"L"},relativeTime:{future:"\u042f\u043a\u0438\u043d %s \u0438\u0447\u0438\u0434\u0430",past:"\u0411\u0438\u0440 \u043d\u0435\u0447\u0430 %s \u043e\u043b\u0434\u0438\u043d",s:"\u0444\u0443\u0440\u0441\u0430\u0442",ss:"%d \u0444\u0443\u0440\u0441\u0430\u0442",m:"\u0431\u0438\u0440 \u0434\u0430\u043a\u0438\u043a\u0430",mm:"%d \u0434\u0430\u043a\u0438\u043a\u0430",h:"\u0431\u0438\u0440 \u0441\u043e\u0430\u0442",hh:"%d \u0441\u043e\u0430\u0442",d:"\u0431\u0438\u0440 \u043a\u0443\u043d",dd:"%d \u043a\u0443\u043d",M:"\u0431\u0438\u0440 \u043e\u0439",MM:"%d \u043e\u0439",y:"\u0431\u0438\u0440 \u0439\u0438\u043b",yy:"%d \u0439\u0438\u043b"},week:{dow:1,doy:7}})}()},M8aS:function(t,e,n){var i,r;r=function(t){var e,n,i,r,o,a,l,s,u,c,d,h,p,f,m;!function(t){function e(t,e){this.init(t,e)}var n=t.CenteredSeriesMixin,i=t.extend,r=t.merge,o=t.splat;i(e.prototype,{coll:"pane",init:function(t,e){this.chart=e,this.background=[],e.pane.push(this),this.setOptions(t)},setOptions:function(t){this.options=r(this.defaultOptions,this.chart.angular?{background:{}}:void 0,t)},render:function(){var t=this.options,e=this.options.background,n=this.chart.renderer;if(this.group||(this.group=n.g("pane-group").attr({zIndex:t.zIndex||0}).add()),this.updateCenter(),e)for(e=o(e),t=Math.max(e.length,this.background.length||0),n=0;nn.len*n.tickInterval/(n.max-n.min)&&(a=0),l=s>a&&s<180-a?"left":s>180+a&&s<360-a?"right":"center"):l="center",i.attr({align:l})),t.pos.x=e.x+r.x,t.pos.y=e.y+o)}),h(m,"getMarkPath",function(t,e,n,i,r,o,a){var l=this.axis;return l.isRadial?["M",e,n,"L",(t=l.getPosition(this.pos,l.center[2]/2+i)).x,t.y]:t.call(this,e,n,i,r,o,a)})),function(t){var e=t.pick,n=t.extend,i=t.isArray,r=t.defined,o=t.seriesTypes,a=t.Series.prototype,l=t.Point.prototype;(0,t.seriesType)("arearange","area",{lineWidth:1,threshold:null,tooltip:{pointFormat:'\u25cf {series.name}: {point.low} - {point.high}
'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0}},{pointArrayMap:["low","high"],toYData:function(t){return[t.low,t.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(t){var e=this.chart,n=this.xAxis.postTranslate(t.rectPlotX,this.yAxis.len-t.plotHigh);t.plotHighX=n.x-e.plotLeft,t.plotHigh=n.y-e.plotTop,t.plotLowX=t.plotX},translate:function(){var t=this,e=t.yAxis,n=!!t.modifyValue;o.area.prototype.translate.apply(t),t.points.forEach(function(i){var r=i.high,o=i.plotY;null===r||null===i.low?(i.isNull=!0,i.plotY=null):(i.plotLow=o,i.plotHigh=e.translate(n?t.modifyValue(r,i):r,0,1,0,1),n&&(i.yBottom=i.plotHigh))}),this.chart.polar&&this.points.forEach(function(e){t.highToXY(e),e.tooltipPos=[(e.plotHighX+e.plotLowX)/2,(e.plotHigh+e.plotLow)/2]})},getGraphPath:function(t){var n,i,r,a,l=[],s=[],u=o.area.prototype.getGraphPath;a=this.options;var c=this.chart.polar&&!1!==a.connectEnds,d=a.connectNulls,h=a.step;for(n=(t=t||this.points).length;n--;)(i=t[n]).isNull||c||d||t[n+1]&&!t[n+1].isNull||s.push({plotX:i.plotX,plotY:i.plotY,doCurve:!1}),r={polarPlotY:i.polarPlotY,rectPlotX:i.rectPlotX,yBottom:i.yBottom,plotX:e(i.plotHighX,i.plotX),plotY:i.plotHigh,isNull:i.isNull},s.push(r),l.push(r),i.isNull||c||d||t[n-1]&&!t[n-1].isNull||s.push({plotX:i.plotX,plotY:i.plotY,doCurve:!1});return t=u.call(this,t),h&&(!0===h&&(h="left"),a.step={left:"right",center:"center",right:"left"}[h]),l=u.call(this,l),s=u.call(this,s),a.step=h,a=[].concat(t,l),this.chart.polar||"M"!==s[0]||(s[0]="L"),this.graphPath=a,this.areaPath=t.concat(s),a.isArea=!0,a.xMap=t.xMap,this.areaPath.xMap=t.xMap,a},drawDataLabels:function(){var t,e,r,o,l,s=this.points,u=s.length,c=[],d=this.options.dataLabels,h=this.chart.inverted;if(i(d)?1e.plotLow,e.y=e.high,e._plotY=e.plotY,e.plotY=e.plotHigh,c[t]=e.dataLabel,e.dataLabel=e.dataLabelUpper,e.below=r,h?o.align||(o.align=r?"right":"left"):o.verticalAlign||(o.verticalAlign=r?"top":"bottom"));for(this.options.dataLabels=o,a.drawDataLabels&&a.drawDataLabels.apply(this,arguments),t=u;t--;)(e=s[t])&&(e.dataLabelUpper=e.dataLabel,e.dataLabel=c[t],delete e.dataLabels,e.y=e.low,e.plotY=e._plotY)}if(l.enabled||this._hasPointLabels){for(t=u;t--;)(e=s[t])&&(e.below=!(r=l.inside?e.plotHighe.plotLow),h?l.align||(l.align=r?"left":"right"):l.verticalAlign||(l.verticalAlign=r?"bottom":"top"));this.options.dataLabels=l,a.drawDataLabels&&a.drawDataLabels.apply(this,arguments)}if(o.enabled)for(t=u;t--;)(e=s[t])&&(e.dataLabels=[e.dataLabelUpper,e.dataLabel].filter(function(t){return!!t}));this.options.dataLabels=d},alignDataLabel:function(){o.column.prototype.alignDataLabel.apply(this,arguments)},drawPoints:function(){var e,n,i=this.points.length;for(a.drawPoints.apply(this,arguments),n=0;nd&&(h-=d*=-1),u?(t=o.barX+l,o.shapeType="path",o.shapeArgs={d:n.polarArc(h+d,h,t,t+o.pointWidth)}):(p.height=d,p.y=h,o.tooltipPos=s.inverted?[i.len+i.pos-s.plotLeft-h-d/2,a.len+a.pos-s.plotTop-p.x-p.width/2,d]:[a.left-s.plotLeft+p.x+p.width/2,i.pos-s.plotTop+h+d/2,d])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:i,getSymbol:i,crispCol:function(){return o.crispCol.apply(this,arguments)},drawPoints:function(){return o.drawPoints.apply(this,arguments)},drawTracker:function(){return o.drawTracker.apply(this,arguments)},getColumnMetrics:function(){return o.getColumnMetrics.apply(this,arguments)},pointAttribs:function(){return o.pointAttribs.apply(this,arguments)},animate:function(){return o.animate.apply(this,arguments)},polarArc:function(){return o.polarArc.apply(this,arguments)},translate3dPoints:function(){return o.translate3dPoints.apply(this,arguments)},translate3dShapes:function(){return o.translate3dShapes.apply(this,arguments)}},{setState:o.pointClass.prototype.setState})}(),function(e){var n=t.pick,i=t.seriesTypes.column.prototype;(0,t.seriesType)("columnpyramid","column",{},{translate:function(){var t=this,e=t.chart,r=t.options,o=t.dense=2>t.closestPointRange*t.xAxis.transA,a=(o=t.borderWidth=n(r.borderWidth,o?0:1),t.yAxis),l=r.threshold,s=t.translatedThreshold=a.getThreshold(l),u=n(r.minPointLength,5),c=t.getColumnMetrics(),d=c.width,h=t.barW=Math.max(d,1+2*o),p=t.pointXOffset=c.offset;e.inverted&&(s-=.5),r.pointPadding&&(h=Math.ceil(h)),i.translate.apply(t),t.points.forEach(function(i){var o,c,f,m,g,y,_=n(i.yBottom,s),v=999+Math.abs(_),b=Math.min(Math.max(-v,i.plotY),a.len+v),x=(v=i.plotX+p,h/2),w=Math.min(b,_);_=Math.max(b,_)-w,i.barX=v,i.pointWidth=d,i.tooltipPos=e.inverted?[a.len+a.pos-e.plotLeft-b,t.xAxis.len-v-x,_]:[v+x,b+a.pos-e.plotTop,_],b=l+(i.total||i.y),"percent"===r.stacking&&(b=l+(0>i.y)?-100:100),f=x*(w+_-(b=a.toPixels(b,!0)))/(o=e.plotHeight-b-(e.plotHeight-s)),o=v-(c=x*(w-b)/o)+x,c=v+c+x,m=v+f+x,f=v-f+x,g=w-u,y=w+_,0>i.y&&(g=w,y=w+_+u),e.inverted&&(f=x*(b-((m=e.plotWidth-w)-_))/(o=b-(e.plotWidth-s)),c=(o=v+x+(c=x*(b-m)/o))-2*c,m=v-f+x,f=v+f+x,g=w,y=w+_-u,0>i.y&&(y=w+_+u)),i.shapeType="path",i.shapeArgs={x:o,y:g,width:c-o,height:_,d:["M",o,g,"L",c,g,m,y,f,y,"Z"]}})}})}(),function(e){var n=t.isNumber,i=t.merge,r=t.pick,o=t.pInt,a=t.Series,l=t.TrackerMixin;(0,t.seriesType)("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2,borderWidth:1,borderColor:"#cccccc"},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:t.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],translate:function(){var t=this.yAxis,e=this.options,a=t.center;this.generatePoints(),this.points.forEach(function(l){var s=i(e.dial,l.dial),u=o(r(s.radius,80))*a[2]/200,c=o(r(s.baseLength,70))*u/100,d=o(r(s.rearLength,10))*u/100,h=s.baseWidth||3,p=s.topWidth||1,f=e.overshoot,m=t.startAngleRad+t.translate(l.y,null,null,null,!0);n(f)?(f=f/180*Math.PI,m=Math.max(t.startAngleRad-f,Math.min(t.endAngleRad+f,m))):!1===e.wrap&&(m=Math.max(t.startAngleRad,Math.min(t.endAngleRad,m))),m=180*m/Math.PI,l.shapeType="path",l.shapeArgs={d:s.path||["M",-d,-h/2,"L",c,-h/2,u,-p/2,u,p/2,c,h/2,-d,h/2,"z"],translateX:a[0],translateY:a[1],rotation:m},l.plotX=a[0],l.plotY=a[1]})},drawPoints:function(){var t=this,e=t.chart,n=t.yAxis.center,o=t.pivot,a=t.options,l=a.pivot,s=e.renderer;t.points.forEach(function(n){var r=n.graphic,o=n.shapeArgs,l=o.d,u=i(a.dial,n.dial);r?(r.animate(o),o.d=l):(n.graphic=s[n.shapeType](o).attr({rotation:o.rotation,zIndex:1}).addClass("highcharts-dial").add(t.group),e.styledMode||n.graphic.attr({stroke:u.borderColor||"none","stroke-width":u.borderWidth||0,fill:u.backgroundColor||"#000000"}))}),o?o.animate({translateX:n[0],translateY:n[1]}):(t.pivot=s.circle(0,0,r(l.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(n[0],n[1]).add(t.group),e.styledMode||t.pivot.attr({"stroke-width":l.borderWidth||0,stroke:l.borderColor||"#cccccc",fill:l.backgroundColor||"#000000"}))},animate:function(t){var e=this;t||(e.points.forEach(function(t){var n=t.graphic;n&&(n.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),n.animate({rotation:t.shapeArgs.rotation},e.options.animation))}),e.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup),a.prototype.render.call(this),this.group.clip(this.chart.clipRect)},setData:function(t,e){a.prototype.setData.call(this,t,!1),this.processData(),this.generatePoints(),r(e,!0)&&this.chart.redraw()},drawTracker:l&&l.drawTrackerPoint},{setState:function(t){this.state=t}})}(),function(e){var n=t.noop,i=t.pick,r=t.seriesTypes;(0,t.seriesType)("boxplot","column",{threshold:null,tooltip:{pointFormat:'\u25cf {series.name}
Maximum: {point.high}
Upper quartile: {point.q3}
Median: {point.median}
Lower quartile: {point.q1}
Minimum: {point.low}
'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,whiskerWidth:2},{pointArrayMap:["low","q1","median","q3","high"],toYData:function(t){return[t.low,t.q1,t.median,t.q3,t.high]},pointValKey:"high",pointAttribs:function(){return{}},drawDataLabels:n,translate:function(){var t=this.yAxis,e=this.pointArrayMap;r.column.prototype.translate.apply(this),this.points.forEach(function(n){e.forEach(function(e){null!==n[e]&&(n[e+"Plot"]=t.translate(n[e],0,1,0,1))})})},drawPoints:function(){var t,e,n,r,o,a,l,s,u,c,d,h=this,p=h.options,f=h.chart,m=f.renderer,g=0,y=!1!==h.doQuartiles,_=h.options.whiskerLength;h.points.forEach(function(v){var b=v.graphic,x=b?"animate":"attr",w=v.shapeArgs,k={},M={},S={},C={},L=v.color||h.color;void 0!==v.plotY&&(l=w.width,s=Math.floor(w.x),u=s+l,c=Math.round(l/2),t=Math.floor(y?v.q1Plot:v.lowPlot),e=Math.floor(y?v.q3Plot:v.lowPlot),n=Math.floor(v.highPlot),r=Math.floor(v.lowPlot),b||(v.graphic=b=m.g("point").add(h.group),v.stem=m.path().addClass("highcharts-boxplot-stem").add(b),_&&(v.whiskers=m.path().addClass("highcharts-boxplot-whisker").add(b)),y&&(v.box=m.path(void 0).addClass("highcharts-boxplot-box").add(b)),v.medianShape=m.path(void 0).addClass("highcharts-boxplot-median").add(b)),f.styledMode||(M.stroke=v.stemColor||p.stemColor||L,M["stroke-width"]=i(v.stemWidth,p.stemWidth,p.lineWidth),M.dashstyle=v.stemDashStyle||p.stemDashStyle,v.stem.attr(M),_&&(S.stroke=v.whiskerColor||p.whiskerColor||L,S["stroke-width"]=i(v.whiskerWidth,p.whiskerWidth,p.lineWidth),v.whiskers.attr(S)),y&&(k.fill=v.fillColor||p.fillColor||L,k.stroke=p.lineColor||L,k["stroke-width"]=p.lineWidth||0,v.box.attr(k)),C.stroke=v.medianColor||p.medianColor||L,C["stroke-width"]=i(v.medianWidth,p.medianWidth,p.lineWidth),v.medianShape.attr(C)),a=v.stem.strokeWidth()%2/2,v.stem[x]({d:["M",g=s+c+a,e,"L",g,n,"M",g,t,"L",g,r]}),y&&(a=v.box.strokeWidth()%2/2,t=Math.floor(t)+a,e=Math.floor(e)+a,v.box[x]({d:["M",s+=a,e,"L",s,t,"L",u+=a,t,"L",u,e,"L",s,e,"z"]})),_&&(a=v.whiskers.strokeWidth()%2/2,n+=a,r+=a,d=/%$/.test(_)?c*parseFloat(_)/100:_/2,v.whiskers[x]({d:["M",g-d,n,"L",g+d,n,"M",g-d,r,"L",g+d,r]})),o=Math.round(v.medianPlot),a=v.medianShape.strokeWidth()%2/2,v.medianShape[x]({d:["M",s,o+=a,"L",u,o]}))})},setStackedPoints:n})}(),function(e){var n=t.seriesTypes;(0,t.seriesType)("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\u25cf {series.name}: {point.low} - {point.high}
'},whiskerWidth:null},{type:"errorbar",pointArrayMap:["low","high"],toYData:function(t){return[t.low,t.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:n.arearange?function(){var t=this.pointValKey;n.arearange.prototype.drawDataLabels.call(this),this.data.forEach(function(e){e.y=e[t]})}:t.noop,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||n.column.prototype.getColumnMetrics.call(this)}})}(),function(e){var n=t.correctFloat,i=t.isNumber,r=t.pick,o=t.objectEach,a=t.arrayMin,l=t.arrayMax,s=t.addEvent,u=t.Chart,c=t.Point,d=t.Series,h=t.seriesType,p=t.seriesTypes;s(t.Axis,"afterInit",function(){this.isXAxis||(this.waterfallStacks={})}),s(u,"beforeRedraw",function(){for(var t=this.axes,e=this.series,n=e.length;n--;)e[n].options.stacking&&(t.forEach(function(t){t.isXAxis||(t.waterfallStacks={})}),n=0)}),h("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"Dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",showLine:!0,generatePoints:function(){var t,e,i;for(p.column.prototype.generatePoints.apply(this),i=0,e=this.points.length;ii.height&&(i.y+=i.height,i.height*=-1)),n.plotY=i.y=Math.round(i.y)-this.borderWidth%2/2,i.height=Math.max(Math.round(i.height),.001),n.yBottom=i.y+i.height,i.height<=f&&!n.isNull?(i.height=f,i.y-=m,n.plotY=i.y,n.minPointLengthOffset=0>n.y?-m:m):(n.isNull&&(i.width=0),n.minPointLengthOffset=0),i=n.plotY+(n.negative?i.height:0),this.chart.inverted?n.tooltipPos[0]=h.len-i:n.tooltipPos[1]=i},processData:function(t){var e,i,r,o,a,l,s,u=this.options,c=this.yData,h=u.data,p=c.length,f=u.threshold||0;for(s=r=i=o=a=0;se.y&&!p||0=n&&t.renderRange(e)}),t.legendSymbol.add(t.legendItem),t.legendItem.add(t.legendGroup),t.hideOverlappingLabels()},renderRange:function(t){var e,n=this.options,i=n.labels,r=this.chart.renderer,o=this.symbols,a=o.labels,l=t.center,s=Math.abs(t.radius),u=n.connectorDistance,c=i.align,d=i.style.fontSize,h=(u=this.legend.options.rtl||"left"===c?-u:u,this.ranges[0].radius),p=l-s-n.borderWidth/2+(i=n.connectorWidth)/2,f=(d=d/2-(this.fontMetrics.h-d)/2,r.styledMode);"center"===c&&(u=0,n.connectorDistance=0,t.labelStyle.align="center"),c=p+n.labels.y,e=h+u+n.labels.x,o.bubbleItems.push(r.circle(h,l+((p%1?1:.5)-(i%2?0:.5)),s).attr(f?{}:t.bubbleStyle).addClass((f?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-symbol "+(n.className||"")).add(this.legendSymbol)),o.connectors.push(r.path(r.crispLine(["M",h,p,"L",h+u,p],n.connectorWidth)).attr(f?{}:t.connectorStyle).addClass((f?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(n.connectorClassName||"")).add(this.legendSymbol)),t=r.text(this.formatLabel(t),e,c+d).attr(f?{}:t.labelStyle).addClass("highcharts-bubble-legend-labels "+(n.labels.className||"")).add(this.legendSymbol),a.push(t),t.placed=!0,t.alignAttr={x:e,y:c+d}},getMaxLabelSize:function(){var t,e;return this.symbols.labels.forEach(function(n){e=n.getBBox(!0),t=t?e.width>t.width?e:t:e}),t||{}},formatLabel:function(e){var n=this.options,i=n.labels.formatter;return(n=n.labels.format)?t.format(n,e):i?i.call(e):s(e.value,1)},hideOverlappingLabels:function(){var t=this.symbols;!this.options.labels.allowOverlap&&t&&(this.chart.hideOverlappingLabels(t.labels),t.labels.forEach(function(e,n){e.newOpacity?e.newOpacity!==e.oldOpacity&&t.connectors[n].show():t.connectors[n].hide()}))},getRanges:function(){var t,e,n=this.legend.bubbleLegend,i=n.options.ranges,r=Number.MAX_VALUE,o=-Number.MAX_VALUE;return n.chart.series.forEach(function(t){t.isBubble&&!t.ignoreSeries&&(e=t.zData.filter(l)).length&&(r=h(t.options.zMin,Math.min(r,Math.max(f(e),!1===t.options.displayNegative?t.options.zThreshold:-Number.MAX_VALUE))),o=h(t.options.zMax,Math.max(o,m(e))))}),t=r===o?[{value:o}]:[{value:r},{value:(r+o)/2},{value:o,autoRanges:!0}],i.length&&i[0].radius&&t.reverse(),t.forEach(function(e,n){i&&i[n]&&(t[n]=c(!1,i[n],e))}),t},predictBubbleSizes:function(){var t=this.fontMetrics,e=(l=this.chart).legend.options,n="horizontal"===e.layout,i=n?l.legend.lastLineHeight:0,r=l.plotSizeX,o=l.plotSizeY,a=l.series[this.options.seriesIndex],l=Math.ceil(a.minPxSize),s=Math.ceil(a.maxPxSize),u=(a=a.options.maxSize,Math.min(o,r));return e.floating||!/%$/.test(a)?t=s:(a=parseFloat(a),t=(u+i-t.h/2)*a/100/(a/100+1),(n&&o-t>=r||!n&&r-t>=o)&&(t=s)),[l,Math.ceil(t)]},updateRanges:function(t,e){var n=this.legend.options.bubbleLegend;n.minSize=t,n.maxSize=e,n.ranges=this.getRanges()},correctSizes:function(){var t=this.legend,e=this.chart.series[this.options.seriesIndex];1t.height&&(t.height=n[o].itemHeight);t.step=e}return i},n.prototype.retranslateItems=function(t){var e,n,i,r=this.options.rtl,o=0;this.allItems.forEach(function(a,l){e=a.legendGroup.translateX,n=a._legendItemPos[1],((i=a.movementX)||r&&a.ranges)&&a.legendGroup.attr({translateX:i=r?e-a.options.maxSize/2:e+i}),l>t[o].step&&o++,a.legendGroup.attr({translateY:Math.round(n+t[o].height/2)}),a._legendItemPos[1]=n+t[o].height/2})},r(e,"legendItemClick",function(){var t=this.chart,e=this.visible,n=this.chart.legend;n&&n.bubbleLegend&&(this.visible=!e,this.ignoreSeries=e,t=0<=t.getVisibleBubbleSeriesIndex(),n.bubbleLegend.visible!==t&&(n.update({bubbleLegend:{enabled:t}}),n.bubbleLegend.visible=t),this.visible=e)}),o(i.prototype,"drawChartBox",function(t,e,n){var i,r=this.legend,o=0<=this.getVisibleBubbleSeriesIndex();r&&r.options.enabled&&r.bubbleLegend&&r.options.bubbleLegend.autoRanges&&o?(i=r.bubbleLegend.options,o=r.bubbleLegend.predictBubbleSizes(),r.bubbleLegend.updateRanges(o[0],o[1]),i.placed||(r.group.placed=!1,r.allItems.forEach(function(t){t.legendGroup.translateY=null})),r.render(),this.getMargins(),this.axes.forEach(function(t){t.render(),i.placed||(t.setScale(),t.updateNames(),u(t.ticks,function(t){t.isNew=!0,t.isNewLabel=!0}))}),i.placed=!0,this.getMargins(),t.call(this,e,n),r.bubbleLegend.correctSizes(),r.retranslateItems(r.getLinesHeights())):(t.call(this,e,n),r&&r.options.enabled&&r.bubbleLegend&&(r.render(),r.retranslateItems(r.getLinesHeights())))})}(t),function(t){var e=t.arrayMax,n=t.arrayMin,i=t.Axis,r=t.color,o=t.isNumber,a=t.noop,l=t.pick,s=t.pInt,u=t.Point,c=t.Series,d=t.seriesTypes;(0,t.seriesType)("bubble","scatter",{dataLabels:{formatter:function(){return this.point.z},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"},{pointArrayMap:["y","z"],parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",bubblePadding:!0,zoneAxis:"z",directTouch:!0,isBubble:!0,pointAttribs:function(t,e){var n=this.options.marker.fillOpacity;return t=c.prototype.pointAttribs.call(this,t,e),1!==n&&(t.fill=r(t.fill).setOpacity(n).get("rgba")),t},getRadii:function(t,e,n){var i,r=this.zData,o=n.minPxSize,a=n.maxPxSize,l=[];for(i=0,n=r.length;i=this.minPxSize/2?(n.marker=t.extend(n.marker,{radius:i,width:2*i,height:2*i}),n.dlBox={x:n.plotX-i,y:n.plotY-i,width:2*i,height:2*i}):n.shapeArgs=n.plotY=n.dlBox=void 0},alignDataLabel:d.column.prototype.alignDataLabel,buildKDTree:a,applyZones:a},{haloPath:function(t){return u.prototype.haloPath.call(this,0===t?0:(this.marker&&this.marker.radius||0)+t)},ttBelow:!1}),i.prototype.beforePadding=function(){var i=this,r=this.len,a=this.chart,u=0,c=r,d=this.isXAxis,h=d?"xData":"yData",p=this.min,f={},m=Math.min(a.plotWidth,a.plotHeight),g=Number.MAX_VALUE,y=-Number.MAX_VALUE,_=this.max-p,v=r/_,b=[];this.series.forEach(function(r){var o=r.options;!r.bubblePadding||!r.visible&&a.options.chart.ignoreHiddenSeries||(i.allowZoomOutside=!0,b.push(r),d&&(["minSize","maxSize"].forEach(function(t){var e=/%$/.test(n=o[t]),n=s(n);f[t]=e?m*n/100:n}),r.minPxSize=f.minSize,r.maxPxSize=Math.max(f.maxSize,f.minSize),(r=r.zData.filter(t.isNumber)).length&&(g=l(o.zMin,Math.min(g,Math.max(n(r),!1===o.displayNegative?o.zThreshold:-Number.MAX_VALUE))),y=l(o.zMax,Math.max(y,e(r))))))}),b.forEach(function(t){var e,n=t[h],r=n.length;if(d&&t.getRadii(g,y,t),0<_)for(;r--;)o(n[r])&&i.dataMin<=n[r]&&n[r]<=i.dataMax&&(e=t.radii[r],u=Math.min((n[r]-p)*v-e,u),c=Math.max((n[r]-p)*v+e,c))}),b.length&&0<_&&!this.isLog&&(c-=r,v*=(r+Math.max(0,u)-Math.min(c,r))/r,[["min","userMin",u],["max","userMax",c]].forEach(function(t){void 0===l(i.options[t[0]],i[t[1]])&&(i[t[0]]+=t[2]/v)}))}}(t),function(t){var e=t.defined;(0,t.seriesType)("packedbubble","bubble",{minSize:"10%",maxSize:"100%",sizeBy:"radius",zoneAxis:"y",tooltip:{pointFormat:"Value: {point.value}"}},{pointArrayMap:["value"],pointValKey:"value",isCartesian:!1,axisTypes:[],accumulateAllPoints:function(t){var e,n,i=t.chart,r=[];for(e=0;eMath.sqrt(n*n+i*i)-Math.abs(t[2]+e[2])},positionBubble:function(t,e,n){var i=Math.sqrt,r=Math.asin,o=Math.acos,a=Math.pow,l=Math.abs;return i=i(a(t[0]-e[0],2)+a(t[1]-e[1],2)),o=o((a(i,2)+a(n[2]+e[2],2)-a(n[2]+t[2],2))/(2*(n[2]+e[2])*i)),r=r(l(t[0]-e[0])/i),t=(0>t[1]-e[1]?0:Math.PI)+o+r*(0>(t[0]-e[0])*(t[1]-e[1])?1:-1),[e[0]+(e[2]+n[2])*Math.sin(t),e[1]-(e[2]+n[2])*Math.cos(t),n[2],n[3],n[4]]},placeBubbles:function(t){var e,n,i=this.checkOverlap,r=this.positionBubble,o=[],a=1,l=0,s=0;if(!(e=t.sort(function(t,e){return e[2]-t[2]})).length)return[];if(2>e.length)return[0,0,e[0][0],e[0][1],e[0][2]];for(o.push([[0,0,e[0][2],e[0][3],e[0][4]]]),o.push([[0,0-e[1][2]-e[0][2],e[1][2],e[1][3],e[1][4]]]),n=2;n(r=0<=e&&e<=t.length-1?e:0>e?t.length-1+e:0)-1?t.length-(1+o):r-1,s=(o=t[o=r+1>t.length-1?o:r+1]).plotX,u=o.plotY,l=(1.5*(o=t[r].plotX)+(l=(a=t[e]).plotX))/2.5,a=(1.5*(r=t[r].plotY)+(a=a.plotY))/2.5,s=(1.5*o+s)/2.5,c=(1.5*r+u)/2.5,u=Math.sqrt(Math.pow(l-o,2)+Math.pow(a-r,2)),d=Math.sqrt(Math.pow(s-o,2)+Math.pow(c-r,2)),l=Math.atan2(a-r,l-o),c=Math.PI/2+(l+Math.atan2(c-r,s-o))/2,Math.abs(l-c)>Math.PI/2&&(c-=Math.PI),l=o+Math.cos(c)*u,a=r+Math.sin(c)*u,o={rightContX:s=o+Math.cos(Math.PI+c)*d,rightContY:c=r+Math.sin(Math.PI+c)*d,leftContX:l,leftContY:a,plotX:o,plotY:r},n&&(o.prevPointCont=this.getConnectors(t,e,!1,i)),o},o.toXY=function(t){var e,n=this.chart,i=t.plotX;e=t.plotY,t.rectPlotX=i,t.rectPlotY=e,e=this.xAxis.postTranslate(t.plotX,this.yAxis.len-e),t.plotX=t.polarPlotX=e.x-n.plotLeft,t.plotY=t.polarPlotY=e.y-n.plotTop,this.kdByAngle?(0>(n=(i/Math.PI*180+this.xAxis.pane.options.startAngle)%360)&&(n+=360),t.clientX=n):t.clientX=t.plotX},i.spline&&(r(i.spline.prototype,"getPointSpline",function(t,e,n,i){return this.chart.polar?i?["C",(t=this.getConnectors(e,i,!0,this.connectEnds)).prevPointCont.rightContX,t.prevPointCont.rightContY,t.leftContX,t.leftContY,t.plotX,t.plotY]:["M",n.plotX,n.plotY]:t.call(this,e,n,i)}),i.areasplinerange&&(i.areasplinerange.prototype.getPointSpline=i.spline.prototype.getPointSpline)),t.addEvent(n,"afterTranslate",function(){var e,n,i=this.chart;if(i.polar){if((this.kdByAngle=i.tooltip&&i.tooltip.shared)?this.searchPoint=this.searchPointByAngle:this.options.findNearestPointBy="xy",!this.preventPostTranslate)for(n=(e=this.points).length;n--;)this.toXY(e[n]);this.hasClipCircleSetter||(this.hasClipCircleSetter=!!t.addEvent(this,"afterRender",function(){var e;i.polar&&(this.group.clip(i.renderer.clipCircle((e=this.yAxis.center)[0],e[1],e[2]/2)),this.setClip=t.noop)}))}},{order:2}),r(o,"getGraphPath",function(t,e){var n,i,r,o=this;if(this.chart.polar){for(e=e||this.points,n=0;nr.center[1]}),r(i,"alignDataLabel",function(t,e,n,i,r,a){this.chart.polar?(t=e.rectPlotX/Math.PI*180,null===i.align&&(i.align=20t?"left":200t?"right":"center"),null===i.verticalAlign&&(i.verticalAlign=45>t||315t?"top":"middle"),o.alignDataLabel.call(this,e,n,i,r,a)):t.call(this,e,n,i,r,a)})),r(a,"getCoordinates",function(t,e){var n=this.chart,i={xAxis:[],yAxis:[]};return n.polar?n.axes.forEach(function(t){var r=t.isXAxis,o=e.chartX-(a=t.center)[0]-n.plotLeft,a=e.chartY-a[1]-n.plotTop;i[r?"xAxis":"yAxis"].push({axis:t,value:t.translate(r?Math.PI-Math.atan2(o,a):Math.sqrt(Math.pow(o,2)+Math.pow(a,2)),!0)})}):i=t.call(this,e),i}),t.SVGRenderer.prototype.clipCircle=function(e,n,i){var r=t.uniqueKey(),o=this.createElement("clipPath").attr({id:r}).add(this.defs);return(e=this.circle(e,n,i).add(o)).id=r,e.clipPath=o,e},t.addEvent(t.Chart,"getAxes",function(){this.pane||(this.pane=[]),t.splat(this.options.pane).forEach(function(e){new t.Pane(e,this)},this)}),t.addEvent(t.Chart,"afterDrawChartBox",function(){this.pane.forEach(function(t){t.render()})}),r(t.Chart.prototype,"get",function(e,n){return t.find(this.pane,function(t){return t.options.id===n})||e.call(this,n)}))}(t)},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},OIYi:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}})}()},Oaa7:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},Ob0Z:function(t,e,n){!function(t){"use strict";var e={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};function i(t,e,n,i){var r="";if(e)switch(n){case"s":r="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926";break;case"ss":r="%d \u0938\u0947\u0915\u0902\u0926";break;case"m":r="\u090f\u0915 \u092e\u093f\u0928\u093f\u091f";break;case"mm":r="%d \u092e\u093f\u0928\u093f\u091f\u0947";break;case"h":r="\u090f\u0915 \u0924\u093e\u0938";break;case"hh":r="%d \u0924\u093e\u0938";break;case"d":r="\u090f\u0915 \u0926\u093f\u0935\u0938";break;case"dd":r="%d \u0926\u093f\u0935\u0938";break;case"M":r="\u090f\u0915 \u092e\u0939\u093f\u0928\u093e";break;case"MM":r="%d \u092e\u0939\u093f\u0928\u0947";break;case"y":r="\u090f\u0915 \u0935\u0930\u094d\u0937";break;case"yy":r="%d \u0935\u0930\u094d\u0937\u0947"}else switch(n){case"s":r="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"ss":r="%d \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"m":r="\u090f\u0915\u093e \u092e\u093f\u0928\u093f\u091f\u093e";break;case"mm":r="%d \u092e\u093f\u0928\u093f\u091f\u093e\u0902";break;case"h":r="\u090f\u0915\u093e \u0924\u093e\u0938\u093e";break;case"hh":r="%d \u0924\u093e\u0938\u093e\u0902";break;case"d":r="\u090f\u0915\u093e \u0926\u093f\u0935\u0938\u093e";break;case"dd":r="%d \u0926\u093f\u0935\u0938\u093e\u0902";break;case"M":r="\u090f\u0915\u093e \u092e\u0939\u093f\u0928\u094d\u092f\u093e";break;case"MM":r="%d \u092e\u0939\u093f\u0928\u094d\u092f\u093e\u0902";break;case"y":r="\u090f\u0915\u093e \u0935\u0930\u094d\u0937\u093e";break;case"yy":r="%d \u0935\u0930\u094d\u0937\u093e\u0902"}return r.replace(/%d/i,t)}t.defineLocale("mr",{months:"\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940_\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u090f\u092a\u094d\u0930\u093f\u0932_\u092e\u0947_\u091c\u0942\u0928_\u091c\u0941\u0932\u0948_\u0911\u0917\u0938\u094d\u091f_\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930_\u0911\u0915\u094d\u091f\u094b\u092c\u0930_\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930_\u0921\u093f\u0938\u0947\u0902\u092c\u0930".split("_"),monthsShort:"\u091c\u093e\u0928\u0947._\u092b\u0947\u092c\u094d\u0930\u0941._\u092e\u093e\u0930\u094d\u091a._\u090f\u092a\u094d\u0930\u093f._\u092e\u0947._\u091c\u0942\u0928._\u091c\u0941\u0932\u0948._\u0911\u0917._\u0938\u092a\u094d\u091f\u0947\u0902._\u0911\u0915\u094d\u091f\u094b._\u0928\u094b\u0935\u094d\u0939\u0947\u0902._\u0921\u093f\u0938\u0947\u0902.".split("_"),monthsParseExact:!0,weekdays:"\u0930\u0935\u093f\u0935\u093e\u0930_\u0938\u094b\u092e\u0935\u093e\u0930_\u092e\u0902\u0917\u0933\u0935\u093e\u0930_\u092c\u0941\u0927\u0935\u093e\u0930_\u0917\u0941\u0930\u0942\u0935\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930_\u0936\u0928\u093f\u0935\u093e\u0930".split("_"),weekdaysShort:"\u0930\u0935\u093f_\u0938\u094b\u092e_\u092e\u0902\u0917\u0933_\u092c\u0941\u0927_\u0917\u0941\u0930\u0942_\u0936\u0941\u0915\u094d\u0930_\u0936\u0928\u093f".split("_"),weekdaysMin:"\u0930_\u0938\u094b_\u092e\u0902_\u092c\u0941_\u0917\u0941_\u0936\u0941_\u0936".split("_"),longDateFormat:{LT:"A h:mm \u0935\u093e\u091c\u0924\u093e",LTS:"A h:mm:ss \u0935\u093e\u091c\u0924\u093e",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e",LLLL:"dddd, D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0909\u0926\u094d\u092f\u093e] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u093e\u0932] LT",lastWeek:"[\u092e\u093e\u0917\u0940\u0932] dddd, LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u0927\u094d\u092f\u0947",past:"%s\u092a\u0942\u0930\u094d\u0935\u0940",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(t){return t.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0930\u093e\u0924\u094d\u0930\u0940|\u0938\u0915\u093e\u0933\u0940|\u0926\u0941\u092a\u093e\u0930\u0940|\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0930\u093e\u0924\u094d\u0930\u0940"===e?t<4?t:t+12:"\u0938\u0915\u093e\u0933\u0940"===e?t:"\u0926\u0941\u092a\u093e\u0930\u0940"===e?t>=10?t:t+12:"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0930\u093e\u0924\u094d\u0930\u0940":t<10?"\u0938\u0915\u093e\u0933\u0940":t<17?"\u0926\u0941\u092a\u093e\u0930\u0940":t<20?"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940":"\u0930\u093e\u0924\u094d\u0930\u0940"},week:{dow:0,doy:6}})}(n("wd/R"))},OjkT:function(t,e,n){!function(t){"use strict";var e={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};t.defineLocale("ne",{months:"\u091c\u0928\u0935\u0930\u0940_\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u093f\u0932_\u092e\u0908_\u091c\u0941\u0928_\u091c\u0941\u0932\u093e\u0908_\u0905\u0917\u0937\u094d\u091f_\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930_\u0905\u0915\u094d\u091f\u094b\u092c\u0930_\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930_\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930".split("_"),monthsShort:"\u091c\u0928._\u092b\u0947\u092c\u094d\u0930\u0941._\u092e\u093e\u0930\u094d\u091a_\u0905\u092a\u094d\u0930\u093f._\u092e\u0908_\u091c\u0941\u0928_\u091c\u0941\u0932\u093e\u0908._\u0905\u0917._\u0938\u0947\u092a\u094d\u091f._\u0905\u0915\u094d\u091f\u094b._\u0928\u094b\u092d\u0947._\u0921\u093f\u0938\u0947.".split("_"),monthsParseExact:!0,weekdays:"\u0906\u0907\u0924\u092c\u093e\u0930_\u0938\u094b\u092e\u092c\u093e\u0930_\u092e\u0919\u094d\u0917\u0932\u092c\u093e\u0930_\u092c\u0941\u0927\u092c\u093e\u0930_\u092c\u093f\u0939\u093f\u092c\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u092c\u093e\u0930_\u0936\u0928\u093f\u092c\u093e\u0930".split("_"),weekdaysShort:"\u0906\u0907\u0924._\u0938\u094b\u092e._\u092e\u0919\u094d\u0917\u0932._\u092c\u0941\u0927._\u092c\u093f\u0939\u093f._\u0936\u0941\u0915\u094d\u0930._\u0936\u0928\u093f.".split("_"),weekdaysMin:"\u0906._\u0938\u094b._\u092e\u0902._\u092c\u0941._\u092c\u093f._\u0936\u0941._\u0936.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A\u0915\u094b h:mm \u092c\u091c\u0947",LTS:"A\u0915\u094b h:mm:ss \u092c\u091c\u0947",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A\u0915\u094b h:mm \u092c\u091c\u0947",LLLL:"dddd, D MMMM YYYY, A\u0915\u094b h:mm \u092c\u091c\u0947"},preparse:function(t){return t.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0930\u093e\u0924\u093f|\u092c\u093f\u0939\u093e\u0928|\u0926\u093f\u0909\u0901\u0938\u094b|\u0938\u093e\u0901\u091d/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0930\u093e\u0924\u093f"===e?t<4?t:t+12:"\u092c\u093f\u0939\u093e\u0928"===e?t:"\u0926\u093f\u0909\u0901\u0938\u094b"===e?t>=10?t:t+12:"\u0938\u093e\u0901\u091d"===e?t+12:void 0},meridiem:function(t,e,n){return t<3?"\u0930\u093e\u0924\u093f":t<12?"\u092c\u093f\u0939\u093e\u0928":t<16?"\u0926\u093f\u0909\u0901\u0938\u094b":t<20?"\u0938\u093e\u0901\u091d":"\u0930\u093e\u0924\u093f"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u092d\u094b\u0932\u093f] LT",nextWeek:"[\u0906\u0909\u0901\u0926\u094b] dddd[,] LT",lastDay:"[\u0939\u093f\u091c\u094b] LT",lastWeek:"[\u0917\u090f\u0915\u094b] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u093e",past:"%s \u0905\u0917\u093e\u0921\u093f",s:"\u0915\u0947\u0939\u0940 \u0915\u094d\u0937\u0923",ss:"%d \u0938\u0947\u0915\u0947\u0923\u094d\u0921",m:"\u090f\u0915 \u092e\u093f\u0928\u0947\u091f",mm:"%d \u092e\u093f\u0928\u0947\u091f",h:"\u090f\u0915 \u0918\u0923\u094d\u091f\u093e",hh:"%d \u0918\u0923\u094d\u091f\u093e",d:"\u090f\u0915 \u0926\u093f\u0928",dd:"%d \u0926\u093f\u0928",M:"\u090f\u0915 \u092e\u0939\u093f\u0928\u093e",MM:"%d \u092e\u0939\u093f\u0928\u093e",y:"\u090f\u0915 \u092c\u0930\u094d\u0937",yy:"%d \u092c\u0930\u094d\u0937"},week:{dow:0,doy:6}})}(n("wd/R"))},Oxv6:function(t,e,n){!function(t){"use strict";var e={0:"-\u0443\u043c",1:"-\u0443\u043c",2:"-\u044e\u043c",3:"-\u044e\u043c",4:"-\u0443\u043c",5:"-\u0443\u043c",6:"-\u0443\u043c",7:"-\u0443\u043c",8:"-\u0443\u043c",9:"-\u0443\u043c",10:"-\u0443\u043c",12:"-\u0443\u043c",13:"-\u0443\u043c",20:"-\u0443\u043c",30:"-\u044e\u043c",40:"-\u0443\u043c",50:"-\u0443\u043c",60:"-\u0443\u043c",70:"-\u0443\u043c",80:"-\u0443\u043c",90:"-\u0443\u043c",100:"-\u0443\u043c"};t.defineLocale("tg",{months:"\u044f\u043d\u0432\u0430\u0440_\u0444\u0435\u0432\u0440\u0430\u043b_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440_\u043e\u043a\u0442\u044f\u0431\u0440_\u043d\u043e\u044f\u0431\u0440_\u0434\u0435\u043a\u0430\u0431\u0440".split("_"),monthsShort:"\u044f\u043d\u0432_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0439_\u0438\u044e\u043d_\u0438\u044e\u043b_\u0430\u0432\u0433_\u0441\u0435\u043d_\u043e\u043a\u0442_\u043d\u043e\u044f_\u0434\u0435\u043a".split("_"),weekdays:"\u044f\u043a\u0448\u0430\u043d\u0431\u0435_\u0434\u0443\u0448\u0430\u043d\u0431\u0435_\u0441\u0435\u0448\u0430\u043d\u0431\u0435_\u0447\u043e\u0440\u0448\u0430\u043d\u0431\u0435_\u043f\u0430\u043d\u04b7\u0448\u0430\u043d\u0431\u0435_\u04b7\u0443\u043c\u044a\u0430_\u0448\u0430\u043d\u0431\u0435".split("_"),weekdaysShort:"\u044f\u0448\u0431_\u0434\u0448\u0431_\u0441\u0448\u0431_\u0447\u0448\u0431_\u043f\u0448\u0431_\u04b7\u0443\u043c_\u0448\u043d\u0431".split("_"),weekdaysMin:"\u044f\u0448_\u0434\u0448_\u0441\u0448_\u0447\u0448_\u043f\u0448_\u04b7\u043c_\u0448\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0418\u043c\u0440\u04ef\u0437 \u0441\u043e\u0430\u0442\u0438] LT",nextDay:"[\u041f\u0430\u0433\u043e\u04b3 \u0441\u043e\u0430\u0442\u0438] LT",lastDay:"[\u0414\u0438\u0440\u04ef\u0437 \u0441\u043e\u0430\u0442\u0438] LT",nextWeek:"dddd[\u0438] [\u04b3\u0430\u0444\u0442\u0430\u0438 \u043e\u044f\u043d\u0434\u0430 \u0441\u043e\u0430\u0442\u0438] LT",lastWeek:"dddd[\u0438] [\u04b3\u0430\u0444\u0442\u0430\u0438 \u0433\u0443\u0437\u0430\u0448\u0442\u0430 \u0441\u043e\u0430\u0442\u0438] LT",sameElse:"L"},relativeTime:{future:"\u0431\u0430\u044a\u0434\u0438 %s",past:"%s \u043f\u0435\u0448",s:"\u044f\u043a\u0447\u0430\u043d\u0434 \u0441\u043e\u043d\u0438\u044f",m:"\u044f\u043a \u0434\u0430\u049b\u0438\u049b\u0430",mm:"%d \u0434\u0430\u049b\u0438\u049b\u0430",h:"\u044f\u043a \u0441\u043e\u0430\u0442",hh:"%d \u0441\u043e\u0430\u0442",d:"\u044f\u043a \u0440\u04ef\u0437",dd:"%d \u0440\u04ef\u0437",M:"\u044f\u043a \u043c\u043e\u04b3",MM:"%d \u043c\u043e\u04b3",y:"\u044f\u043a \u0441\u043e\u043b",yy:"%d \u0441\u043e\u043b"},meridiemParse:/\u0448\u0430\u0431|\u0441\u0443\u0431\u04b3|\u0440\u04ef\u0437|\u0431\u0435\u0433\u043e\u04b3/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0448\u0430\u0431"===e?t<4?t:t+12:"\u0441\u0443\u0431\u04b3"===e?t:"\u0440\u04ef\u0437"===e?t>=11?t:t+12:"\u0431\u0435\u0433\u043e\u04b3"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0448\u0430\u0431":t<11?"\u0441\u0443\u0431\u04b3":t<16?"\u0440\u04ef\u0437":t<19?"\u0431\u0435\u0433\u043e\u04b3":"\u0448\u0430\u0431"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0443\u043c|\u044e\u043c)/,ordinal:function(t){return t+(e[t]||e[t%10]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},PA2r:function(t,e,n){!function(t){"use strict";var e="leden_\xfanor_b\u0159ezen_duben_kv\u011bten_\u010derven_\u010dervenec_srpen_z\xe1\u0159\xed_\u0159\xedjen_listopad_prosinec".split("_"),n="led_\xfano_b\u0159e_dub_kv\u011b_\u010dvn_\u010dvc_srp_z\xe1\u0159_\u0159\xedj_lis_pro".split("_"),i=[/^led/i,/^\xfano/i,/^b\u0159e/i,/^dub/i,/^kv\u011b/i,/^(\u010dvn|\u010derven$|\u010dervna)/i,/^(\u010dvc|\u010dervenec|\u010dervence)/i,/^srp/i,/^z\xe1\u0159/i,/^\u0159\xedj/i,/^lis/i,/^pro/i],r=/^(leden|\xfanor|b\u0159ezen|duben|kv\u011bten|\u010dervenec|\u010dervence|\u010derven|\u010dervna|srpen|z\xe1\u0159\xed|\u0159\xedjen|listopad|prosinec|led|\xfano|b\u0159e|dub|kv\u011b|\u010dvn|\u010dvc|srp|z\xe1\u0159|\u0159\xedj|lis|pro)/i;function o(t){return t>1&&t<5&&1!=~~(t/10)}function a(t,e,n,i){var r=t+" ";switch(n){case"s":return e||i?"p\xe1r sekund":"p\xe1r sekundami";case"ss":return e||i?r+(o(t)?"sekundy":"sekund"):r+"sekundami";case"m":return e?"minuta":i?"minutu":"minutou";case"mm":return e||i?r+(o(t)?"minuty":"minut"):r+"minutami";case"h":return e?"hodina":i?"hodinu":"hodinou";case"hh":return e||i?r+(o(t)?"hodiny":"hodin"):r+"hodinami";case"d":return e||i?"den":"dnem";case"dd":return e||i?r+(o(t)?"dny":"dn\xed"):r+"dny";case"M":return e||i?"m\u011bs\xedc":"m\u011bs\xedcem";case"MM":return e||i?r+(o(t)?"m\u011bs\xedce":"m\u011bs\xedc\u016f"):r+"m\u011bs\xedci";case"y":return e||i?"rok":"rokem";case"yy":return e||i?r+(o(t)?"roky":"let"):r+"lety"}}t.defineLocale("cs",{months:e,monthsShort:n,monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(leden|ledna|\xfanora|\xfanor|b\u0159ezen|b\u0159ezna|duben|dubna|kv\u011bten|kv\u011btna|\u010dervenec|\u010dervence|\u010derven|\u010dervna|srpen|srpna|z\xe1\u0159\xed|\u0159\xedjen|\u0159\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\xfano|b\u0159e|dub|kv\u011b|\u010dvn|\u010dvc|srp|z\xe1\u0159|\u0159\xedj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"ned\u011ble_pond\u011bl\xed_\xfater\xfd_st\u0159eda_\u010dtvrtek_p\xe1tek_sobota".split("_"),weekdaysShort:"ne_po_\xfat_st_\u010dt_p\xe1_so".split("_"),weekdaysMin:"ne_po_\xfat_st_\u010dt_p\xe1_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[z\xedtra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v ned\u011bli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve st\u0159edu v] LT";case 4:return"[ve \u010dtvrtek v] LT";case 5:return"[v p\xe1tek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[v\u010dera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou ned\u011bli v] LT";case 1:case 2:return"[minul\xe9] dddd [v] LT";case 3:return"[minulou st\u0159edu v] LT";case 4:case 5:return"[minul\xfd] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"p\u0159ed %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},PeUW:function(t,e,n){!function(t){"use strict";var e={1:"\u0be7",2:"\u0be8",3:"\u0be9",4:"\u0bea",5:"\u0beb",6:"\u0bec",7:"\u0bed",8:"\u0bee",9:"\u0bef",0:"\u0be6"},n={"\u0be7":"1","\u0be8":"2","\u0be9":"3","\u0bea":"4","\u0beb":"5","\u0bec":"6","\u0bed":"7","\u0bee":"8","\u0bef":"9","\u0be6":"0"};t.defineLocale("ta",{months:"\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf_\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf_\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd_\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd_\u0bae\u0bc7_\u0b9c\u0bc2\u0ba9\u0bcd_\u0b9c\u0bc2\u0bb2\u0bc8_\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd_\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b85\u0b95\u0bcd\u0b9f\u0bc7\u0bbe\u0baa\u0bb0\u0bcd_\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd".split("_"),monthsShort:"\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf_\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf_\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd_\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd_\u0bae\u0bc7_\u0b9c\u0bc2\u0ba9\u0bcd_\u0b9c\u0bc2\u0bb2\u0bc8_\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd_\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b85\u0b95\u0bcd\u0b9f\u0bc7\u0bbe\u0baa\u0bb0\u0bcd_\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd_\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd".split("_"),weekdays:"\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0b9f\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0baa\u0bc1\u0ba4\u0ba9\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8_\u0b9a\u0ba9\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb4\u0bae\u0bc8".split("_"),weekdaysShort:"\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1_\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd_\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd_\u0baa\u0bc1\u0ba4\u0ba9\u0bcd_\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd_\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf_\u0b9a\u0ba9\u0bbf".split("_"),weekdaysMin:"\u0b9e\u0bbe_\u0ba4\u0bbf_\u0b9a\u0bc6_\u0baa\u0bc1_\u0bb5\u0bbf_\u0bb5\u0bc6_\u0b9a".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[\u0b87\u0ba9\u0bcd\u0bb1\u0bc1] LT",nextDay:"[\u0ba8\u0bbe\u0bb3\u0bc8] LT",nextWeek:"dddd, LT",lastDay:"[\u0ba8\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1] LT",lastWeek:"[\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbe\u0bb0\u0bae\u0bcd] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0b87\u0bb2\u0bcd",past:"%s \u0bae\u0bc1\u0ba9\u0bcd",s:"\u0b92\u0bb0\u0bc1 \u0b9a\u0bbf\u0bb2 \u0bb5\u0bbf\u0ba8\u0bbe\u0b9f\u0bbf\u0b95\u0bb3\u0bcd",ss:"%d \u0bb5\u0bbf\u0ba8\u0bbe\u0b9f\u0bbf\u0b95\u0bb3\u0bcd",m:"\u0b92\u0bb0\u0bc1 \u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0bae\u0bcd",mm:"%d \u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd",h:"\u0b92\u0bb0\u0bc1 \u0bae\u0ba3\u0bbf \u0ba8\u0bc7\u0bb0\u0bae\u0bcd",hh:"%d \u0bae\u0ba3\u0bbf \u0ba8\u0bc7\u0bb0\u0bae\u0bcd",d:"\u0b92\u0bb0\u0bc1 \u0ba8\u0bbe\u0bb3\u0bcd",dd:"%d \u0ba8\u0bbe\u0b9f\u0bcd\u0b95\u0bb3\u0bcd",M:"\u0b92\u0bb0\u0bc1 \u0bae\u0bbe\u0ba4\u0bae\u0bcd",MM:"%d \u0bae\u0bbe\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd",y:"\u0b92\u0bb0\u0bc1 \u0bb5\u0bb0\u0bc1\u0b9f\u0bae\u0bcd",yy:"%d \u0b86\u0ba3\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bcd"},dayOfMonthOrdinalParse:/\d{1,2}\u0bb5\u0ba4\u0bc1/,ordinal:function(t){return t+"\u0bb5\u0ba4\u0bc1"},preparse:function(t){return t.replace(/[\u0be7\u0be8\u0be9\u0bea\u0beb\u0bec\u0bed\u0bee\u0bef\u0be6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0baf\u0bbe\u0bae\u0bae\u0bcd|\u0bb5\u0bc8\u0b95\u0bb1\u0bc8|\u0b95\u0bbe\u0bb2\u0bc8|\u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd|\u0b8e\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1|\u0bae\u0bbe\u0bb2\u0bc8/,meridiem:function(t,e,n){return t<2?" \u0baf\u0bbe\u0bae\u0bae\u0bcd":t<6?" \u0bb5\u0bc8\u0b95\u0bb1\u0bc8":t<10?" \u0b95\u0bbe\u0bb2\u0bc8":t<14?" \u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd":t<18?" \u0b8e\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1":t<22?" \u0bae\u0bbe\u0bb2\u0bc8":" \u0baf\u0bbe\u0bae\u0bae\u0bcd"},meridiemHour:function(t,e){return 12===t&&(t=0),"\u0baf\u0bbe\u0bae\u0bae\u0bcd"===e?t<2?t:t+12:"\u0bb5\u0bc8\u0b95\u0bb1\u0bc8"===e||"\u0b95\u0bbe\u0bb2\u0bc8"===e?t:"\u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd"===e&&t>=10?t:t+12},week:{dow:0,doy:6}})}(n("wd/R"))},PpIw:function(t,e,n){!function(t){"use strict";var e={1:"\u0ce7",2:"\u0ce8",3:"\u0ce9",4:"\u0cea",5:"\u0ceb",6:"\u0cec",7:"\u0ced",8:"\u0cee",9:"\u0cef",0:"\u0ce6"},n={"\u0ce7":"1","\u0ce8":"2","\u0ce9":"3","\u0cea":"4","\u0ceb":"5","\u0cec":"6","\u0ced":"7","\u0cee":"8","\u0cef":"9","\u0ce6":"0"};t.defineLocale("kn",{months:"\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf_\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf_\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd_\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd_\u0cae\u0cc6\u0cd5_\u0c9c\u0cc2\u0ca8\u0ccd_\u0c9c\u0cc1\u0cb2\u0cc6\u0cd6_\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd_\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd_\u0c85\u0c95\u0ccd\u0c9f\u0cc6\u0cc2\u0cd5\u0cac\u0cb0\u0ccd_\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd_\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd".split("_"),monthsShort:"\u0c9c\u0ca8_\u0cab\u0cc6\u0cac\u0ccd\u0cb0_\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd_\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd_\u0cae\u0cc6\u0cd5_\u0c9c\u0cc2\u0ca8\u0ccd_\u0c9c\u0cc1\u0cb2\u0cc6\u0cd6_\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd_\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82_\u0c85\u0c95\u0ccd\u0c9f\u0cc6\u0cc2\u0cd5_\u0ca8\u0cb5\u0cc6\u0c82_\u0ca1\u0cbf\u0cb8\u0cc6\u0c82".split("_"),monthsParseExact:!0,weekdays:"\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0_\u0cb8\u0cc6\u0cc2\u0cd5\u0cae\u0cb5\u0cbe\u0cb0_\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0_\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0_\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0_\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0_\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0".split("_"),weekdaysShort:"\u0cad\u0cbe\u0ca8\u0cc1_\u0cb8\u0cc6\u0cc2\u0cd5\u0cae_\u0cae\u0c82\u0c97\u0cb3_\u0cac\u0cc1\u0ca7_\u0c97\u0cc1\u0cb0\u0cc1_\u0cb6\u0cc1\u0c95\u0ccd\u0cb0_\u0cb6\u0ca8\u0cbf".split("_"),weekdaysMin:"\u0cad\u0cbe_\u0cb8\u0cc6\u0cc2\u0cd5_\u0cae\u0c82_\u0cac\u0cc1_\u0c97\u0cc1_\u0cb6\u0cc1_\u0cb6".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[\u0c87\u0c82\u0ca6\u0cc1] LT",nextDay:"[\u0ca8\u0cbe\u0cb3\u0cc6] LT",nextWeek:"dddd, LT",lastDay:"[\u0ca8\u0cbf\u0ca8\u0ccd\u0ca8\u0cc6] LT",lastWeek:"[\u0c95\u0cc6\u0cc2\u0ca8\u0cc6\u0caf] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0ca8\u0c82\u0ca4\u0cb0",past:"%s \u0cb9\u0cbf\u0c82\u0ca6\u0cc6",s:"\u0c95\u0cc6\u0cb2\u0cb5\u0cc1 \u0c95\u0ccd\u0cb7\u0ca3\u0c97\u0cb3\u0cc1",ss:"%d \u0cb8\u0cc6\u0c95\u0cc6\u0c82\u0ca1\u0cc1\u0c97\u0cb3\u0cc1",m:"\u0c92\u0c82\u0ca6\u0cc1 \u0ca8\u0cbf\u0cae\u0cbf\u0cb7",mm:"%d \u0ca8\u0cbf\u0cae\u0cbf\u0cb7",h:"\u0c92\u0c82\u0ca6\u0cc1 \u0c97\u0c82\u0c9f\u0cc6",hh:"%d \u0c97\u0c82\u0c9f\u0cc6",d:"\u0c92\u0c82\u0ca6\u0cc1 \u0ca6\u0cbf\u0ca8",dd:"%d \u0ca6\u0cbf\u0ca8",M:"\u0c92\u0c82\u0ca6\u0cc1 \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1",MM:"%d \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1",y:"\u0c92\u0c82\u0ca6\u0cc1 \u0cb5\u0cb0\u0ccd\u0cb7",yy:"%d \u0cb5\u0cb0\u0ccd\u0cb7"},preparse:function(t){return t.replace(/[\u0ce7\u0ce8\u0ce9\u0cea\u0ceb\u0cec\u0ced\u0cee\u0cef\u0ce6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf|\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6|\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8|\u0cb8\u0c82\u0c9c\u0cc6/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"===e?t<4?t:t+12:"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6"===e?t:"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8"===e?t>=10?t:t+12:"\u0cb8\u0c82\u0c9c\u0cc6"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf":t<10?"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6":t<17?"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8":t<20?"\u0cb8\u0c82\u0c9c\u0cc6":"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"},dayOfMonthOrdinalParse:/\d{1,2}(\u0ca8\u0cc6\u0cd5)/,ordinal:function(t){return t+"\u0ca8\u0cc6\u0cd5"},week:{dow:0,doy:6}})}(n("wd/R"))},Qj4J:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ar-kw",{months:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648\u0632_\u063a\u0634\u062a_\u0634\u062a\u0646\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0646\u0628\u0631_\u062f\u062c\u0646\u0628\u0631".split("_"),monthsShort:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648\u0632_\u063a\u0634\u062a_\u0634\u062a\u0646\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0646\u0628\u0631_\u062f\u062c\u0646\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062a\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0627\u062d\u062f_\u0627\u062a\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:0,doy:12}})}()},RAwQ:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return e?r[n][0]:r[n][1]}function i(t){if(t=parseInt(t,10),isNaN(t))return!1;if(t<0)return!0;if(t<10)return 4<=t&&t<=7;if(t<100){var e=t%10;return i(0===e?t/10:e)}if(t<1e4){for(;t>=10;)t/=10;return i(t)}return i(t/=1e3)}n("wd/R").defineLocale("lb",{months:"Januar_Februar_M\xe4erz_Abr\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_M\xe9indeg_D\xebnschdeg_M\xebttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._M\xe9._D\xeb._M\xeb._Do._Fr._Sa.".split("_"),weekdaysMin:"So_M\xe9_D\xeb_M\xeb_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[G\xebschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:function(t){return i(t.substr(0,t.indexOf(" ")))?"a "+t:"an "+t},past:function(t){return i(t.substr(0,t.indexOf(" ")))?"viru "+t:"virun "+t},s:"e puer Sekonnen",ss:"%d Sekonnen",m:e,mm:"%d Minutten",h:e,hh:"%d Stonnen",d:e,dd:"%d Deeg",M:e,MM:"%d M\xe9int",y:e,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},RnhZ:function(t,e,n){var i={"./af":"K/tc","./af.js":"K/tc","./ar":"jnO4","./ar-dz":"o1bE","./ar-dz.js":"o1bE","./ar-kw":"Qj4J","./ar-kw.js":"Qj4J","./ar-ly":"HP3h","./ar-ly.js":"HP3h","./ar-ma":"CoRJ","./ar-ma.js":"CoRJ","./ar-sa":"gjCT","./ar-sa.js":"gjCT","./ar-tn":"bYM6","./ar-tn.js":"bYM6","./ar.js":"jnO4","./az":"SFxW","./az.js":"SFxW","./be":"H8ED","./be.js":"H8ED","./bg":"hKrs","./bg.js":"hKrs","./bm":"p/rL","./bm.js":"p/rL","./bn":"kEOa","./bn.js":"kEOa","./bo":"0mo+","./bo.js":"0mo+","./br":"aIdf","./br.js":"aIdf","./bs":"JVSJ","./bs.js":"JVSJ","./ca":"1xZ4","./ca.js":"1xZ4","./cs":"PA2r","./cs.js":"PA2r","./cv":"A+xa","./cv.js":"A+xa","./cy":"l5ep","./cy.js":"l5ep","./da":"DxQv","./da.js":"DxQv","./de":"tGlX","./de-at":"s+uk","./de-at.js":"s+uk","./de-ch":"u3GI","./de-ch.js":"u3GI","./de.js":"tGlX","./dv":"WYrj","./dv.js":"WYrj","./el":"jUeY","./el.js":"jUeY","./en-SG":"zavE","./en-SG.js":"zavE","./en-au":"Dmvi","./en-au.js":"Dmvi","./en-ca":"OIYi","./en-ca.js":"OIYi","./en-gb":"Oaa7","./en-gb.js":"Oaa7","./en-ie":"4dOw","./en-ie.js":"4dOw","./en-il":"czMo","./en-il.js":"czMo","./en-nz":"b1Dy","./en-nz.js":"b1Dy","./eo":"Zduo","./eo.js":"Zduo","./es":"iYuL","./es-do":"CjzT","./es-do.js":"CjzT","./es-us":"Vclq","./es-us.js":"Vclq","./es.js":"iYuL","./et":"7BjC","./et.js":"7BjC","./eu":"D/JM","./eu.js":"D/JM","./fa":"jfSC","./fa.js":"jfSC","./fi":"gekB","./fi.js":"gekB","./fo":"ByF4","./fo.js":"ByF4","./fr":"nyYc","./fr-ca":"2fjn","./fr-ca.js":"2fjn","./fr-ch":"Dkky","./fr-ch.js":"Dkky","./fr.js":"nyYc","./fy":"cRix","./fy.js":"cRix","./ga":"USCx","./ga.js":"USCx","./gd":"9rRi","./gd.js":"9rRi","./gl":"iEDd","./gl.js":"iEDd","./gom-latn":"DKr+","./gom-latn.js":"DKr+","./gu":"4MV3","./gu.js":"4MV3","./he":"x6pH","./he.js":"x6pH","./hi":"3E1r","./hi.js":"3E1r","./hr":"S6ln","./hr.js":"S6ln","./hu":"WxRl","./hu.js":"WxRl","./hy-am":"1rYy","./hy-am.js":"1rYy","./id":"UDhR","./id.js":"UDhR","./is":"BVg3","./is.js":"BVg3","./it":"bpih","./it-ch":"bxKX","./it-ch.js":"bxKX","./it.js":"bpih","./ja":"B55N","./ja.js":"B55N","./jv":"tUCv","./jv.js":"tUCv","./ka":"IBtZ","./ka.js":"IBtZ","./kk":"bXm7","./kk.js":"bXm7","./km":"6B0Y","./km.js":"6B0Y","./kn":"PpIw","./kn.js":"PpIw","./ko":"Ivi+","./ko.js":"Ivi+","./ku":"JCF/","./ku.js":"JCF/","./ky":"lgnt","./ky.js":"lgnt","./lb":"RAwQ","./lb.js":"RAwQ","./lo":"sp3z","./lo.js":"sp3z","./lt":"JvlW","./lt.js":"JvlW","./lv":"uXwI","./lv.js":"uXwI","./me":"KTz0","./me.js":"KTz0","./mi":"aIsn","./mi.js":"aIsn","./mk":"aQkU","./mk.js":"aQkU","./ml":"AvvY","./ml.js":"AvvY","./mn":"lYtQ","./mn.js":"lYtQ","./mr":"Ob0Z","./mr.js":"Ob0Z","./ms":"6+QB","./ms-my":"ZAMP","./ms-my.js":"ZAMP","./ms.js":"6+QB","./mt":"G0Uy","./mt.js":"G0Uy","./my":"honF","./my.js":"honF","./nb":"bOMt","./nb.js":"bOMt","./ne":"OjkT","./ne.js":"OjkT","./nl":"+s0g","./nl-be":"2ykv","./nl-be.js":"2ykv","./nl.js":"+s0g","./nn":"uEye","./nn.js":"uEye","./pa-in":"8/+R","./pa-in.js":"8/+R","./pl":"jVdC","./pl.js":"jVdC","./pt":"8mBD","./pt-br":"0tRk","./pt-br.js":"0tRk","./pt.js":"8mBD","./ro":"lyxo","./ro.js":"lyxo","./ru":"lXzo","./ru.js":"lXzo","./sd":"Z4QM","./sd.js":"Z4QM","./se":"//9w","./se.js":"//9w","./si":"7aV9","./si.js":"7aV9","./sk":"e+ae","./sk.js":"e+ae","./sl":"gVVK","./sl.js":"gVVK","./sq":"yPMs","./sq.js":"yPMs","./sr":"zx6S","./sr-cyrl":"E+lV","./sr-cyrl.js":"E+lV","./sr.js":"zx6S","./ss":"Ur1D","./ss.js":"Ur1D","./sv":"X709","./sv.js":"X709","./sw":"dNwA","./sw.js":"dNwA","./ta":"PeUW","./ta.js":"PeUW","./te":"XLvN","./te.js":"XLvN","./tet":"V2x9","./tet.js":"V2x9","./tg":"Oxv6","./tg.js":"Oxv6","./th":"EOgW","./th.js":"EOgW","./tl-ph":"Dzi0","./tl-ph.js":"Dzi0","./tlh":"z3Vd","./tlh.js":"z3Vd","./tr":"DoHr","./tr.js":"DoHr","./tzl":"z1FC","./tzl.js":"z1FC","./tzm":"wQk9","./tzm-latn":"tT3J","./tzm-latn.js":"tT3J","./tzm.js":"wQk9","./ug-cn":"YRex","./ug-cn.js":"YRex","./uk":"raLr","./uk.js":"raLr","./ur":"UpQW","./ur.js":"UpQW","./uz":"Loxo","./uz-latn":"AQ68","./uz-latn.js":"AQ68","./uz.js":"Loxo","./vi":"KSF8","./vi.js":"KSF8","./x-pseudo":"/X5v","./x-pseudo.js":"/X5v","./yo":"fzPg","./yo.js":"fzPg","./zh-cn":"XDpg","./zh-cn.js":"XDpg","./zh-hk":"SatO","./zh-hk.js":"SatO","./zh-tw":"kOpN","./zh-tw.js":"kOpN"};function r(t){var e=o(t);return n(e)}function o(t){var e=i[t];if(!(e+1)){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}return e}r.keys=function(){return Object.keys(i)},r.resolve=o,t.exports=r,r.id="RnhZ"},S6ln:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i=t+" ";switch(n){case"ss":return i+(1===t?"sekunda":2===t||3===t||4===t?"sekunde":"sekundi");case"m":return e?"jedna minuta":"jedne minute";case"mm":return i+(1===t?"minuta":2===t||3===t||4===t?"minute":"minuta");case"h":return e?"jedan sat":"jednog sata";case"hh":return i+(1===t?"sat":2===t||3===t||4===t?"sata":"sati");case"dd":return i+(1===t?"dan":"dana");case"MM":return i+(1===t?"mjesec":2===t||3===t||4===t?"mjeseca":"mjeseci");case"yy":return i+(1===t?"godina":2===t||3===t||4===t?"godine":"godina")}}n("wd/R").defineLocale("hr",{months:{format:"sije\u010dnja_velja\u010de_o\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"sije\u010danj_velja\u010da_o\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._o\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010der u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[pro\u0161lu] dddd [u] LT";case 6:return"[pro\u0161le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:e,m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}()},SFxW:function(t,e,n){!function(t){"use strict";var e={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-\xfcnc\xfc",4:"-\xfcnc\xfc",100:"-\xfcnc\xfc",6:"-nc\u0131",9:"-uncu",10:"-uncu",30:"-uncu",60:"-\u0131nc\u0131",90:"-\u0131nc\u0131"};t.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ert\u0259si_\xc7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131_\xc7\u0259r\u015f\u0259nb\u0259_C\xfcm\u0259 ax\u015fam\u0131_C\xfcm\u0259_\u015e\u0259nb\u0259".split("_"),weekdaysShort:"Baz_BzE_\xc7Ax_\xc7\u0259r_CAx_C\xfcm_\u015e\u0259n".split("_"),weekdaysMin:"Bz_BE_\xc7A_\xc7\u0259_CA_C\xfc_\u015e\u0259".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bug\xfcn saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[g\u0259l\u0259n h\u0259ft\u0259] dddd [saat] LT",lastDay:"[d\xfcn\u0259n] LT",lastWeek:"[ke\xe7\u0259n h\u0259ft\u0259] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s \u0259vv\u0259l",s:"birne\xe7\u0259 saniy\u0259",ss:"%d saniy\u0259",m:"bir d\u0259qiq\u0259",mm:"%d d\u0259qiq\u0259",h:"bir saat",hh:"%d saat",d:"bir g\xfcn",dd:"%d g\xfcn",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gec\u0259|s\u0259h\u0259r|g\xfcnd\xfcz|ax\u015fam/,isPM:function(t){return/^(g\xfcnd\xfcz|ax\u015fam)$/.test(t)},meridiem:function(t,e,n){return t<4?"gec\u0259":t<12?"s\u0259h\u0259r":t<17?"g\xfcnd\xfcz":"ax\u015fam"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0131nc\u0131|inci|nci|\xfcnc\xfc|nc\u0131|uncu)/,ordinal:function(t){if(0===t)return t+"-\u0131nc\u0131";var n=t%10;return t+(e[n]||e[t%100-n]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},SatO:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("zh-hk",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661f\u671f\u65e5_\u661f\u671f\u4e00_\u661f\u671f\u4e8c_\u661f\u671f\u4e09_\u661f\u671f\u56db_\u661f\u671f\u4e94_\u661f\u671f\u516d".split("_"),weekdaysShort:"\u9031\u65e5_\u9031\u4e00_\u9031\u4e8c_\u9031\u4e09_\u9031\u56db_\u9031\u4e94_\u9031\u516d".split("_"),weekdaysMin:"\u65e5_\u4e00_\u4e8c_\u4e09_\u56db_\u4e94_\u516d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm",l:"YYYY/M/D",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm"},meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u51cc\u6668"===e||"\u65e9\u4e0a"===e||"\u4e0a\u5348"===e?t:"\u4e2d\u5348"===e?t>=11?t:t+12:"\u4e0b\u5348"===e||"\u665a\u4e0a"===e?t+12:void 0},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:"[\u4e0b]ddddLT",lastDay:"[\u6628\u5929]LT",lastWeek:"[\u4e0a]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u9031)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\u65e5";case"M":return t+"\u6708";case"w":case"W":return t+"\u9031";default:return t}},relativeTime:{future:"%s\u5167",past:"%s\u524d",s:"\u5e7e\u79d2",ss:"%d \u79d2",m:"1 \u5206\u9418",mm:"%d \u5206\u9418",h:"1 \u5c0f\u6642",hh:"%d \u5c0f\u6642",d:"1 \u5929",dd:"%d \u5929",M:"1 \u500b\u6708",MM:"%d \u500b\u6708",y:"1 \u5e74",yy:"%d \u5e74"}})}()},Tos5:function(t,e,n){var i,r;r=function(t){!function(t){var e=t.seriesTypes,n=t.Chart.prototype,i=t.getOptions(),r=t.extend;r(i.lang,{noData:"No data to display"}),i.noData={position:{x:0,y:0,align:"center",verticalAlign:"middle"},style:{fontWeight:"bold",fontSize:"12px",color:"#666666"}},"bubble gauge heatmap networkgraph pie sankey treemap waterfall".split(" ").forEach(function(t){e[t]&&(e[t].prototype.hasData=function(){return!!this.points.length})}),t.Series.prototype.hasData=function(){return this.visible&&void 0!==this.dataMax&&void 0!==this.dataMin||this.visible&&this.yData&&0=11?t:t+12:"sore"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"siang":t<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}()},USCx:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ga",{months:["Ean\xe1ir","Feabhra","M\xe1rta","Aibre\xe1n","Bealtaine","M\xe9itheamh","I\xfail","L\xfanasa","Me\xe1n F\xf3mhair","Deaireadh F\xf3mhair","Samhain","Nollaig"],monthsShort:["Ean\xe1","Feab","M\xe1rt","Aibr","Beal","M\xe9it","I\xfail","L\xfana","Me\xe1n","Deai","Samh","Noll"],monthsParseExact:!0,weekdays:["D\xe9 Domhnaigh","D\xe9 Luain","D\xe9 M\xe1irt","D\xe9 C\xe9adaoin","D\xe9ardaoin","D\xe9 hAoine","D\xe9 Satharn"],weekdaysShort:["Dom","Lua","M\xe1i","C\xe9a","D\xe9a","hAo","Sat"],weekdaysMin:["Do","Lu","M\xe1","Ce","D\xe9","hA","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Am\xe1rach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inn\xe9 aig] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s \xf3 shin",s:"c\xfapla soicind",ss:"%d soicind",m:"n\xf3im\xe9ad",mm:"%d n\xf3im\xe9ad",h:"uair an chloig",hh:"%d uair an chloig",d:"l\xe1",dd:"%d l\xe1",M:"m\xed",MM:"%d m\xed",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(t){return t+(1===t?"d":t%10==2?"na":"mh")},week:{dow:1,doy:4}})}()},UpQW:function(t,e,n){!function(t){"use strict";var e=["\u062c\u0646\u0648\u0631\u06cc","\u0641\u0631\u0648\u0631\u06cc","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u06cc\u0644","\u0645\u0626\u06cc","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u0626\u06cc","\u0627\u06af\u0633\u062a","\u0633\u062a\u0645\u0628\u0631","\u0627\u06a9\u062a\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u062f\u0633\u0645\u0628\u0631"],i=["\u0627\u062a\u0648\u0627\u0631","\u067e\u06cc\u0631","\u0645\u0646\u06af\u0644","\u0628\u062f\u06be","\u062c\u0645\u0639\u0631\u0627\u062a","\u062c\u0645\u0639\u06c1","\u06c1\u0641\u062a\u06c1"];n("wd/R").defineLocale("ur",{months:e,monthsShort:e,weekdays:i,weekdaysShort:i,weekdaysMin:i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd\u060c D MMMM YYYY HH:mm"},meridiemParse:/\u0635\u0628\u062d|\u0634\u0627\u0645/,isPM:function(t){return"\u0634\u0627\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635\u0628\u062d":"\u0634\u0627\u0645"},calendar:{sameDay:"[\u0622\u062c \u0628\u0648\u0642\u062a] LT",nextDay:"[\u06a9\u0644 \u0628\u0648\u0642\u062a] LT",nextWeek:"dddd [\u0628\u0648\u0642\u062a] LT",lastDay:"[\u06af\u0630\u0634\u062a\u06c1 \u0631\u0648\u0632 \u0628\u0648\u0642\u062a] LT",lastWeek:"[\u06af\u0630\u0634\u062a\u06c1] dddd [\u0628\u0648\u0642\u062a] LT",sameElse:"L"},relativeTime:{future:"%s \u0628\u0639\u062f",past:"%s \u0642\u0628\u0644",s:"\u0686\u0646\u062f \u0633\u06cc\u06a9\u0646\u0688",ss:"%d \u0633\u06cc\u06a9\u0646\u0688",m:"\u0627\u06cc\u06a9 \u0645\u0646\u0679",mm:"%d \u0645\u0646\u0679",h:"\u0627\u06cc\u06a9 \u06af\u06be\u0646\u0679\u06c1",hh:"%d \u06af\u06be\u0646\u0679\u06d2",d:"\u0627\u06cc\u06a9 \u062f\u0646",dd:"%d \u062f\u0646",M:"\u0627\u06cc\u06a9 \u0645\u0627\u06c1",MM:"%d \u0645\u0627\u06c1",y:"\u0627\u06cc\u06a9 \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}()},Ur1D:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(t,e,n){return t<11?"ekuseni":t<15?"emini":t<19?"entsambama":"ebusuku"},meridiemHour:function(t,e){return 12===t&&(t=0),"ekuseni"===e?t:"emini"===e?t>=11?t:t+12:"entsambama"===e||"ebusuku"===e?0===t?0:t+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})}()},V2x9:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"minutu balun",ss:"minutu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},Vclq:function(t,e,n){!function(t){"use strict";var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;t.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_mi\xe9rcoles_jueves_viernes_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._mi\xe9._jue._vie._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[ma\xf1ana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un a\xf1o",yy:"%d a\xf1os"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:0,doy:6}})}(n("wd/R"))},WYrj:function(t,e,n){!function(t){"use strict";var e=["\u0796\u07ac\u0782\u07aa\u0787\u07a6\u0783\u07a9","\u078a\u07ac\u0784\u07b0\u0783\u07aa\u0787\u07a6\u0783\u07a9","\u0789\u07a7\u0783\u07a8\u0797\u07aa","\u0787\u07ad\u0795\u07b0\u0783\u07a9\u078d\u07aa","\u0789\u07ad","\u0796\u07ab\u0782\u07b0","\u0796\u07aa\u078d\u07a6\u0787\u07a8","\u0787\u07af\u078e\u07a6\u0790\u07b0\u0793\u07aa","\u0790\u07ac\u0795\u07b0\u0793\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa","\u0787\u07ae\u0786\u07b0\u0793\u07af\u0784\u07a6\u0783\u07aa","\u0782\u07ae\u0788\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa","\u0791\u07a8\u0790\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa"],i=["\u0787\u07a7\u078b\u07a8\u0787\u07b0\u078c\u07a6","\u0780\u07af\u0789\u07a6","\u0787\u07a6\u0782\u07b0\u078e\u07a7\u0783\u07a6","\u0784\u07aa\u078b\u07a6","\u0784\u07aa\u0783\u07a7\u0790\u07b0\u078a\u07a6\u078c\u07a8","\u0780\u07aa\u0786\u07aa\u0783\u07aa","\u0780\u07ae\u0782\u07a8\u0780\u07a8\u0783\u07aa"];n("wd/R").defineLocale("dv",{months:e,monthsShort:e,weekdays:i,weekdaysShort:i,weekdaysMin:"\u0787\u07a7\u078b\u07a8_\u0780\u07af\u0789\u07a6_\u0787\u07a6\u0782\u07b0_\u0784\u07aa\u078b\u07a6_\u0784\u07aa\u0783\u07a7_\u0780\u07aa\u0786\u07aa_\u0780\u07ae\u0782\u07a8".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0789\u0786|\u0789\u078a/,isPM:function(t){return"\u0789\u078a"===t},meridiem:function(t,e,n){return t<12?"\u0789\u0786":"\u0789\u078a"},calendar:{sameDay:"[\u0789\u07a8\u0787\u07a6\u078b\u07aa] LT",nextDay:"[\u0789\u07a7\u078b\u07a6\u0789\u07a7] LT",nextWeek:"dddd LT",lastDay:"[\u0787\u07a8\u0787\u07b0\u0794\u07ac] LT",lastWeek:"[\u078a\u07a7\u0787\u07a8\u078c\u07aa\u0788\u07a8] dddd LT",sameElse:"L"},relativeTime:{future:"\u078c\u07ac\u0783\u07ad\u078e\u07a6\u0787\u07a8 %s",past:"\u0786\u07aa\u0783\u07a8\u0782\u07b0 %s",s:"\u0790\u07a8\u0786\u07aa\u0782\u07b0\u078c\u07aa\u0786\u07ae\u0785\u07ac\u0787\u07b0",ss:"d% \u0790\u07a8\u0786\u07aa\u0782\u07b0\u078c\u07aa",m:"\u0789\u07a8\u0782\u07a8\u0793\u07ac\u0787\u07b0",mm:"\u0789\u07a8\u0782\u07a8\u0793\u07aa %d",h:"\u078e\u07a6\u0791\u07a8\u0787\u07a8\u0783\u07ac\u0787\u07b0",hh:"\u078e\u07a6\u0791\u07a8\u0787\u07a8\u0783\u07aa %d",d:"\u078b\u07aa\u0788\u07a6\u0780\u07ac\u0787\u07b0",dd:"\u078b\u07aa\u0788\u07a6\u0790\u07b0 %d",M:"\u0789\u07a6\u0780\u07ac\u0787\u07b0",MM:"\u0789\u07a6\u0790\u07b0 %d",y:"\u0787\u07a6\u0780\u07a6\u0783\u07ac\u0787\u07b0",yy:"\u0787\u07a6\u0780\u07a6\u0783\u07aa %d"},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:7,doy:12}})}()},WxRl:function(t,e,n){!function(t){"use strict";var e="vas\xe1rnap h\xe9tf\u0151n kedden szerd\xe1n cs\xfct\xf6rt\xf6k\xf6n p\xe9nteken szombaton".split(" ");function n(t,e,n,i){var r=t;switch(n){case"s":return i||e?"n\xe9h\xe1ny m\xe1sodperc":"n\xe9h\xe1ny m\xe1sodperce";case"ss":return r+(i||e)?" m\xe1sodperc":" m\xe1sodperce";case"m":return"egy"+(i||e?" perc":" perce");case"mm":return r+(i||e?" perc":" perce");case"h":return"egy"+(i||e?" \xf3ra":" \xf3r\xe1ja");case"hh":return r+(i||e?" \xf3ra":" \xf3r\xe1ja");case"d":return"egy"+(i||e?" nap":" napja");case"dd":return r+(i||e?" nap":" napja");case"M":return"egy"+(i||e?" h\xf3nap":" h\xf3napja");case"MM":return r+(i||e?" h\xf3nap":" h\xf3napja");case"y":return"egy"+(i||e?" \xe9v":" \xe9ve");case"yy":return r+(i||e?" \xe9v":" \xe9ve")}return""}function i(t){return(t?"":"[m\xfalt] ")+"["+e[this.day()]+"] LT[-kor]"}t.defineLocale("hu",{months:"janu\xe1r_febru\xe1r_m\xe1rcius_\xe1prilis_m\xe1jus_j\xfanius_j\xfalius_augusztus_szeptember_okt\xf3ber_november_december".split("_"),monthsShort:"jan_feb_m\xe1rc_\xe1pr_m\xe1j_j\xfan_j\xfal_aug_szept_okt_nov_dec".split("_"),weekdays:"vas\xe1rnap_h\xe9tf\u0151_kedd_szerda_cs\xfct\xf6rt\xf6k_p\xe9ntek_szombat".split("_"),weekdaysShort:"vas_h\xe9t_kedd_sze_cs\xfct_p\xe9n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(t){return"u"===t.charAt(1).toLowerCase()},meridiem:function(t,e,n){return t<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return i.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return i.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s m\xfalva",past:"%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},X709:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"s\xf6ndag_m\xe5ndag_tisdag_onsdag_torsdag_fredag_l\xf6rdag".split("_"),weekdaysShort:"s\xf6n_m\xe5n_tis_ons_tor_fre_l\xf6r".split("_"),weekdaysMin:"s\xf6_m\xe5_ti_on_to_fr_l\xf6".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Ig\xe5r] LT",nextWeek:"[P\xe5] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"f\xf6r %s sedan",s:"n\xe5gra sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en m\xe5nad",MM:"%d m\xe5nader",y:"ett \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}(e|a)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"e":1===e?"a":2===e?"a":"e")},week:{dow:1,doy:4}})}()},XDpg:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("zh-cn",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661f\u671f\u65e5_\u661f\u671f\u4e00_\u661f\u671f\u4e8c_\u661f\u671f\u4e09_\u661f\u671f\u56db_\u661f\u671f\u4e94_\u661f\u671f\u516d".split("_"),weekdaysShort:"\u5468\u65e5_\u5468\u4e00_\u5468\u4e8c_\u5468\u4e09_\u5468\u56db_\u5468\u4e94_\u5468\u516d".split("_"),weekdaysMin:"\u65e5_\u4e00_\u4e8c_\u4e09_\u56db_\u4e94_\u516d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5Ah\u70b9mm\u5206",LLLL:"YYYY\u5e74M\u6708D\u65e5ddddAh\u70b9mm\u5206",l:"YYYY/M/D",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm"},meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u51cc\u6668"===e||"\u65e9\u4e0a"===e||"\u4e0a\u5348"===e?t:"\u4e0b\u5348"===e||"\u665a\u4e0a"===e?t+12:t>=11?t:t+12},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:"[\u4e0b]ddddLT",lastDay:"[\u6628\u5929]LT",lastWeek:"[\u4e0a]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u5468)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\u65e5";case"M":return t+"\u6708";case"w":case"W":return t+"\u5468";default:return t}},relativeTime:{future:"%s\u5185",past:"%s\u524d",s:"\u51e0\u79d2",ss:"%d \u79d2",m:"1 \u5206\u949f",mm:"%d \u5206\u949f",h:"1 \u5c0f\u65f6",hh:"%d \u5c0f\u65f6",d:"1 \u5929",dd:"%d \u5929",M:"1 \u4e2a\u6708",MM:"%d \u4e2a\u6708",y:"1 \u5e74",yy:"%d \u5e74"},week:{dow:1,doy:4}})}()},XLvN:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("te",{months:"\u0c1c\u0c28\u0c35\u0c30\u0c3f_\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f_\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f_\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d_\u0c2e\u0c47_\u0c1c\u0c42\u0c28\u0c4d_\u0c1c\u0c41\u0c32\u0c48_\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41_\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d_\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d_\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d_\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d".split("_"),monthsShort:"\u0c1c\u0c28._\u0c2b\u0c3f\u0c2c\u0c4d\u0c30._\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f_\u0c0f\u0c2a\u0c4d\u0c30\u0c3f._\u0c2e\u0c47_\u0c1c\u0c42\u0c28\u0c4d_\u0c1c\u0c41\u0c32\u0c48_\u0c06\u0c17._\u0c38\u0c46\u0c2a\u0c4d._\u0c05\u0c15\u0c4d\u0c1f\u0c4b._\u0c28\u0c35._\u0c21\u0c3f\u0c38\u0c46.".split("_"),monthsParseExact:!0,weekdays:"\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02_\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02_\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02_\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02_\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02_\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02_\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02".split("_"),weekdaysShort:"\u0c06\u0c26\u0c3f_\u0c38\u0c4b\u0c2e_\u0c2e\u0c02\u0c17\u0c33_\u0c2c\u0c41\u0c27_\u0c17\u0c41\u0c30\u0c41_\u0c36\u0c41\u0c15\u0c4d\u0c30_\u0c36\u0c28\u0c3f".split("_"),weekdaysMin:"\u0c06_\u0c38\u0c4b_\u0c2e\u0c02_\u0c2c\u0c41_\u0c17\u0c41_\u0c36\u0c41_\u0c36".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[\u0c28\u0c47\u0c21\u0c41] LT",nextDay:"[\u0c30\u0c47\u0c2a\u0c41] LT",nextWeek:"dddd, LT",lastDay:"[\u0c28\u0c3f\u0c28\u0c4d\u0c28] LT",lastWeek:"[\u0c17\u0c24] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0c32\u0c4b",past:"%s \u0c15\u0c4d\u0c30\u0c3f\u0c24\u0c02",s:"\u0c15\u0c4a\u0c28\u0c4d\u0c28\u0c3f \u0c15\u0c4d\u0c37\u0c23\u0c3e\u0c32\u0c41",ss:"%d \u0c38\u0c46\u0c15\u0c28\u0c4d\u0c32\u0c41",m:"\u0c12\u0c15 \u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c02",mm:"%d \u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c3e\u0c32\u0c41",h:"\u0c12\u0c15 \u0c17\u0c02\u0c1f",hh:"%d \u0c17\u0c02\u0c1f\u0c32\u0c41",d:"\u0c12\u0c15 \u0c30\u0c4b\u0c1c\u0c41",dd:"%d \u0c30\u0c4b\u0c1c\u0c41\u0c32\u0c41",M:"\u0c12\u0c15 \u0c28\u0c46\u0c32",MM:"%d \u0c28\u0c46\u0c32\u0c32\u0c41",y:"\u0c12\u0c15 \u0c38\u0c02\u0c35\u0c24\u0c4d\u0c38\u0c30\u0c02",yy:"%d \u0c38\u0c02\u0c35\u0c24\u0c4d\u0c38\u0c30\u0c3e\u0c32\u0c41"},dayOfMonthOrdinalParse:/\d{1,2}\u0c35/,ordinal:"%d\u0c35",meridiemParse:/\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f|\u0c09\u0c26\u0c2f\u0c02|\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02|\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"===e?t<4?t:t+12:"\u0c09\u0c26\u0c2f\u0c02"===e?t:"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02"===e?t>=10?t:t+12:"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f":t<10?"\u0c09\u0c26\u0c2f\u0c02":t<17?"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02":t<20?"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02":"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"},week:{dow:0,doy:6}})}()},YRex:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ug-cn",{months:"\u064a\u0627\u0646\u06cb\u0627\u0631_\u0641\u06d0\u06cb\u0631\u0627\u0644_\u0645\u0627\u0631\u062a_\u0626\u0627\u067e\u0631\u06d0\u0644_\u0645\u0627\u064a_\u0626\u0649\u064a\u06c7\u0646_\u0626\u0649\u064a\u06c7\u0644_\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a_\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631_\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631_\u0646\u0648\u064a\u0627\u0628\u0649\u0631_\u062f\u06d0\u0643\u0627\u0628\u0649\u0631".split("_"),monthsShort:"\u064a\u0627\u0646\u06cb\u0627\u0631_\u0641\u06d0\u06cb\u0631\u0627\u0644_\u0645\u0627\u0631\u062a_\u0626\u0627\u067e\u0631\u06d0\u0644_\u0645\u0627\u064a_\u0626\u0649\u064a\u06c7\u0646_\u0626\u0649\u064a\u06c7\u0644_\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a_\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631_\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631_\u0646\u0648\u064a\u0627\u0628\u0649\u0631_\u062f\u06d0\u0643\u0627\u0628\u0649\u0631".split("_"),weekdays:"\u064a\u06d5\u0643\u0634\u06d5\u0646\u0628\u06d5_\u062f\u06c8\u0634\u06d5\u0646\u0628\u06d5_\u0633\u06d5\u064a\u0634\u06d5\u0646\u0628\u06d5_\u0686\u0627\u0631\u0634\u06d5\u0646\u0628\u06d5_\u067e\u06d5\u064a\u0634\u06d5\u0646\u0628\u06d5_\u062c\u06c8\u0645\u06d5_\u0634\u06d5\u0646\u0628\u06d5".split("_"),weekdaysShort:"\u064a\u06d5_\u062f\u06c8_\u0633\u06d5_\u0686\u0627_\u067e\u06d5_\u062c\u06c8_\u0634\u06d5".split("_"),weekdaysMin:"\u064a\u06d5_\u062f\u06c8_\u0633\u06d5_\u0686\u0627_\u067e\u06d5_\u062c\u06c8_\u0634\u06d5".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-\u064a\u0649\u0644\u0649M-\u0626\u0627\u064a\u0646\u0649\u06adD-\u0643\u06c8\u0646\u0649",LLL:"YYYY-\u064a\u0649\u0644\u0649M-\u0626\u0627\u064a\u0646\u0649\u06adD-\u0643\u06c8\u0646\u0649\u060c HH:mm",LLLL:"dddd\u060c YYYY-\u064a\u0649\u0644\u0649M-\u0626\u0627\u064a\u0646\u0649\u06adD-\u0643\u06c8\u0646\u0649\u060c HH:mm"},meridiemParse:/\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5|\u0633\u06d5\u06be\u06d5\u0631|\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646|\u0686\u06c8\u0634|\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646|\u0643\u06d5\u0686/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5"===e||"\u0633\u06d5\u06be\u06d5\u0631"===e||"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646"===e?t:"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646"===e||"\u0643\u06d5\u0686"===e?t+12:t>=11?t:t+12},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5":i<900?"\u0633\u06d5\u06be\u06d5\u0631":i<1130?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646":i<1230?"\u0686\u06c8\u0634":i<1800?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646":"\u0643\u06d5\u0686"},calendar:{sameDay:"[\u0628\u06c8\u06af\u06c8\u0646 \u0633\u0627\u0626\u06d5\u062a] LT",nextDay:"[\u0626\u06d5\u062a\u06d5 \u0633\u0627\u0626\u06d5\u062a] LT",nextWeek:"[\u0643\u06d0\u0644\u06d5\u0631\u0643\u0649] dddd [\u0633\u0627\u0626\u06d5\u062a] LT",lastDay:"[\u062a\u06c6\u0646\u06c8\u06af\u06c8\u0646] LT",lastWeek:"[\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649] dddd [\u0633\u0627\u0626\u06d5\u062a] LT",sameElse:"L"},relativeTime:{future:"%s \u0643\u06d0\u064a\u0649\u0646",past:"%s \u0628\u06c7\u0631\u06c7\u0646",s:"\u0646\u06d5\u0686\u0686\u06d5 \u0633\u06d0\u0643\u0648\u0646\u062a",ss:"%d \u0633\u06d0\u0643\u0648\u0646\u062a",m:"\u0628\u0649\u0631 \u0645\u0649\u0646\u06c7\u062a",mm:"%d \u0645\u0649\u0646\u06c7\u062a",h:"\u0628\u0649\u0631 \u0633\u0627\u0626\u06d5\u062a",hh:"%d \u0633\u0627\u0626\u06d5\u062a",d:"\u0628\u0649\u0631 \u0643\u06c8\u0646",dd:"%d \u0643\u06c8\u0646",M:"\u0628\u0649\u0631 \u0626\u0627\u064a",MM:"%d \u0626\u0627\u064a",y:"\u0628\u0649\u0631 \u064a\u0649\u0644",yy:"%d \u064a\u0649\u0644"},dayOfMonthOrdinalParse:/\d{1,2}(-\u0643\u06c8\u0646\u0649|-\u0626\u0627\u064a|-\u06be\u06d5\u067e\u062a\u06d5)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"-\u0643\u06c8\u0646\u0649";case"w":case"W":return t+"-\u06be\u06d5\u067e\u062a\u06d5";default:return t}},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:1,doy:7}})}()},YuTi:function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},Z4QM:function(t,e,n){!function(t){"use strict";var e=["\u062c\u0646\u0648\u0631\u064a","\u0641\u064a\u0628\u0631\u0648\u0631\u064a","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u064a\u0644","\u0645\u0626\u064a","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u0621\u0650","\u0622\u06af\u0633\u067d","\u0633\u064a\u067e\u067d\u0645\u0628\u0631","\u0622\u06aa\u067d\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u068a\u0633\u0645\u0628\u0631"],i=["\u0622\u0686\u0631","\u0633\u0648\u0645\u0631","\u0627\u06b1\u0627\u0631\u0648","\u0627\u0631\u0628\u0639","\u062e\u0645\u064a\u0633","\u062c\u0645\u0639","\u0687\u0646\u0687\u0631"];n("wd/R").defineLocale("sd",{months:e,monthsShort:e,weekdays:i,weekdaysShort:i,weekdaysMin:i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd\u060c D MMMM YYYY HH:mm"},meridiemParse:/\u0635\u0628\u062d|\u0634\u0627\u0645/,isPM:function(t){return"\u0634\u0627\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635\u0628\u062d":"\u0634\u0627\u0645"},calendar:{sameDay:"[\u0627\u0684] LT",nextDay:"[\u0633\u0680\u0627\u06bb\u064a] LT",nextWeek:"dddd [\u0627\u06b3\u064a\u0646 \u0647\u0641\u062a\u064a \u062a\u064a] LT",lastDay:"[\u06aa\u0627\u0644\u0647\u0647] LT",lastWeek:"[\u06af\u0632\u0631\u064a\u0644 \u0647\u0641\u062a\u064a] dddd [\u062a\u064a] LT",sameElse:"L"},relativeTime:{future:"%s \u067e\u0648\u0621",past:"%s \u0627\u06b3",s:"\u0686\u0646\u062f \u0633\u064a\u06aa\u0646\u068a",ss:"%d \u0633\u064a\u06aa\u0646\u068a",m:"\u0647\u06aa \u0645\u0646\u067d",mm:"%d \u0645\u0646\u067d",h:"\u0647\u06aa \u06aa\u0644\u0627\u06aa",hh:"%d \u06aa\u0644\u0627\u06aa",d:"\u0647\u06aa \u068f\u064a\u0646\u0647\u0646",dd:"%d \u068f\u064a\u0646\u0647\u0646",M:"\u0647\u06aa \u0645\u0647\u064a\u0646\u0648",MM:"%d \u0645\u0647\u064a\u0646\u0627",y:"\u0647\u06aa \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"},preparse:function(t){return t.replace(/\u060c/g,",")},postformat:function(t){return t.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}()},Z9Wc:function(t,e,n){var i,r;r=function(t){var e,n,i;n=(e=t).deg2rad,i=e.pick,e.perspective3D=function(t,e,n){return e=0a&&l-a>Math.PI/2+1e-4?c=(c=c.concat(e(t,i,r,o,a,a+Math.PI/2,s,u))).concat(e(t,i,r,o,a+Math.PI/2,l,s,u)):lMath.PI/2+1e-4?c=(c=c.concat(e(t,i,r,o,a,a-Math.PI/2,s,u))).concat(e(t,i,r,o,a-Math.PI/2,l,s,u)):["C",t+r*Math.cos(a)-r*n*d*Math.sin(a)+s,i+o*Math.sin(a)+o*n*d*Math.cos(a)+u,t+r*Math.cos(l)+r*n*d*Math.sin(l)+s,i+o*Math.sin(l)-o*n*d*Math.cos(l)+u,t+r*Math.cos(l)+s,i+o*Math.sin(l)+u]}var n,i,r,o=Math.cos,a=Math.PI,l=Math.sin,s=t.animObject,u=t.charts,c=t.color,d=t.defined,h=t.deg2rad,p=t.extend,f=t.merge,m=t.perspective,g=t.pick,y=t.SVGElement,_=t.SVGRenderer;n=4*(Math.sqrt(2)-1)/3/(a/2),_.prototype.toLinePath=function(t,e){var n=[];return t.forEach(function(t){n.push("L",t.x,t.y)}),t.length&&(n[0]="M",e&&n.push("Z")),n},_.prototype.toLineSegments=function(t){var e=[],n=!0;return t.forEach(function(t){e.push(n?"M":"L",t.x,t.y),n=!n}),e},_.prototype.face3d=function(e){var n=this,i=this.createElement("path");return i.vertexes=[],i.insidePlotArea=!1,i.enabled=!0,i.attr=function(e){if("object"==typeof e&&(d(e.enabled)||d(e.vertexes)||d(e.insidePlotArea))){this.enabled=g(e.enabled,this.enabled),this.vertexes=g(e.vertexes,this.vertexes),this.insidePlotArea=g(e.insidePlotArea,this.insidePlotArea),delete e.enabled,delete e.vertexes,delete e.insidePlotArea;var i=m(this.vertexes,u[n.chartIndex],this.insidePlotArea),r=n.toLinePath(i,!0);i=t.shapeArea(i),i=this.enabled&&0t.faces.length;)n.faces.pop().destroy();for(;n.faces.lengtht.faces.length;)n.faces.pop().destroy();for(;n.faces.lengtht.shapeArea(e)?r=[e,0]:0>t.shapeArea(i)&&(r=[i,1]),r},e=(i=r([3,2,1,0],[7,6,5,4]))[0],c=i[1],s=(i=r([1,6,7,0],[4,5,2,3]))[0],d=i[1],i=r([1,2,5,6],[0,7,4,3]),r=i[0],1===(i=i[1])?f+=1e4*(1e3-o):i||(f+=1e4*o),f+=10*(!d||0<=p&&180>=p||360>p&&357.5Math.PI&&(t=2*Math.PI-t),t}var i=t.x,r=t.y,s=t.start,u=t.end-1e-5,c=t.r,d=t.innerR||0,h=t.depth||0,p=t.alpha,f=t.beta,m=Math.cos(s),g=Math.sin(s);t=Math.cos(u);var y=Math.sin(u),_=c*Math.cos(f),v=(c*=Math.cos(p),d*Math.cos(f)),b=d*Math.cos(p),x=(d=h*Math.sin(f),h*Math.sin(p)),w=(h=(h=(h=(h=(h=["M",i+_*m,r+c*g]).concat(e(i,r,_,c,s,u,0,0))).concat(["L",i+v*t,r+b*y])).concat(e(i,r,v,b,u,s,0,0))).concat(["Z"]),0-w?s:u>-w?-w:s),r+c*l(w)]).concat(e(i,r,_,c,w,k,0,0)),u>M&&sa-f&&sc&&(f=Math.min(f,1-Math.abs((i+s)/(c+s))%1)),oh&&(f=0>h?Math.min(f,(a+u)/(-h+a+u)):Math.min(f,1-(a+u)/(h+u)%1)),ln?-1:0})([{x:a,y:u,z:c},{x:l,y:u,z:c},{x:l,y:u,z:0},{x:a,y:u,z:0}]),h=g([{x:a,y:s,z:0},{x:l,y:s,z:0},{x:l,y:s,z:c},{x:a,y:s,z:c}]),p=g([{x:a,y:s,z:0},{x:a,y:s,z:c},{x:a,y:u,z:c},{x:a,y:u,z:0}]),f=g([{x:l,y:s,z:c},{x:l,y:s,z:0},{x:l,y:u,z:0},{x:l,y:u,z:c}]),m=g([{x:a,y:u,z:0},{x:l,y:u,z:0},{x:l,y:s,z:0},{x:a,y:s,z:0}]),g=g([{x:a,y:s,z:c},{x:l,y:s,z:c},{x:l,y:u,z:c},{x:a,y:u,z:c}]),y=!1,_=!1,v=!1,b=!1;[].concat(e.xAxis,e.yAxis,e.zAxis).forEach(function(t){t&&(t.horiz?t.opposite?_=!0:y=!0:t.opposite?b=!0:v=!0)});var x=function(t,e,n){for(var i=["size","color","visible"],r={},a=0;ai*a[o][n]?o=l:i*a[l][n]==i*a[o][n]&&a[l].zthis.pos&&(t.isArray(this.start)||t.isArray(this.end))){var n=this.start||[1,0,0,1,0,0],i=this.end||[1,0,0,1,0,0];e=[];for(var r=0;6>r;r++)e.push(this.pos*i[r]+(1-this.pos)*n[r])}else e=this.end;this.elem.attr(this.prop,e,null,!0)}}(t),function(t){function e(t,e,n){if(!t.chart.is3d()||"colorAxis"===t.coll)return e;var i=a*(m=t.chart).options.chart.options3d.alpha,r=a*m.options.chart.options3d.beta,o=d(n&&t.options.title.position3d,t.options.labels.position3d);n=d(n&&t.options.title.skew3d,t.options.labels.skew3d);var l=m.frame3d,s=m.plotLeft,c=m.plotWidth+s,p=m.plotTop,f=m.plotHeight+p,m=!1,g=0,y=0,_={x:0,y:1,z:0};if(e=t.swapZ({x:e.x,y:e.y,z:0}),t.isZAxis)if(t.opposite){if(null===l.axes.z.top)return{};y=e.y-p,e.x=l.axes.z.top.x,e.y=l.axes.z.top.y,s=l.axes.z.top.xDir,m=!l.top.frontFacing}else{if(null===l.axes.z.bottom)return{};y=e.y-f,e.x=l.axes.z.bottom.x,e.y=l.axes.z.bottom.y,s=l.axes.z.bottom.xDir,m=!l.bottom.frontFacing}else if(t.horiz)if(t.opposite){if(null===l.axes.x.top)return{};y=e.y-p,e.y=l.axes.x.top.y,e.z=l.axes.x.top.z,s=l.axes.x.top.xDir,m=!l.top.frontFacing}else{if(null===l.axes.x.bottom)return{};y=e.y-f,e.y=l.axes.x.bottom.y,e.z=l.axes.x.bottom.z,s=l.axes.x.bottom.xDir,m=!l.bottom.frontFacing}else if(t.opposite){if(null===l.axes.y.right)return{};g=e.x-c,e.x=l.axes.y.right.x,e.z=l.axes.y.right.z,s={x:(s=l.axes.y.right.xDir).z,y:s.y,z:-s.x}}else{if(null===l.axes.y.left)return{};g=e.x-s,e.x=l.axes.y.left.x,e.z=l.axes.y.left.z,s=l.axes.y.left.xDir}return"chart"!==o&&("flap"===o?t.horiz?(r=Math.sin(i),i=Math.cos(i),t.opposite&&(r=-r),m&&(r=-r),_={x:s.z*r,y:i,z:-s.x*r}):s={x:Math.cos(r),y:0,z:Math.sin(r)}:"ortho"===o?t.horiz?(_=Math.cos(i),o=Math.sin(r)*_,i=-Math.sin(i),r=-_*Math.cos(r),_={x:s.y*r-s.z*i,y:s.z*o-s.x*r,z:s.x*i-s.y*o},i=1/Math.sqrt(_.x*_.x+_.y*_.y+_.z*_.z),m&&(i=-i),_={x:i*_.x,y:i*_.y,z:i*_.z}):s={x:Math.cos(r),y:0,z:Math.sin(r)}:t.horiz?_={x:Math.sin(r)*Math.sin(i),y:Math.cos(i),z:-Math.cos(r)*Math.sin(i)}:s={x:Math.cos(r),y:0,z:Math.sin(r)}),e.x+=g*s.x+y*_.x,e.y+=g*s.y+y*_.y,e.z+=g*s.z+y*_.z,m=u([e],t.chart)[0],n&&(0>h(u([e,{x:e.x+s.x,y:e.y+s.y,z:e.z+s.z},{x:e.x+_.x,y:e.y+_.y,z:e.z+_.z}],t.chart))&&(s={x:-s.x,y:-s.y,z:-s.z}),t=u([{x:e.x,y:e.y,z:e.z},{x:e.x+s.x,y:e.y+s.y,z:e.z+s.z},{x:e.x+_.x,y:e.y+_.y,z:e.z+_.z}],t.chart),m.matrix=[t[1].x-t[0].x,t[1].y-t[0].y,t[2].x-t[0].x,t[2].y-t[0].y,m.x,m.y],m.matrix[4]-=m.x*m.matrix[0]+m.y*m.matrix[2],m.matrix[5]-=m.x*m.matrix[1]+m.y*m.matrix[3]),m}var n,i=t.addEvent,r=t.Axis,o=t.Chart,a=t.deg2rad,l=t.extend,s=t.merge,u=t.perspective,c=t.perspective3D,d=t.pick,h=t.shapeArea,p=t.splat,f=t.Tick,m=t.wrap;s(!0,r.prototype.defaultOptions,{labels:{position3d:"offset",skew3d:!1},title:{position3d:null,skew3d:null}}),i(r,"afterSetOptions",function(){var t;this.chart.is3d&&this.chart.is3d()&&"colorAxis"!==this.coll&&((t=this.options).tickWidth=d(t.tickWidth,0),t.gridLineWidth=d(t.gridLineWidth,1))}),m(r.prototype,"getPlotLinePath",function(t){var e=t.apply(this,[].slice.call(arguments,1));if(!this.chart.is3d()||"colorAxis"===this.coll||null===e)return e;var n=(i=this.chart).options.chart.options3d,i=(n=this.isZAxis?i.plotWidth:n.depth,i.frame3d);return e=[this.swapZ({x:e[1],y:e[2],z:0}),this.swapZ({x:e[1],y:e[2],z:n}),this.swapZ({x:e[4],y:e[5],z:0}),this.swapZ({x:e[4],y:e[5],z:n})],n=[],this.horiz?(this.isZAxis?(i.left.visible&&n.push(e[0],e[2]),i.right.visible&&n.push(e[1],e[3])):(i.front.visible&&n.push(e[0],e[2]),i.back.visible&&n.push(e[1],e[3])),i.top.visible&&n.push(e[0],e[1]),i.bottom.visible&&n.push(e[2],e[3])):(i.front.visible&&n.push(e[0],e[2]),i.back.visible&&n.push(e[1],e[3]),i.left.visible&&n.push(e[0],e[1]),i.right.visible&&n.push(e[2],e[3])),n=u(n,this.chart,!1),this.chart.renderer.toLineSegments(n)}),m(r.prototype,"getLinePath",function(t){return this.chart.is3d()&&"colorAxis"!==this.coll?[]:t.apply(this,[].slice.call(arguments,1))}),m(r.prototype,"getPlotBandPath",function(t){if(!this.chart.is3d()||"colorAxis"===this.coll)return t.apply(this,[].slice.call(arguments,1));var e=(i=arguments)[2],n=[],i=this.getPlotLinePath(i[1]);if(e=this.getPlotLinePath(e),i&&e)for(var r=0;r=a.min&&i<=a.max):t.plotZ=0,t.axisXpos=t.plotX,t.axisYpos=t.plotY,t.axisZpos=t.plotZ,l.push({x:t.plotX,y:t.plotY,z:t.plotZ});for(o=e(l,o,!0),r=0;r(l=s[e[0]]-a)&&(s[e[1]]+=s[e[0]]+a,s[e[0]]=-a,l=0),l+s[e[1]]>t[e[0]+"Axis"].len&&0!==s[e[1]]&&(s[e[1]]=t[e[0]+"Axis"].len-s[e[0]]),0!==s[e[1]]&&(s[e[0]]>=t[e[0]+"Axis"].len||s[e[0]]+s[e[1]]<=a)){for(var i in s)s[i]=0;n.outside3dPlot=!0}}),"rect"===n.shapeType&&(n.shapeType="cuboid"),s.z=o,s.depth=r,s.insidePlotArea=!0,u=i([{x:u[0],y:u[1],z:o}],e,!0)[0],n.tooltipPos=[u.x,u.y]}}),t.z=o},s(a.column.prototype,"animate",function(t){if(this.chart.is3d()){var e=this.yAxis,n=this,i=this.yAxis.reversed;l&&(arguments[1]?n.data.forEach(function(t){null!==t.y&&(t.height=t.shapeArgs.height,t.shapey=t.shapeArgs.y,t.shapeArgs.height=1,i||(t.shapeArgs.y=t.stackY?t.plotY+e.translate(t.stackY):t.plotY+(t.negative?-t.height:t.height)))}):(n.data.forEach(function(t){null!==t.y&&(t.shapeArgs.height=t.height,t.shapeArgs.y=t.shapey,t.graphic&&t.graphic.animate(t.shapeArgs,n.options.animation))}),this.drawDataLabels(),n.animate=null))}else t.apply(this,[].slice.call(arguments,1))}),s(a.column.prototype,"plotGroup",function(t,e,n,i,r,o){return this.chart.is3d()&&o&&!this[e]&&(this.chart.columnGroup||(this.chart.columnGroup=this.chart.renderer.g("columnGroup").add(o)),this[e]=this.chart.columnGroup,this.chart.columnGroup.attr(this.getPlotBox()),this[e].survive=!0),t.apply(this,Array.prototype.slice.call(arguments,1))}),s(a.column.prototype,"setVisible",function(t,e){var n,i=this;i.chart.is3d()&&i.data.forEach(function(t){n=(t.visible=t.options.visible=e=void 0===e?!t.visible:e)?"visible":"hidden",i.options.data[i.data.indexOf(t)]=t.options,t.graphic&&t.graphic.attr({visibility:n})}),t.apply(this,Array.prototype.slice.call(arguments,1))}),a.column.prototype.handle3dGrouping=!0,n(o,"afterInit",function(){if(this.chart.is3d()&&this.handle3dGrouping){var t=this.options,e=t.grouping,n=t.stacking,i=r(this.yAxis.options.reversedStacks,!0),o=0;if(void 0===e||e){for(e=this.chart.retrieveStacks(n),o=t.stack||0,n=0;n{point.x}
y: {point.y}
z: {point.z}
"}},{pointAttribs:function(e){var i=n.scatter.prototype.pointAttribs.apply(this,arguments);return this.chart.is3d()&&e&&(i.zIndex=t.pointCameraDistance(e,this.chart)),i},axisTypes:["xAxis","yAxis","zAxis"],pointArrayMap:["x","y","z"],parallelArrays:["x","y","z"],directTouch:!0},{applyOptions:function(){return e.prototype.applyOptions.apply(this,arguments),void 0===this.z&&(this.z=0),this}})}(t),function(t){var e=t.addEvent,n=t.Axis,i=t.SVGRenderer,r=t.VMLRenderer;r&&(t.setOptions({animate:!1}),r.prototype.face3d=i.prototype.face3d,r.prototype.polyhedron=i.prototype.polyhedron,r.prototype.elements3d=i.prototype.elements3d,r.prototype.element3d=i.prototype.element3d,r.prototype.cuboid=i.prototype.cuboid,r.prototype.cuboidPath=i.prototype.cuboidPath,r.prototype.toLinePath=i.prototype.toLinePath,r.prototype.toLineSegments=i.prototype.toLineSegments,r.prototype.arc3d=function(t){return(t=i.prototype.arc3d.call(this,t)).css({zIndex:t.zIndex}),t},t.VMLRenderer.prototype.arc3dPath=t.SVGRenderer.prototype.arc3dPath,e(n,"render",function(){this.sideFrame&&(this.sideFrame.css({zIndex:0}),this.sideFrame.front.attr({fill:this.sideFrame.color})),this.bottomFrame&&(this.bottomFrame.css({zIndex:1}),this.bottomFrame.front.attr({fill:this.bottomFrame.color})),this.backFrame&&(this.backFrame.css({zIndex:0}),this.backFrame.front.attr({fill:this.backFrame.color}))}))}(t)},t.exports?(r.default=r,t.exports=r):void 0===(i=(function(){return r}).call(e,n,e,t))||(t.exports=i)},ZAMP:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(t,e){return 12===t&&(t=0),"pagi"===e?t:"tengahari"===e?t>=11?t:t+12:"petang"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"tengahari":t<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}()},Zduo:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_a\u016dgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_a\u016dg_sep_okt_nov_dec".split("_"),weekdays:"diman\u0109o_lundo_mardo_merkredo_\u0135a\u016ddo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_\u0135a\u016d_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_\u0135a_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D[-a de] MMMM, YYYY",LLL:"D[-a de] MMMM, YYYY HH:mm",LLLL:"dddd, [la] D[-a de] MMMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(t){return"p"===t.charAt(0).toLowerCase()},meridiem:function(t,e,n){return t>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodia\u016d je] LT",nextDay:"[Morga\u016d je] LT",nextWeek:"dddd [je] LT",lastDay:"[Hiera\u016d je] LT",lastWeek:"[pasinta] dddd [je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"anta\u016d %s",s:"sekundoj",ss:"%d sekundoj",m:"minuto",mm:"%d minutoj",h:"horo",hh:"%d horoj",d:"tago",dd:"%d tagoj",M:"monato",MM:"%d monatoj",y:"jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})}()},aIdf:function(t,e,n){!function(t){"use strict";function e(t,e,n){return t+" "+function(t,e){return 2===e?function(t){var e={m:"v",b:"v",d:"z"};return void 0===e[t.charAt(0)]?t:e[t.charAt(0)]+t.substring(1)}(t):t}({mm:"munutenn",MM:"miz",dd:"devezh"}[n],t)}n("wd/R").defineLocale("br",{months:"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h[e]mm A",LTS:"h[e]mm:ss A",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY h[e]mm A",LLLL:"dddd, D [a viz] MMMM YYYY h[e]mm A"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondenno\xf9",ss:"%d eilenn",m:"ur vunutenn",mm:e,h:"un eur",hh:"%d eur",d:"un devezh",dd:e,M:"ur miz",MM:e,y:"ur bloaz",yy:function(t){switch(function t(e){return e>9?t(e%10):e}(t)){case 1:case 3:case 4:case 5:case 9:return t+" bloaz";default:return t+" vloaz"}}},dayOfMonthOrdinalParse:/\d{1,2}(a\xf1|vet)/,ordinal:function(t){return t+(1===t?"a\xf1":"vet")},week:{dow:1,doy:4}})}()},aIsn:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("mi",{months:"Kohi-t\u0101te_Hui-tanguru_Pout\u016b-te-rangi_Paenga-wh\u0101wh\u0101_Haratua_Pipiri_H\u014dngoingoi_Here-turi-k\u014dk\u0101_Mahuru_Whiringa-\u0101-nuku_Whiringa-\u0101-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_H\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"R\u0101tapu_Mane_T\u016brei_Wenerei_T\u0101ite_Paraire_H\u0101tarei".split("_"),weekdaysShort:"Ta_Ma_T\u016b_We_T\u0101i_Pa_H\u0101".split("_"),weekdaysMin:"Ta_Ma_T\u016b_We_T\u0101i_Pa_H\u0101".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te h\u0113kona ruarua",ss:"%d h\u0113kona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},aQkU:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("mk",{months:"\u0458\u0430\u043d\u0443\u0430\u0440\u0438_\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0438\u043b_\u043c\u0430\u0458_\u0458\u0443\u043d\u0438_\u0458\u0443\u043b\u0438_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438_\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438_\u043d\u043e\u0435\u043c\u0432\u0440\u0438_\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438".split("_"),monthsShort:"\u0458\u0430\u043d_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0458_\u0458\u0443\u043d_\u0458\u0443\u043b_\u0430\u0432\u0433_\u0441\u0435\u043f_\u043e\u043a\u0442_\u043d\u043e\u0435_\u0434\u0435\u043a".split("_"),weekdays:"\u043d\u0435\u0434\u0435\u043b\u0430_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0440\u0442\u043e\u043a_\u043f\u0435\u0442\u043e\u043a_\u0441\u0430\u0431\u043e\u0442\u0430".split("_"),weekdaysShort:"\u043d\u0435\u0434_\u043f\u043e\u043d_\u0432\u0442\u043e_\u0441\u0440\u0435_\u0447\u0435\u0442_\u043f\u0435\u0442_\u0441\u0430\u0431".split("_"),weekdaysMin:"\u043de_\u043fo_\u0432\u0442_\u0441\u0440_\u0447\u0435_\u043f\u0435_\u0441a".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[\u0414\u0435\u043d\u0435\u0441 \u0432\u043e] LT",nextDay:"[\u0423\u0442\u0440\u0435 \u0432\u043e] LT",nextWeek:"[\u0412\u043e] dddd [\u0432\u043e] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430 \u0432\u043e] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[\u0418\u0437\u043c\u0438\u043d\u0430\u0442\u0430\u0442\u0430] dddd [\u0432\u043e] LT";case 1:case 2:case 4:case 5:return"[\u0418\u0437\u043c\u0438\u043d\u0430\u0442\u0438\u043e\u0442] dddd [\u0432\u043e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u043e\u0441\u043b\u0435 %s",past:"\u043f\u0440\u0435\u0434 %s",s:"\u043d\u0435\u043a\u043e\u043b\u043a\u0443 \u0441\u0435\u043a\u0443\u043d\u0434\u0438",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434\u0438",m:"\u043c\u0438\u043d\u0443\u0442\u0430",mm:"%d \u043c\u0438\u043d\u0443\u0442\u0438",h:"\u0447\u0430\u0441",hh:"%d \u0447\u0430\u0441\u0430",d:"\u0434\u0435\u043d",dd:"%d \u0434\u0435\u043d\u0430",M:"\u043c\u0435\u0441\u0435\u0446",MM:"%d \u043c\u0435\u0441\u0435\u0446\u0438",y:"\u0433\u043e\u0434\u0438\u043d\u0430",yy:"%d \u0433\u043e\u0434\u0438\u043d\u0438"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0435\u0432|\u0435\u043d|\u0442\u0438|\u0432\u0438|\u0440\u0438|\u043c\u0438)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-\u0435\u0432":0===n?t+"-\u0435\u043d":n>10&&n<20?t+"-\u0442\u0438":1===e?t+"-\u0432\u0438":2===e?t+"-\u0440\u0438":7===e||8===e?t+"-\u043c\u0438":t+"-\u0442\u0438"},week:{dow:1,doy:7}})}()},b1Dy:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")},week:{dow:1,doy:4}})}()},bOMt:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"s\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\xf8rdag".split("_"),weekdaysShort:"s\xf8._ma._ti._on._to._fr._l\xf8.".split("_"),weekdaysMin:"s\xf8_ma_ti_on_to_fr_l\xf8".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i g\xe5r kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en m\xe5ned",MM:"%d m\xe5neder",y:"ett \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},bXm7:function(t,e,n){!function(t){"use strict";var e={0:"-\u0448\u0456",1:"-\u0448\u0456",2:"-\u0448\u0456",3:"-\u0448\u0456",4:"-\u0448\u0456",5:"-\u0448\u0456",6:"-\u0448\u044b",7:"-\u0448\u0456",8:"-\u0448\u0456",9:"-\u0448\u044b",10:"-\u0448\u044b",20:"-\u0448\u044b",30:"-\u0448\u044b",40:"-\u0448\u044b",50:"-\u0448\u0456",60:"-\u0448\u044b",70:"-\u0448\u0456",80:"-\u0448\u0456",90:"-\u0448\u044b",100:"-\u0448\u0456"};t.defineLocale("kk",{months:"\u049b\u0430\u04a3\u0442\u0430\u0440_\u0430\u049b\u043f\u0430\u043d_\u043d\u0430\u0443\u0440\u044b\u0437_\u0441\u04d9\u0443\u0456\u0440_\u043c\u0430\u043c\u044b\u0440_\u043c\u0430\u0443\u0441\u044b\u043c_\u0448\u0456\u043b\u0434\u0435_\u0442\u0430\u043c\u044b\u0437_\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a_\u049b\u0430\u0437\u0430\u043d_\u049b\u0430\u0440\u0430\u0448\u0430_\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d".split("_"),monthsShort:"\u049b\u0430\u04a3_\u0430\u049b\u043f_\u043d\u0430\u0443_\u0441\u04d9\u0443_\u043c\u0430\u043c_\u043c\u0430\u0443_\u0448\u0456\u043b_\u0442\u0430\u043c_\u049b\u044b\u0440_\u049b\u0430\u0437_\u049b\u0430\u0440_\u0436\u0435\u043b".split("_"),weekdays:"\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456_\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456_\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456_\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456_\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456_\u0436\u04b1\u043c\u0430_\u0441\u0435\u043d\u0431\u0456".split("_"),weekdaysShort:"\u0436\u0435\u043a_\u0434\u04af\u0439_\u0441\u0435\u0439_\u0441\u04d9\u0440_\u0431\u0435\u0439_\u0436\u04b1\u043c_\u0441\u0435\u043d".split("_"),weekdaysMin:"\u0436\u043a_\u0434\u0439_\u0441\u0439_\u0441\u0440_\u0431\u0439_\u0436\u043c_\u0441\u043d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0411\u04af\u0433\u0456\u043d \u0441\u0430\u0493\u0430\u0442] LT",nextDay:"[\u0415\u0440\u0442\u0435\u04a3 \u0441\u0430\u0493\u0430\u0442] LT",nextWeek:"dddd [\u0441\u0430\u0493\u0430\u0442] LT",lastDay:"[\u041a\u0435\u0448\u0435 \u0441\u0430\u0493\u0430\u0442] LT",lastWeek:"[\u04e8\u0442\u043a\u0435\u043d \u0430\u043f\u0442\u0430\u043d\u044b\u04a3] dddd [\u0441\u0430\u0493\u0430\u0442] LT",sameElse:"L"},relativeTime:{future:"%s \u0456\u0448\u0456\u043d\u0434\u0435",past:"%s \u0431\u04b1\u0440\u044b\u043d",s:"\u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0441\u0435\u043a\u0443\u043d\u0434",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434",m:"\u0431\u0456\u0440 \u043c\u0438\u043d\u0443\u0442",mm:"%d \u043c\u0438\u043d\u0443\u0442",h:"\u0431\u0456\u0440 \u0441\u0430\u0493\u0430\u0442",hh:"%d \u0441\u0430\u0493\u0430\u0442",d:"\u0431\u0456\u0440 \u043a\u04af\u043d",dd:"%d \u043a\u04af\u043d",M:"\u0431\u0456\u0440 \u0430\u0439",MM:"%d \u0430\u0439",y:"\u0431\u0456\u0440 \u0436\u044b\u043b",yy:"%d \u0436\u044b\u043b"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0448\u0456|\u0448\u044b)/,ordinal:function(t){return t+(e[t]||e[t%10]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},bYM6:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ar-tn",{months:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),monthsShort:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:1,doy:4}})}()},bpih:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_luned\xec_marted\xec_mercoled\xec_gioved\xec_venerd\xec_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(t){return(/^[0-9].+$/.test(t)?"tra":"in")+" "+t},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},bxKX:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_luned\xec_marted\xec_mercoled\xec_gioved\xec_venerd\xec_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(t){return(/^[0-9].+$/.test(t)?"tra":"in")+" "+t},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},cRix:function(t,e,n){!function(t){"use strict";var e="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),n="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_");t.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[\xf4fr\xfbne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien min\xfat",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},crnd:function(t,e){function n(t){return Promise.resolve().then(function(){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e})}n.keys=function(){return[]},n.resolve=n,t.exports=n,n.id="crnd"},czMo:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10;return t+(1==~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}})}()},dNwA:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"masiku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})}()},"e+ae":function(t,e,n){!function(t){"use strict";var e="janu\xe1r_febru\xe1r_marec_apr\xedl_m\xe1j_j\xfan_j\xfal_august_september_okt\xf3ber_november_december".split("_"),n="jan_feb_mar_apr_m\xe1j_j\xfan_j\xfal_aug_sep_okt_nov_dec".split("_");function i(t){return t>1&&t<5}function r(t,e,n,r){var o=t+" ";switch(n){case"s":return e||r?"p\xe1r sek\xfand":"p\xe1r sekundami";case"ss":return e||r?o+(i(t)?"sekundy":"sek\xfand"):o+"sekundami";case"m":return e?"min\xfata":r?"min\xfatu":"min\xfatou";case"mm":return e||r?o+(i(t)?"min\xfaty":"min\xfat"):o+"min\xfatami";case"h":return e?"hodina":r?"hodinu":"hodinou";case"hh":return e||r?o+(i(t)?"hodiny":"hod\xedn"):o+"hodinami";case"d":return e||r?"de\u0148":"d\u0148om";case"dd":return e||r?o+(i(t)?"dni":"dn\xed"):o+"d\u0148ami";case"M":return e||r?"mesiac":"mesiacom";case"MM":return e||r?o+(i(t)?"mesiace":"mesiacov"):o+"mesiacmi";case"y":return e||r?"rok":"rokom";case"yy":return e||r?o+(i(t)?"roky":"rokov"):o+"rokmi"}}t.defineLocale("sk",{months:e,monthsShort:n,weekdays:"nede\u013ea_pondelok_utorok_streda_\u0161tvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_\u0161t_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_\u0161t_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nede\u013eu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo \u0161tvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[v\u010dera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minul\xfa nede\u013eu o] LT";case 1:case 2:return"[minul\xfd] dddd [o] LT";case 3:return"[minul\xfa stredu o] LT";case 4:case 5:return"[minul\xfd] dddd [o] LT";case 6:return"[minul\xfa sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},evrj:function(t,e,n){var i=n("m4GZ");t.exports=function(t){var e=t.replace(/-/g,"+").replace(/_/g,"/");switch(e.length%4){case 0:break;case 2:e+="==";break;case 3:e+="=";break;default:throw"Illegal base64url string!"}try{return decodeURIComponent(i(e).replace(/(.)/g,function(t,e){var n=e.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n="0"+n),"%"+n}))}catch(n){return i(e)}}},fzPg:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("yo",{months:"S\u1eb9\u0301r\u1eb9\u0301_E\u0300re\u0300le\u0300_\u1eb8r\u1eb9\u0300na\u0300_I\u0300gbe\u0301_E\u0300bibi_O\u0300ku\u0300du_Ag\u1eb9mo_O\u0300gu\u0301n_Owewe_\u1ecc\u0300wa\u0300ra\u0300_Be\u0301lu\u0301_\u1ecc\u0300p\u1eb9\u0300\u0300".split("_"),monthsShort:"S\u1eb9\u0301r_E\u0300rl_\u1eb8rn_I\u0300gb_E\u0300bi_O\u0300ku\u0300_Ag\u1eb9_O\u0300gu\u0301_Owe_\u1ecc\u0300wa\u0300_Be\u0301l_\u1ecc\u0300p\u1eb9\u0300\u0300".split("_"),weekdays:"A\u0300i\u0300ku\u0301_Aje\u0301_I\u0300s\u1eb9\u0301gun_\u1eccj\u1ecd\u0301ru\u0301_\u1eccj\u1ecd\u0301b\u1ecd_\u1eb8ti\u0300_A\u0300ba\u0301m\u1eb9\u0301ta".split("_"),weekdaysShort:"A\u0300i\u0300k_Aje\u0301_I\u0300s\u1eb9\u0301_\u1eccjr_\u1eccjb_\u1eb8ti\u0300_A\u0300ba\u0301".split("_"),weekdaysMin:"A\u0300i\u0300_Aj_I\u0300s_\u1eccr_\u1eccb_\u1eb8t_A\u0300b".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[O\u0300ni\u0300 ni] LT",nextDay:"[\u1ecc\u0300la ni] LT",nextWeek:"dddd [\u1eccs\u1eb9\u0300 to\u0301n'b\u1ecd] [ni] LT",lastDay:"[A\u0300na ni] LT",lastWeek:"dddd [\u1eccs\u1eb9\u0300 to\u0301l\u1ecd\u0301] [ni] LT",sameElse:"L"},relativeTime:{future:"ni\u0301 %s",past:"%s k\u1ecdja\u0301",s:"i\u0300s\u1eb9ju\u0301 aaya\u0301 die",ss:"aaya\u0301 %d",m:"i\u0300s\u1eb9ju\u0301 kan",mm:"i\u0300s\u1eb9ju\u0301 %d",h:"wa\u0301kati kan",hh:"wa\u0301kati %d",d:"\u1ecdj\u1ecd\u0301 kan",dd:"\u1ecdj\u1ecd\u0301 %d",M:"osu\u0300 kan",MM:"osu\u0300 %d",y:"\u1ecddu\u0301n kan",yy:"\u1ecddu\u0301n %d"},dayOfMonthOrdinalParse:/\u1ecdj\u1ecd\u0301\s\d{1,2}/,ordinal:"\u1ecdj\u1ecd\u0301 %d",week:{dow:1,doy:4}})}()},gVVK:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r=t+" ";switch(n){case"s":return e||i?"nekaj sekund":"nekaj sekundami";case"ss":return r+(1===t?e?"sekundo":"sekundi":2===t?e||i?"sekundi":"sekundah":t<5?e||i?"sekunde":"sekundah":"sekund");case"m":return e?"ena minuta":"eno minuto";case"mm":return r+(1===t?e?"minuta":"minuto":2===t?e||i?"minuti":"minutama":t<5?e||i?"minute":"minutami":e||i?"minut":"minutami");case"h":return e?"ena ura":"eno uro";case"hh":return r+(1===t?e?"ura":"uro":2===t?e||i?"uri":"urama":t<5?e||i?"ure":"urami":e||i?"ur":"urami");case"d":return e||i?"en dan":"enim dnem";case"dd":return r+(1===t?e||i?"dan":"dnem":2===t?e||i?"dni":"dnevoma":e||i?"dni":"dnevi");case"M":return e||i?"en mesec":"enim mesecem";case"MM":return r+(1===t?e||i?"mesec":"mesecem":2===t?e||i?"meseca":"mesecema":t<5?e||i?"mesece":"meseci":e||i?"mesecev":"meseci");case"y":return e||i?"eno leto":"enim letom";case"yy":return r+(1===t?e||i?"leto":"letom":2===t?e||i?"leti":"letoma":t<5?e||i?"leta":"leti":e||i?"let":"leti")}}n("wd/R").defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_\u010detrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._\u010det._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_\u010de_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[v\u010deraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prej\u0161njo] [nedeljo] [ob] LT";case 3:return"[prej\u0161njo] [sredo] [ob] LT";case 6:return"[prej\u0161njo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prej\u0161nji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"\u010dez %s",past:"pred %s",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}()},gekB:function(t,e,n){!function(t){"use strict";var e="nolla yksi kaksi kolme nelj\xe4 viisi kuusi seitsem\xe4n kahdeksan yhdeks\xe4n".split(" "),n=["nolla","yhden","kahden","kolmen","nelj\xe4n","viiden","kuuden",e[7],e[8],e[9]];function i(t,i,r,o){var a="";switch(r){case"s":return o?"muutaman sekunnin":"muutama sekunti";case"ss":return o?"sekunnin":"sekuntia";case"m":return o?"minuutin":"minuutti";case"mm":a=o?"minuutin":"minuuttia";break;case"h":return o?"tunnin":"tunti";case"hh":a=o?"tunnin":"tuntia";break;case"d":return o?"p\xe4iv\xe4n":"p\xe4iv\xe4";case"dd":a=o?"p\xe4iv\xe4n":"p\xe4iv\xe4\xe4";break;case"M":return o?"kuukauden":"kuukausi";case"MM":a=o?"kuukauden":"kuukautta";break;case"y":return o?"vuoden":"vuosi";case"yy":a=o?"vuoden":"vuotta"}return function(t,i){return t<10?i?n[t]:e[t]:t}(t,o)+" "+a}t.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\xe4kuu_hein\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kes\xe4_hein\xe4_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[t\xe4n\xe4\xe4n] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s p\xe4\xe4st\xe4",past:"%s sitten",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},gjCT:function(t,e,n){!function(t){"use strict";var e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"};t.defineLocale("ar-sa",{months:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a\u0648_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648_\u0623\u063a\u0633\u0637\u0633_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),monthsShort:"\u064a\u0646\u0627\u064a\u0631_\u0641\u0628\u0631\u0627\u064a\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064a\u0644_\u0645\u0627\u064a\u0648_\u064a\u0648\u0646\u064a\u0648_\u064a\u0648\u0644\u064a\u0648_\u0623\u063a\u0633\u0637\u0633_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(t){return"\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},preparse:function(t){return t.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:0,doy:6}})}(n("wd/R"))},hKrs:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("bg",{months:"\u044f\u043d\u0443\u0430\u0440\u0438_\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0438\u043b_\u043c\u0430\u0439_\u044e\u043d\u0438_\u044e\u043b\u0438_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438_\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438_\u043d\u043e\u0435\u043c\u0432\u0440\u0438_\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438".split("_"),monthsShort:"\u044f\u043d\u0440_\u0444\u0435\u0432_\u043c\u0430\u0440_\u0430\u043f\u0440_\u043c\u0430\u0439_\u044e\u043d\u0438_\u044e\u043b\u0438_\u0430\u0432\u0433_\u0441\u0435\u043f_\u043e\u043a\u0442_\u043d\u043e\u0435_\u0434\u0435\u043a".split("_"),weekdays:"\u043d\u0435\u0434\u0435\u043b\u044f_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u044f\u0434\u0430_\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a_\u043f\u0435\u0442\u044a\u043a_\u0441\u044a\u0431\u043e\u0442\u0430".split("_"),weekdaysShort:"\u043d\u0435\u0434_\u043f\u043e\u043d_\u0432\u0442\u043e_\u0441\u0440\u044f_\u0447\u0435\u0442_\u043f\u0435\u0442_\u0441\u044a\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[\u0414\u043d\u0435\u0441 \u0432] LT",nextDay:"[\u0423\u0442\u0440\u0435 \u0432] LT",nextWeek:"dddd [\u0432] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430 \u0432] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[\u0412 \u0438\u0437\u043c\u0438\u043d\u0430\u043b\u0430\u0442\u0430] dddd [\u0432] LT";case 1:case 2:case 4:case 5:return"[\u0412 \u0438\u0437\u043c\u0438\u043d\u0430\u043b\u0438\u044f] dddd [\u0432] LT"}},sameElse:"L"},relativeTime:{future:"\u0441\u043b\u0435\u0434 %s",past:"\u043f\u0440\u0435\u0434\u0438 %s",s:"\u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434\u0438",m:"\u043c\u0438\u043d\u0443\u0442\u0430",mm:"%d \u043c\u0438\u043d\u0443\u0442\u0438",h:"\u0447\u0430\u0441",hh:"%d \u0447\u0430\u0441\u0430",d:"\u0434\u0435\u043d",dd:"%d \u0434\u043d\u0438",M:"\u043c\u0435\u0441\u0435\u0446",MM:"%d \u043c\u0435\u0441\u0435\u0446\u0430",y:"\u0433\u043e\u0434\u0438\u043d\u0430",yy:"%d \u0433\u043e\u0434\u0438\u043d\u0438"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0435\u0432|\u0435\u043d|\u0442\u0438|\u0432\u0438|\u0440\u0438|\u043c\u0438)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-\u0435\u0432":0===n?t+"-\u0435\u043d":n>10&&n<20?t+"-\u0442\u0438":1===e?t+"-\u0432\u0438":2===e?t+"-\u0440\u0438":7===e||8===e?t+"-\u043c\u0438":t+"-\u0442\u0438"},week:{dow:1,doy:7}})}()},honF:function(t,e,n){!function(t){"use strict";var e={1:"\u1041",2:"\u1042",3:"\u1043",4:"\u1044",5:"\u1045",6:"\u1046",7:"\u1047",8:"\u1048",9:"\u1049",0:"\u1040"},n={"\u1041":"1","\u1042":"2","\u1043":"3","\u1044":"4","\u1045":"5","\u1046":"6","\u1047":"7","\u1048":"8","\u1049":"9","\u1040":"0"};t.defineLocale("my",{months:"\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e_\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e_\u1019\u1010\u103a_\u1027\u1015\u103c\u102e_\u1019\u1031_\u1007\u103d\u1014\u103a_\u1007\u1030\u101c\u102d\u102f\u1004\u103a_\u101e\u103c\u1002\u102f\u1010\u103a_\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c_\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c_\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c_\u1012\u102e\u1007\u1004\u103a\u1018\u102c".split("_"),monthsShort:"\u1007\u1014\u103a_\u1016\u1031_\u1019\u1010\u103a_\u1015\u103c\u102e_\u1019\u1031_\u1007\u103d\u1014\u103a_\u101c\u102d\u102f\u1004\u103a_\u101e\u103c_\u1005\u1000\u103a_\u1021\u1031\u102c\u1000\u103a_\u1014\u102d\u102f_\u1012\u102e".split("_"),weekdays:"\u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031_\u1010\u1014\u1004\u103a\u1039\u101c\u102c_\u1021\u1004\u103a\u1039\u1002\u102b_\u1017\u102f\u1012\u1039\u1013\u101f\u1030\u1038_\u1000\u103c\u102c\u101e\u1015\u1010\u1031\u1038_\u101e\u1031\u102c\u1000\u103c\u102c_\u1005\u1014\u1031".split("_"),weekdaysShort:"\u1014\u103d\u1031_\u101c\u102c_\u1002\u102b_\u101f\u1030\u1038_\u1000\u103c\u102c_\u101e\u1031\u102c_\u1014\u1031".split("_"),weekdaysMin:"\u1014\u103d\u1031_\u101c\u102c_\u1002\u102b_\u101f\u1030\u1038_\u1000\u103c\u102c_\u101e\u1031\u102c_\u1014\u1031".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u101a\u1014\u1031.] LT [\u1019\u103e\u102c]",nextDay:"[\u1019\u1014\u1000\u103a\u1016\u103c\u1014\u103a] LT [\u1019\u103e\u102c]",nextWeek:"dddd LT [\u1019\u103e\u102c]",lastDay:"[\u1019\u1014\u1031.\u1000] LT [\u1019\u103e\u102c]",lastWeek:"[\u1015\u103c\u102e\u1038\u1001\u1032\u1037\u101e\u1031\u102c] dddd LT [\u1019\u103e\u102c]",sameElse:"L"},relativeTime:{future:"\u101c\u102c\u1019\u100a\u103a\u1037 %s \u1019\u103e\u102c",past:"\u101c\u103d\u1014\u103a\u1001\u1032\u1037\u101e\u1031\u102c %s \u1000",s:"\u1005\u1000\u1039\u1000\u1014\u103a.\u1021\u1014\u100a\u103a\u1038\u1004\u101a\u103a",ss:"%d \u1005\u1000\u1039\u1000\u1014\u1037\u103a",m:"\u1010\u1005\u103a\u1019\u102d\u1014\u1005\u103a",mm:"%d \u1019\u102d\u1014\u1005\u103a",h:"\u1010\u1005\u103a\u1014\u102c\u101b\u102e",hh:"%d \u1014\u102c\u101b\u102e",d:"\u1010\u1005\u103a\u101b\u1000\u103a",dd:"%d \u101b\u1000\u103a",M:"\u1010\u1005\u103a\u101c",MM:"%d \u101c",y:"\u1010\u1005\u103a\u1014\u103e\u1005\u103a",yy:"%d \u1014\u103e\u1005\u103a"},preparse:function(t){return t.replace(/[\u1041\u1042\u1043\u1044\u1045\u1046\u1047\u1048\u1049\u1040]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},week:{dow:1,doy:4}})}(n("wd/R"))},iEDd:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xu\xf1o_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xu\xf1._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_m\xe9rcores_xoves_venres_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._m\xe9r._xov._ven._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_m\xe9_xo_ve_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"\xe1s":"\xe1")+"] LT"},nextDay:function(){return"[ma\xf1\xe1 "+(1!==this.hours()?"\xe1s":"\xe1")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"\xe1s":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"\xe1":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"\xe1s":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(t){return 0===t.indexOf("un")?"n"+t:"en "+t},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}()},iYuL:function(t,e,n){!function(t){"use strict";var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;t.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,i){return t?/-MMM-/.test(i)?n[t.month()]:e[t.month()]:e},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_mi\xe9rcoles_jueves_viernes_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._mi\xe9._jue._vie._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[ma\xf1ana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un a\xf1o",yy:"%d a\xf1os"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}(n("wd/R"))},jUeY:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("el",{monthsNominativeEl:"\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2_\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2_\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2_\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2_\u039c\u03ac\u03b9\u03bf\u03c2_\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2_\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2_\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2_\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2_\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2_\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2_\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2".split("_"),monthsGenitiveEl:"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5_\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5_\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5_\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5_\u039c\u03b1\u0390\u03bf\u03c5_\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5_\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5_\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5_\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5_\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5_\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5_\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5".split("_"),months:function(t,e){return t?"string"==typeof e&&/D/.test(e.substring(0,e.indexOf("MMMM")))?this._monthsGenitiveEl[t.month()]:this._monthsNominativeEl[t.month()]:this._monthsNominativeEl},monthsShort:"\u0399\u03b1\u03bd_\u03a6\u03b5\u03b2_\u039c\u03b1\u03c1_\u0391\u03c0\u03c1_\u039c\u03b1\u03ca_\u0399\u03bf\u03c5\u03bd_\u0399\u03bf\u03c5\u03bb_\u0391\u03c5\u03b3_\u03a3\u03b5\u03c0_\u039f\u03ba\u03c4_\u039d\u03bf\u03b5_\u0394\u03b5\u03ba".split("_"),weekdays:"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae_\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1_\u03a4\u03c1\u03af\u03c4\u03b7_\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7_\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7_\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae_\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf".split("_"),weekdaysShort:"\u039a\u03c5\u03c1_\u0394\u03b5\u03c5_\u03a4\u03c1\u03b9_\u03a4\u03b5\u03c4_\u03a0\u03b5\u03bc_\u03a0\u03b1\u03c1_\u03a3\u03b1\u03b2".split("_"),weekdaysMin:"\u039a\u03c5_\u0394\u03b5_\u03a4\u03c1_\u03a4\u03b5_\u03a0\u03b5_\u03a0\u03b1_\u03a3\u03b1".split("_"),meridiem:function(t,e,n){return t>11?n?"\u03bc\u03bc":"\u039c\u039c":n?"\u03c0\u03bc":"\u03a0\u039c"},isPM:function(t){return"\u03bc"===(t+"").toLowerCase()[0]},meridiemParse:/[\u03a0\u039c]\.?\u039c?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[\u03a3\u03ae\u03bc\u03b5\u03c1\u03b1 {}] LT",nextDay:"[\u0391\u03cd\u03c1\u03b9\u03bf {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[\u03a7\u03b8\u03b5\u03c2 {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[\u03c4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf] dddd [{}] LT";default:return"[\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7] dddd [{}] LT"}},sameElse:"L"},calendar:function(t,e){var n,i=this._calendarEl[t],r=e&&e.hours();return((n=i)instanceof Function||"[object Function]"===Object.prototype.toString.call(n))&&(i=i.apply(e)),i.replace("{}",r%12==1?"\u03c3\u03c4\u03b7":"\u03c3\u03c4\u03b9\u03c2")},relativeTime:{future:"\u03c3\u03b5 %s",past:"%s \u03c0\u03c1\u03b9\u03bd",s:"\u03bb\u03af\u03b3\u03b1 \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1",ss:"%d \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1",m:"\u03ad\u03bd\u03b1 \u03bb\u03b5\u03c0\u03c4\u03cc",mm:"%d \u03bb\u03b5\u03c0\u03c4\u03ac",h:"\u03bc\u03af\u03b1 \u03ce\u03c1\u03b1",hh:"%d \u03ce\u03c1\u03b5\u03c2",d:"\u03bc\u03af\u03b1 \u03bc\u03ad\u03c1\u03b1",dd:"%d \u03bc\u03ad\u03c1\u03b5\u03c2",M:"\u03ad\u03bd\u03b1\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2",MM:"%d \u03bc\u03ae\u03bd\u03b5\u03c2",y:"\u03ad\u03bd\u03b1\u03c2 \u03c7\u03c1\u03cc\u03bd\u03bf\u03c2",yy:"%d \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1"},dayOfMonthOrdinalParse:/\d{1,2}\u03b7/,ordinal:"%d\u03b7",week:{dow:1,doy:4}})}()},jVdC:function(t,e,n){!function(t){"use strict";var e="stycze\u0144_luty_marzec_kwiecie\u0144_maj_czerwiec_lipiec_sierpie\u0144_wrzesie\u0144_pa\u017adziernik_listopad_grudzie\u0144".split("_"),n="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\u015bnia_pa\u017adziernika_listopada_grudnia".split("_");function i(t){return t%10<5&&t%10>1&&~~(t/10)%10!=1}function r(t,e,n){var r=t+" ";switch(n){case"ss":return r+(i(t)?"sekundy":"sekund");case"m":return e?"minuta":"minut\u0119";case"mm":return r+(i(t)?"minuty":"minut");case"h":return e?"godzina":"godzin\u0119";case"hh":return r+(i(t)?"godziny":"godzin");case"MM":return r+(i(t)?"miesi\u0105ce":"miesi\u0119cy");case"yy":return r+(i(t)?"lata":"lat")}}t.defineLocale("pl",{months:function(t,i){return t?""===i?"("+n[t.month()]+"|"+e[t.month()]+")":/D MMMM/.test(i)?n[t.month()]:e[t.month()]:e},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\u017a_lis_gru".split("_"),weekdays:"niedziela_poniedzia\u0142ek_wtorek_\u015broda_czwartek_pi\u0105tek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_\u015br_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_\u015ar_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dzi\u015b o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedziel\u0119 o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W \u015brod\u0119 o] LT";case 6:return"[W sobot\u0119 o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zesz\u0142\u0105 niedziel\u0119 o] LT";case 3:return"[W zesz\u0142\u0105 \u015brod\u0119 o] LT";case 6:return"[W zesz\u0142\u0105 sobot\u0119 o] LT";default:return"[W zesz\u0142y] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:r,m:r,mm:r,h:r,hh:r,d:"1 dzie\u0144",dd:"%d dni",M:"miesi\u0105c",MM:r,y:"rok",yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},jfSC:function(t,e,n){!function(t){"use strict";var e={1:"\u06f1",2:"\u06f2",3:"\u06f3",4:"\u06f4",5:"\u06f5",6:"\u06f6",7:"\u06f7",8:"\u06f8",9:"\u06f9",0:"\u06f0"},n={"\u06f1":"1","\u06f2":"2","\u06f3":"3","\u06f4":"4","\u06f5":"5","\u06f6":"6","\u06f7":"7","\u06f8":"8","\u06f9":"9","\u06f0":"0"};t.defineLocale("fa",{months:"\u0698\u0627\u0646\u0648\u06cc\u0647_\u0641\u0648\u0631\u06cc\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06cc\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06cc\u0647_\u0627\u0648\u062a_\u0633\u067e\u062a\u0627\u0645\u0628\u0631_\u0627\u06a9\u062a\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062f\u0633\u0627\u0645\u0628\u0631".split("_"),monthsShort:"\u0698\u0627\u0646\u0648\u06cc\u0647_\u0641\u0648\u0631\u06cc\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06cc\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06cc\u0647_\u0627\u0648\u062a_\u0633\u067e\u062a\u0627\u0645\u0628\u0631_\u0627\u06a9\u062a\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062f\u0633\u0627\u0645\u0628\u0631".split("_"),weekdays:"\u06cc\u06a9\u200c\u0634\u0646\u0628\u0647_\u062f\u0648\u0634\u0646\u0628\u0647_\u0633\u0647\u200c\u0634\u0646\u0628\u0647_\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647_\u067e\u0646\u062c\u200c\u0634\u0646\u0628\u0647_\u062c\u0645\u0639\u0647_\u0634\u0646\u0628\u0647".split("_"),weekdaysShort:"\u06cc\u06a9\u200c\u0634\u0646\u0628\u0647_\u062f\u0648\u0634\u0646\u0628\u0647_\u0633\u0647\u200c\u0634\u0646\u0628\u0647_\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647_\u067e\u0646\u062c\u200c\u0634\u0646\u0628\u0647_\u062c\u0645\u0639\u0647_\u0634\u0646\u0628\u0647".split("_"),weekdaysMin:"\u06cc_\u062f_\u0633_\u0686_\u067e_\u062c_\u0634".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/\u0642\u0628\u0644 \u0627\u0632 \u0638\u0647\u0631|\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631/,isPM:function(t){return/\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631/.test(t)},meridiem:function(t,e,n){return t<12?"\u0642\u0628\u0644 \u0627\u0632 \u0638\u0647\u0631":"\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631"},calendar:{sameDay:"[\u0627\u0645\u0631\u0648\u0632 \u0633\u0627\u0639\u062a] LT",nextDay:"[\u0641\u0631\u062f\u0627 \u0633\u0627\u0639\u062a] LT",nextWeek:"dddd [\u0633\u0627\u0639\u062a] LT",lastDay:"[\u062f\u06cc\u0631\u0648\u0632 \u0633\u0627\u0639\u062a] LT",lastWeek:"dddd [\u067e\u06cc\u0634] [\u0633\u0627\u0639\u062a] LT",sameElse:"L"},relativeTime:{future:"\u062f\u0631 %s",past:"%s \u067e\u06cc\u0634",s:"\u0686\u0646\u062f \u062b\u0627\u0646\u06cc\u0647",ss:"\u062b\u0627\u0646\u06cc\u0647 d%",m:"\u06cc\u06a9 \u062f\u0642\u06cc\u0642\u0647",mm:"%d \u062f\u0642\u06cc\u0642\u0647",h:"\u06cc\u06a9 \u0633\u0627\u0639\u062a",hh:"%d \u0633\u0627\u0639\u062a",d:"\u06cc\u06a9 \u0631\u0648\u0632",dd:"%d \u0631\u0648\u0632",M:"\u06cc\u06a9 \u0645\u0627\u0647",MM:"%d \u0645\u0627\u0647",y:"\u06cc\u06a9 \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"},preparse:function(t){return t.replace(/[\u06f0-\u06f9]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},dayOfMonthOrdinalParse:/\d{1,2}\u0645/,ordinal:"%d\u0645",week:{dow:6,doy:12}})}(n("wd/R"))},jnO4:function(t,e,n){!function(t){"use strict";var e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},i=function(t){return 0===t?0:1===t?1:2===t?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5},r={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"],h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645","\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627","%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645","\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},o=function(t){return function(e,n,o,a){var l=i(e),s=r[t][i(e)];return 2===l&&(s=s[n?0:1]),s.replace(/%d/i,e)}},a=["\u064a\u0646\u0627\u064a\u0631","\u0641\u0628\u0631\u0627\u064a\u0631","\u0645\u0627\u0631\u0633","\u0623\u0628\u0631\u064a\u0644","\u0645\u0627\u064a\u0648","\u064a\u0648\u0646\u064a\u0648","\u064a\u0648\u0644\u064a\u0648","\u0623\u063a\u0633\u0637\u0633","\u0633\u0628\u062a\u0645\u0628\u0631","\u0623\u0643\u062a\u0648\u0628\u0631","\u0646\u0648\u0641\u0645\u0628\u0631","\u062f\u064a\u0633\u0645\u0628\u0631"];t.defineLocale("ar",{months:a,monthsShort:a,weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(t){return"\u0645"===t},meridiem:function(t,e,n){return t<12?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u064b\u0627 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:o("s"),ss:o("s"),m:o("m"),mm:o("m"),h:o("h"),hh:o("h"),d:o("d"),dd:o("d"),M:o("M"),MM:o("M"),y:o("y"),yy:o("y")},preparse:function(t){return t.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(t){return n[t]}).replace(/\u060c/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(n("wd/R"))},kEOa:function(t,e,n){!function(t){"use strict";var e={1:"\u09e7",2:"\u09e8",3:"\u09e9",4:"\u09ea",5:"\u09eb",6:"\u09ec",7:"\u09ed",8:"\u09ee",9:"\u09ef",0:"\u09e6"},n={"\u09e7":"1","\u09e8":"2","\u09e9":"3","\u09ea":"4","\u09eb":"5","\u09ec":"6","\u09ed":"7","\u09ee":"8","\u09ef":"9","\u09e6":"0"};t.defineLocale("bn",{months:"\u099c\u09be\u09a8\u09c1\u09df\u09be\u09b0\u09c0_\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09df\u09be\u09b0\u09bf_\u09ae\u09be\u09b0\u09cd\u099a_\u098f\u09aa\u09cd\u09b0\u09bf\u09b2_\u09ae\u09c7_\u099c\u09c1\u09a8_\u099c\u09c1\u09b2\u09be\u0987_\u0986\u0997\u09b8\u09cd\u099f_\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0_\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0_\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0_\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0".split("_"),monthsShort:"\u099c\u09be\u09a8\u09c1_\u09ab\u09c7\u09ac_\u09ae\u09be\u09b0\u09cd\u099a_\u098f\u09aa\u09cd\u09b0_\u09ae\u09c7_\u099c\u09c1\u09a8_\u099c\u09c1\u09b2_\u0986\u0997_\u09b8\u09c7\u09aa\u09cd\u099f_\u0985\u0995\u09cd\u099f\u09cb_\u09a8\u09ad\u09c7_\u09a1\u09bf\u09b8\u09c7".split("_"),weekdays:"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0_\u09b8\u09cb\u09ae\u09ac\u09be\u09b0_\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0_\u09ac\u09c1\u09a7\u09ac\u09be\u09b0_\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0_\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0_\u09b6\u09a8\u09bf\u09ac\u09be\u09b0".split("_"),weekdaysShort:"\u09b0\u09ac\u09bf_\u09b8\u09cb\u09ae_\u09ae\u0999\u09cd\u0997\u09b2_\u09ac\u09c1\u09a7_\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf_\u09b6\u09c1\u0995\u09cd\u09b0_\u09b6\u09a8\u09bf".split("_"),weekdaysMin:"\u09b0\u09ac\u09bf_\u09b8\u09cb\u09ae_\u09ae\u0999\u09cd\u0997_\u09ac\u09c1\u09a7_\u09ac\u09c3\u09b9\u0983_\u09b6\u09c1\u0995\u09cd\u09b0_\u09b6\u09a8\u09bf".split("_"),longDateFormat:{LT:"A h:mm \u09b8\u09ae\u09df",LTS:"A h:mm:ss \u09b8\u09ae\u09df",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u09b8\u09ae\u09df",LLLL:"dddd, D MMMM YYYY, A h:mm \u09b8\u09ae\u09df"},calendar:{sameDay:"[\u0986\u099c] LT",nextDay:"[\u0986\u0997\u09be\u09ae\u09c0\u0995\u09be\u09b2] LT",nextWeek:"dddd, LT",lastDay:"[\u0997\u09a4\u0995\u09be\u09b2] LT",lastWeek:"[\u0997\u09a4] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u09aa\u09b0\u09c7",past:"%s \u0986\u0997\u09c7",s:"\u0995\u09df\u09c7\u0995 \u09b8\u09c7\u0995\u09c7\u09a8\u09cd\u09a1",ss:"%d \u09b8\u09c7\u0995\u09c7\u09a8\u09cd\u09a1",m:"\u098f\u0995 \u09ae\u09bf\u09a8\u09bf\u099f",mm:"%d \u09ae\u09bf\u09a8\u09bf\u099f",h:"\u098f\u0995 \u0998\u09a8\u09cd\u099f\u09be",hh:"%d \u0998\u09a8\u09cd\u099f\u09be",d:"\u098f\u0995 \u09a6\u09bf\u09a8",dd:"%d \u09a6\u09bf\u09a8",M:"\u098f\u0995 \u09ae\u09be\u09b8",MM:"%d \u09ae\u09be\u09b8",y:"\u098f\u0995 \u09ac\u099b\u09b0",yy:"%d \u09ac\u099b\u09b0"},preparse:function(t){return t.replace(/[\u09e7\u09e8\u09e9\u09ea\u09eb\u09ec\u09ed\u09ee\u09ef\u09e6]/g,function(t){return n[t]})},postformat:function(t){return t.replace(/\d/g,function(t){return e[t]})},meridiemParse:/\u09b0\u09be\u09a4|\u09b8\u0995\u09be\u09b2|\u09a6\u09c1\u09aa\u09c1\u09b0|\u09ac\u09bf\u0995\u09be\u09b2|\u09b0\u09be\u09a4/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u09b0\u09be\u09a4"===e&&t>=4||"\u09a6\u09c1\u09aa\u09c1\u09b0"===e&&t<5||"\u09ac\u09bf\u0995\u09be\u09b2"===e?t+12:t},meridiem:function(t,e,n){return t<4?"\u09b0\u09be\u09a4":t<10?"\u09b8\u0995\u09be\u09b2":t<17?"\u09a6\u09c1\u09aa\u09c1\u09b0":t<20?"\u09ac\u09bf\u0995\u09be\u09b2":"\u09b0\u09be\u09a4"},week:{dow:0,doy:6}})}(n("wd/R"))},kOpN:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("zh-tw",{months:"\u4e00\u6708_\u4e8c\u6708_\u4e09\u6708_\u56db\u6708_\u4e94\u6708_\u516d\u6708_\u4e03\u6708_\u516b\u6708_\u4e5d\u6708_\u5341\u6708_\u5341\u4e00\u6708_\u5341\u4e8c\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661f\u671f\u65e5_\u661f\u671f\u4e00_\u661f\u671f\u4e8c_\u661f\u671f\u4e09_\u661f\u671f\u56db_\u661f\u671f\u4e94_\u661f\u671f\u516d".split("_"),weekdaysShort:"\u9031\u65e5_\u9031\u4e00_\u9031\u4e8c_\u9031\u4e09_\u9031\u56db_\u9031\u4e94_\u9031\u516d".split("_"),weekdaysMin:"\u65e5_\u4e00_\u4e8c_\u4e09_\u56db_\u4e94_\u516d".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm",l:"YYYY/M/D",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm"},meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(t,e){return 12===t&&(t=0),"\u51cc\u6668"===e||"\u65e9\u4e0a"===e||"\u4e0a\u5348"===e?t:"\u4e2d\u5348"===e?t>=11?t:t+12:"\u4e0b\u5348"===e||"\u665a\u4e0a"===e?t+12:void 0},meridiem:function(t,e,n){var i=100*t+e;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929] LT",nextDay:"[\u660e\u5929] LT",nextWeek:"[\u4e0b]dddd LT",lastDay:"[\u6628\u5929] LT",lastWeek:"[\u4e0a]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u9031)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"\u65e5";case"M":return t+"\u6708";case"w":case"W":return t+"\u9031";default:return t}},relativeTime:{future:"%s\u5167",past:"%s\u524d",s:"\u5e7e\u79d2",ss:"%d \u79d2",m:"1 \u5206\u9418",mm:"%d \u5206\u9418",h:"1 \u5c0f\u6642",hh:"%d \u5c0f\u6642",d:"1 \u5929",dd:"%d \u5929",M:"1 \u500b\u6708",MM:"%d \u500b\u6708",y:"1 \u5e74",yy:"%d \u5e74"}})}()},l5ep:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("cy",{months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Heddiw am] LT",nextDay:"[Yfory am] LT",nextWeek:"dddd [am] LT",lastDay:"[Ddoe am] LT",lastWeek:"dddd [diwethaf am] LT",sameElse:"L"},relativeTime:{future:"mewn %s",past:"%s yn \xf4l",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"},dayOfMonthOrdinalParse:/\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(t){var e="";return t>20?e=40===t||50===t||60===t||80===t||100===t?"fed":"ain":t>0&&(e=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"][t]),t+e},week:{dow:1,doy:4}})}()},lXzo:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i,r;return"m"===n?e?"\u043c\u0438\u043d\u0443\u0442\u0430":"\u043c\u0438\u043d\u0443\u0442\u0443":t+" "+(i=+t,r={ss:e?"\u0441\u0435\u043a\u0443\u043d\u0434\u0430_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434":"\u0441\u0435\u043a\u0443\u043d\u0434\u0443_\u0441\u0435\u043a\u0443\u043d\u0434\u044b_\u0441\u0435\u043a\u0443\u043d\u0434",mm:e?"\u043c\u0438\u043d\u0443\u0442\u0430_\u043c\u0438\u043d\u0443\u0442\u044b_\u043c\u0438\u043d\u0443\u0442":"\u043c\u0438\u043d\u0443\u0442\u0443_\u043c\u0438\u043d\u0443\u0442\u044b_\u043c\u0438\u043d\u0443\u0442",hh:"\u0447\u0430\u0441_\u0447\u0430\u0441\u0430_\u0447\u0430\u0441\u043e\u0432",dd:"\u0434\u0435\u043d\u044c_\u0434\u043d\u044f_\u0434\u043d\u0435\u0439",MM:"\u043c\u0435\u0441\u044f\u0446_\u043c\u0435\u0441\u044f\u0446\u0430_\u043c\u0435\u0441\u044f\u0446\u0435\u0432",yy:"\u0433\u043e\u0434_\u0433\u043e\u0434\u0430_\u043b\u0435\u0442"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}var i=[/^\u044f\u043d\u0432/i,/^\u0444\u0435\u0432/i,/^\u043c\u0430\u0440/i,/^\u0430\u043f\u0440/i,/^\u043c\u0430[\u0439\u044f]/i,/^\u0438\u044e\u043d/i,/^\u0438\u044e\u043b/i,/^\u0430\u0432\u0433/i,/^\u0441\u0435\u043d/i,/^\u043e\u043a\u0442/i,/^\u043d\u043e\u044f/i,/^\u0434\u0435\u043a/i];n("wd/R").defineLocale("ru",{months:{format:"\u044f\u043d\u0432\u0430\u0440\u044f_\u0444\u0435\u0432\u0440\u0430\u043b\u044f_\u043c\u0430\u0440\u0442\u0430_\u0430\u043f\u0440\u0435\u043b\u044f_\u043c\u0430\u044f_\u0438\u044e\u043d\u044f_\u0438\u044e\u043b\u044f_\u0430\u0432\u0433\u0443\u0441\u0442\u0430_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f_\u043e\u043a\u0442\u044f\u0431\u0440\u044f_\u043d\u043e\u044f\u0431\u0440\u044f_\u0434\u0435\u043a\u0430\u0431\u0440\u044f".split("_"),standalone:"\u044f\u043d\u0432\u0430\u0440\u044c_\u0444\u0435\u0432\u0440\u0430\u043b\u044c_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b\u044c_\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c_\u043e\u043a\u0442\u044f\u0431\u0440\u044c_\u043d\u043e\u044f\u0431\u0440\u044c_\u0434\u0435\u043a\u0430\u0431\u0440\u044c".split("_")},monthsShort:{format:"\u044f\u043d\u0432._\u0444\u0435\u0432\u0440._\u043c\u0430\u0440._\u0430\u043f\u0440._\u043c\u0430\u044f_\u0438\u044e\u043d\u044f_\u0438\u044e\u043b\u044f_\u0430\u0432\u0433._\u0441\u0435\u043d\u0442._\u043e\u043a\u0442._\u043d\u043e\u044f\u0431._\u0434\u0435\u043a.".split("_"),standalone:"\u044f\u043d\u0432._\u0444\u0435\u0432\u0440._\u043c\u0430\u0440\u0442_\u0430\u043f\u0440._\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433._\u0441\u0435\u043d\u0442._\u043e\u043a\u0442._\u043d\u043e\u044f\u0431._\u0434\u0435\u043a.".split("_")},weekdays:{standalone:"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440\u0433_\u043f\u044f\u0442\u043d\u0438\u0446\u0430_\u0441\u0443\u0431\u0431\u043e\u0442\u0430".split("_"),format:"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435_\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a_\u0432\u0442\u043e\u0440\u043d\u0438\u043a_\u0441\u0440\u0435\u0434\u0443_\u0447\u0435\u0442\u0432\u0435\u0440\u0433_\u043f\u044f\u0442\u043d\u0438\u0446\u0443_\u0441\u0443\u0431\u0431\u043e\u0442\u0443".split("_"),isFormat:/\[ ?[\u0412\u0432] ?(?:\u043f\u0440\u043e\u0448\u043b\u0443\u044e|\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e|\u044d\u0442\u0443)? ?\] ?dddd/},weekdaysShort:"\u0432\u0441_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u0432\u0441_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),monthsParse:i,longMonthsParse:i,shortMonthsParse:i,monthsRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044c\u044f]|\u044f\u043d\u0432\.?|\u0444\u0435\u0432\u0440\u0430\u043b[\u044c\u044f]|\u0444\u0435\u0432\u0440?\.?|\u043c\u0430\u0440\u0442\u0430?|\u043c\u0430\u0440\.?|\u0430\u043f\u0440\u0435\u043b[\u044c\u044f]|\u0430\u043f\u0440\.?|\u043c\u0430[\u0439\u044f]|\u0438\u044e\u043d[\u044c\u044f]|\u0438\u044e\u043d\.?|\u0438\u044e\u043b[\u044c\u044f]|\u0438\u044e\u043b\.?|\u0430\u0432\u0433\u0443\u0441\u0442\u0430?|\u0430\u0432\u0433\.?|\u0441\u0435\u043d\u0442\u044f\u0431\u0440[\u044c\u044f]|\u0441\u0435\u043d\u0442?\.?|\u043e\u043a\u0442\u044f\u0431\u0440[\u044c\u044f]|\u043e\u043a\u0442\.?|\u043d\u043e\u044f\u0431\u0440[\u044c\u044f]|\u043d\u043e\u044f\u0431?\.?|\u0434\u0435\u043a\u0430\u0431\u0440[\u044c\u044f]|\u0434\u0435\u043a\.?)/i,monthsShortRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044c\u044f]|\u044f\u043d\u0432\.?|\u0444\u0435\u0432\u0440\u0430\u043b[\u044c\u044f]|\u0444\u0435\u0432\u0440?\.?|\u043c\u0430\u0440\u0442\u0430?|\u043c\u0430\u0440\.?|\u0430\u043f\u0440\u0435\u043b[\u044c\u044f]|\u0430\u043f\u0440\.?|\u043c\u0430[\u0439\u044f]|\u0438\u044e\u043d[\u044c\u044f]|\u0438\u044e\u043d\.?|\u0438\u044e\u043b[\u044c\u044f]|\u0438\u044e\u043b\.?|\u0430\u0432\u0433\u0443\u0441\u0442\u0430?|\u0430\u0432\u0433\.?|\u0441\u0435\u043d\u0442\u044f\u0431\u0440[\u044c\u044f]|\u0441\u0435\u043d\u0442?\.?|\u043e\u043a\u0442\u044f\u0431\u0440[\u044c\u044f]|\u043e\u043a\u0442\.?|\u043d\u043e\u044f\u0431\u0440[\u044c\u044f]|\u043d\u043e\u044f\u0431?\.?|\u0434\u0435\u043a\u0430\u0431\u0440[\u044c\u044f]|\u0434\u0435\u043a\.?)/i,monthsStrictRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044f\u044c]|\u0444\u0435\u0432\u0440\u0430\u043b[\u044f\u044c]|\u043c\u0430\u0440\u0442\u0430?|\u0430\u043f\u0440\u0435\u043b[\u044f\u044c]|\u043c\u0430[\u044f\u0439]|\u0438\u044e\u043d[\u044f\u044c]|\u0438\u044e\u043b[\u044f\u044c]|\u0430\u0432\u0433\u0443\u0441\u0442\u0430?|\u0441\u0435\u043d\u0442\u044f\u0431\u0440[\u044f\u044c]|\u043e\u043a\u0442\u044f\u0431\u0440[\u044f\u044c]|\u043d\u043e\u044f\u0431\u0440[\u044f\u044c]|\u0434\u0435\u043a\u0430\u0431\u0440[\u044f\u044c])/i,monthsShortStrictRegex:/^(\u044f\u043d\u0432\.|\u0444\u0435\u0432\u0440?\.|\u043c\u0430\u0440[\u0442.]|\u0430\u043f\u0440\.|\u043c\u0430[\u044f\u0439]|\u0438\u044e\u043d[\u044c\u044f.]|\u0438\u044e\u043b[\u044c\u044f.]|\u0430\u0432\u0433\.|\u0441\u0435\u043d\u0442?\.|\u043e\u043a\u0442\.|\u043d\u043e\u044f\u0431?\.|\u0434\u0435\u043a\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., H:mm",LLLL:"dddd, D MMMM YYYY \u0433., H:mm"},calendar:{sameDay:"[\u0421\u0435\u0433\u043e\u0434\u043d\u044f, \u0432] LT",nextDay:"[\u0417\u0430\u0432\u0442\u0440\u0430, \u0432] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430, \u0432] LT",nextWeek:function(t){if(t.week()===this.week())return 2===this.day()?"[\u0412\u043e] dddd, [\u0432] LT":"[\u0412] dddd, [\u0432] LT";switch(this.day()){case 0:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435] dddd, [\u0432] LT";case 1:case 2:case 4:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439] dddd, [\u0432] LT";case 3:case 5:case 6:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e] dddd, [\u0432] LT"}},lastWeek:function(t){if(t.week()===this.week())return 2===this.day()?"[\u0412\u043e] dddd, [\u0432] LT":"[\u0412] dddd, [\u0432] LT";switch(this.day()){case 0:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u043e\u0435] dddd, [\u0432] LT";case 1:case 2:case 4:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u044b\u0439] dddd, [\u0432] LT";case 3:case 5:case 6:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u0443\u044e] dddd, [\u0432] LT"}},sameElse:"L"},relativeTime:{future:"\u0447\u0435\u0440\u0435\u0437 %s",past:"%s \u043d\u0430\u0437\u0430\u0434",s:"\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434",ss:e,m:e,mm:e,h:"\u0447\u0430\u0441",hh:e,d:"\u0434\u0435\u043d\u044c",dd:e,M:"\u043c\u0435\u0441\u044f\u0446",MM:e,y:"\u0433\u043e\u0434",yy:e},meridiemParse:/\u043d\u043e\u0447\u0438|\u0443\u0442\u0440\u0430|\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430/i,isPM:function(t){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430)$/.test(t)},meridiem:function(t,e,n){return t<4?"\u043d\u043e\u0447\u0438":t<12?"\u0443\u0442\u0440\u0430":t<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0435\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e|\u044f)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":return t+"-\u0439";case"D":return t+"-\u0433\u043e";case"w":case"W":return t+"-\u044f";default:return t}},week:{dow:1,doy:4}})}()},lYtQ:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){switch(n){case"s":return e?"\u0445\u044d\u0434\u0445\u044d\u043d \u0441\u0435\u043a\u0443\u043d\u0434":"\u0445\u044d\u0434\u0445\u044d\u043d \u0441\u0435\u043a\u0443\u043d\u0434\u044b\u043d";case"ss":return t+(e?" \u0441\u0435\u043a\u0443\u043d\u0434":" \u0441\u0435\u043a\u0443\u043d\u0434\u044b\u043d");case"m":case"mm":return t+(e?" \u043c\u0438\u043d\u0443\u0442":" \u043c\u0438\u043d\u0443\u0442\u044b\u043d");case"h":case"hh":return t+(e?" \u0446\u0430\u0433":" \u0446\u0430\u0433\u0438\u0439\u043d");case"d":case"dd":return t+(e?" \u04e9\u0434\u04e9\u0440":" \u04e9\u0434\u0440\u0438\u0439\u043d");case"M":case"MM":return t+(e?" \u0441\u0430\u0440":" \u0441\u0430\u0440\u044b\u043d");case"y":case"yy":return t+(e?" \u0436\u0438\u043b":" \u0436\u0438\u043b\u0438\u0439\u043d");default:return t}}n("wd/R").defineLocale("mn",{months:"\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440_\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440_\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440".split("_"),monthsShort:"1 \u0441\u0430\u0440_2 \u0441\u0430\u0440_3 \u0441\u0430\u0440_4 \u0441\u0430\u0440_5 \u0441\u0430\u0440_6 \u0441\u0430\u0440_7 \u0441\u0430\u0440_8 \u0441\u0430\u0440_9 \u0441\u0430\u0440_10 \u0441\u0430\u0440_11 \u0441\u0430\u0440_12 \u0441\u0430\u0440".split("_"),monthsParseExact:!0,weekdays:"\u041d\u044f\u043c_\u0414\u0430\u0432\u0430\u0430_\u041c\u044f\u0433\u043c\u0430\u0440_\u041b\u0445\u0430\u0433\u0432\u0430_\u041f\u04af\u0440\u044d\u0432_\u0411\u0430\u0430\u0441\u0430\u043d_\u0411\u044f\u043c\u0431\u0430".split("_"),weekdaysShort:"\u041d\u044f\u043c_\u0414\u0430\u0432_\u041c\u044f\u0433_\u041b\u0445\u0430_\u041f\u04af\u0440_\u0411\u0430\u0430_\u0411\u044f\u043c".split("_"),weekdaysMin:"\u041d\u044f_\u0414\u0430_\u041c\u044f_\u041b\u0445_\u041f\u04af_\u0411\u0430_\u0411\u044f".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY \u043e\u043d\u044b MMMM\u044b\u043d D",LLL:"YYYY \u043e\u043d\u044b MMMM\u044b\u043d D HH:mm",LLLL:"dddd, YYYY \u043e\u043d\u044b MMMM\u044b\u043d D HH:mm"},meridiemParse:/\u04ae\u04e8|\u04ae\u0425/i,isPM:function(t){return"\u04ae\u0425"===t},meridiem:function(t,e,n){return t<12?"\u04ae\u04e8":"\u04ae\u0425"},calendar:{sameDay:"[\u04e8\u043d\u04e9\u04e9\u0434\u04e9\u0440] LT",nextDay:"[\u041c\u0430\u0440\u0433\u0430\u0430\u0448] LT",nextWeek:"[\u0418\u0440\u044d\u0445] dddd LT",lastDay:"[\u04e8\u0447\u0438\u0433\u0434\u04e9\u0440] LT",lastWeek:"[\u04e8\u043d\u0433\u04e9\u0440\u0441\u04e9\u043d] dddd LT",sameElse:"L"},relativeTime:{future:"%s \u0434\u0430\u0440\u0430\u0430",past:"%s \u04e9\u043c\u043d\u04e9",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2} \u04e9\u0434\u04e9\u0440/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+" \u04e9\u0434\u04e9\u0440";default:return t}}})}()},lgnt:function(t,e,n){!function(t){"use strict";var e={0:"-\u0447\u04af",1:"-\u0447\u0438",2:"-\u0447\u0438",3:"-\u0447\u04af",4:"-\u0447\u04af",5:"-\u0447\u0438",6:"-\u0447\u044b",7:"-\u0447\u0438",8:"-\u0447\u0438",9:"-\u0447\u0443",10:"-\u0447\u0443",20:"-\u0447\u044b",30:"-\u0447\u0443",40:"-\u0447\u044b",50:"-\u0447\u04af",60:"-\u0447\u044b",70:"-\u0447\u0438",80:"-\u0447\u0438",90:"-\u0447\u0443",100:"-\u0447\u04af"};t.defineLocale("ky",{months:"\u044f\u043d\u0432\u0430\u0440\u044c_\u0444\u0435\u0432\u0440\u0430\u043b\u044c_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440\u0435\u043b\u044c_\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c_\u043e\u043a\u0442\u044f\u0431\u0440\u044c_\u043d\u043e\u044f\u0431\u0440\u044c_\u0434\u0435\u043a\u0430\u0431\u0440\u044c".split("_"),monthsShort:"\u044f\u043d\u0432_\u0444\u0435\u0432_\u043c\u0430\u0440\u0442_\u0430\u043f\u0440_\u043c\u0430\u0439_\u0438\u044e\u043d\u044c_\u0438\u044e\u043b\u044c_\u0430\u0432\u0433_\u0441\u0435\u043d_\u043e\u043a\u0442_\u043d\u043e\u044f_\u0434\u0435\u043a".split("_"),weekdays:"\u0416\u0435\u043a\u0448\u0435\u043c\u0431\u0438_\u0414\u04af\u0439\u0448\u04e9\u043c\u0431\u04af_\u0428\u0435\u0439\u0448\u0435\u043c\u0431\u0438_\u0428\u0430\u0440\u0448\u0435\u043c\u0431\u0438_\u0411\u0435\u0439\u0448\u0435\u043c\u0431\u0438_\u0416\u0443\u043c\u0430_\u0418\u0448\u0435\u043c\u0431\u0438".split("_"),weekdaysShort:"\u0416\u0435\u043a_\u0414\u04af\u0439_\u0428\u0435\u0439_\u0428\u0430\u0440_\u0411\u0435\u0439_\u0416\u0443\u043c_\u0418\u0448\u0435".split("_"),weekdaysMin:"\u0416\u043a_\u0414\u0439_\u0428\u0439_\u0428\u0440_\u0411\u0439_\u0416\u043c_\u0418\u0448".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0411\u04af\u0433\u04af\u043d \u0441\u0430\u0430\u0442] LT",nextDay:"[\u042d\u0440\u0442\u0435\u04a3 \u0441\u0430\u0430\u0442] LT",nextWeek:"dddd [\u0441\u0430\u0430\u0442] LT",lastDay:"[\u041a\u0435\u0447\u044d\u044d \u0441\u0430\u0430\u0442] LT",lastWeek:"[\u04e8\u0442\u043a\u04e9\u043d \u0430\u043f\u0442\u0430\u043d\u044b\u043d] dddd [\u043a\u04af\u043d\u04af] [\u0441\u0430\u0430\u0442] LT",sameElse:"L"},relativeTime:{future:"%s \u0438\u0447\u0438\u043d\u0434\u0435",past:"%s \u043c\u0443\u0440\u0443\u043d",s:"\u0431\u0438\u0440\u043d\u0435\u0447\u0435 \u0441\u0435\u043a\u0443\u043d\u0434",ss:"%d \u0441\u0435\u043a\u0443\u043d\u0434",m:"\u0431\u0438\u0440 \u043c\u04af\u043d\u04e9\u0442",mm:"%d \u043c\u04af\u043d\u04e9\u0442",h:"\u0431\u0438\u0440 \u0441\u0430\u0430\u0442",hh:"%d \u0441\u0430\u0430\u0442",d:"\u0431\u0438\u0440 \u043a\u04af\u043d",dd:"%d \u043a\u04af\u043d",M:"\u0431\u0438\u0440 \u0430\u0439",MM:"%d \u0430\u0439",y:"\u0431\u0438\u0440 \u0436\u044b\u043b",yy:"%d \u0436\u044b\u043b"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0447\u0438|\u0447\u044b|\u0447\u04af|\u0447\u0443)/,ordinal:function(t){return t+(e[t]||e[t%10]||e[t>=100?100:null])},week:{dow:1,doy:7}})}(n("wd/R"))},lyxo:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i=" ";return(t%100>=20||t>=100&&t%100==0)&&(i=" de "),t+i+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"}[n]}n("wd/R").defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminic\u0103_luni_mar\u021bi_miercuri_joi_vineri_s\xe2mb\u0103t\u0103".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_S\xe2m".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_S\xe2".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[m\xe2ine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s \xeen urm\u0103",s:"c\xe2teva secunde",ss:e,m:"un minut",mm:e,h:"o or\u0103",hh:e,d:"o zi",dd:e,M:"o lun\u0103",MM:e,y:"un an",yy:e},week:{dow:1,doy:7}})}()},m4GZ:function(t,e){function n(t){this.message=t}(n.prototype=new Error).name="InvalidCharacterError",t.exports="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new n("'atob' failed: The string to be decoded is not correctly encoded.");for(var i,r,o=0,a=0,l="";r=e.charAt(a++);~r&&(i=o%4?64*i+r:r,o++%4)?l+=String.fromCharCode(255&i>>(-2*o&6)):0)r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(r);return l}},nyYc:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("fr",{months:"janvier_f\xe9vrier_mars_avril_mai_juin_juillet_ao\xfbt_septembre_octobre_novembre_d\xe9cembre".split("_"),monthsShort:"janv._f\xe9vr._mars_avr._mai_juin_juil._ao\xfbt_sept._oct._nov._d\xe9c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd\u2019hui \xe0] LT",nextDay:"[Demain \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[Hier \xe0] LT",lastWeek:"dddd [dernier \xe0] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(t,e){switch(e){case"D":return t+(1===t?"er":"");default:case"M":case"Q":case"DDD":case"d":return t+(1===t?"er":"e");case"w":case"W":return t+(1===t?"re":"e")}},week:{dow:1,doy:4}})}()},o1bE:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("ar-dz",{months:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),monthsShort:"\u062c\u0627\u0646\u0641\u064a_\u0641\u064a\u0641\u0631\u064a_\u0645\u0627\u0631\u0633_\u0623\u0641\u0631\u064a\u0644_\u0645\u0627\u064a_\u062c\u0648\u0627\u0646_\u062c\u0648\u064a\u0644\u064a\u0629_\u0623\u0648\u062a_\u0633\u0628\u062a\u0645\u0628\u0631_\u0623\u0643\u062a\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062f\u064a\u0633\u0645\u0628\u0631".split("_"),weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0627\u062d\u062f_\u0627\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u0623\u062d_\u0625\u062b_\u062b\u0644\u0627_\u0623\u0631_\u062e\u0645_\u062c\u0645_\u0633\u0628".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",ss:"%d \u062b\u0627\u0646\u064a\u0629",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:0,doy:4}})}()},"p/rL":function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\u025bkalo_Zuw\u025bnkalo_Zuluyekalo_Utikalo_S\u025btanburukalo_\u0254kut\u0254burukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_M\u025b_Zuw_Zul_Uti_S\u025bt_\u0254ku_Now_Des".split("_"),weekdays:"Kari_Nt\u025bn\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_Nt\u025b_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [l\u025br\u025b] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [l\u025br\u025b] HH:mm"},calendar:{sameDay:"[Bi l\u025br\u025b] LT",nextDay:"[Sini l\u025br\u025b] LT",nextWeek:"dddd [don l\u025br\u025b] LT",lastDay:"[Kunu l\u025br\u025b] LT",lastWeek:"dddd [t\u025bm\u025bnen l\u025br\u025b] LT",sameElse:"L"},relativeTime:{future:"%s k\u0254n\u0254",past:"a b\u025b %s b\u0254",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"l\u025br\u025b kelen",hh:"l\u025br\u025b %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}})}()},raLr:function(t,e,n){!function(t){"use strict";function e(t,e,n){var i,r;return"m"===n?e?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443":"h"===n?e?"\u0433\u043e\u0434\u0438\u043d\u0430":"\u0433\u043e\u0434\u0438\u043d\u0443":t+" "+(i=+t,r={ss:e?"\u0441\u0435\u043a\u0443\u043d\u0434\u0430_\u0441\u0435\u043a\u0443\u043d\u0434\u0438_\u0441\u0435\u043a\u0443\u043d\u0434":"\u0441\u0435\u043a\u0443\u043d\u0434\u0443_\u0441\u0435\u043a\u0443\u043d\u0434\u0438_\u0441\u0435\u043a\u0443\u043d\u0434",mm:e?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430_\u0445\u0432\u0438\u043b\u0438\u043d\u0438_\u0445\u0432\u0438\u043b\u0438\u043d":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443_\u0445\u0432\u0438\u043b\u0438\u043d\u0438_\u0445\u0432\u0438\u043b\u0438\u043d",hh:e?"\u0433\u043e\u0434\u0438\u043d\u0430_\u0433\u043e\u0434\u0438\u043d\u0438_\u0433\u043e\u0434\u0438\u043d":"\u0433\u043e\u0434\u0438\u043d\u0443_\u0433\u043e\u0434\u0438\u043d\u0438_\u0433\u043e\u0434\u0438\u043d",dd:"\u0434\u0435\u043d\u044c_\u0434\u043d\u0456_\u0434\u043d\u0456\u0432",MM:"\u043c\u0456\u0441\u044f\u0446\u044c_\u043c\u0456\u0441\u044f\u0446\u0456_\u043c\u0456\u0441\u044f\u0446\u0456\u0432",yy:"\u0440\u0456\u043a_\u0440\u043e\u043a\u0438_\u0440\u043e\u043a\u0456\u0432"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}function i(t){return function(){return t+"\u043e"+(11===this.hours()?"\u0431":"")+"] LT"}}n("wd/R").defineLocale("uk",{months:{format:"\u0441\u0456\u0447\u043d\u044f_\u043b\u044e\u0442\u043e\u0433\u043e_\u0431\u0435\u0440\u0435\u0437\u043d\u044f_\u043a\u0432\u0456\u0442\u043d\u044f_\u0442\u0440\u0430\u0432\u043d\u044f_\u0447\u0435\u0440\u0432\u043d\u044f_\u043b\u0438\u043f\u043d\u044f_\u0441\u0435\u0440\u043f\u043d\u044f_\u0432\u0435\u0440\u0435\u0441\u043d\u044f_\u0436\u043e\u0432\u0442\u043d\u044f_\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430_\u0433\u0440\u0443\u0434\u043d\u044f".split("_"),standalone:"\u0441\u0456\u0447\u0435\u043d\u044c_\u043b\u044e\u0442\u0438\u0439_\u0431\u0435\u0440\u0435\u0437\u0435\u043d\u044c_\u043a\u0432\u0456\u0442\u0435\u043d\u044c_\u0442\u0440\u0430\u0432\u0435\u043d\u044c_\u0447\u0435\u0440\u0432\u0435\u043d\u044c_\u043b\u0438\u043f\u0435\u043d\u044c_\u0441\u0435\u0440\u043f\u0435\u043d\u044c_\u0432\u0435\u0440\u0435\u0441\u0435\u043d\u044c_\u0436\u043e\u0432\u0442\u0435\u043d\u044c_\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434_\u0433\u0440\u0443\u0434\u0435\u043d\u044c".split("_")},monthsShort:"\u0441\u0456\u0447_\u043b\u044e\u0442_\u0431\u0435\u0440_\u043a\u0432\u0456\u0442_\u0442\u0440\u0430\u0432_\u0447\u0435\u0440\u0432_\u043b\u0438\u043f_\u0441\u0435\u0440\u043f_\u0432\u0435\u0440_\u0436\u043e\u0432\u0442_\u043b\u0438\u0441\u0442_\u0433\u0440\u0443\u0434".split("_"),weekdays:function(t,e){var n={nominative:"\u043d\u0435\u0434\u0456\u043b\u044f_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a_\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a_\u0441\u0435\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u044f_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),accusative:"\u043d\u0435\u0434\u0456\u043b\u044e_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a_\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a_\u0441\u0435\u0440\u0435\u0434\u0443_\u0447\u0435\u0442\u0432\u0435\u0440_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u044e_\u0441\u0443\u0431\u043e\u0442\u0443".split("_"),genitive:"\u043d\u0435\u0434\u0456\u043b\u0456_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043a\u0430_\u0432\u0456\u0432\u0442\u043e\u0440\u043a\u0430_\u0441\u0435\u0440\u0435\u0434\u0438_\u0447\u0435\u0442\u0432\u0435\u0440\u0433\u0430_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u0456_\u0441\u0443\u0431\u043e\u0442\u0438".split("_")};return!0===t?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):t?n[/(\[[\u0412\u0432\u0423\u0443]\]) ?dddd/.test(e)?"accusative":/\[?(?:\u043c\u0438\u043d\u0443\u043b\u043e\u0457|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0457)? ?\] ?dddd/.test(e)?"genitive":"nominative"][t.day()]:n.nominative},weekdaysShort:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0440.",LLL:"D MMMM YYYY \u0440., HH:mm",LLLL:"dddd, D MMMM YYYY \u0440., HH:mm"},calendar:{sameDay:i("[\u0421\u044c\u043e\u0433\u043e\u0434\u043d\u0456 "),nextDay:i("[\u0417\u0430\u0432\u0442\u0440\u0430 "),lastDay:i("[\u0412\u0447\u043e\u0440\u0430 "),nextWeek:i("[\u0423] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return i("[\u041c\u0438\u043d\u0443\u043b\u043e\u0457] dddd [").call(this);case 1:case 2:case 4:return i("[\u041c\u0438\u043d\u0443\u043b\u043e\u0433\u043e] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"\u0437\u0430 %s",past:"%s \u0442\u043e\u043c\u0443",s:"\u0434\u0435\u043a\u0456\u043b\u044c\u043a\u0430 \u0441\u0435\u043a\u0443\u043d\u0434",ss:e,m:e,mm:e,h:"\u0433\u043e\u0434\u0438\u043d\u0443",hh:e,d:"\u0434\u0435\u043d\u044c",dd:e,M:"\u043c\u0456\u0441\u044f\u0446\u044c",MM:e,y:"\u0440\u0456\u043a",yy:e},meridiemParse:/\u043d\u043e\u0447\u0456|\u0440\u0430\u043d\u043a\u0443|\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430/,isPM:function(t){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430)$/.test(t)},meridiem:function(t,e,n){return t<4?"\u043d\u043e\u0447\u0456":t<12?"\u0440\u0430\u043d\u043a\u0443":t<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u043e\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":case"w":case"W":return t+"-\u0439";case"D":return t+"-\u0433\u043e";default:return t}},week:{dow:1,doy:7}})}()},"s+uk":function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?r[n][0]:r[n][1]}n("wd/R").defineLocale("de-at",{months:"J\xe4nner_Februar_M\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"J\xe4n._Feb._M\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},sp3z:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("lo",{months:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99_\u0e81\u0eb8\u0ea1\u0e9e\u0eb2_\u0ea1\u0eb5\u0e99\u0eb2_\u0ec0\u0ea1\u0eaa\u0eb2_\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2_\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2_\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94_\u0eaa\u0eb4\u0e87\u0eab\u0eb2_\u0e81\u0eb1\u0e99\u0e8d\u0eb2_\u0e95\u0eb8\u0ea5\u0eb2_\u0e9e\u0eb0\u0e88\u0eb4\u0e81_\u0e97\u0eb1\u0e99\u0ea7\u0eb2".split("_"),monthsShort:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99_\u0e81\u0eb8\u0ea1\u0e9e\u0eb2_\u0ea1\u0eb5\u0e99\u0eb2_\u0ec0\u0ea1\u0eaa\u0eb2_\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2_\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2_\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94_\u0eaa\u0eb4\u0e87\u0eab\u0eb2_\u0e81\u0eb1\u0e99\u0e8d\u0eb2_\u0e95\u0eb8\u0ea5\u0eb2_\u0e9e\u0eb0\u0e88\u0eb4\u0e81_\u0e97\u0eb1\u0e99\u0ea7\u0eb2".split("_"),weekdays:"\u0ead\u0eb2\u0e97\u0eb4\u0e94_\u0e88\u0eb1\u0e99_\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99_\u0e9e\u0eb8\u0e94_\u0e9e\u0eb0\u0eab\u0eb1\u0e94_\u0eaa\u0eb8\u0e81_\u0ec0\u0eaa\u0ebb\u0eb2".split("_"),weekdaysShort:"\u0e97\u0eb4\u0e94_\u0e88\u0eb1\u0e99_\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99_\u0e9e\u0eb8\u0e94_\u0e9e\u0eb0\u0eab\u0eb1\u0e94_\u0eaa\u0eb8\u0e81_\u0ec0\u0eaa\u0ebb\u0eb2".split("_"),weekdaysMin:"\u0e97_\u0e88_\u0ead\u0e84_\u0e9e_\u0e9e\u0eab_\u0eaa\u0e81_\u0eaa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"\u0ea7\u0eb1\u0e99dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0e95\u0ead\u0e99\u0ec0\u0e8a\u0ebb\u0ec9\u0eb2|\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87/,isPM:function(t){return"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"===t},meridiem:function(t,e,n){return t<12?"\u0e95\u0ead\u0e99\u0ec0\u0e8a\u0ebb\u0ec9\u0eb2":"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"},calendar:{sameDay:"[\u0ea1\u0eb7\u0ec9\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",nextDay:"[\u0ea1\u0eb7\u0ec9\u0ead\u0eb7\u0ec8\u0e99\u0ec0\u0ea7\u0ea5\u0eb2] LT",nextWeek:"[\u0ea7\u0eb1\u0e99]dddd[\u0edc\u0ec9\u0eb2\u0ec0\u0ea7\u0ea5\u0eb2] LT",lastDay:"[\u0ea1\u0eb7\u0ec9\u0ea7\u0eb2\u0e99\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",lastWeek:"[\u0ea7\u0eb1\u0e99]dddd[\u0ec1\u0ea5\u0ec9\u0ea7\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",sameElse:"L"},relativeTime:{future:"\u0ead\u0eb5\u0e81 %s",past:"%s\u0e9c\u0ec8\u0eb2\u0e99\u0ea1\u0eb2",s:"\u0e9a\u0ecd\u0ec8\u0ec0\u0e97\u0ebb\u0ec8\u0eb2\u0ec3\u0e94\u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5",ss:"%d \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5",m:"1 \u0e99\u0eb2\u0e97\u0eb5",mm:"%d \u0e99\u0eb2\u0e97\u0eb5",h:"1 \u0e8a\u0ebb\u0ec8\u0ea7\u0ec2\u0ea1\u0e87",hh:"%d \u0e8a\u0ebb\u0ec8\u0ea7\u0ec2\u0ea1\u0e87",d:"1 \u0ea1\u0eb7\u0ec9",dd:"%d \u0ea1\u0eb7\u0ec9",M:"1 \u0ec0\u0e94\u0eb7\u0ead\u0e99",MM:"%d \u0ec0\u0e94\u0eb7\u0ead\u0e99",y:"1 \u0e9b\u0eb5",yy:"%d \u0e9b\u0eb5"},dayOfMonthOrdinalParse:/(\u0e97\u0eb5\u0ec8)\d{1,2}/,ordinal:function(t){return"\u0e97\u0eb5\u0ec8"+t}})}()},tGlX:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?r[n][0]:r[n][1]}n("wd/R").defineLocale("de",{months:"Januar_Februar_M\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._M\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},tT3J:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tzm-latn",{months:"innayr_br\u02e4ayr\u02e4_mar\u02e4s\u02e4_ibrir_mayyw_ywnyw_ywlywz_\u0263w\u0161t_\u0161wtanbir_kt\u02e4wbr\u02e4_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_br\u02e4ayr\u02e4_mar\u02e4s\u02e4_ibrir_mayyw_ywnyw_ywlywz_\u0263w\u0161t_\u0161wtanbir_kt\u02e4wbr\u02e4_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asi\u1e0dyas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asi\u1e0dyas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asi\u1e0dyas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minu\u1e0d",mm:"%d minu\u1e0d",h:"sa\u025ba",hh:"%d tassa\u025bin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}})}()},tUCv:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(t,e){return 12===t&&(t=0),"enjing"===e?t:"siyang"===e?t>=11?t:t+12:"sonten"===e||"ndalu"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"enjing":t<15?"siyang":t<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}})}()},u3GI:function(t,e,n){!function(t){"use strict";function e(t,e,n,i){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?r[n][0]:r[n][1]}n("wd/R").defineLocale("de-ch",{months:"Januar_Februar_M\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._M\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},uEye:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_m\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_m\xe5n_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_m\xe5_ty_on_to_fr_l\xf8".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I g\xe5r klokka] LT",lastWeek:"[F\xf8reg\xe5ande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein m\xe5nad",MM:"%d m\xe5nader",y:"eit \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},uXwI:function(t,e,n){!function(t){"use strict";var e={ss:"sekundes_sekund\u0113m_sekunde_sekundes".split("_"),m:"min\u016btes_min\u016bt\u0113m_min\u016bte_min\u016btes".split("_"),mm:"min\u016btes_min\u016bt\u0113m_min\u016bte_min\u016btes".split("_"),h:"stundas_stund\u0101m_stunda_stundas".split("_"),hh:"stundas_stund\u0101m_stunda_stundas".split("_"),d:"dienas_dien\u0101m_diena_dienas".split("_"),dd:"dienas_dien\u0101m_diena_dienas".split("_"),M:"m\u0113ne\u0161a_m\u0113ne\u0161iem_m\u0113nesis_m\u0113ne\u0161i".split("_"),MM:"m\u0113ne\u0161a_m\u0113ne\u0161iem_m\u0113nesis_m\u0113ne\u0161i".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};function n(t,e,n){return n?e%10==1&&e%100!=11?t[2]:t[3]:e%10==1&&e%100!=11?t[0]:t[1]}function i(t,i,r){return t+" "+n(e[r],t,i)}function r(t,i,r){return n(e[r],t,i)}t.defineLocale("lv",{months:"janv\u0101ris_febru\u0101ris_marts_apr\u012blis_maijs_j\u016bnijs_j\u016blijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_j\u016bn_j\u016bl_aug_sep_okt_nov_dec".split("_"),weekdays:"sv\u0113tdiena_pirmdiena_otrdiena_tre\u0161diena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[\u0160odien pulksten] LT",nextDay:"[R\u012bt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pag\u0101ju\u0161\u0101] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"p\u0113c %s",past:"pirms %s",s:function(t,e){return e?"da\u017eas sekundes":"da\u017e\u0101m sekund\u0113m"},ss:i,m:r,mm:i,h:r,hh:i,d:r,dd:i,M:r,MM:i,y:r,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},wQk9:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("tzm",{months:"\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54_\u2d31\u2d55\u2d30\u2d62\u2d55_\u2d4e\u2d30\u2d55\u2d5a_\u2d49\u2d31\u2d54\u2d49\u2d54_\u2d4e\u2d30\u2d62\u2d62\u2d53_\u2d62\u2d53\u2d4f\u2d62\u2d53_\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63_\u2d56\u2d53\u2d5b\u2d5c_\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d3d\u2d5f\u2d53\u2d31\u2d55_\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d37\u2d53\u2d4a\u2d4f\u2d31\u2d49\u2d54".split("_"),monthsShort:"\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54_\u2d31\u2d55\u2d30\u2d62\u2d55_\u2d4e\u2d30\u2d55\u2d5a_\u2d49\u2d31\u2d54\u2d49\u2d54_\u2d4e\u2d30\u2d62\u2d62\u2d53_\u2d62\u2d53\u2d4f\u2d62\u2d53_\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63_\u2d56\u2d53\u2d5b\u2d5c_\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d3d\u2d5f\u2d53\u2d31\u2d55_\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54_\u2d37\u2d53\u2d4a\u2d4f\u2d31\u2d49\u2d54".split("_"),weekdays:"\u2d30\u2d59\u2d30\u2d4e\u2d30\u2d59_\u2d30\u2d62\u2d4f\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4f\u2d30\u2d59_\u2d30\u2d3d\u2d54\u2d30\u2d59_\u2d30\u2d3d\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4e\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d39\u2d62\u2d30\u2d59".split("_"),weekdaysShort:"\u2d30\u2d59\u2d30\u2d4e\u2d30\u2d59_\u2d30\u2d62\u2d4f\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4f\u2d30\u2d59_\u2d30\u2d3d\u2d54\u2d30\u2d59_\u2d30\u2d3d\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4e\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d39\u2d62\u2d30\u2d59".split("_"),weekdaysMin:"\u2d30\u2d59\u2d30\u2d4e\u2d30\u2d59_\u2d30\u2d62\u2d4f\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4f\u2d30\u2d59_\u2d30\u2d3d\u2d54\u2d30\u2d59_\u2d30\u2d3d\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d4e\u2d61\u2d30\u2d59_\u2d30\u2d59\u2d49\u2d39\u2d62\u2d30\u2d59".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u2d30\u2d59\u2d37\u2d45 \u2d34] LT",nextDay:"[\u2d30\u2d59\u2d3d\u2d30 \u2d34] LT",nextWeek:"dddd [\u2d34] LT",lastDay:"[\u2d30\u2d5a\u2d30\u2d4f\u2d5c \u2d34] LT",lastWeek:"dddd [\u2d34] LT",sameElse:"L"},relativeTime:{future:"\u2d37\u2d30\u2d37\u2d45 \u2d59 \u2d62\u2d30\u2d4f %s",past:"\u2d62\u2d30\u2d4f %s",s:"\u2d49\u2d4e\u2d49\u2d3d",ss:"%d \u2d49\u2d4e\u2d49\u2d3d",m:"\u2d4e\u2d49\u2d4f\u2d53\u2d3a",mm:"%d \u2d4e\u2d49\u2d4f\u2d53\u2d3a",h:"\u2d59\u2d30\u2d44\u2d30",hh:"%d \u2d5c\u2d30\u2d59\u2d59\u2d30\u2d44\u2d49\u2d4f",d:"\u2d30\u2d59\u2d59",dd:"%d o\u2d59\u2d59\u2d30\u2d4f",M:"\u2d30\u2d62o\u2d53\u2d54",MM:"%d \u2d49\u2d62\u2d62\u2d49\u2d54\u2d4f",y:"\u2d30\u2d59\u2d33\u2d30\u2d59",yy:"%d \u2d49\u2d59\u2d33\u2d30\u2d59\u2d4f"},week:{dow:6,doy:12}})}()},"wd/R":function(t,e,n){(function(t){t.exports=function(){"use strict";var e,i;function r(){return e.apply(null,arguments)}function o(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function a(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function l(t){return void 0===t}function s(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function u(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function c(t,e){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,e-i.length)).toString().substr(1)+i}var H=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,N=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},B={};function W(t,e,n,i){var r=i;"string"==typeof i&&(r=function(){return this[i]()}),t&&(B[t]=r),e&&(B[e[0]]=function(){return j(r.apply(this,arguments),e[1],e[2])}),n&&(B[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),t)})}function U(t,e){return t.isValid()?(e=G(e,t.localeData()),V[e]=V[e]||function(t){var e,n,i,r=t.match(H);for(e=0,n=r.length;e=0&&N.test(t);)t=t.replace(N,i),N.lastIndex=0,n-=1;return t}var q=/\d/,X=/\d\d/,K=/\d{3}/,Z=/\d{4}/,J=/[+-]?\d{6}/,Q=/\d\d?/,$=/\d\d\d\d?/,tt=/\d\d\d\d\d\d?/,et=/\d{1,3}/,nt=/\d{1,4}/,it=/[+-]?\d{1,6}/,rt=/\d+/,ot=/[+-]?\d+/,at=/Z|[+-]\d\d:?\d\d/gi,lt=/Z|[+-]\d\d(?::?\d\d)?/gi,st=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,ut={};function ct(t,e,n){ut[t]=E(e)?e:function(t,i){return t&&n?n:e}}function dt(t,e){return d(ut,t)?ut[t](e._strict,e._locale):new RegExp(ht(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,n,i,r){return e||n||i||r})))}function ht(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var pt={};function ft(t,e){var n,i=e;for("string"==typeof t&&(t=[t]),s(e)&&(i=function(t,n){n[e]=k(t)}),n=0;n68?1900:2e3)};var Dt,Tt=Et("FullYear",!0);function Et(t,e){return function(n){return null!=n?(Pt(this,t,n),r.updateOffset(this,e),this):At(this,t)}}function At(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function Pt(t,e,n){t.isValid()&&!isNaN(n)&&("FullYear"===e&&Lt(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](n,t.month(),Ot(n,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](n))}function Ot(t,e){if(isNaN(t)||isNaN(e))return NaN;var n=(e%12+12)%12;return t+=(e-n)/12,1===n?Lt(t)?29:28:31-n%7%2}Dt=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0){var n=Array.prototype.slice.call(arguments);n[0]=t+400,e=new Date(Date.UTC.apply(null,n)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Bt(t,e,n){var i=7+e-n;return-(7+Vt(t,0,i).getUTCDay()-e)%7+i-1}function Wt(t,e,n,i,r){var o,a,l=1+7*(e-1)+(7+n-i)%7+Bt(t,i,r);return l<=0?a=Ct(o=t-1)+l:l>Ct(t)?(o=t+1,a=l-Ct(t)):(o=t,a=l),{year:o,dayOfYear:a}}function Ut(t,e,n){var i,r,o=Bt(t.year(),e,n),a=Math.floor((t.dayOfYear()-o-1)/7)+1;return a<1?i=a+Gt(r=t.year()-1,e,n):a>Gt(t.year(),e,n)?(i=a-Gt(t.year(),e,n),r=t.year()+1):(r=t.year(),i=a),{week:i,year:r}}function Gt(t,e,n){var i=Bt(t,e,n),r=Bt(t+1,e,n);return(Ct(t)-i+r)/7}function qt(t,e){return t.slice(e,7).concat(t.slice(0,e))}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),Y("week","w"),Y("isoWeek","W"),z("week",5),z("isoWeek",5),ct("w",Q),ct("ww",Q,X),ct("W",Q),ct("WW",Q,X),mt(["w","ww","W","WW"],function(t,e,n,i){e[i.substr(0,1)]=k(t)}),W("d",0,"do","day"),W("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),W("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),W("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),Y("day","d"),Y("weekday","e"),Y("isoWeekday","E"),z("day",11),z("weekday",11),z("isoWeekday",11),ct("d",Q),ct("e",Q),ct("E",Q),ct("dd",function(t,e){return e.weekdaysMinRegex(t)}),ct("ddd",function(t,e){return e.weekdaysShortRegex(t)}),ct("dddd",function(t,e){return e.weekdaysRegex(t)}),mt(["dd","ddd","dddd"],function(t,e,n,i){var r=n._locale.weekdaysParse(t,i,n._strict);null!=r?e.d=r:f(n).invalidWeekday=t}),mt(["d","e","E"],function(t,e,n,i){e[i]=k(t)});var Xt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Kt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Zt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Jt=st,Qt=st,$t=st;function te(){function t(t,e){return e.length-t.length}var e,n,i,r,o,a=[],l=[],s=[],u=[];for(e=0;e<7;e++)n=p([2e3,1]).day(e),i=this.weekdaysMin(n,""),r=this.weekdaysShort(n,""),o=this.weekdays(n,""),a.push(i),l.push(r),s.push(o),u.push(i),u.push(r),u.push(o);for(a.sort(t),l.sort(t),s.sort(t),u.sort(t),e=0;e<7;e++)l[e]=ht(l[e]),s[e]=ht(s[e]),u[e]=ht(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function ee(){return this.hours()%12||12}function ne(t,e){W(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function ie(t,e){return e._meridiemParse}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,ee),W("k",["kk",2],0,function(){return this.hours()||24}),W("hmm",0,0,function(){return""+ee.apply(this)+j(this.minutes(),2)}),W("hmmss",0,0,function(){return""+ee.apply(this)+j(this.minutes(),2)+j(this.seconds(),2)}),W("Hmm",0,0,function(){return""+this.hours()+j(this.minutes(),2)}),W("Hmmss",0,0,function(){return""+this.hours()+j(this.minutes(),2)+j(this.seconds(),2)}),ne("a",!0),ne("A",!1),Y("hour","h"),z("hour",13),ct("a",ie),ct("A",ie),ct("H",Q),ct("h",Q),ct("k",Q),ct("HH",Q,X),ct("hh",Q,X),ct("kk",Q,X),ct("hmm",$),ct("hmmss",tt),ct("Hmm",$),ct("Hmmss",tt),ft(["H","HH"],bt),ft(["k","kk"],function(t,e,n){var i=k(t);e[bt]=24===i?0:i}),ft(["a","A"],function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t}),ft(["h","hh"],function(t,e,n){e[bt]=k(t),f(n).bigHour=!0}),ft("hmm",function(t,e,n){var i=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i)),f(n).bigHour=!0}),ft("hmmss",function(t,e,n){var i=t.length-4,r=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i,2)),e[wt]=k(t.substr(r)),f(n).bigHour=!0}),ft("Hmm",function(t,e,n){var i=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i))}),ft("Hmmss",function(t,e,n){var i=t.length-4,r=t.length-2;e[bt]=k(t.substr(0,i)),e[xt]=k(t.substr(i,2)),e[wt]=k(t.substr(r))});var re,oe=Et("Hours",!0),ae={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Rt,monthsShort:It,week:{dow:0,doy:6},weekdays:Xt,weekdaysMin:Zt,weekdaysShort:Kt,meridiemParse:/[ap]\.?m?\.?/i},le={},se={};function ue(t){return t?t.toLowerCase().replace("_","-"):t}function ce(e){var i=null;if(!le[e]&&void 0!==t&&t&&t.exports)try{i=re._abbr,n("RnhZ")("./"+e),de(i)}catch(r){}return le[e]}function de(t,e){var n;return t&&((n=l(e)?pe(t):he(t,e))?re=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),re._abbr}function he(t,e){if(null!==e){var n,i=ae;if(e.abbr=t,null!=le[t])T("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=le[t]._config;else if(null!=e.parentLocale)if(null!=le[e.parentLocale])i=le[e.parentLocale]._config;else{if(null==(n=ce(e.parentLocale)))return se[e.parentLocale]||(se[e.parentLocale]=[]),se[e.parentLocale].push({name:t,config:e}),null;i=n._config}return le[t]=new P(A(i,e)),se[t]&&se[t].forEach(function(t){he(t.name,t.config)}),de(t),le[t]}return delete le[t],null}function pe(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return re;if(!o(t)){if(e=ce(t))return e;t=[t]}return function(t){for(var e,n,i,r,o=0;o0;){if(i=ce(r.slice(0,e).join("-")))return i;if(n&&n.length>=e&&M(r,n,!0)>=e-1)break;e--}o++}return re}(t)}function fe(t){var e,n=t._a;return n&&-2===f(t).overflow&&(e=n[_t]<0||n[_t]>11?_t:n[vt]<1||n[vt]>Ot(n[yt],n[_t])?vt:n[bt]<0||n[bt]>24||24===n[bt]&&(0!==n[xt]||0!==n[wt]||0!==n[kt])?bt:n[xt]<0||n[xt]>59?xt:n[wt]<0||n[wt]>59?wt:n[kt]<0||n[kt]>999?kt:-1,f(t)._overflowDayOfYear&&(evt)&&(e=vt),f(t)._overflowWeeks&&-1===e&&(e=Mt),f(t)._overflowWeekday&&-1===e&&(e=St),f(t).overflow=e),t}function me(t,e,n){return null!=t?t:null!=e?e:n}function ge(t){var e,n,i,o,a,l=[];if(!t._d){for(i=function(t){var e=new Date(r.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[vt]&&null==t._a[_t]&&function(t){var e,n,i,r,o,a,l,s;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)o=1,a=4,n=me(e.GG,t._a[yt],Ut(Ae(),1,4).year),i=me(e.W,1),((r=me(e.E,1))<1||r>7)&&(s=!0);else{o=t._locale._week.dow,a=t._locale._week.doy;var u=Ut(Ae(),o,a);n=me(e.gg,t._a[yt],u.year),i=me(e.w,u.week),null!=e.d?((r=e.d)<0||r>6)&&(s=!0):null!=e.e?(r=e.e+o,(e.e<0||e.e>6)&&(s=!0)):r=o}i<1||i>Gt(n,o,a)?f(t)._overflowWeeks=!0:null!=s?f(t)._overflowWeekday=!0:(l=Wt(n,i,r,o,a),t._a[yt]=l.year,t._dayOfYear=l.dayOfYear)}(t),null!=t._dayOfYear&&(a=me(t._a[yt],i[yt]),(t._dayOfYear>Ct(a)||0===t._dayOfYear)&&(f(t)._overflowDayOfYear=!0),n=Vt(a,0,t._dayOfYear),t._a[_t]=n.getUTCMonth(),t._a[vt]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=l[e]=i[e];for(;e<7;e++)t._a[e]=l[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[bt]&&0===t._a[xt]&&0===t._a[wt]&&0===t._a[kt]&&(t._nextDay=!0,t._a[bt]=0),t._d=(t._useUTC?Vt:function(t,e,n,i,r,o,a){var l;return t<100&&t>=0?(l=new Date(t+400,e,n,i,r,o,a),isFinite(l.getFullYear())&&l.setFullYear(t)):l=new Date(t,e,n,i,r,o,a),l}).apply(null,l),o=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[bt]=24),t._w&&void 0!==t._w.d&&t._w.d!==o&&(f(t).weekdayMismatch=!0)}}var ye=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,_e=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ve=/Z|[+-]\d\d(?::?\d\d)?/,be=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],xe=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],we=/^\/?Date\((\-?\d+)/i;function ke(t){var e,n,i,r,o,a,l=t._i,s=ye.exec(l)||_e.exec(l);if(s){for(f(t).iso=!0,e=0,n=be.length;e0&&f(t).unusedInput.push(a),l=l.slice(l.indexOf(n)+n.length),u+=n.length),B[o]?(n?f(t).empty=!1:f(t).unusedTokens.push(o),gt(o,n,t)):t._strict&&!n&&f(t).unusedTokens.push(o);f(t).charsLeftOver=s-u,l.length>0&&f(t).unusedInput.push(l),t._a[bt]<=12&&!0===f(t).bigHour&&t._a[bt]>0&&(f(t).bigHour=void 0),f(t).parsedDateParts=t._a.slice(0),f(t).meridiem=t._meridiem,t._a[bt]=(c=t._locale,d=t._a[bt],null==(h=t._meridiem)?d:null!=c.meridiemHour?c.meridiemHour(d,h):null!=c.isPM?((p=c.isPM(h))&&d<12&&(d+=12),p||12!==d||(d=0),d):d),ge(t),fe(t)}else Le(t);else ke(t);var c,d,h,p}function Te(t){var e=t._i,n=t._f;return t._locale=t._locale||pe(t._l),null===e||void 0===n&&""===e?g({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),x(e)?new b(fe(e)):(u(e)?t._d=e:o(n)?function(t){var e,n,i,r,o;if(0===t._f.length)return f(t).invalidFormat=!0,void(t._d=new Date(NaN));for(r=0;rthis?this:t:g()});function Ye(t,e){var n,i;if(1===e.length&&o(e[0])&&(e=e[0]),!e.length)return Ae();for(n=e[0],i=1;i=0?new Date(t+400,e,n)-on:new Date(t,e,n).valueOf()}function sn(t,e,n){return t<100&&t>=0?Date.UTC(t+400,e,n)-on:Date.UTC(t,e,n)}function un(t,e){W(0,[t,t.length],0,e)}function cn(t,e,n,i,r){var o;return null==t?Ut(this,i,r).year:(e>(o=Gt(t,i,r))&&(e=o),(function(t,e,n,i,r){var o=Wt(t,e,n,i,r),a=Vt(o.year,0,o.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}).call(this,t,e,n,i,r))}W(0,["gg",2],0,function(){return this.weekYear()%100}),W(0,["GG",2],0,function(){return this.isoWeekYear()%100}),un("gggg","weekYear"),un("ggggg","weekYear"),un("GGGG","isoWeekYear"),un("GGGGG","isoWeekYear"),Y("weekYear","gg"),Y("isoWeekYear","GG"),z("weekYear",1),z("isoWeekYear",1),ct("G",ot),ct("g",ot),ct("GG",Q,X),ct("gg",Q,X),ct("GGGG",nt,Z),ct("gggg",nt,Z),ct("GGGGG",it,J),ct("ggggg",it,J),mt(["gggg","ggggg","GGGG","GGGGG"],function(t,e,n,i){e[i.substr(0,2)]=k(t)}),mt(["gg","GG"],function(t,e,n,i){e[i]=r.parseTwoDigitYear(t)}),W("Q",0,"Qo","quarter"),Y("quarter","Q"),z("quarter",7),ct("Q",q),ft("Q",function(t,e){e[_t]=3*(k(t)-1)}),W("D",["DD",2],"Do","date"),Y("date","D"),z("date",9),ct("D",Q),ct("DD",Q,X),ct("Do",function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient}),ft(["D","DD"],vt),ft("Do",function(t,e){e[vt]=k(t.match(Q)[0])});var dn=Et("Date",!0);W("DDD",["DDDD",3],"DDDo","dayOfYear"),Y("dayOfYear","DDD"),z("dayOfYear",4),ct("DDD",et),ct("DDDD",K),ft(["DDD","DDDD"],function(t,e,n){n._dayOfYear=k(t)}),W("m",["mm",2],0,"minute"),Y("minute","m"),z("minute",14),ct("m",Q),ct("mm",Q,X),ft(["m","mm"],xt);var hn=Et("Minutes",!1);W("s",["ss",2],0,"second"),Y("second","s"),z("second",15),ct("s",Q),ct("ss",Q,X),ft(["s","ss"],wt);var pn,fn=Et("Seconds",!1);for(W("S",0,0,function(){return~~(this.millisecond()/100)}),W(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),W(0,["SSS",3],0,"millisecond"),W(0,["SSSS",4],0,function(){return 10*this.millisecond()}),W(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),W(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),W(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),W(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),W(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),Y("millisecond","ms"),z("millisecond",16),ct("S",et,q),ct("SS",et,X),ct("SSS",et,K),pn="SSSS";pn.length<=9;pn+="S")ct(pn,rt);function mn(t,e){e[kt]=k(1e3*("0."+t))}for(pn="S";pn.length<=9;pn+="S")ft(pn,mn);var gn=Et("Milliseconds",!1);W("z",0,0,"zoneAbbr"),W("zz",0,0,"zoneName");var yn=b.prototype;function _n(t){return t}yn.add=Qe,yn.calendar=function(t,e){var n=t||Ae(),i=Ve(n,this).startOf("day"),o=r.calendarFormat(this,i)||"sameElse",a=e&&(E(e[o])?e[o].call(this,n):e[o]);return this.format(a||this.localeData().calendar(o,this,Ae(n)))},yn.clone=function(){return new b(this)},yn.diff=function(t,e,n){var i,r,o;if(!this.isValid())return NaN;if(!(i=Ve(t,this)).isValid())return NaN;switch(r=6e4*(i.utcOffset()-this.utcOffset()),e=R(e)){case"year":o=tn(this,i)/12;break;case"month":o=tn(this,i);break;case"quarter":o=tn(this,i)/3;break;case"second":o=(this-i)/1e3;break;case"minute":o=(this-i)/6e4;break;case"hour":o=(this-i)/36e5;break;case"day":o=(this-i-r)/864e5;break;case"week":o=(this-i-r)/6048e5;break;default:o=this-i}return n?o:w(o)},yn.endOf=function(t){var e;if(void 0===(t=R(t))||"millisecond"===t||!this.isValid())return this;var n=this._isUTC?sn:ln;switch(t){case"year":e=n(this.year()+1,0,1)-1;break;case"quarter":e=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=n(this.year(),this.month()+1,1)-1;break;case"week":e=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=36e5-an(e+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":e=this._d.valueOf(),e+=6e4-an(e,6e4)-1;break;case"second":e=this._d.valueOf(),e+=1e3-an(e,1e3)-1}return this._d.setTime(e),r.updateOffset(this,!0),this},yn.format=function(t){t||(t=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var e=U(this,t);return this.localeData().postformat(e)},yn.from=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Ae(t).isValid())?qe({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},yn.fromNow=function(t){return this.from(Ae(),t)},yn.to=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Ae(t).isValid())?qe({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},yn.toNow=function(t){return this.to(Ae(),t)},yn.get=function(t){return E(this[t=R(t)])?this[t]():this},yn.invalidAt=function(){return f(this).overflow},yn.isAfter=function(t,e){var n=x(t)?t:Ae(t);return!(!this.isValid()||!n.isValid())&&("millisecond"===(e=R(e)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?U(n,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):E(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},yn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var n="["+t+'("]',i=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY";return this.format(n+i+"-MM-DD[T]HH:mm:ss.SSS"+e+'[")]')},yn.toJSON=function(){return this.isValid()?this.toISOString():null},yn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},yn.unix=function(){return Math.floor(this.valueOf()/1e3)},yn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},yn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},yn.year=Tt,yn.isLeapYear=function(){return Lt(this.year())},yn.weekYear=function(t){return cn.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},yn.isoWeekYear=function(t){return cn.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},yn.quarter=yn.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},yn.month=zt,yn.daysInMonth=function(){return Ot(this.year(),this.month())},yn.week=yn.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},yn.isoWeek=yn.isoWeeks=function(t){var e=Ut(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},yn.weeksInYear=function(){var t=this.localeData()._week;return Gt(this.year(),t.dow,t.doy)},yn.isoWeeksInYear=function(){return Gt(this.year(),1,4)},yn.date=dn,yn.day=yn.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},yn.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},yn.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},yn.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},yn.hour=yn.hours=oe,yn.minute=yn.minutes=hn,yn.second=yn.seconds=fn,yn.millisecond=yn.milliseconds=gn,yn.utcOffset=function(t,e,n){var i,o=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=Ne(lt,t)))return this}else Math.abs(t)<16&&!n&&(t*=60);return!this._isUTC&&e&&(i=Be(this)),this._offset=t,this._isUTC=!0,null!=i&&this.add(i,"m"),o!==t&&(!e||this._changeInProgress?Je(this,qe(t-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,r.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?o:Be(this)},yn.utc=function(t){return this.utcOffset(0,t)},yn.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Be(this),"m")),this},yn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=Ne(at,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},yn.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Ae(t).utcOffset():0,(this.utcOffset()-t)%60==0)},yn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},yn.isLocal=function(){return!!this.isValid()&&!this._isUTC},yn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},yn.isUtc=We,yn.isUTC=We,yn.zoneAbbr=function(){return this._isUTC?"UTC":""},yn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},yn.dates=C("dates accessor is deprecated. Use date instead.",dn),yn.months=C("months accessor is deprecated. Use month instead",zt),yn.years=C("years accessor is deprecated. Use year instead",Tt),yn.zone=C("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),yn.isDSTShifted=C("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!l(this._isDSTShifted))return this._isDSTShifted;var t={};if(_(t,this),(t=Te(t))._a){var e=t._isUTC?p(t._a):Ae(t._a);this._isDSTShifted=this.isValid()&&M(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var vn=P.prototype;function bn(t,e,n,i){var r=pe(),o=p().set(i,e);return r[n](o,t)}function xn(t,e,n){if(s(t)&&(e=t,t=void 0),t=t||"",null!=e)return bn(t,e,n,"month");var i,r=[];for(i=0;i<12;i++)r[i]=bn(t,i,n,"month");return r}function wn(t,e,n,i){"boolean"==typeof t?(s(e)&&(n=e,e=void 0),e=e||""):(n=e=t,t=!1,s(e)&&(n=e,e=void 0),e=e||"");var r,o=pe(),a=t?o._week.dow:0;if(null!=n)return bn(e,(n+a)%7,i,"day");var l=[];for(r=0;r<7;r++)l[r]=bn(e,(r+a)%7,i,"day");return l}vn.calendar=function(t,e,n){var i=this._calendar[t]||this._calendar.sameElse;return E(i)?i.call(e,n):i},vn.longDateFormat=function(t){var e=this._longDateFormat[t],n=this._longDateFormat[t.toUpperCase()];return e||!n?e:(this._longDateFormat[t]=n.replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t])},vn.invalidDate=function(){return this._invalidDate},vn.ordinal=function(t){return this._ordinal.replace("%d",t)},vn.preparse=_n,vn.postformat=_n,vn.relativeTime=function(t,e,n,i){var r=this._relativeTime[n];return E(r)?r(t,e,n,i):r.replace(/%d/i,t)},vn.pastFuture=function(t,e){var n=this._relativeTime[t>0?"future":"past"];return E(n)?n(e):n.replace(/%s/i,e)},vn.set=function(t){var e,n;for(n in t)E(e=t[n])?this[n]=e:this["_"+n]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},vn.months=function(t,e){return t?o(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Yt).test(e)?"format":"standalone"][t.month()]:o(this._months)?this._months:this._months.standalone},vn.monthsShort=function(t,e){return t?o(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Yt.test(e)?"format":"standalone"][t.month()]:o(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},vn.monthsParse=function(t,e,n){var i,r,o;if(this._monthsParseExact)return(function(t,e,n){var i,r,o,a=t.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],i=0;i<12;++i)o=p([2e3,i]),this._shortMonthsParse[i]=this.monthsShort(o,"").toLocaleLowerCase(),this._longMonthsParse[i]=this.months(o,"").toLocaleLowerCase();return n?"MMM"===e?-1!==(r=Dt.call(this._shortMonthsParse,a))?r:null:-1!==(r=Dt.call(this._longMonthsParse,a))?r:null:"MMM"===e?-1!==(r=Dt.call(this._shortMonthsParse,a))?r:-1!==(r=Dt.call(this._longMonthsParse,a))?r:null:-1!==(r=Dt.call(this._longMonthsParse,a))?r:-1!==(r=Dt.call(this._shortMonthsParse,a))?r:null}).call(this,t,e,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(r=p([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[i]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),n||this._monthsParse[i]||(o="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[i]=new RegExp(o.replace(".",""),"i")),n&&"MMMM"===e&&this._longMonthsParse[i].test(t))return i;if(n&&"MMM"===e&&this._shortMonthsParse[i].test(t))return i;if(!n&&this._monthsParse[i].test(t))return i}},vn.monthsRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Nt.call(this),t?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=Ht),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},vn.monthsShortRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Nt.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=jt),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},vn.week=function(t){return Ut(t,this._week.dow,this._week.doy).week},vn.firstDayOfYear=function(){return this._week.doy},vn.firstDayOfWeek=function(){return this._week.dow},vn.weekdays=function(t,e){var n=o(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?qt(n,this._week.dow):t?n[t.day()]:n},vn.weekdaysMin=function(t){return!0===t?qt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},vn.weekdaysShort=function(t){return!0===t?qt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},vn.weekdaysParse=function(t,e,n){var i,r,o;if(this._weekdaysParseExact)return(function(t,e,n){var i,r,o,a=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)o=p([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===e?-1!==(r=Dt.call(this._weekdaysParse,a))?r:null:"ddd"===e?-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:null:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:null:"dddd"===e?-1!==(r=Dt.call(this._weekdaysParse,a))?r:-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:null:"ddd"===e?-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:-1!==(r=Dt.call(this._weekdaysParse,a))?r:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:null:-1!==(r=Dt.call(this._minWeekdaysParse,a))?r:-1!==(r=Dt.call(this._weekdaysParse,a))?r:-1!==(r=Dt.call(this._shortWeekdaysParse,a))?r:null}).call(this,t,e,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(r=p([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[i]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[i]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[i]||(o="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[i]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===e&&this._fullWeekdaysParse[i].test(t))return i;if(n&&"ddd"===e&&this._shortWeekdaysParse[i].test(t))return i;if(n&&"dd"===e&&this._minWeekdaysParse[i].test(t))return i;if(!n&&this._weekdaysParse[i].test(t))return i}},vn.weekdaysRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||te.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=Jt),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},vn.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||te.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Qt),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},vn.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||te.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=$t),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},vn.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},vn.meridiem=function(t,e,n){return t>11?n?"pm":"PM":n?"am":"AM"},de("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===k(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),r.lang=C("moment.lang is deprecated. Use moment.locale instead.",de),r.langData=C("moment.langData is deprecated. Use moment.localeData instead.",pe);var kn=Math.abs;function Mn(t,e,n,i){var r=qe(e,n);return t._milliseconds+=i*r._milliseconds,t._days+=i*r._days,t._months+=i*r._months,t._bubble()}function Sn(t){return t<0?Math.floor(t):Math.ceil(t)}function Cn(t){return 4800*t/146097}function Ln(t){return 146097*t/4800}function Dn(t){return function(){return this.as(t)}}var Tn=Dn("ms"),En=Dn("s"),An=Dn("m"),Pn=Dn("h"),On=Dn("d"),Yn=Dn("w"),Rn=Dn("M"),In=Dn("Q"),Fn=Dn("y");function zn(t){return function(){return this.isValid()?this._data[t]:NaN}}var jn=zn("milliseconds"),Hn=zn("seconds"),Nn=zn("minutes"),Vn=zn("hours"),Bn=zn("days"),Wn=zn("months"),Un=zn("years"),Gn=Math.round,qn={ss:44,s:45,m:45,h:22,d:26,M:11},Xn=Math.abs;function Kn(t){return(t>0)-(t<0)||+t}function Zn(){if(!this.isValid())return this.localeData().invalidDate();var t,e,n=Xn(this._milliseconds)/1e3,i=Xn(this._days),r=Xn(this._months);t=w(n/60),e=w(t/60),n%=60,t%=60;var o=w(r/12),a=r%=12,l=i,s=e,u=t,c=n?n.toFixed(3).replace(/\.?0+$/,""):"",d=this.asSeconds();if(!d)return"P0D";var h=d<0?"-":"",p=Kn(this._months)!==Kn(d)?"-":"",f=Kn(this._days)!==Kn(d)?"-":"",m=Kn(this._milliseconds)!==Kn(d)?"-":"";return h+"P"+(o?p+o+"Y":"")+(a?p+a+"M":"")+(l?f+l+"D":"")+(s||u||c?"T":"")+(s?m+s+"H":"")+(u?m+u+"M":"")+(c?m+c+"S":"")}var Jn=Ie.prototype;return Jn.isValid=function(){return this._isValid},Jn.abs=function(){var t=this._data;return this._milliseconds=kn(this._milliseconds),this._days=kn(this._days),this._months=kn(this._months),t.milliseconds=kn(t.milliseconds),t.seconds=kn(t.seconds),t.minutes=kn(t.minutes),t.hours=kn(t.hours),t.months=kn(t.months),t.years=kn(t.years),this},Jn.add=function(t,e){return Mn(this,t,e,1)},Jn.subtract=function(t,e){return Mn(this,t,e,-1)},Jn.as=function(t){if(!this.isValid())return NaN;var e,n,i=this._milliseconds;if("month"===(t=R(t))||"quarter"===t||"year"===t)switch(n=this._months+Cn(e=this._days+i/864e5),t){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(e=this._days+Math.round(Ln(this._months)),t){case"week":return e/7+i/6048e5;case"day":return e+i/864e5;case"hour":return 24*e+i/36e5;case"minute":return 1440*e+i/6e4;case"second":return 86400*e+i/1e3;case"millisecond":return Math.floor(864e5*e)+i;default:throw new Error("Unknown unit "+t)}},Jn.asMilliseconds=Tn,Jn.asSeconds=En,Jn.asMinutes=An,Jn.asHours=Pn,Jn.asDays=On,Jn.asWeeks=Yn,Jn.asMonths=Rn,Jn.asQuarters=In,Jn.asYears=Fn,Jn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},Jn._bubble=function(){var t,e,n,i,r,o=this._milliseconds,a=this._days,l=this._months,s=this._data;return o>=0&&a>=0&&l>=0||o<=0&&a<=0&&l<=0||(o+=864e5*Sn(Ln(l)+a),a=0,l=0),s.milliseconds=o%1e3,t=w(o/1e3),s.seconds=t%60,e=w(t/60),s.minutes=e%60,n=w(e/60),s.hours=n%24,a+=w(n/24),l+=r=w(Cn(a)),a-=Sn(Ln(r)),i=w(l/12),l%=12,s.days=a,s.months=l,s.years=i,this},Jn.clone=function(){return qe(this)},Jn.get=function(t){return t=R(t),this.isValid()?this[t+"s"]():NaN},Jn.milliseconds=jn,Jn.seconds=Hn,Jn.minutes=Nn,Jn.hours=Vn,Jn.days=Bn,Jn.weeks=function(){return w(this.days()/7)},Jn.months=Wn,Jn.years=Un,Jn.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),n=function(t,e,n){var i=qe(t).abs(),r=Gn(i.as("s")),o=Gn(i.as("m")),a=Gn(i.as("h")),l=Gn(i.as("d")),s=Gn(i.as("M")),u=Gn(i.as("y")),c=r<=qn.ss&&["s",r]||r0,c[4]=n,(function(t,e,n,i,r){return r.relativeTime(e||1,!!n,t,i)}).apply(null,c)}(this,!t,e);return t&&(n=e.pastFuture(+this,n)),e.postformat(n)},Jn.toISOString=Zn,Jn.toString=Zn,Jn.toJSON=Zn,Jn.locale=en,Jn.localeData=rn,Jn.toIsoString=C("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Zn),Jn.lang=nn,W("X",0,0,"unix"),W("x",0,0,"valueOf"),ct("x",ot),ct("X",/[+-]?\d+(\.\d{1,3})?/),ft("X",function(t,e,n){n._d=new Date(1e3*parseFloat(t,10))}),ft("x",function(t,e,n){n._d=new Date(k(t))}),r.version="2.24.0",e=Ae,r.fn=yn,r.min=function(){return Ye("isBefore",[].slice.call(arguments,0))},r.max=function(){return Ye("isAfter",[].slice.call(arguments,0))},r.now=function(){return Date.now?Date.now():+new Date},r.utc=p,r.unix=function(t){return Ae(1e3*t)},r.months=function(t,e){return xn(t,e,"months")},r.isDate=u,r.locale=de,r.invalid=g,r.duration=qe,r.isMoment=x,r.weekdays=function(t,e,n){return wn(t,e,n,"weekdays")},r.parseZone=function(){return Ae.apply(null,arguments).parseZone()},r.localeData=pe,r.isDuration=Fe,r.monthsShort=function(t,e){return xn(t,e,"monthsShort")},r.weekdaysMin=function(t,e,n){return wn(t,e,n,"weekdaysMin")},r.defineLocale=he,r.updateLocale=function(t,e){if(null!=e){var n,i,r=ae;null!=(i=ce(t))&&(r=i._config),(n=new P(e=A(r,e))).parentLocale=le[t],le[t]=n,de(t)}else null!=le[t]&&(null!=le[t].parentLocale?le[t]=le[t].parentLocale:null!=le[t]&&delete le[t]);return le[t]},r.locales=function(){return L(le)},r.weekdaysShort=function(t,e,n){return wn(t,e,n,"weekdaysShort")},r.normalizeUnits=R,r.relativeTimeRounding=function(t){return void 0===t?Gn:"function"==typeof t&&(Gn=t,!0)},r.relativeTimeThreshold=function(t,e){return void 0!==qn[t]&&(void 0===e?qn[t]:(qn[t]=e,"s"===t&&(qn.ss=e-1),!0))},r.calendarFormat=function(t,e){var n=t.diff(e,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},r.prototype=yn,r.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},r}()}).call(this,n("YuTi")(t))},x6pH:function(t,e,n){!function(t){"use strict";n("wd/R").defineLocale("he",{months:"\u05d9\u05e0\u05d5\u05d0\u05e8_\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8_\u05de\u05e8\u05e5_\u05d0\u05e4\u05e8\u05d9\u05dc_\u05de\u05d0\u05d9_\u05d9\u05d5\u05e0\u05d9_\u05d9\u05d5\u05dc\u05d9_\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8_\u05e1\u05e4\u05d8\u05de\u05d1\u05e8_\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8_\u05e0\u05d5\u05d1\u05de\u05d1\u05e8_\u05d3\u05e6\u05de\u05d1\u05e8".split("_"),monthsShort:"\u05d9\u05e0\u05d5\u05f3_\u05e4\u05d1\u05e8\u05f3_\u05de\u05e8\u05e5_\u05d0\u05e4\u05e8\u05f3_\u05de\u05d0\u05d9_\u05d9\u05d5\u05e0\u05d9_\u05d9\u05d5\u05dc\u05d9_\u05d0\u05d5\u05d2\u05f3_\u05e1\u05e4\u05d8\u05f3_\u05d0\u05d5\u05e7\u05f3_\u05e0\u05d5\u05d1\u05f3_\u05d3\u05e6\u05de\u05f3".split("_"),weekdays:"\u05e8\u05d0\u05e9\u05d5\u05df_\u05e9\u05e0\u05d9_\u05e9\u05dc\u05d9\u05e9\u05d9_\u05e8\u05d1\u05d9\u05e2\u05d9_\u05d7\u05de\u05d9\u05e9\u05d9_\u05e9\u05d9\u05e9\u05d9_\u05e9\u05d1\u05ea".split("_"),weekdaysShort:"\u05d0\u05f3_\u05d1\u05f3_\u05d2\u05f3_\u05d3\u05f3_\u05d4\u05f3_\u05d5\u05f3_\u05e9\u05f3".split("_"),weekdaysMin:"\u05d0_\u05d1_\u05d2_\u05d3_\u05d4_\u05d5_\u05e9".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [\u05d1]MMMM YYYY",LLL:"D [\u05d1]MMMM YYYY HH:mm",LLLL:"dddd, D [\u05d1]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[\u05d4\u05d9\u05d5\u05dd \u05d1\u05be]LT",nextDay:"[\u05de\u05d7\u05e8 \u05d1\u05be]LT",nextWeek:"dddd [\u05d1\u05e9\u05e2\u05d4] LT",lastDay:"[\u05d0\u05ea\u05de\u05d5\u05dc \u05d1\u05be]LT",lastWeek:"[\u05d1\u05d9\u05d5\u05dd] dddd [\u05d4\u05d0\u05d7\u05e8\u05d5\u05df \u05d1\u05e9\u05e2\u05d4] LT",sameElse:"L"},relativeTime:{future:"\u05d1\u05e2\u05d5\u05d3 %s",past:"\u05dc\u05e4\u05e0\u05d9 %s",s:"\u05de\u05e1\u05e4\u05e8 \u05e9\u05e0\u05d9\u05d5\u05ea",ss:"%d \u05e9\u05e0\u05d9\u05d5\u05ea",m:"\u05d3\u05e7\u05d4",mm:"%d \u05d3\u05e7\u05d5\u05ea",h:"\u05e9\u05e2\u05d4",hh:function(t){return 2===t?"\u05e9\u05e2\u05ea\u05d9\u05d9\u05dd":t+" \u05e9\u05e2\u05d5\u05ea"},d:"\u05d9\u05d5\u05dd",dd:function(t){return 2===t?"\u05d9\u05d5\u05de\u05d9\u05d9\u05dd":t+" \u05d9\u05de\u05d9\u05dd"},M:"\u05d7\u05d5\u05d3\u05e9",MM:function(t){return 2===t?"\u05d7\u05d5\u05d3\u05e9\u05d9\u05d9\u05dd":t+" \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd"},y:"\u05e9\u05e0\u05d4",yy:function(t){return 2===t?"\u05e9\u05e0\u05ea\u05d9\u05d9\u05dd":t%10==0&&10!==t?t+" \u05e9\u05e0\u05d4":t+" \u05e9\u05e0\u05d9\u05dd"}},meridiemParse:/\u05d0\u05d7\u05d4"\u05e6|\u05dc\u05e4\u05e0\u05d4"\u05e6|\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8|\u05d1\u05d1\u05d5\u05e7\u05e8|\u05d1\u05e2\u05e8\u05d1/i,isPM:function(t){return/^(\u05d0\u05d7\u05d4"\u05e6|\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05d1\u05e2\u05e8\u05d1)$/.test(t)},meridiem:function(t,e,n){return t<5?"\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8":t<10?"\u05d1\u05d1\u05d5\u05e7\u05e8":t<12?n?'\u05dc\u05e4\u05e0\u05d4"\u05e6':"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":t<18?n?'\u05d0\u05d7\u05d4"\u05e6':"\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":"\u05d1\u05e2\u05e8\u05d1"}})}()},yLV6:function(t,e,n){var i;!function(r,o,a,l){"use strict";var s,u=["","webkit","Moz","MS","ms","o"],c=o.createElement("div"),d="function",h=Math.round,p=Math.abs,f=Date.now;function m(t,e,n){return setTimeout(w(t,n),e)}function g(t,e,n){return!!Array.isArray(t)&&(y(t,n[e],n),!0)}function y(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(t.length!==l)for(i=0;i\s*\(/gm,"{anonymous}()@"):"Unknown Stack Trace",o=r.console&&(r.console.warn||r.console.log);return o&&o.call(r.console,i,n),t.apply(this,arguments)}}s="function"!=typeof Object.assign?function(t){if(t===l||null===t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),n=1;n-1}function T(t){return t.trim().split(/\s+/g)}function E(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;in[e]}):i.sort()),i}function O(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),o=0;o1&&!n.firstMultiple?n.firstMultiple=et(e):1===r&&(n.firstMultiple=!1);var o=n.firstInput,a=n.firstMultiple,s=a?a.center:o.center,u=e.center=nt(i);e.timeStamp=f(),e.deltaTime=e.timeStamp-o.timeStamp,e.angle=at(s,u),e.distance=ot(s,u),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},o=t.prevInput||{};e.eventType!==H&&o.eventType!==N||(r=t.prevDelta={x:o.deltaX||0,y:o.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y}),e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=rt(e.deltaX,e.deltaY);var c,d,h=it(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=h.x,e.overallVelocityY=h.y,e.overallVelocity=p(h.x)>p(h.y)?h.x:h.y,e.scale=a?(c=a.pointers,ot((d=i)[0],d[1],Q)/ot(c[0],c[1],Q)):1,e.rotation=a?function(t,e){return at(i[1],i[0],Q)+at(t[1],t[0],Q)}(a.pointers):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,o,a=t.lastInterval||e,s=e.timeStamp-a.timeStamp;if(e.eventType!=V&&(s>j||a.velocity===l)){var u=e.deltaX-a.deltaX,c=e.deltaY-a.deltaY,d=it(s,u,c);i=d.x,r=d.y,n=p(d.x)>p(d.y)?d.x:d.y,o=rt(u,c),t.lastInterval=e}else n=a.velocity,i=a.velocityX,r=a.velocityY,o=a.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=o}(n,e);var m=t.element;L(e.srcEvent.target,m)&&(m=e.srcEvent.target),e.target=m}(t,n),t.emit("hammer.input",n),t.recognize(n),t.session.prevInput=n}function et(t){for(var e=[],n=0;n=p(e)?t<0?W:U:e<0?G:q}function ot(t,e,n){n||(n=J);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function at(t,e,n){return n||(n=J),180*Math.atan2(e[n[1]]-t[n[1]],e[n[0]]-t[n[0]])/Math.PI}$.prototype={handler:function(){},init:function(){this.evEl&&S(this.element,this.evEl,this.domHandler),this.evTarget&&S(this.target,this.evTarget,this.domHandler),this.evWin&&S(R(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&C(this.element,this.evEl,this.domHandler),this.evTarget&&C(this.target,this.evTarget,this.domHandler),this.evWin&&C(R(this.element),this.evWin,this.domHandler)}};var lt={mousedown:H,mousemove:2,mouseup:N},st="mousedown",ut="mousemove mouseup";function ct(){this.evEl=st,this.evWin=ut,this.pressed=!1,$.apply(this,arguments)}x(ct,$,{handler:function(t){var e=lt[t.type];e&H&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=N),this.pressed&&(e&N&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:"mouse",srcEvent:t}))}});var dt={pointerdown:H,pointermove:2,pointerup:N,pointercancel:V,pointerout:V},ht={2:"touch",3:"pen",4:"mouse",5:"kinect"},pt="pointerdown",ft="pointermove pointerup pointercancel";function mt(){this.evEl=pt,this.evWin=ft,$.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}r.MSPointerEvent&&!r.PointerEvent&&(pt="MSPointerDown",ft="MSPointerMove MSPointerUp MSPointerCancel"),x(mt,$,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace("ms",""),r=dt[i],o=ht[t.pointerType]||t.pointerType,a="touch"==o,l=E(e,t.pointerId,"pointerId");r&H&&(0===t.button||a)?l<0&&(e.push(t),l=e.length-1):r&(N|V)&&(n=!0),l<0||(e[l]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:o,srcEvent:t}),n&&e.splice(l,1))}});var gt={touchstart:H,touchmove:2,touchend:N,touchcancel:V},yt="touchstart",_t="touchstart touchmove touchend touchcancel";function vt(){this.evTarget=yt,this.evWin=_t,this.started=!1,$.apply(this,arguments)}x(vt,$,{handler:function(t){var e=gt[t.type];if(e===H&&(this.started=!0),this.started){var n=(function(t,e){var n=A(t.touches),i=A(t.changedTouches);return e&(N|V)&&(n=P(n.concat(i),"identifier",!0)),[n,i]}).call(this,t,e);e&(N|V)&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}}});var bt={touchstart:H,touchmove:2,touchend:N,touchcancel:V},xt="touchstart touchmove touchend touchcancel";function wt(){this.evTarget=xt,this.targetIds={},$.apply(this,arguments)}x(wt,$,{handler:function(t){var e=bt[t.type],n=(function(t,e){var n=A(t.touches),i=this.targetIds;if(e&(2|H)&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,o,a=A(t.changedTouches),l=[],s=this.target;if(o=n.filter(function(t){return L(t.target,s)}),e===H)for(r=0;r-1&&i.splice(t,1)},kt)}}x(Mt,$,{handler:function(t,e,n){var i="mouse"==n.pointerType;if(!(i&&n.sourceCapabilities&&n.sourceCapabilities.firesTouchEvents)){if("touch"==n.pointerType)(function(t,e){t&H?(this.primaryTouch=e.changedPointers[0].identifier,St.call(this,e)):t&(N|V)&&St.call(this,e)}).call(this,e,n);else if(i&&(function(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n=Ot&&i(e.options.event+Ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return Ht.prototype.attrTest.call(this,t)&&(this.state&At||!(this.state&At)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=zt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),x(Vt,Ht,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||this.state&At)},emit:function(t){1!==t.scale&&(t.additionalEvent=this.options.event+(t.scale<1?"in":"out")),this._super.emit.call(this,t)}}),x(Bt,It,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return["auto"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distancee.time;if(this._input=t,!i||!n||t.eventType&(N|V)&&!r)this.reset();else if(t.eventType&H)this.reset(),this._timer=m(function(){this.state=Yt,this.tryEmit()},e.time,this);else if(t.eventType&N)return Yt;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){this.state===Yt&&(t&&t.eventType&N?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=f(),this.manager.emit(this.options.event,this._input)))}}),x(Wt,Ht,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||this.state&At)}}),x(Ut,Ht,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:X|K,pointers:1},getTouchAction:function(){return Nt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return n&(X|K)?e=t.overallVelocity:n&X?e=t.overallVelocityX:n&K&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&p(e)>this.options.velocity&&t.eventType&N},emit:function(t){var e=zt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),x(Gt,It,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return["manipulation"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance11?n?"d'o":"D'O":n?"d'a":"D'A"},calendar:{sameDay:"[oxhi \xe0] LT",nextDay:"[dem\xe0 \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[ieiri \xe0] LT",lastWeek:"[s\xfcr el] dddd [lasteu \xe0] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}()},z3Vd:function(t,e,n){!function(t){"use strict";var e="pagh_wa\u2019_cha\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");function n(t,n,i,r){var o=function(t){var n=Math.floor(t%1e3/100),i=Math.floor(t%100/10),r=t%10,o="";return n>0&&(o+=e[n]+"vatlh"),i>0&&(o+=(""!==o?" ":"")+e[i]+"maH"),r>0&&(o+=(""!==o?" ":"")+e[r]),""===o?"pagh":o}(t);switch(i){case"ss":return o+" lup";case"mm":return o+" tup";case"hh":return o+" rep";case"dd":return o+" jaj";case"MM":return o+" jar";case"yy":return o+" DIS"}}t.defineLocale("tlh",{months:"tera\u2019 jar wa\u2019_tera\u2019 jar cha\u2019_tera\u2019 jar wej_tera\u2019 jar loS_tera\u2019 jar vagh_tera\u2019 jar jav_tera\u2019 jar Soch_tera\u2019 jar chorgh_tera\u2019 jar Hut_tera\u2019 jar wa\u2019maH_tera\u2019 jar wa\u2019maH wa\u2019_tera\u2019 jar wa\u2019maH cha\u2019".split("_"),monthsShort:"jar wa\u2019_jar cha\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\u2019maH_jar wa\u2019maH wa\u2019_jar wa\u2019maH cha\u2019".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa\u2019leS] LT",nextWeek:"LLL",lastDay:"[wa\u2019Hu\u2019] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:function(t){var e=t;return-1!==t.indexOf("jaj")?e.slice(0,-3)+"leS":-1!==t.indexOf("jar")?e.slice(0,-3)+"waQ":-1!==t.indexOf("DIS")?e.slice(0,-3)+"nem":e+" pIq"},past:function(t){var e=t;return-1!==t.indexOf("jaj")?e.slice(0,-3)+"Hu\u2019":-1!==t.indexOf("jar")?e.slice(0,-3)+"wen":-1!==t.indexOf("DIS")?e.slice(0,-3)+"ben":e+" ret"},s:"puS lup",ss:n,m:"wa\u2019 tup",mm:n,h:"wa\u2019 rep",hh:n,d:"wa\u2019 jaj",dd:n,M:"wa\u2019 jar",MM:n,y:"wa\u2019 DIS",yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("wd/R"))},zUnb:function(t,e,n){"use strict";n.r(e);var i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function r(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}function l(t,e){return function(n,i){e(n,i,t)}}function s(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)}function u(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}}function c(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a}function d(){for(var t=[],e=0;e0?this._next(e.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},e}(et);function ct(t){return t}function dt(t){return void 0===t&&(t=Number.POSITIVE_INFINITY),lt(ct,t)}function ht(){for(var t=[],e=0;e1&&"number"==typeof t[t.length-1]&&(n=t.pop())):"number"==typeof r&&(n=t.pop()),null===i&&1===t.length&&t[0]instanceof Y?t[0]:dt(n)(ot(t,i))}function pt(){return function(t){return t.lift(new ft(t))}}var ft=function(){function t(t){this.connectable=t}return t.prototype.call=function(t,e){var n=this.connectable;n._refCount++;var i=new mt(t,n),r=e.subscribe(i);return i.closed||(i.connection=n.connect()),r},t}(),mt=function(t){function e(e,n){var i=t.call(this,e)||this;return i.connectable=n,i}return r(e,t),e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._refCount;if(e<=0)this.connection=null;else if(t._refCount=e-1,e>1)this.connection=null;else{var n=this.connection,i=t._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}else this.connection=null},e}(D),gt=function(t){function e(e,n){var i=t.call(this)||this;return i.source=e,i.subjectFactory=n,i._refCount=0,i._isComplete=!1,i}return r(e,t),e.prototype._subscribe=function(t){return this.getSubject().subscribe(t)},e.prototype.getSubject=function(){var t=this._subject;return t&&!t.isStopped||(this._subject=this.subjectFactory()),this._subject},e.prototype.connect=function(){var t=this._connection;return t||(this._isComplete=!1,(t=this._connection=new x).add(this.source.subscribe(new _t(this.getSubject(),this))),t.closed?(this._connection=null,t=x.EMPTY):this._connection=t),t},e.prototype.refCount=function(){return pt()(this)},e}(Y).prototype,yt={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:gt._subscribe},_isComplete:{value:gt._isComplete,writable:!0},getSubject:{value:gt.getSubject},connect:{value:gt.connect},refCount:{value:gt.refCount}},_t=function(t){function e(e,n){var i=t.call(this,e)||this;return i.connectable=n,i}return r(e,t),e.prototype._error=function(e){this._unsubscribe(),t.prototype._error.call(this,e)},e.prototype._complete=function(){this.connectable._isComplete=!0,this._unsubscribe(),t.prototype._complete.call(this)},e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._connection;t._refCount=0,t._subject=null,t._connection=null,e&&e.unsubscribe()}},e}(j);function vt(){return new H}function bt(){return function(t){return pt()((e=vt,function(t){var n;n="function"==typeof e?e:function(){return e};var i=Object.create(t,yt);return i.source=t,i.subjectFactory=n,i})(t));var e}}function xt(t){for(var e in t)if(t[e]===xt)return e;throw Error("Could not find renamed property on target object.")}function wt(t,e){for(var n in e)e.hasOwnProperty(n)&&!t.hasOwnProperty(n)&&(t[n]=e[n])}var kt=xt({ngInjectableDef:xt}),Mt=xt({ngBaseDef:xt});function St(t){return{providedIn:t.providedIn||null,factory:t.factory,value:void 0}}function Ct(t){return t&&t.hasOwnProperty(kt)?t[kt]:null}var Lt=function(){function t(t,e){this._desc=t,this.ngMetadataName="InjectionToken",this.ngInjectableDef=void 0!==e?St({providedIn:e.providedIn||"root",factory:e.factory}):void 0}return t.prototype.toString=function(){return"InjectionToken "+this._desc},t}(),Dt="__annotations__",Tt="__parameters__",Et="__prop__metadata__";function At(t,e,n,i,r){var o=Pt(e);function a(){for(var t,e=[],n=0;n ");else if("object"==typeof e){var r=[];for(var o in e)if(e.hasOwnProperty(o)){var a=e[o];r.push(o+":"+("string"==typeof a?JSON.stringify(a):Wt(a)))}i="{"+r.join(", ")+"}"}return"StaticInjectorError"+(n?"("+n+")":"")+"["+i+"]: "+t.replace(Se,"\n ")}function Ee(t,e){return new Error(Te(t,e))}var Ae=new Lt("The presence of this token marks an injector as being the root injector."),Pe=function(){return function(){}}(),Oe=function(){return function(){}}();function Ye(t){var e=Error("No component factory found for "+Wt(t)+". Did you add it to @NgModule.entryComponents?");return e[Re]=t,e}var Re="ngComponent",Ie=function(){function t(){}return t.prototype.resolveComponentFactory=function(t){throw Ye(t)},t}(),Fe=function(){function t(){}return t.NULL=new Ie,t}(),ze=function(){function t(t,e,n){this._parent=e,this._ngModule=n,this._factories=new Map;for(var i=0;i',!this.inertBodyElement.querySelector||this.inertBodyElement.querySelector("svg")?(this.inertBodyElement.innerHTML='

',this.getInertBodyElement=this.inertBodyElement.querySelector&&this.inertBodyElement.querySelector("svg img")&&function(){try{return!!window.DOMParser}catch(t){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return t.prototype.getInertBodyElement_XHR=function(t){t=""+t+"";try{t=encodeURI(t)}catch(i){return null}var e=new XMLHttpRequest;e.responseType="document",e.open("GET","data:text/html;charset=utf-8,"+t,!1),e.send(void 0);var n=e.response.body;return n.removeChild(n.firstChild),n},t.prototype.getInertBodyElement_DOMParser=function(t){t=""+t+"";try{var e=(new window.DOMParser).parseFromString(t,"text/html").body;return e.removeChild(e.firstChild),e}catch(n){return null}},t.prototype.getInertBodyElement_InertDocument=function(t){var e=this.inertDocument.createElement("template");return"content"in e?(e.innerHTML=t,e):(this.inertBodyElement.innerHTML=t,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(this.inertBodyElement),this.inertBodyElement)},t.prototype.stripCustomNsAttrs=function(t){for(var e=t.attributes,n=e.length-1;0"),!0},t.prototype.endElement=function(t){var e=t.nodeName.toLowerCase();pn.hasOwnProperty(e)&&!un.hasOwnProperty(e)&&(this.buf.push(""))},t.prototype.chars=function(t){this.buf.push(xn(t))},t.prototype.checkClobberedElement=function(t,e){if(e&&(t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error("Failed to sanitize html because the element is clobbered: "+t.outerHTML);return e},t}(),vn=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,bn=/([^\#-~ |!])/g;function xn(t){return t.replace(/&/g,"&").replace(vn,function(t){return"&#"+(1024*(t.charCodeAt(0)-55296)+(t.charCodeAt(1)-56320)+65536)+";"}).replace(bn,function(t){return"&#"+t.charCodeAt(0)+";"}).replace(//g,">")}function wn(t){return"content"in t&&function(t){return t.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===t.nodeName}(t)?t.content:null}var kn=function(t){function e(e){void 0===e&&(e=!1);var n=t.call(this)||this;return n.__isAsync=e,n}return r(e,t),e.prototype.emit=function(e){t.prototype.next.call(this,e)},e.prototype.subscribe=function(e,n,i){var r,o=function(t){return null},a=function(){return null};e&&"object"==typeof e?(r=this.__isAsync?function(t){setTimeout(function(){return e.next(t)})}:function(t){e.next(t)},e.error&&(o=this.__isAsync?function(t){setTimeout(function(){return e.error(t)})}:function(t){e.error(t)}),e.complete&&(a=this.__isAsync?function(){setTimeout(function(){return e.complete()})}:function(){e.complete()})):(r=this.__isAsync?function(t){setTimeout(function(){return e(t)})}:function(t){e(t)},n&&(o=this.__isAsync?function(t){setTimeout(function(){return n(t)})}:function(t){n(t)}),i&&(a=this.__isAsync?function(){setTimeout(function(){return i()})}:function(){i()}));var l=t.prototype.subscribe.call(this,r,o,a);return e instanceof x&&e.add(l),l},e}(H),Mn=function(){function t(){}return t.__NG_ELEMENT_ID__=function(){return Sn(t,Ve)},t}(),Sn=he,Cn=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:calc|attr))\\([-0-9.%, #a-zA-Z]+\\))$","g"),Ln=/^url\(([^)]+)\)$/,Dn=function(){return function(){}}(),Tn=Function;function En(t){return"function"==typeof t}var An=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/,Pn=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,On=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,Yn=function(){function t(t){this._reflect=t||zt.Reflect}return t.prototype.isReflectionEnabled=function(){return!0},t.prototype.factory=function(t){return function(){for(var e=[],n=0;n0&&(r=setTimeout(function(){i._callbacks=i._callbacks.filter(function(t){return t.timeoutId!==r}),t(i._didWork,i.getPendingTasks())},e)),this._callbacks.push({doneCb:t,timeoutId:r,updateCb:n})},t.prototype.whenStable=function(t,e,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/dist/task-tracking.js" loaded?');this.addCallback(t,e,n),this._runCallbacksIfReady()},t.prototype.getPendingRequestCount=function(){return this._pendingCount},t.prototype.findProviders=function(t,e,n){return[]},t}(),Oi=function(){function t(){this._applications=new Map,Yi.addToWindow(this)}return t.prototype.registerApplication=function(t,e){this._applications.set(t,e)},t.prototype.unregisterApplication=function(t){this._applications.delete(t)},t.prototype.unregisterAllApplications=function(){this._applications.clear()},t.prototype.getTestability=function(t){return this._applications.get(t)||null},t.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},t.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},t.prototype.findTestabilityInTree=function(t,e){return void 0===e&&(e=!0),Yi.findTestabilityInTree(this,t,e)},a([s("design:paramtypes",[])],t)}(),Yi=new(function(){function t(){}return t.prototype.addToWindow=function(t){},t.prototype.findTestabilityInTree=function(t,e,n){return null},t}()),Ri=new Lt("AllowMultipleToken"),Ii=function(){return function(t,e){this.name=t,this.token=e}}();function Fi(t,e,n){void 0===n&&(n=[]);var i="Platform: "+e,r=new Lt(i);return function(e){void 0===e&&(e=[]);var o=zi();if(!o||o.injector.get(Ri,!1))if(t)t(n.concat(e).concat({provide:r,useValue:!0}));else{var a=n.concat(e).concat({provide:r,useValue:!0});!function(t){if(Ei&&!Ei.destroyed&&!Ei.injector.get(Ri,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");Ei=t.get(ji);var e=t.get(ai,null);e&&e.forEach(function(t){return t()})}(ye.create({providers:a,name:i}))}return function(t){var e=zi();if(!e)throw new Error("No platform exists!");if(!e.injector.get(t,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return e}(r)}}function zi(){return Ei&&!Ei.destroyed?Ei:null}var ji=function(){function t(t){this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return t.prototype.bootstrapModuleFactory=function(t,e){var n,i=this,r="noop"===(n=e?e.ngZone:void 0)?new Ai:("zone.js"===n?void 0:n)||new Mi({enableLongStackTrace:tn()}),o=[{provide:Mi,useValue:r}];return r.run(function(){var e=ye.create({providers:o,parent:i.injector,name:t.moduleType.name}),n=t.create(e),a=n.injector.get(Qn,null);if(!a)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return n.onDestroy(function(){return Vi(i._modules,n)}),r.runOutsideAngular(function(){return r.onError.subscribe({next:function(t){a.handleError(t)}})}),function(t,e,r){try{var o=((a=n.injector.get(ni)).runInitializers(),a.donePromise.then(function(){return i._moduleDoBootstrap(n),n}));return $n(o)?o.catch(function(n){throw e.runOutsideAngular(function(){return t.handleError(n)}),n}):o}catch(l){throw e.runOutsideAngular(function(){return t.handleError(l)}),l}var a}(a,r)})},t.prototype.bootstrapModule=function(t,e){var n=this;void 0===e&&(e=[]);var i=Hi({},e);return function(t,e,n){return t.get(_i).createCompiler([e]).compileModuleAsync(n)}(this.injector,i,t).then(function(t){return n.bootstrapModuleFactory(t,i)})},t.prototype._moduleDoBootstrap=function(t){var e=t.injector.get(Ni);if(t._bootstrapComponents.length>0)t._bootstrapComponents.forEach(function(t){return e.bootstrap(t)});else{if(!t.instance.ngDoBootstrap)throw new Error("The module "+Wt(t.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');t.instance.ngDoBootstrap(e)}this._modules.push(t)},t.prototype.onDestroy=function(t){this._destroyListeners.push(t)},Object.defineProperty(t.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(t){return t.destroy()}),this._destroyListeners.forEach(function(t){return t()}),this._destroyed=!0},Object.defineProperty(t.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),t}();function Hi(t,e){return Array.isArray(e)?e.reduce(Hi,t):o({},t,e)}var Ni=function(){function t(t,e,n,i,r,o){var a=this;this._zone=t,this._console=e,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=r,this._initStatus=o,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=tn(),this._zone.onMicrotaskEmpty.subscribe({next:function(){a._zone.run(function(){a.tick()})}});var l=new Y(function(t){a._stable=a._zone.isStable&&!a._zone.hasPendingMacrotasks&&!a._zone.hasPendingMicrotasks,a._zone.runOutsideAngular(function(){t.next(a._stable),t.complete()})}),s=new Y(function(t){var e;a._zone.runOutsideAngular(function(){e=a._zone.onStable.subscribe(function(){Mi.assertNotInAngularZone(),Vt(function(){a._stable||a._zone.hasPendingMacrotasks||a._zone.hasPendingMicrotasks||(a._stable=!0,t.next(!0))})})});var n=a._zone.onUnstable.subscribe(function(){Mi.assertInAngularZone(),a._stable&&(a._stable=!1,a._zone.runOutsideAngular(function(){t.next(!1)}))});return function(){e.unsubscribe(),n.unsubscribe()}});this.isStable=ht(l,s.pipe(bt()))}var e;return e=t,t.prototype.bootstrap=function(t,e){var n,i=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");n=t instanceof Oe?t:this._componentFactoryResolver.resolveComponentFactory(t),this.componentTypes.push(n.componentType);var r=n instanceof je?null:this._injector.get(He),o=n.create(ye.NULL,[],e||n.selector,r);o.onDestroy(function(){i._unloadComponent(o)});var a=o.injector.get(Pi,null);return a&&o.injector.get(Oi).registerApplication(o.location.nativeElement,a),this._loadComponent(o),tn()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),o},t.prototype.tick=function(){var t=this;if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");var n=e._tickScope();try{this._runningTick=!0,this._views.forEach(function(t){return t.detectChanges()}),this._enforceNoNewChanges&&this._views.forEach(function(t){return t.checkNoChanges()})}catch(i){this._zone.runOutsideAngular(function(){return t._exceptionHandler.handleError(i)})}finally{this._runningTick=!1,ki(n)}},t.prototype.attachView=function(t){var e=t;this._views.push(e),e.attachToAppRef(this)},t.prototype.detachView=function(t){var e=t;Vi(this._views,e),e.detachFromAppRef()},t.prototype._loadComponent=function(t){this.attachView(t.hostView),this.tick(),this.components.push(t),this._injector.get(si,[]).concat(this._bootstrapListeners).forEach(function(e){return e(t)})},t.prototype._unloadComponent=function(t){this.detachView(t.hostView),Vi(this.components,t)},t.prototype.ngOnDestroy=function(){this._views.slice().forEach(function(t){return t.destroy()})},Object.defineProperty(t.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),t._tickScope=wi("ApplicationRef#tick()"),t}();function Vi(t,e){var n=t.indexOf(e);n>-1&&t.splice(n,1)}var Bi=function(){function t(){this.dirty=!0,this._results=[],this.changes=new kn,this.length=0}return t.prototype.map=function(t){return this._results.map(t)},t.prototype.filter=function(t){return this._results.filter(t)},t.prototype.find=function(t){return this._results.find(t)},t.prototype.reduce=function(t,e){return this._results.reduce(t,e)},t.prototype.forEach=function(t){this._results.forEach(t)},t.prototype.some=function(t){return this._results.some(t)},t.prototype.toArray=function(){return this._results.slice()},t.prototype[Nt()]=function(){return this._results[Nt()]()},t.prototype.toString=function(){return this._results.toString()},t.prototype.reset=function(t){this._results=function t(e){return e.reduce(function(e,n){var i=Array.isArray(n)?t(n):n;return e.concat(i)},[])}(t),this.dirty=!1,this.length=this._results.length,this.last=this._results[this.length-1],this.first=this._results[0]},t.prototype.notifyOnChanges=function(){this.changes.emit(this)},t.prototype.setDirty=function(){this.dirty=!0},t.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},t}(),Wi=function(){return function(){}}(),Ui={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},Gi=function(){function t(t,e){this._compiler=t,this._config=e||Ui}return t.prototype.load=function(t){return this._compiler instanceof yi?this.loadFactory(t):this.loadAndCompile(t)},t.prototype.loadAndCompile=function(t){var e=this,i=c(t.split("#"),2),r=i[0],o=i[1];return void 0===o&&(o="default"),n("crnd")(r).then(function(t){return t[o]}).then(function(t){return qi(t,r,o)}).then(function(t){return e._compiler.compileModuleAsync(t)})},t.prototype.loadFactory=function(t){var e=c(t.split("#"),2),i=e[0],r=e[1],o="NgFactory";return void 0===r&&(r="default",o=""),n("crnd")(this._config.factoryPathPrefix+i+this._config.factoryPathSuffix).then(function(t){return t[r+o]}).then(function(t){return qi(t,i,r)})},t}();function qi(t,e,n){if(!t)throw new Error("Cannot find '"+n+"' in '"+e+"'");return t}var Xi=function(){function t(){}return t.__NG_ELEMENT_ID__=function(){return Ki(t,Ve)},t}(),Ki=he,Zi=function(){function t(){}return t.__NG_ELEMENT_ID__=function(){return Ji()},t}(),Ji=function(){for(var t=[],e=0;e-1}(i)||"root"===r.providedIn&&i._def.isRoot))){var c=t._providers.length;return t._def.providersByKey[e.tokenKey]={flags:5120,value:l.factory,deps:[],index:c,token:e.token},t._providers[c]=wo,t._providers[c]=Do(t,t._def.providersByKey[e.tokenKey])}return 4&e.flags?n:t._parent.get(e.token,n)}finally{ne(o)}}function Do(t,e){var n;switch(201347067&e.flags){case 512:n=function(t,e,n){var i=n.length;switch(i){case 0:return new e;case 1:return new e(Lo(t,n[0]));case 2:return new e(Lo(t,n[0]),Lo(t,n[1]));case 3:return new e(Lo(t,n[0]),Lo(t,n[1]),Lo(t,n[2]));default:for(var r=new Array(i),o=0;o=n.length)&&(e=n.length-1),e<0)return null;var i=n[e];return i.viewContainerParent=null,Oo(n,e),Pr.dirtyParentQueries(i),Ao(i),i}function Eo(t,e,n){var i=e?Qr(e,e.def.lastRenderRootNode):t.renderElement,r=n.renderer.parentNode(i),o=n.renderer.nextSibling(i);lo(n,2,r,o,void 0)}function Ao(t){lo(t,3,null,null,void 0)}function Po(t,e,n){e>=t.length?t.push(n):t.splice(e,0,n)}function Oo(t,e){e>=t.length-1?t.pop():t.splice(e,1)}var Yo=new Object;function Ro(t,e,n,i,r,o){return new Io(t,e,n,i,r,o)}var Io=function(t){function e(e,n,i,r,o,a){var l=t.call(this)||this;return l.selector=e,l.componentType=n,l._inputs=r,l._outputs=o,l.ngContentSelectors=a,l.viewDefFactory=i,l}return r(e,t),Object.defineProperty(e.prototype,"inputs",{get:function(){var t=[],e=this._inputs;for(var n in e)t.push({propName:n,templateName:e[n]});return t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"outputs",{get:function(){var t=[];for(var e in this._outputs)t.push({propName:e,templateName:this._outputs[e]});return t},enumerable:!0,configurable:!0}),e.prototype.create=function(t,e,n,i){if(!i)throw new Error("ngModule should be provided");var r=ao(this.viewDefFactory),o=r.nodes[0].element.componentProvider.nodeIndex,a=Pr.createRootView(t,e||[],n,r,i,Yo),l=Tr(a,o).instance;return n&&a.renderer.setAttribute(Dr(a,0).renderElement,"ng-version",Je.full),new Fo(a,new No(a),l)},e}(Oe),Fo=function(t){function e(e,n,i){var r=t.call(this)||this;return r._view=e,r._viewRef=n,r._component=i,r._elDef=r._view.def.nodes[0],r.hostView=n,r.changeDetectorRef=n,r.instance=i,r}return r(e,t),Object.defineProperty(e.prototype,"location",{get:function(){return new Ve(Dr(this._view,this._elDef.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new Uo(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){this._viewRef.destroy()},e.prototype.onDestroy=function(t){this._viewRef.onDestroy(t)},e}(Pe);function zo(t,e,n){return new jo(t,e,n)}var jo=function(){function t(t,e,n){this._view=t,this._elDef=e,this._data=n,this._embeddedViews=[]}return Object.defineProperty(t.prototype,"element",{get:function(){return new Ve(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new Uo(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parentInjector",{get:function(){for(var t=this._view,e=this._elDef.parent;!e&&t;)e=Jr(t),t=t.parent;return t?new Uo(t,e):new Uo(this._view,null)},enumerable:!0,configurable:!0}),t.prototype.clear=function(){for(var t=this._embeddedViews.length-1;t>=0;t--){var e=To(this._data,t);Pr.destroyView(e)}},t.prototype.get=function(t){var e=this._embeddedViews[t];if(e){var n=new No(e);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(t.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),t.prototype.createEmbeddedView=function(t,e,n){var i=t.createEmbeddedView(e||{});return this.insert(i,n),i},t.prototype.createComponent=function(t,e,n,i,r){var o=n||this.parentInjector;r||t instanceof je||(r=o.get(He));var a=t.create(o,i,void 0,r);return this.insert(a.hostView,e),a},t.prototype.insert=function(t,e){if(t.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n,i,r,o,a=t;return o=(n=this._data).viewContainer._embeddedViews,null==(i=e)&&(i=o.length),(r=a._view).viewContainerParent=this._view,Po(o,i,r),function(t,e){var n=Zr(e);if(n&&n!==t&&!(16&e.state)){e.state|=16;var i=n.template._projectedViews;i||(i=n.template._projectedViews=[]),i.push(e),function(t,n){if(!(4&n.flags)){e.parent.def.nodeFlags|=4,n.flags|=4;for(var i=n.parent;i;)i.childFlags|=4,i=i.parent}}(0,e.parentNodeDef)}}(n,r),Pr.dirtyParentQueries(r),Eo(n,i>0?o[i-1]:null,r),a.attachToViewContainerRef(this),t},t.prototype.move=function(t,e){if(t.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n,i,r,o,a,l=this._embeddedViews.indexOf(t._view);return r=e,a=(o=(n=this._data).viewContainer._embeddedViews)[i=l],Oo(o,i),null==r&&(r=o.length),Po(o,r,a),Pr.dirtyParentQueries(a),Ao(a),Eo(n,r>0?o[r-1]:null,a),t},t.prototype.indexOf=function(t){return this._embeddedViews.indexOf(t._view)},t.prototype.remove=function(t){var e=To(this._data,t);e&&Pr.destroyView(e)},t.prototype.detach=function(t){var e=To(this._data,t);return e?new No(e):null},t}();function Ho(t){return new No(t)}var No=function(){function t(t){this._view=t,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(t.prototype,"rootNodes",{get:function(){return lo(this._view,0,void 0,void 0,t=[]),t;var t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"destroyed",{get:function(){return 0!=(128&this._view.state)},enumerable:!0,configurable:!0}),t.prototype.markForCheck=function(){qr(this._view)},t.prototype.detach=function(){this._view.state&=-5},t.prototype.detectChanges=function(){var t=this._view.root.rendererFactory;t.begin&&t.begin();try{Pr.checkAndUpdateView(this._view)}finally{t.end&&t.end()}},t.prototype.checkNoChanges=function(){Pr.checkNoChangesView(this._view)},t.prototype.reattach=function(){this._view.state|=4},t.prototype.onDestroy=function(t){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(t)},t.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),Pr.destroyView(this._view)},t.prototype.detachFromAppRef=function(){this._appRef=null,Ao(this._view),Pr.dirtyParentQueries(this._view)},t.prototype.attachToAppRef=function(t){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=t},t.prototype.attachToViewContainerRef=function(t){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=t},t}();function Vo(t,e){return new Bo(t,e)}var Bo=function(t){function e(e,n){var i=t.call(this)||this;return i._parentView=e,i._def=n,i}return r(e,t),e.prototype.createEmbeddedView=function(t){return new No(Pr.createEmbeddedView(this._parentView,this._def,this._def.element.template,t))},Object.defineProperty(e.prototype,"elementRef",{get:function(){return new Ve(Dr(this._parentView,this._def.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),e}(Mn);function Wo(t,e){return new Uo(t,e)}var Uo=function(){function t(t,e){this.view=t,this.elDef=e}return t.prototype.get=function(t,e){return void 0===e&&(e=ye.THROW_IF_NOT_FOUND),Pr.resolveDep(this.view,this.elDef,!!this.elDef&&0!=(33554432&this.elDef.flags),{flags:0,token:t,tokenKey:zr(t)},e)},t}();function Go(t,e){var n=t.def.nodes[e];if(1&n.flags){var i=Dr(t,n.nodeIndex);return n.element.template?i.template:i.renderElement}if(2&n.flags)return Lr(t,n.nodeIndex).renderText;if(20240&n.flags)return Tr(t,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+e)}function qo(t){return new Xo(t.renderer)}var Xo=function(){function t(t){this.delegate=t}return t.prototype.selectRootElement=function(t){return this.delegate.selectRootElement(t)},t.prototype.createElement=function(t,e){var n=c(fo(e),2),i=this.delegate.createElement(n[1],n[0]);return t&&this.delegate.appendChild(t,i),i},t.prototype.createViewRoot=function(t){return t},t.prototype.createTemplateAnchor=function(t){var e=this.delegate.createComment("");return t&&this.delegate.appendChild(t,e),e},t.prototype.createText=function(t,e){var n=this.delegate.createText(e);return t&&this.delegate.appendChild(t,n),n},t.prototype.projectNodes=function(t,e){for(var n=0;n0,e.provider.value,e.provider.deps);if(e.outputs.length)for(var i=0;i0,i=e.provider;switch(201347067&e.flags){case 512:return fa(t,e.parent,n,i.value,i.deps);case 1024:return function(t,e,n,i,r){var o=r.length;switch(o){case 0:return i();case 1:return i(ga(t,e,n,r[0]));case 2:return i(ga(t,e,n,r[0]),ga(t,e,n,r[1]));case 3:return i(ga(t,e,n,r[0]),ga(t,e,n,r[1]),ga(t,e,n,r[2]));default:for(var a=Array(o),l=0;l0)u=m,Fa(m)||(c=m);else for(;u&&f===u.nodeIndex+u.childCount;){var _=u.parent;_&&(_.childFlags|=u.childFlags,_.childMatchedQueries|=u.childMatchedQueries),c=(u=_)&&Fa(u)?u.renderParent:u}}return{factory:null,nodeFlags:a,rootNodeFlags:l,nodeMatchedQueries:s,flags:t,nodes:e,updateDirectives:n||Ir,updateRenderer:i||Ir,handleEvent:function(t,n,i,r){return e[n].element.handleEvent(t,i,r)},bindingCount:r,outputCount:o,lastRenderRootNode:p}}function Fa(t){return 0!=(1&t.flags)&&null===t.element.name}function za(t,e,n){var i=e.element&&e.element.template;if(i){if(!i.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(i.lastRenderRootNode&&16777216&i.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+e.nodeIndex+"!")}if(20224&e.flags&&0==(1&(t?t.flags:0)))throw new Error("Illegal State: StaticProvider/Directive nodes need to be children of elements or anchors, at index "+e.nodeIndex+"!");if(e.query){if(67108864&e.flags&&(!t||0==(16384&t.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+e.nodeIndex+"!");if(134217728&e.flags&&t)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+e.nodeIndex+"!")}if(e.childCount){var r=t?t.nodeIndex+t.childCount:n-1;if(e.nodeIndex<=r&&e.nodeIndex+e.childCount>r)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+e.nodeIndex+"!")}}function ja(t,e,n,i){var r=Va(t.root,t.renderer,t,e,n);return Ba(r,t.component,i),Wa(r),r}function Ha(t,e,n){var i=Va(t,t.renderer,null,null,e);return Ba(i,n,n),Wa(i),i}function Na(t,e,n,i){var r,o=e.element.componentRendererType;return r=o?t.root.rendererFactory.createRenderer(i,o):t.root.renderer,Va(t.root,r,t,e.element.componentProvider,n)}function Va(t,e,n,i,r){var o=new Array(r.nodes.length),a=r.outputCount?new Array(r.outputCount):null;return{def:r,parent:n,viewContainerParent:null,parentNodeDef:i,context:null,component:null,nodes:o,state:13,root:t,renderer:e,oldValues:new Array(r.bindingCount),disposables:a,initIndex:-1}}function Ba(t,e,n){t.component=e,t.context=n}function Wa(t){var e;$r(t)&&(e=Dr(t.parent,t.parentNodeDef.parent.nodeIndex).renderElement);for(var n=t.def,i=t.nodes,r=0;r0&&xo(t,e,0,n)&&(p=!0),h>1&&xo(t,e,1,i)&&(p=!0),h>2&&xo(t,e,2,r)&&(p=!0),h>3&&xo(t,e,3,o)&&(p=!0),h>4&&xo(t,e,4,a)&&(p=!0),h>5&&xo(t,e,5,l)&&(p=!0),h>6&&xo(t,e,6,s)&&(p=!0),h>7&&xo(t,e,7,u)&&(p=!0),h>8&&xo(t,e,8,c)&&(p=!0),h>9&&xo(t,e,9,d)&&(p=!0),p}(t,e,n,i,r,o,a,l,s,u,c,d);case 2:return function(t,e,n,i,r,o,a,l,s,u,c,d){var h=!1,p=e.bindings,f=p.length;if(f>0&&Ur(t,e,0,n)&&(h=!0),f>1&&Ur(t,e,1,i)&&(h=!0),f>2&&Ur(t,e,2,r)&&(h=!0),f>3&&Ur(t,e,3,o)&&(h=!0),f>4&&Ur(t,e,4,a)&&(h=!0),f>5&&Ur(t,e,5,l)&&(h=!0),f>6&&Ur(t,e,6,s)&&(h=!0),f>7&&Ur(t,e,7,u)&&(h=!0),f>8&&Ur(t,e,8,c)&&(h=!0),f>9&&Ur(t,e,9,d)&&(h=!0),h){var m=e.text.prefix;f>0&&(m+=Ra(n,p[0])),f>1&&(m+=Ra(i,p[1])),f>2&&(m+=Ra(r,p[2])),f>3&&(m+=Ra(o,p[3])),f>4&&(m+=Ra(a,p[4])),f>5&&(m+=Ra(l,p[5])),f>6&&(m+=Ra(s,p[6])),f>7&&(m+=Ra(u,p[7])),f>8&&(m+=Ra(c,p[8])),f>9&&(m+=Ra(d,p[9]));var g=Lr(t,e.nodeIndex).renderText;t.renderer.setValue(g,m)}return h}(t,e,n,i,r,o,a,l,s,u,c,d);case 16384:return function(t,e,n,i,r,o,a,l,s,u,c,d){var h=Tr(t,e.nodeIndex),p=h.instance,f=!1,m=void 0,g=e.bindings.length;return g>0&&Wr(t,e,0,n)&&(f=!0,m=_a(t,h,e,0,n,m)),g>1&&Wr(t,e,1,i)&&(f=!0,m=_a(t,h,e,1,i,m)),g>2&&Wr(t,e,2,r)&&(f=!0,m=_a(t,h,e,2,r,m)),g>3&&Wr(t,e,3,o)&&(f=!0,m=_a(t,h,e,3,o,m)),g>4&&Wr(t,e,4,a)&&(f=!0,m=_a(t,h,e,4,a,m)),g>5&&Wr(t,e,5,l)&&(f=!0,m=_a(t,h,e,5,l,m)),g>6&&Wr(t,e,6,s)&&(f=!0,m=_a(t,h,e,6,s,m)),g>7&&Wr(t,e,7,u)&&(f=!0,m=_a(t,h,e,7,u,m)),g>8&&Wr(t,e,8,c)&&(f=!0,m=_a(t,h,e,8,c,m)),g>9&&Wr(t,e,9,d)&&(f=!0,m=_a(t,h,e,9,d,m)),m&&p.ngOnChanges(m),65536&e.flags&&Cr(t,256,e.nodeIndex)&&p.ngOnInit(),262144&e.flags&&p.ngDoCheck(),f}(t,e,n,i,r,o,a,l,s,u,c,d);case 32:case 64:case 128:return function(t,e,n,i,r,o,a,l,s,u,c,d){var h=e.bindings,p=!1,f=h.length;if(f>0&&Ur(t,e,0,n)&&(p=!0),f>1&&Ur(t,e,1,i)&&(p=!0),f>2&&Ur(t,e,2,r)&&(p=!0),f>3&&Ur(t,e,3,o)&&(p=!0),f>4&&Ur(t,e,4,a)&&(p=!0),f>5&&Ur(t,e,5,l)&&(p=!0),f>6&&Ur(t,e,6,s)&&(p=!0),f>7&&Ur(t,e,7,u)&&(p=!0),f>8&&Ur(t,e,8,c)&&(p=!0),f>9&&Ur(t,e,9,d)&&(p=!0),p){var m=Er(t,e.nodeIndex),g=void 0;switch(201347067&e.flags){case 32:g=new Array(h.length),f>0&&(g[0]=n),f>1&&(g[1]=i),f>2&&(g[2]=r),f>3&&(g[3]=o),f>4&&(g[4]=a),f>5&&(g[5]=l),f>6&&(g[6]=s),f>7&&(g[7]=u),f>8&&(g[8]=c),f>9&&(g[9]=d);break;case 64:g={},f>0&&(g[h[0].name]=n),f>1&&(g[h[1].name]=i),f>2&&(g[h[2].name]=r),f>3&&(g[h[3].name]=o),f>4&&(g[h[4].name]=a),f>5&&(g[h[5].name]=l),f>6&&(g[h[6].name]=s),f>7&&(g[h[7].name]=u),f>8&&(g[h[8].name]=c),f>9&&(g[h[9].name]=d);break;case 128:var y=n;switch(f){case 1:g=y.transform(n);break;case 2:g=y.transform(i);break;case 3:g=y.transform(i,r);break;case 4:g=y.transform(i,r,o);break;case 5:g=y.transform(i,r,o,a);break;case 6:g=y.transform(i,r,o,a,l);break;case 7:g=y.transform(i,r,o,a,l,s);break;case 8:g=y.transform(i,r,o,a,l,s,u);break;case 9:g=y.transform(i,r,o,a,l,s,u,c);break;case 10:g=y.transform(i,r,o,a,l,s,u,c,d)}}m.value=g}return p}(t,e,n,i,r,o,a,l,s,u,c,d);default:throw"unreachable"}}(t,e,i,r,o,a,l,s,u,c,h,p):function(t,e,n){switch(201347067&e.flags){case 1:return function(t,e,n){for(var i=!1,r=0;r0&&Gr(t,e,0,n),h>1&&Gr(t,e,1,i),h>2&&Gr(t,e,2,r),h>3&&Gr(t,e,3,o),h>4&&Gr(t,e,4,a),h>5&&Gr(t,e,5,l),h>6&&Gr(t,e,6,s),h>7&&Gr(t,e,7,u),h>8&&Gr(t,e,8,c),h>9&&Gr(t,e,9,d)}(t,e,i,r,o,a,l,s,u,c,d,h):function(t,e,n){for(var i=0;i0){var o=new Set(t.modules);hl.forEach(function(e,i){if(o.has(Ct(i).providedIn)){var r={token:i,flags:e.flags|(n?4096:0),deps:io(e.deps),value:e.value,index:t.providers.length};t.providers.push(r),t.providersByKey[zr(i)]=r}})}}(t=t.factory(function(){return Ir})),t):t}(i))}var dl=new Map,hl=new Map,pl=new Map;function fl(t){var e;dl.set(t.token,t),"function"==typeof t.token&&(e=Ct(t.token))&&"function"==typeof e.providedIn&&hl.set(t.token,t)}function ml(t,e){var n=ao(e.viewDefFactory),i=ao(n.nodes[0].element.componentView);pl.set(t,i)}function gl(){dl.clear(),hl.clear(),pl.clear()}function yl(t){if(0===dl.size)return t;var e=function(t){for(var e=[],n=null,i=0;i0?e.substring(1):e},e.prototype.prepareExternalUrl=function(t){var e=Xl.joinWithSlash(this._baseHref,t);return e.length>0?"#"+e:e},e.prototype.pushState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));0==r.length&&(r=this._platformLocation.pathname),this._platformLocation.pushState(t,e,r)},e.prototype.replaceState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));0==r.length&&(r=this._platformLocation.pathname),this._platformLocation.replaceState(t,e,r)},e.prototype.forward=function(){this._platformLocation.forward()},e.prototype.back=function(){this._platformLocation.back()},e}(Gl),Jl=function(t){function e(e,n){var i=t.call(this)||this;if(i._platformLocation=e,null==n&&(n=i._platformLocation.getBaseHrefFromDOM()),null==n)throw new Error("No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.");return i._baseHref=n,i}return r(e,t),e.prototype.onPopState=function(t){this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t)},e.prototype.getBaseHref=function(){return this._baseHref},e.prototype.prepareExternalUrl=function(t){return Xl.joinWithSlash(this._baseHref,t)},e.prototype.path=function(t){void 0===t&&(t=!1);var e=this._platformLocation.pathname+Xl.normalizeQueryParams(this._platformLocation.search),n=this._platformLocation.hash;return n&&t?""+e+n:e},e.prototype.pushState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));this._platformLocation.pushState(t,e,r)},e.prototype.replaceState=function(t,e,n,i){var r=this.prepareExternalUrl(n+Xl.normalizeQueryParams(i));this._platformLocation.replaceState(t,e,r)},e.prototype.forward=function(){this._platformLocation.forward()},e.prototype.back=function(){this._platformLocation.back()},e}(Gl),Ql=void 0,$l=["en",[["a","p"],["AM","PM"],Ql],[["AM","PM"],Ql,Ql],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Ql,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Ql,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",Ql,"{1} 'at' {0}",Ql],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"$","US Dollar",{},function(t){var e=Math.floor(Math.abs(t)),n=t.toString().replace(/^[^.]*\.?/,"").length;return 1===e&&0===n?1:5}],ts={},es=function(t){return t[t.Decimal=0]="Decimal",t[t.Percent=1]="Percent",t[t.Currency=2]="Currency",t[t.Scientific=3]="Scientific",t}({}),ns=function(t){return t[t.Zero=0]="Zero",t[t.One=1]="One",t[t.Two=2]="Two",t[t.Few=3]="Few",t[t.Many=4]="Many",t[t.Other=5]="Other",t}({}),is=function(t){return t[t.Decimal=0]="Decimal",t[t.Group=1]="Group",t[t.List=2]="List",t[t.PercentSign=3]="PercentSign",t[t.PlusSign=4]="PlusSign",t[t.MinusSign=5]="MinusSign",t[t.Exponential=6]="Exponential",t[t.SuperscriptingExponent=7]="SuperscriptingExponent",t[t.PerMille=8]="PerMille",t[t[1/0]=9]="Infinity",t[t.NaN=10]="NaN",t[t.TimeSeparator=11]="TimeSeparator",t[t.CurrencyDecimal=12]="CurrencyDecimal",t[t.CurrencyGroup=13]="CurrencyGroup",t}({});function rs(t,e){var n=os(t),i=n[13][e];if(void 0===i){if(e===is.CurrencyDecimal)return n[13][is.Decimal];if(e===is.CurrencyGroup)return n[13][is.Group]}return i}function os(t){var e=t.toLowerCase().replace(/_/g,"-"),n=ts[e];if(n)return n;var i=e.split("-")[0];if(n=ts[i])return n;if("en"===i)return $l;throw new Error('Missing locale data for the locale "'+t+'".')}var as=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function ls(t){var e=parseInt(t);if(isNaN(e))throw new Error("Invalid integer literal when parsing "+t);return e}var ss=new Lt("UseV4Plurals"),us=function(){return function(){}}(),cs=function(t){function e(e,n){var i=t.call(this)||this;return i.locale=e,i.deprecatedPluralFn=n,i}return r(e,t),e.prototype.getPluralCategory=function(t,e){switch(this.deprecatedPluralFn?this.deprecatedPluralFn(e||this.locale,t):function(t){return os(t)[18]}(e||this.locale)(t)){case ns.Zero:return"zero";case ns.One:return"one";case ns.Two:return"two";case ns.Few:return"few";case ns.Many:return"many";default:return"other"}},e}(us);function ds(t,e){var n,i;e=encodeURIComponent(e);try{for(var r=u(t.split(";")),o=r.next();!o.done;o=r.next()){var a=o.value,l=a.indexOf("="),s=c(-1==l?[a,""]:[a.slice(0,l),a.slice(l+1)],2),d=s[1];if(s[0].trim()===e)return decodeURIComponent(d)}}catch(h){n={error:h}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}return null}var hs=function(){function t(t,e,n,i){this._iterableDiffers=t,this._keyValueDiffers=e,this._ngEl=n,this._renderer=i,this._initialClasses=[]}return Object.defineProperty(t.prototype,"klass",{set:function(t){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof t?t.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClass",{set:function(t){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof t?t.split(/\s+/):t,this._rawClass&&(ce(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())},enumerable:!0,configurable:!0}),t.prototype.ngDoCheck=function(){if(this._iterableDiffer){var t=this._iterableDiffer.diff(this._rawClass);t&&this._applyIterableChanges(t)}else if(this._keyValueDiffer){var e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}},t.prototype._applyKeyValueChanges=function(t){var e=this;t.forEachAddedItem(function(t){return e._toggleClass(t.key,t.currentValue)}),t.forEachChangedItem(function(t){return e._toggleClass(t.key,t.currentValue)}),t.forEachRemovedItem(function(t){t.previousValue&&e._toggleClass(t.key,!1)})},t.prototype._applyIterableChanges=function(t){var e=this;t.forEachAddedItem(function(t){if("string"!=typeof t.item)throw new Error("NgClass can only toggle CSS classes expressed as strings, got "+Wt(t.item));e._toggleClass(t.item,!0)}),t.forEachRemovedItem(function(t){return e._toggleClass(t.item,!1)})},t.prototype._applyClasses=function(t){var e=this;t&&(Array.isArray(t)||t instanceof Set?t.forEach(function(t){return e._toggleClass(t,!0)}):Object.keys(t).forEach(function(n){return e._toggleClass(n,!!t[n])}))},t.prototype._removeClasses=function(t){var e=this;t&&(Array.isArray(t)||t instanceof Set?t.forEach(function(t){return e._toggleClass(t,!1)}):Object.keys(t).forEach(function(t){return e._toggleClass(t,!1)}))},t.prototype._toggleClass=function(t,e){var n=this;(t=t.trim())&&t.split(/\s+/g).forEach(function(t){e?n._renderer.addClass(n._ngEl.nativeElement,t):n._renderer.removeClass(n._ngEl.nativeElement,t)})},t}(),ps=function(){function t(t,e,n,i){this.$implicit=t,this.ngForOf=e,this.index=n,this.count=i}return Object.defineProperty(t.prototype,"first",{get:function(){return 0===this.index},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"last",{get:function(){return this.index===this.count-1},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"even",{get:function(){return this.index%2==0},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"odd",{get:function(){return!this.even},enumerable:!0,configurable:!0}),t}(),fs=function(){function t(t,e,n){this._viewContainer=t,this._template=e,this._differs=n,this._ngForOfDirty=!0,this._differ=null}return Object.defineProperty(t.prototype,"ngForOf",{set:function(t){this._ngForOf=t,this._ngForOfDirty=!0},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngForTrackBy",{get:function(){return this._trackByFn},set:function(t){tn()&&null!=t&&"function"!=typeof t&&console&&console.warn&&console.warn("trackBy must be a function, but received "+JSON.stringify(t)+". See https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html#!#change-propagation for more information."),this._trackByFn=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngForTemplate",{set:function(t){t&&(this._template=t)},enumerable:!0,configurable:!0}),t.prototype.ngDoCheck=function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var t=this._ngForOf;if(!this._differ&&t)try{this._differ=this._differs.find(t).create(this.ngForTrackBy)}catch(i){throw new Error("Cannot find a differ supporting object '"+t+"' of type '"+((e=t).name||typeof e)+"'. NgFor only supports binding to Iterables such as Arrays.")}}var e;if(this._differ){var n=this._differ.diff(this._ngForOf);n&&this._applyChanges(n)}},t.prototype._applyChanges=function(t){var e=this,n=[];t.forEachOperation(function(t,i,r){if(null==t.previousIndex){var o=e._viewContainer.createEmbeddedView(e._template,new ps(null,e._ngForOf,-1,-1),r),a=new ms(t,o);n.push(a)}else null==r?e._viewContainer.remove(i):(o=e._viewContainer.get(i),e._viewContainer.move(o,r),a=new ms(t,o),n.push(a))});for(var i=0;i-1&&(l=l.replace(".","")),(r=l.search(/e/i))>0?(i<0&&(i=r),i+=+l.slice(r+1),l=l.substring(0,r)):i<0&&(i=l.length),r=0;"0"===l.charAt(r);r++);if(r===(a=l.length))n=[0],i=1;else{for(a--;"0"===l.charAt(a);)a--;for(i-=r,n=[],o=0;r<=a;r++,o++)n[o]=Number(l.charAt(r))}return i>22&&(n=n.splice(0,21),s=i-1,i=1),{digits:n,exponent:s,integerLen:i}}();a&&(u=function(t){if(0===t.digits[0])return t;var e=t.digits.length-t.integerLen;return t.exponent?t.exponent+=2:(0===e?t.digits.push(0,0):1===e&&t.digits.push(0),t.integerLen+=2),t}(u));var c=e.minInt,d=e.minFrac,h=e.maxFrac;if(o){var p=o.match(as);if(null===p)throw new Error(o+" is not a valid digit info");var f=p[1],m=p[3],g=p[5];null!=f&&(c=ls(f)),null!=m&&(d=ls(m)),null!=g?h=ls(g):null!=m&&d>h&&(h=d)}!function(t,e,n){if(e>n)throw new Error("The minimum number of digits after fraction ("+e+") is higher than the maximum ("+n+").");var i=t.digits,r=i.length-t.integerLen,o=Math.min(Math.max(e,r),n),a=o+t.integerLen,l=i[a];if(a>0){i.splice(Math.max(t.integerLen,a));for(var s=a;s=5)if(a-1<0){for(var c=0;c>a;c--)i.unshift(0),t.integerLen++;i.unshift(1),t.integerLen++}else i[a-1]++;for(;r=h?i.pop():d=!1),e>=10?1:0},0);p&&(i.unshift(p),t.integerLen++)}(u,d,h);var y=u.digits,_=u.integerLen,v=u.exponent,b=[];for(s=y.every(function(t){return!t});_0?b=y.splice(_,y.length):(b=y,y=[0]);var x=[];for(y.length>=e.lgSize&&x.unshift(y.splice(-e.lgSize,y.length).join(""));y.length>e.gSize;)x.unshift(y.splice(-e.gSize,y.length).join(""));y.length&&x.unshift(y.join("")),l=x.join(rs(n,i)),b.length&&(l+=rs(n,r)+b.join("")),v&&(l+=rs(n,is.Exponential)+"+"+v)}else l=rs(n,is.Infinity);return t<0&&!s?e.negPre+l+e.negSuf:e.posPre+l+e.posSuf}(t,function(t,e){void 0===e&&(e="-");var n={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},i=t.split(";"),r=i[0],o=i[1],a=-1!==r.indexOf(".")?r.split("."):[r.substring(0,r.lastIndexOf("0")+1),r.substring(r.lastIndexOf("0")+1)],l=a[0],s=a[1]||"";n.posPre=l.substr(0,l.indexOf("#"));for(var u=0;u0},e.prototype.tagName=function(t){return t.tagName},e.prototype.attributeMap=function(t){for(var e=new Map,n=t.attributes,i=0;i0;a||(a=t[o]=[]);var s=Su(e)?Zone.root:Zone.current;if(0===a.length)a.push({zone:s,handler:r});else{for(var u=!1,c=0;c-1},e}(ru),Ou=["alt","control","meta","shift"],Yu={alt:function(t){return t.altKey},control:function(t){return t.ctrlKey},meta:function(t){return t.metaKey},shift:function(t){return t.shiftKey}},Ru=function(t){function e(e){return t.call(this,e)||this}var n;return r(e,t),n=e,e.prototype.supports=function(t){return null!=n.parseEventName(t)},e.prototype.addEventListener=function(t,e,i){var r=n.parseEventName(e),o=n.eventCallback(r.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(function(){return js().onAndCancel(t,r.domEventName,o)})},e.parseEventName=function(t){var e=t.toLowerCase().split("."),i=e.shift();if(0===e.length||"keydown"!==i&&"keyup"!==i)return null;var r=n._normalizeKey(e.pop()),o="";if(Ou.forEach(function(t){var n=e.indexOf(t);n>-1&&(e.splice(n,1),o+=t+".")}),o+=r,0!=e.length||0===r.length)return null;var a={};return a.domEventName=i,a.fullKey=o,a},e.getEventFullKey=function(t){var e="",n=js().getEventKey(t);return" "===(n=n.toLowerCase())?n="space":"."===n&&(n="dot"),Ou.forEach(function(i){i!=n&&(0,Yu[i])(t)&&(e+=i+".")}),e+=n},e.eventCallback=function(t,e,i){return function(r){n.getEventFullKey(r)===t&&i.runGuarded(function(){return e(r)})}},e._normalizeKey=function(t){switch(t){case"esc":return"escape";default:return t}},e}(ru),Iu=function(){return function(){}}(),Fu=function(t){function e(e){var n=t.call(this)||this;return n._doc=e,n}return r(e,t),e.prototype.sanitize=function(t,e){if(null==e)return null;switch(t){case Ke.NONE:return e;case Ke.HTML:return e instanceof ju?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"HTML"),function(t,e){var n=null;try{sn=sn||new en(t);var i=e?String(e):"";n=sn.getInertBodyElement(i);var r=5,o=i;do{if(0===r)throw new Error("Failed to sanitize html because the input is unstable");r--,i=o,o=n.innerHTML,n=sn.getInertBodyElement(i)}while(i!==o);var a=new _n,l=a.sanitizeChildren(wn(n)||n);return tn()&&a.sanitizedSomething&&console.warn("WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss"),l}finally{if(n)for(var s=wn(n)||n;s.firstChild;)s.removeChild(s.firstChild)}}(this._doc,String(e)));case Ke.STYLE:return e instanceof Hu?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"Style"),function(t){if(!(t=String(t).trim()))return"";var e=t.match(Ln);return e&&on(e[1])===e[1]||t.match(Cn)&&function(t){for(var e=!0,n=!0,i=0;i0?ot(t,n):uc(n):lc(t[0]),e)}}var pc=27;function fc(t){for(var e=[],n=1;n-1&&n!==e._activeItemIndex&&(e._activeItemIndex=n)}})}return t.prototype.skipPredicate=function(t){return this._skipPredicateFn=t,this},t.prototype.withWrap=function(t){return void 0===t&&(t=!0),this._wrap=t,this},t.prototype.withVerticalOrientation=function(t){return void 0===t&&(t=!0),this._vertical=t,this},t.prototype.withHorizontalOrientation=function(t){return this._horizontal=t,this},t.prototype.withAllowedModifierKeys=function(t){return this._allowedModifierKeys=t,this},t.prototype.withTypeAhead=function(t){var e=this;if(void 0===t&&(t=200),this._items.length&&this._items.some(function(t){return"function"!=typeof t.getLabel}))throw Error("ListKeyManager items in typeahead mode must implement the `getLabel` method.");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(mc(function(t){return e._pressedLetters.push(t)}),wc(t),Cc(function(){return e._pressedLetters.length>0}),nt(function(){return e._pressedLetters.join("")})).subscribe(function(t){for(var n=e._getItemsArray(),i=1;i-1});switch(n){case 9:return void this.tabOut.next();case 40:if(this._vertical&&i){this.setNextItemActive();break}return;case 38:if(this._vertical&&i){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&i){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&i){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((i||fc(t,"shiftKey"))&&(t.key&&1===t.key.length?this._letterKeyStream.next(t.key.toLocaleUpperCase()):(n>=65&&n<=90||n>=48&&n<=57)&&this._letterKeyStream.next(String.fromCharCode(n))))}this._pressedLetters=[],t.preventDefault()},Object.defineProperty(t.prototype,"activeItemIndex",{get:function(){return this._activeItemIndex},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activeItem",{get:function(){return this._activeItem},enumerable:!0,configurable:!0}),t.prototype.setFirstItemActive=function(){this._setActiveItemByIndex(0,1)},t.prototype.setLastItemActive=function(){this._setActiveItemByIndex(this._items.length-1,-1)},t.prototype.setNextItemActive=function(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)},t.prototype.setPreviousItemActive=function(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)},t.prototype.updateActiveItem=function(t){var e=this._getItemsArray(),n="number"==typeof t?t:e.indexOf(t),i=e[n];this._activeItem=null==i?null:i,this._activeItemIndex=n},t.prototype.updateActiveItemIndex=function(t){this.updateActiveItem(t)},t.prototype._setActiveItemByDelta=function(t){this._wrap?this._setActiveInWrapMode(t):this._setActiveInDefaultMode(t)},t.prototype._setActiveInWrapMode=function(t){for(var e=this._getItemsArray(),n=1;n<=e.length;n++){var i=(this._activeItemIndex+t*n+e.length)%e.length;if(!this._skipPredicateFn(e[i]))return void this.setActiveItem(i)}},t.prototype._setActiveInDefaultMode=function(t){this._setActiveItemByIndex(this._activeItemIndex+t,t)},t.prototype._setActiveItemByIndex=function(t,e){var n=this._getItemsArray();if(n[t]){for(;this._skipPredicateFn(n[t]);)if(!n[t+=e])return;this.setActiveItem(t)}},t.prototype._getItemsArray=function(){return this._items instanceof Bi?this._items.toArray():this._items},t}(),Hc=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.setActiveItem=function(e){this.activeItem&&this.activeItem.setInactiveStyles(),t.prototype.setActiveItem.call(this,e),this.activeItem&&this.activeItem.setActiveStyles()},e}(jc),Nc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._origin="program",e}return r(e,t),e.prototype.setFocusOrigin=function(t){return this._origin=t,this},e.prototype.setActiveItem=function(e){t.prototype.setActiveItem.call(this,e),this.activeItem&&this.activeItem.focus(this._origin)},e}(jc),Vc=function(){function t(t){this._platform=t}return t.prototype.isDisabled=function(t){return t.hasAttribute("disabled")},t.prototype.isVisible=function(t){return function(t){return!!(t.offsetWidth||t.offsetHeight||"function"==typeof t.getClientRects&&t.getClientRects().length)}(t)&&"visible"===getComputedStyle(t).visibility},t.prototype.isTabbable=function(t){if(!this._platform.isBrowser)return!1;var e,n=function(t){try{return t.frameElement}catch(aR){return null}}((e=t).ownerDocument&&e.ownerDocument.defaultView||window);if(n){var i=n&&n.nodeName.toLowerCase();if(-1===Wc(n))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&"object"===i)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(n))return!1}var r=t.nodeName.toLowerCase(),o=Wc(t);if(t.hasAttribute("contenteditable"))return-1!==o;if("iframe"===r)return!1;if("audio"===r){if(!t.hasAttribute("controls"))return!1;if(this._platform.BLINK)return!0}if("video"===r){if(!t.hasAttribute("controls")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return("object"!==r||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(t){var e=t.nodeName.toLowerCase(),n="input"===e&&t.type;return"text"===n||"password"===n||"select"===e||"textarea"===e}(t))&&t.tabIndex>=0},t.prototype.isFocusable=function(t){return function(t){return!function(t){return function(t){return"input"==t.nodeName.toLowerCase()}(t)&&"hidden"==t.type}(t)&&(function(t){var e=t.nodeName.toLowerCase();return"input"===e||"select"===e||"button"===e||"textarea"===e}(t)||function(t){return function(t){return"a"==t.nodeName.toLowerCase()}(t)&&t.hasAttribute("href")}(t)||t.hasAttribute("contenteditable")||Bc(t))}(t)&&!this.isDisabled(t)&&this.isVisible(t)},t.ngInjectableDef=St({factory:function(){return new t(ie(nc))},token:t,providedIn:"root"}),t}();function Bc(t){if(!t.hasAttribute("tabindex")||void 0===t.tabIndex)return!1;var e=t.getAttribute("tabindex");return"-32768"!=e&&!(!e||isNaN(parseInt(e,10)))}function Wc(t){if(!Bc(t))return null;var e=parseInt(t.getAttribute("tabindex")||"",10);return isNaN(e)?-1:e}var Uc=function(){function t(t,e,n,i,r){void 0===r&&(r=!1);var o=this;this._element=t,this._checker=e,this._ngZone=n,this._document=i,this._hasAttached=!1,this._startAnchorListener=function(){return o.focusLastTabbableElement()},this._endAnchorListener=function(){return o.focusFirstTabbableElement()},this._enabled=!0,r||this.attachAnchors()}return Object.defineProperty(t.prototype,"enabled",{get:function(){return this._enabled},set:function(t){this._enabled=t,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(t,this._startAnchor),this._toggleAnchorTabIndex(t,this._endAnchor))},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){var t=this._startAnchor,e=this._endAnchor;t&&(t.removeEventListener("focus",this._startAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),e&&(e.removeEventListener("focus",this._endAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),this._startAnchor=this._endAnchor=null},t.prototype.attachAnchors=function(){var t=this;return!!this._hasAttached||(this._ngZone.runOutsideAngular(function(){t._startAnchor||(t._startAnchor=t._createAnchor(),t._startAnchor.addEventListener("focus",t._startAnchorListener)),t._endAnchor||(t._endAnchor=t._createAnchor(),t._endAnchor.addEventListener("focus",t._endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)},t.prototype.focusInitialElementWhenReady=function(){var t=this;return new Promise(function(e){t._executeOnStable(function(){return e(t.focusInitialElement())})})},t.prototype.focusFirstTabbableElementWhenReady=function(){var t=this;return new Promise(function(e){t._executeOnStable(function(){return e(t.focusFirstTabbableElement())})})},t.prototype.focusLastTabbableElementWhenReady=function(){var t=this;return new Promise(function(e){t._executeOnStable(function(){return e(t.focusLastTabbableElement())})})},t.prototype._getRegionBoundary=function(t){for(var e=this._element.querySelectorAll("[cdk-focus-region-"+t+"], [cdkFocusRegion"+t+"], [cdk-focus-"+t+"]"),n=0;n=0;n--){var i=e[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(e[n]):null;if(i)return i}return null},t.prototype._createAnchor=function(){var t=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,t),t.classList.add("cdk-visually-hidden"),t.classList.add("cdk-focus-trap-anchor"),t.setAttribute("aria-hidden","true"),t},t.prototype._toggleAnchorTabIndex=function(t,e){t?e.setAttribute("tabindex","0"):e.removeAttribute("tabindex")},t.prototype._executeOnStable=function(t){this._ngZone.isStable?t():this._ngZone.onStable.asObservable().pipe(Ac(1)).subscribe(t)},t}(),Gc=function(){function t(t,e,n){this._checker=t,this._ngZone=e,this._document=n}return t.prototype.create=function(t,e){return void 0===e&&(e=!1),new Uc(t,this._checker,this._ngZone,this._document,e)},t.ngInjectableDef=St({factory:function(){return new t(ie(Vc),ie(Mi),ie(As))},token:t,providedIn:"root"}),t}(),qc=function(){function t(t,e,n){this._elementRef=t,this._focusTrapFactory=e,this._previouslyFocusedElement=null,this._document=n,this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0)}return Object.defineProperty(t.prototype,"enabled",{get:function(){return this.focusTrap.enabled},set:function(t){this.focusTrap.enabled=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"autoCapture",{get:function(){return this._autoCapture},set:function(t){this._autoCapture=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){this.focusTrap.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)},t.prototype.ngAfterContentInit=function(){this.focusTrap.attachAnchors(),this.autoCapture&&(this._previouslyFocusedElement=this._document.activeElement,this.focusTrap.focusInitialElementWhenReady())},t.prototype.ngDoCheck=function(){this.focusTrap.hasAttached()||this.focusTrap.attachAnchors()},t}(),Xc=new Lt("liveAnnouncerElement",{providedIn:"root",factory:function(){return null}}),Kc=function(){function t(t,e,n){this._ngZone=e,this._document=n,this._liveElement=t||this._createLiveElement()}return t.prototype.announce=function(t){for(var e,n,i=this,r=[],o=1;o0?n:t},t}(),hd=new Lt("mat-date-formats"),pd=function(){return function(){}}(),fd=function(){return function(){}}(),md=function(){function t(){}return t.prototype.isErrorState=function(t,e){return!!(t&&t.invalid&&(t.touched||e&&e.submitted))},t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}(),gd=new Lt("MAT_HAMMER_OPTIONS"),yd=["longpress","slide","slidestart","slideend","slideright","slideleft"],_d={on:function(){},off:function(){}},vd=function(t){function e(e,n){var i=t.call(this)||this;return i._hammerOptions=e,i.events=yd,n&&n._checkHammerIsAvailable(),i}return r(e,t),e.prototype.buildHammer=function(t){var e="undefined"!=typeof window?window.Hammer:null;if(!e)return _d;var n=new e(t,this._hammerOptions||void 0),i=new e.Pan,r=new e.Swipe,o=new e.Press,a=this._createRecognizer(i,{event:"slide",threshold:0},r),l=this._createRecognizer(o,{event:"longpress",time:500});return i.recognizeWith(r),l.recognizeWith(a),n.add([r,o,i,a,l]),n},e.prototype._createRecognizer=function(t,e){for(var n=[],i=2;in+i?Math.max(0,r-i+e):n}var Hd=function(){return function(){}}(),Nd=new Lt("mat-label-global-options"),Vd=n("wd/R"),Bd=n.n(Vd).a||Vd;function Wd(t,e){for(var n=Array(t),i=0;i11)throw Error('Invalid month index "'+e+'". Month index has to be between 0 and 11.');if(n<1)throw Error('Invalid date "'+n+'". Date has to be greater than 0.');var i=this._createMoment({year:t,month:e,date:n}).locale(this.locale);if(!i.isValid())throw Error('Invalid date "'+n+'" for month with index "'+e+'".');return i},e.prototype.today=function(){return this._createMoment().locale(this.locale)},e.prototype.parse=function(t,e){return t&&"string"==typeof t?this._createMoment(t,e,this.locale):t?this._createMoment(t).locale(this.locale):null},e.prototype.format=function(t,e){if(t=this.clone(t),!this.isValid(t))throw Error("MomentDateAdapter: Cannot format invalid date.");return t.format(e)},e.prototype.addCalendarYears=function(t,e){return this.clone(t).add({years:e})},e.prototype.addCalendarMonths=function(t,e){return this.clone(t).add({months:e})},e.prototype.addCalendarDays=function(t,e){return this.clone(t).add({days:e})},e.prototype.toIso8601=function(t){return this.clone(t).format()},e.prototype.deserialize=function(e){var n;if(e instanceof Date)n=this._createMoment(e).locale(this.locale);else if(this.isDateInstance(e))return this.clone(e);if("string"==typeof e){if(!e)return null;n=this._createMoment(e,Bd.ISO_8601).locale(this.locale)}return n&&this.isValid(n)?this._createMoment(n).locale(this.locale):t.prototype.deserialize.call(this,e)},e.prototype.isDateInstance=function(t){return Bd.isMoment(t)},e.prototype.isValid=function(t){return this.clone(t).isValid()},e.prototype.invalid=function(){return Bd.invalid()},e.prototype._createMoment=function(){for(var t=[],e=0;e0){var i=t.slice(0,n),r=i.toLowerCase(),o=t.slice(n+1).trim();e.maybeSetNormalizedName(i,r),e.headers.has(r)?e.headers.get(r).push(o):e.headers.set(r,[o])}})}:function(){e.headers=new Map,Object.keys(t).forEach(function(n){var i=t[n],r=n.toLowerCase();"string"==typeof i&&(i=[i]),i.length>0&&(e.headers.set(r,i),e.maybeSetNormalizedName(n,r))})}:this.headers=new Map}return t.prototype.has=function(t){return this.init(),this.headers.has(t.toLowerCase())},t.prototype.get=function(t){this.init();var e=this.headers.get(t.toLowerCase());return e&&e.length>0?e[0]:null},t.prototype.keys=function(){return this.init(),Array.from(this.normalizedNames.values())},t.prototype.getAll=function(t){return this.init(),this.headers.get(t.toLowerCase())||null},t.prototype.append=function(t,e){return this.clone({name:t,value:e,op:"a"})},t.prototype.set=function(t,e){return this.clone({name:t,value:e,op:"s"})},t.prototype.delete=function(t,e){return this.clone({name:t,value:e,op:"d"})},t.prototype.maybeSetNormalizedName=function(t,e){this.normalizedNames.has(e)||this.normalizedNames.set(e,t)},t.prototype.init=function(){var e=this;this.lazyInit&&(this.lazyInit instanceof t?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(function(t){return e.applyUpdate(t)}),this.lazyUpdate=null))},t.prototype.copyFrom=function(t){var e=this;t.init(),Array.from(t.headers.keys()).forEach(function(n){e.headers.set(n,t.headers.get(n)),e.normalizedNames.set(n,t.normalizedNames.get(n))})},t.prototype.clone=function(e){var n=new t;return n.lazyInit=this.lazyInit&&this.lazyInit instanceof t?this.lazyInit:this,n.lazyUpdate=(this.lazyUpdate||[]).concat([e]),n},t.prototype.applyUpdate=function(t){var e=t.name.toLowerCase();switch(t.op){case"a":case"s":var n=t.value;if("string"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(t.name,e);var i=("a"===t.op?this.headers.get(e):void 0)||[];i.push.apply(i,d(n)),this.headers.set(e,i);break;case"d":var r=t.value;if(r){var o=this.headers.get(e);if(!o)return;0===(o=o.filter(function(t){return-1===r.indexOf(t)})).length?(this.headers.delete(e),this.normalizedNames.delete(e)):this.headers.set(e,o)}else this.headers.delete(e),this.normalizedNames.delete(e)}},t.prototype.forEach=function(t){var e=this;this.init(),Array.from(this.normalizedNames.keys()).forEach(function(n){return t(e.normalizedNames.get(n),e.headers.get(n))})},t}(),th=function(){function t(){}return t.prototype.encodeKey=function(t){return eh(t)},t.prototype.encodeValue=function(t){return eh(t)},t.prototype.decodeKey=function(t){return decodeURIComponent(t)},t.prototype.decodeValue=function(t){return decodeURIComponent(t)},t}();function eh(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/gi,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%2B/gi,"+").replace(/%3D/gi,"=").replace(/%3F/gi,"?").replace(/%2F/gi,"/")}var nh=function(){function t(t){void 0===t&&(t={});var e,n,i,r=this;if(this.updates=null,this.cloneFrom=null,this.encoder=t.encoder||new th,t.fromString){if(t.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=(e=t.fromString,n=this.encoder,i=new Map,e.length>0&&e.split("&").forEach(function(t){var e=t.indexOf("="),r=c(-1==e?[n.decodeKey(t),""]:[n.decodeKey(t.slice(0,e)),n.decodeValue(t.slice(e+1))],2),o=r[0],a=r[1],l=i.get(o)||[];l.push(a),i.set(o,l)}),i)}else t.fromObject?(this.map=new Map,Object.keys(t.fromObject).forEach(function(e){var n=t.fromObject[e];r.map.set(e,Array.isArray(n)?n:[n])})):this.map=null}return t.prototype.has=function(t){return this.init(),this.map.has(t)},t.prototype.get=function(t){this.init();var e=this.map.get(t);return e?e[0]:null},t.prototype.getAll=function(t){return this.init(),this.map.get(t)||null},t.prototype.keys=function(){return this.init(),Array.from(this.map.keys())},t.prototype.append=function(t,e){return this.clone({param:t,value:e,op:"a"})},t.prototype.set=function(t,e){return this.clone({param:t,value:e,op:"s"})},t.prototype.delete=function(t,e){return this.clone({param:t,value:e,op:"d"})},t.prototype.toString=function(){var t=this;return this.init(),this.keys().map(function(e){var n=t.encoder.encodeKey(e);return t.map.get(e).map(function(e){return n+"="+t.encoder.encodeValue(e)}).join("&")}).join("&")},t.prototype.clone=function(e){var n=new t({encoder:this.encoder});return n.cloneFrom=this.cloneFrom||this,n.updates=(this.updates||[]).concat([e]),n},t.prototype.init=function(){var t=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(function(e){return t.map.set(e,t.cloneFrom.map.get(e))}),this.updates.forEach(function(e){switch(e.op){case"a":case"s":var n=("a"===e.op?t.map.get(e.param):void 0)||[];n.push(e.value),t.map.set(e.param,n);break;case"d":if(void 0===e.value){t.map.delete(e.param);break}var i=t.map.get(e.param)||[],r=i.indexOf(e.value);-1!==r&&i.splice(r,1),i.length>0?t.map.set(e.param,i):t.map.delete(e.param)}}),this.cloneFrom=null)},t}();function ih(t){return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer}function rh(t){return"undefined"!=typeof Blob&&t instanceof Blob}function oh(t){return"undefined"!=typeof FormData&&t instanceof FormData}var ah=function(){function t(t,e,n,i){var r;if(this.url=e,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=t.toUpperCase(),function(t){switch(t){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==n?n:null,r=i):r=n,r&&(this.reportProgress=!!r.reportProgress,this.withCredentials=!!r.withCredentials,r.responseType&&(this.responseType=r.responseType),r.headers&&(this.headers=r.headers),r.params&&(this.params=r.params)),this.headers||(this.headers=new $d),this.params){var o=this.params.toString();if(0===o.length)this.urlWithParams=e;else{var a=e.indexOf("?");this.urlWithParams=e+(-1===a?"?":a=200&&this.status<300}}(),uh=function(t){function e(e){void 0===e&&(e={});var n=t.call(this,e)||this;return n.type=lh.ResponseHeader,n}return r(e,t),e.prototype.clone=function(t){return void 0===t&&(t={}),new e({headers:t.headers||this.headers,status:void 0!==t.status?t.status:this.status,statusText:t.statusText||this.statusText,url:t.url||this.url||void 0})},e}(sh),ch=function(t){function e(e){void 0===e&&(e={});var n=t.call(this,e)||this;return n.type=lh.Response,n.body=void 0!==e.body?e.body:null,n}return r(e,t),e.prototype.clone=function(t){return void 0===t&&(t={}),new e({body:void 0!==t.body?t.body:this.body,headers:t.headers||this.headers,status:void 0!==t.status?t.status:this.status,statusText:t.statusText||this.statusText,url:t.url||this.url||void 0})},e}(sh),dh=function(t){function e(e){var n=t.call(this,e,0,"Unknown Error")||this;return n.name="HttpErrorResponse",n.ok=!1,n.message=n.status>=200&&n.status<300?"Http failure during parsing for "+(e.url||"(unknown url)"):"Http failure response for "+(e.url||"(unknown url)")+": "+e.status+" "+e.statusText,n.error=e.error||null,n}return r(e,t),e}(sh);function hh(t,e){return{body:e,headers:t.headers,observe:t.observe,params:t.params,reportProgress:t.reportProgress,responseType:t.responseType,withCredentials:t.withCredentials}}var ph=function(){function t(t){this.handler=t}return t.prototype.request=function(t,e,n){var i,r=this;if(void 0===n&&(n={}),t instanceof ah)i=t;else{var o;o=n.headers instanceof $d?n.headers:new $d(n.headers);var a=void 0;n.params&&(a=n.params instanceof nh?n.params:new nh({fromObject:n.params})),i=new ah(t,e,void 0!==n.body?n.body:null,{headers:o,params:a,reportProgress:n.reportProgress,responseType:n.responseType||"json",withCredentials:n.withCredentials})}var l=cc(i).pipe(Zd(function(t){return r.handler.handle(t)}));if(t instanceof ah||"events"===n.observe)return l;var s=l.pipe(Cc(function(t){return t instanceof ch}));switch(n.observe||"body"){case"body":switch(i.responseType){case"arraybuffer":return s.pipe(nt(function(t){if(null!==t.body&&!(t.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return t.body}));case"blob":return s.pipe(nt(function(t){if(null!==t.body&&!(t.body instanceof Blob))throw new Error("Response is not a Blob.");return t.body}));case"text":return s.pipe(nt(function(t){if(null!==t.body&&"string"!=typeof t.body)throw new Error("Response is not a string.");return t.body}));case"json":default:return s.pipe(nt(function(t){return t.body}))}case"response":return s;default:throw new Error("Unreachable: unhandled observe type "+n.observe+"}")}},t.prototype.delete=function(t,e){return void 0===e&&(e={}),this.request("DELETE",t,e)},t.prototype.get=function(t,e){return void 0===e&&(e={}),this.request("GET",t,e)},t.prototype.head=function(t,e){return void 0===e&&(e={}),this.request("HEAD",t,e)},t.prototype.jsonp=function(t,e){return this.request("JSONP",t,{params:(new nh).append(e,"JSONP_CALLBACK"),observe:"body",responseType:"json"})},t.prototype.options=function(t,e){return void 0===e&&(e={}),this.request("OPTIONS",t,e)},t.prototype.patch=function(t,e,n){return void 0===n&&(n={}),this.request("PATCH",t,hh(n,e))},t.prototype.post=function(t,e,n){return void 0===n&&(n={}),this.request("POST",t,hh(n,e))},t.prototype.put=function(t,e,n){return void 0===n&&(n={}),this.request("PUT",t,hh(n,e))},t}(),fh=function(){function t(t,e){this.next=t,this.interceptor=e}return t.prototype.handle=function(t){return this.interceptor.intercept(t,this.next)},t}(),mh=new Lt("HTTP_INTERCEPTORS"),gh=function(){function t(){}return t.prototype.intercept=function(t,e){return e.handle(t)},t}(),yh=/^\)\]\}',?\n/,_h=function(){return function(){}}(),vh=function(){function t(){}return t.prototype.build=function(){return new XMLHttpRequest},t}(),bh=function(){function t(t){this.xhrFactory=t}return t.prototype.handle=function(t){var e=this;if("JSONP"===t.method)throw new Error("Attempted to construct Jsonp request without JsonpClientModule installed.");return new Y(function(n){var i=e.xhrFactory.build();if(i.open(t.method,t.urlWithParams),t.withCredentials&&(i.withCredentials=!0),t.headers.forEach(function(t,e){return i.setRequestHeader(t,e.join(","))}),t.headers.has("Accept")||i.setRequestHeader("Accept","application/json, text/plain, */*"),!t.headers.has("Content-Type")){var r=t.detectContentTypeHeader();null!==r&&i.setRequestHeader("Content-Type",r)}if(t.responseType){var o=t.responseType.toLowerCase();i.responseType="json"!==o?o:"text"}var a=t.serializeBody(),l=null,s=function(){if(null!==l)return l;var e=1223===i.status?204:i.status,n=i.statusText||"OK",r=new $d(i.getAllResponseHeaders()),o=function(t){return"responseURL"in t&&t.responseURL?t.responseURL:/^X-Request-URL:/m.test(t.getAllResponseHeaders())?t.getResponseHeader("X-Request-URL"):null}(i)||t.url;return l=new uh({headers:r,status:e,statusText:n,url:o})},u=function(){var e=s(),r=e.headers,o=e.status,a=e.statusText,l=e.url,u=null;204!==o&&(u=void 0===i.response?i.responseText:i.response),0===o&&(o=u?200:0);var c=o>=200&&o<300;if("json"===t.responseType&&"string"==typeof u){var d=u;u=u.replace(yh,"");try{u=""!==u?JSON.parse(u):null}catch(h){u=d,c&&(c=!1,u={error:h,text:u})}}c?(n.next(new ch({body:u,headers:r,status:o,statusText:a,url:l||void 0})),n.complete()):n.error(new dh({error:u,headers:r,status:o,statusText:a,url:l||void 0}))},c=function(t){var e=s().url,r=new dh({error:t,status:i.status||0,statusText:i.statusText||"Unknown Error",url:e||void 0});n.error(r)},d=!1,h=function(e){d||(n.next(s()),d=!0);var r={type:lh.DownloadProgress,loaded:e.loaded};e.lengthComputable&&(r.total=e.total),"text"===t.responseType&&i.responseText&&(r.partialText=i.responseText),n.next(r)},p=function(t){var e={type:lh.UploadProgress,loaded:t.loaded};t.lengthComputable&&(e.total=t.total),n.next(e)};return i.addEventListener("load",u),i.addEventListener("error",c),t.reportProgress&&(i.addEventListener("progress",h),null!==a&&i.upload&&i.upload.addEventListener("progress",p)),i.send(a),n.next({type:lh.Sent}),function(){i.removeEventListener("error",c),i.removeEventListener("load",u),t.reportProgress&&(i.removeEventListener("progress",h),null!==a&&i.upload&&i.upload.removeEventListener("progress",p)),i.abort()}})},t}(),xh=new Lt("XSRF_COOKIE_NAME"),wh=new Lt("XSRF_HEADER_NAME"),kh=function(){return function(){}}(),Mh=function(){function t(t,e,n){this.doc=t,this.platform=e,this.cookieName=n,this.lastCookieString="",this.lastToken=null,this.parseCount=0}return t.prototype.getToken=function(){if("server"===this.platform)return null;var t=this.doc.cookie||"";return t!==this.lastCookieString&&(this.parseCount++,this.lastToken=ds(t,this.cookieName),this.lastCookieString=t),this.lastToken},t}(),Sh=function(){function t(t,e){this.tokenService=t,this.headerName=e}return t.prototype.intercept=function(t,e){var n=t.url.toLowerCase();if("GET"===t.method||"HEAD"===t.method||n.startsWith("http://")||n.startsWith("https://"))return e.handle(t);var i=this.tokenService.getToken();return null===i||t.headers.has(this.headerName)||(t=t.clone({headers:t.headers.set(this.headerName,i)})),e.handle(t)},t}(),Ch=function(){function t(t,e){this.backend=t,this.injector=e,this.chain=null}return t.prototype.handle=function(t){if(null===this.chain){var e=this.injector.get(mh,[]);this.chain=e.reduceRight(function(t,e){return new fh(t,e)},this.backend)}return this.chain.handle(t)},t}(),Lh=function(){function t(){}var e;return e=t,t.disable=function(){return{ngModule:e,providers:[{provide:Sh,useClass:gh}]}},t.withOptions=function(t){return void 0===t&&(t={}),{ngModule:e,providers:[t.cookieName?{provide:xh,useValue:t.cookieName}:[],t.headerName?{provide:wh,useValue:t.headerName}:[]]}},t}(),Dh=function(){return function(){}}(),Th=function(t){function e(e){var n=t.call(this)||this;return n._value=e,n}return r(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!0,configurable:!0}),e.prototype._subscribe=function(e){var n=t.prototype._subscribe.call(this,e);return n&&!n.closed&&e.next(this._value),n},e.prototype.getValue=function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new F;return this._value},e.prototype.next=function(e){t.prototype.next.call(this,this._value=e)},e}(H),Eh=function(){return function(){}}(),Ah=function(){return function(){}}(),Ph=n("BOF4"),Oh=function(){function t(t){this.httpService=t,this.currentUserSubject=new Th(JSON.parse(localStorage.getItem("currentUser"))),this.currentUser=this.currentUserSubject.asObservable()}return Object.defineProperty(t.prototype,"currentUserValue",{get:function(){return this.currentUserSubject.value},enumerable:!0,configurable:!0}),t.prototype.login=function(t,e){var n=this,i=new $d({"Content-Type":"application/json","Access-Control-Allow-Origin":"*"});return this.httpService.post(Bl.apiUrl+"/api/Account/Login",{email:t,password:e},{headers:i}).pipe(nt(function(t){var e=n.getDecodedAccessToken(t.AccessToken),i=e.object.UserData,r=new Eh;r.UserId=i.UserID,r.UserName=i.UserName,r.FirstName=i.FirstName,r.LastName=i.LastName;var o=new Ah;return o.LoginUser=r,o.ExpirationDate=e.object.ExpirationDate,o.LoginDate=e.object.LoginDate,o.AccessToken=t.AccessToken,localStorage.setItem("currentUser",JSON.stringify(o)),n.currentUserSubject.next(o),o.LoginUser}))},t.prototype.getDecodedAccessToken=function(t){try{return Ph(t)}catch(Error){return null}},t.prototype.logout=function(){localStorage.removeItem("currentUser"),this.currentUserSubject.next(null)},t.ngInjectableDef=St({factory:function(){return new t(ie(ph))},token:t,providedIn:"root"}),t}(),Yh=function(){function t(t,e){var n=this;this.router=t,this.authenticationService=e,this.currentUser=new Eh,this.title="TCC",this.imageUrl=Bl.assetPath+"/assets/logo_twine.png",this.authenticationService.currentUser.subscribe(function(t){null!=t&&(n.currentUser=t.LoginUser)})}return t.prototype.logout=function(){this.authenticationService.logout(),this.router.navigate(["/login"])},t}();function Rh(){return Error.call(this),this.message="no elements in sequence",this.name="EmptyError",this}Rh.prototype=Object.create(Error.prototype);var Ih=Rh,Fh={};function zh(){for(var t=[],e=0;e0)for(var n=this.count>=this.total?this.total:this.count,i=this.ring,r=0;r=2;return function(i){return i.pipe(t?Cc(function(e,n){return t(e,n,i)}):ct,Vh(1),n?qh(e):Uh(function(){return new Ih}))}}function Jh(t){return function(e){var n=new Qh(t),i=e.lift(n);return n.caught=i}}var Qh=function(){function t(t){this.selector=t}return t.prototype.call=function(t,e){return e.subscribe(new $h(t,this.selector,this.caught))},t}(),$h=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.selector=n,r.caught=i,r}return r(e,t),e.prototype.error=function(e){if(!this.isStopped){var n=void 0;try{n=this.selector(e,this.caught)}catch(r){return void t.prototype.error.call(this,r)}this._unsubscribeAndRecycle();var i=new B(this,void 0,void 0);this.add(i),tt(this,n,void 0,void 0,i)}},e}(et);function tp(t,e){var n=arguments.length>=2;return function(i){return i.pipe(t?Cc(function(e,n){return t(e,n,i)}):ct,Ac(1),n?qh(e):Uh(function(){return new Ih}))}}var ep=function(){function t(t,e,n){this.predicate=t,this.thisArg=e,this.source=n}return t.prototype.call=function(t,e){return e.subscribe(new np(t,this.predicate,this.thisArg,this.source))},t}(),np=function(t){function e(e,n,i,r){var o=t.call(this,e)||this;return o.predicate=n,o.thisArg=i,o.source=r,o.index=0,o.thisArg=i||o,o}return r(e,t),e.prototype.notifyComplete=function(t){this.destination.next(t),this.destination.complete()},e.prototype._next=function(t){var e=!1;try{e=this.predicate.call(this.thisArg,t,this.index++,this.source)}catch(n){return void this.destination.error(n)}e||this.notifyComplete(!1)},e.prototype._complete=function(){this.notifyComplete(!0)},e}(D);function ip(t,e){return"function"==typeof e?function(n){return n.pipe(ip(function(n,i){return at(t(n,i)).pipe(nt(function(t,r){return e(n,t,i,r)}))}))}:function(e){return e.lift(new rp(t))}}var rp=function(){function t(t){this.project=t}return t.prototype.call=function(t,e){return e.subscribe(new op(t,this.project))},t}(),op=function(t){function e(e,n){var i=t.call(this,e)||this;return i.project=n,i.index=0,i}return r(e,t),e.prototype._next=function(t){var e,n=this.index++;try{e=this.project(t,n)}catch(i){return void this.destination.error(i)}this._innerSub(e,t,n)},e.prototype._innerSub=function(t,e,n){var i=this.innerSubscription;i&&i.unsubscribe();var r=new B(this,void 0,void 0);this.destination.add(r),this.innerSubscription=tt(this,t,e,n,r)},e.prototype._complete=function(){var e=this.innerSubscription;e&&!e.closed||t.prototype._complete.call(this),this.unsubscribe()},e.prototype._unsubscribe=function(){this.innerSubscription=null},e.prototype.notifyComplete=function(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&t.prototype._complete.call(this)},e.prototype.notifyNext=function(t,e,n,i,r){this.destination.next(e)},e}(et);function ap(t,e){var n=!1;return arguments.length>=2&&(n=!0),function(i){return i.lift(new lp(t,e,n))}}var lp=function(){function t(t,e,n){void 0===n&&(n=!1),this.accumulator=t,this.seed=e,this.hasSeed=n}return t.prototype.call=function(t,e){return e.subscribe(new sp(t,this.accumulator,this.seed,this.hasSeed))},t}(),sp=function(t){function e(e,n,i,r){var o=t.call(this,e)||this;return o.accumulator=n,o._seed=i,o.hasSeed=r,o.index=0,o}return r(e,t),Object.defineProperty(e.prototype,"seed",{get:function(){return this._seed},set:function(t){this.hasSeed=!0,this._seed=t},enumerable:!0,configurable:!0}),e.prototype._next=function(t){if(this.hasSeed)return this._tryNext(t);this.seed=t,this.destination.next(t)},e.prototype._tryNext=function(t){var e,n=this.index++;try{e=this.accumulator(this.seed,t,n)}catch(i){this.destination.error(i)}this.seed=e,this.destination.next(e)},e}(D);function up(t){return function(e){return e.lift(new cp(t))}}var cp=function(){function t(t){this.callback=t}return t.prototype.call=function(t,e){return e.subscribe(new dp(t,this.callback))},t}(),dp=function(t){function e(e,n){var i=t.call(this,e)||this;return i.add(new x(n)),i}return r(e,t),e}(D),hp=function(){return function(t,e){this.id=t,this.url=e}}(),pp=function(t){function e(e,n,i,r){void 0===i&&(i="imperative"),void 0===r&&(r=null);var o=t.call(this,e,n)||this;return o.navigationTrigger=i,o.restoredState=r,o}return r(e,t),e.prototype.toString=function(){return"NavigationStart(id: "+this.id+", url: '"+this.url+"')"},e}(hp),fp=function(t){function e(e,n,i){var r=t.call(this,e,n)||this;return r.urlAfterRedirects=i,r}return r(e,t),e.prototype.toString=function(){return"NavigationEnd(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"')"},e}(hp),mp=function(t){function e(e,n,i){var r=t.call(this,e,n)||this;return r.reason=i,r}return r(e,t),e.prototype.toString=function(){return"NavigationCancel(id: "+this.id+", url: '"+this.url+"')"},e}(hp),gp=function(t){function e(e,n,i){var r=t.call(this,e,n)||this;return r.error=i,r}return r(e,t),e.prototype.toString=function(){return"NavigationError(id: "+this.id+", url: '"+this.url+"', error: "+this.error+")"},e}(hp),yp=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"RoutesRecognized(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),_p=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"GuardsCheckStart(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),vp=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n)||this;return a.urlAfterRedirects=i,a.state=r,a.shouldActivate=o,a}return r(e,t),e.prototype.toString=function(){return"GuardsCheckEnd(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+", shouldActivate: "+this.shouldActivate+")"},e}(hp),bp=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"ResolveStart(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),xp=function(t){function e(e,n,i,r){var o=t.call(this,e,n)||this;return o.urlAfterRedirects=i,o.state=r,o}return r(e,t),e.prototype.toString=function(){return"ResolveEnd(id: "+this.id+", url: '"+this.url+"', urlAfterRedirects: '"+this.urlAfterRedirects+"', state: "+this.state+")"},e}(hp),wp=function(){function t(t){this.route=t}return t.prototype.toString=function(){return"RouteConfigLoadStart(path: "+this.route.path+")"},t}(),kp=function(){function t(t){this.route=t}return t.prototype.toString=function(){return"RouteConfigLoadEnd(path: "+this.route.path+")"},t}(),Mp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ChildActivationStart(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Sp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ChildActivationEnd(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Cp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ActivationStart(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Lp=function(){function t(t){this.snapshot=t}return t.prototype.toString=function(){return"ActivationEnd(path: '"+(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||"")+"')"},t}(),Dp=function(){function t(t,e,n){this.routerEvent=t,this.position=e,this.anchor=n}return t.prototype.toString=function(){return"Scroll(anchor: '"+this.anchor+"', position: '"+(this.position?this.position[0]+", "+this.position[1]:null)+"')"},t}(),Tp=function(){return function(){}}(),Ep="primary",Ap=function(){function t(t){this.params=t||{}}return t.prototype.has=function(t){return this.params.hasOwnProperty(t)},t.prototype.get=function(t){if(this.has(t)){var e=this.params[t];return Array.isArray(e)?e[0]:e}return null},t.prototype.getAll=function(t){if(this.has(t)){var e=this.params[t];return Array.isArray(e)?e:[e]}return[]},Object.defineProperty(t.prototype,"keys",{get:function(){return Object.keys(this.params)},enumerable:!0,configurable:!0}),t}();function Pp(t){return new Ap(t)}var Op="ngNavigationCancelingError";function Yp(t){var e=Error("NavigationCancelingError: "+t);return e[Op]=!0,e}function Rp(t,e,n){var i=n.path.split("/");if(i.length>t.length)return null;if("full"===n.pathMatch&&(e.hasChildren()||i.length0?t[t.length-1]:null}function Wp(t,e){for(var n in t)t.hasOwnProperty(n)&&e(t[n],n)}function Up(t){return ti(t)?t:$n(t)?at(Promise.resolve(t)):cc(t)}function Gp(t,e,n){return n?function(t,e){return Np(t,e)}(t.queryParams,e.queryParams)&&function t(e,n){if(!Zp(e.segments,n.segments))return!1;if(e.numberOfChildren!==n.numberOfChildren)return!1;for(var i in n.children){if(!e.children[i])return!1;if(!t(e.children[i],n.children[i]))return!1}return!0}(t.root,e.root):function(t,e){return Object.keys(e).length<=Object.keys(t).length&&Object.keys(e).every(function(n){return e[n]===t[n]})}(t.queryParams,e.queryParams)&&function t(e,n){return function e(n,i,r){if(n.segments.length>r.length)return!!Zp(a=n.segments.slice(0,r.length),r)&&!i.hasChildren();if(n.segments.length===r.length){if(!Zp(n.segments,r))return!1;for(var o in i.children){if(!n.children[o])return!1;if(!t(n.children[o],i.children[o]))return!1}return!0}var a=r.slice(0,n.segments.length),l=r.slice(n.segments.length);return!!Zp(n.segments,a)&&!!n.children[Ep]&&e(n.children[Ep],i,l)}(e,n,n.segments)}(t.root,e.root)}var qp=function(){function t(t,e,n){this.root=t,this.queryParams=e,this.fragment=n}return Object.defineProperty(t.prototype,"queryParamMap",{get:function(){return this._queryParamMap||(this._queryParamMap=Pp(this.queryParams)),this._queryParamMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return tf.serialize(this)},t}(),Xp=function(){function t(t,e){var n=this;this.segments=t,this.children=e,this.parent=null,Wp(e,function(t,e){return t.parent=n})}return t.prototype.hasChildren=function(){return this.numberOfChildren>0},Object.defineProperty(t.prototype,"numberOfChildren",{get:function(){return Object.keys(this.children).length},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return ef(this)},t}(),Kp=function(){function t(t,e){this.path=t,this.parameters=e}return Object.defineProperty(t.prototype,"parameterMap",{get:function(){return this._parameterMap||(this._parameterMap=Pp(this.parameters)),this._parameterMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return sf(this)},t}();function Zp(t,e){return t.length===e.length&&t.every(function(t,n){return t.path===e[n].path})}function Jp(t,e){var n=[];return Wp(t.children,function(t,i){i===Ep&&(n=n.concat(e(t,i)))}),Wp(t.children,function(t,i){i!==Ep&&(n=n.concat(e(t,i)))}),n}var Qp=function(){return function(){}}(),$p=function(){function t(){}return t.prototype.parse=function(t){var e=new pf(t);return new qp(e.parseRootSegment(),e.parseQueryParams(),e.parseFragment())},t.prototype.serialize=function(t){var e,n;return"/"+function t(e,n){if(!e.hasChildren())return ef(e);if(n){var i=e.children[Ep]?t(e.children[Ep],!1):"",r=[];return Wp(e.children,function(e,n){n!==Ep&&r.push(n+":"+t(e,!1))}),r.length>0?i+"("+r.join("//")+")":i}var o=Jp(e,function(n,i){return i===Ep?[t(e.children[Ep],!1)]:[i+":"+t(n,!1)]});return ef(e)+"/("+o.join("//")+")"}(t.root,!0)+(e=t.queryParams,(n=Object.keys(e).map(function(t){var n=e[t];return Array.isArray(n)?n.map(function(e){return rf(t)+"="+rf(e)}).join("&"):rf(t)+"="+rf(n)})).length?"?"+n.join("&"):"")+("string"==typeof t.fragment?"#"+encodeURI(t.fragment):"")},t}(),tf=new $p;function ef(t){return t.segments.map(function(t){return sf(t)}).join("/")}function nf(t){return encodeURIComponent(t).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function rf(t){return nf(t).replace(/%3B/gi,";")}function of(t){return nf(t).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function af(t){return decodeURIComponent(t)}function lf(t){return af(t.replace(/\+/g,"%20"))}function sf(t){return""+of(t.path)+(e=t.parameters,Object.keys(e).map(function(t){return";"+of(t)+"="+of(e[t])}).join(""));var e}var uf=/^[^\/()?;=#]+/;function cf(t){var e=t.match(uf);return e?e[0]:""}var df=/^[^=?&#]+/,hf=/^[^?&#]+/,pf=function(){function t(t){this.url=t,this.remaining=t}return t.prototype.parseRootSegment=function(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new Xp([],{}):new Xp([],this.parseChildren())},t.prototype.parseQueryParams=function(){var t={};if(this.consumeOptional("?"))do{this.parseQueryParam(t)}while(this.consumeOptional("&"));return t},t.prototype.parseFragment=function(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null},t.prototype.parseChildren=function(){if(""===this.remaining)return{};this.consumeOptional("/");var t=[];for(this.peekStartsWith("(")||t.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),t.push(this.parseSegment());var e={};this.peekStartsWith("/(")&&(this.capture("/"),e=this.parseParens(!0));var n={};return this.peekStartsWith("(")&&(n=this.parseParens(!1)),(t.length>0||Object.keys(e).length>0)&&(n[Ep]=new Xp(t,e)),n},t.prototype.parseSegment=function(){var t=cf(this.remaining);if(""===t&&this.peekStartsWith(";"))throw new Error("Empty path url segment cannot have parameters: '"+this.remaining+"'.");return this.capture(t),new Kp(af(t),this.parseMatrixParams())},t.prototype.parseMatrixParams=function(){for(var t={};this.consumeOptional(";");)this.parseParam(t);return t},t.prototype.parseParam=function(t){var e=cf(this.remaining);if(e){this.capture(e);var n="";if(this.consumeOptional("=")){var i=cf(this.remaining);i&&this.capture(n=i)}t[af(e)]=af(n)}},t.prototype.parseQueryParam=function(t){var e,n=(e=this.remaining.match(df))?e[0]:"";if(n){this.capture(n);var i="";if(this.consumeOptional("=")){var r=function(t){var e=t.match(hf);return e?e[0]:""}(this.remaining);r&&this.capture(i=r)}var o=lf(n),a=lf(i);if(t.hasOwnProperty(o)){var l=t[o];Array.isArray(l)||(t[o]=l=[l]),l.push(a)}else t[o]=a}},t.prototype.parseParens=function(t){var e={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){var n=cf(this.remaining),i=this.remaining[n.length];if("/"!==i&&")"!==i&&";"!==i)throw new Error("Cannot parse url '"+this.url+"'");var r=void 0;n.indexOf(":")>-1?(r=n.substr(0,n.indexOf(":")),this.capture(r),this.capture(":")):t&&(r=Ep);var o=this.parseChildren();e[r]=1===Object.keys(o).length?o[Ep]:new Xp([],o),this.consumeOptional("//")}return e},t.prototype.peekStartsWith=function(t){return this.remaining.startsWith(t)},t.prototype.consumeOptional=function(t){return!!this.peekStartsWith(t)&&(this.remaining=this.remaining.substring(t.length),!0)},t.prototype.capture=function(t){if(!this.consumeOptional(t))throw new Error('Expected "'+t+'".')},t}(),ff=function(){function t(t){this._root=t}return Object.defineProperty(t.prototype,"root",{get:function(){return this._root.value},enumerable:!0,configurable:!0}),t.prototype.parent=function(t){var e=this.pathFromRoot(t);return e.length>1?e[e.length-2]:null},t.prototype.children=function(t){var e=mf(t,this._root);return e?e.children.map(function(t){return t.value}):[]},t.prototype.firstChild=function(t){var e=mf(t,this._root);return e&&e.children.length>0?e.children[0].value:null},t.prototype.siblings=function(t){var e=gf(t,this._root);return e.length<2?[]:e[e.length-2].children.map(function(t){return t.value}).filter(function(e){return e!==t})},t.prototype.pathFromRoot=function(t){return gf(t,this._root).map(function(t){return t.value})},t}();function mf(t,e){var n,i;if(t===e.value)return e;try{for(var r=u(e.children),o=r.next();!o.done;o=r.next()){var a=mf(t,o.value);if(a)return a}}catch(l){n={error:l}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}return null}function gf(t,e){var n,i;if(t===e.value)return[e];try{for(var r=u(e.children),o=r.next();!o.done;o=r.next()){var a=gf(t,o.value);if(a.length)return a.unshift(e),a}}catch(l){n={error:l}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}return[]}var yf=function(){function t(t,e){this.value=t,this.children=e}return t.prototype.toString=function(){return"TreeNode("+this.value+")"},t}();function _f(t){var e={};return t&&t.children.forEach(function(t){return e[t.value.outlet]=t}),e}var vf=function(t){function e(e,n){var i=t.call(this,e)||this;return i.snapshot=n,Sf(i,e),i}return r(e,t),e.prototype.toString=function(){return this.snapshot.toString()},e}(ff);function bf(t,e){var n=function(t,e){var n=new kf([],{},{},"",{},Ep,e,null,t.root,-1,{});return new Mf("",new yf(n,[]))}(t,e),i=new Th([new Kp("",{})]),r=new Th({}),o=new Th({}),a=new Th({}),l=new Th(""),s=new xf(i,r,a,l,o,Ep,e,n.root);return s.snapshot=n.root,new vf(new yf(s,[]),n)}var xf=function(){function t(t,e,n,i,r,o,a,l){this.url=t,this.params=e,this.queryParams=n,this.fragment=i,this.data=r,this.outlet=o,this.component=a,this._futureSnapshot=l}return Object.defineProperty(t.prototype,"routeConfig",{get:function(){return this._futureSnapshot.routeConfig},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"root",{get:function(){return this._routerState.root},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parent",{get:function(){return this._routerState.parent(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this._routerState.firstChild(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){return this._routerState.children(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"pathFromRoot",{get:function(){return this._routerState.pathFromRoot(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"paramMap",{get:function(){return this._paramMap||(this._paramMap=this.params.pipe(nt(function(t){return Pp(t)}))),this._paramMap},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"queryParamMap",{get:function(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(nt(function(t){return Pp(t)}))),this._queryParamMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return this.snapshot?this.snapshot.toString():"Future("+this._futureSnapshot+")"},t}();function wf(t,e){void 0===e&&(e="emptyOnly");var n=t.pathFromRoot,i=0;if("always"!==e)for(i=n.length-1;i>=1;){var r=n[i],a=n[i-1];if(r.routeConfig&&""===r.routeConfig.path)i--;else{if(a.component)break;i--}}return function(t){return t.reduce(function(t,e){return{params:o({},t.params,e.params),data:o({},t.data,e.data),resolve:o({},t.resolve,e._resolvedData)}},{params:{},data:{},resolve:{}})}(n.slice(i))}var kf=function(){function t(t,e,n,i,r,o,a,l,s,u,c){this.url=t,this.params=e,this.queryParams=n,this.fragment=i,this.data=r,this.outlet=o,this.component=a,this.routeConfig=l,this._urlSegment=s,this._lastPathIndex=u,this._resolve=c}return Object.defineProperty(t.prototype,"root",{get:function(){return this._routerState.root},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parent",{get:function(){return this._routerState.parent(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this._routerState.firstChild(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){return this._routerState.children(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"pathFromRoot",{get:function(){return this._routerState.pathFromRoot(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"paramMap",{get:function(){return this._paramMap||(this._paramMap=Pp(this.params)),this._paramMap},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"queryParamMap",{get:function(){return this._queryParamMap||(this._queryParamMap=Pp(this.queryParams)),this._queryParamMap},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return"Route(url:'"+this.url.map(function(t){return t.toString()}).join("/")+"', path:'"+(this.routeConfig?this.routeConfig.path:"")+"')"},t}(),Mf=function(t){function e(e,n){var i=t.call(this,n)||this;return i.url=e,Sf(i,n),i}return r(e,t),e.prototype.toString=function(){return Cf(this._root)},e}(ff);function Sf(t,e){e.value._routerState=t,e.children.forEach(function(e){return Sf(t,e)})}function Cf(t){var e=t.children.length>0?" { "+t.children.map(Cf).join(", ")+" } ":"";return""+t.value+e}function Lf(t){if(t.snapshot){var e=t.snapshot,n=t._futureSnapshot;t.snapshot=n,Np(e.queryParams,n.queryParams)||t.queryParams.next(n.queryParams),e.fragment!==n.fragment&&t.fragment.next(n.fragment),Np(e.params,n.params)||t.params.next(n.params),function(t,e){if(t.length!==e.length)return!1;for(var n=0;n0&&Tf(n[0]))throw new Error("Root segment cannot have matrix parameters");var i=n.find(function(t){return"object"==typeof t&&null!=t&&t.outlets});if(i&&i!==Bp(n))throw new Error("{outlets:{}} has to be the last command")}return t.prototype.toRoot=function(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]},t}(),Pf=function(){return function(t,e,n){this.segmentGroup=t,this.processChildren=e,this.index=n}}();function Of(t){return"object"==typeof t&&null!=t&&t.outlets?t.outlets[Ep]:""+t}function Yf(t,e,n){if(t||(t=new Xp([],{})),0===t.segments.length&&t.hasChildren())return Rf(t,e,n);var i=function(t,e,n){for(var i=0,r=e,o={match:!1,pathIndex:0,commandIndex:0};r=n.length)return o;var a=t.segments[r],l=Of(n[i]),s=i0&&void 0===l)break;if(l&&s&&"object"==typeof s&&void 0===s.outlets){if(!jf(l,s,a))return o;i+=2}else{if(!jf(l,{},a))return o;i++}r++}return{match:!0,pathIndex:r,commandIndex:i}}(t,e,n),r=n.slice(i.commandIndex);if(i.match&&i.pathIndex0?new Xp([],((i={})[Ep]=t,i)):t;return new qp(r,e,n)},t.prototype.expandSegmentGroup=function(t,e,n,i){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(t,e,n).pipe(nt(function(t){return new Xp([],t)})):this.expandSegment(t,n,e,n.segments,i,!0)},t.prototype.expandChildren=function(t,e,n){var i=this;return function(n,r){if(0===Object.keys(n).length)return cc({});var o=[],a=[],l={};return Wp(n,function(n,r){var s,u,c=(s=r,u=n,i.expandSegmentGroup(t,e,u,s)).pipe(nt(function(t){return l[r]=t}));r===Ep?o.push(c):a.push(c)}),cc.apply(null,o.concat(a)).pipe(dc(),Zh(),nt(function(){return l}))}(n.children)},t.prototype.expandSegment=function(t,e,n,i,r,o){var a=this;return cc.apply(void 0,d(n)).pipe(nt(function(l){return a.expandSegmentAgainstRoute(t,e,n,l,i,r,o).pipe(Jh(function(t){if(t instanceof Wf)return cc(null);throw t}))}),dc(),tp(function(t){return!!t}),Jh(function(t,n){if(t instanceof Ih||"EmptyError"===t.name){if(a.noLeftoversInUrl(e,i,r))return cc(new Xp([],{}));throw new Wf(e)}throw t}))},t.prototype.noLeftoversInUrl=function(t,e,n){return 0===e.length&&!t.children[n]},t.prototype.expandSegmentAgainstRoute=function(t,e,n,i,r,o,a){return $f(i)!==o?Gf(e):void 0===i.redirectTo?this.matchSegmentAgainstRoute(t,e,i,r):a&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(t,e,n,i,r,o):Gf(e)},t.prototype.expandSegmentAgainstRouteUsingRedirect=function(t,e,n,i,r,o){return"**"===i.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(t,n,i,o):this.expandRegularSegmentAgainstRouteUsingRedirect(t,e,n,i,r,o)},t.prototype.expandWildCardWithParamsAgainstRouteUsingRedirect=function(t,e,n,i){var r=this,o=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith("/")?qf(o):this.lineralizeSegments(n,o).pipe(lt(function(n){var o=new Xp(n,{});return r.expandSegment(t,o,e,n,i,!1)}))},t.prototype.expandRegularSegmentAgainstRouteUsingRedirect=function(t,e,n,i,r,o){var a=this,l=Zf(e,i,r),s=l.consumedSegments,u=l.lastChild,c=l.positionalParamSegments;if(!l.matched)return Gf(e);var d=this.applyRedirectCommands(s,i.redirectTo,c);return i.redirectTo.startsWith("/")?qf(d):this.lineralizeSegments(i,d).pipe(lt(function(i){return a.expandSegment(t,e,n,i.concat(r.slice(u)),o,!1)}))},t.prototype.matchSegmentAgainstRoute=function(t,e,n,i){var r=this;if("**"===n.path)return n.loadChildren?this.configLoader.load(t.injector,n).pipe(nt(function(t){return n._loadedConfig=t,new Xp(i,{})})):cc(new Xp(i,{}));var a=Zf(e,n,i),l=a.consumedSegments,s=a.lastChild;if(!a.matched)return Gf(e);var c=i.slice(s);return this.getChildConfig(t,n,i).pipe(lt(function(t){var n=t.module,i=t.routes,a=function(t,e,n,i){return n.length>0&&function(t,e,n){return i.some(function(n){return Qf(t,e,n)&&$f(n)!==Ep})}(t,n)?{segmentGroup:Jf(new Xp(e,function(t,e){var n,i,r={};r[Ep]=e;try{for(var o=u(t),a=o.next();!a.done;a=o.next()){var l=a.value;""===l.path&&$f(l)!==Ep&&(r[$f(l)]=new Xp([],{}))}}catch(s){n={error:s}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}return r}(i,new Xp(n,t.children)))),slicedSegments:[]}:0===n.length&&function(t,e,n){return i.some(function(n){return Qf(t,e,n)})}(t,n)?{segmentGroup:Jf(new Xp(t.segments,function(t,e,n,i){var r,a,l={};try{for(var s=u(n),c=s.next();!c.done;c=s.next()){var d=c.value;Qf(t,e,d)&&!i[$f(d)]&&(l[$f(d)]=new Xp([],{}))}}catch(h){r={error:h}}finally{try{c&&!c.done&&(a=s.return)&&a.call(s)}finally{if(r)throw r.error}}return o({},i,l)}(t,n,i,t.children))),slicedSegments:n}:{segmentGroup:t,slicedSegments:n}}(e,l,c,i),s=a.segmentGroup,d=a.slicedSegments;return 0===d.length&&s.hasChildren()?r.expandChildren(n,i,s).pipe(nt(function(t){return new Xp(l,t)})):0===i.length&&0===d.length?cc(new Xp(l,{})):r.expandSegment(n,s,i,d,Ep,!0).pipe(nt(function(t){return new Xp(l.concat(t.segments),t.children)}))}))},t.prototype.getChildConfig=function(t,e,n){var i=this;return e.children?cc(new Ip(e.children,t)):e.loadChildren?void 0!==e._loadedConfig?cc(e._loadedConfig):function(t,e,n){var i,r=e.canLoad;return r&&0!==r.length?at(r).pipe(nt(function(i){var r,o=t.get(i);if(function(t){return t&&Vf(t.canLoad)}(o))r=o.canLoad(e,n);else{if(!Vf(o))throw new Error("Invalid CanLoad guard");r=o(e,n)}return Up(r)})).pipe(dc(),(i=function(t){return!0===t},function(t){return t.lift(new ep(i,void 0,t))})):cc(!0)}(t.injector,e,n).pipe(lt(function(n){return n?i.configLoader.load(t.injector,e).pipe(nt(function(t){return e._loadedConfig=t,t})):function(t){return new Y(function(e){return e.error(Yp("Cannot load children because the guard of the route \"path: '"+t.path+"'\" returned false"))})}(e)})):cc(new Ip([],t))},t.prototype.lineralizeSegments=function(t,e){for(var n=[],i=e.root;;){if(n=n.concat(i.segments),0===i.numberOfChildren)return cc(n);if(i.numberOfChildren>1||!i.children[Ep])return Xf(t.redirectTo);i=i.children[Ep]}},t.prototype.applyRedirectCommands=function(t,e,n){return this.applyRedirectCreatreUrlTree(e,this.urlSerializer.parse(e),t,n)},t.prototype.applyRedirectCreatreUrlTree=function(t,e,n,i){var r=this.createSegmentGroup(t,e.root,n,i);return new qp(r,this.createQueryParams(e.queryParams,this.urlTree.queryParams),e.fragment)},t.prototype.createQueryParams=function(t,e){var n={};return Wp(t,function(t,i){if("string"==typeof t&&t.startsWith(":")){var r=t.substring(1);n[i]=e[r]}else n[i]=t}),n},t.prototype.createSegmentGroup=function(t,e,n,i){var r=this,o=this.createSegments(t,e.segments,n,i),a={};return Wp(e.children,function(e,o){a[o]=r.createSegmentGroup(t,e,n,i)}),new Xp(o,a)},t.prototype.createSegments=function(t,e,n,i){var r=this;return e.map(function(e){return e.path.startsWith(":")?r.findPosParam(t,e,i):r.findOrReturn(e,n)})},t.prototype.findPosParam=function(t,e,n){var i=n[e.path.substring(1)];if(!i)throw new Error("Cannot redirect to '"+t+"'. Cannot find '"+e.path+"'.");return i},t.prototype.findOrReturn=function(t,e){var n,i,r=0;try{for(var o=u(e),a=o.next();!a.done;a=o.next()){var l=a.value;if(l.path===t.path)return e.splice(r),l;r++}}catch(s){n={error:s}}finally{try{a&&!a.done&&(i=o.return)&&i.call(o)}finally{if(n)throw n.error}}return t},t}();function Zf(t,e,n){if(""===e.path)return"full"===e.pathMatch&&(t.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};var i=(e.matcher||Rp)(n,t,e);return i?{matched:!0,consumedSegments:i.consumed,lastChild:i.consumed.length,positionalParamSegments:i.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function Jf(t){if(1===t.numberOfChildren&&t.children[Ep]){var e=t.children[Ep];return new Xp(t.segments.concat(e.segments),e.children)}return t}function Qf(t,e,n){return(!(t.hasChildren()||e.length>0)||"full"!==n.pathMatch)&&""===n.path&&void 0!==n.redirectTo}function $f(t){return t.outlet||Ep}var tm=function(){return function(t){this.path=t,this.route=this.path[this.path.length-1]}}(),em=function(){return function(t,e){this.component=t,this.route=e}}();function nm(t,e,n){var i=function(t){if(!t)return null;for(var e=t.parent;e;e=e.parent){var n=e.routeConfig;if(n&&n._loadedConfig)return n._loadedConfig}return null}(e);return(i?i.module.injector:n).get(t)}function im(t,e,n,i,r){void 0===r&&(r={canDeactivateChecks:[],canActivateChecks:[]});var o=_f(e);return t.children.forEach(function(t){!function(t,e,n,i,r){void 0===r&&(r={canDeactivateChecks:[],canActivateChecks:[]});var o=t.value,a=e?e.value:null,l=n?n.getContext(t.value.outlet):null;if(a&&o.routeConfig===a.routeConfig){var s=function(t,e,n){if("function"==typeof n)return n(t,e);switch(n){case"pathParamsChange":return!Zp(t.url,e.url);case"pathParamsOrQueryParamsChange":return!Zp(t.url,e.url)||!Np(t.queryParams,e.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!Df(t,e)||!Np(t.queryParams,e.queryParams);case"paramsChange":default:return!Df(t,e)}}(a,o,o.routeConfig.runGuardsAndResolvers);s?r.canActivateChecks.push(new tm(i)):(o.data=a.data,o._resolvedData=a._resolvedData),im(t,e,o.component?l?l.children:null:n,i,r),s&&r.canDeactivateChecks.push(new em(l&&l.outlet&&l.outlet.component||null,a))}else a&&rm(e,l,r),r.canActivateChecks.push(new tm(i)),im(t,null,o.component?l?l.children:null:n,i,r)}(t,o[t.value.outlet],n,i.concat([t.value]),r),delete o[t.value.outlet]}),Wp(o,function(t,e){return rm(t,n.getContext(e),r)}),r}function rm(t,e,n){var i=_f(t),r=t.value;Wp(i,function(t,i){rm(t,r.component?e?e.children.getContext(i):null:e,n)}),n.canDeactivateChecks.push(new em(r.component&&e&&e.outlet&&e.outlet.isActivated?e.outlet.component:null,r))}var om=Symbol("INITIAL_VALUE");function am(){return ip(function(t){return zh.apply(void 0,d(t.map(function(t){return t.pipe(Ac(1),hc(om))}))).pipe(ap(function(t,e){var n=!1;return e.reduce(function(t,i,r){if(t!==om)return t;if(i===om&&(n=!0),!n){if(!1===i)return i;if(r===e.length-1||Bf(i))return i}return t},t)},om),Cc(function(t){return t!==om}),nt(function(t){return Bf(t)?t:!0===t}),Ac(1))})}function lm(t,e){return null!==t&&e&&e(new Cp(t)),cc(!0)}function sm(t,e){return null!==t&&e&&e(new Mp(t)),cc(!0)}function um(t,e,n){var i=e.routeConfig?e.routeConfig.canActivate:null;return i&&0!==i.length?cc(i.map(function(i){return Nh(function(){var r,o=nm(i,e,n);if(function(t){return t&&Vf(t.canActivate)}(o))r=Up(o.canActivate(e,t));else{if(!Vf(o))throw new Error("Invalid CanActivate guard");r=Up(o(e,t))}return r.pipe(tp())})})).pipe(am()):cc(!0)}function cm(t,e,n){var i=e[e.length-1],r=e.slice(0,e.length-1).reverse().map(function(t){return function(t){var e=t.routeConfig?t.routeConfig.canActivateChild:null;return e&&0!==e.length?{node:t,guards:e}:null}(t)}).filter(function(t){return null!==t}).map(function(e){return Nh(function(){return cc(e.guards.map(function(r){var o,a=nm(r,e.node,n);if(function(t){return t&&Vf(t.canActivateChild)}(a))o=Up(a.canActivateChild(i,t));else{if(!Vf(a))throw new Error("Invalid CanActivateChild guard");o=Up(a(i,t))}return o.pipe(tp())})).pipe(am())})});return cc(r).pipe(am())}var dm=function(){return function(){}}(),hm=function(){function t(t,e,n,i,r,o){this.rootComponentType=t,this.config=e,this.urlTree=n,this.url=i,this.paramsInheritanceStrategy=r,this.relativeLinkResolution=o}return t.prototype.recognize=function(){try{var t=mm(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,e=this.processSegmentGroup(this.config,t,Ep),n=new kf([],Object.freeze({}),Object.freeze(o({},this.urlTree.queryParams)),this.urlTree.fragment,{},Ep,this.rootComponentType,null,this.urlTree.root,-1,{}),i=new yf(n,e),r=new Mf(this.url,i);return this.inheritParamsAndData(r._root),cc(r)}catch(a){return new Y(function(t){return t.error(a)})}},t.prototype.inheritParamsAndData=function(t){var e=this,n=t.value,i=wf(n,this.paramsInheritanceStrategy);n.params=Object.freeze(i.params),n.data=Object.freeze(i.data),t.children.forEach(function(t){return e.inheritParamsAndData(t)})},t.prototype.processSegmentGroup=function(t,e,n){return 0===e.segments.length&&e.hasChildren()?this.processChildren(t,e):this.processSegment(t,e,e.segments,n)},t.prototype.processChildren=function(t,e){var n,i=this,r=Jp(e,function(e,n){return i.processSegmentGroup(t,e,n)});return n={},r.forEach(function(t){var e=n[t.value.outlet];if(e){var i=e.url.map(function(t){return t.toString()}).join("/"),r=t.value.url.map(function(t){return t.toString()}).join("/");throw new Error("Two segments cannot have the same outlet name: '"+i+"' and '"+r+"'.")}n[t.value.outlet]=t.value}),r.sort(function(t,e){return t.value.outlet===Ep?-1:e.value.outlet===Ep?1:t.value.outlet.localeCompare(e.value.outlet)}),r},t.prototype.processSegment=function(t,e,n,i){var r,o;try{for(var a=u(t),l=a.next();!l.done;l=a.next()){var s=l.value;try{return this.processSegmentAgainstRoute(s,e,n,i)}catch(c){if(!(c instanceof dm))throw c}}}catch(d){r={error:d}}finally{try{l&&!l.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}if(this.noLeftoversInUrl(e,n,i))return[];throw new dm},t.prototype.noLeftoversInUrl=function(t,e,n){return 0===e.length&&!t.children[n]},t.prototype.processSegmentAgainstRoute=function(t,e,n,i){if(t.redirectTo)throw new dm;if((t.outlet||Ep)!==i)throw new dm;var r,a=[],l=[];if("**"===t.path){var s=n.length>0?Bp(n).parameters:{};r=new kf(n,s,Object.freeze(o({},this.urlTree.queryParams)),this.urlTree.fragment,_m(t),i,t.component,t,pm(e),fm(e)+n.length,vm(t))}else{var u=function(t,e,n){if(""===e.path){if("full"===e.pathMatch&&(t.hasChildren()||n.length>0))throw new dm;return{consumedSegments:[],lastChild:0,parameters:{}}}var i=(e.matcher||Rp)(n,t,e);if(!i)throw new dm;var r={};Wp(i.posParams,function(t,e){r[e]=t.path});var a=i.consumed.length>0?o({},r,i.consumed[i.consumed.length-1].parameters):r;return{consumedSegments:i.consumed,lastChild:i.consumed.length,parameters:a}}(e,t,n);a=u.consumedSegments,l=n.slice(u.lastChild),r=new kf(a,u.parameters,Object.freeze(o({},this.urlTree.queryParams)),this.urlTree.fragment,_m(t),i,t.component,t,pm(e),fm(e)+a.length,vm(t))}var c=function(t){return t.children?t.children:t.loadChildren?t._loadedConfig.routes:[]}(t),d=mm(e,a,l,c,this.relativeLinkResolution),h=d.segmentGroup,p=d.slicedSegments;if(0===p.length&&h.hasChildren()){var f=this.processChildren(c,h);return[new yf(r,f)]}if(0===c.length&&0===p.length)return[new yf(r,[])];var m=this.processSegment(c,h,p,Ep);return[new yf(r,m)]},t}();function pm(t){for(var e=t;e._sourceSegment;)e=e._sourceSegment;return e}function fm(t){for(var e=t,n=e._segmentIndexShift?e._segmentIndexShift:0;e._sourceSegment;)n+=(e=e._sourceSegment)._segmentIndexShift?e._segmentIndexShift:0;return n-1}function mm(t,e,n,i,r){if(n.length>0&&function(t,e,n){return i.some(function(n){return gm(t,e,n)&&ym(n)!==Ep})}(t,n)){var a=new Xp(e,function(t,e,n,i){var r,o,a={};a[Ep]=i,i._sourceSegment=t,i._segmentIndexShift=e.length;try{for(var l=u(n),s=l.next();!s.done;s=l.next()){var c=s.value;if(""===c.path&&ym(c)!==Ep){var d=new Xp([],{});d._sourceSegment=t,d._segmentIndexShift=e.length,a[ym(c)]=d}}}catch(h){r={error:h}}finally{try{s&&!s.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}return a}(t,e,i,new Xp(n,t.children)));return a._sourceSegment=t,a._segmentIndexShift=e.length,{segmentGroup:a,slicedSegments:[]}}if(0===n.length&&function(t,e,n){return i.some(function(n){return gm(t,e,n)})}(t,n)){var l=new Xp(t.segments,function(t,e,n,i,r,a){var l,s,c={};try{for(var d=u(i),h=d.next();!h.done;h=d.next()){var p=h.value;if(gm(t,n,p)&&!r[ym(p)]){var f=new Xp([],{});f._sourceSegment=t,f._segmentIndexShift="legacy"===a?t.segments.length:e.length,c[ym(p)]=f}}}catch(m){l={error:m}}finally{try{h&&!h.done&&(s=d.return)&&s.call(d)}finally{if(l)throw l.error}}return o({},r,c)}(t,e,n,i,t.children,r));return l._sourceSegment=t,l._segmentIndexShift=e.length,{segmentGroup:l,slicedSegments:n}}var s=new Xp(t.segments,t.children);return s._sourceSegment=t,s._segmentIndexShift=e.length,{segmentGroup:s,slicedSegments:n}}function gm(t,e,n){return(!(t.hasChildren()||e.length>0)||"full"!==n.pathMatch)&&""===n.path&&void 0===n.redirectTo}function ym(t){return t.outlet||Ep}function _m(t){return t.data||{}}function vm(t){return t.resolve||{}}function bm(t,e,n,i){var r=nm(t,e,i);return Up(r.resolve?r.resolve(e,n):r(e,n))}function xm(t){return function(e){return e.pipe(ip(function(e){var n=t(e);return n?at(n).pipe(nt(function(){return e})):at([e])}))}}var wm=function(){return function(){}}(),km=function(){function t(){}return t.prototype.shouldDetach=function(t){return!1},t.prototype.store=function(t,e){},t.prototype.shouldAttach=function(t){return!1},t.prototype.retrieve=function(t){return null},t.prototype.shouldReuseRoute=function(t,e){return t.routeConfig===e.routeConfig},t}(),Mm=new Lt("ROUTES"),Sm=function(){function t(t,e,n,i){this.loader=t,this.compiler=e,this.onLoadStartListener=n,this.onLoadEndListener=i}return t.prototype.load=function(t,e){var n=this;return this.onLoadStartListener&&this.onLoadStartListener(e),this.loadModuleFactory(e.loadChildren).pipe(nt(function(i){n.onLoadEndListener&&n.onLoadEndListener(e);var r=i.create(t);return new Ip(Vp(r.injector.get(Mm)).map(Hp),r)}))},t.prototype.loadModuleFactory=function(t){var e=this;return"string"==typeof t?at(this.loader.load(t)):Up(t()).pipe(lt(function(t){return t instanceof Ne?cc(t):at(e.compiler.compileModuleAsync(t))}))},t}(),Cm=function(){return function(){}}(),Lm=function(){function t(){}return t.prototype.shouldProcessUrl=function(t){return!0},t.prototype.extract=function(t){return t},t.prototype.merge=function(t,e){return t},t}();function Dm(t){throw t}function Tm(t,e,n){return e.parse("/")}function Em(t,e){return cc(null)}var Am=function(){function t(t,e,n,i,r,o,a,l){var s=this;this.rootComponentType=t,this.urlSerializer=e,this.rootContexts=n,this.location=i,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new H,this.errorHandler=Dm,this.malformedUriErrorHandler=Tm,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:Em,afterPreactivation:Em},this.urlHandlingStrategy=new Lm,this.routeReuseStrategy=new km,this.onSameUrlNavigation="ignore",this.paramsInheritanceStrategy="emptyOnly",this.urlUpdateStrategy="deferred",this.relativeLinkResolution="legacy",this.ngModule=r.get(He),this.console=r.get(ui);var u=r.get(Mi);this.isNgZoneEnabled=u instanceof Mi,this.resetConfig(l),this.currentUrlTree=new qp(new Xp([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new Sm(o,a,function(t){return s.triggerEvent(new wp(t))},function(t){return s.triggerEvent(new kp(t))}),this.routerState=bf(this.currentUrlTree,this.rootComponentType),this.transitions=new Th({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:"imperative",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}return t.prototype.setupNavigations=function(t){var e=this,n=this.events;return t.pipe(Cc(function(t){return 0!==t.id}),nt(function(t){return o({},t,{extractedUrl:e.urlHandlingStrategy.extract(t.rawUrl)})}),ip(function(t){var i,r,a,l=!1,s=!1;return cc(t).pipe(mc(function(t){e.currentNavigation={id:t.id,initialUrl:t.currentRawUrl,extractedUrl:t.extractedUrl,trigger:t.source,extras:t.extras,previousNavigation:e.lastSuccessfulNavigation?o({},e.lastSuccessfulNavigation,{previousNavigation:null}):null}}),ip(function(t){var i,r,a,l,s=!e.navigated||t.extractedUrl.toString()!==e.browserUrlTree.toString();if(("reload"===e.onSameUrlNavigation||s)&&e.urlHandlingStrategy.shouldProcessUrl(t.rawUrl))return cc(t).pipe(ip(function(t){var i=e.transitions.getValue();return n.next(new pp(t.id,e.serializeUrl(t.extractedUrl),t.source,t.restoredState)),i!==e.transitions.getValue()?sc:[t]}),ip(function(t){return Promise.resolve(t)}),(i=e.ngModule.injector,r=e.configLoader,a=e.urlSerializer,l=e.config,function(t){return t.pipe(ip(function(t){return function(e,n,i,r,o){return new Kf(e,n,i,t.extractedUrl,o).apply()}(i,r,a,0,l).pipe(nt(function(e){return o({},t,{urlAfterRedirects:e})}))}))}),mc(function(t){e.currentNavigation=o({},e.currentNavigation,{finalUrl:t.urlAfterRedirects})}),function(t,n,i,r,a){return function(i){return i.pipe(lt(function(i){return function(t,e,n,i,r,o){return void 0===r&&(r="emptyOnly"),void 0===o&&(o="legacy"),new hm(t,e,n,i,r,o).recognize()}(t,n,i.urlAfterRedirects,(l=i.urlAfterRedirects,e.serializeUrl(l)),r,a).pipe(nt(function(t){return o({},i,{targetSnapshot:t})}));var l}))}}(e.rootComponentType,e.config,0,e.paramsInheritanceStrategy,e.relativeLinkResolution),mc(function(t){"eager"===e.urlUpdateStrategy&&(t.extras.skipLocationChange||e.setBrowserUrl(t.urlAfterRedirects,!!t.extras.replaceUrl,t.id),e.browserUrlTree=t.urlAfterRedirects)}),mc(function(t){var i=new yp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);n.next(i)}));if(s&&e.rawUrlTree&&e.urlHandlingStrategy.shouldProcessUrl(e.rawUrlTree)){var u=t.extractedUrl,c=t.source,d=t.restoredState,h=t.extras,p=new pp(t.id,e.serializeUrl(u),c,d);n.next(p);var f=bf(u,e.rootComponentType).snapshot;return cc(o({},t,{targetSnapshot:f,urlAfterRedirects:u,extras:o({},h,{skipLocationChange:!1,replaceUrl:!1})}))}return e.rawUrlTree=t.rawUrl,t.resolve(null),sc}),xm(function(t){var n=t.extras;return e.hooks.beforePreactivation(t.targetSnapshot,{navigationId:t.id,appliedUrlTree:t.extractedUrl,rawUrlTree:t.rawUrl,skipLocationChange:!!n.skipLocationChange,replaceUrl:!!n.replaceUrl})}),mc(function(t){var n=new _p(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);e.triggerEvent(n)}),nt(function(t){return o({},t,{guards:(n=t.targetSnapshot,i=t.currentSnapshot,r=e.rootContexts,a=n._root,im(a,i?i._root:null,r,[a.value]))});var n,i,r,a}),function(t,e){return function(n){return n.pipe(lt(function(n){var i=n.targetSnapshot,r=n.currentSnapshot,a=n.guards,l=a.canActivateChecks,s=a.canDeactivateChecks;return 0===s.length&&0===l.length?cc(o({},n,{guardsResult:!0})):function(t,e,n,i){return at(s).pipe(lt(function(t){return function(t,e,n,i,r){var o=e&&e.routeConfig?e.routeConfig.canDeactivate:null;return o&&0!==o.length?cc(o.map(function(o){var a,l=nm(o,e,r);if(function(t){return t&&Vf(t.canDeactivate)}(l))a=Up(l.canDeactivate(t,e,n,i));else{if(!Vf(l))throw new Error("Invalid CanDeactivate guard");a=Up(l(t,e,n,i))}return a.pipe(tp())})).pipe(am()):cc(!0)}(t.component,t.route,n,e,i)}),tp(function(t){return!0!==t},!0))}(0,i,r,t).pipe(lt(function(n){return n&&"boolean"==typeof n?function(t,e,n,i){return at(l).pipe(Zd(function(e){return at([sm(e.route.parent,i),lm(e.route,i),cm(t,e.path,n),um(t,e.route,n)]).pipe(dc(),tp(function(t){return!0!==t},!0))}),tp(function(t){return!0!==t},!0))}(i,0,t,e):cc(n)}),nt(function(t){return o({},n,{guardsResult:t})}))}))}}(e.ngModule.injector,function(t){return e.triggerEvent(t)}),mc(function(t){if(Bf(t.guardsResult)){var n=Yp('Redirecting to "'+e.serializeUrl(t.guardsResult)+'"');throw n.url=t.guardsResult,n}}),mc(function(t){var n=new vp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot,!!t.guardsResult);e.triggerEvent(n)}),Cc(function(t){if(!t.guardsResult){e.resetUrlToCurrentUrlTree();var i=new mp(t.id,e.serializeUrl(t.extractedUrl),"");return n.next(i),t.resolve(!1),!1}return!0}),xm(function(t){if(t.guards.canActivateChecks.length)return cc(t).pipe(mc(function(t){var n=new bp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);e.triggerEvent(n)}),(n=e.paramsInheritanceStrategy,i=e.ngModule.injector,function(t){return t.pipe(lt(function(t){var e=t.targetSnapshot,r=t.guards.canActivateChecks;return r.length?at(r).pipe(Zd(function(t){return function(t,n,i,r){return function(t,e,n,i){var r=Object.keys(t);if(0===r.length)return cc({});if(1===r.length){var o=r[0];return bm(t[o],e,n,i).pipe(nt(function(t){var e;return(e={})[o]=t,e}))}var a={};return at(r).pipe(lt(function(r){return bm(t[r],e,n,i).pipe(nt(function(t){return a[r]=t,t}))})).pipe(Zh(),nt(function(){return a}))}(t._resolve,t,e,r).pipe(nt(function(e){return t._resolvedData=e,t.data=o({},t.data,wf(t,i).resolve),null}))}(t.route,0,n,i)}),function(t,e){return arguments.length>=2?function(e){return P(ap(t,void 0),Vh(1),qh(void 0))(e)}:function(e){return P(ap(function(e,n,i){return t(e)}),Vh(1))(e)}}(function(t,e){return t}),nt(function(e){return t})):cc(t)}))}),mc(function(t){var n=new xp(t.id,e.serializeUrl(t.extractedUrl),e.serializeUrl(t.urlAfterRedirects),t.targetSnapshot);e.triggerEvent(n)}));var n,i}),xm(function(t){var n=t.extras;return e.hooks.afterPreactivation(t.targetSnapshot,{navigationId:t.id,appliedUrlTree:t.extractedUrl,rawUrlTree:t.rawUrl,skipLocationChange:!!n.skipLocationChange,replaceUrl:!!n.replaceUrl})}),nt(function(t){var n,i,r,a=(r=function t(e,n,i){if(i&&e.shouldReuseRoute(n.value,i.value.snapshot)){(s=i.value)._futureSnapshot=n.value;var r=function(e,n,i){return n.children.map(function(n){var r,o;try{for(var a=u(i.children),l=a.next();!l.done;l=a.next()){var s=l.value;if(e.shouldReuseRoute(s.value.snapshot,n.value))return t(e,n,s)}}catch(c){r={error:c}}finally{try{l&&!l.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}return t(e,n)})}(e,n,i);return new yf(s,r)}var o=e.retrieve(n.value);if(o){var a=o.route;return function t(e,n){if(e.value.routeConfig!==n.value.routeConfig)throw new Error("Cannot reattach ActivatedRouteSnapshot created from a different route");if(e.children.length!==n.children.length)throw new Error("Cannot reattach ActivatedRouteSnapshot with a different number of children");n.value._futureSnapshot=e.value;for(var i=0;il;){if(s-=l,!(a=a.parent))throw new Error("Invalid number of '../'");l=a.segments.length}return new Pf(a,!1,l-s)}()}(o,0,t),l=a.processChildren?Rf(a.segmentGroup,a.index,o.commands):Yf(a.segmentGroup,a.index,o.commands);return Ef(a.segmentGroup,l,e,i,r)}(u,this.currentUrlTree,t,h,c)},t.prototype.navigateByUrl=function(t,e){void 0===e&&(e={skipLocationChange:!1}),tn()&&this.isNgZoneEnabled&&!Mi.isInAngularZone()&&this.console.warn("Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?");var n=Bf(t)?t:this.parseUrl(t),i=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(i,"imperative",null,e)},t.prototype.navigate=function(t,e){return void 0===e&&(e={skipLocationChange:!1}),function(t){for(var e=0;e0?t.prototype.requestAsyncId.call(this,e,n,i):(e.actions.push(this),e.scheduled||(e.scheduled=(r=e.flush.bind(e,null),o=ug++,cg[o]=r,Promise.resolve().then(function(){return function(t){var e=cg[t];e&&e()}(o)}),o)));var r,o},e.prototype.recycleAsyncId=function(e,n,i){if(void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0)return t.prototype.recycleAsyncId.call(this,e,n,i);0===e.actions.length&&(delete cg[n],e.scheduled=void 0)},e}(_c),hg=new(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.flush=function(t){this.active=!0,this.scheduled=void 0;var e,n=this.actions,i=-1,r=n.length;t=t||n.shift();do{if(e=t.execute(t.state,t.delay))break}while(++i1?Array.prototype.slice.call(arguments):t)},i,n)})}function fg(t){return function(e){return e.lift(new mg(t))}}var mg=function(){function t(t){this.notifier=t}return t.prototype.call=function(t,e){var n=new gg(t),i=tt(n,this.notifier);return i&&!n.seenValue?(n.add(i),e.subscribe(n)):n},t}(),gg=function(t){function e(e){var n=t.call(this,e)||this;return n.seenValue=!1,n}return r(e,t),e.prototype.notifyNext=function(t,e,n,i,r){this.seenValue=!0,this.complete()},e.prototype.notifyComplete=function(){},e}(et),yg=function(){return function(){}}(),_g=function(){function t(t,e,n,i,r){void 0===t&&(t=!1),void 0===e&&(e="all"),void 0===n&&(n=""),void 0===i&&(i=""),void 0===r&&(r=0),this.matches=t,this.mediaQuery=e,this.mqAlias=n,this.suffix=i,this.priority=r,this.property=""}return t.prototype.clone=function(){return new t(this.matches,this.mediaQuery,this.mqAlias,this.suffix)},t}(),vg=function(){function t(){this.stylesheet=new Map}return t.prototype.addStyleToElement=function(t,e,n){var i=this.stylesheet.get(t);i?i.set(e,n):this.stylesheet.set(t,new Map([[e,n]]))},t.prototype.clearStyles=function(){this.stylesheet.clear()},t.prototype.getStyleForElement=function(t,e){var n=this.stylesheet.get(t),i="";if(n){var r=n.get(e);"number"!=typeof r&&"string"!=typeof r||(i=r+"")}return i},t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}(),bg={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[]},xg=new Lt("Flex Layout token, config options for the library",{providedIn:"root",factory:function(){return bg}}),wg=new Lt("FlexLayoutServerLoaded",{providedIn:"root",factory:function(){return!1}}),kg=new Lt("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:function(){return null}});function Mg(t,e){return t=t?t.clone():new _g,e&&(t.mqAlias=e.alias,t.mediaQuery=e.mediaQuery,t.suffix=e.suffix,t.priority=e.priority),t}var Sg=["row","column","row-reverse","column-reverse"];function Cg(t){if(t)switch(t.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":t="wrap-reverse";break;case"no":case"none":case"nowrap":t="nowrap";break;default:t="wrap"}return t}var Lg=function(){function t(t,e,n,i){this.elementRef=t,this.styleBuilder=e,this.styler=n,this.marshal=i,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new H,this.styleCache=new Map}return Object.defineProperty(t.prototype,"parentElement",{get:function(){return this.elementRef.nativeElement.parentElement},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"nativeElement",{get:function(){return this.elementRef.nativeElement},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activatedValue",{get:function(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)},set:function(t){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,t,this.marshal.activatedAlias)},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(t){var e=this;Object.keys(t).forEach(function(n){if(-1!==e.inputs.indexOf(n)){var i=n.split(".").slice(1).join(".");e.setValue(t[n].currentValue,i)}})},t.prototype.ngOnDestroy=function(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)},t.prototype.init=function(t){void 0===t&&(t=[]),this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),t)},t.prototype.addStyles=function(t,e){var n=this.styleBuilder,i=n.shouldCache,r=this.styleCache.get(t);r&&i||(r=n.buildStyles(t,e),i&&this.styleCache.set(t,r)),this.mru=o({},r),this.applyStyleToElement(r),n.sideEffect(t,r,e)},t.prototype.clearStyles=function(){var t=this;Object.keys(this.mru).forEach(function(e){t.mru[e]=""}),this.applyStyleToElement(this.mru),this.mru={}},t.prototype.triggerUpdate=function(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)},t.prototype.getFlexFlowDirection=function(t,e){if(void 0===e&&(e=!1),t){var n=this.styler.getFlowDirection(t),i=n[0];if(!n[1]&&e){var r=function(t){var e,n,i=function(t){var e=(t=t?t.toLowerCase():"").split(" "),n=e[0],i=e[1],r=e[2];return Sg.find(function(t){return t===n})||(n=Sg[0]),"inline"===i&&(i="inline"!==r?r:"",r="inline"),[n,Cg(i),!!r]}(t);return void 0===(e=i[1])&&(e=null),void 0===(n=i[2])&&(n=!1),{display:n?"inline-flex":"flex","box-sizing":"border-box","flex-direction":i[0],"flex-wrap":e||null}}(i);this.styler.applyStyleToElements(r,[t])}return i.trim()}return"row"},t.prototype.applyStyleToElement=function(t,e,n){void 0===n&&(n=this.nativeElement),this.styler.applyStyleToElement(n,t,e)},t.prototype.setValue=function(t,e){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,t,e)},t.prototype.updateWithValue=function(t){this.addStyles(t)},t}(),Dg=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.99px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.99px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.99px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.99px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.99px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.99px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.99px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.99px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.99px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],Tg="(orientation: portrait) and (max-width: 599.99px)",Eg="(orientation: portrait) and (min-width: 600px) and (max-width: 839.99px)",Ag="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.99px)",Pg="(orientation: portrait) and (min-width: 840px)",Og="(orientation: landscape) and (min-width: 1280px)",Yg={HANDSET:Tg+", (orientation: landscape) and (max-width: 959.99px)",TABLET:Eg+" , "+Ag,WEB:Pg+", "+Og+" ",HANDSET_PORTRAIT:""+Tg,TABLET_PORTRAIT:Eg+" ",WEB_PORTRAIT:""+Pg,HANDSET_LANDSCAPE:"(orientation: landscape) and (max-width: 959.99px)]",TABLET_LANDSCAPE:""+Ag,WEB_LANDSCAPE:""+Og},Rg=[{alias:"handset",priority:2e3,mediaQuery:Yg.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:Yg.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:Yg.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:Yg.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:Yg.TABLET},{alias:"tablet.portrait",priority:2100,mediaQuery:Yg.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:Yg.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:Yg.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:Yg.WEB_PORTRAIT,overlapping:!0}],Ig=/(\.|-|_)/g;function Fg(t){var e=t.length>0?t.charAt(0):"",n=t.length>1?t.slice(1):"";return e.toUpperCase()+n}var zg=new Lt("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:function(){var t=ie(kg),e=ie(xg),n=[].concat.apply([],(t||[]).map(function(t){return Array.isArray(t)?t:[t]}));return function(t,e){void 0===e&&(e=[]);var n,i={};return t.forEach(function(t){i[t.alias]=t}),e.forEach(function(t){i[t.alias]?function(t){for(var e=[],n=1;n-1}));return ht(new Y(function(e){var i=n.registerQuery(t);if(i.length){var r=i.pop();i.forEach(function(t){e.next(t)}),n.source.next(r)}e.complete()}),i)}return this._observable$},t.prototype.registerQuery=function(t){var e=this,n=Array.isArray(t)?t:[t],i=[];return function(t,e){var n=t.filter(function(t){return!Bg[t]});if(n.length>0){var i=n.join(", ");try{var r=e.createElement("style");r.setAttribute("type","text/css"),r.styleSheet||r.appendChild(e.createTextNode("\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media "+i+" {.fx-query-test{ }}\n")),e.head.appendChild(r),n.forEach(function(t){return Bg[t]=r})}catch(o){console.error(o)}}}(n,this._document),n.forEach(function(t){var n=e.registry.get(t);n||((n=e.buildMQL(t)).addListener(function(n){e._zone.run(function(){return e.source.next(new _g(n.matches,t))})}),e.registry.set(t,n)),n.matches&&i.push(new _g(!0,t))}),i},t.prototype.buildMQL=function(t){return function(t,e){return e&&window.matchMedia("all").addListener?window.matchMedia(t):{matches:"all"===t||""===t,media:t,addListener:function(){},removeListener:function(){}}}(t,Ys(this._platformId))},t.ngInjectableDef=St({factory:function(){return new t(ie(Mi),ie(li),ie(As))},token:t,providedIn:"root"}),t}(),Bg={},Wg={alias:"print",mediaQuery:"print",priority:1e3},Ug=function(){function t(t,e){this.breakpoints=t,this.layoutConfig=e,this.isPrinting=!1,this.queue=new Gg,this.deactivations=[]}return t.prototype.withPrintQuery=function(t){return t.concat(["print"])},t.prototype.isPrintEvent=function(t){return t.mediaQuery.startsWith("print")},Object.defineProperty(t.prototype,"printAlias",{get:function(){return this.layoutConfig.printWithBreakpoints||[]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"printBreakPoints",{get:function(){var t=this;return this.printAlias.map(function(e){return t.breakpoints.findByAlias(e)}).filter(function(t){return null!==t})},enumerable:!0,configurable:!0}),t.prototype.getEventBreakpoints=function(t){var e=this.breakpoints.findByQuery(t.mediaQuery);return(e?this.printBreakPoints.concat([e]):this.printBreakPoints).sort(jg)},t.prototype.updateEvent=function(t){var e=this.breakpoints.findByQuery(t.mediaQuery);return this.isPrintEvent(t)&&(e=this.getEventBreakpoints(t)[0],t.mediaQuery=e?e.mediaQuery:""),Mg(t,e)},t.prototype.interceptEvents=function(t){var e=this;return function(n){e.isPrintEvent(n)?n.matches&&!e.isPrinting?(e.startPrinting(t,e.getEventBreakpoints(n)),t.updateStyles()):!n.matches&&e.isPrinting&&(e.stopPrinting(t),t.updateStyles()):e.collectActivations(n)}},t.prototype.blockPropagation=function(){var t=this;return function(e){return!(t.isPrinting||t.isPrintEvent(e))}},t.prototype.startPrinting=function(t,e){this.isPrinting=!0,t.activatedBreakpoints=this.queue.addPrintBreakpoints(e)},t.prototype.stopPrinting=function(t){t.activatedBreakpoints=this.deactivations,this.deactivations=[],this.queue.clear(),this.isPrinting=!1},t.prototype.collectActivations=function(t){if(!this.isPrinting)if(t.matches)this.deactivations=[];else{var e=this.breakpoints.findByQuery(t.mediaQuery);e&&(this.deactivations.push(e),this.deactivations.sort(jg))}},t.ngInjectableDef=St({factory:function(){return new t(ie(Ng),ie(xg))},token:t,providedIn:"root"}),t}(),Gg=function(){function t(){this.printBreakpoints=[]}return t.prototype.addPrintBreakpoints=function(t){var e=this;return t.push(Wg),t.sort(jg),t.forEach(function(t){return e.addBreakpoint(t)}),this.printBreakpoints},t.prototype.addBreakpoint=function(t){t&&void 0===this.printBreakpoints.find(function(e){return e.mediaQuery===t.mediaQuery})&&(this.printBreakpoints=function(t){return!!t&&t.mediaQuery.startsWith("print")}(t)?[t].concat(this.printBreakpoints):this.printBreakpoints.concat([t]))},t.prototype.clear=function(){this.printBreakpoints=[]},t}();function qg(t){for(var e in t){var n=t[e]||"";switch(e){case"display":t.display="flex"===n?["-webkit-flex","flex"]:"inline-flex"===n?["-webkit-inline-flex","inline-flex"]:n;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":t["-webkit-"+e]=n;break;case"flex-direction":t["-webkit-flex-direction"]=n=n||"row",t["flex-direction"]=n;break;case"order":t.order=t["-webkit-"+e]=isNaN(+n)?"0":n}}return t}var Xg=function(){function t(t,e,n,i){this._serverStylesheet=t,this._serverModuleLoaded=e,this._platformId=n,this.layoutConfig=i}return t.prototype.applyStyleToElement=function(t,e,n){void 0===n&&(n=null);var i={};"string"==typeof e&&(i[e]=n,e=i),i=this.layoutConfig.disableVendorPrefixes?e:qg(e),this._applyMultiValueStyleToElement(i,t)},t.prototype.applyStyleToElements=function(t,e){var n=this;void 0===e&&(e=[]);var i=this.layoutConfig.disableVendorPrefixes?t:qg(t);e.forEach(function(t){n._applyMultiValueStyleToElement(i,t)})},t.prototype.getFlowDirection=function(t){var e=this.lookupStyle(t,"flex-direction");return[e||"row",this.lookupInlineStyle(t,"flex-direction")||Rs(this._platformId)&&this._serverModuleLoaded?e:""]},t.prototype.lookupAttributeValue=function(t,e){return t.getAttribute(e)||""},t.prototype.lookupInlineStyle=function(t,e){return Ys(this._platformId)?t.style.getPropertyValue(e):this._getServerStyle(t,e)},t.prototype.lookupStyle=function(t,e,n){void 0===n&&(n=!1);var i="";return t&&((i=this.lookupInlineStyle(t,e))||(Ys(this._platformId)?n||(i=getComputedStyle(t).getPropertyValue(e)):this._serverModuleLoaded&&(i=this._serverStylesheet.getStyleForElement(t,e)))),i?i.trim():""},t.prototype._applyMultiValueStyleToElement=function(t,e){var n=this;Object.keys(t).sort().forEach(function(i){var r=t[i],o=Array.isArray(r)?r:[r];o.sort();for(var a=0,l=o;a0){var a=o.indexOf(":");if(-1===a)throw new Error("Invalid CSS style: "+o);e[o.substr(0,a).trim()]=o.substr(a+1).trim()}}return e},t.prototype._writeStyleAttribute=function(t,e){var n="";for(var i in e)e[i]&&(n+=i+":"+e[i]+";");t.setAttribute("style",n)},t.ngInjectableDef=St({factory:function(){return new t(ie(vg,8),ie(wg,8),ie(li),ie(xg))},token:t,providedIn:"root"}),t}(),Kg=function(){function t(){this.shouldCache=!0}return t.prototype.sideEffect=function(t,e,n){},t}();function Zg(t,e,n){void 0===e&&(e="1"),void 0===n&&(n="1");var i=[e,n,t],r=t.indexOf("calc");if(r>0)i[2]=Jg(t.substring(r).trim()),2==(o=t.substr(0,r).trim().split(" ")).length&&(i[0]=o[0],i[1]=o[1]);else if(0==r)i[2]=Jg(t.trim());else{var o;i=3===(o=t.split(" ")).length?o:[e,n,t]}return i}function Jg(t){return t.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}var Qg=function(){function t(t,e,n){this.matchMedia=t,this.breakpoints=e,this.hook=n,this.activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new H,this.observeActivations()}return Object.defineProperty(t.prototype,"activatedAlias",{get:function(){return this.activatedBreakpoints[0]?this.activatedBreakpoints[0].alias:""},enumerable:!0,configurable:!0}),t.prototype.onMediaChange=function(t){var e=this.findByQuery(t.mediaQuery);e&&((t=Mg(t,e)).matches&&-1===this.activatedBreakpoints.indexOf(e)?(this.activatedBreakpoints.push(e),this.activatedBreakpoints.sort(jg),this.updateStyles()):t.matches||-1===this.activatedBreakpoints.indexOf(e)||(this.activatedBreakpoints.splice(this.activatedBreakpoints.indexOf(e),1),this.activatedBreakpoints.sort(jg),this.updateStyles()))},t.prototype.init=function(t,e,n,i,r){void 0===r&&(r=[]),$g(this.updateMap,t,e,n),$g(this.clearMap,t,e,i),this.buildElementKeyMap(t,e),this.watchExtraTriggers(t,e,r)},t.prototype.getValue=function(t,e,n){var i=this.elementMap.get(t);if(i){var r=void 0!==n?i.get(n):this.getActivatedValues(i,e);if(r)return r.get(e)}},t.prototype.hasValue=function(t,e){var n=this.elementMap.get(t);if(n){var i=this.getActivatedValues(n,e);if(i)return void 0!==i.get(e)||!1}return!1},t.prototype.setValue=function(t,e,n,i){var r=this.elementMap.get(t);if(r){var o=(r.get(i)||new Map).set(e,n);r.set(i,o),this.elementMap.set(t,r)}else r=(new Map).set(i,(new Map).set(e,n)),this.elementMap.set(t,r);var a=this.getValue(t,e);void 0!==a&&this.updateElement(t,e,a)},t.prototype.trackValue=function(t,e){return this.subject.asObservable().pipe(Cc(function(n){return n.element===t&&n.key===e}))},t.prototype.updateStyles=function(){var t=this;this.elementMap.forEach(function(e,n){var i=new Set(t.elementKeyMap.get(n)),r=t.getActivatedValues(e);r&&r.forEach(function(e,r){t.updateElement(n,r,e),i.delete(r)}),i.forEach(function(i){if(r=t.getActivatedValues(e,i)){var o=r.get(i);t.updateElement(n,i,o)}else t.clearElement(n,i)})})},t.prototype.clearElement=function(t,e){var n=this.clearMap.get(t);if(n){var i=n.get(e);i&&(i(),this.subject.next({element:t,key:e,value:""}))}},t.prototype.updateElement=function(t,e,n){var i=this.updateMap.get(t);if(i){var r=i.get(e);r&&(r(n),this.subject.next({element:t,key:e,value:n}))}},t.prototype.releaseElement=function(t){var e=this.watcherMap.get(t);e&&(e.forEach(function(t){return t.unsubscribe()}),this.watcherMap.delete(t));var n=this.elementMap.get(t);n&&(n.forEach(function(t,e){return n.delete(e)}),this.elementMap.delete(t))},t.prototype.triggerUpdate=function(t,e){var n=this,i=this.elementMap.get(t);if(i){var r=this.getActivatedValues(i,e);r&&(e?this.updateElement(t,e,r.get(e)):r.forEach(function(e,i){return n.updateElement(t,i,e)}))}},t.prototype.buildElementKeyMap=function(t,e){var n=this.elementKeyMap.get(t);n||(n=new Set,this.elementKeyMap.set(t,n)),n.add(e)},t.prototype.watchExtraTriggers=function(t,e,n){var i=this;if(n&&n.length){var r=this.watcherMap.get(t);if(r||(r=new Map,this.watcherMap.set(t,r)),!r.get(e)){var o=ht.apply(void 0,n).subscribe(function(){var n=i.getValue(t,e);i.updateElement(t,e,n)});r.set(e,o)}}},t.prototype.findByQuery=function(t){return this.breakpoints.findByQuery(t)},t.prototype.getActivatedValues=function(t,e){for(var n=0;n-1}function ry(t){if(t)switch(t.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":t="wrap-reverse";break;case"no":case"none":case"nowrap":t="nowrap";break;default:t="wrap"}return t}var oy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t){return void 0===(e=(i=ny(t))[1])&&(e=null),void 0===(n=i[2])&&(n=!1),{display:n?"inline-flex":"flex","box-sizing":"border-box","flex-direction":i[0],"flex-wrap":e||null};var e,n,i},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),ay=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"],ly=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=ay,e}return r(e,t),e}(function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.DIRECTIVE_KEY="layout",o.styleCache=sy,o.init(),o}return r(e,t),e}(Lg)),sy=new Map,uy={"margin-left":null,"margin-right":null,"margin-top":null,"margin-bottom":null},cy=function(t){function e(e){var n=t.call(this)||this;return n._styler=e,n}return r(e,t),e.prototype.buildStyles=function(t,e){return t.endsWith(yy)?(n=t=t.slice(0,t.indexOf(yy)),i="0px",r="0px","rtl"===e.directionality?r="-"+n:i="-"+n,{margin:"0px "+i+" -"+n+" "+r}):{};var n,i,r},e.prototype.sideEffect=function(t,e,n){var i,r,a,l=n.items;if(t.endsWith(yy)){var s=(i=t=t.slice(0,t.indexOf(yy)),r="0px",a="0px","rtl"===n.directionality?a=i:r=i,{padding:"0px "+r+" "+i+" "+a});this._styler.applyStyleToElements(s,n.items)}else{var u=l.pop(),c=function(t,e){var n=_y(e.directionality,e.layout),i=o({},uy);return i[n]=t,i}(t,n);this._styler.applyStyleToElements(c,l),this._styler.applyStyleToElements(uy,[u])}},e.ngInjectableDef=St({factory:function(){return new e(ie(Xg))},token:e,providedIn:"root"}),e}(Kg),dy=["fxLayoutGap","fxLayoutGap.xs","fxLayoutGap.sm","fxLayoutGap.md","fxLayoutGap.lg","fxLayoutGap.xl","fxLayoutGap.lt-sm","fxLayoutGap.lt-md","fxLayoutGap.lt-lg","fxLayoutGap.lt-xl","fxLayoutGap.gt-xs","fxLayoutGap.gt-sm","fxLayoutGap.gt-md","fxLayoutGap.gt-lg"],hy=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=dy,e}return r(e,t),e}(function(t){function e(e,n,i,r,o,a){var l=t.call(this,e,o,r,a)||this;l.elRef=e,l.zone=n,l.directionality=i,l.styleUtils=r,l.styleBuilder=o,l.marshal=a,l.layout="row",l.DIRECTIVE_KEY="layout-gap",l.observerSubject=new H;var s=[l.directionality.change,l.observerSubject.asObservable()];return l.init(s),l.marshal.trackValue(l.nativeElement,"layout").pipe(fg(l.destroySubject)).subscribe(l.onLayoutChange.bind(l)),l}return r(e,t),Object.defineProperty(e.prototype,"childrenNodes",{get:function(){for(var t=this.nativeElement.children,e=[],n=t.length;n--;)e[n]=t[n];return e},enumerable:!0,configurable:!0}),e.prototype.ngAfterContentInit=function(){this.buildChildObservable(),this.triggerUpdate()},e.prototype.ngOnDestroy=function(){t.prototype.ngOnDestroy.call(this),this.observer&&this.observer.disconnect()},e.prototype.onLayoutChange=function(t){var e=this,n=t.value.split(" ");this.layout=n[0],ey.find(function(t){return t===e.layout})||(this.layout="row"),this.triggerUpdate()},e.prototype.updateWithValue=function(t){var e=this,n=this.childrenNodes.filter(function(t){return 1===t.nodeType&&e.willDisplay(t)}).sort(function(t,n){var i=+e.styler.lookupStyle(t,"order"),r=+e.styler.lookupStyle(n,"order");return isNaN(i)||isNaN(r)||i===r?0:i>r?1:-1});if(n.length>0){var i=this.directionality.value,r=this.layout;"row"===r&&"rtl"===i?this.styleCache=py:"row"===r&&"rtl"!==i?this.styleCache=my:"column"===r&&"rtl"===i?this.styleCache=fy:"column"===r&&"rtl"!==i&&(this.styleCache=gy),this.addStyles(t,{directionality:i,items:n,layout:r})}},e.prototype.clearStyles=function(){var e,n=Object.keys(this.mru).length>0,i=n?"padding":_y(this.directionality.value,this.layout);n&&t.prototype.clearStyles.call(this),this.styleUtils.applyStyleToElements(((e={})[i]="",e),this.childrenNodes)},e.prototype.willDisplay=function(t){var e=this.marshal.getValue(t,"show-hide");return!0===e||void 0===e&&"none"!==this.styleUtils.lookupStyle(t,"display")},e.prototype.buildChildObservable=function(){var t=this;this.zone.runOutsideAngular(function(){"undefined"!=typeof MutationObserver&&(t.observer=new MutationObserver(function(e){e.some(function(t){return t.addedNodes&&t.addedNodes.length>0||t.removedNodes&&t.removedNodes.length>0})&&t.observerSubject.next()}),t.observer.observe(t.nativeElement,{childList:!0}))})},e}(Lg)),py=new Map,fy=new Map,my=new Map,gy=new Map,yy=" grid";function _y(t,e){switch(e){case"column":return"margin-bottom";case"column-reverse":return"margin-top";case"row":return"rtl"===t?"margin-left":"margin-right";case"row-reverse":return"rtl"===t?"margin-right":"margin-left";default:return"rtl"===t?"margin-left":"margin-right"}}function vy(t){for(var e=[],n=1;n-1?"column":"row",l=iy(a)?"max-width":"max-height",s=iy(a)?"min-width":"min-height",u=String(o).indexOf("calc")>-1,c=u||"auto"===o,d=String(o).indexOf("%")>-1&&!u,h=String(o).indexOf("px")>-1||String(o).indexOf("rem")>-1||String(o).indexOf("em")>-1||String(o).indexOf("vw")>-1||String(o).indexOf("vh")>-1,p=u||h;r="0"==r?0:r;var f=!(i="0"==i?0:i)&&!r,m={},g={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(o||""){case"":o="row"===a?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":i=0,o="auto";break;case"grow":o="100%";break;case"noshrink":r=0,o="auto";break;case"auto":break;case"none":i=0,r=0,o="auto";break;default:p||d||isNaN(o)||(o+="%"),"0%"===o&&(p=!0),"0px"===o&&(o="0%"),m=vy(g,u?{"flex-grow":i,"flex-shrink":r,"flex-basis":p?o:"100%"}:{flex:i+" "+r+" "+(p?o:"100%")})}return m.flex||m["flex-grow"]||(m=vy(g,u?{"flex-grow":i,"flex-shrink":r,"flex-basis":o}:{flex:i+" "+r+" "+o})),"0%"!==o&&"0px"!==o&&"0.000000001px"!==o&&"auto"!==o&&(m[s]=f||p&&i?o:null,m[l]=f||!c&&r?o:null),m[s]||m[l]?e.hasWrap&&(m[u?"flex-basis":"flex"]=m[l]?u?m[l]:i+" "+r+" "+m[l]:u?m[s]:i+" "+r+" "+m[s]):m=vy(g,u?{"flex-grow":i,"flex-shrink":r,"flex-basis":o}:{flex:i+" "+r+" "+o}),vy(m,{"box-sizing":"border-box"})},e.ngInjectableDef=St({factory:function(){return new e(ie(xg))},token:e,providedIn:"root"}),e}(Kg),wy=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"],ky=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=wy,e}return r(e,t),e}(function(t){function e(e,n,i,r,o){var a=t.call(this,e,r,n,o)||this;return a.elRef=e,a.styleUtils=n,a.layoutConfig=i,a.styleBuilder=r,a.marshal=o,a.DIRECTIVE_KEY="flex",a.direction="",a.wrap=!1,a.flexGrow="1",a.flexShrink="1",a.init(),a.parentElement&&(a.marshal.trackValue(a.parentElement,"layout").pipe(fg(a.destroySubject)).subscribe(a.onLayoutChange.bind(a)),a.marshal.trackValue(a.nativeElement,"layout-align").pipe(fg(a.destroySubject)).subscribe(a.triggerReflow.bind(a))),a}return r(e,t),Object.defineProperty(e.prototype,"shrink",{get:function(){return this.flexShrink},set:function(t){this.flexShrink=t||"1",this.triggerReflow()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"grow",{get:function(){return this.flexGrow},set:function(t){this.flexGrow=t||"1",this.triggerReflow()},enumerable:!0,configurable:!0}),e.prototype.onLayoutChange=function(t){var e=t.value.split(" ");this.direction=e[0],this.wrap=void 0!==e[1]&&"wrap"===e[1],this.triggerUpdate()},e.prototype.updateWithValue=function(t){this.direction||(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent));var e=this.direction,n=e.startsWith("row"),i=this.wrap;n&&i?this.styleCache=Cy:n&&!i?this.styleCache=My:!n&&i?this.styleCache=Ly:n||i||(this.styleCache=Sy);var r=Zg(String(t).replace(";",""),this.flexGrow,this.flexShrink);this.addStyles(r.join(" "),{direction:e,hasWrap:i})},e.prototype.triggerReflow=function(){var t=this.activatedValue;if(void 0!==t){var e=Zg(t,this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,e.join(" "))}},e}(Lg)),My=new Map,Sy=new Map,Cy=new Map,Ly=new Map,Dy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t){var e={};switch(t=t||"stretch"){case"start":e["align-self"]="flex-start";break;case"end":e["align-self"]="flex-end";break;default:e["align-self"]=t}return e},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),Ty=["fxFlexAlign","fxFlexAlign.xs","fxFlexAlign.sm","fxFlexAlign.md","fxFlexAlign.lg","fxFlexAlign.xl","fxFlexAlign.lt-sm","fxFlexAlign.lt-md","fxFlexAlign.lt-lg","fxFlexAlign.lt-xl","fxFlexAlign.gt-xs","fxFlexAlign.gt-sm","fxFlexAlign.gt-md","fxFlexAlign.gt-lg"],Ey=function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.DIRECTIVE_KEY="flex-align",o.styleCache=Ay,o.init(),o}return r(e,t),e}(Lg),Ay=new Map,Py=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=Ty,e}return r(e,t),e}(Ey),Oy={margin:0,width:"100%",height:"100%","min-width":"100%","min-height":"100%"},Yy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t){return Oy},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),Ry=function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.styleCache=Iy,o.addStyles(""),o}return r(e,t),e}(Lg),Iy=new Map,Fy=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.buildStyles=function(t,e){var n={},i=t.split(" "),r=i[1];switch(i[0]){case"center":n["justify-content"]="center";break;case"space-around":n["justify-content"]="space-around";break;case"space-between":n["justify-content"]="space-between";break;case"space-evenly":n["justify-content"]="space-evenly";break;case"end":case"flex-end":n["justify-content"]="flex-end";break;case"start":case"flex-start":default:n["justify-content"]="flex-start"}switch(r){case"start":case"flex-start":n["align-items"]=n["align-content"]="flex-start";break;case"center":n["align-items"]=n["align-content"]="center";break;case"end":case"flex-end":n["align-items"]=n["align-content"]="flex-end";break;case"space-between":n["align-content"]="space-between",n["align-items"]="stretch";break;case"space-around":n["align-content"]="space-around",n["align-items"]="stretch";break;case"baseline":n["align-content"]="stretch",n["align-items"]="baseline";break;case"stretch":default:n["align-items"]=n["align-content"]="stretch"}return vy(n,{display:e.inline?"inline-flex":"flex","flex-direction":e.layout,"box-sizing":"border-box","max-width":"stretch"===r?iy(e.layout)?null:"100%":null,"max-height":"stretch"===r&&iy(e.layout)?"100%":null})},e.ngInjectableDef=St({factory:function(){return new e},token:e,providedIn:"root"}),e}(Kg),zy=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"],jy=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=zy,e}return r(e,t),e}(function(t){function e(e,n,i,r){var o=t.call(this,e,i,n,r)||this;return o.elRef=e,o.styleUtils=n,o.styleBuilder=i,o.marshal=r,o.DIRECTIVE_KEY="layout-align",o.layout="row",o.inline=!1,o.init(),o.marshal.trackValue(o.nativeElement,"layout").pipe(fg(o.destroySubject)).subscribe(o.onLayoutChange.bind(o)),o}return r(e,t),e.prototype.updateWithValue=function(t){var e=this.layout||"row",n=this.inline;"row"===e&&n?this.styleCache=Wy:"row"!==e||n?"row-reverse"===e&&n?this.styleCache=Gy:"row-reverse"!==e||n?"column"===e&&n?this.styleCache=Uy:"column"!==e||n?"column-reverse"===e&&n?this.styleCache=qy:"column-reverse"!==e||n||(this.styleCache=By):this.styleCache=Ny:this.styleCache=Vy:this.styleCache=Hy,this.addStyles(t,{layout:e,inline:n})},e.prototype.onLayoutChange=function(t){var e=this,n=t.value.split(" ");this.layout=n[0],this.inline=t.value.includes("inline"),ey.find(function(t){return t===e.layout})||(this.layout="row"),this.triggerUpdate()},e}(Lg)),Hy=new Map,Ny=new Map,Vy=new Map,By=new Map,Wy=new Map,Uy=new Map,Gy=new Map,qy=new Map,Xy=function(){return function(){}}(),Ky=new Lt("cdk-dir-doc",{providedIn:"root",factory:function(){return ie(As)}}),Zy=function(){function t(t){if(this.value="ltr",this.change=new kn,t){var e=(t.body?t.body.dir:null)||(t.documentElement?t.documentElement.dir:null);this.value="ltr"===e||"rtl"===e?e:"ltr"}}return t.prototype.ngOnDestroy=function(){this.change.complete()},t.ngInjectableDef=St({factory:function(){return new t(ie(Ky,8))},token:t,providedIn:"root"}),t}(),Jy=function(){return function(){}}(),Qy=function(){function t(t){this.r=t.r,this.g=t.g,this.b=t.b}return t.prototype.convertRGBToInt=function(){return(this.r<<16)+(this.g<<8)+this.b},t.prototype.getRGBString=function(){return"rgb("+this.r+","+this.g+","+this.b+")"},t.prototype.componentToHex=function(t){var e=t.toString(16);return 1===e.length?"0"+e:e},t.prototype.rgbToHex=function(){return"#"+this.componentToHex(this.r)+this.componentToHex(this.g)+this.componentToHex(this.b)},t}(),$y=function(){function t(t,e){void 0===e&&(e=", "),this._files=t,this.delimiter=e,this._fileNames=(this._files||[]).map(function(t){return t.name}).join(e)}return Object.defineProperty(t.prototype,"files",{get:function(){return this._files||[]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"fileNames",{get:function(){return this._fileNames},enumerable:!0,configurable:!0}),t}(),t_=function(){function t(e,n,i,r){var o=this;this.ngControl=e,this.fm=n,this._elementRef=i,this._renderer=r,this.stateChanges=new H,this.focused=!1,this.controlType="file-input",this.autofilled=!1,this._required=!1,this.accept=null,this.id="ngx-mat-file-input-"+t.nextId++,this.describedBy="",this._onChange=function(t){},this._onTouched=function(){},null!=this.ngControl&&(this.ngControl.valueAccessor=this),n.monitor(i.nativeElement,!0).subscribe(function(t){o.focused=!!t,o.stateChanges.next()})}return t.prototype.setDescribedByIds=function(t){this.describedBy=t.join(" ")},Object.defineProperty(t.prototype,"value",{get:function(){return this.empty?null:new $y(this._elementRef.nativeElement.value||[])},set:function(t){t&&(this.writeValue(t),this.stateChanges.next())},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"placeholder",{get:function(){return this._placeholder},set:function(t){this._placeholder=t,this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"empty",{get:function(){return!this._elementRef.nativeElement.value||0===this._elementRef.nativeElement.value.length},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"shouldLabelFloat",{get:function(){return this.focused||!this.empty||void 0!==this.valuePlaceholder},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t),this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isDisabled",{get:function(){return this.disabled},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return this._elementRef.nativeElement.disabled},set:function(t){this.setDisabledState(Xu(t)),this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"errorState",{get:function(){return null!==this.ngControl.errors&&!!this.ngControl.touched},enumerable:!0,configurable:!0}),t.prototype.onContainerClick=function(t){"input"===t.target.tagName.toLowerCase()||this.disabled||(this._elementRef.nativeElement.querySelector("input").focus(),this.focused=!0,this.open())},Object.defineProperty(t.prototype,"fileNames",{get:function(){return this.value?this.value.fileNames:this.valuePlaceholder},enumerable:!0,configurable:!0}),t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",t instanceof $y?t.files:null)},t.prototype.registerOnChange=function(t){this._onChange=t},t.prototype.registerOnTouched=function(t){this._onTouched=t},t.prototype.clear=function(t){t&&(t.preventDefault(),t.stopPropagation()),this.value=new $y([]),this._elementRef.nativeElement.querySelector("input").value=null,this._onChange(this.value)},t.prototype.change=function(t){var e=t.target.files,n=[];if(e)for(var i=0;i=n?null:{maxContentSize:{actualSize:n,maxSize:t}}}}}(by||(by={}));var n_=function(){return function(){this.CardGuid="null",this.CardCode="null",this.Version=1,this.Batch=123,this.EnableDoubleChecking=!1,this.EnforceBarcodeDetection=!1,this.PDFPath=new $y([]),this.SCVPath=new $y([]),this.Template=new $y([])}}(),i_=function(){function t(){this.DeviceID="null"}return t.prototype.isValidDate=function(){return this.LastLogin&&"[object Date]"===Object.prototype.toString.call(this.LastLogin)},t.prototype.getDateFormatString=function(){return this.isValidDate()?this.LastLogin.toLocaleString("en-GB"):""},t}(),r_=function(){function t(t){this.DateTime=new Date,t&&(this.Guid=t.Guid,this.CardGuid=t.CardGuid,this.ProcessedColor=t.ProcessedColor,this.RawColor=t.RawColor,this.DateTime=new Date(t.Date),this.DeviceGuid=t.DeviceGuid,this.SampleImageURL=t.SampleImageURL,this.SourceImageURL=t.SourceImageURL,this.ProcessTime=t.ProcessTime,this.InitRGB(),this.CardCode=t.CardCode,this.DeviceModel=t.DeviceModel,this.Email=t.Email,this.Card=new n_,this.Device=new i_,this.Device.Email=t.Email,this.Device.DeviceModel=t.DeviceModel,this.Device.DeviceID=t.DeviceGuid,this.DeltaE=t.DeltaE)}return t.prototype.InitRGB=function(){this.RawColorRGB=this.convertIntToRGB(this.RawColor),this.ProcessedColorRGB=this.convertIntToRGB(this.ProcessedColor)},t.prototype.convertIntToRGB=function(t){return new Qy({r:t>>16&255,g:t>>8&255,b:255&t})},t.prototype.isValidDate=function(){return this.DateTime&&"[object Date]"===Object.prototype.toString.call(this.DateTime)},t.prototype.getDateFormatString=function(){return this.isValidDate()?this.DateTime.toLocaleString("en-GB"):""},t}(),o_=function(){return function(){}}(),a_=n("6n/F");n("2BfV")(a_),n("Tos5")(a_),n("M8aS")(a_),n("AxlJ")(a_),n("1op0")(a_);var l_=function(){function t(){var t=this;this.detectionResults=[],this.data3DindexToValue=new Map,this.selectedResultID=0,this.updateFromInput=!1,this.Highcharts=a_,this.scatter3DArr=[],this.emitPass=new kn,this.hoverPoint=new kn,this.scatter3DOptions={chart:{renderTo:"sccontainer3D",type:"scatter3d",marginTop:50,marginRight:0,marginBottom:100,marginLeft:100,width:null,zoomType:"",events:{load:function(t){t.target.reflow()}},options3d:{enabled:!0,alpha:10,beta:30,depth:250,viewDistance:10,fitToPlot:!1,axisLabelPosition:"auto",frame:{bottom:{size:1,color:"rgba(0,0,0,0.02)"},back:{size:1,color:"rgba(0,0,0,0.04)"},side:{size:1,color:"rgba(0,0,0,0.06)"}}}},rangeSelector:{selected:1},colors:a_.getOptions().colors.map(function(t){return{radialGradient:{cx:.4,cy:.3,r:.5},stops:[[0,t],[1,a_.Color(t).brighten(-.2).get("rgb")]]}}),title:{text:"",floating:!0,align:"left",margin:0},credits:{enabled:!1},exporting:{enabled:!1},plotOptions:{scatter3d:{tooltip:{headerFormat:"{point.key}
",pointFormat:"R: {point.x}
G: {point.y}
B: {point.z}
DeltaE: {point.deltaE}"}},series:{turboThreshold:5e3,connectNulls:!1,lineWidth:1,lineColor:"#66c2ff",cursor:"pointer",stickyTracking:!1,point:{events:{click:(function(t){this.chart3DClicked(t.point.index)}).bind(this),mouseOver:(function(e){t.mouseOver(e.target.index)}).bind(this),mouseOut:(function(e){t.mouseOut(e.target.index)}).bind(this)}}}},xAxis:{min:0,max:255,endOnTick:!1,tickInterval:17,gridLineWidth:1,labels:{skew3d:!0},title:{text:"Red",style:{color:"#f00",fontWeight:"bold",fontSize:"14px",fontFamily:"sans-serif"}},isInternal:!0},yAxis:{min:0,max:255,endOnTick:!1,tickInterval:17,gridLineWidth:1,labels:{skew3d:!0},title:{text:"Green",style:{color:"#00FF00",fontWeight:"bold",fontSize:"14px",fontFamily:"sans-serif"}},isInternal:!0},zAxis:{min:0,max:255,showFirstLabel:!1,tickInterval:17,endOnTick:!1,labels:{skew3d:!0},title:{text:"Blue",style:{color:"#0000FF",fontWeight:"bold",fontSize:"14px",fontFamily:"sans-serif"}}},legend:{enabled:!1},series:[{name:"RGB",colorByPoint:!0,fontColor:"#FF0000",pointBackgroundColor:"#FF0000",data:[]}],responsive:{rules:[{condition:{maxWidth:600}}]}}}return t.prototype.ngOnInit=function(){this.chart3DHolder=a_.chart("sccontainer3D",this.scatter3DOptions),this.updateFromInput=!0},t.prototype.mouseDown=function(t){var e=this.chart3DHolder;if(t.ctrlKey)return t=e.pointer.normalize(t),void e.update({chart:{zoomType:"xy"}},void 0,void 0,!1);e.options.zoomType="",e.pointer.zoomX=!1,e.pointer.zoomY=!1;var n=this.Highcharts,i=(t=e.pointer.normalize(t)).chartX,r=t.chartY,o=e.options.chart.options3d.alpha,a=e.options.chart.options3d.beta,l=5,s=[];function u(t){t=e.pointer.normalize(t),e.update({chart:{options3d:{alpha:o+(t.chartY-r)/l,beta:a+(i-t.chartX)/l}}},void 0,void 0,!1)}function c(){s.forEach(function(t){t&&t()}),s.length=0}s.push(n.addEvent(document,"mousemove",u)),s.push(n.addEvent(document,"touchmove",u)),s.push(n.addEvent(document,"mouseup",c)),s.push(n.addEvent(document,"touchend",c))},t.prototype.mouseOver=function(t){var e=t,n=this.chart3DHolder;if(n.series[0].data[e].setState("hover"),n.series[0].data.length===t||n.series[0].data[e+1].isNull?e-=1:e+=1,n.series[0].data[e].setState("hover"),null!=t&&t-1&&this.cards.splice(e,1)},t.prototype.addCard=function(t){this.cards.push(t)},t.prototype.updateCard=function(t){var e=this.cards.find(function(e){return e.CardCode===t.CardCode}),n=this.cards.indexOf(e);n>=0&&(this.cards[n]=t)},t.prototype.extractCards=function(t){this.cards=[];for(var e=0,n=t||[];e.mat-card-xl-image{margin:-8px 0 8px 0}@media (max-width:599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card-content>:first-child,.mat-card>:first-child{margin-top:0}.mat-card-content>:last-child:not(.mat-card-footer),.mat-card>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child{margin-left:0;margin-right:0}.mat-card-subtitle:not(:first-child),.mat-card-title:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}"],data:{}});function S_(t){return Ia(2,[La(null,0),La(null,1)],null,null)}var C_=Vr({encapsulation:2,styles:[],data:{}});function L_(t){return Ia(2,[La(null,0),(t()(),yo(1,0,null,null,1,"div",[["class","mat-card-header-text"]],null,null,null,null,null)),La(null,1),La(null,2)],null,null)}function D_(){for(var t,e=[],n=0;nt?{max:{max:t,actual:e.value}}:null}},t.required=function(t){return P_(t.value)?{required:!0}:null},t.requiredTrue=function(t){return!0===t.value?null:{required:!0}},t.email=function(t){return P_(t.value)?null:Y_.test(t.value)?null:{email:!0}},t.minLength=function(t){return function(e){if(P_(e.value))return null;var n=e.value?e.value.length:0;return nt?{maxlength:{requiredLength:t,actualLength:n}}:null}},t.pattern=function(e){return e?("string"==typeof e?(i="","^"!==e.charAt(0)&&(i+="^"),i+=e,"$"!==e.charAt(e.length-1)&&(i+="$"),n=new RegExp(i)):(i=e.toString(),n=e),function(t){if(P_(t.value))return null;var e=t.value;return n.test(e)?null:{pattern:{requiredPattern:i,actualValue:e}}}):t.nullValidator;var n,i},t.nullValidator=function(t){return null},t.compose=function(t){if(!t)return null;var e=t.filter(I_);return 0==e.length?null:function(t){return z_(function(t,n){return e.map(function(e){return e(t)})}(t))}},t.composeAsync=function(t){if(!t)return null;var e=t.filter(I_);return 0==e.length?null:function(t){return D_(function(t,n){return e.map(function(e){return e(t)})}(t).map(F_)).pipe(nt(z_))}},t}();function I_(t){return null!=t}function F_(t){var e=$n(t)?at(t):t;if(!ti(e))throw new Error("Expected validator to return Promise or Observable.");return e}function z_(t){var e=t.reduce(function(t,e){return null!=e?o({},t,e):t},{});return 0===Object.keys(e).length?null:e}var j_=new Lt("NgValueAccessor"),H_=function(){function t(t,e){this._renderer=t,this._elementRef=e,this.onChange=function(t){},this.onTouched=function(){}}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"checked",t)},t.prototype.registerOnChange=function(t){this.onChange=t},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t}(),N_=new Lt("CompositionEventMode"),V_=function(){function t(t,e,n){var i;this._renderer=t,this._elementRef=e,this._compositionMode=n,this.onChange=function(t){},this.onTouched=function(){},this._composing=!1,null==this._compositionMode&&(this._compositionMode=(i=js()?js().getUserAgent():"",!/android (\d+)/.test(i.toLowerCase())))}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==t?"":t)},t.prototype.registerOnChange=function(t){this.onChange=t},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t.prototype._handleInput=function(t){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(t)},t.prototype._compositionStart=function(){this._composing=!0},t.prototype._compositionEnd=function(t){this._composing=!1,this._compositionMode&&this.onChange(t)},t}();function B_(t){return t.validate?function(e){return t.validate(e)}:t}function W_(t){return t.validate?function(e){return t.validate(e)}:t}var U_=function(){function t(t,e){this._renderer=t,this._elementRef=e,this.onChange=function(t){},this.onTouched=function(){}}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==t?"":t)},t.prototype.registerOnChange=function(t){this.onChange=function(e){t(""==e?null:parseFloat(e))}},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t}();function G_(){throw new Error("unimplemented")}var q_=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._parent=null,e.name=null,e.valueAccessor=null,e._rawValidators=[],e._rawAsyncValidators=[],e}return r(e,t),Object.defineProperty(e.prototype,"validator",{get:function(){return G_()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return G_()},enumerable:!0,configurable:!0}),e}(E_),X_=function(){function t(){this._accessors=[]}return t.prototype.add=function(t,e){this._accessors.push([t,e])},t.prototype.remove=function(t){for(var e=this._accessors.length-1;e>=0;--e)if(this._accessors[e][1]===t)return void this._accessors.splice(e,1)},t.prototype.select=function(t){var e=this;this._accessors.forEach(function(n){e._isSameGroup(n,t)&&n[1]!==t&&n[1].fireUncheck(t.value)})},t.prototype._isSameGroup=function(t,e){return!!t[0].control&&t[0]._parent===e._control._parent&&t[1].name===e.name},t}(),K_=function(){function t(t,e,n,i){this._renderer=t,this._elementRef=e,this._registry=n,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return t.prototype.ngOnInit=function(){this._control=this._injector.get(q_),this._checkName(),this._registry.add(this._control,this)},t.prototype.ngOnDestroy=function(){this._registry.remove(this)},t.prototype.writeValue=function(t){this._state=t===this.value,this._renderer.setProperty(this._elementRef.nativeElement,"checked",this._state)},t.prototype.registerOnChange=function(t){var e=this;this._fn=t,this.onChange=function(){t(e.value),e._registry.select(e)}},t.prototype.fireUncheck=function(t){this.writeValue(t)},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t.prototype._checkName=function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)},t.prototype._throwNameError=function(){throw new Error('\n If you define both a name and a formControlName attribute on your radio button, their values\n must match. Ex: \n ')},t}(),Z_=function(){function t(t,e){this._renderer=t,this._elementRef=e,this.onChange=function(t){},this.onTouched=function(){}}return t.prototype.writeValue=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",parseFloat(t))},t.prototype.registerOnChange=function(t){this.onChange=function(e){t(""==e?null:parseFloat(e))}},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t}(),J_='\n

\n \n
\n\n In your class:\n\n this.myGroup = new FormGroup({\n firstName: new FormControl()\n });',Q_='\n
\n
\n \n
\n
\n\n In your class:\n\n this.myGroup = new FormGroup({\n person: new FormGroup({ firstName: new FormControl() })\n });',$_=function(){function t(){}return t.controlParentException=function(){throw new Error("formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\n directive and pass it an existing FormGroup instance (you can create one in your class).\n\n Example:\n\n "+J_)},t.ngModelGroupException=function(){throw new Error('formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\n that also have a "form" prefix: formGroupName, formArrayName, or formGroup.\n\n Option 1: Update the parent to be formGroupName (reactive form strategy)\n\n '+Q_+'\n\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\n\n \n
\n
\n \n
\n
')},t.missingFormException=function(){throw new Error("formGroup expects a FormGroup instance. Please pass one in.\n\n Example:\n\n "+J_)},t.groupParentException=function(){throw new Error("formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\n directive and pass it an existing FormGroup instance (you can create one in your class).\n\n Example:\n\n "+Q_)},t.arrayParentException=function(){throw new Error('formArrayName must be used with a parent formGroup directive. You\'ll want to add a formGroup\n directive and pass it an existing FormGroup instance (you can create one in your class).\n\n Example:\n\n \n
\n
\n
\n \n
\n
\n
\n\n In your class:\n\n this.cityArray = new FormArray([new FormControl(\'SF\')]);\n this.myGroup = new FormGroup({\n cities: this.cityArray\n });')},t.disabledAttrWarning=function(){console.warn("\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\n you. We recommend using this approach to avoid 'changed after checked' errors.\n \n Example: \n form = new FormGroup({\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\n last: new FormControl('Drew', Validators.required)\n });\n ")},t.ngModelWarning=function(t){console.warn("\n It looks like you're using ngModel on the same form field as "+t+". \n Support for using the ngModel input property and ngModelChange event with \n reactive form directives has been deprecated in Angular v6 and will be removed \n in Angular v7.\n \n For more information on this, see our API docs here:\n https://angular.io/api/forms/"+("formControl"===t?"FormControlDirective":"FormControlName")+"#use-with-ngmodel\n ")},t}();function tv(t,e){return d(e.path,[t])}function ev(t,e){t||ov(e,"Cannot find control with"),e.valueAccessor||ov(e,"No value accessor for form control with"),t.validator=R_.compose([t.validator,e.validator]),t.asyncValidator=R_.composeAsync([t.asyncValidator,e.asyncValidator]),e.valueAccessor.writeValue(t.value),function(t,e){e.valueAccessor.registerOnChange(function(n){t._pendingValue=n,t._pendingChange=!0,t._pendingDirty=!0,"change"===t.updateOn&&nv(t,e)})}(t,e),function(t,e){t.registerOnChange(function(t,n){e.valueAccessor.writeValue(t),n&&e.viewToModelUpdate(t)})}(t,e),function(t,e){e.valueAccessor.registerOnTouched(function(){t._pendingTouched=!0,"blur"===t.updateOn&&t._pendingChange&&nv(t,e),"submit"!==t.updateOn&&t.markAsTouched()})}(t,e),e.valueAccessor.setDisabledState&&t.registerOnDisabledChange(function(t){e.valueAccessor.setDisabledState(t)}),e._rawValidators.forEach(function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(function(){return t.updateValueAndValidity()})}),e._rawAsyncValidators.forEach(function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(function(){return t.updateValueAndValidity()})})}function nv(t,e){t._pendingDirty&&t.markAsDirty(),t.setValue(t._pendingValue,{emitModelToViewChange:!1}),e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1}function iv(t,e){null==t&&ov(e,"Cannot find control with"),t.validator=R_.compose([t.validator,e.validator]),t.asyncValidator=R_.composeAsync([t.asyncValidator,e.asyncValidator])}function rv(t){return ov(t,"There is no FormControl instance attached to form control element with")}function ov(t,e){var n;throw n=t.path.length>1?"path: '"+t.path.join(" -> ")+"'":t.path[0]?"name: '"+t.path+"'":"unspecified name attribute",new Error(e+" "+n)}function av(t){return null!=t?R_.compose(t.map(B_)):null}function lv(t){return null!=t?R_.composeAsync(t.map(W_)):null}function sv(t,e){if(!t.hasOwnProperty("model"))return!1;var n=t.model;return!!n.isFirstChange()||!Bt(e,n.currentValue)}var uv=[H_,Z_,U_,function(){function t(t,e){this._renderer=t,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=function(t){},this.onTouched=function(){},this._compareWith=Bt}return Object.defineProperty(t.prototype,"compareWith",{set:function(t){if("function"!=typeof t)throw new Error("compareWith must be a function, but received "+JSON.stringify(t));this._compareWith=t},enumerable:!0,configurable:!0}),t.prototype.writeValue=function(t){this.value=t;var e=this._getOptionId(t);null==e&&this._renderer.setProperty(this._elementRef.nativeElement,"selectedIndex",-1);var n=function(t,e){return null==t?""+e:(e&&"object"==typeof e&&(e="Object"),(t+": "+e).slice(0,50))}(e,t);this._renderer.setProperty(this._elementRef.nativeElement,"value",n)},t.prototype.registerOnChange=function(t){var e=this;this.onChange=function(n){e.value=e._getOptionValue(n),t(e.value)}},t.prototype.registerOnTouched=function(t){this.onTouched=t},t.prototype.setDisabledState=function(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)},t.prototype._registerOption=function(){return(this._idCounter++).toString()},t.prototype._getOptionId=function(t){var e,n;try{for(var i=u(Array.from(this._optionMap.keys())),r=i.next();!r.done;r=i.next()){var o=r.value;if(this._compareWith(this._optionMap.get(o),t))return o}}catch(a){e={error:a}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}return null},t.prototype._getOptionValue=function(t){var e=function(t){return t.split(":")[0]}(t);return this._optionMap.has(e)?this._optionMap.get(e):t},t}(),function(){function t(t,e){this._renderer=t,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=function(t){},this.onTouched=function(){},this._compareWith=Bt}return Object.defineProperty(t.prototype,"compareWith",{set:function(t){if("function"!=typeof t)throw new Error("compareWith must be a function, but received "+JSON.stringify(t));this._compareWith=t},enumerable:!0,configurable:!0}),t.prototype.writeValue=function(t){var e,n=this;if(this.value=t,Array.isArray(t)){var i=t.map(function(t){return n._getOptionId(t)});e=function(t,e){t._setSelected(i.indexOf(e.toString())>-1)}}else e=function(t,e){t._setSelected(!1)};this._optionMap.forEach(e)},t.prototype.registerOnChange=function(t){var e=this;this.onChange=function(n){var i=[];if(n.hasOwnProperty("selectedOptions"))for(var r=n.selectedOptions,o=0;o-1&&t.splice(n,1)}function pv(t,e,n,i){tn()&&"never"!==i&&((null!==i&&"once"!==i||e._ngModelWarningSentOnce)&&("always"!==i||n._ngModelWarningSent)||($_.ngModelWarning(t),e._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}var fv=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.ngOnInit=function(){this._checkParentType(),this.formDirective.addFormGroup(this)},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeFormGroup(this)},Object.defineProperty(e.prototype,"control",{get:function(){return this.formDirective.getFormGroup(this)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return tv(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._asyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){},e}(A_),mv=function(){function t(t){this._cd=t}return Object.defineProperty(t.prototype,"ngClassUntouched",{get:function(){return!!this._cd.control&&this._cd.control.untouched},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassTouched",{get:function(){return!!this._cd.control&&this._cd.control.touched},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassPristine",{get:function(){return!!this._cd.control&&this._cd.control.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassDirty",{get:function(){return!!this._cd.control&&this._cd.control.dirty},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassValid",{get:function(){return!!this._cd.control&&this._cd.control.valid},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassInvalid",{get:function(){return!!this._cd.control&&this._cd.control.invalid},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClassPending",{get:function(){return!!this._cd.control&&this._cd.control.pending},enumerable:!0,configurable:!0}),t}(),gv=function(t){function e(e){return t.call(this,e)||this}return r(e,t),e}(mv),yv=function(t){function e(e){return t.call(this,e)||this}return r(e,t),e}(mv);function _v(t){var e=bv(t)?t.validators:t;return Array.isArray(e)?av(e):e||null}function vv(t,e){var n=bv(e)?e.asyncValidators:t;return Array.isArray(n)?lv(n):n||null}function bv(t){return null!=t&&!Array.isArray(t)&&"object"==typeof t}var xv=function(){function t(t,e){this.validator=t,this.asyncValidator=e,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return Object.defineProperty(t.prototype,"parent",{get:function(){return this._parent},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"valid",{get:function(){return"VALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"invalid",{get:function(){return"INVALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"pending",{get:function(){return"PENDING"==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return"DISABLED"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"enabled",{get:function(){return"DISABLED"!==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"dirty",{get:function(){return!this.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"untouched",{get:function(){return!this.touched},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"updateOn",{get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"},enumerable:!0,configurable:!0}),t.prototype.setValidators=function(t){this.validator=_v(t)},t.prototype.setAsyncValidators=function(t){this.asyncValidator=vv(t)},t.prototype.clearValidators=function(){this.validator=null},t.prototype.clearAsyncValidators=function(){this.asyncValidator=null},t.prototype.markAsTouched=function(t){void 0===t&&(t={}),this.touched=!0,this._parent&&!t.onlySelf&&this._parent.markAsTouched(t)},t.prototype.markAsUntouched=function(t){void 0===t&&(t={}),this.touched=!1,this._pendingTouched=!1,this._forEachChild(function(t){t.markAsUntouched({onlySelf:!0})}),this._parent&&!t.onlySelf&&this._parent._updateTouched(t)},t.prototype.markAsDirty=function(t){void 0===t&&(t={}),this.pristine=!1,this._parent&&!t.onlySelf&&this._parent.markAsDirty(t)},t.prototype.markAsPristine=function(t){void 0===t&&(t={}),this.pristine=!0,this._pendingDirty=!1,this._forEachChild(function(t){t.markAsPristine({onlySelf:!0})}),this._parent&&!t.onlySelf&&this._parent._updatePristine(t)},t.prototype.markAsPending=function(t){void 0===t&&(t={}),this.status="PENDING",!1!==t.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!t.onlySelf&&this._parent.markAsPending(t)},t.prototype.disable=function(t){void 0===t&&(t={}),this.status="DISABLED",this.errors=null,this._forEachChild(function(e){e.disable(o({},t,{onlySelf:!0}))}),this._updateValue(),!1!==t.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(t),this._onDisabledChange.forEach(function(t){return t(!0)})},t.prototype.enable=function(t){void 0===t&&(t={}),this.status="VALID",this._forEachChild(function(e){e.enable(o({},t,{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:t.emitEvent}),this._updateAncestors(t),this._onDisabledChange.forEach(function(t){return t(!1)})},t.prototype._updateAncestors=function(t){this._parent&&!t.onlySelf&&(this._parent.updateValueAndValidity(t),this._parent._updatePristine(),this._parent._updateTouched())},t.prototype.setParent=function(t){this._parent=t},t.prototype.updateValueAndValidity=function(t){void 0===t&&(t={}),this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),"VALID"!==this.status&&"PENDING"!==this.status||this._runAsyncValidator(t.emitEvent)),!1!==t.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!t.onlySelf&&this._parent.updateValueAndValidity(t)},t.prototype._updateTreeValidity=function(t){void 0===t&&(t={emitEvent:!0}),this._forEachChild(function(e){return e._updateTreeValidity(t)}),this.updateValueAndValidity({onlySelf:!0,emitEvent:t.emitEvent})},t.prototype._setInitialStatus=function(){this.status=this._allControlsDisabled()?"DISABLED":"VALID"},t.prototype._runValidator=function(){return this.validator?this.validator(this):null},t.prototype._runAsyncValidator=function(t){var e=this;if(this.asyncValidator){this.status="PENDING";var n=F_(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe(function(n){return e.setErrors(n,{emitEvent:t})})}},t.prototype._cancelExistingSubscription=function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()},t.prototype.setErrors=function(t,e){void 0===e&&(e={}),this.errors=t,this._updateControlsErrors(!1!==e.emitEvent)},t.prototype.get=function(t){return function(t,e,n){return null==e?null:(e instanceof Array||(e=e.split(".")),e instanceof Array&&0===e.length?null:e.reduce(function(t,e){return t instanceof kv?t.controls.hasOwnProperty(e)?t.controls[e]:null:t instanceof Mv&&t.at(e)||null},t))}(this,t)},t.prototype.getError=function(t,e){var n=e?this.get(e):this;return n&&n.errors?n.errors[t]:null},t.prototype.hasError=function(t,e){return!!this.getError(t,e)},Object.defineProperty(t.prototype,"root",{get:function(){for(var t=this;t._parent;)t=t._parent;return t},enumerable:!0,configurable:!0}),t.prototype._updateControlsErrors=function(t){this.status=this._calculateStatus(),t&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(t)},t.prototype._initObservables=function(){this.valueChanges=new kn,this.statusChanges=new kn},t.prototype._calculateStatus=function(){return this._allControlsDisabled()?"DISABLED":this.errors?"INVALID":this._anyControlsHaveStatus("PENDING")?"PENDING":this._anyControlsHaveStatus("INVALID")?"INVALID":"VALID"},t.prototype._anyControlsHaveStatus=function(t){return this._anyControls(function(e){return e.status===t})},t.prototype._anyControlsDirty=function(){return this._anyControls(function(t){return t.dirty})},t.prototype._anyControlsTouched=function(){return this._anyControls(function(t){return t.touched})},t.prototype._updatePristine=function(t){void 0===t&&(t={}),this.pristine=!this._anyControlsDirty(),this._parent&&!t.onlySelf&&this._parent._updatePristine(t)},t.prototype._updateTouched=function(t){void 0===t&&(t={}),this.touched=this._anyControlsTouched(),this._parent&&!t.onlySelf&&this._parent._updateTouched(t)},t.prototype._isBoxedValue=function(t){return"object"==typeof t&&null!==t&&2===Object.keys(t).length&&"value"in t&&"disabled"in t},t.prototype._registerOnCollectionChange=function(t){this._onCollectionChange=t},t.prototype._setUpdateStrategy=function(t){bv(t)&&null!=t.updateOn&&(this._updateOn=t.updateOn)},t}(),wv=function(t){function e(e,n,i){void 0===e&&(e=null);var r=t.call(this,_v(n),vv(i,n))||this;return r._onChange=[],r._applyFormState(e),r._setUpdateStrategy(n),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r._initObservables(),r}return r(e,t),e.prototype.setValue=function(t,e){var n=this;void 0===e&&(e={}),this.value=this._pendingValue=t,this._onChange.length&&!1!==e.emitModelToViewChange&&this._onChange.forEach(function(t){return t(n.value,!1!==e.emitViewToModelChange)}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(t,e){void 0===e&&(e={}),this.setValue(t,e)},e.prototype.reset=function(t,e){void 0===t&&(t=null),void 0===e&&(e={}),this._applyFormState(t),this.markAsPristine(e),this.markAsUntouched(e),this.setValue(this.value,e),this._pendingChange=!1},e.prototype._updateValue=function(){},e.prototype._anyControls=function(t){return!1},e.prototype._allControlsDisabled=function(){return this.disabled},e.prototype.registerOnChange=function(t){this._onChange.push(t)},e.prototype._clearChangeFns=function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}},e.prototype.registerOnDisabledChange=function(t){this._onDisabledChange.push(t)},e.prototype._forEachChild=function(t){},e.prototype._syncPendingControls=function(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))},e.prototype._applyFormState=function(t){this._isBoxedValue(t)?(this.value=this._pendingValue=t.value,t.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=t},e}(xv),kv=function(t){function e(e,n,i){var r=t.call(this,_v(n),vv(i,n))||this;return r.controls=e,r._initObservables(),r._setUpdateStrategy(n),r._setUpControls(),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r}return r(e,t),e.prototype.registerControl=function(t,e){return this.controls[t]?this.controls[t]:(this.controls[t]=e,e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange),e)},e.prototype.addControl=function(t,e){this.registerControl(t,e),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.removeControl=function(t){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),delete this.controls[t],this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.setControl=function(t,e){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),delete this.controls[t],e&&this.registerControl(t,e),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.contains=function(t){return this.controls.hasOwnProperty(t)&&this.controls[t].enabled},e.prototype.setValue=function(t,e){var n=this;void 0===e&&(e={}),this._checkAllValuesPresent(t),Object.keys(t).forEach(function(i){n._throwIfControlMissing(i),n.controls[i].setValue(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(t,e){var n=this;void 0===e&&(e={}),Object.keys(t).forEach(function(i){n.controls[i]&&n.controls[i].patchValue(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.reset=function(t,e){void 0===t&&(t={}),void 0===e&&(e={}),this._forEachChild(function(n,i){n.reset(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e),this._updatePristine(e),this._updateTouched(e)},e.prototype.getRawValue=function(){return this._reduceChildren({},function(t,e,n){return t[n]=e instanceof wv?e.value:e.getRawValue(),t})},e.prototype._syncPendingControls=function(){var t=this._reduceChildren(!1,function(t,e){return!!e._syncPendingControls()||t});return t&&this.updateValueAndValidity({onlySelf:!0}),t},e.prototype._throwIfControlMissing=function(t){if(!Object.keys(this.controls).length)throw new Error("\n There are no form controls registered with this group yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.controls[t])throw new Error("Cannot find form control with name: "+t+".")},e.prototype._forEachChild=function(t){var e=this;Object.keys(this.controls).forEach(function(n){return t(e.controls[n],n)})},e.prototype._setUpControls=function(){var t=this;this._forEachChild(function(e){e.setParent(t),e._registerOnCollectionChange(t._onCollectionChange)})},e.prototype._updateValue=function(){this.value=this._reduceValue()},e.prototype._anyControls=function(t){var e=this,n=!1;return this._forEachChild(function(i,r){n=n||e.contains(r)&&t(i)}),n},e.prototype._reduceValue=function(){var t=this;return this._reduceChildren({},function(e,n,i){return(n.enabled||t.disabled)&&(e[i]=n.value),e})},e.prototype._reduceChildren=function(t,e){var n=t;return this._forEachChild(function(t,i){n=e(n,t,i)}),n},e.prototype._allControlsDisabled=function(){var t,e;try{for(var n=u(Object.keys(this.controls)),i=n.next();!i.done;i=n.next())if(this.controls[i.value].enabled)return!1}catch(r){t={error:r}}finally{try{i&&!i.done&&(e=n.return)&&e.call(n)}finally{if(t)throw t.error}}return Object.keys(this.controls).length>0||this.disabled},e.prototype._checkAllValuesPresent=function(t){this._forEachChild(function(e,n){if(void 0===t[n])throw new Error("Must supply a value for form control with name: '"+n+"'.")})},e}(xv),Mv=function(t){function e(e,n,i){var r=t.call(this,_v(n),vv(i,n))||this;return r.controls=e,r._initObservables(),r._setUpdateStrategy(n),r._setUpControls(),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r}return r(e,t),e.prototype.at=function(t){return this.controls[t]},e.prototype.push=function(t){this.controls.push(t),this._registerControl(t),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.insert=function(t,e){this.controls.splice(t,0,e),this._registerControl(e),this.updateValueAndValidity()},e.prototype.removeAt=function(t){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),this.controls.splice(t,1),this.updateValueAndValidity()},e.prototype.setControl=function(t,e){this.controls[t]&&this.controls[t]._registerOnCollectionChange(function(){}),this.controls.splice(t,1),e&&(this.controls.splice(t,0,e),this._registerControl(e)),this.updateValueAndValidity(),this._onCollectionChange()},Object.defineProperty(e.prototype,"length",{get:function(){return this.controls.length},enumerable:!0,configurable:!0}),e.prototype.setValue=function(t,e){var n=this;void 0===e&&(e={}),this._checkAllValuesPresent(t),t.forEach(function(t,i){n._throwIfControlMissing(i),n.at(i).setValue(t,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(t,e){var n=this;void 0===e&&(e={}),t.forEach(function(t,i){n.at(i)&&n.at(i).patchValue(t,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.reset=function(t,e){void 0===t&&(t=[]),void 0===e&&(e={}),this._forEachChild(function(n,i){n.reset(t[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e),this._updatePristine(e),this._updateTouched(e)},e.prototype.getRawValue=function(){return this.controls.map(function(t){return t instanceof wv?t.value:t.getRawValue()})},e.prototype._syncPendingControls=function(){var t=this.controls.reduce(function(t,e){return!!e._syncPendingControls()||t},!1);return t&&this.updateValueAndValidity({onlySelf:!0}),t},e.prototype._throwIfControlMissing=function(t){if(!this.controls.length)throw new Error("\n There are no form controls registered with this array yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.at(t))throw new Error("Cannot find form control at index "+t)},e.prototype._forEachChild=function(t){this.controls.forEach(function(e,n){t(e,n)})},e.prototype._updateValue=function(){var t=this;this.value=this.controls.filter(function(e){return e.enabled||t.disabled}).map(function(t){return t.value})},e.prototype._anyControls=function(t){return this.controls.some(function(e){return e.enabled&&t(e)})},e.prototype._setUpControls=function(){var t=this;this._forEachChild(function(e){return t._registerControl(e)})},e.prototype._checkAllValuesPresent=function(t){this._forEachChild(function(e,n){if(void 0===t[n])throw new Error("Must supply a value for form control at index: "+n+".")})},e.prototype._allControlsDisabled=function(){var t,e;try{for(var n=u(this.controls),i=n.next();!i.done;i=n.next())if(i.value.enabled)return!1}catch(r){t={error:r}}finally{try{i&&!i.done&&(e=n.return)&&e.call(n)}finally{if(t)throw t.error}}return this.controls.length>0||this.disabled},e.prototype._registerControl=function(t){t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange)},e}(xv),Sv=Promise.resolve(null),Cv=function(t){function e(e,n){var i=t.call(this)||this;return i.submitted=!1,i._directives=[],i.ngSubmit=new kn,i.form=new kv({},av(e),lv(n)),i}return r(e,t),e.prototype.ngAfterViewInit=function(){this._setUpdateStrategy()},Object.defineProperty(e.prototype,"formDirective",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"controls",{get:function(){return this.form.controls},enumerable:!0,configurable:!0}),e.prototype.addControl=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path);t.control=n.registerControl(t.name,t.control),ev(t.control,t),t.control.updateValueAndValidity({emitEvent:!1}),e._directives.push(t)})},e.prototype.getControl=function(t){return this.form.get(t.path)},e.prototype.removeControl=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path);n&&n.removeControl(t.name),hv(e._directives,t)})},e.prototype.addFormGroup=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path),i=new kv({});iv(i,t),n.registerControl(t.name,i),i.updateValueAndValidity({emitEvent:!1})})},e.prototype.removeFormGroup=function(t){var e=this;Sv.then(function(){var n=e._findContainer(t.path);n&&n.removeControl(t.name)})},e.prototype.getFormGroup=function(t){return this.form.get(t.path)},e.prototype.updateModel=function(t,e){var n=this;Sv.then(function(){n.form.get(t.path).setValue(e)})},e.prototype.setValue=function(t){this.control.setValue(t)},e.prototype.onSubmit=function(t){return this.submitted=!0,cv(this.form,this._directives),this.ngSubmit.emit(t),!1},e.prototype.onReset=function(){this.resetForm()},e.prototype.resetForm=function(t){void 0===t&&(t=void 0),this.form.reset(t),this.submitted=!1},e.prototype._setUpdateStrategy=function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)},e.prototype._findContainer=function(t){return t.pop(),t.length?this.form.get(t):this.form},e}(A_),Lv=new Lt("NgFormSelectorWarning"),Dv=new Lt("NgModelWithFormControlWarning"),Tv=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o._ngModelWarningConfig=r,o.update=new kn,o._ngModelWarningSent=!1,o._rawValidators=e||[],o._rawAsyncValidators=n||[],o.valueAccessor=dv(o,i),o}var n;return r(e,t),n=e,Object.defineProperty(e.prototype,"isDisabled",{set:function(t){$_.disabledAttrWarning()},enumerable:!0,configurable:!0}),e.prototype.ngOnChanges=function(t){this._isControlChanged(t)&&(ev(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),sv(t,this.viewModel)&&(pv("formControl",n,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)},Object.defineProperty(e.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),e.prototype.viewToModelUpdate=function(t){this.viewModel=t,this.update.emit(t)},e.prototype._isControlChanged=function(t){return t.hasOwnProperty("form")},e._ngModelWarningSentOnce=!1,e}(q_),Ev=function(t){function e(e,n){var i=t.call(this)||this;return i._validators=e,i._asyncValidators=n,i.submitted=!1,i.directives=[],i.form=null,i.ngSubmit=new kn,i}return r(e,t),e.prototype.ngOnChanges=function(t){this._checkFormPresent(),t.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())},Object.defineProperty(e.prototype,"formDirective",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),e.prototype.addControl=function(t){var e=this.form.get(t.path);return ev(e,t),e.updateValueAndValidity({emitEvent:!1}),this.directives.push(t),e},e.prototype.getControl=function(t){return this.form.get(t.path)},e.prototype.removeControl=function(t){hv(this.directives,t)},e.prototype.addFormGroup=function(t){var e=this.form.get(t.path);iv(e,t),e.updateValueAndValidity({emitEvent:!1})},e.prototype.removeFormGroup=function(t){},e.prototype.getFormGroup=function(t){return this.form.get(t.path)},e.prototype.addFormArray=function(t){var e=this.form.get(t.path);iv(e,t),e.updateValueAndValidity({emitEvent:!1})},e.prototype.removeFormArray=function(t){},e.prototype.getFormArray=function(t){return this.form.get(t.path)},e.prototype.updateModel=function(t,e){this.form.get(t.path).setValue(e)},e.prototype.onSubmit=function(t){return this.submitted=!0,cv(this.form,this.directives),this.ngSubmit.emit(t),!1},e.prototype.onReset=function(){this.resetForm()},e.prototype.resetForm=function(t){void 0===t&&(t=void 0),this.form.reset(t),this.submitted=!1},e.prototype._updateDomValue=function(){var t=this;this.directives.forEach(function(e){var n=t.form.get(e.path);e.control!==n&&(function(t,e){e.valueAccessor.registerOnChange(function(){return rv(e)}),e.valueAccessor.registerOnTouched(function(){return rv(e)}),e._rawValidators.forEach(function(t){t.registerOnValidatorChange&&t.registerOnValidatorChange(null)}),e._rawAsyncValidators.forEach(function(t){t.registerOnValidatorChange&&t.registerOnValidatorChange(null)}),t&&t._clearChangeFns()}(e.control,e),n&&ev(n,e),e.control=n)}),this.form._updateTreeValidity({emitEvent:!1})},e.prototype._updateRegistrations=function(){var t=this;this.form._registerOnCollectionChange(function(){return t._updateDomValue()}),this._oldForm&&this._oldForm._registerOnCollectionChange(function(){}),this._oldForm=this.form},e.prototype._updateValidators=function(){var t=av(this._validators);this.form.validator=R_.compose([this.form.validator,t]);var e=lv(this._asyncValidators);this.form.asyncValidator=R_.composeAsync([this.form.asyncValidator,e])},e.prototype._checkFormPresent=function(){this.form||$_.missingFormException()},e}(A_),Av=function(t){function e(e,n,i){var r=t.call(this)||this;return r._parent=e,r._validators=n,r._asyncValidators=i,r}return r(e,t),e.prototype._checkParentType=function(){Ov(this._parent)&&$_.groupParentException()},e}(fv),Pv=function(t){function e(e,n,i){var r=t.call(this)||this;return r._parent=e,r._validators=n,r._asyncValidators=i,r}return r(e,t),e.prototype.ngOnInit=function(){this._checkParentType(),this.formDirective.addFormArray(this)},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeFormArray(this)},Object.defineProperty(e.prototype,"control",{get:function(){return this.formDirective.getFormArray(this)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"path",{get:function(){return tv(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._asyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){Ov(this._parent)&&$_.arrayParentException()},e}(A_);function Ov(t){return!(t instanceof Av||t instanceof Ev||t instanceof Pv)}var Yv=function(t){function e(e,n,i,r,o){var a=t.call(this)||this;return a._ngModelWarningConfig=o,a._added=!1,a.update=new kn,a._ngModelWarningSent=!1,a._parent=e,a._rawValidators=n||[],a._rawAsyncValidators=i||[],a.valueAccessor=dv(a,r),a}var n;return r(e,t),n=e,Object.defineProperty(e.prototype,"isDisabled",{set:function(t){$_.disabledAttrWarning()},enumerable:!0,configurable:!0}),e.prototype.ngOnChanges=function(t){this._added||this._setUpControl(),sv(t,this.viewModel)&&(pv("formControlName",n,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeControl(this)},e.prototype.viewToModelUpdate=function(t){this.viewModel=t,this.update.emit(t)},Object.defineProperty(e.prototype,"path",{get:function(){return tv(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return av(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return lv(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){!(this._parent instanceof Av)&&this._parent instanceof fv?$_.ngModelGroupException():this._parent instanceof Av||this._parent instanceof Ev||this._parent instanceof Pv||$_.controlParentException()},e.prototype._setUpControl=function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0},e._ngModelWarningSentOnce=!1,e}(q_),Rv=function(){function t(){}return Object.defineProperty(t.prototype,"required",{get:function(){return this._required},set:function(t){this._required=null!=t&&!1!==t&&""+t!="false",this._onChange&&this._onChange()},enumerable:!0,configurable:!0}),t.prototype.validate=function(t){return this.required?R_.required(t):null},t.prototype.registerOnValidatorChange=function(t){this._onChange=t},t}(),Iv=function(){function t(){}return t.prototype.group=function(t,e){void 0===e&&(e=null);var n=this._reduceControls(t),i=null,r=null,o=void 0;return null!=e&&(function(t){return void 0!==t.asyncValidators||void 0!==t.validators||void 0!==t.updateOn}(e)?(i=null!=e.validators?e.validators:null,r=null!=e.asyncValidators?e.asyncValidators:null,o=null!=e.updateOn?e.updateOn:void 0):(i=null!=e.validator?e.validator:null,r=null!=e.asyncValidator?e.asyncValidator:null)),new kv(n,{asyncValidators:r,updateOn:o,validators:i})},t.prototype.control=function(t,e,n){return new wv(t,e,n)},t.prototype.array=function(t,e,n){var i=this,r=t.map(function(t){return i._createControl(t)});return new Mv(r,e,n)},t.prototype._reduceControls=function(t){var e=this,n={};return Object.keys(t).forEach(function(i){n[i]=e._createControl(t[i])}),n},t.prototype._createControl=function(t){return t instanceof wv||t instanceof kv||t instanceof Mv?t:Array.isArray(t)?this.control(t[0],t.length>1?t[1]:null,t.length>2?t[2]:null):this.control(t)},t}(),Fv=function(){return function(){}}(),zv=function(){return function(){}}(),jv=function(){function t(){}var e;return e=t,t.withConfig=function(t){return{ngModule:e,providers:[{provide:Lv,useValue:t.warnOnDeprecatedNgFormSelector}]}},t}(),Hv=function(){function t(){}var e;return e=t,t.withConfig=function(t){return{ngModule:e,providers:[{provide:Dv,useValue:t.warnOnNgModelWithFormControl}]}},t}(),Nv=function(){return function(){}}(),Vv=function(){return function(){}}(),Bv="*";function Wv(t,e){return void 0===e&&(e=null),{type:2,steps:t,options:e}}function Uv(t){return{type:6,styles:t,offset:null}}function Gv(t){Promise.resolve(null).then(t)}var qv=function(){function t(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=t+e}return t.prototype._onFinish=function(){this._finished||(this._finished=!0,this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[])},t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.hasStarted=function(){return this._started},t.prototype.init=function(){},t.prototype.play=function(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0},t.prototype.triggerMicrotask=function(){var t=this;Gv(function(){return t._onFinish()})},t.prototype._onStart=function(){this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[]},t.prototype.pause=function(){},t.prototype.restart=function(){},t.prototype.finish=function(){this._onFinish()},t.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype.reset=function(){},t.prototype.setPosition=function(t){},t.prototype.getPosition=function(){return 0},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t}(),Xv=function(){function t(t){var e=this;this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=t;var n=0,i=0,r=0,o=this.players.length;0==o?Gv(function(){return e._onFinish()}):this.players.forEach(function(t){t.onDone(function(){++n==o&&e._onFinish()}),t.onDestroy(function(){++i==o&&e._onDestroy()}),t.onStart(function(){++r==o&&e._onStart()})}),this.totalTime=this.players.reduce(function(t,e){return Math.max(t,e.totalTime)},0)}return t.prototype._onFinish=function(){this._finished||(this._finished=!0,this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[])},t.prototype.init=function(){this.players.forEach(function(t){return t.init()})},t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype._onStart=function(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[])},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.hasStarted=function(){return this._started},t.prototype.play=function(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(function(t){return t.play()})},t.prototype.pause=function(){this.players.forEach(function(t){return t.pause()})},t.prototype.restart=function(){this.players.forEach(function(t){return t.restart()})},t.prototype.finish=function(){this._onFinish(),this.players.forEach(function(t){return t.finish()})},t.prototype.destroy=function(){this._onDestroy()},t.prototype._onDestroy=function(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(function(t){return t.destroy()}),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype.reset=function(){this.players.forEach(function(t){return t.reset()}),this._destroyed=!1,this._finished=!1,this._started=!1},t.prototype.setPosition=function(t){var e=t*this.totalTime;this.players.forEach(function(t){var n=t.totalTime?Math.min(1,e/t.totalTime):1;t.setPosition(n)})},t.prototype.getPosition=function(){var t=0;return this.players.forEach(function(e){var n=e.getPosition();t=Math.min(n,t)}),t},t.prototype.beforeDestroy=function(){this.players.forEach(function(t){t.beforeDestroy&&t.beforeDestroy()})},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t}(),Kv="!",Zv=0,Jv=function(){return function(){this.id="mat-error-"+Zv++}}(),Qv=function(){return function(){}}();function $v(t){return Error("A hint was already declared for 'align=\""+t+"\"'.")}var tb=0,eb=function(){return function(){this.align="start",this.id="mat-hint-"+tb++}}(),nb=function(){return function(){}}(),ib=function(){return function(){}}(),rb=0,ob=od(function(){return function(t){this._elementRef=t}}(),"primary"),ab=new Lt("MAT_FORM_FIELD_DEFAULT_OPTIONS"),lb=function(t){function e(e,n,i,r,o,a,l,s){var u=t.call(this,e)||this;return u._elementRef=e,u._changeDetectorRef=n,u._dir=r,u._defaults=o,u._platform=a,u._ngZone=l,u._outlineGapCalculationNeededImmediately=!1,u._outlineGapCalculationNeededOnStable=!1,u._destroyed=new H,u._showAlwaysAnimate=!1,u._subscriptAnimationState="",u._hintLabel="",u._hintLabelId="mat-hint-"+rb++,u._labelId="mat-form-field-label-"+rb++,u._labelOptions=i||{},u.floatLabel=u._labelOptions.float||"auto",u._animationsEnabled="NoopAnimations"!==s,u.appearance=o&&o.appearance?o.appearance:"legacy",u}return r(e,t),Object.defineProperty(e.prototype,"appearance",{get:function(){return this._appearance},set:function(t){var e=this._appearance;this._appearance=t||this._defaults&&this._defaults.appearance||"legacy","outline"===this._appearance&&e!==t&&this._updateOutlineGapOnStable()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hideRequiredMarker",{get:function(){return this._hideRequiredMarker},set:function(t){this._hideRequiredMarker=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_shouldAlwaysFloat",{get:function(){return"always"===this.floatLabel&&!this._showAlwaysAnimate},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_canLabelFloat",{get:function(){return"never"!==this.floatLabel},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hintLabel",{get:function(){return this._hintLabel},set:function(t){this._hintLabel=t,this._processHints()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"floatLabel",{get:function(){return"legacy"!==this.appearance&&"never"===this._floatLabel?"auto":this._floatLabel},set:function(t){t!==this._floatLabel&&(this._floatLabel=t||this._labelOptions.float||"auto",this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),e.prototype.getConnectedOverlayOrigin=function(){return this._connectionContainerRef||this._elementRef},e.prototype.ngAfterContentInit=function(){var t=this;this._validateControlChild();var e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add("mat-form-field-type-"+e.controlType),e.stateChanges.pipe(hc(null)).subscribe(function(){t._validatePlaceholders(),t._syncDescribedByIds(),t._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(fg(this._destroyed)).subscribe(function(){return t._changeDetectorRef.markForCheck()});var n=this._ngZone;n&&n.runOutsideAngular(function(){n.onStable.asObservable().pipe(fg(t._destroyed)).subscribe(function(){t._outlineGapCalculationNeededOnStable&&t.updateOutlineGap()})}),ht(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(function(){t._updateOutlineGapOnStable(),t._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(hc(null)).subscribe(function(){t._processHints(),t._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(hc(null)).subscribe(function(){t._syncDescribedByIds(),t._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(fg(this._destroyed)).subscribe(function(){return t.updateOutlineGap()})},e.prototype.ngAfterContentChecked=function(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()},e.prototype.ngAfterViewInit=function(){this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()},e.prototype.ngOnDestroy=function(){this._destroyed.next(),this._destroyed.complete()},e.prototype._shouldForward=function(t){var e=this._control?this._control.ngControl:null;return e&&e[t]},e.prototype._hasPlaceholder=function(){return!!(this._control&&this._control.placeholder||this._placeholderChild)},e.prototype._hasLabel=function(){return!!this._labelChild},e.prototype._shouldLabelFloat=function(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)},e.prototype._hideControlPlaceholder=function(){return"legacy"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()},e.prototype._hasFloatingLabel=function(){return this._hasLabel()||"legacy"===this.appearance&&this._hasPlaceholder()},e.prototype._getDisplayedMessages=function(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"},e.prototype._animateAndLockLabel=function(){var t=this;this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&(this._showAlwaysAnimate=!0,pg(this._label.nativeElement,"transitionend").pipe(Ac(1)).subscribe(function(){t._showAlwaysAnimate=!1})),this.floatLabel="always",this._changeDetectorRef.markForCheck())},e.prototype._validatePlaceholders=function(){if(this._control.placeholder&&this._placeholderChild)throw Error("Placeholder attribute and child element were both specified.")},e.prototype._processHints=function(){this._validateHints(),this._syncDescribedByIds()},e.prototype._validateHints=function(){var t,e,n=this;this._hintChildren&&this._hintChildren.forEach(function(i){if("start"===i.align){if(t||n.hintLabel)throw $v("start");t=i}else if("end"===i.align){if(e)throw $v("end");e=i}})},e.prototype._syncDescribedByIds=function(){if(this._control){var t=[];if("hint"===this._getDisplayedMessages()){var e=this._hintChildren?this._hintChildren.find(function(t){return"start"===t.align}):null,n=this._hintChildren?this._hintChildren.find(function(t){return"end"===t.align}):null;e?t.push(e.id):this._hintLabel&&t.push(this._hintLabelId),n&&t.push(n.id)}else this._errorChildren&&(t=this._errorChildren.map(function(t){return t.id}));this._control.setDescribedByIds(t)}},e.prototype._validateControlChild=function(){if(!this._control)throw Error("mat-form-field must contain a MatFormFieldControl.")},e.prototype.updateOutlineGap=function(){var t=this._label?this._label.nativeElement:null;if("outline"===this.appearance&&t&&t.children.length&&t.textContent.trim()&&(!this._platform||this._platform.isBrowser))if(document.documentElement.contains(this._elementRef.nativeElement)){var e=0,n=0,i=this._connectionContainerRef.nativeElement,r=i.querySelectorAll(".mat-form-field-outline-start"),o=i.querySelectorAll(".mat-form-field-outline-gap");if(this._label&&this._label.nativeElement.children.length){var a=i.getBoundingClientRect();if(0===a.width&&0===a.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);for(var l=this._getStartEnd(a),s=this._getStartEnd(t.children[0].getBoundingClientRect()),u=0,c=0,d=t.children;c0?.75*u+10:0}for(var h=0;h *";case":leave":return"* => void";case":increment":return function(t,e){return parseFloat(e)>parseFloat(t)};case":decrement":return function(t,e){return parseFloat(e) *"}}(t,n);if("function"==typeof i)return void e.push(i);t=i}var r=t.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==r||r.length<4)return n.push('The provided transition expression "'+t+'" is not supported'),e;var o=r[1],a=r[2],l=r[3];e.push(ax(o,l)),"<"!=a[0]||o==ix&&l==ix||e.push(ax(l,o))}(t,r,i)}):r.push(n),r),animation:o,queryCount:e.queryCount,depCount:e.depCount,options:hx(t.options)}},t.prototype.visitSequence=function(t,e){var n=this;return{type:2,steps:t.steps.map(function(t){return ex(n,t,e)}),options:hx(t.options)}},t.prototype.visitGroup=function(t,e){var n=this,i=e.currentTime,r=0,o=t.steps.map(function(t){e.currentTime=i;var o=ex(n,t,e);return r=Math.max(r,e.currentTime),o});return e.currentTime=r,{type:3,steps:o,options:hx(t.options)}},t.prototype.visitAnimate=function(t,e){var n,i=function(t,e){var n=null;if(t.hasOwnProperty("duration"))n=t;else if("number"==typeof t)return px(jb(t,e).duration,0,"");var i=t;if(i.split(/\s+/).some(function(t){return"{"==t.charAt(0)&&"{"==t.charAt(1)})){var r=px(0,0,"");return r.dynamic=!0,r.strValue=i,r}return px((n=n||jb(i,e)).duration,n.delay,n.easing)}(t.timings,e.errors);e.currentAnimateTimings=i;var r=t.styles?t.styles:Uv({});if(5==r.type)n=this.visitKeyframes(r,e);else{var o=t.styles,a=!1;if(!o){a=!0;var l={};i.easing&&(l.easing=i.easing),o=Uv(l)}e.currentTime+=i.duration+i.delay;var s=this.visitStyle(o,e);s.isEmptyStep=a,n=s}return e.currentAnimateTimings=null,{type:4,timings:i,style:n,options:null}},t.prototype.visitStyle=function(t,e){var n=this._makeStyleAst(t,e);return this._validateStyleAst(n,e),n},t.prototype._makeStyleAst=function(t,e){var n=[];Array.isArray(t.styles)?t.styles.forEach(function(t){"string"==typeof t?t==Bv?n.push(t):e.errors.push("The provided style string value "+t+" is not allowed."):n.push(t)}):n.push(t.styles);var i=!1,r=null;return n.forEach(function(t){if(dx(t)){var e=t,n=e.easing;if(n&&(r=n,delete e.easing),!i)for(var o in e)if(e[o].toString().indexOf("{{")>=0){i=!0;break}}}),{type:6,styles:n,easing:r,offset:t.offset,containsDynamicStyles:i,options:null}},t.prototype._validateStyleAst=function(t,e){var n=this,i=e.currentAnimateTimings,r=e.currentTime,o=e.currentTime;i&&o>0&&(o-=i.duration+i.delay),t.styles.forEach(function(t){"string"!=typeof t&&Object.keys(t).forEach(function(i){if(n._driver.validateStyleProperty(i)){var a,l,s,u=e.collectedStyles[e.currentQuerySelector],c=u[i],d=!0;c&&(o!=r&&o>=c.startTime&&r<=c.endTime&&(e.errors.push('The CSS property "'+i+'" that exists between the times of "'+c.startTime+'ms" and "'+c.endTime+'ms" is also being animated in a parallel animation between the times of "'+o+'ms" and "'+r+'ms"'),d=!1),o=c.startTime),d&&(u[i]={startTime:o,endTime:r}),e.options&&(a=e.errors,l=e.options.params||{},(s=Xb(t[i])).length&&s.forEach(function(t){l.hasOwnProperty(t)||a.push("Unable to resolve the local animation param "+t+" in the given list of values")}))}else e.errors.push('The provided animation property "'+i+'" is not a supported CSS property for animations')})})},t.prototype.visitKeyframes=function(t,e){var n=this,i={type:5,styles:[],options:null};if(!e.currentAnimateTimings)return e.errors.push("keyframes() must be placed inside of a call to animate()"),i;var r=0,o=[],a=!1,l=!1,s=0,u=t.steps.map(function(t){var i=n._makeStyleAst(t,e),u=null!=i.offset?i.offset:function(t){if("string"==typeof t)return null;var e=null;if(Array.isArray(t))t.forEach(function(t){if(dx(t)&&t.hasOwnProperty("offset")){var n=t;e=parseFloat(n.offset),delete n.offset}});else if(dx(t)&&t.hasOwnProperty("offset")){var n=t;e=parseFloat(n.offset),delete n.offset}return e}(i.styles),c=0;return null!=u&&(r++,c=i.offset=u),l=l||c<0||c>1,a=a||c0&&r0?r==h?1:d*r:o[r],l=a*m;e.currentTime=p+f.delay+l,f.duration=l,n._validateStyleAst(t,e),t.offset=a,i.styles.push(t)}),i},t.prototype.visitReference=function(t,e){return{type:8,animation:ex(this,Gb(t.animation),e),options:hx(t.options)}},t.prototype.visitAnimateChild=function(t,e){return e.depCount++,{type:9,options:hx(t.options)}},t.prototype.visitAnimateRef=function(t,e){return{type:10,animation:this.visitReference(t.animation,e),options:hx(t.options)}},t.prototype.visitQuery=function(t,e){var n=e.currentQuerySelector,i=t.options||{};e.queryCount++,e.currentQuery=t;var r=c(function(t){var e=!!t.split(/\s*,\s*/).find(function(t){return":self"==t});return e&&(t=t.replace(lx,"")),[t=t.replace(/@\*/g,".ng-trigger").replace(/@\w+/g,function(t){return".ng-trigger-"+t.substr(1)}).replace(/:animating/g,".ng-animating"),e]}(t.selector),2),o=r[0],a=r[1];e.currentQuerySelector=n.length?n+" "+o:o,vb(e.collectedStyles,e.currentQuerySelector,{});var l=ex(this,Gb(t.animation),e);return e.currentQuery=null,e.currentQuerySelector=n,{type:11,selector:o,limit:i.limit||0,optional:!!i.optional,includeSelf:a,animation:l,originalSelector:t.selector,options:hx(t.options)}},t.prototype.visitStagger=function(t,e){e.currentQuery||e.errors.push("stagger() can only be used inside of query()");var n="full"===t.timings?{duration:0,delay:0,easing:"full"}:jb(t.timings,e.errors,!0);return{type:12,animation:ex(this,Gb(t.animation),e),timings:n,options:null}},t}(),cx=function(){return function(t){this.errors=t,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null}}();function dx(t){return!Array.isArray(t)&&"object"==typeof t}function hx(t){var e;return t?(t=Hb(t)).params&&(t.params=(e=t.params)?Hb(e):null):t={},t}function px(t,e,n){return{duration:t,delay:e,easing:n}}function fx(t,e,n,i,r,o,a,l){return void 0===a&&(a=null),void 0===l&&(l=!1),{type:1,element:t,keyframes:e,preStyleProps:n,postStyleProps:i,duration:r,delay:o,totalTime:r+o,easing:a,subTimeline:l}}var mx=function(){function t(){this._map=new Map}return t.prototype.consume=function(t){var e=this._map.get(t);return e?this._map.delete(t):e=[],e},t.prototype.append=function(t,e){var n=this._map.get(t);n||this._map.set(t,n=[]),n.push.apply(n,d(e))},t.prototype.has=function(t){return this._map.has(t)},t.prototype.clear=function(){this._map.clear()},t}(),gx=new RegExp(":enter","g"),yx=new RegExp(":leave","g");function _x(t,e,n,i,r,o,a,l,s,u){return void 0===o&&(o={}),void 0===a&&(a={}),void 0===u&&(u=[]),(new vx).buildKeyframes(t,e,n,i,r,o,a,l,s,u)}var vx=function(){function t(){}return t.prototype.buildKeyframes=function(t,e,n,i,r,o,a,l,s,u){void 0===u&&(u=[]),s=s||new mx;var c=new xx(t,e,s,i,r,u,[]);c.options=l,c.currentTimeline.setStyles([o],null,c.errors,l),ex(this,n,c);var d=c.timelines.filter(function(t){return t.containsAnimation()});if(d.length&&Object.keys(a).length){var h=d[d.length-1];h.allowOnlyTimelineStyles()||h.setStyles([a],null,c.errors,l)}return d.length?d.map(function(t){return t.buildKeyframes()}):[fx(e,[],[],[],0,0,"",!1)]},t.prototype.visitTrigger=function(t,e){},t.prototype.visitState=function(t,e){},t.prototype.visitTransition=function(t,e){},t.prototype.visitAnimateChild=function(t,e){var n=e.subInstructions.consume(e.element);if(n){var i=e.createSubContext(t.options),r=e.currentTimeline.currentTime,o=this._visitSubInstructions(n,i,i.options);r!=o&&e.transformIntoNewTimeline(o)}e.previousNode=t},t.prototype.visitAnimateRef=function(t,e){var n=e.createSubContext(t.options);n.transformIntoNewTimeline(),this.visitReference(t.animation,n),e.transformIntoNewTimeline(n.currentTimeline.currentTime),e.previousNode=t},t.prototype._visitSubInstructions=function(t,e,n){var i=e.currentTimeline.currentTime,r=null!=n.duration?Fb(n.duration):null,o=null!=n.delay?Fb(n.delay):null;return 0!==r&&t.forEach(function(t){var n=e.appendInstructionToTimeline(t,r,o);i=Math.max(i,n.duration+n.delay)}),i},t.prototype.visitReference=function(t,e){e.updateOptions(t.options,!0),ex(this,t.animation,e),e.previousNode=t},t.prototype.visitSequence=function(t,e){var n=this,i=e.subContextCount,r=e,o=t.options;if(o&&(o.params||o.delay)&&((r=e.createSubContext(o)).transformIntoNewTimeline(),null!=o.delay)){6==r.previousNode.type&&(r.currentTimeline.snapshotCurrentStyles(),r.previousNode=bx);var a=Fb(o.delay);r.delayNextStep(a)}t.steps.length&&(t.steps.forEach(function(t){return ex(n,t,r)}),r.currentTimeline.applyStylesToKeyframe(),r.subContextCount>i&&r.transformIntoNewTimeline()),e.previousNode=t},t.prototype.visitGroup=function(t,e){var n=this,i=[],r=e.currentTimeline.currentTime,o=t.options&&t.options.delay?Fb(t.options.delay):0;t.steps.forEach(function(a){var l=e.createSubContext(t.options);o&&l.delayNextStep(o),ex(n,a,l),r=Math.max(r,l.currentTimeline.currentTime),i.push(l.currentTimeline)}),i.forEach(function(t){return e.currentTimeline.mergeTimelineCollectedStyles(t)}),e.transformIntoNewTimeline(r),e.previousNode=t},t.prototype._visitTiming=function(t,e){if(t.dynamic){var n=t.strValue;return jb(e.params?Kb(n,e.params,e.errors):n,e.errors)}return{duration:t.duration,delay:t.delay,easing:t.easing}},t.prototype.visitAnimate=function(t,e){var n=e.currentAnimateTimings=this._visitTiming(t.timings,e),i=e.currentTimeline;n.delay&&(e.incrementTime(n.delay),i.snapshotCurrentStyles());var r=t.style;5==r.type?this.visitKeyframes(r,e):(e.incrementTime(n.duration),this.visitStyle(r,e),i.applyStylesToKeyframe()),e.currentAnimateTimings=null,e.previousNode=t},t.prototype.visitStyle=function(t,e){var n=e.currentTimeline,i=e.currentAnimateTimings;!i&&n.getCurrentStyleProperties().length&&n.forwardFrame();var r=i&&i.easing||t.easing;t.isEmptyStep?n.applyEmptyStep(r):n.setStyles(t.styles,r,e.errors,e.options),e.previousNode=t},t.prototype.visitKeyframes=function(t,e){var n=e.currentAnimateTimings,i=e.currentTimeline.duration,r=n.duration,o=e.createSubContext().currentTimeline;o.easing=n.easing,t.styles.forEach(function(t){o.forwardTime((t.offset||0)*r),o.setStyles(t.styles,t.easing,e.errors,e.options),o.applyStylesToKeyframe()}),e.currentTimeline.mergeTimelineCollectedStyles(o),e.transformIntoNewTimeline(i+r),e.previousNode=t},t.prototype.visitQuery=function(t,e){var n=this,i=e.currentTimeline.currentTime,r=t.options||{},o=r.delay?Fb(r.delay):0;o&&(6===e.previousNode.type||0==i&&e.currentTimeline.getCurrentStyleProperties().length)&&(e.currentTimeline.snapshotCurrentStyles(),e.previousNode=bx);var a=i,l=e.invokeQuery(t.selector,t.originalSelector,t.limit,t.includeSelf,!!r.optional,e.errors);e.currentQueryTotal=l.length;var s=null;l.forEach(function(i,r){e.currentQueryIndex=r;var l=e.createSubContext(t.options,i);o&&l.delayNextStep(o),i===e.element&&(s=l.currentTimeline),ex(n,t.animation,l),l.currentTimeline.applyStylesToKeyframe(),a=Math.max(a,l.currentTimeline.currentTime)}),e.currentQueryIndex=0,e.currentQueryTotal=0,e.transformIntoNewTimeline(a),s&&(e.currentTimeline.mergeTimelineCollectedStyles(s),e.currentTimeline.snapshotCurrentStyles()),e.previousNode=t},t.prototype.visitStagger=function(t,e){var n=e.parentContext,i=e.currentTimeline,r=t.timings,o=Math.abs(r.duration),a=o*(e.currentQueryTotal-1),l=o*e.currentQueryIndex;switch(r.duration<0?"reverse":r.easing){case"reverse":l=a-l;break;case"full":l=n.currentStaggerTime}var s=e.currentTimeline;l&&s.delayNextStep(l);var u=s.currentTime;ex(this,t.animation,e),e.previousNode=t,n.currentStaggerTime=i.currentTime-u+(i.startTime-n.currentTimeline.startTime)},t}(),bx={},xx=function(){function t(t,e,n,i,r,o,a,l){this._driver=t,this.element=e,this.subInstructions=n,this._enterClassName=i,this._leaveClassName=r,this.errors=o,this.timelines=a,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=bx,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new wx(this._driver,e,0),a.push(this.currentTimeline)}return Object.defineProperty(t.prototype,"params",{get:function(){return this.options.params},enumerable:!0,configurable:!0}),t.prototype.updateOptions=function(t,e){var n=this;if(t){var i=t,r=this.options;null!=i.duration&&(r.duration=Fb(i.duration)),null!=i.delay&&(r.delay=Fb(i.delay));var o=i.params;if(o){var a=r.params;a||(a=this.options.params={}),Object.keys(o).forEach(function(t){e&&a.hasOwnProperty(t)||(a[t]=Kb(o[t],a,n.errors))})}}},t.prototype._copyOptions=function(){var t={};if(this.options){var e=this.options.params;if(e){var n=t.params={};Object.keys(e).forEach(function(t){n[t]=e[t]})}}return t},t.prototype.createSubContext=function(e,n,i){void 0===e&&(e=null);var r=n||this.element,o=new t(this._driver,r,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(r,i||0));return o.previousNode=this.previousNode,o.currentAnimateTimings=this.currentAnimateTimings,o.options=this._copyOptions(),o.updateOptions(e),o.currentQueryIndex=this.currentQueryIndex,o.currentQueryTotal=this.currentQueryTotal,o.parentContext=this,this.subContextCount++,o},t.prototype.transformIntoNewTimeline=function(t){return this.previousNode=bx,this.currentTimeline=this.currentTimeline.fork(this.element,t),this.timelines.push(this.currentTimeline),this.currentTimeline},t.prototype.appendInstructionToTimeline=function(t,e,n){var i={duration:null!=e?e:t.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+t.delay,easing:""},r=new kx(this._driver,t.element,t.keyframes,t.preStyleProps,t.postStyleProps,i,t.stretchStartingKeyframe);return this.timelines.push(r),i},t.prototype.incrementTime=function(t){this.currentTimeline.forwardTime(this.currentTimeline.duration+t)},t.prototype.delayNextStep=function(t){t>0&&this.currentTimeline.delayNextStep(t)},t.prototype.invokeQuery=function(t,e,n,i,r,o){var a=[];if(i&&a.push(this.element),t.length>0){t=(t=t.replace(gx,"."+this._enterClassName)).replace(yx,"."+this._leaveClassName);var l=this._driver.query(this.element,t,1!=n);0!==n&&(l=n<0?l.slice(l.length+n,l.length):l.slice(0,n)),a.push.apply(a,d(l))}return r||0!=a.length||o.push('`query("'+e+'")` returned zero elements. (Use `query("'+e+'", { optional: true })` if you wish to allow this.)'),a},t}(),wx=function(){function t(t,e,n,i){this._driver=t,this.element=e,this.startTime=n,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(e),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(e,this._localTimelineStyles)),this._loadKeyframe()}return t.prototype.containsAnimation=function(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}},t.prototype.getCurrentStyleProperties=function(){return Object.keys(this._currentKeyframe)},Object.defineProperty(t.prototype,"currentTime",{get:function(){return this.startTime+this.duration},enumerable:!0,configurable:!0}),t.prototype.delayNextStep=function(t){var e=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||e?(this.forwardTime(this.currentTime+t),e&&this.snapshotCurrentStyles()):this.startTime+=t},t.prototype.fork=function(e,n){return this.applyStylesToKeyframe(),new t(this._driver,e,n||this.currentTime,this._elementTimelineStylesLookup)},t.prototype._loadKeyframe=function(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))},t.prototype.forwardFrame=function(){this.duration+=1,this._loadKeyframe()},t.prototype.forwardTime=function(t){this.applyStylesToKeyframe(),this.duration=t,this._loadKeyframe()},t.prototype._updateStyle=function(t,e){this._localTimelineStyles[t]=e,this._globalTimelineStyles[t]=e,this._styleSummary[t]={time:this.currentTime,value:e}},t.prototype.allowOnlyTimelineStyles=function(){return this._currentEmptyStepKeyframe!==this._currentKeyframe},t.prototype.applyEmptyStep=function(t){var e=this;t&&(this._previousKeyframe.easing=t),Object.keys(this._globalTimelineStyles).forEach(function(t){e._backFill[t]=e._globalTimelineStyles[t]||Bv,e._currentKeyframe[t]=Bv}),this._currentEmptyStepKeyframe=this._currentKeyframe},t.prototype.setStyles=function(t,e,n,i){var r=this;e&&(this._previousKeyframe.easing=e);var o=i&&i.params||{},a=function(t,e){var n,i={};return t.forEach(function(t){"*"===t?(n=n||Object.keys(e)).forEach(function(t){i[t]=Bv}):Nb(t,!1,i)}),i}(t,this._globalTimelineStyles);Object.keys(a).forEach(function(t){var e=Kb(a[t],o,n);r._pendingStyles[t]=e,r._localTimelineStyles.hasOwnProperty(t)||(r._backFill[t]=r._globalTimelineStyles.hasOwnProperty(t)?r._globalTimelineStyles[t]:Bv),r._updateStyle(t,e)})},t.prototype.applyStylesToKeyframe=function(){var t=this,e=this._pendingStyles,n=Object.keys(e);0!=n.length&&(this._pendingStyles={},n.forEach(function(n){t._currentKeyframe[n]=e[n]}),Object.keys(this._localTimelineStyles).forEach(function(e){t._currentKeyframe.hasOwnProperty(e)||(t._currentKeyframe[e]=t._localTimelineStyles[e])}))},t.prototype.snapshotCurrentStyles=function(){var t=this;Object.keys(this._localTimelineStyles).forEach(function(e){var n=t._localTimelineStyles[e];t._pendingStyles[e]=n,t._updateStyle(e,n)})},t.prototype.getFinalKeyframe=function(){return this._keyframes.get(this.duration)},Object.defineProperty(t.prototype,"properties",{get:function(){var t=[];for(var e in this._currentKeyframe)t.push(e);return t},enumerable:!0,configurable:!0}),t.prototype.mergeTimelineCollectedStyles=function(t){var e=this;Object.keys(t._styleSummary).forEach(function(n){var i=e._styleSummary[n],r=t._styleSummary[n];(!i||r.time>i.time)&&e._updateStyle(n,r.value)})},t.prototype.buildKeyframes=function(){var t=this;this.applyStylesToKeyframe();var e=new Set,n=new Set,i=1===this._keyframes.size&&0===this.duration,r=[];this._keyframes.forEach(function(o,a){var l=Nb(o,!0);Object.keys(l).forEach(function(t){var i=l[t];i==Kv?e.add(t):i==Bv&&n.add(t)}),i||(l.offset=a/t.duration),r.push(l)});var o=e.size?Zb(e.values()):[],a=n.size?Zb(n.values()):[];if(i){var l=r[0],s=Hb(l);l.offset=0,s.offset=1,r=[l,s]}return fx(this.element,r,o,a,this.duration,this.startTime,this.easing,!1)},t}(),kx=function(t){function e(e,n,i,r,o,a,l){void 0===l&&(l=!1);var s=t.call(this,e,n,a.delay)||this;return s.element=n,s.keyframes=i,s.preStyleProps=r,s.postStyleProps=o,s._stretchStartingKeyframe=l,s.timings={duration:a.duration,delay:a.delay,easing:a.easing},s}return r(e,t),e.prototype.containsAnimation=function(){return this.keyframes.length>1},e.prototype.buildKeyframes=function(){var t=this.keyframes,e=this.timings,n=e.delay,i=e.duration,r=e.easing;if(this._stretchStartingKeyframe&&n){var o=[],a=i+n,l=n/a,s=Nb(t[0],!1);s.offset=0,o.push(s);var u=Nb(t[0],!1);u.offset=Mx(l),o.push(u);for(var c=t.length-1,d=1;d<=c;d++){var h=Nb(t[d],!1);h.offset=Mx((n+h.offset*i)/a),o.push(h)}i=a,n=0,r="",t=o}return fx(this.element,t,this.preStyleProps,this.postStyleProps,i,n,r,!0)},e}(wx);function Mx(t,e){void 0===e&&(e=3);var n=Math.pow(10,e-1);return Math.round(t*n)/n}var Sx=function(){return function(){}}(),Cx=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.prototype.normalizePropertyName=function(t,e){return Qb(t)},e.prototype.normalizeStyleValue=function(t,e,n,i){var r="",o=n.toString().trim();if(Lx[e]&&0!==n&&"0"!==n)if("number"==typeof n)r="px";else{var a=n.match(/^[+-]?[\d\.]+([a-z]*)$/);a&&0==a[1].length&&i.push("Please provide a CSS unit value for "+t+":"+n)}return o+r},e}(Sx),Lx=Dx("width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective".split(","));function Dx(t){var e={};return t.forEach(function(t){return e[t]=!0}),e}function Tx(t,e,n,i,r,o,a,l,s,u,c,d,h){return{type:0,element:t,triggerName:e,isRemovalTransition:r,fromState:n,fromStyles:o,toState:i,toStyles:a,timelines:l,queriedElements:s,preStyleProps:u,postStyleProps:c,totalTime:d,errors:h}}var Ex={},Ax=function(){function t(t,e,n){this._triggerName=t,this.ast=e,this._stateStyles=n}return t.prototype.match=function(t,e,n,i){return function(t,e,n,i,r){return t.some(function(t){return t(e,n,i,r)})}(this.ast.matchers,t,e,n,i)},t.prototype.buildStyles=function(t,e,n){var i=this._stateStyles["*"],r=this._stateStyles[t],o=i?i.buildStyles(e,n):{};return r?r.buildStyles(e,n):o},t.prototype.build=function(t,e,n,i,r,a,l,s,u,c){var d=[],h=this.ast.options&&this.ast.options.params||Ex,p=this.buildStyles(n,l&&l.params||Ex,d),f=s&&s.params||Ex,m=this.buildStyles(i,f,d),g=new Set,y=new Map,_=new Map,v="void"===i,b={params:o({},h,f)},x=c?[]:_x(t,e,this.ast.animation,r,a,p,m,b,u,d),w=0;if(x.forEach(function(t){w=Math.max(t.duration+t.delay,w)}),d.length)return Tx(e,this._triggerName,n,i,v,p,m,[],[],y,_,w,d);x.forEach(function(t){var n=t.element,i=vb(y,n,{});t.preStyleProps.forEach(function(t){return i[t]=!0});var r=vb(_,n,{});t.postStyleProps.forEach(function(t){return r[t]=!0}),n!==e&&g.add(n)});var k=Zb(g.values());return Tx(e,this._triggerName,n,i,v,p,m,x,k,y,_,w)},t}(),Px=function(){function t(t,e){this.styles=t,this.defaultParams=e}return t.prototype.buildStyles=function(t,e){var n={},i=Hb(this.defaultParams);return Object.keys(t).forEach(function(e){var n=t[e];null!=n&&(i[e]=n)}),this.styles.styles.forEach(function(t){if("string"!=typeof t){var r=t;Object.keys(r).forEach(function(t){var o=r[t];o.length>1&&(o=Kb(o,i,e)),n[t]=o})}}),n},t}(),Ox=function(){function t(t,e){var n=this;this.name=t,this.ast=e,this.transitionFactories=[],this.states={},e.states.forEach(function(t){n.states[t.name]=new Px(t.style,t.options&&t.options.params||{})}),Yx(this.states,"true","1"),Yx(this.states,"false","0"),e.transitions.forEach(function(e){n.transitionFactories.push(new Ax(t,e,n.states))}),this.fallbackTransition=new Ax(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[function(t,e){return!0}],options:null,queryCount:0,depCount:0},this.states)}return Object.defineProperty(t.prototype,"containsQueries",{get:function(){return this.ast.queryCount>0},enumerable:!0,configurable:!0}),t.prototype.matchTransition=function(t,e,n,i){return this.transitionFactories.find(function(r){return r.match(t,e,n,i)})||null},t.prototype.matchStyles=function(t,e,n){return this.fallbackTransition.buildStyles(t,e,n)},t}();function Yx(t,e,n){t.hasOwnProperty(e)?t.hasOwnProperty(n)||(t[n]=t[e]):t.hasOwnProperty(n)&&(t[e]=t[n])}var Rx=new mx,Ix=function(){function t(t,e,n){this.bodyNode=t,this._driver=e,this._normalizer=n,this._animations={},this._playersById={},this.players=[]}return t.prototype.register=function(t,e){var n=[],i=sx(this._driver,e,n);if(n.length)throw new Error("Unable to build the animation due to the following errors: "+n.join("\n"));this._animations[t]=i},t.prototype._buildPlayer=function(t,e,n){var i=t.element,r=mb(0,this._normalizer,0,t.keyframes,e,n);return this._driver.animate(i,r,t.duration,t.delay,t.easing,[],!0)},t.prototype.create=function(t,e,n){var i=this;void 0===n&&(n={});var r,o=[],a=this._animations[t],l=new Map;if(a?(r=_x(this._driver,e,a,"ng-enter","ng-leave",{},{},n,Rx,o)).forEach(function(t){var e=vb(l,t.element,{});t.postStyleProps.forEach(function(t){return e[t]=null})}):(o.push("The requested animation doesn't exist or has already been destroyed"),r=[]),o.length)throw new Error("Unable to create the animation due to the following errors: "+o.join("\n"));l.forEach(function(t,e){Object.keys(t).forEach(function(n){t[n]=i._driver.computeStyle(e,n,Bv)})});var s=fb(r.map(function(t){var e=l.get(t.element);return i._buildPlayer(t,{},e)}));return this._playersById[t]=s,s.onDestroy(function(){return i.destroy(t)}),this.players.push(s),s},t.prototype.destroy=function(t){var e=this._getPlayer(t);e.destroy(),delete this._playersById[t];var n=this.players.indexOf(e);n>=0&&this.players.splice(n,1)},t.prototype._getPlayer=function(t){var e=this._playersById[t];if(!e)throw new Error("Unable to find the timeline player referenced by "+t);return e},t.prototype.listen=function(t,e,n,i){var r=_b(e,"","","");return gb(this._getPlayer(t),n,r,i),function(){}},t.prototype.command=function(t,e,n,i){if("register"!=n)if("create"!=n){var r=this._getPlayer(t);switch(n){case"play":r.play();break;case"pause":r.pause();break;case"reset":r.reset();break;case"restart":r.restart();break;case"finish":r.finish();break;case"init":r.init();break;case"setPosition":r.setPosition(parseFloat(i[0]));break;case"destroy":this.destroy(t)}}else this.create(t,e,i[0]||{});else this.register(t,i[0])},t}(),Fx=[],zx={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},jx={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Hx="__ng_removed",Nx=function(){function t(t,e){void 0===e&&(e=""),this.namespaceId=e;var n=t&&t.hasOwnProperty("value");if(this.value=function(t){return null!=t?t:null}(n?t.value:t),n){var i=Hb(t);delete i.value,this.options=i}else this.options={};this.options.params||(this.options.params={})}return Object.defineProperty(t.prototype,"params",{get:function(){return this.options.params},enumerable:!0,configurable:!0}),t.prototype.absorbOptions=function(t){var e=t.params;if(e){var n=this.options.params;Object.keys(e).forEach(function(t){null==n[t]&&(n[t]=e[t])})}},t}(),Vx=new Nx("void"),Bx=function(){function t(t,e,n){this.id=t,this.hostElement=e,this._engine=n,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+t,Jx(e,this._hostClassName)}return t.prototype.listen=function(t,e,n,i){var r,o=this;if(!this._triggers.hasOwnProperty(e))throw new Error('Unable to listen on the animation trigger event "'+n+'" because the animation trigger "'+e+"\" doesn't exist!");if(null==n||0==n.length)throw new Error('Unable to listen on the animation trigger "'+e+'" because the provided event is undefined!');if("start"!=(r=n)&&"done"!=r)throw new Error('The provided animation trigger event "'+n+'" for the animation trigger "'+e+'" is not supported!');var a=vb(this._elementListeners,t,[]),l={name:e,phase:n,callback:i};a.push(l);var s=vb(this._engine.statesByElement,t,{});return s.hasOwnProperty(e)||(Jx(t,"ng-trigger"),Jx(t,"ng-trigger-"+e),s[e]=Vx),function(){o._engine.afterFlush(function(){var t=a.indexOf(l);t>=0&&a.splice(t,1),o._triggers[e]||delete s[e]})}},t.prototype.register=function(t,e){return!this._triggers[t]&&(this._triggers[t]=e,!0)},t.prototype._getTrigger=function(t){var e=this._triggers[t];if(!e)throw new Error('The provided animation trigger "'+t+'" has not been registered!');return e},t.prototype.trigger=function(t,e,n,i){var r=this;void 0===i&&(i=!0);var o=this._getTrigger(e),a=new Ux(this.id,e,t),l=this._engine.statesByElement.get(t);l||(Jx(t,"ng-trigger"),Jx(t,"ng-trigger-"+e),this._engine.statesByElement.set(t,l={}));var s=l[e],u=new Nx(n,this.id);if(!(n&&n.hasOwnProperty("value"))&&s&&u.absorbOptions(s.options),l[e]=u,s||(s=Vx),"void"===u.value||s.value!==u.value){var c=vb(this._engine.playersByElement,t,[]);c.forEach(function(t){t.namespaceId==r.id&&t.triggerName==e&&t.queued&&t.destroy()});var d=o.matchTransition(s.value,u.value,t,u.params),h=!1;if(!d){if(!i)return;d=o.fallbackTransition,h=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:t,triggerName:e,transition:d,fromState:s,toState:u,player:a,isFallbackTransition:h}),h||(Jx(t,"ng-animate-queued"),a.onStart(function(){Qx(t,"ng-animate-queued")})),a.onDone(function(){var e=r.players.indexOf(a);e>=0&&r.players.splice(e,1);var n=r._engine.playersByElement.get(t);if(n){var i=n.indexOf(a);i>=0&&n.splice(i,1)}}),this.players.push(a),c.push(a),a}if(!function(t,e){var n=Object.keys(t),i=Object.keys(e);if(n.length!=i.length)return!1;for(var r=0;r=0){for(var i=!1,r=n;r>=0;r--)if(this.driver.containsElement(this._namespaceList[r].hostElement,e)){this._namespaceList.splice(r+1,0,t),i=!0;break}i||this._namespaceList.splice(0,0,t)}else this._namespaceList.push(t);return this.namespacesByHostElement.set(e,t),t},t.prototype.register=function(t,e){var n=this._namespaceLookup[t];return n||(n=this.createNamespace(t,e)),n},t.prototype.registerTrigger=function(t,e,n){var i=this._namespaceLookup[t];i&&i.register(e,n)&&this.totalAnimations++},t.prototype.destroy=function(t,e){var n=this;if(t){var i=this._fetchNamespace(t);this.afterFlush(function(){n.namespacesByHostElement.delete(i.hostElement),delete n._namespaceLookup[t];var e=n._namespaceList.indexOf(i);e>=0&&n._namespaceList.splice(e,1)}),this.afterFlushAnimationsDone(function(){return i.destroy(e)})}},t.prototype._fetchNamespace=function(t){return this._namespaceLookup[t]},t.prototype.fetchNamespacesByElement=function(t){var e=new Set,n=this.statesByElement.get(t);if(n)for(var i=Object.keys(n),r=0;r=0&&this.collectedLeaveElements.splice(o,1)}if(t){var a=this._fetchNamespace(t);a&&a.insertNode(e,n)}i&&this.collectEnterElement(e)}},t.prototype.collectEnterElement=function(t){this.collectedEnterElements.push(t)},t.prototype.markElementAsDisabled=function(t,e){e?this.disabledNodes.has(t)||(this.disabledNodes.add(t),Jx(t,"ng-animate-disabled")):this.disabledNodes.has(t)&&(this.disabledNodes.delete(t),Qx(t,"ng-animate-disabled"))},t.prototype.removeNode=function(t,e,n){if(Gx(e)){var i=t?this._fetchNamespace(t):null;i?i.removeNode(e,n):this.markElementAsRemoved(t,e,!1,n)}else this._onRemovalComplete(e,n)},t.prototype.markElementAsRemoved=function(t,e,n,i){this.collectedLeaveElements.push(e),e[Hx]={namespaceId:t,setForRemoval:i,hasAnimation:n,removedBeforeQueried:!1}},t.prototype.listen=function(t,e,n,i,r){return Gx(e)?this._fetchNamespace(t).listen(e,n,i,r):function(){}},t.prototype._buildInstruction=function(t,e,n,i,r){return t.transition.build(this.driver,t.element,t.fromState.value,t.toState.value,n,i,t.fromState.options,t.toState.options,e,r)},t.prototype.destroyInnerAnimations=function(t){var e=this,n=this.driver.query(t,".ng-trigger",!0);n.forEach(function(t){return e.destroyActiveAnimationsForElement(t)}),0!=this.playersByQueriedElement.size&&(n=this.driver.query(t,".ng-animating",!0)).forEach(function(t){return e.finishActiveQueriedAnimationOnElement(t)})},t.prototype.destroyActiveAnimationsForElement=function(t){var e=this.playersByElement.get(t);e&&e.forEach(function(t){t.queued?t.markedForDestroy=!0:t.destroy()})},t.prototype.finishActiveQueriedAnimationOnElement=function(t){var e=this.playersByQueriedElement.get(t);e&&e.forEach(function(t){return t.finish()})},t.prototype.whenRenderingDone=function(){var t=this;return new Promise(function(e){if(t.players.length)return fb(t.players).onDone(function(){return e()});e()})},t.prototype.processLeaveNode=function(t){var e=this,n=t[Hx];if(n&&n.setForRemoval){if(t[Hx]=zx,n.namespaceId){this.destroyInnerAnimations(t);var i=this._fetchNamespace(n.namespaceId);i&&i.clearElementCache(t)}this._onRemovalComplete(t,n.setForRemoval)}this.driver.matchesElement(t,".ng-animate-disabled")&&this.markElementAsDisabled(t,!1),this.driver.query(t,".ng-animate-disabled",!0).forEach(function(t){e.markElementAsDisabled(t,!1)})},t.prototype.flush=function(t){var e=this;void 0===t&&(t=-1);var n=[];if(this.newHostElements.size&&(this.newHostElements.forEach(function(t,n){return e._balanceNamespaceList(t,n)}),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(var i=0;i=0;C--)this._namespaceList[C].drainQueuedTransitions(e).forEach(function(t){var e=t.player,o=t.element;if(M.push(e),n.collectedEnterElements.length){var a=o[Hx];if(a&&a.setForMove)return void e.destroy()}var d=!p||!n.driver.containsElement(p,o),h=w.get(o),f=g.get(o),m=n._buildInstruction(t,i,f,h,d);if(m.errors&&m.errors.length)S.push(m);else{if(d)return e.onStart(function(){return Ub(o,m.fromStyles)}),e.onDestroy(function(){return Wb(o,m.toStyles)}),void r.push(e);if(t.isFallbackTransition)return e.onStart(function(){return Ub(o,m.fromStyles)}),e.onDestroy(function(){return Wb(o,m.toStyles)}),void r.push(e);m.timelines.forEach(function(t){return t.stretchStartingKeyframe=!0}),i.append(o,m.timelines),l.push({instruction:m,player:e,element:o}),m.queriedElements.forEach(function(t){return vb(s,t,[]).push(e)}),m.preStyleProps.forEach(function(t,e){var n=Object.keys(t);if(n.length){var i=u.get(e);i||u.set(e,i=new Set),n.forEach(function(t){return i.add(t)})}}),m.postStyleProps.forEach(function(t,e){var n=Object.keys(t),i=c.get(e);i||c.set(e,i=new Set),n.forEach(function(t){return i.add(t)})})}});if(S.length){var L=[];S.forEach(function(t){L.push("@"+t.triggerName+" has failed due to:\n"),t.errors.forEach(function(t){return L.push("- "+t+"\n")})}),M.forEach(function(t){return t.destroy()}),this.reportError(L)}var D=new Map,T=new Map;l.forEach(function(t){var e=t.element;i.has(e)&&(T.set(e,e),n._beforeAnimationBuild(t.player.namespaceId,t.instruction,D))}),r.forEach(function(t){var e=t.element;n._getPreviousPlayers(e,!1,t.namespaceId,t.triggerName,null).forEach(function(t){vb(D,e,[]).push(t),t.destroy()})});var E=_.filter(function(t){return tw(t,u,c)}),A=new Map;Xx(A,this.driver,b,c,Bv).forEach(function(t){tw(t,u,c)&&E.push(t)});var P=new Map;m.forEach(function(t,e){Xx(P,n.driver,new Set(t),u,Kv)}),E.forEach(function(t){var e=A.get(t),n=P.get(t);A.set(t,o({},e,n))});var O=[],Y=[],R={};l.forEach(function(t){var e=t.element,o=t.player,l=t.instruction;if(i.has(e)){if(h.has(e))return o.onDestroy(function(){return Wb(e,l.toStyles)}),o.disabled=!0,o.overrideTotalTime(l.totalTime),void r.push(o);var s=R;if(T.size>1){for(var u=e,c=[];u=u.parentNode;){var d=T.get(u);if(d){s=d;break}c.push(u)}c.forEach(function(t){return T.set(t,s)})}var p=n._buildAnimation(o.namespaceId,l,D,a,P,A);if(o.setRealPlayer(p),s===R)O.push(o);else{var f=n.playersByElement.get(s);f&&f.length&&(o.parentPlayer=fb(f)),r.push(o)}}else Ub(e,l.fromStyles),o.onDestroy(function(){return Wb(e,l.toStyles)}),Y.push(o),h.has(e)&&r.push(o)}),Y.forEach(function(t){var e=a.get(t.element);if(e&&e.length){var n=fb(e);t.setRealPlayer(n)}}),r.forEach(function(t){t.parentPlayer?t.syncPlayerEvents(t.parentPlayer):t.destroy()});for(var I=0;I<_.length;I++){var F,z=(F=_[I])[Hx];if(Qx(F,"ng-leave"),!z||!z.hasAnimation){var j=[];if(s.size){var H=s.get(F);H&&H.length&&j.push.apply(j,d(H));for(var N=this.driver.query(F,".ng-animating",!0),V=0;V0?this.driver.animate(t.element,e,t.duration,t.delay,t.easing,n):new qv(t.duration,t.delay)},t}(),Ux=function(){function t(t,e,n){this.namespaceId=t,this.triggerName=e,this.element=n,this._player=new qv,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}return t.prototype.setRealPlayer=function(t){var e=this;this._containsRealPlayer||(this._player=t,Object.keys(this._queuedCallbacks).forEach(function(n){e._queuedCallbacks[n].forEach(function(e){return gb(t,n,void 0,e)})}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(t.totalTime),this.queued=!1)},t.prototype.getRealPlayer=function(){return this._player},t.prototype.overrideTotalTime=function(t){this.totalTime=t},t.prototype.syncPlayerEvents=function(t){var e=this,n=this._player;n.triggerCallback&&t.onStart(function(){return n.triggerCallback("start")}),t.onDone(function(){return e.finish()}),t.onDestroy(function(){return e.destroy()})},t.prototype._queueEvent=function(t,e){vb(this._queuedCallbacks,t,[]).push(e)},t.prototype.onDone=function(t){this.queued&&this._queueEvent("done",t),this._player.onDone(t)},t.prototype.onStart=function(t){this.queued&&this._queueEvent("start",t),this._player.onStart(t)},t.prototype.onDestroy=function(t){this.queued&&this._queueEvent("destroy",t),this._player.onDestroy(t)},t.prototype.init=function(){this._player.init()},t.prototype.hasStarted=function(){return!this.queued&&this._player.hasStarted()},t.prototype.play=function(){!this.queued&&this._player.play()},t.prototype.pause=function(){!this.queued&&this._player.pause()},t.prototype.restart=function(){!this.queued&&this._player.restart()},t.prototype.finish=function(){this._player.finish()},t.prototype.destroy=function(){this.destroyed=!0,this._player.destroy()},t.prototype.reset=function(){!this.queued&&this._player.reset()},t.prototype.setPosition=function(t){this.queued||this._player.setPosition(t)},t.prototype.getPosition=function(){return this.queued?0:this._player.getPosition()},t.prototype.triggerCallback=function(t){var e=this._player;e.triggerCallback&&e.triggerCallback(t)},t}();function Gx(t){return t&&1===t.nodeType}function qx(t,e){var n=t.style.display;return t.style.display=null!=e?e:"none",n}function Xx(t,e,n,i,r){var o=[];n.forEach(function(t){return o.push(qx(t))});var a=[];i.forEach(function(n,i){var o={};n.forEach(function(t){var n=o[t]=e.computeStyle(i,t,r);n&&0!=n.length||(i[Hx]=jx,a.push(i))}),t.set(i,o)});var l=0;return n.forEach(function(t){return qx(t,o[l++])}),a}function Kx(t,e){var n=new Map;if(t.forEach(function(t){return n.set(t,[])}),0==e.length)return n;var i=new Set(e),r=new Map;return e.forEach(function(t){var e=function t(e){if(!e)return 1;var o=r.get(e);if(o)return o;var a=e.parentNode;return o=n.has(a)?a:i.has(a)?1:t(a),r.set(e,o),o}(t);1!==e&&n.get(e).push(t)}),n}var Zx="$$classes";function Jx(t,e){if(t.classList)t.classList.add(e);else{var n=t[Zx];n||(n=t[Zx]={}),n[e]=!0}}function Qx(t,e){if(t.classList)t.classList.remove(e);else{var n=t[Zx];n&&delete n[e]}}function $x(t,e,n){fb(n).onDone(function(){return t.processLeaveNode(e)})}function tw(t,e,n){var i=n.get(t);if(!i)return!1;var r=e.get(t);return r?i.forEach(function(t){return r.add(t)}):e.set(t,i),n.delete(t),!0}var ew=function(){function t(t,e,n){var i=this;this.bodyNode=t,this._driver=e,this._triggerCache={},this.onRemovalComplete=function(t,e){},this._transitionEngine=new Wx(t,e,n),this._timelineEngine=new Ix(t,e,n),this._transitionEngine.onRemovalComplete=function(t,e){return i.onRemovalComplete(t,e)}}return t.prototype.registerTrigger=function(t,e,n,i,r){var o=t+"-"+i,a=this._triggerCache[o];if(!a){var l=[],s=sx(this._driver,r,l);if(l.length)throw new Error('The animation trigger "'+i+'" has failed to build due to the following errors:\n - '+l.join("\n - "));a=function(t,e){return new Ox(t,e)}(i,s),this._triggerCache[o]=a}this._transitionEngine.registerTrigger(e,i,a)},t.prototype.register=function(t,e){this._transitionEngine.register(t,e)},t.prototype.destroy=function(t,e){this._transitionEngine.destroy(t,e)},t.prototype.onInsert=function(t,e,n,i){this._transitionEngine.insertNode(t,e,n,i)},t.prototype.onRemove=function(t,e,n){this._transitionEngine.removeNode(t,e,n)},t.prototype.disableAnimations=function(t,e){this._transitionEngine.markElementAsDisabled(t,e)},t.prototype.process=function(t,e,n,i){if("@"==n.charAt(0)){var r=c(bb(n),2);this._timelineEngine.command(r[0],e,r[1],i)}else this._transitionEngine.trigger(t,e,n,i)},t.prototype.listen=function(t,e,n,i,r){if("@"==n.charAt(0)){var o=c(bb(n),2);return this._timelineEngine.listen(o[0],e,o[1],r)}return this._transitionEngine.listen(t,e,n,i,r)},t.prototype.flush=function(t){void 0===t&&(t=-1),this._transitionEngine.flush(t)},Object.defineProperty(t.prototype,"players",{get:function(){return this._transitionEngine.players.concat(this._timelineEngine.players)},enumerable:!0,configurable:!0}),t.prototype.whenRenderingDone=function(){return this._transitionEngine.whenRenderingDone()},t}();function nw(t,e){var n=null,i=null;return Array.isArray(e)&&e.length?(n=rw(e[0]),e.length>1&&(i=rw(e[e.length-1]))):e&&(n=rw(e)),n||i?new iw(t,n,i):null}var iw=function(){function t(e,n,i){this._element=e,this._startStyles=n,this._endStyles=i,this._state=0;var r=t.initialStylesByElement.get(e);r||t.initialStylesByElement.set(e,r={}),this._initialStyles=r}return t.prototype.start=function(){this._state<1&&(this._startStyles&&Wb(this._element,this._startStyles,this._initialStyles),this._state=1)},t.prototype.finish=function(){this.start(),this._state<2&&(Wb(this._element,this._initialStyles),this._endStyles&&(Wb(this._element,this._endStyles),this._endStyles=null),this._state=1)},t.prototype.destroy=function(){this.finish(),this._state<3&&(t.initialStylesByElement.delete(this._element),this._startStyles&&(Ub(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Ub(this._element,this._endStyles),this._endStyles=null),Wb(this._element,this._initialStyles),this._state=3)},t.initialStylesByElement=new WeakMap,t}();function rw(t){for(var e=null,n=Object.keys(t),i=0;i=this._delay&&n>=this._duration&&this.finish()},t.prototype.finish=function(){this._finished||(this._finished=!0,this._onDoneFn(),hw(this._element,this._eventFn,!0))},t.prototype.destroy=function(){var t,e,n,i;this._destroyed||(this._destroyed=!0,this.finish(),e=this._name,(i=dw(n=fw(t=this._element,"").split(","),e))>=0&&(n.splice(i,1),pw(t,"",n.join(","))))},t}();function uw(t,e,n){pw(t,"PlayState",n,cw(t,e))}function cw(t,e){var n=fw(t,"");return n.indexOf(",")>0?dw(n.split(","),e):dw([n],e)}function dw(t,e){for(var n=0;n=0)return n;return-1}function hw(t,e,n){n?t.removeEventListener(lw,e):t.addEventListener(lw,e)}function pw(t,e,n,i){var r=aw+e;if(null!=i){var o=t.style[r];if(o.length){var a=o.split(",");a[i]=n,n=a.join(",")}}t.style[r]=n}function fw(t,e){return t.style[aw+e]}var mw="linear",gw=function(){function t(t,e,n,i,r,o,a,l){this.element=t,this.keyframes=e,this.animationName=n,this._duration=i,this._delay=r,this._finalStyles=a,this._specialStyles=l,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=o||mw,this.totalTime=i+r,this._buildStyler()}return t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.destroy=function(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype._flushDoneFns=function(){this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[]},t.prototype._flushStartFns=function(){this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[]},t.prototype.finish=function(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())},t.prototype.setPosition=function(t){this._styler.setPosition(t)},t.prototype.getPosition=function(){return this._styler.getPosition()},t.prototype.hasStarted=function(){return this._state>=2},t.prototype.init=function(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())},t.prototype.play=function(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()},t.prototype.pause=function(){this.init(),this._styler.pause()},t.prototype.restart=function(){this.reset(),this.play()},t.prototype.reset=function(){this._styler.destroy(),this._buildStyler(),this._styler.apply()},t.prototype._buildStyler=function(){var t=this;this._styler=new sw(this.element,this.animationName,this._duration,this._delay,this.easing,"forwards",function(){return t.finish()})},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t.prototype.beforeDestroy=function(){var t=this;this.init();var e={};if(this.hasStarted()){var n=this._state>=3;Object.keys(this._finalStyles).forEach(function(i){"offset"!=i&&(e[i]=n?t._finalStyles[i]:nx(t.element,i))})}this.currentSnapshot=e},t}(),yw=function(t){function e(e,n){var i=t.call(this)||this;return i.element=e,i._startingStyles={},i.__initialized=!1,i._styles=Ob(n),i}return r(e,t),e.prototype.init=function(){var e=this;!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach(function(t){e._startingStyles[t]=e.element.style[t]}),t.prototype.init.call(this))},e.prototype.play=function(){var e=this;this._startingStyles&&(this.init(),Object.keys(this._styles).forEach(function(t){return e.element.style.setProperty(t,e._styles[t])}),t.prototype.play.call(this))},e.prototype.destroy=function(){var e=this;this._startingStyles&&(Object.keys(this._startingStyles).forEach(function(t){var n=e._startingStyles[t];n?e.element.style.setProperty(t,n):e.element.style.removeProperty(t)}),this._startingStyles=null,t.prototype.destroy.call(this))},e}(qv),_w=function(){function t(){this._count=0,this._head=document.querySelector("head"),this._warningIssued=!1}return t.prototype.validateStyleProperty=function(t){return Tb(t)},t.prototype.matchesElement=function(t,e){return Eb(t,e)},t.prototype.containsElement=function(t,e){return Ab(t,e)},t.prototype.query=function(t,e,n){return Pb(t,e,n)},t.prototype.computeStyle=function(t,e,n){return window.getComputedStyle(t)[e]},t.prototype.buildKeyframeElement=function(t,e,n){n=n.map(function(t){return Ob(t)});var i="@keyframes "+e+" {\n",r="";n.forEach(function(t){r=" ";var e=parseFloat(t.offset);i+=""+r+100*e+"% {\n",r+=" ",Object.keys(t).forEach(function(e){var n=t[e];switch(e){case"offset":return;case"easing":return void(n&&(i+=r+"animation-timing-function: "+n+";\n"));default:return void(i+=""+r+e+": "+n+";\n")}}),i+=r+"}\n"}),i+="}\n";var o=document.createElement("style");return o.innerHTML=i,o},t.prototype.animate=function(t,e,n,i,r,o,a){void 0===o&&(o=[]),a&&this._notifyFaultyScrubber();var l=o.filter(function(t){return t instanceof gw}),s={};$b(n,i)&&l.forEach(function(t){var e=t.currentSnapshot;Object.keys(e).forEach(function(t){return s[t]=e[t]})});var u=function(t){var e={};return t&&(Array.isArray(t)?t:[t]).forEach(function(t){Object.keys(t).forEach(function(n){"offset"!=n&&"easing"!=n&&(e[n]=t[n])})}),e}(e=tx(t,e,s));if(0==n)return new yw(t,u);var c="gen_css_kf_"+this._count++,d=this.buildKeyframeElement(t,c,e);document.querySelector("head").appendChild(d);var h=nw(t,e),p=new gw(t,e,c,n,i,r,u,h);return p.onDestroy(function(){var t;(t=d).parentNode.removeChild(t)}),p},t.prototype._notifyFaultyScrubber=function(){this._warningIssued||(console.warn("@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\n"," visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill."),this._warningIssued=!0)},t}(),vw=function(){function t(t,e,n,i){this.element=t,this.keyframes=e,this.options=n,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=n.duration,this._delay=n.delay||0,this.time=this._duration+this._delay}return t.prototype._onFinish=function(){this._finished||(this._finished=!0,this._onDoneFns.forEach(function(t){return t()}),this._onDoneFns=[])},t.prototype.init=function(){this._buildPlayer(),this._preparePlayerBeforeStart()},t.prototype._buildPlayer=function(){var t=this;if(!this._initialized){this._initialized=!0;var e=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,e,this.options),this._finalKeyframe=e.length?e[e.length-1]:{},this.domPlayer.addEventListener("finish",function(){return t._onFinish()})}},t.prototype._preparePlayerBeforeStart=function(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()},t.prototype._triggerWebAnimation=function(t,e,n){return t.animate(e,n)},t.prototype.onStart=function(t){this._onStartFns.push(t)},t.prototype.onDone=function(t){this._onDoneFns.push(t)},t.prototype.onDestroy=function(t){this._onDestroyFns.push(t)},t.prototype.play=function(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(function(t){return t()}),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()},t.prototype.pause=function(){this.init(),this.domPlayer.pause()},t.prototype.finish=function(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()},t.prototype.reset=function(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1},t.prototype._resetDomPlayerState=function(){this.domPlayer&&this.domPlayer.cancel()},t.prototype.restart=function(){this.reset(),this.play()},t.prototype.hasStarted=function(){return this._started},t.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(function(t){return t()}),this._onDestroyFns=[])},t.prototype.setPosition=function(t){this.domPlayer.currentTime=t*this.time},t.prototype.getPosition=function(){return this.domPlayer.currentTime/this.time},Object.defineProperty(t.prototype,"totalTime",{get:function(){return this._delay+this._duration},enumerable:!0,configurable:!0}),t.prototype.beforeDestroy=function(){var t=this,e={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach(function(n){"offset"!=n&&(e[n]=t._finished?t._finalKeyframe[n]:nx(t.element,n))}),this.currentSnapshot=e},t.prototype.triggerCallback=function(t){var e="start"==t?this._onStartFns:this._onDoneFns;e.forEach(function(t){return t()}),e.length=0},t}(),bw=function(){function t(){this._isNativeImpl=/\{\s*\[native\s+code\]\s*\}/.test(xw().toString()),this._cssKeyframesDriver=new _w}return t.prototype.validateStyleProperty=function(t){return Tb(t)},t.prototype.matchesElement=function(t,e){return Eb(t,e)},t.prototype.containsElement=function(t,e){return Ab(t,e)},t.prototype.query=function(t,e,n){return Pb(t,e,n)},t.prototype.computeStyle=function(t,e,n){return window.getComputedStyle(t)[e]},t.prototype.overrideWebAnimationsSupport=function(t){this._isNativeImpl=t},t.prototype.animate=function(t,e,n,i,r,o,a){if(void 0===o&&(o=[]),!a&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(t,e,n,i,r,o);var l={duration:n,delay:i,fill:0==i?"both":"forwards"};r&&(l.easing=r);var s={},u=o.filter(function(t){return t instanceof vw});$b(n,i)&&u.forEach(function(t){var e=t.currentSnapshot;Object.keys(e).forEach(function(t){return s[t]=e[t]})});var c=nw(t,e=tx(t,e=e.map(function(t){return Nb(t,!1)}),s));return new vw(t,e,l,c)},t}();function xw(){return"undefined"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}var ww=function(t){function e(e,n){var i=t.call(this)||this;return i._nextAnimationId=0,i._renderer=e.createRenderer(n.body,{id:"0",encapsulation:Kt.None,styles:[],data:{animation:[]}}),i}return r(e,t),e.prototype.build=function(t){var e=this._nextAnimationId.toString();this._nextAnimationId++;var n=Array.isArray(t)?Wv(t):t;return Sw(this._renderer,null,e,"register",[n]),new kw(e,this._renderer)},e}(Nv),kw=function(t){function e(e,n){var i=t.call(this)||this;return i._id=e,i._renderer=n,i}return r(e,t),e.prototype.create=function(t,e){return new Mw(this._id,t,e||{},this._renderer)},e}(Vv),Mw=function(){function t(t,e,n,i){this.id=t,this.element=e,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command("create",n)}return t.prototype._listen=function(t,e){return this._renderer.listen(this.element,"@@"+this.id+":"+t,e)},t.prototype._command=function(t){for(var e=[],n=1;n=0&&t enter",animation:[{type:6,styles:{opacity:0,transform:"translateY(-100%)"},offset:null},{type:4,styles:null,timings:"300ms cubic-bezier(0.55, 0, 0.55, 0.2)"}],options:null}],options:{}}]}});function Iw(t){return Ia(0,[(t()(),yo(0,0,null,null,8,null,null,null,null,null,null,null)),(t()(),yo(1,0,null,null,3,"div",[["class","mat-form-field-outline"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,0,"div",[["class","mat-form-field-outline-start"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,0,"div",[["class","mat-form-field-outline-gap"]],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,"div",[["class","mat-form-field-outline-end"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,3,"div",[["class","mat-form-field-outline mat-form-field-outline-thick"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,0,"div",[["class","mat-form-field-outline-start"]],null,null,null,null,null)),(t()(),yo(7,0,null,null,0,"div",[["class","mat-form-field-outline-gap"]],null,null,null,null,null)),(t()(),yo(8,0,null,null,0,"div",[["class","mat-form-field-outline-end"]],null,null,null,null,null))],null,null)}function Fw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[["class","mat-form-field-prefix"]],null,null,null,null,null)),La(null,0)],null,null)}function zw(t){return Ia(0,[(t()(),yo(0,0,null,null,2,null,null,null,null,null,null,null)),La(null,2),(t()(),Oa(2,null,["",""]))],null,function(t,e){t(e,2,0,e.component._control.placeholder)})}function jw(t){return Ia(0,[La(null,3),(t()(),go(0,null,null,0))],null,null)}function Hw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"span",[["aria-hidden","true"],["class","mat-placeholder-required mat-form-field-required-marker"]],null,null,null,null,null)),(t()(),Oa(-1,null,[" *"]))],null,null)}function Nw(t){return Ia(0,[(t()(),yo(0,0,[[4,0],["label",1]],null,8,"label",[["class","mat-form-field-label"]],[[8,"id",0],[1,"for",0],[1,"aria-owns",0],[2,"mat-empty",null],[2,"mat-form-field-empty",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"cdkObserveContent"]],function(t,e,n){var i=!0;return"cdkObserveContent"===e&&(i=!1!==t.component.updateOutlineGap()&&i),i},null,null)),oa(1,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),oa(2,1196032,null,0,db,[cb,Ve,Mi],{disabled:[0,"disabled"]},{event:"cdkObserveContent"}),(t()(),go(16777216,null,null,1,null,zw)),oa(4,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,jw)),oa(6,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,Hw)),oa(8,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,1,0,n._hasLabel()),t(e,2,0,"outline"!=n.appearance),t(e,4,0,!1),t(e,6,0,!0),t(e,8,0,!n.hideRequiredMarker&&n._control.required&&!n._control.disabled)},function(t,e){var n=e.component;t(e,0,0,n._labelId,n._control.id,n._control.id,n._control.empty&&!n._shouldAlwaysFloat,n._control.empty&&!n._shouldAlwaysFloat,"accent"==n.color,"warn"==n.color)})}function Vw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[["class","mat-form-field-suffix"]],null,null,null,null,null)),La(null,4)],null,null)}function Bw(t){return Ia(0,[(t()(),yo(0,0,[[1,0],["underline",1]],null,1,"div",[["class","mat-form-field-underline"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,0,"span",[["class","mat-form-field-ripple"]],[[2,"mat-accent",null],[2,"mat-warn",null]],null,null,null,null))],null,function(t,e){var n=e.component;t(e,1,0,"accent"==n.color,"warn"==n.color)})}function Ww(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[],[[24,"@transitionMessages",0]],null,null,null,null)),La(null,5)],null,function(t,e){t(e,0,0,e.component._subscriptAnimationState)})}function Uw(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[["class","mat-hint"]],[[8,"id",0]],null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){var n=e.component;t(e,0,0,n._hintLabelId),t(e,1,0,n.hintLabel)})}function Gw(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","mat-form-field-hint-wrapper"]],[[24,"@transitionMessages",0]],null,null,null,null)),(t()(),go(16777216,null,null,1,null,Uw)),oa(2,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),La(null,6),(t()(),yo(4,0,null,null,0,"div",[["class","mat-form-field-hint-spacer"]],null,null,null,null,null)),La(null,7)],function(t,e){t(e,2,0,e.component.hintLabel)},function(t,e){t(e,0,0,e.component._subscriptAnimationState)})}function qw(t){return Ia(2,[wa(671088640,1,{underlineRef:0}),wa(402653184,2,{_connectionContainerRef:0}),wa(402653184,3,{_inputContainerRef:0}),wa(671088640,4,{_label:0}),(t()(),yo(4,0,null,null,20,"div",[["class","mat-form-field-wrapper"]],null,null,null,null,null)),(t()(),yo(5,0,[[2,0],["connectionContainer",1]],null,11,"div",[["class","mat-form-field-flex"]],null,[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==(r._control.onContainerClick&&r._control.onContainerClick(n))&&i),i},null,null)),(t()(),go(16777216,null,null,1,null,Iw)),oa(7,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,Fw)),oa(9,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(10,0,[[3,0],["inputContainer",1]],null,4,"div",[["class","mat-form-field-infix"]],null,null,null,null,null)),La(null,1),(t()(),yo(12,0,null,null,2,"span",[["class","mat-form-field-label-wrapper"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,Nw)),oa(14,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,Vw)),oa(16,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,Bw)),oa(18,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(19,0,null,null,5,"div",[["class","mat-form-field-subscript-wrapper"]],null,null,null,null,null)),oa(20,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,Ww)),oa(22,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,Gw)),oa(24,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){var n=e.component;t(e,7,0,"outline"==n.appearance),t(e,9,0,n._prefixChildren.length),t(e,14,0,n._hasFloatingLabel()),t(e,16,0,n._suffixChildren.length),t(e,18,0,"outline"!=n.appearance),t(e,20,0,n._getDisplayedMessages()),t(e,22,0,"error"),t(e,24,0,"hint")},null)}var Xw=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"],Kw=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=Xw,e}return r(e,t),e}(function(t){function e(e,n,i,r,o,a,l){var s=t.call(this,e,null,n,i)||this;return s.elementRef=e,s.styler=n,s.marshal=i,s.iterableDiffers=r,s.keyValueDiffers=o,s.renderer=a,s.ngClassInstance=l,s.DIRECTIVE_KEY="ngClass",s.ngClassInstance||(s.ngClassInstance=new hs(s.iterableDiffers,s.keyValueDiffers,s.elementRef,s.renderer)),s.init(),s.setValue("",""),s}return r(e,t),Object.defineProperty(e.prototype,"klass",{set:function(t){this.ngClassInstance.klass=t,this.setValue(t,"")},enumerable:!0,configurable:!0}),e.prototype.updateWithValue=function(t){this.ngClassInstance.ngClass=t,this.ngClassInstance.ngDoCheck()},e.prototype.ngDoCheck=function(){this.ngClassInstance.ngDoCheck()},e}(Lg)),Zw=function(){return function(t,e,n){void 0===n&&(n=!0),this.key=t,this.value=e,this.key=n?t.replace(/['"]/g,"").trim():t.trim(),this.value=n?e.replace(/['"]/g,"").trim():e.trim(),this.value=this.value.replace(/;/,"")}}();function Jw(t){var e=typeof t;return"object"===e?t.constructor===Array?"array":t.constructor===Set?"set":"object":e}function Qw(t){var e=t.split(":"),n=e[0],i=e.slice(1);return new Zw(n,i.join(":"))}function $w(t,e){return e.key&&(t[e.key]=e.value),t}var tk=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"],ek=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.inputs=tk,e}return r(e,t),e}(function(t){function e(e,n,i,r,o,a,l,s,u){var c=t.call(this,e,null,n,i)||this;c.elementRef=e,c.styler=n,c.marshal=i,c.keyValueDiffers=r,c.renderer=o,c.sanitizer=a,c.ngStyleInstance=l,c.DIRECTIVE_KEY="ngStyle",c.ngStyleInstance||(c.ngStyleInstance=new ks(c.keyValueDiffers,c.elementRef,c.renderer)),c.init();var d=c.nativeElement.getAttribute("style")||"";return c.fallbackStyles=c.buildStyleMap(d),c.isServer=s&&Rs(u),c}return r(e,t),e.prototype.updateWithValue=function(t){var e=this.buildStyleMap(t);this.ngStyleInstance.ngStyle=o({},this.fallbackStyles,e),this.isServer&&this.applyStyleToElement(e),this.ngStyleInstance.ngDoCheck()},e.prototype.clearStyles=function(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()},e.prototype.buildStyleMap=function(t){var e,n=this,i=function(t){return n.sanitizer.sanitize(Ke.STYLE,t)||""};if(t)switch(Jw(t)){case"string":return nk((void 0===e&&(e=";"),String(t).trim().split(e).map(function(t){return t.trim()}).filter(function(t){return""!==t})),i);case"array":return nk(t,i);case"set":default:return function(t,e){var n=[];return"set"===Jw(t)?t.forEach(function(t){return n.push(t)}):Object.keys(t).forEach(function(e){n.push(e+":"+t[e])}),function(t,e){return n.map(Qw).filter(function(t){return!!t}).map(function(t){return e&&(t.value=e(t.value)),t}).reduce($w,{})}(0,e)}(t,i)}return{}},e.prototype.ngDoCheck=function(){this.ngStyleInstance.ngDoCheck()},e}(Lg));function nk(t,e){return t.map(Qw).filter(function(t){return!!t}).map(function(t){return e&&(t.value=e(t.value)),t}).reduce($w,{})}var ik=function(){return function(){}}(),rk=function(){function t(t){this.durationSelector=t}return t.prototype.call=function(t,e){return e.subscribe(new ok(t,this.durationSelector))},t}(),ok=function(t){function e(e,n){var i=t.call(this,e)||this;return i.durationSelector=n,i.hasValue=!1,i}return r(e,t),e.prototype._next=function(t){if(this.value=t,this.hasValue=!0,!this.throttled){var e=_(this.durationSelector)(t);if(e===g)this.destination.error(g.e);else{var n=tt(this,e);!n||n.closed?this.clearThrottle():this.add(this.throttled=n)}}},e.prototype.clearThrottle=function(){var t=this.value,e=this.hasValue,n=this.throttled;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),e&&(this.value=null,this.hasValue=!1,this.destination.next(t))},e.prototype.notifyNext=function(t,e,n,i){this.clearThrottle()},e.prototype.notifyComplete=function(){this.clearThrottle()},e}(et);function ak(t){return!h(t)&&t-parseFloat(t)+1>=0}function lk(t){var e=t.index,n=t.period,i=t.subscriber;if(i.next(e),!i.closed){if(-1===n)return i.complete();t.index=e+1,this.schedule(t,n)}}function sk(t,e){return void 0===e&&(e=xc),n=function(){return function(t,e,n){void 0===t&&(t=0);var i=-1;return ak(e)?i=Number(e)<1?1:Number(e):V(e)&&(n=e),V(n)||(n=xc),new Y(function(e){var r=ak(t)?t:+t-n.now();return n.schedule(lk,r,{index:0,period:i,subscriber:e})})}(t,e)},function(t){return t.lift(new rk(n))};var n}var uk=ac({passive:!0}),ck=function(){function t(t,e){this._platform=t,this._ngZone=e,this._monitoredElements=new Map}return t.prototype.monitor=function(t){var e=this;if(!this._platform.isBrowser)return sc;var n=$u(t),i=this._monitoredElements.get(n);if(i)return i.subject.asObservable();var r=new H,o="cdk-text-field-autofilled",a=function(t){"cdk-text-field-autofill-start"!==t.animationName||n.classList.contains(o)?"cdk-text-field-autofill-end"===t.animationName&&n.classList.contains(o)&&(n.classList.remove(o),e._ngZone.run(function(){return r.next({target:t.target,isAutofilled:!1})})):(n.classList.add(o),e._ngZone.run(function(){return r.next({target:t.target,isAutofilled:!0})}))};return this._ngZone.runOutsideAngular(function(){n.addEventListener("animationstart",a,uk),n.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(n,{subject:r,unlisten:function(){n.removeEventListener("animationstart",a,uk)}}),r.asObservable()},t.prototype.stopMonitoring=function(t){var e=$u(t),n=this._monitoredElements.get(e);n&&(n.unlisten(),n.subject.complete(),e.classList.remove("cdk-text-field-autofill-monitored"),e.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(e))},t.prototype.ngOnDestroy=function(){var t=this;this._monitoredElements.forEach(function(e,n){return t.stopMonitoring(n)})},t.ngInjectableDef=St({factory:function(){return new t(ie(nc),ie(Mi))},token:t,providedIn:"root"}),t}(),dk=function(){return function(){}}(),hk=new Lt("MAT_INPUT_VALUE_ACCESSOR"),pk=["button","checkbox","file","hidden","image","radio","range","reset","submit"],fk=0,mk=function(t){function e(e,n,i,r,o,a,l,s,u){var c=t.call(this,a,r,o,i)||this;c._elementRef=e,c._platform=n,c.ngControl=i,c._autofillMonitor=s,c._uid="mat-input-"+fk++,c._isServer=!1,c._isNativeSelect=!1,c.focused=!1,c.stateChanges=new H,c.controlType="mat-input",c.autofilled=!1,c._disabled=!1,c._required=!1,c._type="text",c._readonly=!1,c._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(function(t){return oc().has(t)});var d=c._elementRef.nativeElement;return c._inputValueAccessor=l||d,c._previousNativeValue=c.value,c.id=c.id,n.IOS&&u.runOutsideAngular(function(){e.nativeElement.addEventListener("keyup",function(t){var e=t.target;e.value||e.selectionStart||e.selectionEnd||(e.setSelectionRange(1,1),e.setSelectionRange(0,0))})}),c._isServer=!c._platform.isBrowser,c._isNativeSelect="select"===d.nodeName.toLowerCase(),c._isNativeSelect&&(c.controlType=d.multiple?"mat-native-select-multiple":"mat-native-select"),c}return r(e,t),Object.defineProperty(e.prototype,"disabled",{get:function(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled},set:function(t){this._disabled=Xu(t),this.focused&&(this.focused=!1,this.stateChanges.next())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this._id},set:function(t){this._id=t||this._uid},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"type",{get:function(){return this._type},set:function(t){this._type=t||"text",this._validateType(),!this._isTextarea()&&oc().has(this._type)&&(this._elementRef.nativeElement.type=this._type)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this._inputValueAccessor.value},set:function(t){t!==this.value&&(this._inputValueAccessor.value=t,this.stateChanges.next())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"readonly",{get:function(){return this._readonly},set:function(t){this._readonly=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){var t=this;this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(function(e){t.autofilled=e.isAutofilled,t.stateChanges.next()})},e.prototype.ngOnChanges=function(){this.stateChanges.next()},e.prototype.ngOnDestroy=function(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement)},e.prototype.ngDoCheck=function(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue()},e.prototype.focus=function(){this._elementRef.nativeElement.focus()},e.prototype._focusChanged=function(t){t===this.focused||this.readonly&&t||(this.focused=t,this.stateChanges.next())},e.prototype._onInput=function(){},e.prototype._dirtyCheckNativeValue=function(){var t=this._elementRef.nativeElement.value;this._previousNativeValue!==t&&(this._previousNativeValue=t,this.stateChanges.next())},e.prototype._validateType=function(){if(pk.indexOf(this._type)>-1)throw Error('Input type "'+this._type+"\" isn't supported by matInput.")},e.prototype._isNeverEmpty=function(){return this._neverEmptyInputTypes.indexOf(this._type)>-1},e.prototype._isBadInput=function(){var t=this._elementRef.nativeElement.validity;return t&&t.badInput},e.prototype._isTextarea=function(){return"textarea"===this._elementRef.nativeElement.nodeName.toLowerCase()},Object.defineProperty(e.prototype,"empty",{get:function(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"shouldLabelFloat",{get:function(){if(this._isNativeSelect){var t=this._elementRef.nativeElement,e=t.options[0];return this.focused||t.multiple||!this.empty||!!(t.selectedIndex>-1&&e&&e.label)}return this.focused||!this.empty},enumerable:!0,configurable:!0}),e.prototype.setDescribedByIds=function(t){this._ariaDescribedby=t.join(" ")},e.prototype.onContainerClick=function(){this.focused||this.focus()},e}(sd(function(){return function(t,e,n,i){this._defaultErrorStateMatcher=t,this._parentForm=e,this._parentFormGroup=n,this.ngControl=i}}())),gk=function(){return function(){}}();function yk(t,e){return new Y(e?function(n){return e.schedule(_k,0,{error:t,subscriber:n})}:function(e){return e.error(t)})}function _k(t){t.subscriber.error(t.error)}function vk(t){return Error('Unable to find icon with the name "'+t+'"')}function bk(t){return Error("The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was \""+t+'".')}function xk(t){return Error("The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was \""+t+'".')}var wk=function(){return function(t){t.nodeName?this.svgElement=t:this.url=t}}(),kk=function(){function t(t,e,n){this._httpClient=t,this._sanitizer=e,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass="material-icons",this._document=n}return t.prototype.addSvgIcon=function(t,e){return this.addSvgIconInNamespace("",t,e)},t.prototype.addSvgIconLiteral=function(t,e){return this.addSvgIconLiteralInNamespace("",t,e)},t.prototype.addSvgIconInNamespace=function(t,e,n){return this._addSvgIconConfig(t,e,new wk(n))},t.prototype.addSvgIconLiteralInNamespace=function(t,e,n){var i=this._sanitizer.sanitize(Ke.HTML,n);if(!i)throw xk(n);var r=this._createSvgElementForSingleIcon(i);return this._addSvgIconConfig(t,e,new wk(r))},t.prototype.addSvgIconSet=function(t){return this.addSvgIconSetInNamespace("",t)},t.prototype.addSvgIconSetLiteral=function(t){return this.addSvgIconSetLiteralInNamespace("",t)},t.prototype.addSvgIconSetInNamespace=function(t,e){return this._addSvgIconSetConfig(t,new wk(e))},t.prototype.addSvgIconSetLiteralInNamespace=function(t,e){var n=this._sanitizer.sanitize(Ke.HTML,e);if(!n)throw xk(e);var i=this._svgElementFromString(n);return this._addSvgIconSetConfig(t,new wk(i))},t.prototype.registerFontClassAlias=function(t,e){return void 0===e&&(e=t),this._fontCssClassesByAlias.set(t,e),this},t.prototype.classNameForFontAlias=function(t){return this._fontCssClassesByAlias.get(t)||t},t.prototype.setDefaultFontSetClass=function(t){return this._defaultFontSetClass=t,this},t.prototype.getDefaultFontSetClass=function(){return this._defaultFontSetClass},t.prototype.getSvgIconFromUrl=function(t){var e=this,n=this._sanitizer.sanitize(Ke.RESOURCE_URL,t);if(!n)throw bk(t);var i=this._cachedIconsByUrl.get(n);return i?cc(Mk(i)):this._loadSvgIconFromConfig(new wk(t)).pipe(mc(function(t){return e._cachedIconsByUrl.set(n,t)}),nt(function(t){return Mk(t)}))},t.prototype.getNamedSvgIcon=function(t,e){void 0===e&&(e="");var n=Sk(e,t),i=this._svgIconConfigs.get(n);if(i)return this._getSvgFromConfig(i);var r=this._iconSetConfigs.get(e);return r?this._getSvgFromIconSetConfigs(t,r):yk(vk(n))},t.prototype.ngOnDestroy=function(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()},t.prototype._getSvgFromConfig=function(t){return t.svgElement?cc(Mk(t.svgElement)):this._loadSvgIconFromConfig(t).pipe(mc(function(e){return t.svgElement=e}),nt(function(t){return Mk(t)}))},t.prototype._getSvgFromIconSetConfigs=function(t,e){var n=this,i=this._extractIconWithNameFromAnySet(t,e);return i?cc(i):D_(e.filter(function(t){return!t.svgElement}).map(function(t){return n._loadSvgIconSetFromConfig(t).pipe(Jh(function(e){var i=n._sanitizer.sanitize(Ke.RESOURCE_URL,t.url);return console.error("Loading icon set URL: "+i+" failed: "+e.message),cc(null)}))})).pipe(nt(function(){var i=n._extractIconWithNameFromAnySet(t,e);if(!i)throw vk(t);return i}))},t.prototype._extractIconWithNameFromAnySet=function(t,e){for(var n=e.length-1;n>=0;n--){var i=e[n];if(i.svgElement){var r=this._extractSvgIconFromSet(i.svgElement,t);if(r)return r}}return null},t.prototype._loadSvgIconFromConfig=function(t){var e=this;return this._fetchUrl(t.url).pipe(nt(function(t){return e._createSvgElementForSingleIcon(t)}))},t.prototype._loadSvgIconSetFromConfig=function(t){var e=this;return t.svgElement?cc(t.svgElement):this._fetchUrl(t.url).pipe(nt(function(n){return t.svgElement||(t.svgElement=e._svgElementFromString(n)),t.svgElement}))},t.prototype._createSvgElementForSingleIcon=function(t){var e=this._svgElementFromString(t);return this._setSvgAttributes(e),e},t.prototype._extractSvgIconFromSet=function(t,e){var n=t.querySelector("#"+e);if(!n)return null;var i=n.cloneNode(!0);if(i.removeAttribute("id"),"svg"===i.nodeName.toLowerCase())return this._setSvgAttributes(i);if("symbol"===i.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(i));var r=this._svgElementFromString("");return r.appendChild(i),this._setSvgAttributes(r)},t.prototype._svgElementFromString=function(t){var e=this._document.createElement("DIV");e.innerHTML=t;var n=e.querySelector("svg");if(!n)throw Error(" tag not found");return n},t.prototype._toSvgElement=function(t){for(var e=this._svgElementFromString(""),n=0;n*,.mat-fab .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}@media (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}"],data:{}});function Nk(t){return Ia(2,[wa(402653184,1,{ripple:0}),(t()(),yo(1,0,null,null,1,"span",[["class","mat-button-wrapper"]],null,null,null,null,null)),La(null,0),(t()(),yo(3,0,null,null,1,"div",[["class","mat-button-ripple mat-ripple"],["matRipple",""]],[[2,"mat-button-ripple-round",null],[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(4,212992,[[1,4]],0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{centered:[0,"centered"],disabled:[1,"disabled"],trigger:[2,"trigger"]},null),(t()(),yo(5,0,null,null,0,"div",[["class","mat-button-focus-overlay"]],null,null,null,null,null))],function(t,e){var n=e.component;t(e,4,0,n.isIconButton,n._isRippleDisabled(),n._getHostElement())},function(t,e){var n=e.component;t(e,3,0,n.isRoundButton||n.isIconButton,Go(e,4).unbounded)})}var Vk=Vr({encapsulation:2,styles:[".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media (hover:none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-flat-button,.mat-icon-button,.mat-stroked-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-flat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-focus-overlay,.mat-stroked-button .mat-button-ripple.mat-ripple{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button .mat-icon,.mat-icon-button i{line-height:24px}.mat-button-focus-overlay,.mat-button-ripple.mat-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-focus-overlay{opacity:0;transition:opacity .2s cubic-bezier(.35,0,.25,1),background-color .2s cubic-bezier(.35,0,.25,1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}@media (-ms-high-contrast:active){.mat-button-focus-overlay{background-color:#fff}}@media (-ms-high-contrast:black-on-white){.mat-button-focus-overlay{background-color:#000}}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}@media (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}"],data:{}});function Bk(t){return Ia(2,[wa(402653184,1,{ripple:0}),(t()(),yo(1,0,null,null,1,"span",[["class","mat-button-wrapper"]],null,null,null,null,null)),La(null,0),(t()(),yo(3,0,null,null,1,"div",[["class","mat-button-ripple mat-ripple"],["matRipple",""]],[[2,"mat-button-ripple-round",null],[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(4,212992,[[1,4]],0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{centered:[0,"centered"],disabled:[1,"disabled"],trigger:[2,"trigger"]},null),(t()(),yo(5,0,null,null,0,"div",[["class","mat-button-focus-overlay"]],null,null,null,null,null))],function(t,e){var n=e.component;t(e,4,0,n.isIconButton,n._isRippleDisabled(),n._getHostElement())},function(t,e){var n=e.component;t(e,3,0,n.isRoundButton||n.isIconButton,Go(e,4).unbounded)})}var Wk=function(){function t(t,e,n,i,r){this.formBuilder=t,this.route=e,this.router=n,this.authenticationService=i,this.alertService=r,this.loading=!1,this.submitted=!1,this.hide=!0,this.authenticationService.currentUserValue&&this.router.navigate(["/home"])}return t.prototype.ngOnInit=function(){this.loginForm=this.formBuilder.group({username:["",R_.required],password:["",R_.required]}),this.returnUrl=this.route.snapshot.queryParams.returnUrl||"/home"},Object.defineProperty(t.prototype,"f",{get:function(){return this.loginForm.controls},enumerable:!0,configurable:!0}),t.prototype.onSubmit=function(){var t=this;this.submitted=!0,this.loginForm.invalid||(this.loading=!0,this.authenticationService.login(this.f.username.value,this.f.password.value).pipe(tp()).subscribe(function(e){if(t.returnUrl.includes("?")){var n=t.returnUrl.split("?")[0],i=new nh({fromString:t.returnUrl.split("?")[1]});i.get("From"),i.get("To"),t.router.navigate([n],{queryParams:{From:i.get("From"),To:i.get("To"),devicemodel:i.get("devicemodel"),email:i.get("email"),selectedResultID:i.get("selectedResultID")}})}else t.router.navigate([t.returnUrl])},function(e){t.alertService.error(e),t.loading=!1}))},t}(),Uk=Vr({encapsulation:0,styles:[[".center[_ngcontent-%COMP%]{width:auto;margin:10px auto;padding:7em}.main-div[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center;margin-top:15em}.login-container[_ngcontent-%COMP%]{align-items:center;display:initial}input[_ngcontent-%COMP%]{background:0 0;outline:0;font:inherit;text-align:center}button[_ngcontent-%COMP%]{position:relative;text-align:center;display:inline-block;justify-content:center;min-width:5em;margin-top:5em}.form-group[_ngcontent-%COMP%]{text-align:center}.loginButton[_ngcontent-%COMP%]{min-height:3em;min-width:15em;font-size:16pt}"]],data:{}});function Gk(t){return Ia(0,[(t()(),yo(0,0,null,null,0,"img",[["src","data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA=="]],null,null,null,null,null))],null,null)}function qk(t){return Ia(0,[(t()(),yo(0,0,null,null,88,"div",[["class","main-div"],["layout","column"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,87,"mat-card",[["class","z-depth center mat-card"],["flex","50"]],null,null,null,S_,M_)),oa(2,49152,null,0,x_,[],null,null),(t()(),yo(3,0,null,0,1,"h3",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Login"])),(t()(),yo(5,0,null,0,83,"form",[["class","login-container"],["novalidate",""]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],[[null,"ngSubmit"],[null,"submit"],[null,"reset"]],function(t,e,n){var i=!0,r=t.component;return"submit"===e&&(i=!1!==Go(t,7).onSubmit(n)&&i),"reset"===e&&(i=!1!==Go(t,7).onReset()&&i),"ngSubmit"===e&&(i=!1!==r.onSubmit()&&i),i},null,null)),oa(6,16384,null,0,Fv,[],null,null),oa(7,540672,null,0,Ev,[[8,null],[8,null]],{form:[0,"form"]},{ngSubmit:"ngSubmit"}),la(2048,null,A_,null,[Ev]),oa(9,16384,null,0,yv,[[4,A_]],null,null),(t()(),yo(10,0,null,null,35,"div",[["class","form-group"]],null,null,null,null,null)),(t()(),yo(11,0,null,null,34,"mat-form-field",[["appearance","standard"],["class","mat-form-field"],["style","width: 20em;"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(12,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],{appearance:[0,"appearance"],floatLabel:[1,"floatLabel"]},null),wa(335544320,1,{_control:0}),wa(335544320,2,{_placeholderChild:0}),wa(335544320,3,{_labelChild:0}),wa(603979776,4,{_errorChildren:1}),wa(603979776,5,{_hintChildren:1}),wa(603979776,6,{_prefixChildren:1}),wa(603979776,7,{_suffixChildren:1}),(t()(),yo(20,0,null,3,2,"mat-label",[],null,null,null,null,null)),oa(21,16384,[[3,4]],0,nb,[],null,null),(t()(),Oa(-1,null,["Enter your username"])),(t()(),yo(23,0,null,1,13,"input",[["autocomplete","username"],["class","mat-input-element mat-form-field-autofill-control"],["formControlName","username"],["matInput",""],["required",""],["type","text"]],[[1,"required",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,26)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,26).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,26)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,26)._compositionEnd(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,35)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,35)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,35)._onInput()&&i),i},null,null)),oa(24,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(25,{"is-invalid":0}),oa(26,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(27,16384,null,0,Rv,[],{required:[0,"required"]},null),la(1024,null,O_,function(t){return[t]},[Rv]),la(1024,null,j_,function(t){return[t]},[V_]),oa(30,671744,null,0,Yv,[[3,A_],[6,O_],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(32,16384,null,0,gv,[[4,q_]],null,null),oa(33,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(34,{"is-invalid":0}),oa(35,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{required:[0,"required"],type:[1,"type"]},null),la(2048,[[1,4]],Qv,null,[mk]),(t()(),yo(37,0,null,5,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(38,16384,[[4,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,["Username is required"])),(t()(),yo(40,0,null,4,2,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(41,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(42,16384,[[7,4]],0,ib,[],null,null),(t()(),yo(43,0,null,6,2,"mat-hint",[["class","mat-hint"]],[[2,"mat-right",null],[1,"id",0],[1,"align",0]],null,null,null,null)),oa(44,16384,[[5,4]],0,eb,[],null,null),(t()(),Oa(-1,null,["Username"])),(t()(),yo(46,0,null,null,36,"div",[["class","form-group"]],null,null,null,null,null)),(t()(),yo(47,0,null,null,35,"mat-form-field",[["appearance","standard"],["class","mat-form-field"],["style","width: 20em;"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(48,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],{appearance:[0,"appearance"],floatLabel:[1,"floatLabel"]},null),wa(335544320,8,{_control:0}),wa(335544320,9,{_placeholderChild:0}),wa(335544320,10,{_labelChild:0}),wa(603979776,11,{_errorChildren:1}),wa(603979776,12,{_hintChildren:1}),wa(603979776,13,{_prefixChildren:1}),wa(603979776,14,{_suffixChildren:1}),(t()(),yo(56,0,null,3,2,"mat-label",[],null,null,null,null,null)),oa(57,16384,[[10,4]],0,nb,[],null,null),(t()(),Oa(-1,null,["Enter your password"])),(t()(),yo(59,0,null,1,13,"input",[["autocomplete","current-password"],["class","mat-input-element mat-form-field-autofill-control"],["formControlName","password"],["matInput",""],["required",""]],[[1,"required",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,62)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,62).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,62)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,62)._compositionEnd(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,71)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,71)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,71)._onInput()&&i),i},null,null)),oa(60,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(61,{"is-invalid":0}),oa(62,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(63,16384,null,0,Rv,[],{required:[0,"required"]},null),la(1024,null,O_,function(t){return[t]},[Rv]),la(1024,null,j_,function(t){return[t]},[V_]),oa(66,671744,null,0,Yv,[[3,A_],[6,O_],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(68,16384,null,0,gv,[[4,q_]],null,null),oa(69,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(70,{"is-invalid":0}),oa(71,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{required:[0,"required"],type:[1,"type"]},null),la(2048,[[8,4]],Qv,null,[mk]),(t()(),yo(73,0,null,5,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(74,16384,[[11,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,["Password is required"])),(t()(),yo(76,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=0!=(r.hide=!r.hide)&&i),i},Yk,Ok)),oa(77,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(78,16384,[[14,4]],0,ib,[],null,null),(t()(),Oa(79,0,["",""])),(t()(),yo(80,0,null,6,2,"mat-hint",[["class","mat-hint"]],[[2,"mat-right",null],[1,"id",0],[1,"align",0]],null,null,null,null)),oa(81,16384,[[12,4]],0,eb,[],null,null),(t()(),Oa(-1,null,["Password"])),(t()(),yo(83,0,null,null,5,"div",[["class","form-group"],["color","primary"],["style","height: 100px; margin-top: 0px;"]],null,null,null,null,null)),(t()(),yo(84,0,null,null,2,"button",[["class","btn btn-primary loginButton"],["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(85,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],color:[1,"color"]},null),(t()(),Oa(-1,0,["Login"])),(t()(),go(16777216,null,null,1,null,Gk)),oa(88,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,7,0,n.loginForm),t(e,12,0,"standard","auto");var i=t(e,25,0,n.submitted&&n.f.username.errors);t(e,24,0,i),t(e,27,0,""),t(e,30,0,"username");var r=t(e,34,0,n.submitted&&n.f.username.errors);t(e,33,0,r),t(e,35,0,"","text"),t(e,41,0),t(e,48,0,"standard","auto");var o=t(e,61,0,n.submitted&&n.f.password.errors);t(e,60,0,o),t(e,63,0,""),t(e,66,0,"password");var a=t(e,70,0,n.submitted&&n.f.password.errors);t(e,69,0,a),t(e,71,0,"",n.hide?"password":"text"),t(e,77,0),t(e,85,0,n.loading,"primary"),t(e,88,0,n.loading)},function(t,e){var n=e.component;t(e,5,0,Go(e,9).ngClassUntouched,Go(e,9).ngClassTouched,Go(e,9).ngClassPristine,Go(e,9).ngClassDirty,Go(e,9).ngClassValid,Go(e,9).ngClassInvalid,Go(e,9).ngClassPending),t(e,11,1,["standard"==Go(e,12).appearance,"fill"==Go(e,12).appearance,"outline"==Go(e,12).appearance,"legacy"==Go(e,12).appearance,Go(e,12)._control.errorState,Go(e,12)._canLabelFloat,Go(e,12)._shouldLabelFloat(),Go(e,12)._hasFloatingLabel(),Go(e,12)._hideControlPlaceholder(),Go(e,12)._control.disabled,Go(e,12)._control.autofilled,Go(e,12)._control.focused,"accent"==Go(e,12).color,"warn"==Go(e,12).color,Go(e,12)._shouldForward("untouched"),Go(e,12)._shouldForward("touched"),Go(e,12)._shouldForward("pristine"),Go(e,12)._shouldForward("dirty"),Go(e,12)._shouldForward("valid"),Go(e,12)._shouldForward("invalid"),Go(e,12)._shouldForward("pending"),!Go(e,12)._animationsEnabled]),t(e,23,1,[Go(e,27).required?"":null,Go(e,32).ngClassUntouched,Go(e,32).ngClassTouched,Go(e,32).ngClassPristine,Go(e,32).ngClassDirty,Go(e,32).ngClassValid,Go(e,32).ngClassInvalid,Go(e,32).ngClassPending,Go(e,35)._isServer,Go(e,35).id,Go(e,35).placeholder,Go(e,35).disabled,Go(e,35).required,Go(e,35).readonly&&!Go(e,35)._isNativeSelect||null,Go(e,35)._ariaDescribedby||null,Go(e,35).errorState,Go(e,35).required.toString()]),t(e,37,0,Go(e,38).id),t(e,40,0,Go(e,41).inline,"primary"!==Go(e,41).color&&"accent"!==Go(e,41).color&&"warn"!==Go(e,41).color),t(e,43,0,"end"==Go(e,44).align,Go(e,44).id,null),t(e,47,1,["standard"==Go(e,48).appearance,"fill"==Go(e,48).appearance,"outline"==Go(e,48).appearance,"legacy"==Go(e,48).appearance,Go(e,48)._control.errorState,Go(e,48)._canLabelFloat,Go(e,48)._shouldLabelFloat(),Go(e,48)._hasFloatingLabel(),Go(e,48)._hideControlPlaceholder(),Go(e,48)._control.disabled,Go(e,48)._control.autofilled,Go(e,48)._control.focused,"accent"==Go(e,48).color,"warn"==Go(e,48).color,Go(e,48)._shouldForward("untouched"),Go(e,48)._shouldForward("touched"),Go(e,48)._shouldForward("pristine"),Go(e,48)._shouldForward("dirty"),Go(e,48)._shouldForward("valid"),Go(e,48)._shouldForward("invalid"),Go(e,48)._shouldForward("pending"),!Go(e,48)._animationsEnabled]),t(e,59,1,[Go(e,63).required?"":null,Go(e,68).ngClassUntouched,Go(e,68).ngClassTouched,Go(e,68).ngClassPristine,Go(e,68).ngClassDirty,Go(e,68).ngClassValid,Go(e,68).ngClassInvalid,Go(e,68).ngClassPending,Go(e,71)._isServer,Go(e,71).id,Go(e,71).placeholder,Go(e,71).disabled,Go(e,71).required,Go(e,71).readonly&&!Go(e,71)._isNativeSelect||null,Go(e,71)._ariaDescribedby||null,Go(e,71).errorState,Go(e,71).required.toString()]),t(e,73,0,Go(e,74).id),t(e,76,0,Go(e,77).inline,"primary"!==Go(e,77).color&&"accent"!==Go(e,77).color&&"warn"!==Go(e,77).color),t(e,79,0,n.hide?"visibility_off":"visibility"),t(e,80,0,"end"==Go(e,81).align,Go(e,81).id,null),t(e,84,0,Go(e,85).disabled||null,"NoopAnimations"===Go(e,85)._animationMode)})}function Xk(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-login",[],null,null,null,qk,Uk)),oa(1,114688,null,0,Wk,[Iv,xf,Am,Oh,d_],null,null)],function(t,e){t(e,1,0)},null)}var Kk=Ro("app-login",Wk,Xk,{},{},[]),Zk=Vr({encapsulation:2,styles:[".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:0;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}@media (-ms-high-contrast:active){.mat-option{margin:0 1px}.mat-option.mat-active{border:solid 1px currentColor;margin:0}}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}@media (-ms-high-contrast:active){.mat-option .mat-option-ripple{opacity:.5}}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}"],data:{}});function Jk(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-pseudo-checkbox",[["class","mat-option-pseudo-checkbox mat-pseudo-checkbox"]],[[2,"mat-pseudo-checkbox-indeterminate",null],[2,"mat-pseudo-checkbox-checked",null],[2,"mat-pseudo-checkbox-disabled",null],[2,"_mat-animation-noopable",null]],null,null,tM,$k)),oa(1,49152,null,0,Ed,[[2,Ow]],{state:[0,"state"],disabled:[1,"disabled"]},null)],function(t,e){var n=e.component;t(e,1,0,n.selected?"checked":"",n.disabled)},function(t,e){t(e,0,0,"indeterminate"===Go(e,1).state,"checked"===Go(e,1).state,Go(e,1).disabled,"NoopAnimations"===Go(e,1)._animationMode)})}function Qk(t){return Ia(2,[(t()(),go(16777216,null,null,1,null,Jk)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(2,0,null,null,1,"span",[["class","mat-option-text"]],null,null,null,null,null)),La(null,0),(t()(),yo(4,0,null,null,1,"div",[["class","mat-option-ripple mat-ripple"],["mat-ripple",""]],[[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(5,212992,null,0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{disabled:[0,"disabled"],trigger:[1,"trigger"]},null)],function(t,e){var n=e.component;t(e,1,0,n.multiple),t(e,5,0,n.disabled||n.disableRipple,n._getHostElement())},function(t,e){t(e,4,0,Go(e,5).unbounded)})}var $k=Vr({encapsulation:2,styles:[".mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0,0,.2,.1),background-color 90ms cubic-bezier(0,0,.2,.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:'';border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0,0,.2,.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}"],data:{}});function tM(t){return Ia(2,[],null,null)}function eM(){throw Error("Host already has a portal attached")}var nM=function(){function t(){}return t.prototype.attach=function(t){return null==t&&function(){throw Error("Attempting to attach a portal to a null PortalOutlet")}(),t.hasAttached()&&eM(),this._attachedHost=t,t.attach(this)},t.prototype.detach=function(){var t=this._attachedHost;null==t?function(){throw Error("Attempting to detach a portal that is not attached to a host")}():(this._attachedHost=null,t.detach())},Object.defineProperty(t.prototype,"isAttached",{get:function(){return null!=this._attachedHost},enumerable:!0,configurable:!0}),t.prototype.setAttachedHost=function(t){this._attachedHost=t},t}(),iM=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.component=e,o.viewContainerRef=n,o.injector=i,o.componentFactoryResolver=r,o}return r(e,t),e}(nM),rM=function(t){function e(e,n,i){var r=t.call(this)||this;return r.templateRef=e,r.viewContainerRef=n,r.context=i,r}return r(e,t),Object.defineProperty(e.prototype,"origin",{get:function(){return this.templateRef.elementRef},enumerable:!0,configurable:!0}),e.prototype.attach=function(e,n){return void 0===n&&(n=this.context),this.context=n,t.prototype.attach.call(this,e)},e.prototype.detach=function(){return this.context=void 0,t.prototype.detach.call(this)},e}(nM),oM=function(){function t(){this._isDisposed=!1}return t.prototype.hasAttached=function(){return!!this._attachedPortal},t.prototype.attach=function(t){return t||function(){throw Error("Must provide a portal to attach")}(),this.hasAttached()&&eM(),this._isDisposed&&function(){throw Error("This PortalOutlet has already been disposed")}(),t instanceof iM?(this._attachedPortal=t,this.attachComponentPortal(t)):t instanceof rM?(this._attachedPortal=t,this.attachTemplatePortal(t)):void function(){throw Error("Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.")}()},t.prototype.detach=function(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()},t.prototype.dispose=function(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0},t.prototype.setDisposeFn=function(t){this._disposeFn=t},t.prototype._invokeDisposeFn=function(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)},t}(),aM=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.outletElement=e,o._componentFactoryResolver=n,o._appRef=i,o._defaultInjector=r,o}return r(e,t),e.prototype.attachComponentPortal=function(t){var e,n=this,i=(t.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(t.component);return t.viewContainerRef?(e=t.viewContainerRef.createComponent(i,t.viewContainerRef.length,t.injector||t.viewContainerRef.injector),this.setDisposeFn(function(){return e.destroy()})):(e=i.create(t.injector||this._defaultInjector),this._appRef.attachView(e.hostView),this.setDisposeFn(function(){n._appRef.detachView(e.hostView),e.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(e)),e},e.prototype.attachTemplatePortal=function(t){var e=this,n=t.viewContainerRef,i=n.createEmbeddedView(t.templateRef,t.context);return i.detectChanges(),i.rootNodes.forEach(function(t){return e.outletElement.appendChild(t)}),this.setDisposeFn(function(){var t=n.indexOf(i);-1!==t&&n.remove(t)}),i},e.prototype.dispose=function(){t.prototype.dispose.call(this),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)},e.prototype._getComponentRootNode=function(t){return t.hostView.rootNodes[0]},e}(oM),lM=function(t){function e(e,n){var i=t.call(this)||this;return i._componentFactoryResolver=e,i._viewContainerRef=n,i._isInitialized=!1,i.attached=new kn,i}return r(e,t),Object.defineProperty(e.prototype,"portal",{get:function(){return this._attachedPortal},set:function(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&t.prototype.detach.call(this),e&&t.prototype.attach.call(this,e),this._attachedPortal=e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"attachedRef",{get:function(){return this._attachedRef},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){this._isInitialized=!0},e.prototype.ngOnDestroy=function(){t.prototype.dispose.call(this),this._attachedPortal=null,this._attachedRef=null},e.prototype.attachComponentPortal=function(e){e.setAttachedHost(this);var n=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,i=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),r=n.createComponent(i,n.length,e.injector||n.injector);return t.prototype.setDisposeFn.call(this,function(){return r.destroy()}),this._attachedPortal=e,this._attachedRef=r,this.attached.emit(r),r},e.prototype.attachTemplatePortal=function(e){var n=this;e.setAttachedHost(this);var i=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return t.prototype.setDisposeFn.call(this,function(){return n._viewContainerRef.clear()}),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i},e}(oM),sM=function(){return function(){}}(),uM=function(){function t(t,e){this._parentInjector=t,this._customTokens=e}return t.prototype.get=function(t,e){var n=this._customTokens.get(t);return void 0!==n?n:this._parentInjector.get(t,e)},t}();function cM(t,e){return function(n){return n.lift(new dM(t,e))}}var dM=function(){function t(t,e){this.compare=t,this.keySelector=e}return t.prototype.call=function(t,e){return e.subscribe(new hM(t,this.compare,this.keySelector))},t}(),hM=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.keySelector=i,r.hasKey=!1,"function"==typeof n&&(r.compare=n),r}return r(e,t),e.prototype.compare=function(t,e){return t===e},e.prototype._next=function(t){var e=t;if(this.keySelector&&(e=_(this.keySelector)(t))===g)return this.destination.error(g.e);var n=!1;if(this.hasKey){if((n=_(this.compare)(this.key,e))===g)return this.destination.error(g.e)}else this.hasKey=!0;!1===Boolean(n)&&(this.key=e,this.destination.next(t))},e}(D),pM=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.scheduler=e,i.work=n,i}return r(e,t),e.prototype.schedule=function(e,n){return void 0===n&&(n=0),n>0?t.prototype.schedule.call(this,e,n):(this.delay=n,this.state=e,this.scheduler.flush(this),this)},e.prototype.execute=function(e,n){return n>0||this.closed?t.prototype.execute.call(this,e,n):this._execute(e,n)},e.prototype.requestAsyncId=function(e,n,i){return void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0?t.prototype.requestAsyncId.call(this,e,n,i):e.flush(this)},e}(_c),fM=new(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e}(bc))(pM),mM=function(){function t(t,e,n){this.kind=t,this.value=e,this.error=n,this.hasValue="N"===t}return t.prototype.observe=function(t){switch(this.kind){case"N":return t.next&&t.next(this.value);case"E":return t.error&&t.error(this.error);case"C":return t.complete&&t.complete()}},t.prototype.do=function(t,e,n){switch(this.kind){case"N":return t&&t(this.value);case"E":return e&&e(this.error);case"C":return n&&n()}},t.prototype.accept=function(t,e,n){return t&&"function"==typeof t.next?this.observe(t):this.do(t,e,n)},t.prototype.toObservable=function(){switch(this.kind){case"N":return cc(this.value);case"E":return yk(this.error);case"C":return uc()}throw new Error("unexpected notification kind value")},t.createNext=function(e){return void 0!==e?new t("N",e):t.undefinedValueNotification},t.createError=function(e){return new t("E",void 0,e)},t.createComplete=function(){return t.completeNotification},t.completeNotification=new t("C"),t.undefinedValueNotification=new t("N",void 0),t}(),gM=function(){function t(t,e){void 0===e&&(e=0),this.scheduler=t,this.delay=e}return t.prototype.call=function(t,e){return e.subscribe(new yM(t,this.scheduler,this.delay))},t}(),yM=function(t){function e(e,n,i){void 0===i&&(i=0);var r=t.call(this,e)||this;return r.scheduler=n,r.delay=i,r}return r(e,t),e.dispatch=function(t){t.notification.observe(t.destination),this.unsubscribe()},e.prototype.scheduleMessage=function(t){this.destination.add(this.scheduler.schedule(e.dispatch,this.delay,new _M(t,this.destination)))},e.prototype._next=function(t){this.scheduleMessage(mM.createNext(t))},e.prototype._error=function(t){this.scheduleMessage(mM.createError(t)),this.unsubscribe()},e.prototype._complete=function(){this.scheduleMessage(mM.createComplete()),this.unsubscribe()},e}(D),_M=function(){return function(t,e){this.notification=t,this.destination=e}}(),vM=function(){return function(){}}();function bM(t){return t&&"function"==typeof t.connect}var xM=function(){function t(t,e,n){void 0===t&&(t=!1),void 0===n&&(n=!0);var i=this;this._multiple=t,this._emitChanges=n,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new H,this.onChange=this.changed,e&&e.length&&(t?e.forEach(function(t){return i._markSelected(t)}):this._markSelected(e[0]),this._selectedToEmit.length=0)}return Object.defineProperty(t.prototype,"selected",{get:function(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected},enumerable:!0,configurable:!0}),t.prototype.select=function(){for(var t=this,e=[],n=0;n1&&!this._multiple)throw Error("Cannot pass multiple values into SelectionModel with single-value mode.")},t}(),wM=function(){function t(){this._listeners=[]}return t.prototype.notify=function(t,e){for(var n=0,i=this._listeners;n0?e._scrolled.pipe(sk(t)).subscribe(n):e._scrolled.subscribe(n);return e._scrolledCount++,function(){i.unsubscribe(),e._scrolledCount--,e._scrolledCount||e._removeGlobalListener()}}):cc()},t.prototype.ngOnDestroy=function(){var t=this;this._removeGlobalListener(),this.scrollContainers.forEach(function(e,n){return t.deregister(n)}),this._scrolled.complete()},t.prototype.ancestorScrolled=function(t,e){var n=this.getAncestorScrollContainers(t);return this.scrolled(e).pipe(Cc(function(t){return!t||n.indexOf(t)>-1}))},t.prototype.getAncestorScrollContainers=function(t){var e=this,n=[];return this.scrollContainers.forEach(function(i,r){e._scrollableContainsElement(r,t)&&n.push(r)}),n},t.prototype._scrollableContainsElement=function(t,e){var n=e.nativeElement,i=t.getElementRef().nativeElement;do{if(n==i)return!0}while(n=n.parentElement);return!1},t.prototype._addGlobalListener=function(){var t=this;this._globalSubscription=this._ngZone.runOutsideAngular(function(){return pg(window.document,"scroll").subscribe(function(){return t._scrolled.next()})})},t.prototype._removeGlobalListener=function(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)},t.ngInjectableDef=St({factory:function(){return new t(ie(Mi),ie(nc))},token:t,providedIn:"root"}),t}(),MM=function(){return function(){}}(),SM=function(){function t(t,e){var n=this;this._platform=t,e.runOutsideAngular(function(){n._change=t.isBrowser?ht(pg(window,"resize"),pg(window,"orientationchange")):cc(),n._invalidateCache=n.change().subscribe(function(){return n._updateViewportSize()})})}return t.prototype.ngOnDestroy=function(){this._invalidateCache.unsubscribe()},t.prototype.getViewportSize=function(){this._viewportSize||this._updateViewportSize();var t={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),t},t.prototype.getViewportRect=function(){var t=this.getViewportScrollPosition(),e=this.getViewportSize(),n=e.width,i=e.height;return{top:t.top,left:t.left,bottom:t.top+i,right:t.left+n,height:i,width:n}},t.prototype.getViewportScrollPosition=function(){if(!this._platform.isBrowser)return{top:0,left:0};var t=document.documentElement,e=t.getBoundingClientRect();return{top:-e.top||document.body.scrollTop||window.scrollY||t.scrollTop||0,left:-e.left||document.body.scrollLeft||window.scrollX||t.scrollLeft||0}},t.prototype.change=function(t){return void 0===t&&(t=20),t>0?this._change.pipe(sk(t)):this._change},t.prototype._updateViewportSize=function(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}},t.ngInjectableDef=St({factory:function(){return new t(ie(nc),ie(Mi))},token:t,providedIn:"root"}),t}(),CM=function(){function t(t,e){this._viewportRuler=t,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=e}return t.prototype.attach=function(){},t.prototype.enable=function(){if(this._canBeEnabled()){var t=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=t.style.left||"",this._previousHTMLStyles.top=t.style.top||"",t.style.left=Qu(-this._previousScrollPosition.left),t.style.top=Qu(-this._previousScrollPosition.top),t.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}},t.prototype.disable=function(){if(this._isEnabled){var t=this._document.documentElement,e=t.style,n=this._document.body.style,i=e.scrollBehavior||"",r=n.scrollBehavior||"";this._isEnabled=!1,e.left=this._previousHTMLStyles.left,e.top=this._previousHTMLStyles.top,t.classList.remove("cdk-global-scrollblock"),e.scrollBehavior=n.scrollBehavior="auto",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),e.scrollBehavior=i,n.scrollBehavior=r}},t.prototype._canBeEnabled=function(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;var t=this._document.body,e=this._viewportRuler.getViewportSize();return t.scrollHeight>e.height||t.scrollWidth>e.width},t}();function LM(){return Error("Scroll strategy has already been attached.")}var DM=function(){function t(t,e,n,i){var r=this;this._scrollDispatcher=t,this._ngZone=e,this._viewportRuler=n,this._config=i,this._scrollSubscription=null,this._detach=function(){r.disable(),r._overlayRef.hasAttached()&&r._ngZone.run(function(){return r._overlayRef.detach()})}}return t.prototype.attach=function(t){if(this._overlayRef)throw LM();this._overlayRef=t},t.prototype.enable=function(){var t=this;if(!this._scrollSubscription){var e=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=e.subscribe(function(){var e=t._viewportRuler.getViewportScrollPosition().top;Math.abs(e-t._initialScrollPosition)>t._config.threshold?t._detach():t._overlayRef.updatePosition()})):this._scrollSubscription=e.subscribe(this._detach)}},t.prototype.disable=function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)},t}(),TM=function(){function t(){}return t.prototype.enable=function(){},t.prototype.disable=function(){},t.prototype.attach=function(){},t}();function EM(t,e){return e.some(function(e){return t.bottome.bottom||t.righte.right})}function AM(t,e){return e.some(function(e){return t.tope.bottom||t.lefte.right})}var PM=function(){function t(t,e,n,i){this._scrollDispatcher=t,this._viewportRuler=e,this._ngZone=n,this._config=i,this._scrollSubscription=null}return t.prototype.attach=function(t){if(this._overlayRef)throw LM();this._overlayRef=t},t.prototype.enable=function(){var t=this;this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(function(){if(t._overlayRef.updatePosition(),t._config&&t._config.autoClose){var e=t._overlayRef.overlayElement.getBoundingClientRect(),n=t._viewportRuler.getViewportSize(),i=n.width,r=n.height;EM(e,[{width:i,height:r,bottom:r,right:i,top:0,left:0}])&&(t.disable(),t._ngZone.run(function(){return t._overlayRef.detach()}))}}))},t.prototype.disable=function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)},t}(),OM=function(){function t(t,e,n,i){var r=this;this._scrollDispatcher=t,this._viewportRuler=e,this._ngZone=n,this.noop=function(){return new TM},this.close=function(t){return new DM(r._scrollDispatcher,r._ngZone,r._viewportRuler,t)},this.block=function(){return new CM(r._viewportRuler,r._document)},this.reposition=function(t){return new PM(r._scrollDispatcher,r._viewportRuler,r._ngZone,t)},this._document=i}return t.ngInjectableDef=St({factory:function(){return new t(ie(kM),ie(SM),ie(Mi),ie(As))},token:t,providedIn:"root"}),t}(),YM=function(){return function(t){var e=this;this.scrollStrategy=new TM,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,t&&Object.keys(t).forEach(function(n){void 0!==t[n]&&(e[n]=t[n])})}}(),RM=function(){return function(t,e,n,i,r){this.offsetX=n,this.offsetY=i,this.panelClass=r,this.originX=t.originX,this.originY=t.originY,this.overlayX=e.overlayX,this.overlayY=e.overlayY}}(),IM=function(){return function(t,e){this.connectionPair=t,this.scrollableViewProperties=e}}();function FM(t,e){if("top"!==e&&"bottom"!==e&&"center"!==e)throw Error("ConnectedPosition: Invalid "+t+' "'+e+'". Expected "top", "bottom" or "center".')}function zM(t,e){if("start"!==e&&"end"!==e&&"center"!==e)throw Error("ConnectedPosition: Invalid "+t+' "'+e+'". Expected "start", "end" or "center".')}var jM=function(){function t(t){var e=this;this._attachedOverlays=[],this._keydownListener=function(t){for(var n=e._attachedOverlays,i=n.length-1;i>-1;i--)if(n[i]._keydownEventSubscriptions>0){n[i]._keydownEvents.next(t);break}},this._document=t}return t.prototype.ngOnDestroy=function(){this._detach()},t.prototype.add=function(t){this.remove(t),this._isAttached||(this._document.body.addEventListener("keydown",this._keydownListener,!0),this._isAttached=!0),this._attachedOverlays.push(t)},t.prototype.remove=function(t){var e=this._attachedOverlays.indexOf(t);e>-1&&this._attachedOverlays.splice(e,1),0===this._attachedOverlays.length&&this._detach()},t.prototype._detach=function(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener,!0),this._isAttached=!1)},t.ngInjectableDef=St({factory:function(){return new t(ie(As))},token:t,providedIn:"root"}),t}(),HM=function(){function t(t){this._document=t}return t.prototype.ngOnDestroy=function(){this._containerElement&&this._containerElement.parentNode&&this._containerElement.parentNode.removeChild(this._containerElement)},t.prototype.getContainerElement=function(){return this._containerElement||this._createContainer(),this._containerElement},t.prototype._createContainer=function(){var t=this._document.createElement("div");t.classList.add("cdk-overlay-container"),this._document.body.appendChild(t),this._containerElement=t},t.ngInjectableDef=St({factory:function(){return new t(ie(As))},token:t,providedIn:"root"}),t}(),NM=function(){function t(t,e,n,i,r,o,a,l){var s=this;this._portalOutlet=t,this._host=e,this._pane=n,this._config=i,this._ngZone=r,this._keyboardDispatcher=o,this._document=a,this._location=l,this._backdropElement=null,this._backdropClick=new H,this._attachments=new H,this._detachments=new H,this._locationChanges=x.EMPTY,this._keydownEventsObservable=new Y(function(t){var e=s._keydownEvents.subscribe(t);return s._keydownEventSubscriptions++,function(){e.unsubscribe(),s._keydownEventSubscriptions--}}),this._keydownEvents=new H,this._keydownEventSubscriptions=0,i.scrollStrategy&&i.scrollStrategy.attach(this),this._positionStrategy=i.positionStrategy}return Object.defineProperty(t.prototype,"overlayElement",{get:function(){return this._pane},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"backdropElement",{get:function(){return this._backdropElement},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hostElement",{get:function(){return this._host},enumerable:!0,configurable:!0}),t.prototype.attach=function(t){var e=this,n=this._portalOutlet.attach(t);return this._positionStrategy&&this._positionStrategy.attach(this),!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._config.scrollStrategy&&this._config.scrollStrategy.enable(),this._ngZone.onStable.asObservable().pipe(Ac(1)).subscribe(function(){e.hasAttached()&&e.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&this._location&&(this._locationChanges=this._location.subscribe(function(){return e.dispose()})),n},t.prototype.detach=function(){if(this.hasAttached()){this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._config.scrollStrategy&&this._config.scrollStrategy.disable();var t=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),t}},t.prototype.dispose=function(){var t=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._config.scrollStrategy&&this._config.scrollStrategy.disable(),this.detachBackdrop(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._host&&this._host.parentNode&&(this._host.parentNode.removeChild(this._host),this._host=null),this._previousHostParent=this._pane=null,t&&this._detachments.next(),this._detachments.complete()},t.prototype.hasAttached=function(){return this._portalOutlet.hasAttached()},t.prototype.backdropClick=function(){return this._backdropClick.asObservable()},t.prototype.attachments=function(){return this._attachments.asObservable()},t.prototype.detachments=function(){return this._detachments.asObservable()},t.prototype.keydownEvents=function(){return this._keydownEventsObservable},t.prototype.getConfig=function(){return this._config},t.prototype.updatePosition=function(){this._positionStrategy&&this._positionStrategy.apply()},t.prototype.updatePositionStrategy=function(t){t!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=t,this.hasAttached()&&(t.attach(this),this.updatePosition()))},t.prototype.updateSize=function(t){this._config=o({},this._config,t),this._updateElementSize()},t.prototype.setDirection=function(t){this._config=o({},this._config,{direction:t}),this._updateElementDirection()},t.prototype.addPanelClass=function(t){this._pane&&this._toggleClasses(this._pane,t,!0)},t.prototype.removePanelClass=function(t){this._pane&&this._toggleClasses(this._pane,t,!1)},t.prototype.getDirection=function(){var t=this._config.direction;return t?"string"==typeof t?t:t.value:"ltr"},t.prototype._updateElementDirection=function(){this._host.setAttribute("dir",this.getDirection())},t.prototype._updateElementSize=function(){var t=this._pane.style;t.width=Qu(this._config.width),t.height=Qu(this._config.height),t.minWidth=Qu(this._config.minWidth),t.minHeight=Qu(this._config.minHeight),t.maxWidth=Qu(this._config.maxWidth),t.maxHeight=Qu(this._config.maxHeight)},t.prototype._togglePointerEvents=function(t){this._pane.style.pointerEvents=t?"auto":"none"},t.prototype._attachBackdrop=function(){var t=this;this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",function(e){return t._backdropClick.next(e)}),"undefined"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(function(){requestAnimationFrame(function(){t._backdropElement&&t._backdropElement.classList.add("cdk-overlay-backdrop-showing")})}):this._backdropElement.classList.add("cdk-overlay-backdrop-showing")},t.prototype._updateStackingOrder=function(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)},t.prototype.detachBackdrop=function(){var t=this,e=this._backdropElement;if(e){var n,i=function(){e&&e.parentNode&&e.parentNode.removeChild(e),t._backdropElement==e&&(t._backdropElement=null),t._config.backdropClass&&t._toggleClasses(e,t._config.backdropClass,!1),clearTimeout(n)};e.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(function(){e.addEventListener("transitionend",i)}),e.style.pointerEvents="none",n=this._ngZone.runOutsideAngular(function(){return setTimeout(i,500)})}},t.prototype._toggleClasses=function(t,e,n){var i=t.classList;Ju(e).forEach(function(t){n?i.add(t):i.remove(t)})},t.prototype._detachContentWhenStable=function(){var t=this;this._ngZone.runOutsideAngular(function(){var e=t._ngZone.onStable.asObservable().pipe(fg(ht(t._attachments,t._detachments))).subscribe(function(){t._pane&&t._host&&0!==t._pane.children.length||(t._pane&&t._config.panelClass&&t._toggleClasses(t._pane,t._config.panelClass,!1),t._host&&t._host.parentElement&&(t._previousHostParent=t._host.parentElement,t._previousHostParent.removeChild(t._host)),e.unsubscribe())})})},t}(),VM=function(){function t(t,e,n,i,r){var o=this;this._viewportRuler=e,this._document=n,this._platform=i,this._overlayContainer=r,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this.scrollables=[],this._preferredPositions=[],this._positionChanges=new H,this._resizeSubscription=x.EMPTY,this._offsetX=0,this._offsetY=0,this._positionChangeSubscriptions=0,this._appliedPanelClasses=[],this.positionChanges=new Y(function(t){var e=o._positionChanges.subscribe(t);return o._positionChangeSubscriptions++,function(){e.unsubscribe(),o._positionChangeSubscriptions--}}),this.setOrigin(t)}return Object.defineProperty(t.prototype,"positions",{get:function(){return this._preferredPositions},enumerable:!0,configurable:!0}),t.prototype.attach=function(t){var e=this;if(this._overlayRef&&t!==this._overlayRef)throw Error("This position strategy is already attached to an overlay");this._validatePositions(),t.hostElement.classList.add("cdk-overlay-connected-position-bounding-box"),this._overlayRef=t,this._boundingBox=t.hostElement,this._pane=t.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(function(){e._isInitialRender=!0,e.apply()})},t.prototype.apply=function(){if(!(this._isDisposed||this._platform&&!this._platform.isBrowser))if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)this.reapplyLastPosition();else{this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect();for(var t,e=this._originRect,n=this._overlayRect,i=this._viewportRect,r=[],o=0,a=this._preferredPositions;oh&&(h=g,d=m)}return this._isPushed=!1,void this._applyPosition(d.position,d.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(t.position,t.originPoint);this._applyPosition(t.position,t.originPoint)}},t.prototype.detach=function(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()},t.prototype.dispose=function(){this._isDisposed||(this._boundingBox&&BM(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove("cdk-overlay-connected-position-bounding-box"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)},t.prototype.reapplyLastPosition=function(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();var t=this._lastPosition||this._preferredPositions[0],e=this._getOriginPoint(this._originRect,t);this._applyPosition(t,e)}},t.prototype.withScrollableContainers=function(t){return this.scrollables=t,this},t.prototype.withPositions=function(t){return this._preferredPositions=t,-1===t.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this},t.prototype.withViewportMargin=function(t){return this._viewportMargin=t,this},t.prototype.withFlexibleDimensions=function(t){return void 0===t&&(t=!0),this._hasFlexibleDimensions=t,this},t.prototype.withGrowAfterOpen=function(t){return void 0===t&&(t=!0),this._growAfterOpen=t,this},t.prototype.withPush=function(t){return void 0===t&&(t=!0),this._canPush=t,this},t.prototype.withLockedPosition=function(t){return void 0===t&&(t=!0),this._positionLocked=t,this},t.prototype.setOrigin=function(t){return this._origin=t,this},t.prototype.withDefaultOffsetX=function(t){return this._offsetX=t,this},t.prototype.withDefaultOffsetY=function(t){return this._offsetY=t,this},t.prototype.withTransformOriginOn=function(t){return this._transformOriginSelector=t,this},t.prototype._getOriginPoint=function(t,e){var n;if("center"==e.originX)n=t.left+t.width/2;else{var i=this._isRtl()?t.right:t.left,r=this._isRtl()?t.left:t.right;n="start"==e.originX?i:r}return{x:n,y:"center"==e.originY?t.top+t.height/2:"top"==e.originY?t.top:t.bottom}},t.prototype._getOverlayPoint=function(t,e,n){var i;return i="center"==n.overlayX?-e.width/2:"start"===n.overlayX?this._isRtl()?-e.width:0:this._isRtl()?0:-e.width,{x:t.x+i,y:t.y+("center"==n.overlayY?-e.height/2:"top"==n.overlayY?0:-e.height)}},t.prototype._getOverlayFit=function(t,e,n,i){var r=t.x,o=t.y,a=this._getOffset(i,"x"),l=this._getOffset(i,"y");a&&(r+=a),l&&(o+=l);var s=0-o,u=o+e.height-n.height,c=this._subtractOverflows(e.width,0-r,r+e.width-n.width),d=this._subtractOverflows(e.height,s,u),h=c*d;return{visibleArea:h,isCompletelyWithinViewport:e.width*e.height===h,fitsInViewportVertically:d===e.height,fitsInViewportHorizontally:c==e.width}},t.prototype._canFitWithFlexibleDimensions=function(t,e,n){if(this._hasFlexibleDimensions){var i=n.bottom-e.y,r=n.right-e.x,o=this._overlayRef.getConfig().minHeight,a=this._overlayRef.getConfig().minWidth;return(t.fitsInViewportVertically||null!=o&&o<=i)&&(t.fitsInViewportHorizontally||null!=a&&a<=r)}},t.prototype._pushOverlayOnScreen=function(t,e,n){if(this._previousPushAmount&&this._positionLocked)return{x:t.x+this._previousPushAmount.x,y:t.y+this._previousPushAmount.y};var i,r,o=this._viewportRect,a=Math.max(t.x+e.width-o.right,0),l=Math.max(t.y+e.height-o.bottom,0),s=Math.max(o.top-n.top-t.y,0),u=Math.max(o.left-n.left-t.x,0);return this._previousPushAmount={x:i=e.width<=o.width?u||-a:t.x0){var n=this._getScrollVisibility(),i=new IM(t,n);this._positionChanges.next(i)}this._isInitialRender=!1},t.prototype._setTransformOrigin=function(t){if(this._transformOriginSelector){var e,n=this._boundingBox.querySelectorAll(this._transformOriginSelector),i=t.overlayY;e="center"===t.overlayX?"center":this._isRtl()?"start"===t.overlayX?"right":"left":"start"===t.overlayX?"left":"right";for(var r=0;rd&&!this._isInitialRender&&!this._growAfterOpen&&(i=t.y-d/2)}if("end"===e.overlayX&&!u||"start"===e.overlayX&&u)l=s.right-t.x+this._viewportMargin,o=t.x-s.left;else if("start"===e.overlayX&&!u||"end"===e.overlayX&&u)a=t.x,o=s.right-t.x;else{c=Math.min(s.right-t.x+s.left,t.x);var h=this._lastBoundingBoxSize.width;a=t.x-c,(o=2*c)>h&&!this._isInitialRender&&!this._growAfterOpen&&(a=t.x-h/2)}return{top:i,left:a,bottom:r,right:l,width:o,height:n}},t.prototype._setBoundingBoxStyles=function(t,e){var n=this._calculateBoundingBoxRect(t,e);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));var i={};if(this._hasExactPosition())i.top=i.left="0",i.bottom=i.right="",i.width=i.height="100%";else{var r=this._overlayRef.getConfig().maxHeight,o=this._overlayRef.getConfig().maxWidth;i.height=Qu(n.height),i.top=Qu(n.top),i.bottom=Qu(n.bottom),i.width=Qu(n.width),i.left=Qu(n.left),i.right=Qu(n.right),i.alignItems="center"===e.overlayX?"center":"end"===e.overlayX?"flex-end":"flex-start",i.justifyContent="center"===e.overlayY?"center":"bottom"===e.overlayY?"flex-end":"flex-start",r&&(i.maxHeight=Qu(r)),o&&(i.maxWidth=Qu(o))}this._lastBoundingBoxSize=n,BM(this._boundingBox.style,i)},t.prototype._resetBoundingBoxStyles=function(){BM(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})},t.prototype._resetOverlayElementStyles=function(){BM(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})},t.prototype._setOverlayElementStyles=function(t,e){var n={};if(this._hasExactPosition()){var i=this._viewportRuler.getViewportScrollPosition();BM(n,this._getExactOverlayY(e,t,i)),BM(n,this._getExactOverlayX(e,t,i))}else n.position="static";var r="",o=this._getOffset(e,"x"),a=this._getOffset(e,"y");o&&(r+="translateX("+o+"px) "),a&&(r+="translateY("+a+"px)"),n.transform=r.trim(),this._hasFlexibleDimensions&&this._overlayRef.getConfig().maxHeight&&(n.maxHeight=""),this._hasFlexibleDimensions&&this._overlayRef.getConfig().maxWidth&&(n.maxWidth=""),BM(this._pane.style,n)},t.prototype._getExactOverlayY=function(t,e,n){var i={top:null,bottom:null},r=this._getOverlayPoint(e,this._overlayRect,t);this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n));var o=this._overlayContainer?this._overlayContainer.getContainerElement().getBoundingClientRect().top:0;return r.y-=o,"bottom"===t.overlayY?i.bottom=this._document.documentElement.clientHeight-(r.y+this._overlayRect.height)+"px":i.top=Qu(r.y),i},t.prototype._getExactOverlayX=function(t,e,n){var i={left:null,right:null},r=this._getOverlayPoint(e,this._overlayRect,t);return this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n)),"right"==(this._isRtl()?"end"===t.overlayX?"left":"right":"end"===t.overlayX?"right":"left")?i.right=this._document.documentElement.clientWidth-(r.x+this._overlayRect.width)+"px":i.left=Qu(r.x),i},t.prototype._getScrollVisibility=function(){var t=this._getOriginRect(),e=this._pane.getBoundingClientRect(),n=this.scrollables.map(function(t){return t.getElementRef().nativeElement.getBoundingClientRect()});return{isOriginClipped:AM(t,n),isOriginOutsideView:EM(t,n),isOverlayClipped:AM(e,n),isOverlayOutsideView:EM(e,n)}},t.prototype._subtractOverflows=function(t){for(var e=[],n=1;n=0)&&(!this.maxDate||this._dateAdapter.compareDate(t,this.maxDate)<=0)},t.prototype._getDateInCurrentMonth=function(t){return t&&this._hasSameMonthAndYear(t,this.activeDate)?this._dateAdapter.getDate(t):null},t.prototype._hasSameMonthAndYear=function(t,e){return!(!t||!e||this._dateAdapter.getMonth(t)!=this._dateAdapter.getMonth(e)||this._dateAdapter.getYear(t)!=this._dateAdapter.getYear(e))},t.prototype._getValidDateOrNull=function(t){return this._dateAdapter.isDateInstance(t)&&this._dateAdapter.isValid(t)?t:null},t.prototype._isRtl=function(){return this._dir&&"rtl"===this._dir.value},t}(),aS=function(){function t(t,e,n){if(this._changeDetectorRef=t,this._dateAdapter=e,this._dir=n,this.selectedChange=new kn,this.yearSelected=new kn,this.activeDateChange=new kn,!this._dateAdapter)throw eS("DateAdapter");this._activeDate=this._dateAdapter.today()}return Object.defineProperty(t.prototype,"activeDate",{get:function(){return this._activeDate},set:function(t){var e=this._activeDate,n=this._getValidDateOrNull(this._dateAdapter.deserialize(t))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(n,this.minDate,this.maxDate),Math.floor(this._dateAdapter.getYear(e)/24)!=Math.floor(this._dateAdapter.getYear(this._activeDate)/24)&&this._init()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"selected",{get:function(){return this._selected},set:function(t){this._selected=this._getValidDateOrNull(this._dateAdapter.deserialize(t)),this._selectedYear=this._selected&&this._dateAdapter.getYear(this._selected)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"minDate",{get:function(){return this._minDate},set:function(t){this._minDate=this._getValidDateOrNull(this._dateAdapter.deserialize(t))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"maxDate",{get:function(){return this._maxDate},set:function(t){this._maxDate=this._getValidDateOrNull(this._dateAdapter.deserialize(t))},enumerable:!0,configurable:!0}),t.prototype.ngAfterContentInit=function(){this._init()},t.prototype._init=function(){var t=this;this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());var e=this._dateAdapter.getYear(this._activeDate),n=e%24;this._years=[];for(var i=0,r=[];i<24;i++)r.push(e-n+i),4==r.length&&(this._years.push(r.map(function(e){return t._createCellForYear(e)})),r=[]);this._changeDetectorRef.markForCheck()},t.prototype._yearSelected=function(t){this.yearSelected.emit(this._dateAdapter.createDate(t,0,1));var e=this._dateAdapter.getMonth(this.activeDate),n=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(t,e,1));this.selectedChange.emit(this._dateAdapter.createDate(t,e,Math.min(this._dateAdapter.getDate(this.activeDate),n)))},t.prototype._handleCalendarBodyKeydown=function(t){var e=this._activeDate,n=this._isRtl();switch(t.keyCode){case 37:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,n?1:-1);break;case 39:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,n?-1:1);break;case 38:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case 40:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case 36:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-this._dateAdapter.getYear(this._activeDate)%24);break;case 35:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-this._dateAdapter.getYear(this._activeDate)%24-1);break;case 33:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,t.altKey?-240:-24);break;case 34:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,t.altKey?240:24);break;case 13:case 32:this._yearSelected(this._dateAdapter.getYear(this._activeDate));break;default:return}this._dateAdapter.compareDate(e,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),t.preventDefault()},t.prototype._getActiveCell=function(){return this._dateAdapter.getYear(this.activeDate)%24},t.prototype._focusActiveCell=function(){this._matCalendarBody._focusActiveCell()},t.prototype._createCellForYear=function(t){var e=this._dateAdapter.getYearName(this._dateAdapter.createDate(t,0,1));return new iS(t,e,e,this._shouldEnableYear(t))},t.prototype._shouldEnableYear=function(t){if(null==t||this.maxDate&&t>this._dateAdapter.getYear(this.maxDate)||this.minDate&&tn||t===n&&e>i}return!1},t.prototype._isYearAndMonthBeforeMinDate=function(t,e){if(this.minDate){var n=this._dateAdapter.getYear(this.minDate),i=this._dateAdapter.getMonth(this.minDate);return t=0?null:{matDatepickerMax:{max:r.max,actual:e}}},this._filterValidator=function(t){var e=r._getValidDateOrNull(r._dateAdapter.deserialize(t.value));return r._dateFilter&&e&&!r._dateFilter(e)?{matDatepickerFilter:!0}:null},this._validator=R_.compose([this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]),this._lastValueValid=!1,!this._dateAdapter)throw eS("DateAdapter");if(!this._dateFormats)throw eS("MAT_DATE_FORMATS");this._localeSubscription=e.localeChanges.subscribe(function(){r.value=r.value})}return Object.defineProperty(t.prototype,"matDatepicker",{set:function(t){var e=this;t&&(this._datepicker=t,this._datepicker._registerInput(this),this._datepickerSubscription.unsubscribe(),this._datepickerSubscription=this._datepicker._selectedChanged.subscribe(function(t){e.value=t,e._cvaOnChange(t),e._onTouched(),e.dateInput.emit(new mS(e,e._elementRef.nativeElement)),e.dateChange.emit(new mS(e,e._elementRef.nativeElement))}))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"matDatepickerFilter",{set:function(t){this._dateFilter=t,this._validatorOnChange()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this._value},set:function(t){t=this._dateAdapter.deserialize(t),this._lastValueValid=!t||this._dateAdapter.isValid(t),t=this._getValidDateOrNull(t);var e=this.value;this._value=t,this._formatValue(t),this._dateAdapter.sameDate(e,t)||this._valueChange.emit(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"min",{get:function(){return this._min},set:function(t){this._min=this._getValidDateOrNull(this._dateAdapter.deserialize(t)),this._validatorOnChange()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"max",{get:function(){return this._max},set:function(t){this._max=this._getValidDateOrNull(this._dateAdapter.deserialize(t)),this._validatorOnChange()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return!!this._disabled},set:function(t){var e=Xu(t),n=this._elementRef.nativeElement;this._disabled!==e&&(this._disabled=e,this._disabledChange.emit(e)),e&&n.blur&&n.blur()},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){this._datepickerSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this._valueChange.complete(),this._disabledChange.complete()},t.prototype.registerOnValidatorChange=function(t){this._validatorOnChange=t},t.prototype.validate=function(t){return this._validator?this._validator(t):null},t.prototype.getPopupConnectionElementRef=function(){return this.getConnectedOverlayOrigin()},t.prototype.getConnectedOverlayOrigin=function(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef},t.prototype.writeValue=function(t){this.value=t},t.prototype.registerOnChange=function(t){this._cvaOnChange=t},t.prototype.registerOnTouched=function(t){this._onTouched=t},t.prototype.setDisabledState=function(t){this.disabled=t},t.prototype._onKeydown=function(t){this._datepicker&&t.altKey&&40===t.keyCode&&!this._elementRef.nativeElement.readOnly&&(this._datepicker.open(),t.preventDefault())},t.prototype._onInput=function(t){var e=this._dateAdapter.parse(t,this._dateFormats.parse.dateInput);this._lastValueValid=!e||this._dateAdapter.isValid(e),e=this._getValidDateOrNull(e),this._dateAdapter.sameDate(e,this._value)?this._validatorOnChange():(this._value=e,this._cvaOnChange(e),this._valueChange.emit(e),this.dateInput.emit(new mS(this,this._elementRef.nativeElement)))},t.prototype._onChange=function(){this.dateChange.emit(new mS(this,this._elementRef.nativeElement))},t.prototype._getThemePalette=function(){return this._formField?this._formField.color:void 0},t.prototype._onBlur=function(){this.value&&this._formatValue(this.value),this._onTouched()},t.prototype._formatValue=function(t){this._elementRef.nativeElement.value=t?this._dateAdapter.format(t,this._dateFormats.display.dateInput):""},t.prototype._getValidDateOrNull=function(t){return this._dateAdapter.isDateInstance(t)&&this._dateAdapter.isValid(t)?t:null},t}(),yS=function(){function t(t,e,n){this._intl=t,this._changeDetectorRef=e,this._stateChanges=x.EMPTY;var i=Number(n);this.tabIndex=i||0===i?i:null}return Object.defineProperty(t.prototype,"disabled",{get:function(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled},set:function(t){this._disabled=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(t){t.datepicker&&this._watchStateChanges()},t.prototype.ngOnDestroy=function(){this._stateChanges.unsubscribe()},t.prototype.ngAfterContentInit=function(){this._watchStateChanges()},t.prototype._open=function(t){this.datepicker&&!this.disabled&&(this.datepicker.open(),t.stopPropagation())},t.prototype._watchStateChanges=function(){var t=this,e=this.datepicker?this.datepicker._disabledChange:cc(),n=this.datepicker&&this.datepicker._datepickerInput?this.datepicker._datepickerInput._disabledChange:cc(),i=this.datepicker?ht(this.datepicker.openedStream,this.datepicker.closedStream):cc();this._stateChanges.unsubscribe(),this._stateChanges=ht(this._intl.changes,e,n,i).subscribe(function(){return t._changeDetectorRef.markForCheck()})},t}(),_S=function(){return function(){}}(),vS=function(){return function(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.maxWidth="80vw",this.data=null,this.ariaDescribedBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0}}();function bS(){throw Error("Attempting to attach dialog content after content is already attached")}var xS=function(t){function e(e,n,i,r,o){var a=t.call(this)||this;return a._elementRef=e,a._focusTrapFactory=n,a._changeDetectorRef=i,a._document=r,a._config=o,a._elementFocusedBeforeDialogWasOpened=null,a._state="enter",a._animationStateChanged=new kn,a._ariaLabelledBy=null,a}return r(e,t),e.prototype.attachComponentPortal=function(t){return this._portalOutlet.hasAttached()&&bS(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(t)},e.prototype.attachTemplatePortal=function(t){return this._portalOutlet.hasAttached()&&bS(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(t)},e.prototype._trapFocus=function(){this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement)),this._config.autoFocus&&this._focusTrap.focusInitialElementWhenReady()},e.prototype._restoreFocus=function(){var t=this._elementFocusedBeforeDialogWasOpened;this._config.restoreFocus&&t&&"function"==typeof t.focus&&t.focus(),this._focusTrap&&this._focusTrap.destroy()},e.prototype._savePreviouslyFocusedElement=function(){var t=this;this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(function(){return t._elementRef.nativeElement.focus()}))},e.prototype._onAnimationDone=function(t){"enter"===t.toState?this._trapFocus():"exit"===t.toState&&this._restoreFocus(),this._animationStateChanged.emit(t)},e.prototype._onAnimationStart=function(t){this._animationStateChanged.emit(t)},e.prototype._startExitAnimation=function(){this._state="exit",this._changeDetectorRef.markForCheck()},e}(oM),wS=0,kS=function(){function t(t,e,n,i){void 0===i&&(i="mat-dialog-"+wS++);var r=this;this._overlayRef=t,this._containerInstance=e,this.id=i,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new H,this._afterClosed=new H,this._beforeClosed=new H,e._id=i,e._animationStateChanged.pipe(Cc(function(t){return"done"===t.phaseName&&"enter"===t.toState}),Ac(1)).subscribe(function(){r._afterOpened.next(),r._afterOpened.complete()}),e._animationStateChanged.pipe(Cc(function(t){return"done"===t.phaseName&&"exit"===t.toState}),Ac(1)).subscribe(function(){return r._overlayRef.dispose()}),t.detachments().subscribe(function(){r._beforeClosed.next(r._result),r._beforeClosed.complete(),r._afterClosed.next(r._result),r._afterClosed.complete(),r.componentInstance=null,r._overlayRef.dispose()}),t.keydownEvents().pipe(Cc(function(t){return t.keyCode===pc&&!r.disableClose})).subscribe(function(){return r.close()})}return t.prototype.close=function(t){var e=this;this._result=t,this._containerInstance._animationStateChanged.pipe(Cc(function(t){return"start"===t.phaseName}),Ac(1)).subscribe(function(){e._beforeClosed.next(t),e._beforeClosed.complete(),e._overlayRef.detachBackdrop()}),this._containerInstance._startExitAnimation()},t.prototype.afterOpened=function(){return this._afterOpened.asObservable()},t.prototype.afterClosed=function(){return this._afterClosed.asObservable()},t.prototype.beforeClosed=function(){return this._beforeClosed.asObservable()},t.prototype.backdropClick=function(){return this._overlayRef.backdropClick()},t.prototype.keydownEvents=function(){return this._overlayRef.keydownEvents()},t.prototype.updatePosition=function(t){var e=this._getPositionStrategy();return t&&(t.left||t.right)?t.left?e.left(t.left):e.right(t.right):e.centerHorizontally(),t&&(t.top||t.bottom)?t.top?e.top(t.top):e.bottom(t.bottom):e.centerVertically(),this._overlayRef.updatePosition(),this},t.prototype.updateSize=function(t,e){return void 0===t&&(t=""),void 0===e&&(e=""),this._getPositionStrategy().width(t).height(e),this._overlayRef.updatePosition(),this},t.prototype.addPanelClass=function(t){return this._overlayRef.addPanelClass(t),this},t.prototype.removePanelClass=function(t){return this._overlayRef.removePanelClass(t),this},t.prototype.afterOpen=function(){return this.afterOpened()},t.prototype.beforeClose=function(){return this.beforeClosed()},t.prototype._getPositionStrategy=function(){return this._overlayRef.getConfig().positionStrategy},t}(),MS=new Lt("MatDialogData"),SS=new Lt("mat-dialog-default-options"),CS=new Lt("mat-dialog-scroll-strategy");function LS(t){return function(){return t.scrollStrategies.block()}}var DS=function(){function t(t,e,n,i,r,o,a){var l=this;this._overlay=t,this._injector=e,this._location=n,this._defaultOptions=i,this._parentDialog=o,this._overlayContainer=a,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new H,this._afterOpenedAtThisLevel=new H,this._ariaHiddenElements=new Map,this.afterAllClosed=Nh(function(){return l.openDialogs.length?l._afterAllClosed:l._afterAllClosed.pipe(hc(void 0))}),this._scrollStrategy=r}return Object.defineProperty(t.prototype,"openDialogs",{get:function(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"afterOpened",{get:function(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"afterOpen",{get:function(){return this.afterOpened},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"_afterAllClosed",{get:function(){var t=this._parentDialog;return t?t._afterAllClosed:this._afterAllClosedAtThisLevel},enumerable:!0,configurable:!0}),t.prototype.open=function(t,e){var n=this;if((e=function(t,e){return o({},e,t)}(e,this._defaultOptions||new vS)).id&&this.getDialogById(e.id))throw Error('Dialog with id "'+e.id+'" exists already. The dialog id must be unique.');var i=this._createOverlay(e),r=this._attachDialogContainer(i,e),a=this._attachDialogContent(t,r,i,e);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(a),a.afterClosed().subscribe(function(){return n._removeOpenDialog(a)}),this.afterOpened.next(a),a},t.prototype.closeAll=function(){this._closeDialogs(this.openDialogs)},t.prototype.getDialogById=function(t){return this.openDialogs.find(function(e){return e.id===t})},t.prototype.ngOnDestroy=function(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()},t.prototype._createOverlay=function(t){var e=this._getOverlayConfig(t);return this._overlay.create(e)},t.prototype._getOverlayConfig=function(t){var e=new YM({positionStrategy:this._overlay.position().global(),scrollStrategy:t.scrollStrategy||this._scrollStrategy(),panelClass:t.panelClass,hasBackdrop:t.hasBackdrop,direction:t.direction,minWidth:t.minWidth,minHeight:t.minHeight,maxWidth:t.maxWidth,maxHeight:t.maxHeight,disposeOnNavigation:t.closeOnNavigation});return t.backdropClass&&(e.backdropClass=t.backdropClass),e},t.prototype._attachDialogContainer=function(t,e){var n=new uM(e&&e.viewContainerRef&&e.viewContainerRef.injector||this._injector,new WeakMap([[vS,e]])),i=new iM(xS,e.viewContainerRef,n);return t.attach(i).instance},t.prototype._attachDialogContent=function(t,e,n,i){var r=new kS(n,e,this._location,i.id);if(i.hasBackdrop&&n.backdropClick().subscribe(function(){r.disableClose||r.close()}),t instanceof Mn)e.attachTemplatePortal(new rM(t,null,{$implicit:i.data,dialogRef:r}));else{var o=this._createInjector(i,r,e),a=e.attachComponentPortal(new iM(t,void 0,o));r.componentInstance=a.instance}return r.updateSize(i.width,i.height).updatePosition(i.position),r},t.prototype._createInjector=function(t,e,n){var i=t&&t.viewContainerRef&&t.viewContainerRef.injector,r=new WeakMap([[xS,n],[MS,t.data],[kS,e]]);return!t.direction||i&&i.get(Zy,null)||r.set(Zy,{value:t.direction,change:cc()}),new uM(i||this._injector,r)},t.prototype._removeOpenDialog=function(t){var e=this.openDialogs.indexOf(t);e>-1&&(this.openDialogs.splice(e,1),this.openDialogs.length||(this._ariaHiddenElements.forEach(function(t,e){t?e.setAttribute("aria-hidden",t):e.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))},t.prototype._hideNonDialogContentFromAssistiveTechnology=function(){var t=this._overlayContainer.getContainerElement();if(t.parentElement)for(var e=t.parentElement.children,n=e.length-1;n>-1;n--){var i=e[n];i===t||"SCRIPT"===i.nodeName||"STYLE"===i.nodeName||i.hasAttribute("aria-live")||(this._ariaHiddenElements.set(i,i.getAttribute("aria-hidden")),i.setAttribute("aria-hidden","true"))}},t.prototype._closeDialogs=function(t){for(var e=t.length;e--;)t[e].close()},t}(),TS=0,ES=function(){function t(t,e,n){this.dialogRef=t,this._elementRef=e,this._dialog=n}return t.prototype.ngOnInit=function(){this.dialogRef||(this.dialogRef=YS(this._elementRef,this._dialog.openDialogs))},t.prototype.ngOnChanges=function(t){var e=t._matDialogClose||t._matDialogCloseResult;e&&(this.dialogResult=e.currentValue)},t}(),AS=function(){function t(t,e,n){this._dialogRef=t,this._elementRef=e,this._dialog=n,this.id="mat-dialog-title-"+TS++}return t.prototype.ngOnInit=function(){var t=this;this._dialogRef||(this._dialogRef=YS(this._elementRef,this._dialog.openDialogs)),this._dialogRef&&Promise.resolve().then(function(){var e=t._dialogRef._containerInstance;e&&!e._ariaLabelledBy&&(e._ariaLabelledBy=t.id)})},t}(),PS=function(){return function(){}}(),OS=function(){return function(){}}();function YS(t,e){for(var n=t.nativeElement.parentElement;n&&!n.classList.contains("mat-dialog-container");)n=n.parentElement;return n?e.find(function(t){return t.id===n.id}):null}var RS=function(){return function(){}}(),IS=Vr({encapsulation:2,styles:[".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}@media (-ms-high-contrast:active){.mat-dialog-container{outline:solid 1px}}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button+.mat-button,.mat-dialog-actions .mat-button+.mat-raised-button,.mat-dialog-actions .mat-raised-button+.mat-button,.mat-dialog-actions .mat-raised-button+.mat-raised-button{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button+.mat-button,[dir=rtl] .mat-dialog-actions .mat-button+.mat-raised-button,[dir=rtl] .mat-dialog-actions .mat-raised-button+.mat-button,[dir=rtl] .mat-dialog-actions .mat-raised-button+.mat-raised-button{margin-left:0;margin-right:8px}"],data:{animation:[{type:7,name:"dialogContainer",definitions:[{type:0,name:"void, exit",styles:{type:6,styles:{opacity:0,transform:"scale(0.7)"},offset:null},options:void 0},{type:0,name:"enter",styles:{type:6,styles:{transform:"none"},offset:null},options:void 0},{type:1,expr:"* => enter",animation:{type:4,styles:{type:6,styles:{transform:"none",opacity:1},offset:null},timings:"150ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void, * => exit",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"75ms cubic-bezier(0.4, 0.0, 0.2, 1)"},options:null}],options:{}}]}});function FS(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function zS(t){return Ia(0,[wa(402653184,1,{_portalOutlet:0}),(t()(),go(16777216,null,null,1,null,FS)),oa(2,212992,[[1,4]],0,lM,[Fe,Xi],{portal:[0,"portal"]},null)],function(t,e){t(e,2,0,"")},null)}function jS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-dialog-container",[["aria-modal","true"],["class","mat-dialog-container"],["tabindex","-1"]],[[1,"id",0],[1,"role",0],[1,"aria-labelledby",0],[1,"aria-label",0],[1,"aria-describedby",0],[40,"@dialogContainer",0]],[["component","@dialogContainer.start"],["component","@dialogContainer.done"]],function(t,e,n){var i=!0;return"component:@dialogContainer.start"===e&&(i=!1!==Go(t,1)._onAnimationStart(n)&&i),"component:@dialogContainer.done"===e&&(i=!1!==Go(t,1)._onAnimationDone(n)&&i),i},zS,IS)),oa(1,49152,null,0,xS,[Ve,Gc,Zi,[2,As],vS],null,null)],null,function(t,e){t(e,0,0,Go(e,1)._id,Go(e,1)._config.role,Go(e,1)._config.ariaLabel?null:Go(e,1)._ariaLabelledBy,Go(e,1)._config.ariaLabel,Go(e,1)._config.ariaDescribedBy||null,Go(e,1)._state)})}var HS=Ro("mat-dialog-container",xS,jS,{},{},[]),NS=Vr({encapsulation:2,styles:[],data:{}});function VS(t){return Ia(2,[(t()(),yo(0,0,null,null,12,"div",[["class","mat-calendar-header"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,11,"div",[["class","mat-calendar-controls"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,4,"button",[["cdkAriaLive","polite"],["class","mat-calendar-period-button"],["mat-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.currentPeriodClicked()&&i),i},Nk,Hk)),oa(3,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),oa(4,147456,null,0,Zc,[Ve,Kc,cb,Mi],{politeness:[0,"politeness"]},null),(t()(),Oa(5,0,["",""])),(t()(),yo(6,0,null,0,0,"div",[["class","mat-calendar-arrow"]],[[2,"mat-calendar-invert",null]],null,null,null,null)),(t()(),yo(7,0,null,null,0,"div",[["class","mat-calendar-spacer"]],null,null,null,null,null)),La(null,0),(t()(),yo(9,0,null,null,1,"button",[["class","mat-calendar-previous-button"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.previousClicked()&&i),i},Nk,Hk)),oa(10,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),(t()(),yo(11,0,null,null,1,"button",[["class","mat-calendar-next-button"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.nextClicked()&&i),i},Nk,Hk)),oa(12,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null)],function(t,e){var n=e.component;t(e,4,0,"polite"),t(e,10,0,!n.previousEnabled()),t(e,12,0,!n.nextEnabled())},function(t,e){var n=e.component;t(e,2,0,n.periodButtonLabel,Go(e,3).disabled||null,"NoopAnimations"===Go(e,3)._animationMode),t(e,5,0,n.periodButtonText),t(e,6,0,"month"!=n.calendar.currentView),t(e,9,0,n.prevButtonLabel,Go(e,10).disabled||null,"NoopAnimations"===Go(e,10)._animationMode),t(e,11,0,n.nextButtonLabel,Go(e,12).disabled||null,"NoopAnimations"===Go(e,12)._animationMode)})}function BS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-calendar-header",[],null,null,null,VS,NS)),oa(1,49152,null,0,sS,[nS,uS,[2,dd],[2,hd],Zi],null,null)],null,null)}var WS=Ro("mat-calendar-header",sS,BS,{},{},["*"]),US=Vr({encapsulation:2,styles:[".mat-calendar{display:block}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:0}.mat-calendar-controls{display:flex;margin:5% calc(33% / 7 - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0}.mat-calendar-arrow{display:inline-block;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top-width:5px;border-top-style:solid;margin:0 0 0 5px;vertical-align:middle}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.mat-calendar-next-button,.mat-calendar-previous-button{position:relative}.mat-calendar-next-button::after,.mat-calendar-previous-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:'';margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-next-button,[dir=rtl] .mat-calendar-previous-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:'';position:absolute;top:0;left:-8px;right:-8px;height:1px}"],data:{}});function GS(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function qS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-month-view",[],null,[[null,"activeDateChange"],[null,"selectedChange"],[null,"_userSelection"]],function(t,e,n){var i=!0,r=t.component;return"activeDateChange"===e&&(i=!1!==(r.activeDate=n)&&i),"selectedChange"===e&&(i=!1!==r._dateSelected(n)&&i),"_userSelection"===e&&(i=!1!==r._userSelected()&&i),i},fC,hC)),oa(1,1097728,[[1,4]],0,oS,[Zi,[2,hd],[2,dd],[2,Zy]],{activeDate:[0,"activeDate"],selected:[1,"selected"],minDate:[2,"minDate"],maxDate:[3,"maxDate"],dateFilter:[4,"dateFilter"],dateClass:[5,"dateClass"]},{selectedChange:"selectedChange",_userSelection:"_userSelection",activeDateChange:"activeDateChange"})],function(t,e){var n=e.component;t(e,1,0,n.activeDate,n.selected,n.minDate,n.maxDate,n.dateFilter,n.dateClass)},null)}function XS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-year-view",[],null,[[null,"activeDateChange"],[null,"monthSelected"],[null,"selectedChange"]],function(t,e,n){var i=!0,r=t.component;return"activeDateChange"===e&&(i=!1!==(r.activeDate=n)&&i),"monthSelected"===e&&(i=!1!==r._monthSelectedInYearView(n)&&i),"selectedChange"===e&&(i=!1!==r._goToDateInView(n,"month")&&i),i},gC,mC)),oa(1,1097728,[[2,4]],0,lS,[Zi,[2,hd],[2,dd],[2,Zy]],{activeDate:[0,"activeDate"],selected:[1,"selected"],minDate:[2,"minDate"],maxDate:[3,"maxDate"],dateFilter:[4,"dateFilter"]},{selectedChange:"selectedChange",monthSelected:"monthSelected",activeDateChange:"activeDateChange"})],function(t,e){var n=e.component;t(e,1,0,n.activeDate,n.selected,n.minDate,n.maxDate,n.dateFilter)},null)}function KS(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-multi-year-view",[],null,[[null,"activeDateChange"],[null,"yearSelected"],[null,"selectedChange"]],function(t,e,n){var i=!0,r=t.component;return"activeDateChange"===e&&(i=!1!==(r.activeDate=n)&&i),"yearSelected"===e&&(i=!1!==r._yearSelectedInMultiYearView(n)&&i),"selectedChange"===e&&(i=!1!==r._goToDateInView(n,"year")&&i),i},_C,yC)),oa(1,1097728,[[3,4]],0,aS,[Zi,[2,dd],[2,Zy]],{activeDate:[0,"activeDate"],selected:[1,"selected"],minDate:[2,"minDate"],maxDate:[3,"maxDate"],dateFilter:[4,"dateFilter"]},{selectedChange:"selectedChange",yearSelected:"yearSelected",activeDateChange:"activeDateChange"})],function(t,e){var n=e.component;t(e,1,0,n.activeDate,n.selected,n.minDate,n.maxDate,n.dateFilter)},null)}function ZS(t){return Ia(2,[wa(671088640,1,{monthView:0}),wa(671088640,2,{yearView:0}),wa(671088640,3,{multiYearView:0}),(t()(),go(16777216,null,null,1,null,GS)),oa(4,212992,null,0,lM,[Fe,Xi],{portal:[0,"portal"]},null),(t()(),yo(5,0,null,null,8,"div",[["cdkMonitorSubtreeFocus",""],["class","mat-calendar-content"],["tabindex","-1"]],null,null,null,null,null)),oa(6,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),oa(7,147456,null,0,td,[Ve,$c],null,null),(t()(),go(16777216,null,null,1,null,qS)),oa(9,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,XS)),oa(11,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,KS)),oa(13,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){var n=e.component;t(e,4,0,n._calendarHeaderPortal),t(e,6,0,n.currentView),t(e,9,0,"month"),t(e,11,0,"year"),t(e,13,0,"multi-year")},null)}var JS=Vr({encapsulation:2,styles:[".mat-calendar-body{min-width:224px}.mat-calendar-body-label{height:0;line-height:0;text-align:left;padding-left:4.71429%;padding-right:4.71429%}.mat-calendar-body-cell{position:relative;height:0;line-height:0;text-align:center;outline:0;cursor:pointer}.mat-calendar-body-disabled{cursor:default}.mat-calendar-body-cell-content{position:absolute;top:5%;left:5%;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px}@media (-ms-high-contrast:active){.mat-calendar-body-cell-content{border:none}}@media (-ms-high-contrast:active){.mat-calendar-body-selected,.mat-datepicker-popup:not(:empty){outline:solid 1px}.mat-calendar-body-today{outline:dotted 1px}}[dir=rtl] .mat-calendar-body-label{text-align:right}"],data:{}});function QS(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["aria-hidden","true"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,1,"td",[["class","mat-calendar-body-label"]],[[1,"colspan",0],[4,"paddingTop",null],[4,"paddingBottom",null]],null,null,null,null)),(t()(),Oa(2,null,["",""]))],null,function(t,e){var n=e.component;t(e,1,0,n.numCols,n._cellPadding,n._cellPadding),t(e,2,0,n.label)})}function $S(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"td",[["aria-hidden","true"],["class","mat-calendar-body-label"]],[[1,"colspan",0],[4,"paddingTop",null],[4,"paddingBottom",null]],null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){var n=e.component;t(e,0,0,n._firstRowOffset,n._cellPadding,n._cellPadding),t(e,1,0,n._firstRowOffset>=n.labelMinRequiredCells?n.label:"")})}function tC(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-calendar-body-cell"],["role","gridcell"]],[[8,"tabIndex",0],[2,"mat-calendar-body-disabled",null],[2,"mat-calendar-body-active",null],[1,"aria-label",0],[1,"aria-disabled",0],[1,"aria-selected",0],[4,"width",null],[4,"paddingTop",null],[4,"paddingBottom",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component._cellClicked(t.context.$implicit)&&i),i},null,null)),oa(1,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(t()(),yo(2,0,null,null,1,"div",[["class","mat-calendar-body-cell-content"]],[[2,"mat-calendar-body-selected",null],[2,"mat-calendar-body-today",null]],null,null,null,null)),(t()(),Oa(3,null,["",""]))],function(t,e){t(e,1,0,"mat-calendar-body-cell",e.context.$implicit.cssClasses)},function(t,e){var n=e.component;t(e,0,0,n._isActiveCell(e.parent.context.index,e.context.index)?0:-1,!e.context.$implicit.enabled,n._isActiveCell(e.parent.context.index,e.context.index),e.context.$implicit.ariaLabel,!e.context.$implicit.enabled||null,n.selectedValue===e.context.$implicit.value,n._cellWidth,n._cellPadding,n._cellPadding),t(e,2,0,n.selectedValue===e.context.$implicit.value,n.todayValue===e.context.$implicit.value),t(e,3,0,e.context.$implicit.displayValue)})}function eC(t){return Ia(0,[(t()(),yo(0,0,null,null,4,"tr",[["role","row"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,$S)),oa(2,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,tC)),oa(4,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null)],function(t,e){t(e,2,0,0===e.context.index&&e.component._firstRowOffset),t(e,4,0,e.context.$implicit)},null)}function nC(t){return Ia(2,[(t()(),go(16777216,null,null,1,null,QS)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,eC)),oa(3,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null)],function(t,e){var n=e.component;t(e,1,0,n._firstRowOffset enter",animation:{type:4,styles:{type:6,styles:{opacity:1,transform:"scale(1, 1)"},offset:null},timings:"120ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"100ms linear"},options:null}],options:{}},{type:7,name:"fadeInCalendar",definitions:[{type:0,name:"void",styles:{type:6,styles:{opacity:0},offset:null},options:void 0},{type:0,name:"enter",styles:{type:6,styles:{opacity:1},offset:null},options:void 0},{type:1,expr:"void => *",animation:{type:4,styles:null,timings:"120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"},options:null}],options:{}}]}});function rC(t){return Ia(2,[wa(402653184,1,{_calendar:0}),(t()(),yo(1,0,null,null,3,"mat-calendar",[["cdkTrapFocus",""],["class","mat-calendar"]],[[8,"id",0],[24,"@fadeInCalendar",0]],[[null,"selectedChange"],[null,"yearSelected"],[null,"monthSelected"],[null,"_userSelection"]],function(t,e,n){var i=!0,r=t.component;return"selectedChange"===e&&(i=!1!==r.datepicker.select(n)&&i),"yearSelected"===e&&(i=!1!==r.datepicker._selectYear(n)&&i),"monthSelected"===e&&(i=!1!==r.datepicker._selectMonth(n)&&i),"_userSelection"===e&&(i=!1!==r.datepicker.close()&&i),i},ZS,US)),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),oa(3,1458176,null,0,qc,[Ve,Gc,As],{enabled:[0,"enabled"]},null),oa(4,10141696,[[1,4]],0,uS,[nS,[2,dd],[2,hd],Zi],{headerComponent:[0,"headerComponent"],startAt:[1,"startAt"],startView:[2,"startView"],selected:[3,"selected"],minDate:[4,"minDate"],maxDate:[5,"maxDate"],dateFilter:[6,"dateFilter"],dateClass:[7,"dateClass"]},{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",_userSelection:"_userSelection"})],function(t,e){var n=e.component;t(e,2,0,n.datepicker.panelClass),t(e,3,0,""),t(e,4,0,n.datepicker.calendarHeaderComponent,n.datepicker.startAt,n.datepicker.startView,n.datepicker._selected,n.datepicker._minDate,n.datepicker._maxDate,n.datepicker._dateFilter,n.datepicker.dateClass)},function(t,e){t(e,1,0,e.component.datepicker.id,"enter")})}function oC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-datepicker-content",[["class","mat-datepicker-content"]],[[40,"@transformPanel",0],[2,"mat-datepicker-content-touch",null]],null,null,rC,iC)),oa(1,4243456,null,0,pS,[Ve],null,null)],null,function(t,e){t(e,0,0,"enter",Go(e,1).datepicker.touchUi)})}var aC=Ro("mat-datepicker-content",pS,oC,{color:"color"},{},[]),lC=Vr({encapsulation:2,styles:[],data:{}});function sC(t){return Ia(2,[],null,null)}var uC=Vr({encapsulation:2,styles:[".mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-datepicker-toggle-default-icon{display:block;width:1.5em;height:1.5em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-datepicker-toggle-default-icon{margin:auto}"],data:{}});function cC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,":svg:svg",[["class","mat-datepicker-toggle-default-icon"],["fill","currentColor"],["focusable","false"],["height","24px"],["viewBox","0 0 24 24"],["width","24px"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,0,":svg:path",[["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],null,null,null,null,null))],null,null)}function dC(t){return Ia(2,[wa(402653184,1,{_button:0}),(t()(),yo(1,0,null,null,4,"button",[["aria-haspopup","true"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[1,"tabindex",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component._open(n)&&i),i},Nk,Hk)),oa(2,180224,[[1,4],["button",4]],0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],disableRipple:[1,"disableRipple"]},null),(t()(),go(16777216,null,0,1,null,cC)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),La(0,0)],function(t,e){var n=e.component;t(e,2,0,n.disabled,n.disableRipple),t(e,4,0,!n._customIcon)},function(t,e){var n=e.component;t(e,1,0,n._intl.openCalendarLabel,n.disabled?-1:n.tabIndex,Go(e,2).disabled||null,"NoopAnimations"===Go(e,2)._animationMode)})}var hC=Vr({encapsulation:2,styles:[],data:{}});function pC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[],[[1,"aria-label",0]],null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,0,0,e.context.$implicit.long),t(e,1,0,e.context.$implicit.narrow)})}function fC(t){return Ia(2,[wa(402653184,1,{_matCalendarBody:0}),(t()(),yo(1,0,null,null,8,"table",[["class","mat-calendar-table"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,5,"thead",[["class","mat-calendar-table-header"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,2,"tr",[],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,pC)),oa(5,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(6,0,null,null,1,"tr",[],null,null,null,null,null)),(t()(),yo(7,0,null,null,0,"th",[["aria-hidden","true"],["class","mat-calendar-table-header-divider"],["colspan","7"]],null,null,null,null,null)),(t()(),yo(8,0,null,null,1,"tbody",[["aria-readonly","true"],["class","mat-calendar-body"],["mat-calendar-body",""],["role","grid"]],null,[[null,"selectedValueChange"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"selectedValueChange"===e&&(i=!1!==r._dateSelected(n)&&i),"keydown"===e&&(i=!1!==r._handleCalendarBodyKeydown(n)&&i),i},nC,JS)),oa(9,573440,[[1,4]],0,rS,[Ve,Mi],{label:[0,"label"],rows:[1,"rows"],todayValue:[2,"todayValue"],selectedValue:[3,"selectedValue"],labelMinRequiredCells:[4,"labelMinRequiredCells"],activeCell:[5,"activeCell"]},{selectedValueChange:"selectedValueChange"})],function(t,e){var n=e.component;t(e,5,0,n._weekdays),t(e,9,0,n._monthLabel,n._weeks,n._todayDate,n._selectedDate,3,n._dateAdapter.getDate(n.activeDate)-1)},null)}var mC=Vr({encapsulation:2,styles:[],data:{}});function gC(t){return Ia(2,[wa(402653184,1,{_matCalendarBody:0}),(t()(),yo(1,0,null,null,5,"table",[["class","mat-calendar-table"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,2,"thead",[["class","mat-calendar-table-header"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,1,"tr",[],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,"th",[["class","mat-calendar-table-header-divider"],["colspan","4"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,1,"tbody",[["aria-readonly","true"],["class","mat-calendar-body"],["mat-calendar-body",""],["role","grid"]],null,[[null,"selectedValueChange"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"selectedValueChange"===e&&(i=!1!==r._monthSelected(n)&&i),"keydown"===e&&(i=!1!==r._handleCalendarBodyKeydown(n)&&i),i},nC,JS)),oa(6,573440,[[1,4]],0,rS,[Ve,Mi],{label:[0,"label"],rows:[1,"rows"],todayValue:[2,"todayValue"],selectedValue:[3,"selectedValue"],labelMinRequiredCells:[4,"labelMinRequiredCells"],numCols:[5,"numCols"],activeCell:[6,"activeCell"],cellAspectRatio:[7,"cellAspectRatio"]},{selectedValueChange:"selectedValueChange"})],function(t,e){var n=e.component;t(e,6,0,n._yearLabel,n._months,n._todayMonth,n._selectedMonth,2,4,n._dateAdapter.getMonth(n.activeDate),4/7)},null)}var yC=Vr({encapsulation:2,styles:[],data:{}});function _C(t){return Ia(2,[wa(402653184,1,{_matCalendarBody:0}),(t()(),yo(1,0,null,null,5,"table",[["class","mat-calendar-table"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,2,"thead",[["class","mat-calendar-table-header"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,1,"tr",[],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,"th",[["class","mat-calendar-table-header-divider"],["colspan","4"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,1,"tbody",[["aria-readonly","true"],["class","mat-calendar-body"],["mat-calendar-body",""],["role","grid"]],null,[[null,"selectedValueChange"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"selectedValueChange"===e&&(i=!1!==r._yearSelected(n)&&i),"keydown"===e&&(i=!1!==r._handleCalendarBodyKeydown(n)&&i),i},nC,JS)),oa(6,573440,[[1,4]],0,rS,[Ve,Mi],{rows:[0,"rows"],todayValue:[1,"todayValue"],selectedValue:[2,"selectedValue"],numCols:[3,"numCols"],activeCell:[4,"activeCell"],cellAspectRatio:[5,"cellAspectRatio"]},{selectedValueChange:"selectedValueChange"})],function(t,e){var n=e.component;t(e,6,0,n._years,n._todayYear,n._selectedYear,4,n._getActiveCell(),4/7)},null)}var vC=function(){function t(t,e){this.delay=t,this.scheduler=e}return t.prototype.call=function(t,e){return e.subscribe(new bC(t,this.delay,this.scheduler))},t}(),bC=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.delay=n,r.scheduler=i,r.queue=[],r.active=!1,r.errored=!1,r}return r(e,t),e.dispatch=function(t){for(var e=t.source,n=e.queue,i=t.scheduler,r=t.destination;n.length>0&&n[0].time-i.now()<=0;)n.shift().notification.observe(r);if(n.length>0){var o=Math.max(0,n[0].time-i.now());this.schedule(t,o)}else this.unsubscribe(),e.active=!1},e.prototype._schedule=function(t){this.active=!0,this.destination.add(t.schedule(e.dispatch,this.delay,{source:this,destination:this.destination,scheduler:t}))},e.prototype.scheduleNotification=function(t){if(!0!==this.errored){var e=this.scheduler,n=new xC(e.now()+this.delay,t);this.queue.push(n),!1===this.active&&this._schedule(e)}},e.prototype._next=function(t){this.scheduleNotification(mM.createNext(t))},e.prototype._error=function(t){this.errored=!0,this.queue=[],this.destination.error(t),this.unsubscribe()},e.prototype._complete=function(){this.scheduleNotification(mM.createComplete()),this.unsubscribe()},e}(D),xC=function(){return function(t,e){this.time=t,this.notification=e}}(),wC=0,kC=function(){return function(t,e){this.source=t,this.option=e}}(),MC=ad(function(){return function(){}}()),SC=new Lt("mat-autocomplete-default-options",{providedIn:"root",factory:function(){return{autoActiveFirstOption:!1}}}),CC=function(t){function e(e,n,i){var r=t.call(this)||this;return r._changeDetectorRef=e,r._elementRef=n,r.showPanel=!1,r._isOpen=!1,r.displayWith=null,r.optionSelected=new kn,r.opened=new kn,r.closed=new kn,r._classList={},r.id="mat-autocomplete-"+wC++,r._autoActiveFirstOption=!!i.autoActiveFirstOption,r}return r(e,t),Object.defineProperty(e.prototype,"isOpen",{get:function(){return this._isOpen&&this.showPanel},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"autoActiveFirstOption",{get:function(){return this._autoActiveFirstOption},set:function(t){this._autoActiveFirstOption=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"classList",{set:function(t){var e=this;t&&t.length&&(t.split(" ").forEach(function(t){return e._classList[t.trim()]=!0}),this._elementRef.nativeElement.className="")},enumerable:!0,configurable:!0}),e.prototype.ngAfterContentInit=function(){this._keyManager=new Hc(this.options).withWrap(),this._setVisibility()},e.prototype._setScrollTop=function(t){this.panel&&(this.panel.nativeElement.scrollTop=t)},e.prototype._getScrollTop=function(){return this.panel?this.panel.nativeElement.scrollTop:0},e.prototype._setVisibility=function(){this.showPanel=!!this.options.length,this._classList["mat-autocomplete-visible"]=this.showPanel,this._classList["mat-autocomplete-hidden"]=!this.showPanel,this._changeDetectorRef.markForCheck()},e.prototype._emitSelectEvent=function(t){var e=new kC(this,t);this.optionSelected.emit(e)},e}(MC),LC=new Lt("mat-autocomplete-scroll-strategy");function DC(t){return function(){return t.scrollStrategies.reposition()}}var TC=function(){function t(t,e,n,i,r,o,a,l,s,u){var c=this;this._element=t,this._overlay=e,this._viewContainerRef=n,this._zone=i,this._changeDetectorRef=r,this._dir=a,this._formField=l,this._document=s,this._viewportRuler=u,this._componentDestroyed=!1,this._autocompleteDisabled=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=x.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new H,this._windowBlurHandler=function(){c._canOpenOnNextFocus=document.activeElement!==c._element.nativeElement||c.panelOpen},this._onChange=function(){},this._onTouched=function(){},this.autocompleteAttribute="off",this._overlayAttached=!1,this.optionSelections=Nh(function(){return c.autocomplete&&c.autocomplete.options?ht.apply(void 0,c.autocomplete.options.map(function(t){return t.onSelectionChange})):c._zone.onStable.asObservable().pipe(Ac(1),ip(function(){return c.optionSelections}))}),"undefined"!=typeof window&&i.runOutsideAngular(function(){window.addEventListener("blur",c._windowBlurHandler)}),this._scrollStrategy=o}return Object.defineProperty(t.prototype,"autocompleteDisabled",{get:function(){return this._autocompleteDisabled},set:function(t){this._autocompleteDisabled=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){"undefined"!=typeof window&&window.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete()},Object.defineProperty(t.prototype,"panelOpen",{get:function(){return this._overlayAttached&&this.autocomplete.showPanel},enumerable:!0,configurable:!0}),t.prototype.openPanel=function(){this._attachOverlay(),this._floatLabel()},t.prototype.closePanel=function(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this.autocomplete.closed.emit(),this.autocomplete._isOpen=this._overlayAttached=!1,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._componentDestroyed||this._changeDetectorRef.detectChanges())},t.prototype.updatePosition=function(){this._overlayAttached&&this._overlayRef.updatePosition()},Object.defineProperty(t.prototype,"panelClosingActions",{get:function(){var t=this;return ht(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe(Cc(function(){return t._overlayAttached})),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe(Cc(function(){return t._overlayAttached})):cc()).pipe(nt(function(t){return t instanceof Rd?t:null}))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activeOption",{get:function(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null},enumerable:!0,configurable:!0}),t.prototype._getOutsideClickStream=function(){var t=this;return this._document?ht(pg(this._document,"click"),pg(this._document,"touchend")).pipe(Cc(function(e){var n=e.target,i=t._formField?t._formField._elementRef.nativeElement:null;return t._overlayAttached&&n!==t._element.nativeElement&&(!i||!i.contains(n))&&!!t._overlayRef&&!t._overlayRef.overlayElement.contains(n)})):cc(null)},t.prototype.writeValue=function(t){var e=this;Promise.resolve(null).then(function(){return e._setTriggerValue(t)})},t.prototype.registerOnChange=function(t){this._onChange=t},t.prototype.registerOnTouched=function(t){this._onTouched=t},t.prototype.setDisabledState=function(t){this._element.nativeElement.disabled=t},t.prototype._handleKeydown=function(t){var e=t.keyCode;if(e===pc&&t.preventDefault(),this.activeOption&&13===e&&this.panelOpen)this.activeOption._selectViaInteraction(),this._resetActiveItem(),t.preventDefault();else if(this.autocomplete){var n=this.autocomplete._keyManager.activeItem,i=38===e||40===e;this.panelOpen||9===e?this.autocomplete._keyManager.onKeydown(t):i&&this._canOpen()&&this.openPanel(),(i||this.autocomplete._keyManager.activeItem!==n)&&this._scrollToOption()}},t.prototype._handleInput=function(t){var e=t.target,n=e.value;"number"===e.type&&(n=""==n?null:parseFloat(n)),this._previousValue!==n&&(this._previousValue=n,this._onChange(n),this._canOpen()&&document.activeElement===t.target&&this.openPanel())},t.prototype._handleFocus=function(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(),this._floatLabel(!0)):this._canOpenOnNextFocus=!0},t.prototype._floatLabel=function(t){void 0===t&&(t=!1),this._formField&&"auto"===this._formField.floatLabel&&(t?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)},t.prototype._resetLabel=function(){this._manuallyFloatingLabel&&(this._formField.floatLabel="auto",this._manuallyFloatingLabel=!1)},t.prototype._scrollToOption=function(){var t=this.autocomplete._keyManager.activeItemIndex||0,e=jd(t+zd(t,this.autocomplete.options,this.autocomplete.optionGroups),48,this.autocomplete._getScrollTop(),256);this.autocomplete._setScrollTop(e)},t.prototype._subscribeToClosingActions=function(){var t=this;return ht(this._zone.onStable.asObservable().pipe(Ac(1)),this.autocomplete.options.changes.pipe(mc(function(){return t._positionStrategy.reapplyLastPosition()}),function(t,e){void 0===e&&(e=xc);var n=0 instanceof Date&&!isNaN(0)?0-e.now():Math.abs(0);return function(t){return t.lift(new vC(n,e))}}())).pipe(ip(function(){return t._resetActiveItem(),t.autocomplete._setVisibility(),t.panelOpen&&t._overlayRef.updatePosition(),t.panelClosingActions}),Ac(1)).subscribe(function(e){return t._setValueAndClose(e)})},t.prototype._destroyPanel=function(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)},t.prototype._setTriggerValue=function(t){var e=this.autocomplete&&this.autocomplete.displayWith?this.autocomplete.displayWith(t):t,n=null!=e?e:"";this._formField?this._formField._control.value=n:this._element.nativeElement.value=n,this._previousValue=n},t.prototype._setValueAndClose=function(t){t&&t.source&&(this._clearPreviousSelectedOption(t.source),this._setTriggerValue(t.source.value),this._onChange(t.source.value),this._element.nativeElement.focus(),this.autocomplete._emitSelectEvent(t.source)),this.closePanel()},t.prototype._clearPreviousSelectedOption=function(t){this.autocomplete.options.forEach(function(e){e!=t&&e.selected&&e.deselect()})},t.prototype._attachOverlay=function(){var t=this;if(!this.autocomplete)throw Error("Attempting to open an undefined instance of `mat-autocomplete`. Make sure that the id passed to the `matAutocomplete` is correct and that you're attempting to open it after the ngAfterContentInit hook.");var e=this._overlayRef;e?(e.getConfig().positionStrategy.setOrigin(this._getConnectedElement()),e.updateSize({width:this._getPanelWidth()})):(this._portal=new rM(this.autocomplete.template,this._viewContainerRef),e=this._overlay.create(this._getOverlayConfig()),this._overlayRef=e,e.keydownEvents().subscribe(function(e){(e.keyCode===pc||38===e.keyCode&&e.altKey)&&(t._resetActiveItem(),t._closeKeyEventStream.next())}),this._viewportRuler&&(this._viewportSubscription=this._viewportRuler.change().subscribe(function(){t.panelOpen&&e&&e.updateSize({width:t._getPanelWidth()})}))),e&&!e.hasAttached()&&(e.attach(this._portal),this._closingActionsSubscription=this._subscribeToClosingActions());var n=this.panelOpen;this.autocomplete._setVisibility(),this.autocomplete._isOpen=this._overlayAttached=!0,this.panelOpen&&n!==this.panelOpen&&this.autocomplete.opened.emit()},t.prototype._getOverlayConfig=function(){return new YM({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir})},t.prototype._getOverlayPosition=function(){return this._positionStrategy=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1).withPositions([{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-autocomplete-panel-above"}]),this._positionStrategy},t.prototype._getConnectedElement=function(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element},t.prototype._getPanelWidth=function(){return this.autocomplete.panelWidth||this._getHostWidth()},t.prototype._getHostWidth=function(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width},t.prototype._resetActiveItem=function(){this.autocomplete._keyManager.setActiveItem(this.autocomplete.autoActiveFirstOption?0:-1)},t.prototype._canOpen=function(){var t=this._element.nativeElement;return!t.readOnly&&!t.disabled&&!this._autocompleteDisabled},t}(),EC=function(){return function(){}}(),AC=Vr({encapsulation:2,styles:[".mat-autocomplete-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;visibility:hidden;max-width:none;max-height:256px;position:relative;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mat-autocomplete-panel.mat-autocomplete-visible{visibility:visible}.mat-autocomplete-panel.mat-autocomplete-hidden{visibility:hidden}.mat-autocomplete-panel-above .mat-autocomplete-panel{border-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.mat-autocomplete-panel .mat-divider-horizontal{margin-top:-1px}@media (-ms-high-contrast:active){.mat-autocomplete-panel{outline:solid 1px}}"],data:{}});function PC(t){return Ia(0,[(t()(),yo(0,0,[[2,0],["panel",1]],null,2,"div",[["class","mat-autocomplete-panel"],["role","listbox"]],[[8,"id",0]],null,null,null,null)),oa(1,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),La(null,0)],function(t,e){t(e,1,0,"mat-autocomplete-panel",e.component._classList)},function(t,e){t(e,0,0,e.component.id)})}function OC(t){return Ia(2,[wa(402653184,1,{template:0}),wa(671088640,2,{panel:0}),(t()(),go(0,[[1,2]],null,0,null,PC))],null,null)}var YC=function(){function t(t,e){this.el=t,this._zone=e,this.updateChange=new kn(!0),this.chartInstance=new kn}return Object.defineProperty(t.prototype,"options",{set:function(t){this.optionsValue=t,this.wrappedUpdateOrCreateChart()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"update",{set:function(t){t&&(this.wrappedUpdateOrCreateChart(),this.updateChange.emit(!1))},enumerable:!0,configurable:!0}),t.prototype.wrappedUpdateOrCreateChart=function(){var t=this;this.runOutsideAngular?this._zone.runOutsideAngular(function(){t.updateOrCreateChart()}):this.updateOrCreateChart()},t.prototype.updateOrCreateChart=function(){this.chart&&this.chart.update?this.chart.update(this.optionsValue,!0,this.oneToOne||!1):(this.chart=this.Highcharts[this.constructorType||"chart"](this.el.nativeElement,this.optionsValue,this.callbackFunction||null),this.chartInstance.emit(this.chart))},t.prototype.ngOnDestroy=function(){this.chart&&(this.chart.destroy(),this.chart=null)},t}(),RC=function(){return function(){}}(),IC=Vr({encapsulation:2,styles:[],data:{}});function FC(t){return Ia(0,[],null,null)}n("2BfV")(a_),n("Tos5")(a_),n("M8aS")(a_),n("Z9Wc")(a_),n("AxlJ")(a_),n("1op0")(a_);var zC=function(){function t(){this.updateFromInput=!1,this.scatter2d=a_,this.detectionResults=[],this.scatter2DArr=[],this.selectedResultID=0,this.selHoverIndex=-1,this.scatter2DOptions={renderTo:"sccontainer2D",chart:{type:"scatter",zoomType:"xy",panning:!0,panKey:"shift",width:700,height:360,events:{load:function(t){t.target.reflow()}}},title:{text:"",floating:!0,align:"left",margin:0},credits:{enabled:!1},exporting:{enabled:!1},xAxis:{min:-16777215,max:0,ceiling:0,minPadding:0,maxPadding:0,endOnTick:!1,tickInterval:3355443,title:{enabled:!0,text:"Raw Color",style:{color:"#000",fontWeight:"600",fontSize:"14px",fontFamily:"sans-serif"}},showLastLabel:!0,labels:{align:"center",formatter:function(){return this.value}}},yAxis:{min:-16777215,max:0,tickInterval:3355443,title:{text:"Processed Color",style:{color:"#000",fontWeight:"600",fontSize:"14px",fontFamily:"sans-serif"}},startOnTick:!0,endOnTick:!1,showLastLabel:!0,labels:{formatter:function(){return this.value}}},legend:{enabled:!1},plotOptions:{scatter:{marker:{radius:5,states:{hover:{enabled:!0,lineColor:"rgb(100,100,100)"}}}},states:{hover:{marker:{enabled:!1}}},series:{cursor:"pointer",stickyTracking:!1,point:{events:{click:(function(t){this.chart2DClicked(t.point)}).bind(this)}}}},series:[{name:"Colors",data:[],id:"series1",tooltip:{headerFormat:"{series.name}
",pointFormat:"Raw: {point.x}
Processed: {point.y}
DeltaE: {point.deltaE}"}},{type:"line",name:"Regression Line",data:[],color:"#66c2ff",marker:{enabled:!1},states:{hover:{lineWidth:0}},enableMouseTracking:!1,tooltip:{enabled:!1}}]},this.emitSelResult=new kn}return t.prototype.ngOnInit=function(){this.chart2DHolder=a_.chart("sccontainer2D",this.scatter2DOptions),this.updateFromInput=!0},t.prototype.generate2DData=function(){this.scatter2DArr=[],this.scatter2DOptions.series[0].data=[];for(var t=0,e=this.detectionResults;t0&&(t.series[1].data=this.getLinearRegression())},t.prototype.getLinearRegression=function(){for(var t,e,n,i,r=[],o=0,a=0,l=0,s=0,u=this.detectionResults.length,c=0,d=this.detectionResults;ce.RawColor?1:0}),this.createApproximateLine(this.scatter2DOptions),this.generate2DData(),this.scatter2DOptions.series[0].data=this.scatter2DArr,this.updateFromInput=!0},t.prototype.setHoverPoint=function(t){var e=this.getChart();if(e)if(0===t&&this.selHoverIndex>-1)e.series[0].data[this.selHoverIndex].setState(""),this.selHoverIndex=-1;else if(t){var n=e.series[0].data.findIndex(function(e){return e.resultID===t});n>=0&&(e.series[0].data[n].setState("hover"),this.selHoverIndex=n)}},t.prototype.getChart=function(){var t=this.scatter2d.charts,e=t.findIndex(function(t){return t&&"sccontainer2D"===t.renderTo.id});return e?t[e]:null},t}(),jC=Vr({encapsulation:0,styles:[["#sccontainer2D[_ngcontent-%COMP%]{min-width:30em;max-width:30em;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content}"]],data:{}});function HC(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"highcharts-chart",[["id","sccontainer2D"]],null,[[null,"updateChange"]],function(t,e,n){var i=!0;return"updateChange"===e&&(i=!1!==(t.component.updateFromInput=n)&&i),i},FC,IC)),oa(1,180224,null,0,YC,[Ve,Mi],{Highcharts:[0,"Highcharts"],options:[1,"options"],update:[2,"update"]},{updateChange:"updateChange"})],function(t,e){var n=e.component;t(e,1,0,n.scatter2d,n.scatter2DOptions,n.updateFromInput)},null)}function NC(t){return function(t){function e(){for(var e=[],n=0;n0;r--)e[r]&&(n[r]=i,i+=t[r]);return n},t}(),rL=function(){return function(t,e){this.viewContainer=t,this.elementRef=e}}(),oL=function(){return function(t,e){this.viewContainer=t,this.elementRef=e}}(),aL=function(){return function(t,e){this.viewContainer=t,this.elementRef=e}}(),lL=function(){function t(t,e,n,i,r,o,a){this._differs=t,this._changeDetectorRef=e,this._elementRef=n,this._dir=r,this._platform=a,this._onDestroy=new H,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this._multiTemplateDataRows=!1,this.viewChange=new Th({start:0,end:Number.MAX_VALUE}),i||this._elementRef.nativeElement.setAttribute("role","grid"),this._document=o,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName}return Object.defineProperty(t.prototype,"trackBy",{get:function(){return this._trackByFn},set:function(t){tn()&&null!=t&&"function"!=typeof t&&console&&console.warn&&console.warn("trackBy must be a function, but received "+JSON.stringify(t)+"."),this._trackByFn=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"dataSource",{get:function(){return this._dataSource},set:function(t){this._dataSource!==t&&this._switchDataSource(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"multiTemplateDataRows",{get:function(){return this._multiTemplateDataRows},set:function(t){this._multiTemplateDataRows=Xu(t),this._rowOutlet.viewContainer.length&&this._forceRenderDataRows()},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this._setupStickyStyler(),this._isNativeHtmlTable&&this._applyNativeTableSections(),this._dataDiffer=this._differs.find([]).create(function(e,n){return t.trackBy?t.trackBy(n.dataIndex,n.data):n})},t.prototype.ngAfterContentChecked=function(){if(this._cacheRowDefs(),this._cacheColumnDefs(),!this._headerRowDefs.length&&!this._footerRowDefs.length&&!this._rowDefs.length)throw Error("Missing definitions for header, footer, and row; cannot determine which columns should be rendered.");this._renderUpdatedColumns(),this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription&&this._observeRenderChanges(),this._checkStickyStates()},t.prototype.ngOnDestroy=function(){this._rowOutlet.viewContainer.clear(),this._headerRowOutlet.viewContainer.clear(),this._footerRowOutlet.viewContainer.clear(),this._cachedRenderRowsMap.clear(),this._onDestroy.next(),this._onDestroy.complete(),bM(this.dataSource)&&this.dataSource.disconnect(this)},t.prototype.renderRows=function(){var t=this;this._renderRows=this._getAllRenderRows();var e=this._dataDiffer.diff(this._renderRows);if(e){var n=this._rowOutlet.viewContainer;e.forEachOperation(function(e,i,r){if(null==e.previousIndex)t._insertRow(e.item,r);else if(null==r)n.remove(i);else{var o=n.get(i);n.move(o,r)}}),this._updateRowIndexContext(),e.forEachIdentityChange(function(t){n.get(t.currentIndex).context.$implicit=t.item.data}),this.updateStickyColumnStyles()}},t.prototype.setHeaderRowDef=function(t){this._customHeaderRowDefs=new Set([t]),this._headerRowDefChanged=!0},t.prototype.setFooterRowDef=function(t){this._customFooterRowDefs=new Set([t]),this._footerRowDefChanged=!0},t.prototype.addColumnDef=function(t){this._customColumnDefs.add(t)},t.prototype.removeColumnDef=function(t){this._customColumnDefs.delete(t)},t.prototype.addRowDef=function(t){this._customRowDefs.add(t)},t.prototype.removeRowDef=function(t){this._customRowDefs.delete(t)},t.prototype.addHeaderRowDef=function(t){this._customHeaderRowDefs.add(t),this._headerRowDefChanged=!0},t.prototype.removeHeaderRowDef=function(t){this._customHeaderRowDefs.delete(t),this._headerRowDefChanged=!0},t.prototype.addFooterRowDef=function(t){this._customFooterRowDefs.add(t),this._footerRowDefChanged=!0},t.prototype.removeFooterRowDef=function(t){this._customFooterRowDefs.delete(t),this._footerRowDefChanged=!0},t.prototype.updateStickyHeaderRowStyles=function(){var t=this._getRenderedRows(this._headerRowOutlet),e=this._elementRef.nativeElement.querySelector("thead");e&&(e.style.display=t.length?"":"none");var n=this._headerRowDefs.map(function(t){return t.sticky});this._stickyStyler.clearStickyPositioning(t,["top"]),this._stickyStyler.stickRows(t,n,"top"),this._headerRowDefs.forEach(function(t){return t.resetStickyChanged()})},t.prototype.updateStickyFooterRowStyles=function(){var t=this._getRenderedRows(this._footerRowOutlet),e=this._elementRef.nativeElement.querySelector("tfoot");e&&(e.style.display=t.length?"":"none");var n=this._footerRowDefs.map(function(t){return t.sticky});this._stickyStyler.clearStickyPositioning(t,["bottom"]),this._stickyStyler.stickRows(t,n,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,n),this._footerRowDefs.forEach(function(t){return t.resetStickyChanged()})},t.prototype.updateStickyColumnStyles=function(){var t=this,e=this._getRenderedRows(this._headerRowOutlet),n=this._getRenderedRows(this._rowOutlet),i=this._getRenderedRows(this._footerRowOutlet);this._stickyStyler.clearStickyPositioning(e.concat(n,i),["left","right"]),e.forEach(function(e,n){t._addStickyColumnStyles([e],t._headerRowDefs[n])}),this._rowDefs.forEach(function(e){for(var i=[],r=0;r1)throw Error("There can only be one default row without a when predicate function.");this._defaultRowDef=t[0]},t.prototype._renderUpdatedColumns=function(){var t=function(t,e){return t||!!e.getColumnsDiff()};this._rowDefs.reduce(t,!1)&&this._forceRenderDataRows(),this._headerRowDefs.reduce(t,!1)&&this._forceRenderHeaderRows(),this._footerRowDefs.reduce(t,!1)&&this._forceRenderFooterRows()},t.prototype._switchDataSource=function(t){this._data=[],bM(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),t||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear()),this._dataSource=t},t.prototype._observeRenderChanges=function(){var t=this;if(this.dataSource){var e;if(bM(this.dataSource)?e=this.dataSource.connect(this):this.dataSource instanceof Y?e=this.dataSource:Array.isArray(this.dataSource)&&(e=cc(this.dataSource)),void 0===e)throw Error("Provided data source did not match an array, Observable, or DataSource");this._renderChangeSubscription=e.pipe(fg(this._onDestroy)).subscribe(function(e){t._data=e||[],t.renderRows()})}},t.prototype._forceRenderHeaderRows=function(){var t=this;this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach(function(e,n){return t._renderRow(t._headerRowOutlet,e,n)}),this.updateStickyHeaderRowStyles(),this.updateStickyColumnStyles()},t.prototype._forceRenderFooterRows=function(){var t=this;this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach(function(e,n){return t._renderRow(t._footerRowOutlet,e,n)}),this.updateStickyFooterRowStyles(),this.updateStickyColumnStyles()},t.prototype._addStickyColumnStyles=function(t,e){var n=this,i=Array.from(e.columns||[]).map(function(t){var e=n._columnDefsByName.get(t);if(!e)throw eL(t);return e}),r=i.map(function(t){return t.sticky}),o=i.map(function(t){return t.stickyEnd});this._stickyStyler.updateStickyColumns(t,r,o)},t.prototype._getRenderedRows=function(t){for(var e=[],n=0;na?l=1:o0)){var i=Math.ceil(n.length/n.pageSize)-1||0,r=Math.min(n.pageIndex,i);r!==n.pageIndex&&(n.pageIndex=r,e._internalPageChanges.next())}})},e.prototype.connect=function(){return this._renderData},e.prototype.disconnect=function(){},e}(vM),kL=Vr({encapsulation:2,styles:["mat-table{display:block}mat-header-row{min-height:56px}mat-footer-row,mat-row{min-height:48px}mat-footer-row,mat-header-row,mat-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-footer-row::after,mat-header-row::after,mat-row::after{display:inline-block;min-height:inherit;content:''}mat-cell:first-of-type,mat-footer-cell:first-of-type,mat-header-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type,[dir=rtl] mat-footer-cell:first-of-type,[dir=rtl] mat-header-cell:first-of-type{padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-footer-cell:last-of-type,mat-header-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type,[dir=rtl] mat-footer-cell:last-of-type,[dir=rtl] mat-header-cell:last-of-type{padding-right:0;padding-left:24px}mat-cell,mat-footer-cell,mat-header-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}table.mat-table{border-spacing:0}tr.mat-header-row{height:56px}tr.mat-footer-row,tr.mat-row{height:48px}th.mat-header-cell{text-align:left}[dir=rtl] th.mat-header-cell{text-align:right}td.mat-cell,td.mat-footer-cell,th.mat-header-cell{padding:0;border-bottom-width:1px;border-bottom-style:solid}td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type,th.mat-header-cell:first-of-type{padding-left:24px}[dir=rtl] td.mat-cell:first-of-type,[dir=rtl] td.mat-footer-cell:first-of-type,[dir=rtl] th.mat-header-cell:first-of-type{padding-left:0;padding-right:24px}td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type,th.mat-header-cell:last-of-type{padding-right:24px}[dir=rtl] td.mat-cell:last-of-type,[dir=rtl] td.mat-footer-cell:last-of-type,[dir=rtl] th.mat-header-cell:last-of-type{padding-right:0;padding-left:24px}"],data:{}});function ML(t){return Ia(2,[wa(402653184,1,{_rowOutlet:0}),wa(402653184,2,{_headerRowOutlet:0}),wa(402653184,3,{_footerRowOutlet:0}),La(null,0),(t()(),yo(4,16777216,null,null,1,null,null,null,null,null,null,null)),oa(5,16384,[[2,4]],0,oL,[Xi,Ve],null,null),(t()(),yo(6,16777216,null,null,1,null,null,null,null,null,null,null)),oa(7,16384,[[1,4]],0,rL,[Xi,Ve],null,null),(t()(),yo(8,16777216,null,null,1,null,null,null,null,null,null,null)),oa(9,16384,[[3,4]],0,aL,[Xi,Ve],null,null)],null,null)}var SL=Vr({encapsulation:2,styles:[],data:{}});function CL(t){return Ia(2,[(t()(),yo(0,16777216,null,null,1,null,null,null,null,null,null,null)),oa(1,147456,null,0,QC,[Xi],null,null)],null,null)}var LL=Vr({encapsulation:2,styles:[],data:{}});function DL(t){return Ia(2,[(t()(),yo(0,16777216,null,null,1,null,null,null,null,null,null,null)),oa(1,147456,null,0,QC,[Xi],null,null)],null,null)}var TL=100,EL=od(function(){return function(t){this._elementRef=t}}(),"primary"),AL=new Lt("mat-progress-spinner-default-options",{providedIn:"root",factory:function(){return{diameter:TL}}}),PL=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n,i,r,o)||this;return a.mode="indeterminate",a}return r(e,t),e}(function(t){function e(e,n,i,r,o){var a=t.call(this,e)||this;return a._elementRef=e,a._document=i,a.animationMode=r,a.defaults=o,a._value=0,a._fallbackAnimation=!1,a._noopAnimations="NoopAnimations"===a.animationMode&&!!a.defaults&&!a.defaults._forceAnimations,a._diameter=TL,a.mode="determinate",a._fallbackAnimation=n.EDGE||n.TRIDENT,o&&(o.diameter&&(a.diameter=o.diameter),o.strokeWidth&&(a.strokeWidth=o.strokeWidth)),e.nativeElement.classList.add("mat-progress-spinner-indeterminate"+(a._fallbackAnimation?"-fallback":"")+"-animation"),a}return r(e,t),Object.defineProperty(e.prototype,"diameter",{get:function(){return this._diameter},set:function(t){this._diameter=Ku(t),this._fallbackAnimation||e.diameters.has(this._diameter)||this._attachStyleNode()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"strokeWidth",{get:function(){return this._strokeWidth||this.diameter/10},set:function(t){this._strokeWidth=Ku(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return"determinate"===this.mode?this._value:0},set:function(t){this._value=Math.max(0,Math.min(100,Ku(t)))},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_circleRadius",{get:function(){return(this.diameter-10)/2},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_viewBox",{get:function(){var t=2*this._circleRadius+this.strokeWidth;return"0 0 "+t+" "+t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_strokeCircumference",{get:function(){return 2*Math.PI*this._circleRadius},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_strokeDashOffset",{get:function(){return"determinate"===this.mode?this._strokeCircumference*(100-this._value)/100:this._fallbackAnimation&&"indeterminate"===this.mode?.2*this._strokeCircumference:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"_circleStrokeWidth",{get:function(){return this.strokeWidth/this.diameter*100},enumerable:!0,configurable:!0}),e.prototype._attachStyleNode=function(){var t=e.styleTag;t||(t=this._document.createElement("style"),this._document.head.appendChild(t),e.styleTag=t),t&&t.sheet&&t.sheet.insertRule(this._getAnimationText(),0),e.diameters.add(this.diameter)},e.prototype._getAnimationText=function(){return"\n @keyframes mat-progress-spinner-stroke-rotate-DIAMETER {\n 0% { stroke-dashoffset: START_VALUE; transform: rotate(0); }\n 12.5% { stroke-dashoffset: END_VALUE; transform: rotate(0); }\n 12.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n 25% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n\n 25.0001% { stroke-dashoffset: START_VALUE; transform: rotate(270deg); }\n 37.5% { stroke-dashoffset: END_VALUE; transform: rotate(270deg); }\n 37.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n 50% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n\n 50.0001% { stroke-dashoffset: START_VALUE; transform: rotate(180deg); }\n 62.5% { stroke-dashoffset: END_VALUE; transform: rotate(180deg); }\n 62.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n 75% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n\n 75.0001% { stroke-dashoffset: START_VALUE; transform: rotate(90deg); }\n 87.5% { stroke-dashoffset: END_VALUE; transform: rotate(90deg); }\n 87.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n 100% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n }\n".replace(/START_VALUE/g,""+.95*this._strokeCircumference).replace(/END_VALUE/g,""+.2*this._strokeCircumference).replace(/DIAMETER/g,""+this.diameter)},e.diameters=new Set([TL]),e.styleTag=null,e}(EL)),OL=function(){return function(){}}(),YL=Vr({encapsulation:2,styles:[".mat-progress-spinner{display:block;position:relative}.mat-progress-spinner svg{position:absolute;transform:rotate(-90deg);top:0;left:0;transform-origin:center;overflow:visible}.mat-progress-spinner circle{fill:transparent;transform-origin:center;transition:stroke-dashoffset 225ms linear}._mat-animation-noopable.mat-progress-spinner circle{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate]{animation:mat-progress-spinner-linear-rotate 2s linear infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate]{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition-property:stroke;animation-duration:4s;animation-timing-function:cubic-bezier(.35,0,.25,1);animation-iteration-count:infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate]{animation:mat-progress-spinner-stroke-rotate-fallback 10s cubic-bezier(.87,.03,.33,1) infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate]{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate] circle{transition-property:stroke}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-fallback-animation[mode=indeterminate] circle{transition:none;animation:none}@keyframes mat-progress-spinner-linear-rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes mat-progress-spinner-stroke-rotate-100{0%{stroke-dashoffset:268.60617px;transform:rotate(0)}12.5%{stroke-dashoffset:56.54867px;transform:rotate(0)}12.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(72.5deg)}25%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(72.5deg)}25.0001%{stroke-dashoffset:268.60617px;transform:rotate(270deg)}37.5%{stroke-dashoffset:56.54867px;transform:rotate(270deg)}37.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(161.5deg)}50%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(161.5deg)}50.0001%{stroke-dashoffset:268.60617px;transform:rotate(180deg)}62.5%{stroke-dashoffset:56.54867px;transform:rotate(180deg)}62.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(251.5deg)}75%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(251.5deg)}75.0001%{stroke-dashoffset:268.60617px;transform:rotate(90deg)}87.5%{stroke-dashoffset:56.54867px;transform:rotate(90deg)}87.5001%{stroke-dashoffset:56.54867px;transform:rotateX(180deg) rotate(341.5deg)}100%{stroke-dashoffset:268.60617px;transform:rotateX(180deg) rotate(341.5deg)}}@keyframes mat-progress-spinner-stroke-rotate-fallback{0%{transform:rotate(0)}25%{transform:rotate(1170deg)}50%{transform:rotate(2340deg)}75%{transform:rotate(3510deg)}100%{transform:rotate(4680deg)}}"],data:{}});function RL(t){return Ia(0,[(t()(),yo(0,0,null,null,0,":svg:circle",[["cx","50%"],["cy","50%"]],[[1,"r",0],[4,"animation-name",null],[4,"stroke-dashoffset","px"],[4,"stroke-dasharray","px"],[4,"stroke-width","%"]],null,null,null,null))],null,function(t,e){var n=e.component;t(e,0,0,n._circleRadius,"mat-progress-spinner-stroke-rotate-"+n.diameter,n._strokeDashOffset,n._strokeCircumference,n._circleStrokeWidth)})}function IL(t){return Ia(0,[(t()(),yo(0,0,null,null,0,":svg:circle",[["cx","50%"],["cy","50%"]],[[1,"r",0],[4,"stroke-dashoffset","px"],[4,"stroke-dasharray","px"],[4,"stroke-width","%"]],null,null,null,null))],null,function(t,e){var n=e.component;t(e,0,0,n._circleRadius,n._strokeDashOffset,n._strokeCircumference,n._circleStrokeWidth)})}function FL(t){return Ia(2,[(t()(),yo(0,0,null,null,5,":svg:svg",[["focusable","false"],["preserveAspectRatio","xMidYMid meet"]],[[4,"width","px"],[4,"height","px"],[1,"viewBox",0]],null,null,null,null)),oa(1,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,RL)),oa(3,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,IL)),oa(5,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){t(e,1,0,"indeterminate"===e.component.mode),t(e,3,0,!0),t(e,5,0,!1)},function(t,e){var n=e.component;t(e,0,0,n.diameter,n.diameter,n._viewBox)})}var zL=function(){function t(t,e){this.dialogRef=t,this.data=e,this.imageURL="",this.title="Image",this.event=new kn,this.imageURL=e.imageURL,this.title=e.title}return t.prototype.ngOnInit=function(){},t.prototype.onOk=function(){this.dialogRef.close("Ok")},t.prototype.onLoadImage=function(){var t=document.createElement("a");t.href=this.imageURL,t.download="image.png",document.body.appendChild(t),t.style="display: none",t.click(),t.remove()},t.prototype.onMouseMove=function(t){t.style&&(t.style.backgroundPosition.xpos=-t.offsetX+"px",t.style.backgroundPosition.ypos=-t.offsetY+"px")},t}(),jL=function(){function t(t,e){this.router=t,this.dialog=e,this.loading=!0,this.showLoadImage=!1,this.imageloadingUrl=Bl.assetPath+"/assets/362.gif",this.imageSourceUrl="",this.imageSampleUrl="",this.cardTable=new wL,this.displayedCardColumns=["cardname","value"],this.displayedDeviceColumns=["deviceName","deviceValue"],this.deviceTable=new wL,this.cards=[],this.deviceProperties=[]}return t.prototype.ngOnInit=function(){},t.prototype.updateSelResult=function(t){var e=this;this.selectedResult!==t&&(this.cards=[],this.deviceProperties=[],this.selectedResult=t,this.selectedResult&&(this.loading=!0,this.showLoadImage=!0,this.imageSourceUrl=Bl.apiUrl+t.SourceImageURL,this.imageSampleUrl=Bl.apiUrl+t.SampleImageURL,this.cards.push({name:"Card ID",value:this.selectedResult.CardCode}),this.selectedResult.Device&&Object.entries(this.selectedResult.Device).forEach(function(t){var n=t[0],i=t[1];"LastLogin"===n&&(i=e.selectedResult.Device.getDateFormatString()),e.deviceProperties.push({name:n,value:i})})),this.cardTable.data=this.cards,this.deviceTable.data=this.deviceProperties)},t.prototype.onLoad=function(){this.loading=!1,this.showLoadImage=!1},t.prototype.ClickOnSource=function(){this.dialog.open(zL,{width:"50em",data:{imageURL:this.imageSourceUrl,title:"Source Image"}})},t.prototype.ClickOnSample=function(){this.dialog.open(zL,{width:"50em",data:{imageURL:this.imageSampleUrl,title:"Sample Image"}})},t}(),HL=Vr({encapsulation:0,styles:[["md-list-item[_ngcontent-%COMP%]{min-height:2em!important}mat-card-header[_ngcontent-%COMP%]{display:inline;text-align:center} .mat-card-content{padding-top:0;padding-bottom:0;margin-top:2px;align-content:center}mat-card[_ngcontent-%COMP%]{height:100%;padding:8px} .mat-card-header-text{margin-top:0;padding:0}.mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-list-item-content[_ngcontent-%COMP%], .mat-list .mat-list-item .mat-list-item-content{width:99vw}.circle[_ngcontent-%COMP%]{height:8em;width:8em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.circle-small[_ngcontent-%COMP%]{height:5em;width:5em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.mat-expansion-panel-body[_ngcontent-%COMP%]{padding:0!important}.topOffset[_ngcontent-%COMP%]{margin-top:1em}.contentColor[_ngcontent-%COMP%]{flex-flow:row wrap;box-sizing:border-box;display:flex;place-content:stretch space-between;align-items:stretch}.cardcontexttext[_ngcontent-%COMP%]{display:flex;margin-top:3px;text-align:center!important;font-size:10pt;align-items:center;justify-content:center}[_nghost-%COMP%]{display:block}.mat-card-image[_ngcontent-%COMP%]{margin:.1em!important;height:20em;width:auto}.loading-image[_ngcontent-%COMP%]{position:absolute;left:0;top:0;right:0;bottom:0;margin:auto}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden}mat-card-header[_ngcontent-%COMP%], td[_ngcontent-%COMP%]{font-size:10pt;font-weight:500}.wrapcolumn[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:nth-child(1){display:block;width:50px}.mat-column-cardname[_ngcontent-%COMP%]{word-wrap:break-word!important;white-space:unset!important;flex:0 0 40%!important;width:40%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}th.mat-header-cell[_ngcontent-%COMP%]{border-bottom-style:hidden}tr.mat-header-row[_ngcontent-%COMP%]{height:0}tr.mat-footer-row[_ngcontent-%COMP%], tr.mat-row[_ngcontent-%COMP%]{height:2em}.mat-card-header[_ngcontent-%COMP%]{min-height:1em;width:100%;padding:0;display:flex}.mat-card-header[_ngcontent-%COMP%] .mat-card-title[_ngcontent-%COMP%]{font-size:12pt}"]],data:{}});function NL(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","cardcontexttext"],["style","align-items: center"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,4,"div",[["class","circle"]],null,null,null,null,null)),oa(2,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(3,{"background-color":0}),oa(4,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0})],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,2,0,i);var r=t(e,5,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,4,0,r)},null)}function VL(t){return Ia(0,[(t()(),yo(0,0,null,null,10,"div",[["class","cardcontexttext"],["style","margin-top: 1em;"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(3,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(4,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(6,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(9,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(10,null,["",""]))],null,function(t,e){var n=e.component;t(e,4,0,n.selectedResult.RawColorRGB.r),t(e,7,0,n.selectedResult.RawColorRGB.g),t(e,10,0,n.selectedResult.RawColorRGB.b)})}function BL(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["fxLayout","column"],["style","text-align: center;position: relative;height:100%; margin-top: 2em;"]],null,null,null,null,null)),oa(1,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),go(16777216,null,null,1,null,NL)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,VL)),oa(5,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,1,0,"column"),t(e,3,0,n.selectedResult&&n.selectedResult.RawColorRGB),t(e,5,0,n.selectedResult&&n.selectedResult.RawColorRGB)},null)}function WL(t){return Ia(0,[(t()(),yo(0,0,null,null,18,"div",[["fxLayout","column"],["style","text-align: center;position: relative;height:100%; margin-top: 2em;"]],null,null,null,null,null)),oa(1,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(2,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,4,"div",[["class","circle"]],null,null,null,null,null)),oa(4,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0}),oa(6,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(7,{"background-color":0}),(t()(),yo(8,0,null,null,10,"div",[["class","cardcontexttext"],["style","margin-top: 1em;"]],null,null,null,null,null)),(t()(),yo(9,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(11,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(12,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(14,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(15,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(17,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(18,null,["",""]))],function(t,e){var n=e.component;t(e,1,0,"column");var i=t(e,5,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,4,0,i);var r=t(e,7,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,6,0,r)},function(t,e){var n=e.component;t(e,12,0,n.selectedResult.ProcessedColorRGB.r),t(e,15,0,n.selectedResult.ProcessedColorRGB.g),t(e,18,0,n.selectedResult.ProcessedColorRGB.b)})}function UL(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function GL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function qL(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function XL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function KL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function ZL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function JL(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function QL(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function $L(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function tD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function eD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function nD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function iD(t){return Ia(0,[(t()(),yo(0,0,null,null,202,"div",[["fxFlex",""],["style","margin: 1em;"]],null,null,null,null,null)),oa(1,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(2,0,null,null,1,"h5",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Details"])),(t()(),yo(4,0,null,null,198,"div",[],null,null,null,null,null)),(t()(),yo(5,0,null,null,197,"div",[["class","topOffset"],["fxFlex","1 0 100%"],["fxFlexAlign"," start strech"],["fxLayout","row wrap"],["fxLayoutAlign","space-between"],["fxLayoutGap","10px grid"],["fxLayoutWrap",""],["style","max-height: 40em;"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(7,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(8,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(9,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(10,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(11,0,null,null,38,"div",[["fxFlex","40"],["fxLayoutWrap",""],["style","min-width: 10em;"]],null,null,null,null,null)),oa(12,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(13,0,null,null,36,"div",[["fxFlex","100"]],null,null,null,null,null)),oa(14,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(15,0,null,null,34,"div",[["fxFlexFill",""],["fxLayout","row"],["fxLayoutAlign","space-between stretch"],["fxLayoutGap","10px"]],null,null,null,null,null)),oa(16,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(17,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(18,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(19,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),(t()(),yo(20,0,null,null,16,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(21,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(22,0,null,null,14,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(23,49152,null,0,x_,[],null,null),(t()(),yo(24,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(25,49152,null,0,w_,[],null,null),(t()(),yo(26,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(27,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Source"])),(t()(),yo(29,0,null,0,7,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(30,16384,null,0,__,[],null,null),(t()(),yo(31,0,null,null,3,"div",[["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"hidden",0]],null,null,null,null)),oa(32,16384,null,0,b_,[],null,null),(t()(),yo(33,0,null,null,1,"mat-spinner",[["class","loading-image mat-spinner mat-progress-spinner"],["mode","indeterminate"],["role","progressbar"]],[[2,"_mat-animation-noopable",null],[4,"width","px"],[4,"height","px"]],null,null,FL,YL)),oa(34,49152,null,0,PL,[Ve,nc,[2,As],[2,Ow],AL],null,null),(t()(),yo(35,0,null,null,1,"img",[["alt","Source"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"hidden",0],[8,"src",4]],[[null,"load"],[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"load"===e&&(i=!1!==r.onLoad()&&i),"click"===e&&(i=!1!==r.ClickOnSource()&&i),i},null,null)),oa(36,16384,null,0,b_,[],null,null),(t()(),yo(37,0,null,null,12,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(38,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(39,0,null,null,10,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(40,49152,null,0,x_,[],null,null),(t()(),yo(41,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(42,49152,null,0,w_,[],null,null),(t()(),yo(43,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(44,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Sample "])),(t()(),yo(46,0,null,0,3,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(47,16384,null,0,__,[],null,null),(t()(),yo(48,0,null,null,1,"img",[["alt","Sample photo"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"src",4],[8,"hidden",0]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.ClickOnSample()&&i),i},null,null)),oa(49,16384,null,0,b_,[],null,null),(t()(),yo(50,0,null,null,37,"div",[["fxFlex","40"],["fxLayoutWrap",""],["style","min-width: 650px;"]],null,null,null,null,null)),oa(51,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(52,0,null,null,35,"div",[["fxFlex","100"]],null,null,null,null,null)),oa(53,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(54,0,null,null,33,"div",[["fxFlexFill",""],["fxLayout","row"],["fxLayoutAlign","space-between stretch"],["fxLayoutGap","10px"]],null,null,null,null,null)),oa(55,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(56,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(57,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(58,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),(t()(),yo(59,0,null,null,13,"div",[["fxFlex","50"],["fxFlexFill",""]],null,null,null,null,null)),oa(60,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),oa(61,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(62,0,null,null,10,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(63,49152,null,0,x_,[],null,null),(t()(),yo(64,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(65,49152,null,0,w_,[],null,null),(t()(),yo(66,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(67,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Raw Color"])),(t()(),yo(69,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"],["style","height:100%"]],null,null,null,null,null)),oa(70,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,BL)),oa(72,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(73,0,null,null,14,"div",[["fxFlex","50"],["fxFlexFill",""]],null,null,null,null,null)),oa(74,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),oa(75,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(76,0,null,null,11,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(77,49152,null,0,x_,[],null,null),(t()(),yo(78,0,null,0,5,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(79,49152,null,0,w_,[],null,null),(t()(),yo(80,0,null,1,3,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(81,16384,null,0,v_,[],null,null),(t()(),yo(82,0,null,null,1,"div",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Processed Color"])),(t()(),yo(84,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"],["style","height:100%"]],null,null,null,null,null)),oa(85,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,WL)),oa(87,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(88,0,null,null,114,"div",[["fxFlex","20"],["fxLayoutWrap",""],["style","min-width: 350px;"]],null,null,null,null,null)),oa(89,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(90,0,null,null,112,"div",[["fxLayout","column"],["fxLayoutGap","20px"]],null,null,null,null,null)),oa(91,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(92,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(93,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(94,49152,null,0,x_,[],null,null),(t()(),yo(95,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(96,49152,null,0,w_,[],null,null),(t()(),yo(97,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(98,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Card"])),(t()(),yo(100,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(101,16384,null,0,__,[],null,null),(t()(),yo(102,0,null,null,39,"div",[["style"," overflow-y: auto;"]],null,null,null,null,null)),(t()(),yo(103,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(104,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,1,{_contentColumnDefs:1}),wa(603979776,2,{_contentRowDefs:1}),wa(603979776,3,{_contentHeaderRowDefs:1}),wa(603979776,4,{_contentFooterRowDefs:1}),(t()(),yo(109,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(111,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,5,{cell:0}),wa(335544320,6,{headerCell:0}),wa(335544320,7,{footerCell:0}),la(2048,[[1,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,UL)),oa(117,16384,null,0,hL,[Mn],null,null),la(2048,[[6,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,GL)),oa(120,16384,null,0,dL,[Mn],null,null),la(2048,[[5,4]],VC,null,[dL]),(t()(),yo(122,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(124,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,8,{cell:0}),wa(335544320,9,{headerCell:0}),wa(335544320,10,{footerCell:0}),la(2048,[[1,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,qL)),oa(130,16384,null,0,hL,[Mn],null,null),la(2048,[[9,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,XL)),oa(133,16384,null,0,dL,[Mn],null,null),la(2048,[[8,4]],VC,null,[dL]),(t()(),yo(135,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,KL)),oa(137,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[3,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,ZL)),oa(140,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[2,4]],JC,null,[yL]),(t()(),yo(142,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(143,49152,null,0,x_,[],null,null),(t()(),yo(144,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(145,49152,null,0,w_,[],null,null),(t()(),yo(146,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(147,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Device"])),(t()(),yo(149,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(150,16384,null,0,__,[],null,null),(t()(),yo(151,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(152,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(153,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,11,{_contentColumnDefs:1}),wa(603979776,12,{_contentRowDefs:1}),wa(603979776,13,{_contentHeaderRowDefs:1}),wa(603979776,14,{_contentFooterRowDefs:1}),(t()(),yo(158,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(160,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,15,{cell:0}),wa(335544320,16,{headerCell:0}),wa(335544320,17,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,JL)),oa(166,16384,null,0,hL,[Mn],null,null),la(2048,[[16,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,QL)),oa(169,16384,null,0,dL,[Mn],null,null),la(2048,[[15,4]],VC,null,[dL]),(t()(),yo(171,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(173,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,18,{cell:0}),wa(335544320,19,{headerCell:0}),wa(335544320,20,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,$L)),oa(179,16384,null,0,hL,[Mn],null,null),la(2048,[[19,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,tD)),oa(182,16384,null,0,dL,[Mn],null,null),la(2048,[[18,4]],VC,null,[dL]),(t()(),yo(184,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,eD)),oa(186,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[13,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,nD)),oa(189,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[12,4]],JC,null,[yL]),(t()(),yo(191,0,null,null,11,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(192,49152,null,0,x_,[],null,null),(t()(),yo(193,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(194,49152,null,0,w_,[],null,null),(t()(),yo(195,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(196,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["DeltaE"])),(t()(),yo(198,0,null,0,4,"mat-card-content",[["class","topOffset mat-card-content"]],null,null,null,null,null)),oa(199,16384,null,0,__,[],null,null),(t()(),yo(200,0,null,null,2,"div",[["class","cardcontexttext"],["style","font-size: 12pt"]],null,null,null,null,null)),(t()(),Oa(201,null,[" ",""])),Ta(202,2)],function(t,e){var n=e.component;t(e,1,0,""),t(e,6,0,"row wrap"),t(e,7,0,"10px grid"),t(e,8,0,"space-between"),t(e,9,0," start strech"),t(e,10,0,"1 0 100%"),t(e,12,0,"40"),t(e,14,0,"100"),t(e,16,0,"row"),t(e,17,0,"10px"),t(e,18,0,"space-between stretch"),t(e,21,0,"50"),t(e,38,0,"50"),t(e,51,0,"40"),t(e,53,0,"100"),t(e,55,0,"row"),t(e,56,0,"10px"),t(e,57,0,"space-between stretch"),t(e,61,0,"50"),t(e,72,0,n.selectedResult),t(e,75,0,"50"),t(e,87,0,n.selectedResult),t(e,89,0,"20"),t(e,91,0,"column"),t(e,92,0,"20px"),t(e,104,0,n.cardTable),t(e,111,0,"cardname"),t(e,124,0,"value"),t(e,137,0,n.displayedCardColumns),t(e,140,0,n.displayedCardColumns),t(e,153,0,n.deviceTable),t(e,160,0,"deviceName"),t(e,173,0,"deviceValue"),t(e,186,0,n.displayedDeviceColumns),t(e,189,0,n.displayedDeviceColumns)},function(t,e){var n=e.component;t(e,31,0,!n.showLoadImage),t(e,33,0,Go(e,34)._noopAnimations,Go(e,34).diameter,Go(e,34).diameter),t(e,35,0,n.loading,n.imageSourceUrl),t(e,48,0,n.imageSampleUrl,""===n.imageSampleUrl);var i=n.selectedResult?jr(e,201,0,t(e,202,0,Go(e.parent,0),n.selectedResult.DeltaE,"1.2")):0;t(e,201,0,i)})}function rD(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],null,null,null,null,null)),oa(1,16384,null,0,b_,[],null,null),(t()(),yo(2,0,null,null,1,"mat-spinner",[["class","loading-image mat-spinner mat-progress-spinner"],["mode","indeterminate"],["role","progressbar"]],[[2,"_mat-animation-noopable",null],[4,"width","px"],[4,"height","px"]],null,null,FL,YL)),oa(3,49152,null,0,PL,[Ve,nc,[2,As],[2,Ow],AL],null,null)],null,function(t,e){t(e,2,0,Go(e,3)._noopAnimations,Go(e,3).diameter,Go(e,3).diameter)})}function oD(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,4,"div",[["class","circle-small"]],null,null,null,null,null)),oa(2,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(3,{"background-color":0}),oa(4,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0})],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,2,0,i);var r=t(e,5,0,n.selectedResult.RawColorRGB.rgbToHex());t(e,4,0,r)},null)}function aD(t){return Ia(0,[(t()(),yo(0,0,null,null,10,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(3,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(4,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(6,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(9,0,null,null,1,"b",[],null,null,null,null,null)),(t()(),Oa(10,null,["",""]))],null,function(t,e){var n=e.component;t(e,4,0,n.selectedResult.RawColorRGB.r),t(e,7,0,n.selectedResult.RawColorRGB.g),t(e,10,0,n.selectedResult.RawColorRGB.b)})}function lD(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,4,"div",[["class","circle-small"]],null,null,null,null,null)),oa(2,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(3,{"background-color":0}),oa(4,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(5,{"background-color":0})],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,2,0,i);var r=t(e,5,0,n.selectedResult.ProcessedColorRGB.rgbToHex());t(e,4,0,r)},null)}function sD(t){return Ia(0,[(t()(),yo(0,0,null,null,10,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,9,"p",[],null,null,null,null,null)),(t()(),Oa(-1,null,["R:"])),(t()(),yo(3,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(4,null,["",""])),(t()(),Oa(-1,null,[" G:"])),(t()(),yo(6,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),Oa(-1,null,[" B:"])),(t()(),yo(9,0,null,null,1,"strong",[],null,null,null,null,null)),(t()(),Oa(10,null,["",""]))],null,function(t,e){var n=e.component;t(e,4,0,n.selectedResult.ProcessedColorRGB.r),t(e,7,0,n.selectedResult.ProcessedColorRGB.g),t(e,10,0,n.selectedResult.ProcessedColorRGB.b)})}function uD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function cD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function dD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function hD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function pD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function fD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function mD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function gD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function yD(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function _D(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function vD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function bD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function xD(t){return Ia(0,[(t()(),yo(0,0,null,null,193,"div",[["fxFlex",""],["style","margin: 1em;"]],null,null,null,null,null)),oa(1,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(2,0,null,null,1,"h5",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Details"])),(t()(),yo(4,0,null,null,189,"div",[],null,null,null,null,null)),(t()(),yo(5,0,null,null,188,"div",[["fxLayout","column"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(7,0,null,null,33,"div",[["class","topOffset"],["fxFlex","100"],["fxLayoutAlign","center"]],null,null,null,null,null)),oa(8,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(9,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(10,0,null,null,30,"div",[["fxLayout","row"],["fxLayoutGap","20px"],["style","width: 100%;"]],null,null,null,null,null)),oa(11,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(12,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(13,0,null,null,14,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(14,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(15,0,null,null,12,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(16,49152,null,0,x_,[],null,null),(t()(),yo(17,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(18,49152,null,0,w_,[],null,null),(t()(),yo(19,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(20,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Source"])),(t()(),yo(22,0,null,0,5,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(23,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,rD)),oa(25,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(26,0,null,null,1,"img",[["alt","Source picture"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"hidden",0],[8,"src",4]],[[null,"load"],[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"load"===e&&(i=!1!==r.onLoad()&&i),"click"===e&&(i=!1!==r.ClickOnSource()&&i),i},null,null)),oa(27,16384,null,0,b_,[],null,null),(t()(),yo(28,0,null,null,12,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(29,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(30,0,null,null,10,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(31,49152,null,0,x_,[],null,null),(t()(),yo(32,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(33,49152,null,0,w_,[],null,null),(t()(),yo(34,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(35,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Sample "])),(t()(),yo(37,0,null,0,3,"mat-card-content",[["class","cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(38,16384,null,0,__,[],null,null),(t()(),yo(39,0,null,null,1,"img",[["alt","Sample picture"],["class","mat-card-image"],["mat-card-image",""],["style","height:15em"]],[[8,"src",4],[8,"hidden",0]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.ClickOnSample()&&i),i},null,null)),oa(40,16384,null,0,b_,[],null,null),(t()(),yo(41,0,null,null,35,"div",[["fxFlex","100"]],null,null,null,null,null)),oa(42,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(43,0,null,null,33,"div",[["class","topOffset"],["fxLayout","row"],["fxLayoutGap","20px"]],null,null,null,null,null)),oa(44,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(45,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(46,0,null,null,14,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(47,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(48,0,null,null,12,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(49,49152,null,0,x_,[],null,null),(t()(),yo(50,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(51,49152,null,0,w_,[],null,null),(t()(),yo(52,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(53,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Raw Color"])),(t()(),go(16777216,null,0,1,null,oD)),oa(56,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(57,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"]],null,null,null,null,null)),oa(58,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,aD)),oa(60,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(61,0,null,null,15,"div",[["fxFlex","50"]],null,null,null,null,null)),oa(62,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(63,0,null,null,13,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(64,49152,null,0,x_,[],null,null),(t()(),yo(65,0,null,0,5,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(66,49152,null,0,w_,[],null,null),(t()(),yo(67,0,null,1,3,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(68,16384,null,0,v_,[],null,null),(t()(),yo(69,0,null,null,1,"div",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Processed Color"])),(t()(),go(16777216,null,0,1,null,lD)),oa(72,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(73,0,null,0,3,"mat-card-content",[["class","topOffset mat-card-content"]],null,null,null,null,null)),oa(74,16384,null,0,__,[],null,null),(t()(),go(16777216,null,null,1,null,sD)),oa(76,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(77,0,null,null,51,"div",[["class","topOffset"],["fxFlex","100"]],null,null,null,null,null)),oa(78,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(79,0,null,null,49,"div",[],null,null,null,null,null)),(t()(),yo(80,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(81,49152,null,0,x_,[],null,null),(t()(),yo(82,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(83,49152,null,0,w_,[],null,null),(t()(),yo(84,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(85,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Card"])),(t()(),yo(87,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(88,16384,null,0,__,[],null,null),(t()(),yo(89,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(90,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(91,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,21,{_contentColumnDefs:1}),wa(603979776,22,{_contentRowDefs:1}),wa(603979776,23,{_contentHeaderRowDefs:1}),wa(603979776,24,{_contentFooterRowDefs:1}),(t()(),yo(96,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(98,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,25,{cell:0}),wa(335544320,26,{headerCell:0}),wa(335544320,27,{footerCell:0}),la(2048,[[21,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,uD)),oa(104,16384,null,0,hL,[Mn],null,null),la(2048,[[26,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,cD)),oa(107,16384,null,0,dL,[Mn],null,null),la(2048,[[25,4]],VC,null,[dL]),(t()(),yo(109,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(111,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,28,{cell:0}),wa(335544320,29,{headerCell:0}),wa(335544320,30,{footerCell:0}),la(2048,[[21,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,dD)),oa(117,16384,null,0,hL,[Mn],null,null),la(2048,[[29,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,hD)),oa(120,16384,null,0,dL,[Mn],null,null),la(2048,[[28,4]],VC,null,[dL]),(t()(),yo(122,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,pD)),oa(124,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[23,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,fD)),oa(127,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[22,4]],JC,null,[yL]),(t()(),yo(129,0,null,null,50,"div",[["class","topOffset"],["fxFlex","100"]],null,null,null,null,null)),oa(130,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(131,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(132,49152,null,0,x_,[],null,null),(t()(),yo(133,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(134,49152,null,0,w_,[],null,null),(t()(),yo(135,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(136,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["Device"])),(t()(),yo(138,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(139,16384,null,0,__,[],null,null),(t()(),yo(140,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(141,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(142,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,31,{_contentColumnDefs:1}),wa(603979776,32,{_contentRowDefs:1}),wa(603979776,33,{_contentHeaderRowDefs:1}),wa(603979776,34,{_contentFooterRowDefs:1}),(t()(),yo(147,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(149,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,35,{cell:0}),wa(335544320,36,{headerCell:0}),wa(335544320,37,{footerCell:0}),la(2048,[[31,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,mD)),oa(155,16384,null,0,hL,[Mn],null,null),la(2048,[[36,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,gD)),oa(158,16384,null,0,dL,[Mn],null,null),la(2048,[[35,4]],VC,null,[dL]),(t()(),yo(160,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(162,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,38,{cell:0}),wa(335544320,39,{headerCell:0}),wa(335544320,40,{footerCell:0}),la(2048,[[31,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,yD)),oa(168,16384,null,0,hL,[Mn],null,null),la(2048,[[39,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,_D)),oa(171,16384,null,0,dL,[Mn],null,null),la(2048,[[38,4]],VC,null,[dL]),(t()(),yo(173,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,vD)),oa(175,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[33,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,bD)),oa(178,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[32,4]],JC,null,[yL]),(t()(),yo(180,0,null,null,13,"div",[["class","topOffset"],["fxFlex","100"]],null,null,null,null,null)),oa(181,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(182,0,null,null,11,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(183,49152,null,0,x_,[],null,null),(t()(),yo(184,0,null,0,4,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(185,49152,null,0,w_,[],null,null),(t()(),yo(186,0,null,1,2,"mat-card-title",[["class","mat-card-title"]],null,null,null,null,null)),oa(187,16384,null,0,v_,[],null,null),(t()(),Oa(-1,null,["DeltaE"])),(t()(),yo(189,0,null,0,4,"mat-card-content",[["class","topOffset cardcontexttext mat-card-content"]],null,null,null,null,null)),oa(190,16384,null,0,__,[],null,null),(t()(),yo(191,0,null,null,2,"div",[["class","cardcontexttext"],["style","font-size:16pt"]],null,null,null,null,null)),(t()(),Oa(192,null,[" ",""])),Ta(193,2)],function(t,e){var n=e.component;t(e,1,0,""),t(e,6,0,"column"),t(e,8,0,"center"),t(e,9,0,"100"),t(e,11,0,"row"),t(e,12,0,"20px"),t(e,14,0,"50"),t(e,25,0,n.showLoadImage),t(e,29,0,"50"),t(e,42,0,"100"),t(e,44,0,"row"),t(e,45,0,"20px"),t(e,47,0,"50"),t(e,56,0,n.selectedResult&&n.selectedResult.RawColorRGB),t(e,60,0,n.selectedResult&&n.selectedResult.RawColorRGB),t(e,62,0,"50"),t(e,72,0,n.selectedResult&&n.selectedResult.ProcessedColorRGB),t(e,76,0,n.selectedResult&&n.selectedResult.ProcessedColorRGB),t(e,78,0,"100"),t(e,91,0,n.cardTable),t(e,98,0,"cardname"),t(e,111,0,"value"),t(e,124,0,n.displayedCardColumns),t(e,127,0,n.displayedCardColumns),t(e,130,0,"100"),t(e,142,0,n.deviceTable),t(e,149,0,"deviceName"),t(e,162,0,"deviceValue"),t(e,175,0,n.displayedDeviceColumns),t(e,178,0,n.displayedDeviceColumns),t(e,181,0,"100")},function(t,e){var n=e.component;t(e,26,0,n.loading,n.imageSourceUrl),t(e,39,0,n.imageSampleUrl,""===n.imageSampleUrl);var i=n.selectedResult?jr(e,192,0,t(e,193,0,Go(e.parent,0),n.selectedResult.DeltaE,"1.2")):0;t(e,192,0,i)})}function wD(t){return Ia(0,[aa(0,Ts,[br]),(t()(),go(16777216,null,null,1,null,iD)),oa(2,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,xD)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,2,0,"statistics"===n.view),t(e,4,0,"result"===n.view)},null)}var kD=function(){function t(t){this.http=t,this.emails=[],this.deviceModels=[],this.httpOptions={headers:new $d({"Content-Type":"application/json"})}}return t.prototype.getEmails=function(t){var e=(new nh).set("searchString",t);return this.http.get(Bl.apiUrl+"/api/Devices/GetEmails",{params:e}).pipe(nt(this.extractEmails),Jh(this.handleError("getEmails")))},t.prototype.extractEmails=function(t){return this.emails=[],this.emails=t||[],this.emails},t.prototype.getDeviceModels=function(t){new nh({fromString:t});var e=(new nh).set("searchString",t);return this.http.get(Bl.apiUrl+"/api/Devices/GetModels",{params:e}).pipe(nt(this.extractDeviceModels),Jh(this.handleError("getDeviceModels")))},t.prototype.extractDeviceModels=function(t){return this.deviceModels=[],this.deviceModels=t||[],this.deviceModels},t.prototype.handleError=function(t,e){return void 0===t&&(t="operation"),function(n){return console.error(n),console.log(t+" failed: "+n.message),cc(e)}},t.ngInjectableDef=St({factory:function(){return new t(ie(ph))},token:t,providedIn:"root"}),t}(),MD=function(){function t(t,e,n,i,r,o,a){this.resultService=t,this.router=e,this.route=n,this.location=i,this.deviceService=r,this.matIconRegistry=o,this.domSanitizer=a,this.isValidFromDate=!1,this.isValidToDate=!1,this.fromDateParam="",this.toDateParam="",this.emailParam="",this.devicemodelParam="",this.fromDate=new wv("",R_.required),this.toDate=new wv(this.toDateParam,R_.required),this.email=new wv("",R_.email),this.devicemodel=new wv(""),this.detectionResults=[],this.selectedResultID=0,this.matIconRegistry.addSvgIcon("icon_funnel",this.domSanitizer.bypassSecurityTrustResourceUrl(Bl.assetPath+"/assets/filter.svg"))}return Object.defineProperty(t.prototype,"content",{set:function(t){this.resultComponent=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"sccontent",{set:function(t){this.scatter3DChart=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"plcontent",{set:function(t){this.scatter2DChart=t},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.route.queryParams.subscribe(function(e){if(e){if(void 0===e.From){var n=new Date;t.fromDateParam=n.toJSON(),t.fromDate.setValue(n)}else t.fromDateParam=e.From,t.fromDate.setValue(new Date(Date.parse(t.fromDateParam)));if(void 0===e.To){var i=new Date;t.toDateParam=i.toJSON(),t.toDate.setValue(i)}else t.toDateParam=e.To,t.toDate.setValue(new Date(Date.parse(t.toDateParam)));t.emailParam=void 0===e.email?"":e.email,t.email.setValue(t.emailParam),t.devicemodelParam=void 0===e.devicemodel?"":e.devicemodel,t.devicemodel.setValue(t.devicemodelParam),t.selectedResultID=void 0===e.selectedResultID?0:e.selectedResultID,t.getResults()}}),this.email.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){t.email.setValue(e.trim(),{emitEvent:!1});var n=e.trim();n.length>0?t.deviceService.getEmails(n).subscribe(function(e){t.registeredEmails=e}):t.registeredEmails=[]}),this.devicemodel.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){var n=e.trim();n.length>0?t.deviceService.getDeviceModels(n).subscribe(function(e){t.registeredDevices=e}):t.registeredDevices=[]})},t.prototype.ngAfterViewInit=function(){var t=this;this.picker._selectedChanged.subscribe(function(e){t.isValidFromDate=Vd.isMoment(e)},function(t){throw Error(t)}),this.picker2._selectedChanged.subscribe(function(e){t.isValidToDate=Vd.isMoment(e)},function(t){throw Error(t)})},t.prototype.filteringResults=function(){this.fromDateParam=this.fromDate.value.toISOString(),this.toDateParam=this.toDate.value.toISOString(),this.emailParam=this.email.value.trim(),this.devicemodelParam=this.devicemodel.value.trim(),this.handleFiltersChange()},t.prototype.handleFiltersChange=function(){this.router.navigate(["/statistics"],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam},queryParamsHandling:"merge"})},t.prototype.getResults=function(){var t=this;""!==this.fromDateParam&&""!==this.toDateParam&&this.resultService.getResults(this.fromDateParam,this.toDateParam,this.devicemodelParam,this.emailParam).subscribe(function(e){if(t.detectionResults=e||[],t.scatter2DChart.updateResults(t.detectionResults),t.scatter3DChart.updateResults(t.detectionResults),t.selectedResultID){var n=t.selectedResultID,i=t.detectionResults.filter(function(t){return t.Guid===n});i.length>0&&(t.selectedPoint=i[0],t.resultComponent&&t.resultComponent.updateSelResult(t.selectedPoint))}})},t.prototype.selectResult=function(t){this.selectedPoint=t,this.selectedResultID=t.Guid;var e=this.router.createUrlTree([],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam,selectedResultID:this.selectedResultID},preserveFragment:!0});this.location.go(e.toString()),this.resultComponent&&this.resultComponent.updateSelResult(this.selectedPoint)},t.prototype.hover3DPoint=function(t){this.scatter2DChart.setHoverPoint(t)},t}(),SD=Vr({encapsulation:0,styles:[[".statistic[_ngcontent-%COMP%]{margin-left:4em;height:100%;margin-top:8px}.container[_ngcontent-%COMP%]{min-width:900px}mat-form-field[_ngcontent-%COMP%]{margin-right:2.5rem;width:calc(100% - 2.5rem)}.cardinforow[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;box-sizing:border-box;display:inline-block;height:10em;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content;width:92%;margin:0!important}md-list-item[_ngcontent-%COMP%]{min-height:70px!important}mat-card-header[_ngcontent-%COMP%]{display:inline;text-align:center}.mat-expansion-panel-body[_ngcontent-%COMP%]{padding:0!important}.content[_ngcontent-%COMP%]{margin:15px;overflow:hidden}td[_ngcontent-%COMP%]{font-size:14pt;font-weight:500}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:1em;font-size:14pt;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}.mat-table__wrapper[_ngcontent-%COMP%] .mat-table[_ngcontent-%COMP%]{min-width:auto!important;width:100%!important}.mat-header-row[_ngcontent-%COMP%], .mat-row[_ngcontent-%COMP%]{width:100%}.card[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;margin:1rem;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:92%;align-content:center}.charttable[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;height:24em;margin:1rem;position:relative;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content;align-items:center;background-color:#fff}.tp-form[_ngcontent-%COMP%]{min-width:150px;max-width:500px;width:100%} .cdk-overlay-pane{width:auto!important}"]],data:{}});function CD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[29,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function LD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(1,16384,[[25,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,[" Please enter a valid email address "]))],null,function(t,e){t(e,0,0,Go(e,1).id)})}function DD(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[38,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function TD(t){return Ia(0,[wa(402653184,1,{content:0}),wa(402653184,2,{picker:0}),wa(402653184,3,{picker2:0}),wa(402653184,4,{sccontent:0}),wa(402653184,5,{plcontent:0}),(t()(),yo(5,0,null,null,143,"div",[["fxFlexAlign","center start"],["fxLayout","column"],["style","padding-top: 65px; justify-content:center; align-items: center; padding-bottom: 30px;"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(7,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),(t()(),yo(8,0,null,null,117,"div",[["class","card"]],null,null,null,null,null)),(t()(),yo(9,0,null,null,116,"div",[["fxLayout","row"],["style","height: 4em; padding: 1em; margin-top: 1em;"]],null,null,null,null,null)),oa(10,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(11,0,null,null,114,"div",[["fxFill",""],["fxFlex","98"],["fxLayout",""],["fxLayoutAlign","strech center"]],null,null,null,null,null)),oa(12,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(13,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(14,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),oa(15,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(16,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(17,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,6,{_control:0}),wa(335544320,7,{_placeholderChild:0}),wa(335544320,8,{_labelChild:0}),wa(603979776,9,{_errorChildren:1}),wa(603979776,10,{_hintChildren:1}),wa(603979776,11,{_prefixChildren:1}),wa(603979776,12,{_suffixChildren:1}),(t()(),yo(25,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","From Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,26)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,26).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,26)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,26)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,28)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,28)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,28)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,28)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,35)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,35)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,35)._onInput()&&i),i},null,null)),oa(26,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(27,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(28,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(31,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(33,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(35,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[6,4]],Qv,null,[mk]),(t()(),yo(37,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,38)._button.focus()&&i),i},dC,uC)),oa(38,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,13,{_customIcon:0}),oa(40,16384,[[12,4]],0,ib,[],null,null),(t()(),yo(41,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(42,180224,[[2,4],[3,4],["picker1",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(43,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(44,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,14,{_control:0}),wa(335544320,15,{_placeholderChild:0}),wa(335544320,16,{_labelChild:0}),wa(603979776,17,{_errorChildren:1}),wa(603979776,18,{_hintChildren:1}),wa(603979776,19,{_prefixChildren:1}),wa(603979776,20,{_suffixChildren:1}),(t()(),yo(52,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","To Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,53)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,53).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,53)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,53)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,55)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,55)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,55)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,55)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,62)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,62)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,62)._onInput()&&i),i},null,null)),oa(53,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(54,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(55,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(58,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(60,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(62,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[14,4]],Qv,null,[mk]),(t()(),yo(64,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,65)._button.focus()&&i),i},dC,uC)),oa(65,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,21,{_customIcon:0}),oa(67,16384,[[20,4]],0,ib,[],null,null),(t()(),yo(68,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(69,180224,[[2,4],[3,4],["picker2",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(70,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(71,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,22,{_control:0}),wa(335544320,23,{_placeholderChild:0}),wa(335544320,24,{_labelChild:0}),wa(603979776,25,{_errorChildren:1}),wa(603979776,26,{_hintChildren:1}),wa(603979776,27,{_prefixChildren:1}),wa(603979776,28,{_suffixChildren:1}),(t()(),yo(79,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","email"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,80)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,80).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,80)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,80)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,81)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,81)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,81)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,81)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,86)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,86)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,86)._onInput()&&i),i},null,null)),oa(80,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(81,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(83,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(85,16384,null,0,gv,[[4,q_]],null,null),oa(86,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[22,4]],Qv,null,[mk]),(t()(),yo(88,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(90,1097728,[["auto",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,29,{options:1}),wa(603979776,30,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,CD)),oa(94,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),go(16777216,null,5,1,null,LD)),oa(96,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(97,0,null,null,24,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(98,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,31,{_control:0}),wa(335544320,32,{_placeholderChild:0}),wa(335544320,33,{_labelChild:0}),wa(603979776,34,{_errorChildren:1}),wa(603979776,35,{_hintChildren:1}),wa(603979776,36,{_prefixChildren:1}),wa(603979776,37,{_suffixChildren:1}),(t()(),yo(106,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","device model"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,107)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,107).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,107)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,107)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,108)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,108)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,108)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,108)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,113)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,113)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,113)._onInput()&&i),i},null,null)),oa(107,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(108,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(110,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(112,16384,null,0,gv,[[4,q_]],null,null),oa(113,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[31,4]],Qv,null,[mk]),(t()(),yo(115,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(117,1097728,[["autod",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,38,{options:1}),wa(603979776,39,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,DD)),oa(121,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(122,0,null,null,3,"button",[["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.filteringResults()&&i),i},Nk,Hk)),oa(123,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],color:[1,"color"]},null),(t()(),yo(124,0,null,0,1,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"],["style","vertical-align: top; height:auto;"],["svgIcon","icon_funnel"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(125,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],{svgIcon:[0,"svgIcon"]},null),(t()(),yo(126,0,null,null,14,"div",[["class","cardinforow"],["fxFlex","1 1 100%"],["fxFlexAlign","space-between strech"],["fxLayout","row wrap"],["fxLayoutGap","10px grid"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(127,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(128,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(129,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(130,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(131,0,null,null,4,"div",[["class","charttable"],["fxFlex","48"]],null,null,null,null,null)),oa(132,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(133,0,null,null,2,"div",[["class","statistics"],["style","margin-left: 4em; margin-top: 4px; height:100%"]],null,null,null,null,null)),(t()(),yo(134,0,null,null,1,"app-scatter3-dchart",[],null,[[null,"emitPass"],[null,"hoverPoint"]],function(t,e,n){var i=!0,r=t.component;return"emitPass"===e&&(i=!1!==r.selectResult(n)&&i),"hoverPoint"===e&&(i=!1!==r.hover3DPoint(n)&&i),i},u_,s_)),oa(135,114688,[[4,4],["scatter3D",4]],0,l_,[],null,{emitPass:"emitPass",hoverPoint:"hoverPoint"}),(t()(),yo(136,0,null,null,4,"div",[["class","charttable"],["fxFlex","48"]],null,null,null,null,null)),oa(137,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(138,0,null,null,2,"div",[["class","statistics"],["style","margin-left: 4em; height:100%; margin-top: 8px;"]],null,null,null,null,null)),(t()(),yo(139,0,null,null,1,"app-scatter2-dplot",[],null,[[null,"emitSelResult"]],function(t,e,n){var i=!0;return"emitSelResult"===e&&(i=!1!==t.component.selectResult(n)&&i),i},HC,jC)),oa(140,114688,[[5,4],["scatter2D",4]],0,zC,[],null,{emitSelResult:"emitSelResult"}),(t()(),yo(141,0,null,null,7,"div",[["fxFlex","100"],["style"," margin-top: 16px; width:92%"]],null,null,null,null,null)),oa(142,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(143,0,null,null,5,"div",[["class","cardinforow"],["fxFlex","1 1 100%"],["fxFlexAlign","space-between strech"],["fxLayout","row wrap"]],null,null,null,null,null)),oa(144,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(145,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(146,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(147,0,null,null,1,"app-details",[["style","width: 98%;\n margin-left: 1em;"]],null,null,null,wD,HL)),oa(148,114688,[[1,4],["details",4]],0,jL,[Am,DS],{selectedResult:[0,"selectedResult"],view:[1,"view"]},null)],function(t,e){var n=e.component;t(e,6,0,"column"),t(e,7,0,"center start"),t(e,10,0,"row"),t(e,12,0,""),t(e,13,0,"strech center"),t(e,15,0,"98"),t(e,27,0,""),t(e,28,0,n.picker),t(e,31,0,n.fromDate),t(e,35,0,"From Date",""),t(e,38,0,n.picker),t(e,54,0,""),t(e,55,0,Go(e,69)),t(e,58,0,n.toDate),t(e,62,0,"To Date",""),t(e,65,0,Go(e,69)),t(e,81,0,Go(e,90)),t(e,83,0,n.email),t(e,86,0,"email","text"),t(e,90,0,""),t(e,94,0,n.registeredEmails),t(e,96,0,n.email.hasError("email")&&!n.email.hasError("required")),t(e,108,0,Go(e,117)),t(e,110,0,n.devicemodel),t(e,113,0,"device model","text"),t(e,117,0,""),t(e,121,0,n.registeredDevices),t(e,123,0,!(n.fromDate.valid&&n.toDate.valid&&n.email.valid),"primary"),t(e,125,0,"icon_funnel"),t(e,127,0,"row wrap"),t(e,128,0,"10px grid"),t(e,129,0,"space-between strech"),t(e,130,0,"1 1 100%"),t(e,132,0,"48"),t(e,135,0),t(e,137,0,"48"),t(e,140,0),t(e,142,0,"100"),t(e,144,0,"row wrap"),t(e,145,0,"space-between strech"),t(e,146,0,"1 1 100%"),t(e,148,0,n.selectedPoint,"statistics")},function(t,e){t(e,16,1,["standard"==Go(e,17).appearance,"fill"==Go(e,17).appearance,"outline"==Go(e,17).appearance,"legacy"==Go(e,17).appearance,Go(e,17)._control.errorState,Go(e,17)._canLabelFloat,Go(e,17)._shouldLabelFloat(),Go(e,17)._hasFloatingLabel(),Go(e,17)._hideControlPlaceholder(),Go(e,17)._control.disabled,Go(e,17)._control.autofilled,Go(e,17)._control.focused,"accent"==Go(e,17).color,"warn"==Go(e,17).color,Go(e,17)._shouldForward("untouched"),Go(e,17)._shouldForward("touched"),Go(e,17)._shouldForward("pristine"),Go(e,17)._shouldForward("dirty"),Go(e,17)._shouldForward("valid"),Go(e,17)._shouldForward("invalid"),Go(e,17)._shouldForward("pending"),!Go(e,17)._animationsEnabled]),t(e,25,1,[Go(e,27).required?"":null,!0,(null==Go(e,28)._datepicker?null:Go(e,28)._datepicker.opened)&&Go(e,28)._datepicker.id||null,Go(e,28).min?Go(e,28)._dateAdapter.toIso8601(Go(e,28).min):null,Go(e,28).max?Go(e,28)._dateAdapter.toIso8601(Go(e,28).max):null,Go(e,28).disabled,Go(e,33).ngClassUntouched,Go(e,33).ngClassTouched,Go(e,33).ngClassPristine,Go(e,33).ngClassDirty,Go(e,33).ngClassValid,Go(e,33).ngClassInvalid,Go(e,33).ngClassPending,Go(e,35)._isServer,Go(e,35).id,Go(e,35).placeholder,Go(e,35).disabled,Go(e,35).required,Go(e,35).readonly&&!Go(e,35)._isNativeSelect||null,Go(e,35)._ariaDescribedby||null,Go(e,35).errorState,Go(e,35).required.toString()]),t(e,37,0,-1,Go(e,38).datepicker&&Go(e,38).datepicker.opened,Go(e,38).datepicker&&"accent"===Go(e,38).datepicker.color,Go(e,38).datepicker&&"warn"===Go(e,38).datepicker.color),t(e,43,1,["standard"==Go(e,44).appearance,"fill"==Go(e,44).appearance,"outline"==Go(e,44).appearance,"legacy"==Go(e,44).appearance,Go(e,44)._control.errorState,Go(e,44)._canLabelFloat,Go(e,44)._shouldLabelFloat(),Go(e,44)._hasFloatingLabel(),Go(e,44)._hideControlPlaceholder(),Go(e,44)._control.disabled,Go(e,44)._control.autofilled,Go(e,44)._control.focused,"accent"==Go(e,44).color,"warn"==Go(e,44).color,Go(e,44)._shouldForward("untouched"),Go(e,44)._shouldForward("touched"),Go(e,44)._shouldForward("pristine"),Go(e,44)._shouldForward("dirty"),Go(e,44)._shouldForward("valid"),Go(e,44)._shouldForward("invalid"),Go(e,44)._shouldForward("pending"),!Go(e,44)._animationsEnabled]),t(e,52,1,[Go(e,54).required?"":null,!0,(null==Go(e,55)._datepicker?null:Go(e,55)._datepicker.opened)&&Go(e,55)._datepicker.id||null,Go(e,55).min?Go(e,55)._dateAdapter.toIso8601(Go(e,55).min):null,Go(e,55).max?Go(e,55)._dateAdapter.toIso8601(Go(e,55).max):null,Go(e,55).disabled,Go(e,60).ngClassUntouched,Go(e,60).ngClassTouched,Go(e,60).ngClassPristine,Go(e,60).ngClassDirty,Go(e,60).ngClassValid,Go(e,60).ngClassInvalid,Go(e,60).ngClassPending,Go(e,62)._isServer,Go(e,62).id,Go(e,62).placeholder,Go(e,62).disabled,Go(e,62).required,Go(e,62).readonly&&!Go(e,62)._isNativeSelect||null,Go(e,62)._ariaDescribedby||null,Go(e,62).errorState,Go(e,62).required.toString()]),t(e,64,0,-1,Go(e,65).datepicker&&Go(e,65).datepicker.opened,Go(e,65).datepicker&&"accent"===Go(e,65).datepicker.color,Go(e,65).datepicker&&"warn"===Go(e,65).datepicker.color),t(e,70,1,["standard"==Go(e,71).appearance,"fill"==Go(e,71).appearance,"outline"==Go(e,71).appearance,"legacy"==Go(e,71).appearance,Go(e,71)._control.errorState,Go(e,71)._canLabelFloat,Go(e,71)._shouldLabelFloat(),Go(e,71)._hasFloatingLabel(),Go(e,71)._hideControlPlaceholder(),Go(e,71)._control.disabled,Go(e,71)._control.autofilled,Go(e,71)._control.focused,"accent"==Go(e,71).color,"warn"==Go(e,71).color,Go(e,71)._shouldForward("untouched"),Go(e,71)._shouldForward("touched"),Go(e,71)._shouldForward("pristine"),Go(e,71)._shouldForward("dirty"),Go(e,71)._shouldForward("valid"),Go(e,71)._shouldForward("invalid"),Go(e,71)._shouldForward("pending"),!Go(e,71)._animationsEnabled]),t(e,79,1,[Go(e,81).autocompleteAttribute,Go(e,81).autocompleteDisabled?null:"combobox",Go(e,81).autocompleteDisabled?null:"list",Go(e,81).panelOpen&&Go(e,81).activeOption?Go(e,81).activeOption.id:null,Go(e,81).autocompleteDisabled?null:Go(e,81).panelOpen.toString(),Go(e,81).autocompleteDisabled||!Go(e,81).panelOpen?null:null==Go(e,81).autocomplete?null:Go(e,81).autocomplete.id,!Go(e,81).autocompleteDisabled,Go(e,85).ngClassUntouched,Go(e,85).ngClassTouched,Go(e,85).ngClassPristine,Go(e,85).ngClassDirty,Go(e,85).ngClassValid,Go(e,85).ngClassInvalid,Go(e,85).ngClassPending,Go(e,86)._isServer,Go(e,86).id,Go(e,86).placeholder,Go(e,86).disabled,Go(e,86).required,Go(e,86).readonly&&!Go(e,86)._isNativeSelect||null,Go(e,86)._ariaDescribedby||null,Go(e,86).errorState,Go(e,86).required.toString()]),t(e,97,1,["standard"==Go(e,98).appearance,"fill"==Go(e,98).appearance,"outline"==Go(e,98).appearance,"legacy"==Go(e,98).appearance,Go(e,98)._control.errorState,Go(e,98)._canLabelFloat,Go(e,98)._shouldLabelFloat(),Go(e,98)._hasFloatingLabel(),Go(e,98)._hideControlPlaceholder(),Go(e,98)._control.disabled,Go(e,98)._control.autofilled,Go(e,98)._control.focused,"accent"==Go(e,98).color,"warn"==Go(e,98).color,Go(e,98)._shouldForward("untouched"),Go(e,98)._shouldForward("touched"),Go(e,98)._shouldForward("pristine"),Go(e,98)._shouldForward("dirty"),Go(e,98)._shouldForward("valid"),Go(e,98)._shouldForward("invalid"),Go(e,98)._shouldForward("pending"),!Go(e,98)._animationsEnabled]),t(e,106,1,[Go(e,108).autocompleteAttribute,Go(e,108).autocompleteDisabled?null:"combobox",Go(e,108).autocompleteDisabled?null:"list",Go(e,108).panelOpen&&Go(e,108).activeOption?Go(e,108).activeOption.id:null,Go(e,108).autocompleteDisabled?null:Go(e,108).panelOpen.toString(),Go(e,108).autocompleteDisabled||!Go(e,108).panelOpen?null:null==Go(e,108).autocomplete?null:Go(e,108).autocomplete.id,!Go(e,108).autocompleteDisabled,Go(e,112).ngClassUntouched,Go(e,112).ngClassTouched,Go(e,112).ngClassPristine,Go(e,112).ngClassDirty,Go(e,112).ngClassValid,Go(e,112).ngClassInvalid,Go(e,112).ngClassPending,Go(e,113)._isServer,Go(e,113).id,Go(e,113).placeholder,Go(e,113).disabled,Go(e,113).required,Go(e,113).readonly&&!Go(e,113)._isNativeSelect||null,Go(e,113)._ariaDescribedby||null,Go(e,113).errorState,Go(e,113).required.toString()]),t(e,122,0,Go(e,123).disabled||null,"NoopAnimations"===Go(e,123)._animationMode),t(e,124,0,Go(e,125).inline,"primary"!==Go(e,125).color&&"accent"!==Go(e,125).color&&"warn"!==Go(e,125).color)})}function ED(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-statistics",[],null,null,null,TD,SD)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,MD,[c_,Am,xf,Xl,kD,kk,Iu],null,null)],function(t,e){t(e,2,0)},null)}var AD=Ro("app-statistics",MD,ED,{},{},[]),PD=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.sortables=new Map,e._stateChanges=new H,e.start="asc",e._direction="",e.sortChange=new kn,e}return r(e,t),Object.defineProperty(e.prototype,"direction",{get:function(){return this._direction},set:function(t){if(tn()&&t&&"asc"!==t&&"desc"!==t)throw function(t){return Error(t+" is not a valid sort direction ('asc' or 'desc').")}(t);this._direction=t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disableClear",{get:function(){return this._disableClear},set:function(t){this._disableClear=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.register=function(t){if(!t.id)throw Error("MatSortHeader must be provided with a unique id.");if(this.sortables.has(t.id))throw Error("Cannot have two MatSortables with the same id ("+t.id+").");this.sortables.set(t.id,t)},e.prototype.deregister=function(t){this.sortables.delete(t.id)},e.prototype.sort=function(t){this.active!=t.id?(this.active=t.id,this.direction=t.start?t.start:this.start):this.direction=this.getNextSortDirection(t),this.sortChange.emit({active:this.active,direction:this.direction})},e.prototype.getNextSortDirection=function(t){if(!t)return"";var e,n,i=(e=null!=t.disableClear?t.disableClear:this.disableClear,n=["asc","desc"],"desc"==(t.start||this.start)&&n.reverse(),e||n.push(""),n),r=i.indexOf(this.direction)+1;return r>=i.length&&(r=0),i[r]},e.prototype.ngOnInit=function(){this._markInitialized()},e.prototype.ngOnChanges=function(){this._stateChanges.next()},e.prototype.ngOnDestroy=function(){this._stateChanges.complete()},e}(ud(rd(function(){return function(){}}()))),OD=function(){function t(){this.changes=new H,this.sortButtonLabel=function(t){return"Change sorting for "+t}}return t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}();function YD(t){return t||new OD}var RD=function(t){function e(e,n,i,r){var o=t.call(this)||this;if(o._intl=e,o._sort=i,o._columnDef=r,o._showIndicatorHint=!1,o._arrowDirection="",o._disableViewStateAnimation=!1,o.arrowPosition="after",!i)throw Error("MatSortHeader must be placed within a parent element with the MatSort directive.");return o._rerenderSubscription=ht(i.sortChange,i._stateChanges,e.changes).subscribe(function(){o._isSorted()&&o._updateArrowDirection(),!o._isSorted()&&o._viewState&&"active"===o._viewState.toState&&(o._disableViewStateAnimation=!1,o._setAnimationTransitionState({fromState:"active",toState:o._arrowDirection})),n.markForCheck()}),o}return r(e,t),Object.defineProperty(e.prototype,"disableClear",{get:function(){return this._disableClear},set:function(t){this._disableClear=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this)},e.prototype.ngOnDestroy=function(){this._sort.deregister(this),this._rerenderSubscription.unsubscribe()},e.prototype._setIndicatorHintVisible=function(t){this._isDisabled()&&t||(this._showIndicatorHint=t,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))},e.prototype._setAnimationTransitionState=function(t){this._viewState=t,this._disableViewStateAnimation&&(this._viewState={toState:t.toState})},e.prototype._handleClick=function(){if(!this._isDisabled()){this._sort.sort(this),"hint"!==this._viewState.toState&&"active"!==this._viewState.toState||(this._disableViewStateAnimation=!0);var t=this._isSorted()?{fromState:this._arrowDirection,toState:"active"}:{fromState:"active",toState:this._arrowDirection};this._setAnimationTransitionState(t),this._showIndicatorHint=!1}},e.prototype._isSorted=function(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)},e.prototype._getArrowDirectionState=function(){return(this._isSorted()?"active-":"")+this._arrowDirection},e.prototype._getArrowViewState=function(){var t=this._viewState.fromState;return(t?t+"-to-":"")+this._viewState.toState},e.prototype._updateArrowDirection=function(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start},e.prototype._isDisabled=function(){return this._sort.disabled||this.disabled},e.prototype._getAriaSortAttribute=function(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":null},e.prototype._renderArrow=function(){return!this._isDisabled()||this._isSorted()},e}(rd(function(){return function(){}}())),ID=function(){return function(){}}(),FD=Vr({encapsulation:2,styles:[".mat-sort-header-container{display:flex;cursor:pointer;align-items:center}.mat-sort-header-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-button{border:none;background:0 0;display:flex;align-items:center;padding:0;cursor:inherit;outline:0;font:inherit;color:currentColor}.mat-sort-header-button::-moz-focus-inner{border:0}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;opacity:0}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}@media (-ms-high-contrast:active){.mat-sort-header-stem{width:0;border-left:solid 2px}}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}@media (-ms-high-contrast:active){.mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}@media (-ms-high-contrast:active){.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}"],data:{animation:[{type:7,name:"indicator",definitions:[{type:0,name:"active-asc, asc",styles:{type:6,styles:{transform:"translateY(0px)"},offset:null},options:void 0},{type:0,name:"active-desc, desc",styles:{type:6,styles:{transform:"translateY(10px)"},offset:null},options:void 0},{type:1,expr:"active-asc <=> active-desc",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"leftPointer",definitions:[{type:0,name:"active-asc, asc",styles:{type:6,styles:{transform:"rotate(-45deg)"},offset:null},options:void 0},{type:0,name:"active-desc, desc",styles:{type:6,styles:{transform:"rotate(45deg)"},offset:null},options:void 0},{type:1,expr:"active-asc <=> active-desc",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"rightPointer",definitions:[{type:0,name:"active-asc, asc",styles:{type:6,styles:{transform:"rotate(45deg)"},offset:null},options:void 0},{type:0,name:"active-desc, desc",styles:{type:6,styles:{transform:"rotate(-45deg)"},offset:null},options:void 0},{type:1,expr:"active-asc <=> active-desc",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"arrowOpacity",definitions:[{type:0,name:"desc-to-active, asc-to-active, active",styles:{type:6,styles:{opacity:1},offset:null},options:void 0},{type:0,name:"desc-to-hint, asc-to-hint, hint",styles:{type:6,styles:{opacity:.54},offset:null},options:void 0},{type:0,name:"hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",styles:{type:6,styles:{opacity:0},offset:null},options:void 0},{type:1,expr:"* => asc, * => desc, * => active, * => hint, * => void",animation:{type:4,styles:null,timings:"0ms"},options:null},{type:1,expr:"* <=> *",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"arrowPosition",definitions:[{type:1,expr:"* => desc-to-hint, * => desc-to-active",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(-25%)"},offset:null},{type:6,styles:{transform:"translateY(0)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:1,expr:"* => hint-to-desc, * => active-to-desc",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(0)"},offset:null},{type:6,styles:{transform:"translateY(25%)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:1,expr:"* => asc-to-hint, * => asc-to-active",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(25%)"},offset:null},{type:6,styles:{transform:"translateY(0)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:1,expr:"* => hint-to-asc, * => active-to-asc",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{transform:"translateY(0)"},offset:null},{type:6,styles:{transform:"translateY(-25%)"},offset:null}]},timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null},{type:0,name:"desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",styles:{type:6,styles:{transform:"translateY(0)"},offset:null},options:void 0},{type:0,name:"hint-to-desc, active-to-desc, desc",styles:{type:6,styles:{transform:"translateY(-25%)"},offset:null},options:void 0},{type:0,name:"hint-to-asc, active-to-asc, asc",styles:{type:6,styles:{transform:"translateY(25%)"},offset:null},options:void 0}],options:{}},{type:7,name:"allowChildren",definitions:[{type:1,expr:"* <=> *",animation:[{type:11,selector:"@*",animation:{type:9,options:null},options:{optional:!0}}],options:null}],options:{}}]}});function zD(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","mat-sort-header-arrow"]],[[24,"@arrowOpacity",0],[24,"@arrowPosition",0],[24,"@allowChildren",0]],[[null,"@arrowPosition.start"],[null,"@arrowPosition.done"]],function(t,e,n){var i=!0,r=t.component;return"@arrowPosition.start"===e&&(i=0!=(r._disableViewStateAnimation=!0)&&i),"@arrowPosition.done"===e&&(i=0!=(r._disableViewStateAnimation=!1)&&i),i},null,null)),(t()(),yo(1,0,null,null,0,"div",[["class","mat-sort-header-stem"]],null,null,null,null,null)),(t()(),yo(2,0,null,null,3,"div",[["class","mat-sort-header-indicator"]],[[24,"@indicator",0]],null,null,null,null)),(t()(),yo(3,0,null,null,0,"div",[["class","mat-sort-header-pointer-left"]],[[24,"@leftPointer",0]],null,null,null,null)),(t()(),yo(4,0,null,null,0,"div",[["class","mat-sort-header-pointer-right"]],[[24,"@rightPointer",0]],null,null,null,null)),(t()(),yo(5,0,null,null,0,"div",[["class","mat-sort-header-pointer-middle"]],null,null,null,null,null))],null,function(t,e){var n=e.component;t(e,0,0,n._getArrowViewState(),n._getArrowViewState(),n._getArrowDirectionState()),t(e,2,0,n._getArrowDirectionState()),t(e,3,0,n._getArrowDirectionState()),t(e,4,0,n._getArrowDirectionState())})}function jD(t){return Ia(2,[(t()(),yo(0,0,null,null,4,"div",[["class","mat-sort-header-container"]],[[2,"mat-sort-header-sorted",null],[2,"mat-sort-header-position-before",null]],null,null,null,null)),(t()(),yo(1,0,null,null,1,"button",[["class","mat-sort-header-button"],["type","button"]],[[1,"disabled",0],[1,"aria-label",0]],[[null,"focus"],[null,"blur"]],function(t,e,n){var i=!0,r=t.component;return"focus"===e&&(i=!1!==r._setIndicatorHintVisible(!0)&&i),"blur"===e&&(i=!1!==r._setIndicatorHintVisible(!1)&&i),i},null,null)),La(null,0),(t()(),go(16777216,null,null,1,null,zD)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){t(e,4,0,e.component._renderArrow())},function(t,e){var n=e.component;t(e,0,0,n._isSorted(),"before"==n.arrowPosition),t(e,1,0,n._isDisabled()||null,n._intl.sortButtonLabel(n.id))})}var HD=function(){function t(){this.changes=new H,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=function(t,e,n){if(0==n||0==e)return"0 of "+n;var i=t*e;return i+1+" - "+(i<(n=Math.max(n,0))?Math.min(i+e,n):i+e)+" of "+n}}return t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}();function ND(t){return t||new HD}var VD,BD=function(t){function e(e,n){var i=t.call(this)||this;return i._intl=e,i._changeDetectorRef=n,i._pageIndex=0,i._length=0,i._pageSizeOptions=[],i._hidePageSize=!1,i._showFirstLastButtons=!1,i.page=new kn,i._intlChanges=e.changes.subscribe(function(){return i._changeDetectorRef.markForCheck()}),i}return r(e,t),Object.defineProperty(e.prototype,"pageIndex",{get:function(){return this._pageIndex},set:function(t){this._pageIndex=Math.max(Ku(t),0),this._changeDetectorRef.markForCheck()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"length",{get:function(){return this._length},set:function(t){this._length=Ku(t),this._changeDetectorRef.markForCheck()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"pageSize",{get:function(){return this._pageSize},set:function(t){this._pageSize=Math.max(Ku(t),0),this._updateDisplayedPageSizeOptions()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"pageSizeOptions",{get:function(){return this._pageSizeOptions},set:function(t){this._pageSizeOptions=(t||[]).map(function(t){return Ku(t)}),this._updateDisplayedPageSizeOptions()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hidePageSize",{get:function(){return this._hidePageSize},set:function(t){this._hidePageSize=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"showFirstLastButtons",{get:function(){return this._showFirstLastButtons},set:function(t){this._showFirstLastButtons=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){this._initialized=!0,this._updateDisplayedPageSizeOptions(),this._markInitialized()},e.prototype.ngOnDestroy=function(){this._intlChanges.unsubscribe()},e.prototype.nextPage=function(){if(this.hasNextPage()){var t=this.pageIndex;this.pageIndex++,this._emitPageEvent(t)}},e.prototype.previousPage=function(){if(this.hasPreviousPage()){var t=this.pageIndex;this.pageIndex--,this._emitPageEvent(t)}},e.prototype.firstPage=function(){if(this.hasPreviousPage()){var t=this.pageIndex;this.pageIndex=0,this._emitPageEvent(t)}},e.prototype.lastPage=function(){if(this.hasNextPage()){var t=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(t)}},e.prototype.hasPreviousPage=function(){return this.pageIndex>=1&&0!=this.pageSize},e.prototype.hasNextPage=function(){var t=this.getNumberOfPages()-1;return this.pageIndex visible",animation:{type:4,styles:{type:5,steps:[{type:6,styles:{opacity:0,transform:"scale(0)",offset:0},offset:null},{type:6,styles:{opacity:.5,transform:"scale(0.99)",offset:.5},offset:null},{type:6,styles:{opacity:1,transform:"scale(1)",offset:1},offset:null}]},timings:"200ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => hidden",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"100ms cubic-bezier(0, 0, 0.2, 1)"},options:null}],options:{}}]}});function aT(t){return Ia(2,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-tooltip"]],[[2,"mat-tooltip-handset",null],[24,"@state",0]],[[null,"@state.start"],[null,"@state.done"]],function(t,e,n){var i=!0,r=t.component;return"@state.start"===e&&(i=!1!==r._animationStart()&&i),"@state.done"===e&&(i=!1!==r._animationDone(n)&&i),i},null,null)),oa(1,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),aa(131072,Ds,[Zi]),(t()(),Oa(3,null,["",""]))],function(t,e){t(e,1,0,"mat-tooltip",e.component.tooltipClass)},function(t,e){var n,i=e.component;t(e,0,0,null==(n=jr(e,0,0,Go(e,2).transform(i._isHandset)))?null:n.matches,i._visibility),t(e,3,0,i.message)})}function lT(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-tooltip-component",[["aria-hidden","true"]],[[4,"zoom",null]],[["body","click"]],function(t,e,n){var i=!0;return"body:click"===e&&(i=!1!==Go(t,1)._handleBodyInteraction()&&i),i},aT,oT)),oa(1,180224,null,0,iT,[Zi,XD],null,null)],null,function(t,e){t(e,0,0,"visible"===Go(e,1)._visibility?1:null)})}var sT=Ro("mat-tooltip-component",iT,lT,{},{},[]),uT=0,cT=0,dT=new Lt("mat-select-scroll-strategy");function hT(t){return function(){return t.scrollStrategies.reposition()}}var pT=function(){return function(t,e){this.source=t,this.value=e}}(),fT=function(t){function e(e,n,i,r,o,a,l,s,u,c,d,h,p){var f=t.call(this,o,r,l,s,c)||this;return f._viewportRuler=e,f._changeDetectorRef=n,f._ngZone=i,f._dir=a,f._parentFormField=u,f.ngControl=c,f._liveAnnouncer=p,f._panelOpen=!1,f._required=!1,f._scrollTop=0,f._multiple=!1,f._compareWith=function(t,e){return t===e},f._uid="mat-select-"+uT++,f._destroy=new H,f._triggerFontSize=0,f._onChange=function(){},f._onTouched=function(){},f._optionIds="",f._transformOrigin="top",f._panelDoneAnimatingStream=new H,f._offsetY=0,f._positions=[{originX:"start",originY:"top",overlayX:"start",overlayY:"top"},{originX:"start",originY:"bottom",overlayX:"start",overlayY:"bottom"}],f._disableOptionCentering=!1,f._focused=!1,f.controlType="mat-select",f.ariaLabel="",f.optionSelectionChanges=Nh(function(){return f.options?ht.apply(void 0,f.options.map(function(t){return t.onSelectionChange})):f._ngZone.onStable.asObservable().pipe(Ac(1),ip(function(){return f.optionSelectionChanges}))}),f.openedChange=new kn,f._openedStream=f.openedChange.pipe(Cc(function(t){return t}),nt(function(){})),f._closedStream=f.openedChange.pipe(Cc(function(t){return!t}),nt(function(){})),f.selectionChange=new kn,f.valueChange=new kn,f.ngControl&&(f.ngControl.valueAccessor=f),f._scrollStrategyFactory=h,f._scrollStrategy=f._scrollStrategyFactory(),f.tabIndex=parseInt(d)||0,f.id=f.id,f}return r(e,t),Object.defineProperty(e.prototype,"focused",{get:function(){return this._focused||this._panelOpen},set:function(t){this._focused=t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"placeholder",{get:function(){return this._placeholder},set:function(t){this._placeholder=t,this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t),this.stateChanges.next()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"multiple",{get:function(){return this._multiple},set:function(t){if(this._selectionModel)throw Error("Cannot change `multiple` mode of select after initialization.");this._multiple=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disableOptionCentering",{get:function(){return this._disableOptionCentering},set:function(t){this._disableOptionCentering=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"compareWith",{get:function(){return this._compareWith},set:function(t){if("function"!=typeof t)throw Error("`compareWith` must be a function.");this._compareWith=t,this._selectionModel&&this._initializeSelection()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this._value},set:function(t){t!==this._value&&(this.writeValue(t),this._value=t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this._id},set:function(t){this._id=t||this._uid,this.stateChanges.next()},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){var t=this;this._selectionModel=new xM(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(cM(),fg(this._destroy)).subscribe(function(){t.panelOpen?(t._scrollTop=0,t.openedChange.emit(!0)):(t.openedChange.emit(!1),t.overlayDir.offsetX=0,t._changeDetectorRef.markForCheck())})},e.prototype.ngAfterContentInit=function(){var t=this;this._initKeyManager(),this._selectionModel.onChange.pipe(fg(this._destroy)).subscribe(function(t){t.added.forEach(function(t){return t.select()}),t.removed.forEach(function(t){return t.deselect()})}),this.options.changes.pipe(hc(null),fg(this._destroy)).subscribe(function(){t._resetOptions(),t._initializeSelection()})},e.prototype.ngDoCheck=function(){this.ngControl&&this.updateErrorState()},e.prototype.ngOnChanges=function(t){t.disabled&&this.stateChanges.next()},e.prototype.ngOnDestroy=function(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()},e.prototype.toggle=function(){this.panelOpen?this.close():this.open()},e.prototype.open=function(){var t=this;!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||"0"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(Ac(1)).subscribe(function(){t._triggerFontSize&&t.overlayDir.overlayRef&&t.overlayDir.overlayRef.overlayElement&&(t.overlayDir.overlayRef.overlayElement.style.fontSize=t._triggerFontSize+"px")}))},e.prototype.close=function(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())},e.prototype.writeValue=function(t){this.options&&this._setSelectionByValue(t)},e.prototype.registerOnChange=function(t){this._onChange=t},e.prototype.registerOnTouched=function(t){this._onTouched=t},e.prototype.setDisabledState=function(t){this.disabled=t,this._changeDetectorRef.markForCheck(),this.stateChanges.next()},Object.defineProperty(e.prototype,"panelOpen",{get:function(){return this._panelOpen},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"selected",{get:function(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"triggerValue",{get:function(){if(this.empty)return"";if(this._multiple){var t=this._selectionModel.selected.map(function(t){return t.viewValue});return this._isRtl()&&t.reverse(),t.join(", ")}return this._selectionModel.selected[0].viewValue},enumerable:!0,configurable:!0}),e.prototype._isRtl=function(){return!!this._dir&&"rtl"===this._dir.value},e.prototype._handleKeydown=function(t){this.disabled||(this.panelOpen?this._handleOpenKeydown(t):this._handleClosedKeydown(t))},e.prototype._handleClosedKeydown=function(t){var e=t.keyCode,n=40===e||38===e||37===e||39===e,i=this._keyManager;if((13===e||32===e)&&!fc(t)||(this.multiple||t.altKey)&&n)t.preventDefault(),this.open();else if(!this.multiple){var r=this.selected;36===e||35===e?(36===e?i.setFirstItemActive():i.setLastItemActive(),t.preventDefault()):i.onKeydown(t),this._liveAnnouncer&&r!==this.selected&&this._liveAnnouncer.announce(this.selected.viewValue)}},e.prototype._handleOpenKeydown=function(t){var e=t.keyCode,n=40===e||38===e,i=this._keyManager;if(36===e||35===e)t.preventDefault(),36===e?i.setFirstItemActive():i.setLastItemActive();else if(n&&t.altKey)t.preventDefault(),this.close();else if(13!==e&&32!==e||!i.activeItem||fc(t))if(this._multiple&&65===e&&t.ctrlKey){t.preventDefault();var r=this.options.some(function(t){return!t.disabled&&!t.selected});this.options.forEach(function(t){t.disabled||(r?t.select():t.deselect())})}else{var o=i.activeItemIndex;i.onKeydown(t),this._multiple&&n&&t.shiftKey&&i.activeItem&&i.activeItemIndex!==o&&i.activeItem._selectViaInteraction()}else t.preventDefault(),i.activeItem._selectViaInteraction()},e.prototype._onFocus=function(){this.disabled||(this._focused=!0,this.stateChanges.next())},e.prototype._onBlur=function(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())},e.prototype._onAttached=function(){var t=this;this.overlayDir.positionChange.pipe(Ac(1)).subscribe(function(){t._setPseudoCheckboxPaddingSize(),t._changeDetectorRef.detectChanges(),t._calculateOverlayOffsetX(),t.panel.nativeElement.scrollTop=t._scrollTop})},e.prototype._getPanelTheme=function(){return this._parentFormField?"mat-"+this._parentFormField.color:""},e.prototype._setPseudoCheckboxPaddingSize=function(){if(!cT&&this.multiple){var t=this.panel.nativeElement.querySelector(".mat-pseudo-checkbox");t&&(cT=24+t.offsetWidth)}},Object.defineProperty(e.prototype,"empty",{get:function(){return!this._selectionModel||this._selectionModel.isEmpty()},enumerable:!0,configurable:!0}),e.prototype._initializeSelection=function(){var t=this;Promise.resolve().then(function(){t._setSelectionByValue(t.ngControl?t.ngControl.value:t._value),t.stateChanges.next()})},e.prototype._setSelectionByValue=function(t){var e=this;if(this.multiple&&t){if(!Array.isArray(t))throw Error("Value must be an array in multiple-selection mode.");this._selectionModel.clear(),t.forEach(function(t){return e._selectValue(t)}),this._sortValues()}else{this._selectionModel.clear();var n=this._selectValue(t);n&&this._keyManager.setActiveItem(n)}this._changeDetectorRef.markForCheck()},e.prototype._selectValue=function(t){var e=this,n=this.options.find(function(n){try{return null!=n.value&&e._compareWith(n.value,t)}catch(i){return tn()&&console.warn(i),!1}});return n&&this._selectionModel.select(n),n},e.prototype._initKeyManager=function(){var t=this;this._keyManager=new Hc(this.options).withTypeAhead().withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withAllowedModifierKeys(["shiftKey"]),this._keyManager.tabOut.pipe(fg(this._destroy)).subscribe(function(){t.focus(),t.close()}),this._keyManager.change.pipe(fg(this._destroy)).subscribe(function(){t._panelOpen&&t.panel?t._scrollActiveOptionIntoView():t._panelOpen||t.multiple||!t._keyManager.activeItem||t._keyManager.activeItem._selectViaInteraction()})},e.prototype._resetOptions=function(){var t=this,e=ht(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(fg(e)).subscribe(function(e){t._onSelect(e.source,e.isUserInput),e.isUserInput&&!t.multiple&&t._panelOpen&&(t.close(),t.focus())}),ht.apply(void 0,this.options.map(function(t){return t._stateChanges})).pipe(fg(e)).subscribe(function(){t._changeDetectorRef.markForCheck(),t.stateChanges.next()}),this._setOptionIds()},e.prototype._onSelect=function(t,e){var n=this._selectionModel.isSelected(t);null!=t.value||this._multiple?(t.selected?this._selectionModel.select(t):this._selectionModel.deselect(t),e&&this._keyManager.setActiveItem(t),this.multiple&&(this._sortValues(),e&&this.focus())):(t.deselect(),this._selectionModel.clear(),this._propagateChanges(t.value)),n!==this._selectionModel.isSelected(t)&&this._propagateChanges(),this.stateChanges.next()},e.prototype._sortValues=function(){var t=this;if(this.multiple){var e=this.options.toArray();this._selectionModel.sort(function(n,i){return t.sortComparator?t.sortComparator(n,i,e):e.indexOf(n)-e.indexOf(i)}),this.stateChanges.next()}},e.prototype._propagateChanges=function(t){var e;e=this.multiple?this.selected.map(function(t){return t.value}):this.selected?this.selected.value:t,this._value=e,this.valueChange.emit(e),this._onChange(e),this.selectionChange.emit(new pT(this,e)),this._changeDetectorRef.markForCheck()},e.prototype._setOptionIds=function(){this._optionIds=this.options.map(function(t){return t.id}).join(" ")},e.prototype._highlightCorrectOption=function(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))},e.prototype._scrollActiveOptionIntoView=function(){var t=this._keyManager.activeItemIndex||0,e=zd(t,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=jd(t+e,this._getItemHeight(),this.panel.nativeElement.scrollTop,256)},e.prototype.focus=function(){this._elementRef.nativeElement.focus()},e.prototype._getOptionIndex=function(t){return this.options.reduce(function(e,n,i){return void 0===e?t===n?i:void 0:e},void 0)},e.prototype._calculateOverlayPosition=function(){var t=this._getItemHeight(),e=this._getItemCount(),n=Math.min(e*t,256),i=e*t-n,r=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);r+=zd(r,this.options,this.optionGroups);var o=n/2;this._scrollTop=this._calculateOverlayScroll(r,o,i),this._offsetY=this._calculateOverlayOffsetY(r,o,i),this._checkOverlayWithinViewport(i)},e.prototype._calculateOverlayScroll=function(t,e,n){var i=this._getItemHeight();return Math.min(Math.max(0,i*t-e+i/2),n)},e.prototype._getAriaLabel=function(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder},e.prototype._getAriaLabelledby=function(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null},e.prototype._getAriaActiveDescendant=function(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null},e.prototype._calculateOverlayOffsetX=function(){var t,e=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),n=this._viewportRuler.getViewportSize(),i=this._isRtl(),r=this.multiple?cT+16:32;if(this.multiple)t=cT;else{var o=this._selectionModel.selected[0]||this.options.first;t=o&&o.group?32:16}i||(t*=-1);var a=0-(e.left+t-(i?r:0)),l=e.right+t-n.width+(i?0:r);a>0?t+=a+8:l>0&&(t-=l+8),this.overlayDir.offsetX=Math.round(t),this.overlayDir.overlayRef.updatePosition()},e.prototype._calculateOverlayOffsetY=function(t,e,n){var i,r=this._getItemHeight(),o=(r-this._triggerRect.height)/2,a=Math.floor(256/r);return this._disableOptionCentering?0:(i=0===this._scrollTop?t*r:this._scrollTop===n?(t-(this._getItemCount()-a))*r+(r-(this._getItemCount()*r-256)%r):e-r/2,Math.round(-1*i-o))},e.prototype._checkOverlayWithinViewport=function(t){var e=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),i=this._triggerRect.top-8,r=n.height-this._triggerRect.bottom-8,o=Math.abs(this._offsetY),a=Math.min(this._getItemCount()*e,256)-o-this._triggerRect.height;a>r?this._adjustPanelUp(a,r):o>i?this._adjustPanelDown(o,i,t):this._transformOrigin=this._getOriginBasedOnOption()},e.prototype._adjustPanelUp=function(t,e){var n=Math.round(t-e);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin="50% bottom 0px")},e.prototype._adjustPanelDown=function(t,e,n){var i=Math.round(t-e);if(this._scrollTop+=i,this._offsetY+=i,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin="50% top 0px")},e.prototype._getOriginBasedOnOption=function(){var t=this._getItemHeight(),e=(t-this._triggerRect.height)/2;return"50% "+(Math.abs(this._offsetY)-e+t/2)+"px 0px"},e.prototype._getItemCount=function(){return this.options.length+this.optionGroups.length},e.prototype._getItemHeight=function(){return 3*this._triggerFontSize},e.prototype.setDescribedByIds=function(t){this._ariaDescribedby=t.join(" ")},e.prototype.onContainerClick=function(){this.focus(),this.open()},Object.defineProperty(e.prototype,"shouldLabelFloat",{get:function(){return this._panelOpen||!this.empty},enumerable:!0,configurable:!0}),e}(ad(ld(rd(sd(function(){return function(t,e,n,i,r){this._elementRef=t,this._defaultErrorStateMatcher=e,this._parentForm=n,this._parentFormGroup=i,this.ngControl=r}}()))))),mT=function(){return function(){}}(),gT=Vr({encapsulation:2,styles:[".mat-select{display:inline-block;width:100%;outline:0}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform .4s cubic-bezier(.25,.8,.25,1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}@media (-ms-high-contrast:active){.mat-select-panel{outline:solid 1px}}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color .4s .133s cubic-bezier(.25,.8,.25,1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}"],data:{animation:[{type:7,name:"transformPanelWrap",definitions:[{type:1,expr:"* => void",animation:{type:11,selector:"@transformPanel",animation:[{type:9,options:null}],options:{optional:!0}},options:null}],options:{}},{type:7,name:"transformPanel",definitions:[{type:0,name:"void",styles:{type:6,styles:{transform:"scaleY(0.8)",minWidth:"100%",opacity:0},offset:null},options:void 0},{type:0,name:"showing",styles:{type:6,styles:{opacity:1,minWidth:"calc(100% + 32px)",transform:"scaleY(1)"},offset:null},options:void 0},{type:0,name:"showing-multiple",styles:{type:6,styles:{opacity:1,minWidth:"calc(100% + 64px)",transform:"scaleY(1)"},offset:null},options:void 0},{type:1,expr:"void => *",animation:{type:4,styles:null,timings:"120ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"100ms 25ms linear"},options:null}],options:{}}]}});function yT(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"span",[["class","mat-select-placeholder"]],null,null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,1,0,e.component.placeholder||"\xa0")})}function _T(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"span",[],null,null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,1,0,e.component.triggerValue||"\xa0")})}function vT(t){return Ia(0,[La(null,0),(t()(),go(0,null,null,0))],null,null)}function bT(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"span",[["class","mat-select-value-text"]],null,null,null,null,null)),oa(1,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,_T)),oa(3,16384,null,0,ws,[Xi,Mn,bs],null,null),(t()(),go(16777216,null,null,1,null,vT)),oa(5,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null)],function(t,e){t(e,1,0,!!e.component.customTrigger),t(e,5,0,!0)},null)}function xT(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-select-panel-wrap"]],[[24,"@transformPanelWrap",0]],null,null,null,null)),(t()(),yo(1,0,[[2,0],["panel",1]],null,2,"div",[],[[24,"@transformPanel",0],[4,"transformOrigin",null],[4,"font-size","px"]],[[null,"@transformPanel.done"],[null,"keydown"]],function(t,e,n){var i=!0,r=t.component;return"@transformPanel.done"===e&&(i=!1!==r._panelDoneAnimatingStream.next(n.toState)&&i),"keydown"===e&&(i=!1!==r._handleKeydown(n)&&i),i},null,null)),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),La(null,1)],function(t,e){var n,i,r=e.component;t(e,2,0,("mat-select-panel ",n=r._getPanelTheme(),"mat-select-panel "+(null!=(i=n)?i.toString():"")),r.panelClass)},function(t,e){var n=e.component;t(e,0,0,void 0),t(e,1,0,n.multiple?"showing-multiple":"showing",n._transformOrigin,n._triggerFontSize)})}function wT(t){return Ia(2,[wa(402653184,1,{trigger:0}),wa(671088640,2,{panel:0}),wa(402653184,3,{overlayDir:0}),(t()(),yo(3,0,[[1,0],["trigger",1]],null,9,"div",[["aria-hidden","true"],["cdk-overlay-origin",""],["class","mat-select-trigger"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.toggle()&&i),i},null,null)),oa(4,16384,[["origin",4]],0,JM,[Ve],null,null),(t()(),yo(5,0,null,null,5,"div",[["class","mat-select-value"]],null,null,null,null,null)),oa(6,16384,null,0,bs,[],{ngSwitch:[0,"ngSwitch"]},null),(t()(),go(16777216,null,null,1,null,yT)),oa(8,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),go(16777216,null,null,1,null,bT)),oa(10,278528,null,0,xs,[Xi,Mn,bs],{ngSwitchCase:[0,"ngSwitchCase"]},null),(t()(),yo(11,0,null,null,1,"div",[["class","mat-select-arrow-wrapper"]],null,null,null,null,null)),(t()(),yo(12,0,null,null,0,"div",[["class","mat-select-arrow"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,function(t,e,n){var i=!0,r=t.component;return"backdropClick"===e&&(i=!1!==r.close()&&i),"attach"===e&&(i=!1!==r._onAttached()&&i),"detach"===e&&(i=!1!==r.close()&&i),i},xT)),oa(14,671744,[[3,4]],0,QM,[XM,Mn,Xi,ZM,[2,Zy]],{origin:[0,"origin"],positions:[1,"positions"],offsetY:[2,"offsetY"],minWidth:[3,"minWidth"],backdropClass:[4,"backdropClass"],scrollStrategy:[5,"scrollStrategy"],open:[6,"open"],hasBackdrop:[7,"hasBackdrop"],lockPosition:[8,"lockPosition"]},{backdropClick:"backdropClick",attach:"attach",detach:"detach"})],function(t,e){var n=e.component;t(e,6,0,n.empty),t(e,8,0,!0),t(e,10,0,!1),t(e,14,0,Go(e,4),n._positions,n._offsetY,null==n._triggerRect?null:n._triggerRect.width,"cdk-overlay-transparent-backdrop",n._scrollStrategy,n.panelOpen,"","")},null)}var kT=Vr({encapsulation:2,styles:[".mat-paginator{display:block}.mat-paginator-outer-container{display:flex}.mat-paginator-container{display:flex;align-items:center;justify-content:flex-end;min-height:56px;padding:0 8px;flex-wrap:wrap-reverse;width:100%}.mat-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-paginator-page-size{margin-right:0;margin-left:8px}.mat-paginator-page-size-label{margin:0 4px}.mat-paginator-page-size-select{margin:6px 4px 0 4px;width:56px}.mat-paginator-page-size-select.mat-form-field-appearance-outline{width:64px}.mat-paginator-page-size-select.mat-form-field-appearance-fill{width:64px}.mat-paginator-range-label{margin:0 32px 0 24px}.mat-paginator-range-actions{display:flex;align-items:center}.mat-paginator-icon{width:28px;fill:currentColor}[dir=rtl] .mat-paginator-icon{transform:rotate(180deg)}"],data:{}});function MT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[8,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,["",""]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function ST(t){return Ia(0,[(t()(),yo(0,0,null,null,17,"mat-form-field",[["class","mat-paginator-page-size-select mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(1,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],{color:[0,"color"]},null),wa(335544320,1,{_control:0}),wa(335544320,2,{_placeholderChild:0}),wa(335544320,3,{_labelChild:0}),wa(603979776,4,{_errorChildren:1}),wa(603979776,5,{_hintChildren:1}),wa(603979776,6,{_prefixChildren:1}),wa(603979776,7,{_suffixChildren:1}),(t()(),yo(9,0,null,1,8,"mat-select",[["class","mat-select"],["role","listbox"]],[[1,"id",0],[1,"tabindex",0],[1,"aria-label",0],[1,"aria-labelledby",0],[1,"aria-required",0],[1,"aria-disabled",0],[1,"aria-invalid",0],[1,"aria-owns",0],[1,"aria-multiselectable",0],[1,"aria-describedby",0],[1,"aria-activedescendant",0],[2,"mat-select-disabled",null],[2,"mat-select-invalid",null],[2,"mat-select-required",null],[2,"mat-select-empty",null]],[[null,"selectionChange"],[null,"keydown"],[null,"focus"],[null,"blur"]],function(t,e,n){var i=!0,r=t.component;return"keydown"===e&&(i=!1!==Go(t,11)._handleKeydown(n)&&i),"focus"===e&&(i=!1!==Go(t,11)._onFocus()&&i),"blur"===e&&(i=!1!==Go(t,11)._onBlur()&&i),"selectionChange"===e&&(i=!1!==r._changePageSize(n.value)&&i),i},wT,gT)),la(6144,null,Id,null,[fT]),oa(11,2080768,null,3,fT,[SM,Zi,Mi,md,Ve,[2,Zy],[2,Cv],[2,Ev],[2,lb],[8,null],[8,null],dT,Kc],{disabled:[0,"disabled"],value:[1,"value"],ariaLabel:[2,"ariaLabel"]},{selectionChange:"selectionChange"}),wa(603979776,8,{options:1}),wa(603979776,9,{optionGroups:1}),wa(335544320,10,{customTrigger:0}),la(2048,[[1,4]],Qv,null,[fT]),(t()(),go(16777216,null,1,1,null,MT)),oa(17,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null)],function(t,e){var n=e.component;t(e,1,0,n.color),t(e,11,0,n.disabled,n.pageSize,n._intl.itemsPerPageLabel),t(e,17,0,n._displayedPageSizeOptions)},function(t,e){t(e,0,1,["standard"==Go(e,1).appearance,"fill"==Go(e,1).appearance,"outline"==Go(e,1).appearance,"legacy"==Go(e,1).appearance,Go(e,1)._control.errorState,Go(e,1)._canLabelFloat,Go(e,1)._shouldLabelFloat(),Go(e,1)._hasFloatingLabel(),Go(e,1)._hideControlPlaceholder(),Go(e,1)._control.disabled,Go(e,1)._control.autofilled,Go(e,1)._control.focused,"accent"==Go(e,1).color,"warn"==Go(e,1).color,Go(e,1)._shouldForward("untouched"),Go(e,1)._shouldForward("touched"),Go(e,1)._shouldForward("pristine"),Go(e,1)._shouldForward("dirty"),Go(e,1)._shouldForward("valid"),Go(e,1)._shouldForward("invalid"),Go(e,1)._shouldForward("pending"),!Go(e,1)._animationsEnabled]),t(e,9,1,[Go(e,11).id,Go(e,11).tabIndex,Go(e,11)._getAriaLabel(),Go(e,11)._getAriaLabelledby(),Go(e,11).required.toString(),Go(e,11).disabled.toString(),Go(e,11).errorState,Go(e,11).panelOpen?Go(e,11)._optionIds:null,Go(e,11).multiple,Go(e,11)._ariaDescribedby||null,Go(e,11)._getAriaActiveDescendant(),Go(e,11).disabled,Go(e,11).errorState,Go(e,11).required,Go(e,11).empty])})}function CT(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"div",[],null,null,null,null,null)),(t()(),Oa(1,null,["",""]))],null,function(t,e){t(e,1,0,e.component.pageSize)})}function LT(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"div",[["class","mat-paginator-page-size"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,1,"div",[["class","mat-paginator-page-size-label"]],null,null,null,null,null)),(t()(),Oa(2,null,["",""])),(t()(),go(16777216,null,null,1,null,ST)),oa(4,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,CT)),oa(6,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,4,0,n._displayedPageSizeOptions.length>1),t(e,6,0,n._displayedPageSizeOptions.length<=1)},function(t,e){t(e,2,0,e.component._intl.itemsPerPageLabel)})}function DT(t){return Ia(0,[(t()(),yo(0,16777216,null,null,4,"button",[["class","mat-paginator-navigation-first"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,2).show()&&i),"keydown"===e&&(i=!1!==Go(t,2)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,2)._handleTouchend()&&i),"click"===e&&(i=!1!==r.firstPage()&&i),i},Nk,Hk)),oa(1,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(2,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(3,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,":svg:path",[["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"]],null,null,null,null,null)),(t()(),go(0,null,null,0))],function(t,e){var n=e.component;t(e,1,0,n._previousButtonsDisabled()),t(e,2,0,"above",n._previousButtonsDisabled(),n._intl.firstPageLabel)},function(t,e){t(e,0,0,e.component._intl.firstPageLabel,Go(e,1).disabled||null,"NoopAnimations"===Go(e,1)._animationMode)})}function TT(t){return Ia(0,[(t()(),yo(0,16777216,null,null,4,"button",[["class","mat-paginator-navigation-last"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,2).show()&&i),"keydown"===e&&(i=!1!==Go(t,2)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,2)._handleTouchend()&&i),"click"===e&&(i=!1!==r.lastPage()&&i),i},Nk,Hk)),oa(1,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(2,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(3,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(4,0,null,null,0,":svg:path",[["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],null,null,null,null,null)),(t()(),go(0,null,null,0))],function(t,e){var n=e.component;t(e,1,0,n._nextButtonsDisabled()),t(e,2,0,"above",n._nextButtonsDisabled(),n._intl.lastPageLabel)},function(t,e){t(e,0,0,e.component._intl.lastPageLabel,Go(e,1).disabled||null,"NoopAnimations"===Go(e,1)._animationMode)})}function ET(t){return Ia(2,[(t()(),yo(0,0,null,null,20,"div",[["class","mat-paginator-outer-container"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,19,"div",[["class","mat-paginator-container"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,LT)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(4,0,null,null,16,"div",[["class","mat-paginator-range-actions"]],null,null,null,null,null)),(t()(),yo(5,0,null,null,1,"div",[["class","mat-paginator-range-label"]],null,null,null,null,null)),(t()(),Oa(6,null,["",""])),(t()(),go(16777216,null,null,1,null,DT)),oa(8,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(9,16777216,null,null,4,"button",[["class","mat-paginator-navigation-previous"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,11).show()&&i),"keydown"===e&&(i=!1!==Go(t,11)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,11)._handleTouchend()&&i),"click"===e&&(i=!1!==r.previousPage()&&i),i},Nk,Hk)),oa(10,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(11,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(12,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(13,0,null,null,0,":svg:path",[["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"]],null,null,null,null,null)),(t()(),yo(14,16777216,null,null,4,"button",[["class","mat-paginator-navigation-next"],["mat-icon-button",""],["type","button"]],[[1,"aria-label",0],[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,16).show()&&i),"keydown"===e&&(i=!1!==Go(t,16)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,16)._handleTouchend()&&i),"click"===e&&(i=!1!==r.nextPage()&&i),i},Nk,Hk)),oa(15,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"]},null),oa(16,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{position:[0,"position"],disabled:[1,"disabled"],message:[2,"message"]},null),(t()(),yo(17,0,null,0,1,":svg:svg",[["class","mat-paginator-icon"],["focusable","false"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(18,0,null,null,0,":svg:path",[["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"]],null,null,null,null,null)),(t()(),go(16777216,null,null,1,null,TT)),oa(20,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){var n=e.component;t(e,3,0,!n.hidePageSize),t(e,8,0,n.showFirstLastButtons),t(e,10,0,n._previousButtonsDisabled()),t(e,11,0,"above",n._previousButtonsDisabled(),n._intl.previousPageLabel),t(e,15,0,n._nextButtonsDisabled()),t(e,16,0,"above",n._nextButtonsDisabled(),n._intl.nextPageLabel),t(e,20,0,n.showFirstLastButtons)},function(t,e){var n=e.component;t(e,6,0,n._intl.getRangeLabel(n.pageIndex,n.pageSize,n.length)),t(e,9,0,n._intl.previousPageLabel,Go(e,10).disabled||null,"NoopAnimations"===Go(e,10)._animationMode),t(e,14,0,n._intl.nextPageLabel,Go(e,15).disabled||null,"NoopAnimations"===Go(e,15)._animationMode)})}var AT=function(){function t(t,e,n,i,r,o,a,l){var s=this;this.resultService=t,this.dateAdapter=e,this.router=n,this.route=i,this.location=r,this.deviceService=o,this.matIconRegistry=a,this.domSanitizer=l,this.dataSource=new wL,this.selectedResultID=0,this.displayedColumns=["image","date","rawColor","processColor","device"],this.imageUrl=Bl.assetPath+"/assets/card_new_small.bmp",this.funnelImage="./../../../assets/filter.svg",this.fromDateParam="",this.toDateParam="",this.emailParam="",this.devicemodelParam="",this.isValidFromDate=!1,this.isValidToDate=!1,this.fromDate=new wv(null,R_.required),this.toDate=new wv(null,R_.required),this.email=new wv("",R_.email),this.devicemodel=new wv(""),this.doFilter=function(t){s.dataSource.filter=t.trim().toLowerCase()},this.selectedResult=null,e.setLocale("en-in"),this.matIconRegistry.addSvgIcon("icon_funnel",this.domSanitizer.bypassSecurityTrustResourceUrl(Bl.assetPath+"/assets/filter.svg"))}return Object.defineProperty(t.prototype,"content",{set:function(t){this.resultComponent=t},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.route.queryParams.subscribe(function(e){if(e){if(void 0===e.From){var n=new Date;t.fromDateParam=n.toJSON(),t.fromDate.setValue(n)}else t.fromDateParam=e.From,t.fromDate.setValue(new Date(Date.parse(t.fromDateParam)));if(void 0===e.To){var i=new Date;t.toDateParam=i.toJSON(),t.toDate.setValue(i)}else t.toDateParam=e.To,t.toDate.setValue(new Date(Date.parse(t.toDateParam)));t.emailParam=void 0===e.email?"":e.email,t.email.setValue(t.emailParam),t.devicemodelParam=void 0===e.devicemodel?"":e.devicemodel,t.devicemodel.setValue(t.devicemodelParam),t.selectedResultID=void 0===e.selectedResultID?0:e.selectedResultID,t.getResults()}}),this.dataSource.filterPredicate=function(t,e){return-1!==JSON.stringify(t.Device).trim().toLowerCase().indexOf(e)},this.email.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){t.email.setValue(e.trim(),{emitEvent:!1});var n=e.trim();n.length>0?t.deviceService.getEmails(n).subscribe(function(e){t.registeredEmails=e}):t.registeredEmails=[]}),this.devicemodel.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){var n=e.trim();n.length>0?t.deviceService.getDeviceModels(n).subscribe(function(e){t.registeredDevices=e}):t.registeredDevices=[]})},t.prototype.ngAfterViewInit=function(){var t=this;this.dataSource.sort=this.sort,this.dataSource.sortingDataAccessor=function(t,e){switch(e){case"date":return t.DateTime;default:return t[e]}},this.dataSource.paginator=this.paginator,this.sort.sortChange.subscribe(function(){return t.paginator.pageIndex=0}),this.picker._selectedChanged.subscribe(function(e){t.isValidFromDate=Vd.isMoment(e)},function(t){throw Error(t)}),this.picker2._selectedChanged.subscribe(function(e){t.isValidToDate=Vd.isMoment(e)},function(t){throw Error(t)})},t.prototype.resultRowClick=function(t){this.selectedResult=t,this.selectedResultID=t.Guid;var e=this.router.createUrlTree([],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam,selectedResultID:this.selectedResultID},preserveFragment:!0});this.location.go(e.toString()),this.resultComponent&&this.resultComponent.updateSelResult(this.selectedResult)},t.prototype.toUTCDate=function(t){return new Date(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds())},t.prototype.filteringResults=function(){this.fromDateParam=this.fromDate.value.toISOString(),this.toDateParam=this.toDate.value.toISOString(),this.emailParam=this.email.value.trim(),this.devicemodelParam=this.devicemodel.value.trim(),this.selectedResultID=0,this.selectedResult=null,this.handleFiltersChange()},t.prototype.handleFiltersChange=function(){this.router.navigate(["/results"],{queryParams:{From:this.fromDateParam,To:this.toDateParam,devicemodel:this.devicemodelParam,email:this.emailParam,selectedResultID:this.selectedResultID},queryParamsHandling:"merge"})},t.prototype.getResults=function(){var t=this;""!==this.fromDateParam&&""!==this.toDateParam&&this.resultService.getResults(Vd.utc(this.fromDateParam).toJSON(),Vd.utc(this.toDateParam).toJSON(),this.devicemodelParam,this.emailParam).subscribe(function(e){if(t.dataSource.data=e||[],t.selectedResultID){var n=t.selectedResultID,i=t.dataSource.data.filter(function(t){return t.Guid===n});i.length>0&&(t.selectedResult=i[0],t.resultComponent&&t.resultComponent.updateSelResult(t.selectedResult))}})},t}(),PT=Vr({encapsulation:0,styles:[["table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden;min-width:50rem}td[_ngcontent-%COMP%]{font-size:12pt;font-weight:500;cursor:pointer}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:1em;font-size:12pt;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}.mat-table__wrapper[_ngcontent-%COMP%] .mat-table[_ngcontent-%COMP%]{min-width:auto!important;width:100%!important}.mat-header-row[_ngcontent-%COMP%], .mat-row[_ngcontent-%COMP%]{width:100%}mat-form-field[_ngcontent-%COMP%]{margin-right:2.5rem;width:calc(100% - 2.5rem)}.mat-column-image[_ngcontent-%COMP%]{-o-object-fit:scale-down;object-fit:scale-down;flex:0 0 10%!important;min-width:2rem!important;width:10%!important}.mat-column-date[_ngcontent-%COMP%], .mat-column-device[_ngcontent-%COMP%], .mat-column-processColor[_ngcontent-%COMP%], .mat-column-rawColor[_ngcontent-%COMP%]{flex:0 0 15%!important;word-wrap:break-word!important;white-space:unset!important;width:15%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mat-card-image[_ngcontent-%COMP%]{margin:.5em!important;max-width:4em}.image[_ngcontent-%COMP%]{-o-object-fit:contain;object-fit:contain;max-width:80px}.tablecircle[_ngcontent-%COMP%]{height:2em;width:2em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.highlight[_ngcontent-%COMP%]{background:#dfdfdf!important}.card[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;height:90vh;margin:1rem 1rem 1rem 10px;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tp-form[_ngcontent-%COMP%]{min-width:150px;max-width:500px;width:100%} .cdk-overlay-pane{width:auto!important}"]],data:{}});function OT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[29,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function YT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(1,16384,[[25,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,[" Please enter a valid email address "]))],null,function(t,e){t(e,0,0,Go(e,1).id)})}function RT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[38,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function IT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Source "]))],null,null)}function FT(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,1,"img",[["alt","static photo"],["class","mat-card-image"],["mat-card-image",""]],[[8,"src",4]],null,null,null,null)),oa(3,16384,null,0,b_,[],null,null)],null,function(t,e){t(e,2,0,e.component.imageUrl)})}function zT(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Date "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function jT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){var n=e.context.$implicit.DateTime.toLocaleString();t(e,2,0,n)})}function HT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Raw Color "]))],null,null)}function NT(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.RawColorRGB.r,e.context.$implicit.RawColorRGB.g,e.context.$implicit.RawColorRGB.b)})}function VT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Processed Color "]))],null,null)}function BT(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.ProcessedColorRGB.r,e.context.$implicit.ProcessedColorRGB.g,e.context.$implicit.ProcessedColorRGB.b)})}function WT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Device "]))],null,null)}function UT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.DeviceModel)})}function GT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function qT(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.resultRowClick(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,2,0,i);var r=t(e,5,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,4,0,r)},null)}function XT(t){return Ia(0,[wa(402653184,1,{picker:0}),wa(402653184,2,{picker2:0}),wa(402653184,3,{sort:0}),wa(402653184,4,{paginator:0}),wa(402653184,5,{content:0}),(t()(),yo(5,0,null,null,208,"div",[["fxFlex","1 1 100%"],["fxFlexAlign","start strech"],["fxLayout","row wrap"],["fxLayoutGap","10px grid "],["style","padding-top: 60px;"]],null,null,null,null,null)),oa(6,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(7,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(8,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(9,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(10,0,null,null,199,"div",[["class","card"],["fxFlex","56"]],null,null,null,null,null)),oa(11,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(12,0,null,null,197,"div",[["fxLayout","column"],["style","min-height: 30vh; margin: 1em;"]],null,null,null,null,null)),oa(13,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(14,0,null,null,113,"div",[["fxFill",""],["fxLayout",""],["fxLayoutAlign","strech center"]],null,null,null,null,null)),oa(15,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(16,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(17,671744,null,0,Ry,[Ve,Xg,Yy,Qg],null,null),(t()(),yo(18,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(19,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,6,{_control:0}),wa(335544320,7,{_placeholderChild:0}),wa(335544320,8,{_labelChild:0}),wa(603979776,9,{_errorChildren:1}),wa(603979776,10,{_hintChildren:1}),wa(603979776,11,{_prefixChildren:1}),wa(603979776,12,{_suffixChildren:1}),(t()(),yo(27,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","From Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,28)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,28).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,28)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,28)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,30)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,30)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,30)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,30)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,37)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,37)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,37)._onInput()&&i),i},null,null)),oa(28,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(29,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(30,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(33,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(35,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(37,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[6,4]],Qv,null,[mk]),(t()(),yo(39,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,40)._button.focus()&&i),i},dC,uC)),oa(40,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,13,{_customIcon:0}),oa(42,16384,[[12,4]],0,ib,[],null,null),(t()(),yo(43,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(44,180224,[[1,4],[2,4],["picker1",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(45,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(46,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,14,{_control:0}),wa(335544320,15,{_placeholderChild:0}),wa(335544320,16,{_labelChild:0}),wa(603979776,17,{_errorChildren:1}),wa(603979776,18,{_hintChildren:1}),wa(603979776,19,{_prefixChildren:1}),wa(603979776,20,{_suffixChildren:1}),(t()(),yo(54,0,null,1,11,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","To Date"],["required",""]],[[1,"required",0],[1,"aria-haspopup",0],[1,"aria-owns",0],[1,"min",0],[1,"max",0],[8,"disabled",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,55)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,55).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,55)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,55)._compositionEnd(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,57)._onInput(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,57)._onChange()&&i),"blur"===e&&(i=!1!==Go(t,57)._onBlur()&&i),"keydown"===e&&(i=!1!==Go(t,57)._onKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,64)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,64)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,64)._onInput()&&i),i},null,null)),oa(55,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(56,16384,null,0,Rv,[],{required:[0,"required"]},null),oa(57,147456,null,0,gS,[Ve,[2,dd],[2,hd],[2,lb]],{matDatepicker:[0,"matDatepicker"]},null),la(1024,null,O_,function(t,e){return[t,e]},[Rv,gS]),la(1024,null,j_,function(t,e){return[t,e]},[V_,gS]),oa(60,540672,null,0,Tv,[[6,O_],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(62,16384,null,0,gv,[[4,q_]],null,null),la(2048,null,hk,null,[gS]),oa(64,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[6,hk],ck,Mi],{placeholder:[0,"placeholder"],required:[1,"required"]},null),la(2048,[[14,4]],Qv,null,[mk]),(t()(),yo(66,0,null,4,3,"mat-datepicker-toggle",[["class","mat-datepicker-toggle"],["matSuffix",""]],[[1,"tabindex",0],[2,"mat-datepicker-toggle-active",null],[2,"mat-accent",null],[2,"mat-warn",null]],[[null,"focus"]],function(t,e,n){var i=!0;return"focus"===e&&(i=!1!==Go(t,67)._button.focus()&&i),i},dC,uC)),oa(67,1753088,null,1,yS,[nS,Zi,[8,null]],{datepicker:[0,"datepicker"]},null),wa(335544320,21,{_customIcon:0}),oa(69,16384,[[20,4]],0,ib,[],null,null),(t()(),yo(70,16777216,null,1,1,"mat-datepicker",[],null,null,null,sC,lC)),oa(71,180224,[[1,4],[2,4],["picker2",4]],0,fS,[DS,XM,Mi,Xi,dS,[2,dd],[2,Zy],[2,As]],null,null),(t()(),yo(72,0,null,null,26,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(73,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,22,{_control:0}),wa(335544320,23,{_placeholderChild:0}),wa(335544320,24,{_labelChild:0}),wa(603979776,25,{_errorChildren:1}),wa(603979776,26,{_hintChildren:1}),wa(603979776,27,{_prefixChildren:1}),wa(603979776,28,{_suffixChildren:1}),(t()(),yo(81,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","email"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,82)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,82).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,82)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,82)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,83)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,83)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,83)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,83)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,88)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,88)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,88)._onInput()&&i),i},null,null)),oa(82,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(83,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(85,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(87,16384,null,0,gv,[[4,q_]],null,null),oa(88,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[22,4]],Qv,null,[mk]),(t()(),yo(90,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(92,1097728,[["auto",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,29,{options:1}),wa(603979776,30,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,OT)),oa(96,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),go(16777216,null,5,1,null,YT)),oa(98,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(99,0,null,null,24,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(100,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,31,{_control:0}),wa(335544320,32,{_placeholderChild:0}),wa(335544320,33,{_labelChild:0}),wa(603979776,34,{_errorChildren:1}),wa(603979776,35,{_hintChildren:1}),wa(603979776,36,{_prefixChildren:1}),wa(603979776,37,{_suffixChildren:1}),(t()(),yo(108,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","device model"],["type","text"]],[[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,109)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,109).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,109)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,109)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,110)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,110)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,110)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,110)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,115)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,115)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,115)._onInput()&&i),i},null,null)),oa(109,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(110,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(112,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(114,16384,null,0,gv,[[4,q_]],null,null),oa(115,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[31,4]],Qv,null,[mk]),(t()(),yo(117,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(119,1097728,[["autod",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,38,{options:1}),wa(603979776,39,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,RT)),oa(123,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(124,0,null,null,3,"button",[["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.filteringResults()&&i),i},Nk,Hk)),oa(125,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{disabled:[0,"disabled"],color:[1,"color"]},null),(t()(),yo(126,0,null,0,1,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"],["style","vertical-align: top; height:24pt;"],["svgIcon","icon_funnel"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(127,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],{svgIcon:[0,"svgIcon"]},null),(t()(),yo(128,0,null,null,78,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""],["matSort",""],["matSortActive","date"],["matSortDirection","asc"],["style","min-width: 30vm; \n width: 100%; min-height: inherit;"]],null,null,null,ML,kL)),oa(129,737280,[[3,4]],0,PD,[],{active:[0,"active"],direction:[1,"direction"]},null),oa(130,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,40,{_contentColumnDefs:1}),wa(603979776,41,{_contentRowDefs:1}),wa(603979776,42,{_contentHeaderRowDefs:1}),wa(603979776,43,{_contentFooterRowDefs:1}),(t()(),yo(135,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(137,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,44,{cell:0}),wa(335544320,45,{headerCell:0}),wa(335544320,46,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,IT)),oa(143,16384,null,0,hL,[Mn],null,null),la(2048,[[45,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,FT)),oa(146,16384,null,0,dL,[Mn],null,null),la(2048,[[44,4]],VC,null,[dL]),(t()(),yo(148,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(150,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,47,{cell:0}),wa(335544320,48,{headerCell:0}),wa(335544320,49,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,zT)),oa(156,16384,null,0,hL,[Mn],null,null),la(2048,[[48,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,jT)),oa(159,16384,null,0,dL,[Mn],null,null),la(2048,[[47,4]],VC,null,[dL]),(t()(),yo(161,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(163,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,50,{cell:0}),wa(335544320,51,{headerCell:0}),wa(335544320,52,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,HT)),oa(169,16384,null,0,hL,[Mn],null,null),la(2048,[[51,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,NT)),oa(172,16384,null,0,dL,[Mn],null,null),la(2048,[[50,4]],VC,null,[dL]),(t()(),yo(174,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(176,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,53,{cell:0}),wa(335544320,54,{headerCell:0}),wa(335544320,55,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,VT)),oa(182,16384,null,0,hL,[Mn],null,null),la(2048,[[54,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,BT)),oa(185,16384,null,0,dL,[Mn],null,null),la(2048,[[53,4]],VC,null,[dL]),(t()(),yo(187,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(189,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,56,{cell:0}),wa(335544320,57,{headerCell:0}),wa(335544320,58,{footerCell:0}),la(2048,[[40,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,WT)),oa(195,16384,null,0,hL,[Mn],null,null),la(2048,[[57,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,UT)),oa(198,16384,null,0,dL,[Mn],null,null),la(2048,[[56,4]],VC,null,[dL]),(t()(),yo(200,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,GT)),oa(202,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[42,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,qT)),oa(205,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[41,4]],JC,null,[yL]),(t()(),yo(207,0,null,null,2,"mat-paginator",[["class","mat-paginator"]],null,null,null,ET,kT)),oa(208,245760,[[4,4]],0,BD,[HD,Zi],{length:[0,"length"],pageSize:[1,"pageSize"],pageSizeOptions:[2,"pageSizeOptions"]},null),Ea(209,5),(t()(),yo(210,0,null,null,3,"div",[["class","card"],["fxFlex","40"],["style","overflow: auto"]],null,null,null,null,null)),oa(211,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(212,0,null,null,1,"app-details",[],null,null,null,wD,HL)),oa(213,114688,[[5,4],["details",4]],0,jL,[Am,DS],{selectedResult:[0,"selectedResult"],view:[1,"view"]},null)],function(t,e){var n=e.component;t(e,6,0,"row wrap"),t(e,7,0,"10px grid "),t(e,8,0,"start strech"),t(e,9,0,"1 1 100%"),t(e,11,0,"56"),t(e,13,0,"column"),t(e,15,0,""),t(e,16,0,"strech center"),t(e,29,0,""),t(e,30,0,n.picker),t(e,33,0,n.fromDate),t(e,37,0,"From Date",""),t(e,40,0,n.picker),t(e,56,0,""),t(e,57,0,Go(e,71)),t(e,60,0,n.toDate),t(e,64,0,"To Date",""),t(e,67,0,Go(e,71)),t(e,83,0,Go(e,92)),t(e,85,0,n.email),t(e,88,0,"email","text"),t(e,92,0,""),t(e,96,0,n.registeredEmails),t(e,98,0,n.email.hasError("email")&&!n.email.hasError("required")),t(e,110,0,Go(e,119)),t(e,112,0,n.devicemodel),t(e,115,0,"device model","text"),t(e,119,0,""),t(e,123,0,n.registeredDevices),t(e,125,0,!(n.fromDate.valid&&n.toDate.valid&&n.email.valid),"primary"),t(e,127,0,"icon_funnel"),t(e,129,0,"date","asc"),t(e,130,0,n.dataSource),t(e,137,0,"image"),t(e,150,0,"date"),t(e,163,0,"rawColor"),t(e,176,0,"processColor"),t(e,189,0,"device"),t(e,202,0,n.displayedColumns),t(e,205,0,n.displayedColumns);var i=t(e,209,0,5,10,15,25,100);t(e,208,0,100,10,i),t(e,211,0,"40"),t(e,213,0,n.selectedResult,"result")},function(t,e){t(e,18,1,["standard"==Go(e,19).appearance,"fill"==Go(e,19).appearance,"outline"==Go(e,19).appearance,"legacy"==Go(e,19).appearance,Go(e,19)._control.errorState,Go(e,19)._canLabelFloat,Go(e,19)._shouldLabelFloat(),Go(e,19)._hasFloatingLabel(),Go(e,19)._hideControlPlaceholder(),Go(e,19)._control.disabled,Go(e,19)._control.autofilled,Go(e,19)._control.focused,"accent"==Go(e,19).color,"warn"==Go(e,19).color,Go(e,19)._shouldForward("untouched"),Go(e,19)._shouldForward("touched"),Go(e,19)._shouldForward("pristine"),Go(e,19)._shouldForward("dirty"),Go(e,19)._shouldForward("valid"),Go(e,19)._shouldForward("invalid"),Go(e,19)._shouldForward("pending"),!Go(e,19)._animationsEnabled]),t(e,27,1,[Go(e,29).required?"":null,!0,(null==Go(e,30)._datepicker?null:Go(e,30)._datepicker.opened)&&Go(e,30)._datepicker.id||null,Go(e,30).min?Go(e,30)._dateAdapter.toIso8601(Go(e,30).min):null,Go(e,30).max?Go(e,30)._dateAdapter.toIso8601(Go(e,30).max):null,Go(e,30).disabled,Go(e,35).ngClassUntouched,Go(e,35).ngClassTouched,Go(e,35).ngClassPristine,Go(e,35).ngClassDirty,Go(e,35).ngClassValid,Go(e,35).ngClassInvalid,Go(e,35).ngClassPending,Go(e,37)._isServer,Go(e,37).id,Go(e,37).placeholder,Go(e,37).disabled,Go(e,37).required,Go(e,37).readonly&&!Go(e,37)._isNativeSelect||null,Go(e,37)._ariaDescribedby||null,Go(e,37).errorState,Go(e,37).required.toString()]),t(e,39,0,-1,Go(e,40).datepicker&&Go(e,40).datepicker.opened,Go(e,40).datepicker&&"accent"===Go(e,40).datepicker.color,Go(e,40).datepicker&&"warn"===Go(e,40).datepicker.color),t(e,45,1,["standard"==Go(e,46).appearance,"fill"==Go(e,46).appearance,"outline"==Go(e,46).appearance,"legacy"==Go(e,46).appearance,Go(e,46)._control.errorState,Go(e,46)._canLabelFloat,Go(e,46)._shouldLabelFloat(),Go(e,46)._hasFloatingLabel(),Go(e,46)._hideControlPlaceholder(),Go(e,46)._control.disabled,Go(e,46)._control.autofilled,Go(e,46)._control.focused,"accent"==Go(e,46).color,"warn"==Go(e,46).color,Go(e,46)._shouldForward("untouched"),Go(e,46)._shouldForward("touched"),Go(e,46)._shouldForward("pristine"),Go(e,46)._shouldForward("dirty"),Go(e,46)._shouldForward("valid"),Go(e,46)._shouldForward("invalid"),Go(e,46)._shouldForward("pending"),!Go(e,46)._animationsEnabled]),t(e,54,1,[Go(e,56).required?"":null,!0,(null==Go(e,57)._datepicker?null:Go(e,57)._datepicker.opened)&&Go(e,57)._datepicker.id||null,Go(e,57).min?Go(e,57)._dateAdapter.toIso8601(Go(e,57).min):null,Go(e,57).max?Go(e,57)._dateAdapter.toIso8601(Go(e,57).max):null,Go(e,57).disabled,Go(e,62).ngClassUntouched,Go(e,62).ngClassTouched,Go(e,62).ngClassPristine,Go(e,62).ngClassDirty,Go(e,62).ngClassValid,Go(e,62).ngClassInvalid,Go(e,62).ngClassPending,Go(e,64)._isServer,Go(e,64).id,Go(e,64).placeholder,Go(e,64).disabled,Go(e,64).required,Go(e,64).readonly&&!Go(e,64)._isNativeSelect||null,Go(e,64)._ariaDescribedby||null,Go(e,64).errorState,Go(e,64).required.toString()]),t(e,66,0,-1,Go(e,67).datepicker&&Go(e,67).datepicker.opened,Go(e,67).datepicker&&"accent"===Go(e,67).datepicker.color,Go(e,67).datepicker&&"warn"===Go(e,67).datepicker.color),t(e,72,1,["standard"==Go(e,73).appearance,"fill"==Go(e,73).appearance,"outline"==Go(e,73).appearance,"legacy"==Go(e,73).appearance,Go(e,73)._control.errorState,Go(e,73)._canLabelFloat,Go(e,73)._shouldLabelFloat(),Go(e,73)._hasFloatingLabel(),Go(e,73)._hideControlPlaceholder(),Go(e,73)._control.disabled,Go(e,73)._control.autofilled,Go(e,73)._control.focused,"accent"==Go(e,73).color,"warn"==Go(e,73).color,Go(e,73)._shouldForward("untouched"),Go(e,73)._shouldForward("touched"),Go(e,73)._shouldForward("pristine"),Go(e,73)._shouldForward("dirty"),Go(e,73)._shouldForward("valid"),Go(e,73)._shouldForward("invalid"),Go(e,73)._shouldForward("pending"),!Go(e,73)._animationsEnabled]),t(e,81,1,[Go(e,83).autocompleteAttribute,Go(e,83).autocompleteDisabled?null:"combobox",Go(e,83).autocompleteDisabled?null:"list",Go(e,83).panelOpen&&Go(e,83).activeOption?Go(e,83).activeOption.id:null,Go(e,83).autocompleteDisabled?null:Go(e,83).panelOpen.toString(),Go(e,83).autocompleteDisabled||!Go(e,83).panelOpen?null:null==Go(e,83).autocomplete?null:Go(e,83).autocomplete.id,!Go(e,83).autocompleteDisabled,Go(e,87).ngClassUntouched,Go(e,87).ngClassTouched,Go(e,87).ngClassPristine,Go(e,87).ngClassDirty,Go(e,87).ngClassValid,Go(e,87).ngClassInvalid,Go(e,87).ngClassPending,Go(e,88)._isServer,Go(e,88).id,Go(e,88).placeholder,Go(e,88).disabled,Go(e,88).required,Go(e,88).readonly&&!Go(e,88)._isNativeSelect||null,Go(e,88)._ariaDescribedby||null,Go(e,88).errorState,Go(e,88).required.toString()]),t(e,99,1,["standard"==Go(e,100).appearance,"fill"==Go(e,100).appearance,"outline"==Go(e,100).appearance,"legacy"==Go(e,100).appearance,Go(e,100)._control.errorState,Go(e,100)._canLabelFloat,Go(e,100)._shouldLabelFloat(),Go(e,100)._hasFloatingLabel(),Go(e,100)._hideControlPlaceholder(),Go(e,100)._control.disabled,Go(e,100)._control.autofilled,Go(e,100)._control.focused,"accent"==Go(e,100).color,"warn"==Go(e,100).color,Go(e,100)._shouldForward("untouched"),Go(e,100)._shouldForward("touched"),Go(e,100)._shouldForward("pristine"),Go(e,100)._shouldForward("dirty"),Go(e,100)._shouldForward("valid"),Go(e,100)._shouldForward("invalid"),Go(e,100)._shouldForward("pending"),!Go(e,100)._animationsEnabled]),t(e,108,1,[Go(e,110).autocompleteAttribute,Go(e,110).autocompleteDisabled?null:"combobox",Go(e,110).autocompleteDisabled?null:"list",Go(e,110).panelOpen&&Go(e,110).activeOption?Go(e,110).activeOption.id:null,Go(e,110).autocompleteDisabled?null:Go(e,110).panelOpen.toString(),Go(e,110).autocompleteDisabled||!Go(e,110).panelOpen?null:null==Go(e,110).autocomplete?null:Go(e,110).autocomplete.id,!Go(e,110).autocompleteDisabled,Go(e,114).ngClassUntouched,Go(e,114).ngClassTouched,Go(e,114).ngClassPristine,Go(e,114).ngClassDirty,Go(e,114).ngClassValid,Go(e,114).ngClassInvalid,Go(e,114).ngClassPending,Go(e,115)._isServer,Go(e,115).id,Go(e,115).placeholder,Go(e,115).disabled,Go(e,115).required,Go(e,115).readonly&&!Go(e,115)._isNativeSelect||null,Go(e,115)._ariaDescribedby||null,Go(e,115).errorState,Go(e,115).required.toString()]),t(e,124,0,Go(e,125).disabled||null,"NoopAnimations"===Go(e,125)._animationMode),t(e,126,0,Go(e,127).inline,"primary"!==Go(e,127).color&&"accent"!==Go(e,127).color&&"warn"!==Go(e,127).color)})}function KT(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-results",[],null,null,null,XT,PT)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,AT,[c_,dd,Am,xf,Xl,kD,kk,Iu],null,null)],function(t,e){t(e,2,0)},null)}var ZT=Ro("app-results",AT,KT,{},{},[]),JT=function(){function t(t,e){this.dialogRef=t,this.data=e}return t.prototype.ngOnInit=function(){},t.prototype.closeDialog=function(){this.dialogRef.close()},t}(),QT=function(){function t(t,e,n,i,r,o){var a=this;this.resultService=t,this.deviceService=e,this.router=n,this.route=i,this.location=r,this.dialog=o,this.toggle=!1,this.state=!0,this.dataSource=new wL,this.selectedResultID=0,this.allResults=[],this.displayedColumns=["image","date","rawColor","processColor","device"],this.imageUrl=Bl.assetPath+"/assets/card_new_small.bmp",this.emailParam="",this.email=new wv("",[R_.required,R_.email]),this.domainVerification=!1,this.doFilter=function(t){a.dataSource.filter=t.trim().toLowerCase()},this.selectedResult=null,this.subscribeToEvents()}return Object.defineProperty(t.prototype,"stateIcon",{get:function(){return this.state?"play_arrow":"stop"},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"content",{set:function(t){this.resultComponent=t},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.route.queryParams.subscribe(function(e){e&&(t.selectedResultID=+(void 0===e.selectedResultID?0:e.selectedResultID))}),this.dataSource.filterPredicate=function(t,e){return-1!==JSON.stringify(t.Device).trim().toLowerCase().indexOf(e)},this.email.valueChanges.pipe(wc(100),ip(function(t){return cc(t)})).subscribe(function(e){t.email.setValue(e.trim(),{emitEvent:!1});var n=e.trim();n.length>0?t.deviceService.getEmails(n).subscribe(function(e){t.registeredEmails=e}):t.registeredEmails=[]})},t.prototype.ngAfterViewInit=function(){},t.prototype.resultRowClick=function(t){this.selectedResult=t,this.selectedResultID=t.Guid,this.resultComponent&&this.resultComponent.updateSelResult(this.selectedResult)},t.prototype.setEmailToHub=function(){var t=this;this.state?this.email.valid&&(this.dataSource.data=[],this.emailParam=this.email.value,this.selectedResultID=0,this.selectedResult=null,this.resultService.verification(this.email.value).subscribe(function(e){!1===e?t.dialog.open(JT,{data:{error:!0,msg:"The specified email does not match any registered device. Please make sure you have sent at least one color result via email and try again."},width:"350px"}):(t.state=!t.state,t.dialog.open(JT,{data:{msg:"Results captured by the selected device will now appear as soon as they arrive.",error:!1},width:"350px"}),t.resultService.setEmailToHubConnection(t.email.value))})):(this.resultService.setEmailToHubConnection(""),this.state=!this.state)},t.prototype.handleFiltersChange=function(){this.router.navigate(["/realtime"],{queryParams:{email:this.emailParam,selectedResultID:this.selectedResultID},queryParamsHandling:"merge"})},t.prototype.subscribeToEvents=function(){var t=this;this.resultService.messageReceived.subscribe(function(e){var n=e;t.allResults.unshift(n),t.dataSource.data=t.allResults,t.resultRowClick(n)})},t.prototype.removeSpaces=function(t){return t&&t.value&&!t.value.replace(/\s/g,"").length&&t.setValue(""),null},t}(),$T=Vr({encapsulation:0,styles:[["mat-card[_ngcontent-%COMP%]{padding:50px}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden;min-width:50rem}td[_ngcontent-%COMP%]{font-size:16px;font-weight:500;cursor:pointer}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:25px;font-size:16px;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}.mat-table__wrapper[_ngcontent-%COMP%] .mat-table[_ngcontent-%COMP%]{min-width:auto!important;width:100%!important}.mat-header-row[_ngcontent-%COMP%], .mat-row[_ngcontent-%COMP%]{width:100%}mat-form-field[_ngcontent-%COMP%]{margin-right:2.5rem;width:calc(100% - 2.5rem)}.mat-column-image[_ngcontent-%COMP%]{-o-object-fit:scale-down;object-fit:scale-down;flex:0 0 10%!important;min-width:2rem!important;width:10%!important}.mat-column-date[_ngcontent-%COMP%], .mat-column-device[_ngcontent-%COMP%], .mat-column-processColor[_ngcontent-%COMP%], .mat-column-rawColor[_ngcontent-%COMP%]{flex:0 0 15%!important;word-wrap:break-word!important;white-space:unset!important;width:15%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mat-card-image[_ngcontent-%COMP%]{margin:.5em!important;max-width:4em}.image[_ngcontent-%COMP%]{-o-object-fit:contain;object-fit:contain;max-width:80px}.tablecircle[_ngcontent-%COMP%]{height:2em;width:2em;box-sizing:border-box;border-radius:100%;border:1px solid #dadada;box-shadow:0 2px 4px 0 rgba(0,0,0,.14)}.cardspage[_ngcontent-%COMP%]{width:100%;margin-top:2em;background-color:#f1f5fa;padding:0;display:flex;flex-flow:row wrap}.cardinforow[_ngcontent-%COMP%]{margin:0 1em 1em;padding:0}.carditem[_ngcontent-%COMP%]{margin-top:1em;margin-left:20px;margin-right:20px;max-width:145em}.container[_ngcontent-%COMP%]{width:100%;padding-right:0;padding-left:0;margin-right:0;margin-left:0}.highlight[_ngcontent-%COMP%]{background:#f3f3f3!important}.cardcontainer[_ngcontent-%COMP%]{margin-bottom:1em}.card[_ngcontent-%COMP%]{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);border-radius:2px;display:inline-block;height:85vh;margin:1rem 1rem 1rem 10px;position:relative;min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.blink[_ngcontent-%COMP%]{animation:1s steps(2,start) infinite blink-animation;-webkit-animation:1s steps(2,start) infinite blink-animation}@keyframes blink-animation{to{visibility:hidden}}@-webkit-keyframes blink-animation{to{visibility:hidden}}.tp-form[_ngcontent-%COMP%]{min-width:150px;max-width:500px;width:100%} .cdk-overlay-pane{width:auto!important}"]],data:{}});function tE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-option",[["class","mat-option"],["role","option"]],[[1,"tabindex",0],[2,"mat-selected",null],[2,"mat-option-multiple",null],[2,"mat-active",null],[8,"id",0],[1,"aria-selected",0],[1,"aria-disabled",0],[2,"mat-option-disabled",null]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._selectViaInteraction()&&i),"keydown"===e&&(i=!1!==Go(t,1)._handleKeydown(n)&&i),i},Qk,Zk)),oa(1,8568832,[[9,4]],0,Fd,[Ve,Zi,[2,Id],[2,Od]],{value:[0,"value"]},null),(t()(),Oa(2,0,[" "," "]))],function(t,e){t(e,1,0,e.context.$implicit)},function(t,e){t(e,0,0,Go(e,1)._getTabIndex(),Go(e,1).selected,Go(e,1).multiple,Go(e,1).active,Go(e,1).id,Go(e,1)._getAriaSelected(),Go(e,1).disabled.toString(),Go(e,1).disabled),t(e,2,0,e.context.$implicit)})}function eE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(1,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["play_arrow"]))],function(t,e){t(e,1,0)},function(t,e){t(e,0,0,Go(e,1).inline,"primary"!==Go(e,1).color&&"accent"!==Go(e,1).color&&"warn"!==Go(e,1).color)})}function nE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"mat-icon",[["class","mat-18 blink mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(1,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["stop"]))],function(t,e){t(e,1,0)},function(t,e){t(e,0,0,Go(e,1).inline,"primary"!==Go(e,1).color&&"accent"!==Go(e,1).color&&"warn"!==Go(e,1).color)})}function iE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Source "]))],null,null)}function rE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,1,"img",[["alt","static photo"],["class","mat-card-image"],["mat-card-image",""]],[[8,"src",4]],null,null,null,null)),oa(3,16384,null,0,b_,[],null,null)],null,function(t,e){t(e,2,0,e.component.imageUrl)})}function oE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Date "]))],null,null)}function aE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){var n=e.context.$implicit.DateTime.toLocaleString();t(e,2,0,n)})}function lE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Raw Color "]))],null,null)}function sE(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.RawColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.RawColorRGB.r,e.context.$implicit.RawColorRGB.g,e.context.$implicit.RawColorRGB.b)})}function uE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Processed Color "]))],null,null)}function cE(t){return Ia(0,[(t()(),yo(0,0,null,null,13,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,11,"div",[["fxLayout","row"],["fxLayoutGap","1em"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(5,0,null,null,5,"div",[["class","cardcontexttext"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,4,"div",[["class","tablecircle"]],null,null,null,null,null)),oa(7,278528,null,0,ks,[mr,Ve,qe],{ngStyle:[0,"ngStyle"]},null),Aa(8,{"background-color":0}),oa(9,933888,null,0,ek,[Ve,Xg,Qg,mr,qe,Iu,[6,ks],[2,wg],li],{ngStyle:[0,"ngStyle"]},null),Aa(10,{"background-color":0}),(t()(),yo(11,0,null,null,2,"div",[["fxLayoutAlign","start center"]],null,null,null,null,null)),oa(12,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),Oa(13,null,[" R:"," G:"," B:"," "]))],function(t,e){t(e,3,0,"row"),t(e,4,0,"1em");var n=t(e,8,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,7,0,n);var i=t(e,10,0,e.context.$implicit.ProcessedColorRGB.rgbToHex());t(e,9,0,i),t(e,12,0,"start center")},function(t,e){t(e,13,0,e.context.$implicit.ProcessedColorRGB.r,e.context.$implicit.ProcessedColorRGB.g,e.context.$implicit.ProcessedColorRGB.b)})}function dE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Device "]))],null,null)}function hE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.DeviceModel)})}function pE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function fE(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.resultRowClick(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,2,0,i);var r=t(e,5,0,n.selectedResult&&n.selectedResult===e.context.$implicit);t(e,4,0,r)},null)}function mE(t){return Ia(0,[wa(402653184,1,{content:0}),(t()(),yo(1,0,null,null,128,"div",[["fxFlex","1 1 100%"],["fxFlexAlign","start strech"],["fxLayout","row wrap"],["fxLayoutGap","10px grid "],["style","padding-top: 60px;"]],null,null,null,null,null)),oa(2,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(3,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),oa(4,671744,null,0,Py,[Ve,Xg,[2,Dy],Qg],{fxFlexAlign:[0,"fxFlexAlign"]},null),oa(5,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(6,0,null,null,119,"div",[["class","card"],["fxFlex","56"]],null,null,null,null,null)),oa(7,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(8,0,null,null,117,"mat-card",[["class","mat-card"],["fxFlex",""]],null,null,null,S_,M_)),oa(9,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(10,49152,null,0,x_,[],null,null),(t()(),yo(11,0,null,0,36,"div",[["fxLayout",""],["fxLayoutAlign","strech center"]],null,null,null,null,null)),oa(12,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(13,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(14,0,null,null,27,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(15,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,2,{_control:0}),wa(335544320,3,{_placeholderChild:0}),wa(335544320,4,{_labelChild:0}),wa(603979776,5,{_errorChildren:1}),wa(603979776,6,{_hintChildren:1}),wa(603979776,7,{_prefixChildren:1}),wa(603979776,8,{_suffixChildren:1}),(t()(),yo(23,16777216,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["matInput",""],["placeholder","email"],["type","text"]],[[8,"readOnly",0],[1,"autocomplete",0],[1,"role",0],[1,"aria-autocomplete",0],[1,"aria-activedescendant",0],[1,"aria-expanded",0],[1,"aria-owns",0],[1,"aria-haspopup",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focusin"],[null,"keydown"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,24)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,24).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,24)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,24)._compositionEnd(n.target.value)&&i),"focusin"===e&&(i=!1!==Go(t,25)._handleFocus()&&i),"blur"===e&&(i=!1!==Go(t,25)._onTouched()&&i),"input"===e&&(i=!1!==Go(t,25)._handleInput(n)&&i),"keydown"===e&&(i=!1!==Go(t,25)._handleKeydown(n)&&i),"blur"===e&&(i=!1!==Go(t,30)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,30)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,30)._onInput()&&i),i},null,null)),oa(24,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(25,147456,null,0,TC,[Ve,XM,Xi,Mi,Zi,LC,[2,Zy],[2,lb],[2,As],SM],{autocomplete:[0,"autocomplete"]},null),la(1024,null,j_,function(t,e){return[t,e]},[V_,TC]),oa(27,540672,null,0,Tv,[[8,null],[8,null],[6,j_],[2,Dv]],{form:[0,"form"]},null),la(2048,null,q_,null,[Tv]),oa(29,16384,null,0,gv,[[4,q_]],null,null),oa(30,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[2,4]],Qv,null,[mk]),(t()(),yo(32,0,null,1,6,"mat-autocomplete",[["autoActiveFirstOption",""],["class","mat-autocomplete"]],null,null,null,OC,AC)),la(6144,null,Id,null,[CC]),oa(34,1097728,[["auto",4]],2,CC,[Zi,Ve,SC],{autoActiveFirstOption:[0,"autoActiveFirstOption"]},null),wa(603979776,9,{options:1}),wa(603979776,10,{optionGroups:1}),(t()(),go(16777216,null,0,1,null,tE)),oa(38,278528,null,0,fs,[Xi,Mn,fr],{ngForOf:[0,"ngForOf"]},null),(t()(),yo(39,0,null,5,2,"mat-error",[["class","mat-error"],["role","alert"]],[[1,"id",0]],null,null,null,null)),oa(40,16384,[[5,4]],0,Jv,[],null,null),(t()(),Oa(-1,null,[" Please, enter a valid address "])),(t()(),yo(42,0,null,null,5,"button",[["color","primary"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.setEmailToHub()&&i),i},Nk,Hk)),oa(43,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),(t()(),go(16777216,null,0,1,null,eE)),oa(45,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,0,1,null,nE)),oa(47,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(48,0,null,0,77,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(49,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,11,{_contentColumnDefs:1}),wa(603979776,12,{_contentRowDefs:1}),wa(603979776,13,{_contentHeaderRowDefs:1}),wa(603979776,14,{_contentFooterRowDefs:1}),(t()(),yo(54,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(56,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,15,{cell:0}),wa(335544320,16,{headerCell:0}),wa(335544320,17,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,iE)),oa(62,16384,null,0,hL,[Mn],null,null),la(2048,[[16,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,rE)),oa(65,16384,null,0,dL,[Mn],null,null),la(2048,[[15,4]],VC,null,[dL]),(t()(),yo(67,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(69,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,18,{cell:0}),wa(335544320,19,{headerCell:0}),wa(335544320,20,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,oE)),oa(75,16384,null,0,hL,[Mn],null,null),la(2048,[[19,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,aE)),oa(78,16384,null,0,dL,[Mn],null,null),la(2048,[[18,4]],VC,null,[dL]),(t()(),yo(80,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(82,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,21,{cell:0}),wa(335544320,22,{headerCell:0}),wa(335544320,23,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,lE)),oa(88,16384,null,0,hL,[Mn],null,null),la(2048,[[22,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,sE)),oa(91,16384,null,0,dL,[Mn],null,null),la(2048,[[21,4]],VC,null,[dL]),(t()(),yo(93,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(95,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,24,{cell:0}),wa(335544320,25,{headerCell:0}),wa(335544320,26,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,uE)),oa(101,16384,null,0,hL,[Mn],null,null),la(2048,[[25,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,cE)),oa(104,16384,null,0,dL,[Mn],null,null),la(2048,[[24,4]],VC,null,[dL]),(t()(),yo(106,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(108,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,27,{cell:0}),wa(335544320,28,{headerCell:0}),wa(335544320,29,{footerCell:0}),la(2048,[[11,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,dE)),oa(114,16384,null,0,hL,[Mn],null,null),la(2048,[[28,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,hE)),oa(117,16384,null,0,dL,[Mn],null,null),la(2048,[[27,4]],VC,null,[dL]),(t()(),yo(119,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,pE)),oa(121,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[13,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,fE)),oa(124,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[12,4]],JC,null,[yL]),(t()(),yo(126,0,null,null,3,"div",[["class","card"],["fxFlex","38"],["style","overflow: auto"]],null,null,null,null,null)),oa(127,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(128,0,null,null,1,"app-details",[],null,null,null,wD,HL)),oa(129,114688,[[1,4],["details",4]],0,jL,[Am,DS],{selectedResult:[0,"selectedResult"],view:[1,"view"]},null)],function(t,e){var n=e.component;t(e,2,0,"row wrap"),t(e,3,0,"10px grid "),t(e,4,0,"start strech"),t(e,5,0,"1 1 100%"),t(e,7,0,"56"),t(e,9,0,""),t(e,12,0,""),t(e,13,0,"strech center"),t(e,25,0,Go(e,34)),t(e,27,0,n.email),t(e,30,0,"email","text"),t(e,34,0,""),t(e,38,0,n.registeredEmails),t(e,43,0,"primary"),t(e,45,0,n.state),t(e,47,0,!n.state),t(e,49,0,n.dataSource),t(e,56,0,"image"),t(e,69,0,"date"),t(e,82,0,"rawColor"),t(e,95,0,"processColor"),t(e,108,0,"device"),t(e,121,0,n.displayedColumns),t(e,124,0,n.displayedColumns),t(e,127,0,"38"),t(e,129,0,n.selectedResult,"result")},function(t,e){var n=e.component;t(e,14,1,["standard"==Go(e,15).appearance,"fill"==Go(e,15).appearance,"outline"==Go(e,15).appearance,"legacy"==Go(e,15).appearance,Go(e,15)._control.errorState,Go(e,15)._canLabelFloat,Go(e,15)._shouldLabelFloat(),Go(e,15)._hasFloatingLabel(),Go(e,15)._hideControlPlaceholder(),Go(e,15)._control.disabled,Go(e,15)._control.autofilled,Go(e,15)._control.focused,"accent"==Go(e,15).color,"warn"==Go(e,15).color,Go(e,15)._shouldForward("untouched"),Go(e,15)._shouldForward("touched"),Go(e,15)._shouldForward("pristine"),Go(e,15)._shouldForward("dirty"),Go(e,15)._shouldForward("valid"),Go(e,15)._shouldForward("invalid"),Go(e,15)._shouldForward("pending"),!Go(e,15)._animationsEnabled]),t(e,23,1,[!n.state,Go(e,25).autocompleteAttribute,Go(e,25).autocompleteDisabled?null:"combobox",Go(e,25).autocompleteDisabled?null:"list",Go(e,25).panelOpen&&Go(e,25).activeOption?Go(e,25).activeOption.id:null,Go(e,25).autocompleteDisabled?null:Go(e,25).panelOpen.toString(),Go(e,25).autocompleteDisabled||!Go(e,25).panelOpen?null:null==Go(e,25).autocomplete?null:Go(e,25).autocomplete.id,!Go(e,25).autocompleteDisabled,Go(e,29).ngClassUntouched,Go(e,29).ngClassTouched,Go(e,29).ngClassPristine,Go(e,29).ngClassDirty,Go(e,29).ngClassValid,Go(e,29).ngClassInvalid,Go(e,29).ngClassPending,Go(e,30)._isServer,Go(e,30).id,Go(e,30).placeholder,Go(e,30).disabled,Go(e,30).required,Go(e,30).readonly&&!Go(e,30)._isNativeSelect||null,Go(e,30)._ariaDescribedby||null,Go(e,30).errorState,Go(e,30).required.toString()]),t(e,39,0,Go(e,40).id),t(e,42,0,Go(e,43).disabled||null,"NoopAnimations"===Go(e,43)._animationMode)})}function gE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-real-time-results",[],null,null,null,mE,$T)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,QT,[c_,kD,Am,xf,Xl,DS],null,null)],function(t,e){t(e,2,0)},null)}var yE=Ro("app-real-time-results",QT,gE,{state:"state"},{},[]),_E=0,vE=function(){function t(){this._stateChanges=new H,this._openCloseAllActions=new H,this.id="cdk-accordion-"+_E++,this._multi=!1}return Object.defineProperty(t.prototype,"multi",{get:function(){return this._multi},set:function(t){this._multi=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.openAll=function(){this._openCloseAll(!0)},t.prototype.closeAll=function(){this._openCloseAll(!1)},t.prototype.ngOnChanges=function(t){this._stateChanges.next(t)},t.prototype.ngOnDestroy=function(){this._stateChanges.complete()},t.prototype._openCloseAll=function(t){this.multi&&this._openCloseAllActions.next(t)},t}(),bE=0,xE=function(){function t(t,e,n){var i=this;this.accordion=t,this._changeDetectorRef=e,this._expansionDispatcher=n,this._openCloseAllSubscription=x.EMPTY,this.closed=new kn,this.opened=new kn,this.destroyed=new kn,this.expandedChange=new kn,this.id="cdk-accordion-child-"+bE++,this._expanded=!1,this._disabled=!1,this._removeUniqueSelectionListener=function(){},this._removeUniqueSelectionListener=n.listen(function(t,e){i.accordion&&!i.accordion.multi&&i.accordion.id===e&&i.id!==t&&(i.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}return Object.defineProperty(t.prototype,"expanded",{get:function(){return this._expanded},set:function(t){t=Xu(t),this._expanded!==t&&(this._expanded=t,this.expandedChange.emit(t),t?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"disabled",{get:function(){return this._disabled},set:function(t){this._disabled=Xu(t)},enumerable:!0,configurable:!0}),t.prototype.ngOnDestroy=function(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()},t.prototype.toggle=function(){this.disabled||(this.expanded=!this.expanded)},t.prototype.close=function(){this.disabled||(this.expanded=!1)},t.prototype.open=function(){this.disabled||(this.expanded=!0)},t.prototype._subscribeToOpenCloseAllActions=function(){var t=this;return this.accordion._openCloseAllActions.subscribe(function(e){t.disabled||(t.expanded=e)})},t}(),wE=function(){return function(){}}(),kE=new Lt("MAT_ACCORDION"),ME=0,SE=new Lt("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS"),CE=function(t){function e(e,n,i,r,o,a,l){var s=t.call(this,e,n,i)||this;return s._viewContainerRef=r,s._animationMode=a,s._hideToggle=!1,s.afterExpand=new kn,s.afterCollapse=new kn,s._inputChanges=new H,s._headerId="mat-expansion-panel-header-"+ME++,s._bodyAnimationDone=new H,s.accordion=e,s._document=o,s._bodyAnimationDone.pipe(cM(function(t,e){return t.fromState===e.fromState&&t.toState===e.toState})).subscribe(function(t){"void"!==t.fromState&&("expanded"===t.toState?s.afterExpand.emit():"collapsed"===t.toState&&s.afterCollapse.emit())}),l&&(s.hideToggle=l.hideToggle),s}return r(e,t),Object.defineProperty(e.prototype,"hideToggle",{get:function(){return this._hideToggle||this.accordion&&this.accordion.hideToggle},set:function(t){this._hideToggle=Xu(t)},enumerable:!0,configurable:!0}),e.prototype._hasSpacing=function(){return!!this.accordion&&"default"===(this.expanded?this.accordion.displayMode:this._getExpandedState())},e.prototype._getExpandedState=function(){return this.expanded?"expanded":"collapsed"},e.prototype.ngAfterContentInit=function(){var t=this;this._lazyContent&&this.opened.pipe(hc(null),Cc(function(){return t.expanded&&!t._portal}),Ac(1)).subscribe(function(){t._portal=new rM(t._lazyContent._template,t._viewContainerRef)})},e.prototype.ngOnChanges=function(t){this._inputChanges.next(t)},e.prototype.ngOnDestroy=function(){t.prototype.ngOnDestroy.call(this),this._bodyAnimationDone.complete(),this._inputChanges.complete()},e.prototype._containsFocus=function(){if(this._body&&this._document){var t=this._document.activeElement,e=this._body.nativeElement;return t===e||e.contains(t)}return!1},e}(xE),LE=function(){function t(t,e,n,i,r){var o=this;this.panel=t,this._element=e,this._focusMonitor=n,this._changeDetectorRef=i,this._parentChangeSubscription=x.EMPTY;var a=t.accordion?t.accordion._stateChanges.pipe(Cc(function(t){return!!t.hideToggle})):sc;this._parentChangeSubscription=ht(t.opened,t.closed,a,t._inputChanges.pipe(Cc(function(t){return!(!t.hideToggle&&!t.disabled)}))).subscribe(function(){return o._changeDetectorRef.markForCheck()}),t.closed.pipe(Cc(function(){return t._containsFocus()})).subscribe(function(){return n.focusVia(e,"program")}),n.monitor(e).subscribe(function(e){e&&t.accordion&&t.accordion._handleHeaderFocus(o)}),r&&(this.expandedHeight=r.expandedHeight,this.collapsedHeight=r.collapsedHeight)}return Object.defineProperty(t.prototype,"disabled",{get:function(){return this.panel.disabled},enumerable:!0,configurable:!0}),t.prototype._toggle=function(){this.panel.toggle()},t.prototype._isExpanded=function(){return this.panel.expanded},t.prototype._getExpandedState=function(){return this.panel._getExpandedState()},t.prototype._getPanelId=function(){return this.panel.id},t.prototype._showToggle=function(){return!this.panel.hideToggle&&!this.panel.disabled},t.prototype._keydown=function(t){switch(t.keyCode){case 32:case 13:fc(t)||(t.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(t))}},t.prototype.focus=function(t){void 0===t&&(t="program"),this._focusMonitor.focusVia(this._element,t)},t.prototype.ngOnDestroy=function(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)},t}(),DE=function(){return function(){}}(),TE=function(){return function(){}}(),EE=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._hideToggle=!1,e.displayMode="default",e}return r(e,t),Object.defineProperty(e.prototype,"hideToggle",{get:function(){return this._hideToggle},set:function(t){this._hideToggle=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngAfterContentInit=function(){this._keyManager=new Nc(this._headers).withWrap()},e.prototype._handleHeaderKeydown=function(t){var e=t.keyCode,n=this._keyManager;36===e?(n.setFirstItemActive(),t.preventDefault()):35===e?(n.setLastItemActive(),t.preventDefault()):this._keyManager.onKeydown(t)},e.prototype._handleHeaderFocus=function(t){this._keyManager.updateActiveItem(t)},e}(vE),AE=function(){return function(){}}(),PE=Vr({encapsulation:2,styles:[".mat-expansion-panel{box-sizing:content-box;display:block;margin:0;border-radius:4px;overflow:hidden;transition:margin 225ms cubic-bezier(.4,0,.2,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:4px;border-top-left-radius:4px}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:4px;border-bottom-left-radius:4px}@media (-ms-high-contrast:active){.mat-expansion-panel{outline:solid 1px}}.mat-expansion-panel._mat-animation-noopable,.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px}.mat-action-row button.mat-button{margin-left:8px}[dir=rtl] .mat-action-row button.mat-button{margin-left:0;margin-right:8px}"],data:{animation:[{type:7,name:"bodyExpansion",definitions:[{type:0,name:"collapsed, void",styles:{type:6,styles:{height:"0px",visibility:"hidden"},offset:null},options:void 0},{type:0,name:"expanded",styles:{type:6,styles:{height:"*",visibility:"visible"},offset:null},options:void 0},{type:1,expr:"expanded <=> collapsed, void => collapsed",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}}]}});function OE(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function YE(t){return Ia(2,[wa(402653184,1,{_body:0}),La(null,0),(t()(),yo(2,0,[[1,0],["body",1]],null,5,"div",[["class","mat-expansion-panel-content"],["role","region"]],[[24,"@bodyExpansion",0],[1,"aria-labelledby",0],[8,"id",0]],[[null,"@bodyExpansion.done"]],function(t,e,n){var i=!0;return"@bodyExpansion.done"===e&&(i=!1!==t.component._bodyAnimationDone.next(n)&&i),i},null,null)),(t()(),yo(3,0,null,null,3,"div",[["class","mat-expansion-panel-body"]],null,null,null,null,null)),La(null,1),(t()(),go(16777216,null,null,1,null,OE)),oa(6,212992,null,0,lM,[Fe,Xi],{portal:[0,"portal"]},null),La(null,2)],function(t,e){t(e,6,0,e.component._portal)},function(t,e){var n=e.component;t(e,2,0,n._getExpandedState(),n._headerId,n.id)})}var RE=Vr({encapsulation:2,styles:[".mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:0}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-expansion-panel-header-description,.mat-expansion-panel-header-title{display:flex;flex-grow:1;margin-right:16px}[dir=rtl] .mat-expansion-panel-header-description,[dir=rtl] .mat-expansion-panel-header-title{margin-right:0;margin-left:16px}.mat-expansion-panel-header-description{flex-grow:2}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:'';display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle}"],data:{animation:[{type:7,name:"indicatorRotate",definitions:[{type:0,name:"collapsed, void",styles:{type:6,styles:{transform:"rotate(0deg)"},offset:null},options:void 0},{type:0,name:"expanded",styles:{type:6,styles:{transform:"rotate(180deg)"},offset:null},options:void 0},{type:1,expr:"expanded <=> collapsed, void => collapsed",animation:{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"},options:null}],options:{}},{type:7,name:"expansionHeight",definitions:[{type:0,name:"collapsed, void",styles:{type:6,styles:{height:"{{collapsedHeight}}"},offset:null},options:{params:{collapsedHeight:"48px"}}},{type:0,name:"expanded",styles:{type:6,styles:{height:"{{expandedHeight}}"},offset:null},options:{params:{expandedHeight:"64px"}}},{type:1,expr:"expanded <=> collapsed, void => collapsed",animation:{type:3,steps:[{type:11,selector:"@indicatorRotate",animation:{type:9,options:null},options:{optional:!0}},{type:4,styles:null,timings:"225ms cubic-bezier(0.4,0.0,0.2,1)"}],options:null},options:null}],options:{}}]}});function IE(t){return Ia(0,[(t()(),yo(0,0,null,null,0,"span",[["class","mat-expansion-indicator"]],[[24,"@indicatorRotate",0]],null,null,null,null))],null,function(t,e){t(e,0,0,e.component._getExpandedState())})}function FE(t){return Ia(2,[(t()(),yo(0,0,null,null,3,"span",[["class","mat-content"]],null,null,null,null,null)),La(null,0),La(null,1),La(null,2),(t()(),go(16777216,null,null,1,null,IE)),oa(5,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){t(e,5,0,e.component._showToggle())},null)}var zE=function(){function t(){this._vertical=!1,this._inset=!1}return Object.defineProperty(t.prototype,"vertical",{get:function(){return this._vertical},set:function(t){this._vertical=Xu(t)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"inset",{get:function(){return this._inset},set:function(t){this._inset=Xu(t)},enumerable:!0,configurable:!0}),t}(),jE=function(){return function(){}}(),HE=Vr({encapsulation:2,styles:[".mat-divider{display:block;margin:0;border-top-width:1px;border-top-style:solid}.mat-divider.mat-divider-vertical{border-top:0;border-right-width:1px;border-right-style:solid}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],data:{}});function NE(t){return Ia(2,[],null,null)}var VE=function(){function t(t,e,n,i){this.dialogRef=t,this.data=e,this.dataService=n,this.fb=i,this.categories=[{value:"Web-Development",viewValue:"Web Development"},{value:"Android-Development",viewValue:"Android Development"},{value:"IOS-Development",viewValue:"IOS Development"}],this.title="Update",this.event=new kn,this.newCard=Object.create(e.card),this.title=e.title,this.form=new kv({CardCode:new wv(this.newCard.CardCode),Version:new wv(this.newCard.Version),Batch:new wv(this.newCard.Batch),Rows:new wv(this.newCard.Rows),Columns:new wv(this.newCard.Columns),TargetIndex:new wv(this.newCard.TargetIndex),SampleWidth:new wv(this.newCard.SampleWidth),SampleHeighth:new wv(this.newCard.SampleHeighth),EnableDoubleChecking:new wv(this.newCard.EnableDoubleChecking),EnforceBarcodeDetection:new wv(this.newCard.EnforceBarcodeDetection),PDFPath:new wv(this.data.PDFPath),SCVPath:new wv(this.data.SCVPath),TempPath:new wv(this.data.Template)})}return t.prototype.ngOnInit=function(){},t.prototype.openfileDialog=function(t){},t.prototype.onCancel=function(){this.dialogRef.close("Cancel")},t.prototype.onSave=function(){this.event.emit({data:this.form.value}),this.dialogRef.close("Ok")},t}(),BE=function(){function t(t,e,n,i){var r=this;this.cardService=t,this.dialog=e,this.router=n,this.activatedRoute=i,this.dataSource=new wL,this.displayedCardColumns=["template","cardid","version","batch","columns","rows","targetIndex","update"],this.benchmarks=new wL,this.displayedBenchmarkColumns=["benchmarkid","rgb","lab","color"],this.imageUrl=Bl.assetPath+"/assets/card_new_small.bmp",this.cardDetails=new wL,this.cardProperties=[],this.displayedDetails=["valueName","value"],this.updateCard=function(t){var e=r.dialog.open(VE,{width:"50em",data:{card:t,title:"Update Card"}}),n=e.componentInstance.event.subscribe(function(t){r.cardService.updateCard(t.data),r.getCards(),r.selectedCard=t.data,r.InitCardDetails()});e.afterClosed().subscribe(function(t){n.unsubscribe()})},this.deleteCard=function(t){r.cardService.deleteCard(t),r.getCards(),r.selectedCard=new n_,r.InitCardDetails()};var o=this.router.getCurrentNavigation().extras.state;o&&(this.selectedCardCode=o.id)}return t.prototype.ngOnInit=function(){this.selectedCard=new n_,this.getCards()},t.prototype.ngAfterViewInit=function(){var t=this;this.dataSource.sort=this.sort,this.dataSource.sortingDataAccessor=function(t,e){switch(e){case"cardid":return t.CardCode;default:return t[e]}},this.dataSource.paginator=this.paginator,this.sort.sortChange.subscribe(function(){return t.paginator.pageIndex=0})},t.prototype.highlight=function(t){this.selectedCard=t,this.InitCardDetails()},t.prototype.getCards=function(){var t=this;this.cardService.getCards().subscribe(function(e){if(t.dataSource.data=e||[],t.selectedCardCode){var n=t.dataSource.data.find(function(e){return e.CardCode===t.selectedCardCode});n&&(t.selectedCard=n,t.InitCardDetails())}},function(t){return console.log(t)})},t.prototype.InitCardDetails=function(){this.cardProperties=[],this.cardProperties.push({name:"Card ID",value:this.selectedCard.CardCode}),this.cardProperties.push({name:"Version",value:String(this.selectedCard.Version)}),this.cardProperties.push({name:"Batch",value:String(this.selectedCard.Batch)}),this.cardProperties.push({name:"Rows",value:String(this.selectedCard.Rows)}),this.cardProperties.push({name:"Columns",value:String(this.selectedCard.Columns)}),this.cardProperties.push({name:"Target Index",value:String(this.selectedCard.TargetIndex)}),this.cardProperties.push({name:"Home Printed",value:String(this.selectedCard.IsHomePrinted)}),this.cardDetails.data=this.cardProperties},t.prototype.AddCard=function(){var t=this,e=this.dialog.open(VE,{width:"50em",data:{card:new n_,title:"New Card"}}),n=e.componentInstance.event.subscribe(function(e){t.cardService.addCard(e.data),t.getCards(),t.selectedCard=e.data,t.InitCardDetails()});e.afterClosed().subscribe(function(t){n.unsubscribe()})},t}(),WE=Vr({encapsulation:0,styles:[[".main-div[_ngcontent-%COMP%]{height:100vh;display:flex;justify-content:center;align-items:center;overflow:hidden;width:92%;margin-left:3em;padding-top:90px}mat-card[_ngcontent-%COMP%]{padding:0}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden}td[_ngcontent-%COMP%]{font-size:16px;font-weight:500}.cardtable[_ngcontent-%COMP%]{min-width:50rem;padding:50px;table-layout:fixed}.filesRow[_ngcontent-%COMP%]{display:table-row;vertical-align:inherit;border-color:inherit;height:48px}.filesRowContent[_ngcontent-%COMP%]{padding:0;border-bottom-width:1px;border-bottom-style:solid;font-size:16px;font-weight:500}.filesRowContent[_ngcontent-%COMP%] *[_ngcontent-%COMP%], .filesRowContent[_ngcontent-%COMP%] [_ngcontent-%COMP%]::after, .filesRowContent[_ngcontent-%COMP%] [_ngcontent-%COMP%]::before{box-sizing:border-box}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:2em;font-size:18px;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit} .mat-card-header{padding:1em!important;min-height:2em;font-size:18px;font-weight:500;color:#1a084c;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}md-list-item[_ngcontent-%COMP%]{min-height:70px!important}.mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-list-item-content[_ngcontent-%COMP%], .mat-list .mat-list-item .mat-list-item-content{width:99vw}.mat-divider[_ngcontent-%COMP%]{border-top-width:2px}mat-panel-title[_ngcontent-%COMP%]{min-height:2em;font-size:18px;background-color:inherit;font-weight:500;padding:1em!important;top:0;position:-webkit-sticky;position:sticky}.topOffset[_ngcontent-%COMP%]{margin-top:30px}.highlight[_ngcontent-%COMP%]{background:#e9edfa!important}.mat-column-delete[_ngcontent-%COMP%], .mat-column-update[_ngcontent-%COMP%]{flex:0 0 5%!important;width:5%!important}example-container[_ngcontent-%COMP%]{display:flex;flex-direction:column}.example-container[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{width:100%}span[_ngcontent-%COMP%]{font-weight:500}button[_ngcontent-%COMP%]{outline:0!important;border:0!important}.mat-card-image[_ngcontent-%COMP%]{margin:.5em!important;width:3em}.wrapcolumn[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:nth-child(1){display:block;width:50px}.mat-column-benchmarkid[_ngcontent-%COMP%]{word-wrap:break-word!important;white-space:unset!important;flex:0 0 20%!important;width:20%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mat-column-color[_ngcontent-%COMP%], .mat-column-lab[_ngcontent-%COMP%], .mat-column-rgb[_ngcontent-%COMP%]{word-wrap:break-word!important;white-space:unset!important;flex:0 0 20%!important;width:25%!important;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}"]],data:{}});function UE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Template "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function GE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,1,"img",[["alt","Photo of a Shiba Inu"],["class","mat-card-image"],["mat-card-image",""]],[[8,"src",4]],null,null,null,null)),oa(3,16384,null,0,b_,[],null,null)],null,function(t,e){t(e,2,0,e.component.imageUrl)})}function qE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Card ID "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function XE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.CardCode)})}function KE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Version "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function ZE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Version)})}function JE(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Batch "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function QE(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Batch)})}function $E(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Columns "]))],null,null)}function tA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Columns)})}function eA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Rows "]))],null,null)}function nA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Rows)})}function iA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Target Index "]))],null,null)}function rA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.TargetIndex)})}function oA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function aA(t){return Ia(0,[(t()(),yo(0,0,null,null,15,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),yo(2,0,null,null,13,"div",[["fxLayout","row"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(4,16777216,null,null,5,"button",[["color","primary"],["mat-icon-button",""],["matTooltip","Edit"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,6).show()&&i),"keydown"===e&&(i=!1!==Go(t,6)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,6)._handleTouchend()&&i),"click"===e&&(i=!1!==r.updateCard(t.context.$implicit)&&i),i},Nk,Hk)),oa(5,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),oa(6,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{message:[0,"message"]},null),(t()(),yo(7,0,null,0,2,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(8,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["edit"])),(t()(),yo(10,16777216,null,null,5,"button",[["color","warn"],["mat-icon-button",""],["matTooltip","Delete"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"],[null,"longpress"],[null,"keydown"],[null,"touchend"]],function(t,e,n){var i=!0,r=t.component;return"longpress"===e&&(i=!1!==Go(t,12).show()&&i),"keydown"===e&&(i=!1!==Go(t,12)._handleKeydown(n)&&i),"touchend"===e&&(i=!1!==Go(t,12)._handleTouchend()&&i),"click"===e&&(i=!1!==r.deleteCard(t.context.$implicit)&&i),i},Nk,Hk)),oa(11,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),oa(12,147456,null,0,nT,[XM,Ve,kM,Xi,Mi,nc,zc,$c,$D,[2,Zy],[2,eT],[2,Eu]],{message:[0,"message"]},null),(t()(),yo(13,0,null,0,2,"mat-icon",[["class","mat-18 mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(14,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["delete"]))],function(t,e){t(e,3,0,"row"),t(e,5,0,"primary"),t(e,6,0,"Edit"),t(e,8,0),t(e,11,0,"warn"),t(e,12,0,"Delete"),t(e,14,0)},function(t,e){t(e,4,0,Go(e,5).disabled||null,"NoopAnimations"===Go(e,5)._animationMode),t(e,7,0,Go(e,8).inline,"primary"!==Go(e,8).color&&"accent"!==Go(e,8).color&&"warn"!==Go(e,8).color),t(e,10,0,Go(e,11).disabled||null,"NoopAnimations"===Go(e,11)._animationMode),t(e,13,0,Go(e,14).inline,"primary"!==Go(e,14).color&&"accent"!==Go(e,14).color&&"warn"!==Go(e,14).color)})}function lA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function sA(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.highlight(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedCard.CardCode===e.context.$implicit.CardCode);t(e,2,0,i);var r=t(e,5,0,n.selectedCard.CardCode===e.context.$implicit.CardCode);t(e,4,0,r)},null)}function uA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function cA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.name)})}function dA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null)],null,null)}function hA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[""," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.value)})}function pA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function fA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,null,null,DL,LL)),la(6144,null,tL,null,[vL]),oa(2,49152,null,0,vL,[],null,null)],null,null)}function mA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","wrapcolumn mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" ID "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function gA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","wrapcolumn mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.ID)})}function yA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" RGB "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function _A(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.CardCode)})}function vA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Lab "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function bA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Version)})}function xA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Color "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function wA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Batch)})}function kA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function MA(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.highlight(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedBenchmark&&n.selectedBenchmark.ID===e.context.$implicit.ID);t(e,2,0,i);var r=t(e,5,0,n.selectedBenchmark&&n.selectedBenchmark.ID===e.context.$implicit.ID);t(e,4,0,r)},null)}function SA(t){return Ia(0,[wa(402653184,1,{sort:0}),wa(402653184,2,{paginator:0}),(t()(),yo(2,0,null,null,335,"div",[["fxLayout","column"],["fxLayoutAlign","space-around stretch"],["style","padding-top: 120px;"]],null,null,null,null,null)),oa(3,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(4,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(5,0,null,null,130,"mat-card",[["class","mat-card"],["style","margin: 2em; min-height: 10em;"]],null,null,null,S_,M_)),oa(6,49152,null,0,x_,[],null,null),(t()(),yo(7,0,null,0,128,"mat-card-content",[["class"," cardinforow mat-card-content"]],null,null,null,null,null)),oa(8,16384,null,0,__,[],null,null),(t()(),yo(9,0,null,null,126,"div",[["class","mat-elevation-z8"]],null,null,null,null,null)),(t()(),yo(10,0,null,null,4,"a",[["color","primary"],["mat-mini-fab",""],["style","margin-top: 0.5em; position: absolute; right: 20px; z-index:5;"]],[[1,"tabindex",0],[1,"disabled",0],[1,"aria-disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==Go(t,11)._haltDisabledEvents(n)&&i),"click"===e&&(i=!1!==r.AddCard()&&i),i},Bk,Vk)),oa(11,180224,null,0,zk,[nc,$c,Ve,[2,Ow]],{color:[0,"color"]},null),(t()(),yo(12,0,null,0,2,"mat-icon",[["class","mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(13,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),(t()(),Oa(-1,0,["add"])),(t()(),yo(15,0,null,null,117,"table",[["class","mat-elevation-z8 cardtable mat-table"],["mat-table",""],["matSort",""],["matSortActive","cardid"],["matSortDirection","asc"]],null,null,null,ML,kL)),oa(16,737280,[[1,4]],0,PD,[],{active:[0,"active"],direction:[1,"direction"]},null),oa(17,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,3,{_contentColumnDefs:1}),wa(603979776,4,{_contentRowDefs:1}),wa(603979776,5,{_contentHeaderRowDefs:1}),wa(603979776,6,{_contentFooterRowDefs:1}),(t()(),yo(22,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(24,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,7,{cell:0}),wa(335544320,8,{headerCell:0}),wa(335544320,9,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,UE)),oa(30,16384,null,0,hL,[Mn],null,null),la(2048,[[8,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,GE)),oa(33,16384,null,0,dL,[Mn],null,null),la(2048,[[7,4]],VC,null,[dL]),(t()(),yo(35,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(37,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,10,{cell:0}),wa(335544320,11,{headerCell:0}),wa(335544320,12,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,qE)),oa(43,16384,null,0,hL,[Mn],null,null),la(2048,[[11,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,XE)),oa(46,16384,null,0,dL,[Mn],null,null),la(2048,[[10,4]],VC,null,[dL]),(t()(),yo(48,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(50,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,13,{cell:0}),wa(335544320,14,{headerCell:0}),wa(335544320,15,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,KE)),oa(56,16384,null,0,hL,[Mn],null,null),la(2048,[[14,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,ZE)),oa(59,16384,null,0,dL,[Mn],null,null),la(2048,[[13,4]],VC,null,[dL]),(t()(),yo(61,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(63,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,16,{cell:0}),wa(335544320,17,{headerCell:0}),wa(335544320,18,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,JE)),oa(69,16384,null,0,hL,[Mn],null,null),la(2048,[[17,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,QE)),oa(72,16384,null,0,dL,[Mn],null,null),la(2048,[[16,4]],VC,null,[dL]),(t()(),yo(74,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(76,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,19,{cell:0}),wa(335544320,20,{headerCell:0}),wa(335544320,21,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,$E)),oa(82,16384,null,0,hL,[Mn],null,null),la(2048,[[20,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,tA)),oa(85,16384,null,0,dL,[Mn],null,null),la(2048,[[19,4]],VC,null,[dL]),(t()(),yo(87,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(89,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,22,{cell:0}),wa(335544320,23,{headerCell:0}),wa(335544320,24,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,eA)),oa(95,16384,null,0,hL,[Mn],null,null),la(2048,[[23,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,nA)),oa(98,16384,null,0,dL,[Mn],null,null),la(2048,[[22,4]],VC,null,[dL]),(t()(),yo(100,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(102,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,25,{cell:0}),wa(335544320,26,{headerCell:0}),wa(335544320,27,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,iA)),oa(108,16384,null,0,hL,[Mn],null,null),la(2048,[[26,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,rA)),oa(111,16384,null,0,dL,[Mn],null,null),la(2048,[[25,4]],VC,null,[dL]),(t()(),yo(113,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(115,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,28,{cell:0}),wa(335544320,29,{headerCell:0}),wa(335544320,30,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,oA)),oa(121,16384,null,0,hL,[Mn],null,null),la(2048,[[29,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,aA)),oa(124,16384,null,0,dL,[Mn],null,null),la(2048,[[28,4]],VC,null,[dL]),(t()(),yo(126,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,lA)),oa(128,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[5,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,sA)),oa(131,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[4,4]],JC,null,[yL]),(t()(),yo(133,0,null,null,2,"mat-paginator",[["class","mat-paginator"]],null,null,null,ET,kT)),oa(134,245760,[[2,4]],0,BD,[HD,Zi],{length:[0,"length"],pageSize:[1,"pageSize"],pageSizeOptions:[2,"pageSizeOptions"]},null),Ea(135,4),(t()(),yo(136,0,null,null,201,"mat-card",[["class","mat-card"],["style","margin-left: 2em; margin-right: 2em; min-height: 10em;"]],null,null,null,S_,M_)),oa(137,49152,null,0,x_,[],null,null),(t()(),yo(138,0,null,0,199,"mat-card-content",[["class"," cardinforow mat-card-content"]],null,null,null,null,null)),oa(139,16384,null,0,__,[],null,null),(t()(),yo(140,0,null,null,197,"mat-accordion",[["class","mat-accordion"]],null,null,null,null,null)),oa(141,1720320,null,1,EE,[],null,null),wa(603979776,31,{_headers:1}),la(2048,null,kE,null,[EE]),(t()(),yo(144,16777216,null,null,193,"mat-expansion-panel",[["class","mat-expansion-panel"]],[[2,"mat-expanded",null],[2,"_mat-animation-noopable",null],[2,"mat-expansion-panel-spacing",null]],null,null,YE,PE)),oa(145,1753088,null,1,CE,[[3,kE],Zi,wM,Xi,As,[2,Ow],[2,SE]],{expanded:[0,"expanded"]},null),wa(335544320,32,{_lazyContent:0}),la(256,null,kE,void 0,[]),(t()(),yo(148,0,null,0,6,"mat-expansion-panel-header",[["class","mat-expansion-panel-header"],["green-100-fg",""],["role","button"]],[[1,"id",0],[1,"tabindex",0],[1,"aria-controls",0],[1,"aria-expanded",0],[1,"aria-disabled",0],[2,"mat-expanded",null],[40,"@expansionHeight",0]],[[null,"click"],[null,"keydown"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,149)._toggle()&&i),"keydown"===e&&(i=!1!==Go(t,149)._keydown(n)&&i),i},FE,RE)),oa(149,180224,[[31,4]],0,LE,[CE,Ve,$c,Zi,[2,SE]],null,null),Aa(150,{collapsedHeight:0,expandedHeight:1}),Aa(151,{value:0,params:1}),(t()(),yo(152,0,null,0,2,"mat-panel-title",[["class","mat-expansion-panel-header-title"],["color","primary"]],null,null,null,null,null)),oa(153,16384,null,0,TE,[],null,null),(t()(),Oa(-1,null,[" Card Details "])),(t()(),yo(155,0,null,1,182,"mat-panel-description",[["class","mat-expansion-panel-header-description"]],null,null,null,null,null)),oa(156,16384,null,0,DE,[],null,null),(t()(),yo(157,0,null,null,180,"div",[["fxFlex",""]],null,null,null,null,null)),oa(158,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(159,0,null,null,178,"div",[["class","topOffset"],["fxLayout","row "],["fxLayoutGap","1.25em"]],null,null,null,null,null)),oa(160,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(161,1720320,null,0,hy,[Ve,Mi,Zy,Xg,[2,cy],Qg],{fxLayoutGap:[0,"fxLayoutGap"]},null),(t()(),yo(162,0,null,null,48,"div",[["fxFlex","30"]],null,null,null,null,null)),oa(163,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(164,0,null,null,46,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(165,49152,null,0,x_,[],null,null),(t()(),yo(166,0,null,0,2,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(167,49152,null,0,w_,[],null,null),(t()(),Oa(-1,2,[" Details "])),(t()(),yo(169,0,null,0,41,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(170,16384,null,0,__,[],null,null),(t()(),yo(171,0,null,null,39,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(172,0,null,null,38,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""]],null,null,null,ML,kL)),oa(173,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,33,{_contentColumnDefs:1}),wa(603979776,34,{_contentRowDefs:1}),wa(603979776,35,{_contentHeaderRowDefs:1}),wa(603979776,36,{_contentFooterRowDefs:1}),(t()(),yo(178,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(180,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,37,{cell:0}),wa(335544320,38,{headerCell:0}),wa(335544320,39,{footerCell:0}),la(2048,[[33,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,uA)),oa(186,16384,null,0,hL,[Mn],null,null),la(2048,[[38,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,cA)),oa(189,16384,null,0,dL,[Mn],null,null),la(2048,[[37,4]],VC,null,[dL]),(t()(),yo(191,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(193,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,40,{cell:0}),wa(335544320,41,{headerCell:0}),wa(335544320,42,{footerCell:0}),la(2048,[[33,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,dA)),oa(199,16384,null,0,hL,[Mn],null,null),la(2048,[[41,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,hA)),oa(202,16384,null,0,dL,[Mn],null,null),la(2048,[[40,4]],VC,null,[dL]),(t()(),yo(204,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,pA)),oa(206,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[35,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,fA)),oa(209,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[34,4]],JC,null,[yL]),(t()(),yo(211,0,null,null,50,"div",[["fxFlex","30"]],null,null,null,null,null)),oa(212,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(213,0,null,null,48,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(214,49152,null,0,x_,[],null,null),(t()(),yo(215,0,null,0,2,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(216,49152,null,0,w_,[],null,null),(t()(),Oa(-1,2,[" Files "])),(t()(),yo(218,0,null,0,43,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(219,16384,null,0,__,[],null,null),(t()(),yo(220,0,null,null,41,"div",[["fxLayout","column"]],null,null,null,null,null)),oa(221,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),(t()(),yo(222,0,null,null,11,"div",[["class","filesRow"],["fxFlex","100%"]],null,null,null,null,null)),oa(223,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(224,0,null,null,9,"div",[["class","filesRowContent"],["fxLayout","row"],["fxLayoutAlign"," center"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(225,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(226,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(227,0,null,null,2,"span",[["fxFlex","80"]],null,null,null,null,null)),oa(228,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),Oa(-1,null,[" Benchmark "])),(t()(),yo(230,0,null,null,3,"button",[["fxFlex","20"],["mat-button",""],["mat-raised-button",""],["style","min-width: unset;"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(231,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(232,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(234,0,null,null,1,"mat-divider",[["class","mat-divider"],["role","separator"]],[[1,"aria-orientation",0],[2,"mat-divider-vertical",null],[2,"mat-divider-horizontal",null],[2,"mat-divider-inset",null]],null,null,NE,HE)),oa(235,49152,null,0,zE,[],null,null),(t()(),yo(236,0,null,null,11,"div",[["class","filesRow"],["fxFlex","100%"]],null,null,null,null,null)),oa(237,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(238,0,null,null,9,"div",[["class","filesRowContent"],["fxLayout","row"],["fxLayoutAlign"," center"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(239,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(240,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(241,0,null,null,2,"span",[["fxFlex","80"]],null,null,null,null,null)),oa(242,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),Oa(-1,null,[" PDF "])),(t()(),yo(244,0,null,null,3,"button",[["fxFlex","20"],["mat-button",""],["mat-raised-button",""],["style","min-width: unset;"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(245,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(246,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(248,0,null,null,1,"mat-divider",[["class","mat-divider"],["role","separator"]],[[1,"aria-orientation",0],[2,"mat-divider-vertical",null],[2,"mat-divider-horizontal",null],[2,"mat-divider-inset",null]],null,null,NE,HE)),oa(249,49152,null,0,zE,[],null,null),(t()(),yo(250,0,null,null,11,"div",[["class","filesRow"],["fxFlex","100%"]],null,null,null,null,null)),oa(251,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(252,0,null,null,9,"div",[["class","filesRowContent"],["fxLayout","row"],["fxLayoutAlign"," center"],["fxLayoutWrap",""]],null,null,null,null,null)),oa(253,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(254,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(255,0,null,null,2,"span",[["fxFlex","80"]],null,null,null,null,null)),oa(256,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),Oa(-1,null,[" Template "])),(t()(),yo(258,0,null,null,3,"button",[["fxFlex","20"],["mat-button",""],["mat-raised-button",""],["style","min-width: unset;"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],null,null,Nk,Hk)),oa(259,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),oa(260,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(262,0,null,null,75,"div",[["fxFlex","32"]],null,null,null,null,null)),oa(263,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(264,0,null,null,73,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(265,49152,null,0,x_,[],null,null),(t()(),yo(266,0,null,0,2,"mat-card-header",[["class","mat-card-header"]],null,null,null,L_,C_)),oa(267,49152,null,0,w_,[],null,null),(t()(),Oa(-1,2,[" Benchmarks "])),(t()(),yo(269,0,null,0,68,"mat-card-content",[["class","mat-card-content"]],null,null,null,null,null)),oa(270,16384,null,0,__,[],null,null),(t()(),yo(271,0,null,null,66,"div",[["style"," overflow-x: auto;"]],null,null,null,null,null)),(t()(),yo(272,0,null,null,65,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""],["matSort",""]],null,null,null,ML,kL)),oa(273,737280,[[1,4]],0,PD,[],null,null),oa(274,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,43,{_contentColumnDefs:1}),wa(603979776,44,{_contentRowDefs:1}),wa(603979776,45,{_contentHeaderRowDefs:1}),wa(603979776,46,{_contentFooterRowDefs:1}),(t()(),yo(279,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(281,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,47,{cell:0}),wa(335544320,48,{headerCell:0}),wa(335544320,49,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,mA)),oa(287,16384,null,0,hL,[Mn],null,null),la(2048,[[48,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,gA)),oa(290,16384,null,0,dL,[Mn],null,null),la(2048,[[47,4]],VC,null,[dL]),(t()(),yo(292,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(294,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,50,{cell:0}),wa(335544320,51,{headerCell:0}),wa(335544320,52,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,yA)),oa(300,16384,null,0,hL,[Mn],null,null),la(2048,[[51,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,_A)),oa(303,16384,null,0,dL,[Mn],null,null),la(2048,[[50,4]],VC,null,[dL]),(t()(),yo(305,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(307,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,53,{cell:0}),wa(335544320,54,{headerCell:0}),wa(335544320,55,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,vA)),oa(313,16384,null,0,hL,[Mn],null,null),la(2048,[[54,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,bA)),oa(316,16384,null,0,dL,[Mn],null,null),la(2048,[[53,4]],VC,null,[dL]),(t()(),yo(318,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(320,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,56,{cell:0}),wa(335544320,57,{headerCell:0}),wa(335544320,58,{footerCell:0}),la(2048,[[43,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,xA)),oa(326,16384,null,0,hL,[Mn],null,null),la(2048,[[57,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,wA)),oa(329,16384,null,0,dL,[Mn],null,null),la(2048,[[56,4]],VC,null,[dL]),(t()(),yo(331,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,kA)),oa(333,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[45,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,MA)),oa(336,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[44,4]],JC,null,[yL])],function(t,e){var n=e.component;t(e,3,0,"column"),t(e,4,0,"space-around stretch"),t(e,11,0,"primary"),t(e,13,0),t(e,16,0,"cardid","asc"),t(e,17,0,n.dataSource),t(e,24,0,"template"),t(e,37,0,"cardid"),t(e,50,0,"version"),t(e,63,0,"batch"),t(e,76,0,"columns"),t(e,89,0,"rows"),t(e,102,0,"targetIndex"),t(e,115,0,"update"),t(e,128,0,n.displayedCardColumns),t(e,131,0,n.displayedCardColumns);var i=t(e,135,0,5,10,25,100);t(e,134,0,100,10,i),t(e,145,0,!0),t(e,158,0,""),t(e,160,0,"row "),t(e,161,0,"1.25em"),t(e,163,0,"30"),t(e,173,0,n.cardDetails),t(e,180,0,"valueName"),t(e,193,0,"value"),t(e,206,0,n.displayedDetails),t(e,209,0,n.displayedDetails),t(e,212,0,"30"),t(e,221,0,"column"),t(e,223,0,"100%"),t(e,225,0,"row"),t(e,226,0," center"),t(e,228,0,"80"),t(e,231,0,"20"),t(e,237,0,"100%"),t(e,239,0,"row"),t(e,240,0," center"),t(e,242,0,"80"),t(e,245,0,"20"),t(e,251,0,"100%"),t(e,253,0,"row"),t(e,254,0," center"),t(e,256,0,"80"),t(e,259,0,"20"),t(e,263,0,"32"),t(e,273,0),t(e,274,0,n.benchmarks),t(e,281,0,"benchmarkid"),t(e,294,0,"rgb"),t(e,307,0,"lab"),t(e,320,0,"color"),t(e,333,0,n.displayedBenchmarkColumns),t(e,336,0,n.displayedBenchmarkColumns)},function(t,e){t(e,10,0,Go(e,11).disabled?-1:Go(e,11).tabIndex||0,Go(e,11).disabled||null,Go(e,11).disabled.toString(),"NoopAnimations"===Go(e,11)._animationMode),t(e,12,0,Go(e,13).inline,"primary"!==Go(e,13).color&&"accent"!==Go(e,13).color&&"warn"!==Go(e,13).color),t(e,144,0,Go(e,145).expanded,"NoopAnimations"===Go(e,145)._animationMode,Go(e,145)._hasSpacing());var n=Go(e,149).panel._headerId,i=Go(e,149).disabled?-1:0,r=Go(e,149)._getPanelId(),o=Go(e,149)._isExpanded(),a=Go(e,149).panel.disabled,l=Go(e,149)._isExpanded(),s=t(e,151,0,Go(e,149)._getExpandedState(),t(e,150,0,Go(e,149).collapsedHeight,Go(e,149).expandedHeight));t(e,148,0,n,i,r,o,a,l,s),t(e,230,0,Go(e,232).disabled||null,"NoopAnimations"===Go(e,232)._animationMode),t(e,234,0,Go(e,235).vertical?"vertical":"horizontal",Go(e,235).vertical,!Go(e,235).vertical,Go(e,235).inset),t(e,244,0,Go(e,246).disabled||null,"NoopAnimations"===Go(e,246)._animationMode),t(e,248,0,Go(e,249).vertical?"vertical":"horizontal",Go(e,249).vertical,!Go(e,249).vertical,Go(e,249).inset),t(e,258,0,Go(e,260).disabled||null,"NoopAnimations"===Go(e,260)._animationMode)})}function CA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"app-cards",[],null,null,null,SA,WE)),la(4608,null,c_,c_,[ph]),la(512,null,h_,h_,[ph]),oa(3,4308992,null,0,BE,[h_,DS,Am,xf],null,null)],function(t,e){t(e,3,0)},null)}var LA=Ro("app-cards",BE,CA,{},{},[]),DA=function(){function t(t){this.resultService=t,this.dataSource=new wL,this.displayedAlgoColumns=["algorithmid","RGB","LAB","Color"]}return t.prototype.ngOnInit=function(){this.dataSource.data=this.resultService.getAlgorithm()},t.prototype.ngAfterViewInit=function(){var t=this;this.dataSource.sort=this.sort,this.dataSource.sortingDataAccessor=function(t,e){switch(e){case"algorithmid":return t.ID;default:return t[e]}},this.dataSource.paginator=this.paginator,this.sort.sortChange.subscribe(function(){return t.paginator.pageIndex=0})},t.prototype.highlight=function(t){this.selectedAlgorithm=t},t.prototype.TestAlgorithm=function(){},t}(),TA=Vr({encapsulation:0,styles:[["mat-card[_ngcontent-%COMP%]{padding:0}table[_ngcontent-%COMP%]{width:100%;overflow-x:auto;overflow-y:hidden;min-width:50rem;padding:50px}td[_ngcontent-%COMP%]{font-size:16px;font-weight:500}.mat-header-cell[_ngcontent-%COMP%], .mat-header-cell-def[_ngcontent-%COMP%], .mat-header-row[_ngcontent-%COMP%]{min-height:2em;font-size:18px;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit} .mat-card-header{padding:1em!important;min-height:2em;font-size:18px;font-weight:500;margin-bottom:5px;top:0;position:-webkit-sticky;position:sticky;z-index:1;background-color:inherit}"]],data:{}});function EA(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"th",[["class","mat-header-cell"],["mat-header-cell",""],["mat-sort-header",""],["role","columnheader"]],[[1,"aria-sort",0],[2,"mat-sort-header-disabled",null]],[[null,"click"],[null,"mouseenter"],[null,"longpress"],[null,"mouseleave"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,1)._handleClick()&&i),"mouseenter"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"longpress"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!0)&&i),"mouseleave"===e&&(i=!1!==Go(t,1)._setIndicatorHintVisible(!1)&&i),i},jD,FD)),oa(1,245760,null,0,RD,[OD,Zi,[2,PD],[2,"MAT_SORT_HEADER_COLUMN_DEF"]],{id:[0,"id"]},null),oa(2,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,0,[" Algorithm ID "]))],function(t,e){t(e,1,0,"")},function(t,e){t(e,0,0,Go(e,1)._getAriaSortAttribute(),Go(e,1)._isDisabled())})}function AA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.ID)})}function PA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" RGB "]))],null,null)}function OA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.RGB)})}function YA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" LAB "]))],null,null)}function RA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Lab)})}function IA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"th",[["class","mat-header-cell"],["mat-header-cell",""],["role","columnheader"]],null,null,null,null,null)),oa(1,16384,null,0,fL,[WC,Ve],null,null),(t()(),Oa(-1,null,[" Color "]))],null,null)}function FA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"td",[["class","mat-cell"],["mat-cell",""],["role","gridcell"]],null,null,null,null,null)),oa(1,16384,null,0,mL,[WC,Ve],null,null),(t()(),Oa(2,null,[" "," "]))],null,function(t,e){t(e,2,0,e.context.$implicit.Color)})}function zA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"tr",[["class","mat-header-row"],["mat-header-row",""],["role","row"]],null,null,null,CL,SL)),la(6144,null,$C,null,[_L]),oa(2,49152,null,0,_L,[],null,null)],null,null)}function jA(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"tr",[["class","mat-row"],["mat-row",""],["role","row"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.highlight(t.context.$implicit)&&i),i},DL,LL)),la(6144,null,tL,null,[vL]),oa(2,278528,null,0,hs,[fr,mr,Ve,qe],{ngClass:[0,"ngClass"]},null),Aa(3,{highlight:0}),oa(4,933888,null,0,Kw,[Ve,Xg,Qg,fr,mr,qe,[6,hs]],{ngClass:[0,"ngClass"]},null),Aa(5,{highlight:0}),oa(6,49152,null,0,vL,[],null,null)],function(t,e){var n=e.component,i=t(e,3,0,n.selectedAlgorithm&&n.selectedAlgorithm.ID===e.context.$implicit.ID);t(e,2,0,i);var r=t(e,5,0,n.selectedAlgorithm&&n.selectedAlgorithm.ID===e.context.$implicit.ID);t(e,4,0,r)},null)}function HA(t){return Ia(0,[wa(402653184,1,{sort:0}),wa(402653184,2,{paginator:0}),(t()(),yo(2,0,null,null,76,"div",[["style","padding-top: 120px;"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,71,"mat-card",[["class","example-card mat-card"]],null,null,null,S_,M_)),oa(4,49152,null,0,x_,[],null,null),(t()(),yo(5,0,null,0,69,"div",[["class","mat-elevation-z8"]],null,null,null,null,null)),(t()(),yo(6,0,null,null,65,"table",[["class","mat-elevation-z8 mat-table"],["mat-table",""],["matSort",""],["matSortActive","cardid"],["matSortDirection","asc"]],null,null,null,ML,kL)),oa(7,737280,[[1,4]],0,PD,[],{active:[0,"active"],direction:[1,"direction"]},null),oa(8,2342912,null,4,cL,[fr,Zi,Ve,[8,null],[2,Zy],As,nc],{dataSource:[0,"dataSource"]},null),wa(603979776,3,{_contentColumnDefs:1}),wa(603979776,4,{_contentRowDefs:1}),wa(603979776,5,{_contentHeaderRowDefs:1}),wa(603979776,6,{_contentFooterRowDefs:1}),(t()(),yo(13,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(15,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,7,{cell:0}),wa(335544320,8,{headerCell:0}),wa(335544320,9,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,EA)),oa(21,16384,null,0,hL,[Mn],null,null),la(2048,[[8,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,AA)),oa(24,16384,null,0,dL,[Mn],null,null),la(2048,[[7,4]],VC,null,[dL]),(t()(),yo(26,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(28,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,10,{cell:0}),wa(335544320,11,{headerCell:0}),wa(335544320,12,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,PA)),oa(34,16384,null,0,hL,[Mn],null,null),la(2048,[[11,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,OA)),oa(37,16384,null,0,dL,[Mn],null,null),la(2048,[[10,4]],VC,null,[dL]),(t()(),yo(39,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(41,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,13,{cell:0}),wa(335544320,14,{headerCell:0}),wa(335544320,15,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,YA)),oa(47,16384,null,0,hL,[Mn],null,null),la(2048,[[14,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,RA)),oa(50,16384,null,0,dL,[Mn],null,null),la(2048,[[13,4]],VC,null,[dL]),(t()(),yo(52,0,null,null,12,null,null,null,null,null,null,null)),la(6144,null,"MAT_SORT_HEADER_COLUMN_DEF",null,[pL]),oa(54,16384,null,3,pL,[],{name:[0,"name"]},null),wa(335544320,16,{cell:0}),wa(335544320,17,{headerCell:0}),wa(335544320,18,{footerCell:0}),la(2048,[[3,4]],WC,null,[pL]),(t()(),go(0,null,null,2,null,IA)),oa(60,16384,null,0,hL,[Mn],null,null),la(2048,[[17,4]],BC,null,[hL]),(t()(),go(0,null,null,2,null,FA)),oa(63,16384,null,0,dL,[Mn],null,null),la(2048,[[16,4]],VC,null,[dL]),(t()(),yo(65,0,null,null,6,"tbody",[],null,null,null,null,null)),(t()(),go(0,null,null,2,null,zA)),oa(67,540672,null,0,gL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[5,4]],KC,null,[gL]),(t()(),go(0,null,null,2,null,jA)),oa(70,540672,null,0,yL,[Mn,fr],{columns:[0,"columns"]},null),la(2048,[[4,4]],JC,null,[yL]),(t()(),yo(72,0,null,null,2,"mat-paginator",[["class","mat-paginator"]],null,null,null,ET,kT)),oa(73,245760,[[2,4]],0,BD,[HD,Zi],{length:[0,"length"],pageSize:[1,"pageSize"],pageSizeOptions:[2,"pageSizeOptions"]},null),Ea(74,4),(t()(),yo(75,0,null,null,3,"a",[["color","primary"],["mat-fab",""],["style"," position: absolute; bottom: 2em; right: 3em; z-index:5; "]],[[1,"tabindex",0],[1,"disabled",0],[1,"aria-disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==Go(t,76)._haltDisabledEvents(n)&&i),"click"===e&&(i=!1!==r.TestAlgorithm()&&i),i},Bk,Vk)),oa(76,180224,null,0,zk,[nc,$c,Ve,[2,Ow]],{color:[0,"color"]},null),(t()(),yo(77,0,null,0,1,"span",[],null,null,null,null,null)),(t()(),Oa(-1,null,[" TEST "]))],function(t,e){var n=e.component;t(e,7,0,"cardid","asc"),t(e,8,0,n.dataSource),t(e,15,0,"algorithmid"),t(e,28,0,"RGB"),t(e,41,0,"LAB"),t(e,54,0,"Color"),t(e,67,0,n.displayedAlgoColumns),t(e,70,0,n.displayedAlgoColumns);var i=t(e,74,0,5,10,25,100);t(e,73,0,100,10,i),t(e,76,0,"primary")},function(t,e){t(e,75,0,Go(e,76).disabled?-1:Go(e,76).tabIndex||0,Go(e,76).disabled||null,Go(e,76).disabled.toString(),"NoopAnimations"===Go(e,76)._animationMode)})}function NA(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-algorithm",[],null,null,null,HA,TA)),la(512,null,c_,c_,[ph]),oa(2,4308992,null,0,DA,[c_],null,null)],function(t,e){t(e,2,0)},null)}var VA=Ro("app-algorithm",DA,NA,{},{},[]),BA=function(){function t(){}return t.prototype.ngOnInit=function(){},t}(),WA=Vr({encapsulation:0,styles:[[""]],data:{}});function UA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"h2",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Page not found"]))],null,null)}function GA(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-page-not-found",[],null,null,null,UA,WA)),oa(1,114688,null,0,BA,[],null,null)],function(t,e){t(e,1,0)},null)}var qA=Ro("app-page-not-found",BA,GA,{},{},[]),XA=function(){return function(){this.data=null,this.hasBackdrop=!0,this.disableClose=!1,this.ariaLabel=null,this.closeOnNavigation=!0,this.autoFocus=!1,this.restoreFocus=!0}}(),KA=function(t){function e(e,n,i,r,o,a){var l=t.call(this)||this;return l._elementRef=e,l._changeDetectorRef=n,l._focusTrapFactory=i,l.bottomSheetConfig=a,l._animationState="void",l._animationStateChanged=new kn,l._elementFocusedBeforeOpened=null,l._document=o,l._breakpointSubscription=r.observe([ZD.Medium,ZD.Large,ZD.XLarge]).subscribe(function(){l._toggleClass("mat-bottom-sheet-container-medium",r.isMatched(ZD.Medium)),l._toggleClass("mat-bottom-sheet-container-large",r.isMatched(ZD.Large)),l._toggleClass("mat-bottom-sheet-container-xlarge",r.isMatched(ZD.XLarge))}),l}return r(e,t),e.prototype.attachComponentPortal=function(t){return this._validatePortalAttached(),this._setPanelClass(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(t)},e.prototype.attachTemplatePortal=function(t){return this._validatePortalAttached(),this._setPanelClass(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(t)},e.prototype.enter=function(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges())},e.prototype.exit=function(){this._destroyed||(this._animationState="hidden",this._changeDetectorRef.markForCheck())},e.prototype.ngOnDestroy=function(){this._breakpointSubscription.unsubscribe(),this._destroyed=!0},e.prototype._onAnimationDone=function(t){"hidden"===t.toState?this._restoreFocus():"visible"===t.toState&&this.bottomSheetConfig.autoFocus&&this._trapFocus(),this._animationStateChanged.emit(t)},e.prototype._onAnimationStart=function(t){this._animationStateChanged.emit(t)},e.prototype._toggleClass=function(t,e){var n=this._elementRef.nativeElement.classList;e?n.add(t):n.remove(t)},e.prototype._validatePortalAttached=function(){if(this._portalOutlet.hasAttached())throw Error("Attempting to attach bottom sheet content after content is already attached")},e.prototype._setPanelClass=function(){var t=this._elementRef.nativeElement,e=this.bottomSheetConfig.panelClass;Array.isArray(e)?e.forEach(function(e){return t.classList.add(e)}):e&&t.classList.add(e)},e.prototype._trapFocus=function(){this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement)),this._focusTrap.focusInitialElementWhenReady()},e.prototype._restoreFocus=function(){var t=this._elementFocusedBeforeOpened;this.bottomSheetConfig.restoreFocus&&t&&"function"==typeof t.focus&&t.focus(),this._focusTrap&&this._focusTrap.destroy()},e.prototype._savePreviouslyFocusedElement=function(){var t=this;this._elementFocusedBeforeOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(function(){return t._elementRef.nativeElement.focus()})},e}(oM),ZA=function(){return function(){}}(),JA=Vr({encapsulation:2,styles:[".mat-bottom-sheet-container{padding:8px 16px;min-width:100vw;box-sizing:border-box;display:block;outline:0;max-height:80vh;overflow:auto}@media (-ms-high-contrast:active){.mat-bottom-sheet-container{outline:1px solid}}.mat-bottom-sheet-container-large,.mat-bottom-sheet-container-medium,.mat-bottom-sheet-container-xlarge{border-top-left-radius:4px;border-top-right-radius:4px}.mat-bottom-sheet-container-medium{min-width:384px;max-width:calc(100vw - 128px)}.mat-bottom-sheet-container-large{min-width:512px;max-width:calc(100vw - 256px)}.mat-bottom-sheet-container-xlarge{min-width:576px;max-width:calc(100vw - 384px)}"],data:{animation:[{type:7,name:"state",definitions:[{type:0,name:"void, hidden",styles:{type:6,styles:{transform:"translateY(100%)"},offset:null},options:void 0},{type:0,name:"visible",styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},options:void 0},{type:1,expr:"visible => void, visible => hidden",animation:{type:4,styles:null,timings:"375ms cubic-bezier(0.4,0.0,1,1)"},options:null},{type:1,expr:"void => visible",animation:{type:4,styles:null,timings:"195ms cubic-bezier(0.0,0.0,0.2,1)"},options:null}],options:{}}]}});function QA(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function $A(t){return Ia(2,[wa(402653184,1,{_portalOutlet:0}),(t()(),go(16777216,null,null,1,null,QA)),oa(2,212992,[[1,4]],0,lM,[Fe,Xi],{portal:[0,"portal"]},null)],function(t,e){t(e,2,0,"")},null)}function tP(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"mat-bottom-sheet-container",[["aria-modal","true"],["class","mat-bottom-sheet-container"],["role","dialog"],["tabindex","-1"]],[[1,"aria-label",0],[40,"@state",0]],[["component","@state.start"],["component","@state.done"]],function(t,e,n){var i=!0;return"component:@state.start"===e&&(i=!1!==Go(t,1)._onAnimationStart(n)&&i),"component:@state.done"===e&&(i=!1!==Go(t,1)._onAnimationDone(n)&&i),i},$A,JA)),oa(1,180224,null,0,KA,[Ve,Zi,Gc,XD,[2,As],XA],null,null)],null,function(t,e){t(e,0,0,null==Go(e,1).bottomSheetConfig?null:Go(e,1).bottomSheetConfig.ariaLabel,Go(e,1)._animationState)})}var eP=Ro("mat-bottom-sheet-container",KA,tP,{},{},[]),nP=function(){function t(t,e){var n=this;this._overlayRef=e,this._afterDismissed=new H,this._afterOpened=new H,this._onAction=new H,this._dismissedByAction=!1,this.containerInstance=t,this.onAction().subscribe(function(){return n.dismiss()}),t._onExit.subscribe(function(){return n._finishDismiss()})}return t.prototype.dismiss=function(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)},t.prototype.dismissWithAction=function(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete())},t.prototype.closeWithAction=function(){this.dismissWithAction()},t.prototype._dismissAfter=function(t){var e=this;this._durationTimeoutId=setTimeout(function(){return e.dismiss()},t)},t.prototype._open=function(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())},t.prototype._finishDismiss=function(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1},t.prototype.afterDismissed=function(){return this._afterDismissed.asObservable()},t.prototype.afterOpened=function(){return this.containerInstance._onEnter},t.prototype.onAction=function(){return this._onAction.asObservable()},t}(),iP=new Lt("MatSnackBarData"),rP=function(){return function(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}(),oP=function(){function t(t,e){this.snackBarRef=t,this.data=e}return t.prototype.action=function(){this.snackBarRef.dismissWithAction()},Object.defineProperty(t.prototype,"hasAction",{get:function(){return!!this.data.action},enumerable:!0,configurable:!0}),t}(),aP=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o._ngZone=e,o._elementRef=n,o._changeDetectorRef=i,o.snackBarConfig=r,o._destroyed=!1,o._onExit=new H,o._onEnter=new H,o._animationState="void",o._role="assertive"!==r.politeness||r.announcementMessage?"off"===r.politeness?null:"status":"alert",o}return r(e,t),e.prototype.attachComponentPortal=function(t){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachComponentPortal(t)},e.prototype.attachTemplatePortal=function(t){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachTemplatePortal(t)},e.prototype.onAnimationEnd=function(t){var e=t.toState;if(("void"===e&&"void"!==t.fromState||"hidden"===e)&&this._completeExit(),"visible"===e){var n=this._onEnter;this._ngZone.run(function(){n.next(),n.complete()})}},e.prototype.enter=function(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges())},e.prototype.exit=function(){return this._animationState="hidden",this._onExit},e.prototype.ngOnDestroy=function(){this._destroyed=!0,this._completeExit()},e.prototype._completeExit=function(){var t=this;this._ngZone.onMicrotaskEmpty.asObservable().pipe(Ac(1)).subscribe(function(){t._onExit.next(),t._onExit.complete()})},e.prototype._applySnackBarClasses=function(){var t=this._elementRef.nativeElement,e=this.snackBarConfig.panelClass;e&&(Array.isArray(e)?e.forEach(function(e){return t.classList.add(e)}):t.classList.add(e)),"center"===this.snackBarConfig.horizontalPosition&&t.classList.add("mat-snack-bar-center"),"top"===this.snackBarConfig.verticalPosition&&t.classList.add("mat-snack-bar-top")},e.prototype._assertNotAttached=function(){if(this._portalOutlet.hasAttached())throw Error("Attempting to attach snack bar content after content is already attached")},e}(oM),lP=function(){return function(){}}(),sP=Vr({encapsulation:2,styles:[".mat-snack-bar-container{border-radius:4px;box-sizing:border-box;display:block;margin:24px;max-width:33vw;min-width:344px;padding:14px 16px;min-height:48px;transform-origin:center}@media (-ms-high-contrast:active){.mat-snack-bar-container{border:solid 1px}}.mat-snack-bar-handset{width:100%}.mat-snack-bar-handset .mat-snack-bar-container{margin:8px;max-width:100%;min-width:0;width:100%}"],data:{animation:[{type:7,name:"state",definitions:[{type:0,name:"void, hidden",styles:{type:6,styles:{transform:"scale(0.8)",opacity:0},offset:null},options:void 0},{type:0,name:"visible",styles:{type:6,styles:{transform:"scale(1)",opacity:1},offset:null},options:void 0},{type:1,expr:"* => visible",animation:{type:4,styles:null,timings:"150ms cubic-bezier(0, 0, 0.2, 1)"},options:null},{type:1,expr:"* => void, * => hidden",animation:{type:4,styles:{type:6,styles:{opacity:0},offset:null},timings:"75ms cubic-bezier(0.4, 0.0, 1, 1)"},options:null}],options:{}}]}});function uP(t){return Ia(0,[(t()(),go(0,null,null,0))],null,null)}function cP(t){return Ia(0,[wa(402653184,1,{_portalOutlet:0}),(t()(),go(16777216,null,null,1,null,uP)),oa(2,212992,[[1,4]],0,lM,[Fe,Xi],{portal:[0,"portal"]},null)],function(t,e){t(e,2,0,"")},null)}function dP(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"snack-bar-container",[["class","mat-snack-bar-container"]],[[1,"role",0],[40,"@state",0]],[["component","@state.done"]],function(t,e,n){var i=!0;return"component:@state.done"===e&&(i=!1!==Go(t,1).onAnimationEnd(n)&&i),i},cP,sP)),oa(1,180224,null,0,aP,[Mi,Ve,Zi,rP],null,null)],null,function(t,e){t(e,0,0,Go(e,1)._role,Go(e,1)._animationState)})}var hP=Ro("snack-bar-container",aP,dP,{},{},[]),pP=Vr({encapsulation:2,styles:[".mat-simple-snackbar{display:flex;justify-content:space-between;align-items:center;height:100%;line-height:20px;opacity:1}.mat-simple-snackbar-action{flex-shrink:0;margin:-8px -8px -8px 8px}.mat-simple-snackbar-action button{max-height:36px;min-width:0}[dir=rtl] .mat-simple-snackbar-action{margin-left:-8px;margin-right:8px}"],data:{}});function fP(t){return Ia(0,[(t()(),yo(0,0,null,null,3,"div",[["class","mat-simple-snackbar-action"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,2,"button",[["mat-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.action()&&i),i},Nk,Hk)),oa(2,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(3,0,["",""]))],null,function(t,e){var n=e.component;t(e,1,0,Go(e,2).disabled||null,"NoopAnimations"===Go(e,2)._animationMode),t(e,3,0,n.data.action)})}function mP(t){return Ia(2,[(t()(),yo(0,0,null,null,1,"span",[],null,null,null,null,null)),(t()(),Oa(1,null,["",""])),(t()(),go(16777216,null,null,1,null,fP)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null)],function(t,e){t(e,3,0,e.component.hasAction)},function(t,e){t(e,1,0,e.component.data.message)})}function gP(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"simple-snack-bar",[["class","mat-simple-snackbar"]],null,null,null,mP,pP)),oa(1,49152,null,0,oP,[nP,iP],null,null)],null,null)}var yP=Ro("simple-snack-bar",oP,gP,{},{},[]),_P=Vr({encapsulation:0,styles:["[_nghost-%COMP%]{display:inline-block}[_nghost-%COMP%]:not(.file-input-disabled){cursor:pointer}input[_ngcontent-%COMP%]{width:0;height:0;opacity:0;overflow:hidden;position:absolute;z-index:-1}.filename[_ngcontent-%COMP%]{display:inline-block}"],data:{}});function vP(t){return Ia(0,[(t()(),yo(0,0,[["input",1]],null,0,"input",[["type","file"]],[[1,"multiple",0],[1,"accept",0]],null,null,null,null)),(t()(),yo(1,0,null,null,1,"span",[["class","filename"]],null,null,null,null,null)),(t()(),Oa(2,null,["",""]))],null,function(t,e){var n=e.component;t(e,0,0,n.multiple?"":null,n.accept),t(e,2,0,n.fileNames)})}var bP=new Lt("mat-checkbox-click-action"),xP=0,wP=function(){var t={Init:0,Checked:1,Unchecked:2,Indeterminate:3};return t[t.Init]="Init",t[t.Checked]="Checked",t[t.Unchecked]="Unchecked",t[t.Indeterminate]="Indeterminate",t}(),kP=function(){return function(){}}(),MP=function(t){function e(e,n,i,r,o,a,l){var s=t.call(this,e)||this;return s._changeDetectorRef=n,s._focusMonitor=i,s._ngZone=r,s._clickAction=a,s._animationMode=l,s.ariaLabel="",s.ariaLabelledby=null,s._uniqueId="mat-checkbox-"+ ++xP,s.id=s._uniqueId,s.labelPosition="after",s.name=null,s.change=new kn,s.indeterminateChange=new kn,s._onTouched=function(){},s._currentAnimationClass="",s._currentCheckState=wP.Init,s._controlValueAccessorChangeFn=function(){},s._checked=!1,s._disabled=!1,s._indeterminate=!1,s.tabIndex=parseInt(o)||0,s._focusMonitor.monitor(e,!0).subscribe(function(t){t||Promise.resolve().then(function(){s._onTouched(),n.markForCheck()})}),s}return r(e,t),Object.defineProperty(e.prototype,"inputId",{get:function(){return(this.id||this._uniqueId)+"-input"},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"required",{get:function(){return this._required},set:function(t){this._required=Xu(t)},enumerable:!0,configurable:!0}),e.prototype.ngAfterViewChecked=function(){},e.prototype.ngOnDestroy=function(){this._focusMonitor.stopMonitoring(this._elementRef)},Object.defineProperty(e.prototype,"checked",{get:function(){return this._checked},set:function(t){t!=this.checked&&(this._checked=t,this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disabled",{get:function(){return this._disabled},set:function(t){var e=Xu(t);e!==this.disabled&&(this._disabled=e,this._changeDetectorRef.markForCheck())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"indeterminate",{get:function(){return this._indeterminate},set:function(t){var e=t!=this._indeterminate;this._indeterminate=t,e&&(this._transitionCheckState(this._indeterminate?wP.Indeterminate:this.checked?wP.Checked:wP.Unchecked),this.indeterminateChange.emit(this._indeterminate))},enumerable:!0,configurable:!0}),e.prototype._isRippleDisabled=function(){return this.disableRipple||this.disabled},e.prototype._onLabelTextChange=function(){this._changeDetectorRef.detectChanges()},e.prototype.writeValue=function(t){this.checked=!!t},e.prototype.registerOnChange=function(t){this._controlValueAccessorChangeFn=t},e.prototype.registerOnTouched=function(t){this._onTouched=t},e.prototype.setDisabledState=function(t){this.disabled=t},e.prototype._getAriaChecked=function(){return this.checked?"true":this.indeterminate?"mixed":"false"},e.prototype._transitionCheckState=function(t){var e=this._currentCheckState,n=this._elementRef.nativeElement;if(e!==t&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(e,t),this._currentCheckState=t,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);var i=this._currentAnimationClass;this._ngZone.runOutsideAngular(function(){setTimeout(function(){n.classList.remove(i)},1e3)})}},e.prototype._emitChangeEvent=function(){var t=new kP;t.source=this,t.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(t)},e.prototype.toggle=function(){this.checked=!this.checked},e.prototype._onInputClick=function(t){var e=this;t.stopPropagation(),this.disabled||"noop"===this._clickAction?this.disabled||"noop"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==this._clickAction&&Promise.resolve().then(function(){e._indeterminate=!1,e.indeterminateChange.emit(e._indeterminate)}),this.toggle(),this._transitionCheckState(this._checked?wP.Checked:wP.Unchecked),this._emitChangeEvent())},e.prototype.focus=function(){this._focusMonitor.focusVia(this._inputElement,"keyboard")},e.prototype._onInteractionEvent=function(t){t.stopPropagation()},e.prototype._getAnimationClassForCheckStateTransition=function(t,e){if("NoopAnimations"===this._animationMode)return"";var n="";switch(t){case wP.Init:if(e===wP.Checked)n="unchecked-checked";else{if(e!=wP.Indeterminate)return"";n="unchecked-indeterminate"}break;case wP.Unchecked:n=e===wP.Checked?"unchecked-checked":"unchecked-indeterminate";break;case wP.Checked:n=e===wP.Unchecked?"checked-unchecked":"checked-indeterminate";break;case wP.Indeterminate:n=e===wP.Checked?"indeterminate-checked":"indeterminate-unchecked"}return"mat-checkbox-anim-"+n},e}(ld(od(ad(rd(function(){return function(t){this._elementRef=t}}())),"accent"))),SP=function(){return function(){}}(),CP=Vr({encapsulation:2,styles:["@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.91026}50%{animation-timing-function:cubic-bezier(0,0,.2,.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0,0,0,1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(.4,0,1,1);stroke-dashoffset:0}to{stroke-dashoffset:-22.91026}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0,0,.2,.1);opacity:1;transform:rotate(0)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(.14,0,0,1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0,0,.2,.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(.14,0,0,1);opacity:1;transform:rotate(0)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}100%,32.8%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0,0,.2,.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}@media (-ms-high-contrast:active){.mat-checkbox.cdk-keyboard-focused .mat-checkbox-frame{border-style:dotted}}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0,0,.2,.1),opacity 90ms cubic-bezier(0,0,.2,.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.91026;stroke-dasharray:22.91026;stroke-width:2.13333px}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0);border-radius:2px}@media (-ms-high-contrast:active){.mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0s mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0s mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0s mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0s mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0s mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:.5s linear 0s mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:.5s linear 0s mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0s mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:.3s linear 0s mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}"],data:{}});function LP(t){return Ia(2,[wa(402653184,1,{_inputElement:0}),wa(402653184,2,{ripple:0}),(t()(),yo(2,0,[["label",1]],null,16,"label",[["class","mat-checkbox-layout"]],[[1,"for",0]],null,null,null,null)),(t()(),yo(3,0,null,null,10,"div",[["class","mat-checkbox-inner-container"]],[[2,"mat-checkbox-inner-container-no-side-margin",null]],null,null,null,null)),(t()(),yo(4,0,[[1,0],["input",1]],null,0,"input",[["class","mat-checkbox-input cdk-visually-hidden"],["type","checkbox"]],[[8,"id",0],[8,"required",0],[8,"checked",0],[1,"value",0],[8,"disabled",0],[1,"name",0],[8,"tabIndex",0],[8,"indeterminate",0],[1,"aria-label",0],[1,"aria-labelledby",0],[1,"aria-checked",0]],[[null,"change"],[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"change"===e&&(i=!1!==r._onInteractionEvent(n)&&i),"click"===e&&(i=!1!==r._onInputClick(n)&&i),i},null,null)),(t()(),yo(5,0,null,null,3,"div",[["class","mat-checkbox-ripple mat-ripple"],["matRipple",""]],[[2,"mat-ripple-unbounded",null]],null,null,null,null)),oa(6,212992,[[2,4]],0,Dd,[Ve,Mi,nc,[2,Ld],[2,Ow]],{centered:[0,"centered"],radius:[1,"radius"],animation:[2,"animation"],disabled:[3,"disabled"],trigger:[4,"trigger"]},null),Aa(7,{enterDuration:0}),(t()(),yo(8,0,null,null,0,"div",[["class","mat-ripple-element mat-checkbox-persistent-ripple"]],null,null,null,null,null)),(t()(),yo(9,0,null,null,0,"div",[["class","mat-checkbox-frame"]],null,null,null,null,null)),(t()(),yo(10,0,null,null,3,"div",[["class","mat-checkbox-background"]],null,null,null,null,null)),(t()(),yo(11,0,null,null,1,":svg:svg",[[":xml:space","preserve"],["class","mat-checkbox-checkmark"],["focusable","false"],["version","1.1"],["viewBox","0 0 24 24"]],null,null,null,null,null)),(t()(),yo(12,0,null,null,0,":svg:path",[["class","mat-checkbox-checkmark-path"],["d","M4.1,12.7 9,17.6 20.3,6.3"],["fill","none"],["stroke","white"]],null,null,null,null,null)),(t()(),yo(13,0,null,null,0,"div",[["class","mat-checkbox-mixedmark"]],null,null,null,null,null)),(t()(),yo(14,0,[["checkboxLabel",1]],null,4,"span",[["class","mat-checkbox-label"]],null,[[null,"cdkObserveContent"]],function(t,e,n){var i=!0;return"cdkObserveContent"===e&&(i=!1!==t.component._onLabelTextChange()&&i),i},null,null)),oa(15,1196032,null,0,db,[cb,Ve,Mi],null,{event:"cdkObserveContent"}),(t()(),yo(16,0,null,null,1,"span",[["style","display:none"]],null,null,null,null,null)),(t()(),Oa(-1,null,["\xa0"])),La(null,0)],function(t,e){var n=e.component,i=t(e,7,0,150);t(e,6,0,!0,20,i,n._isRippleDisabled(),Go(e,2))},function(t,e){var n=e.component;t(e,2,0,n.inputId),t(e,3,0,!Go(e,14).textContent||!Go(e,14).textContent.trim()),t(e,4,1,[n.inputId,n.required,n.checked,n.value,n.disabled,n.name,n.tabIndex,n.indeterminate,n.ariaLabel||null,n.ariaLabelledby,n._getAriaChecked()]),t(e,5,0,Go(e,6).unbounded)})}var DP=Vr({encapsulation:0,styles:[[".example-form[_ngcontent-%COMP%]{display:flex;flex-direction:column}.example-form[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{width:100%}.formbutton[_ngcontent-%COMP%]{margin-right:1em;margin-bottom:2px}.example-ripple-checkbox[_ngcontent-%COMP%]{margin:6px 12px 6px 0}ngx-mat-file-input[_ngcontent-%COMP%]{margin-bottom:10px;overflow:hidden}"]],data:{}});function TP(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"h1",[["class","mat-dialog-title"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(1,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),Oa(2,null,["",""])),(t()(),yo(3,0,null,null,193,"div",[["class","mat-dialog-content"],["mat-dialog-content",""]],null,null,null,null,null)),oa(4,16384,null,0,PS,[],null,null),(t()(),yo(5,0,null,null,191,"form",[["class","example-form"],["novalidate",""]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],[[null,"submit"],[null,"reset"]],function(t,e,n){var i=!0;return"submit"===e&&(i=!1!==Go(t,7).onSubmit(n)&&i),"reset"===e&&(i=!1!==Go(t,7).onReset()&&i),i},null,null)),oa(6,16384,null,0,Fv,[],null,null),oa(7,540672,null,0,Ev,[[8,null],[8,null]],{form:[0,"form"]},null),la(2048,null,A_,null,[Ev]),oa(9,16384,null,0,yv,[[4,A_]],null,null),(t()(),yo(10,0,null,null,16,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(11,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,1,{_control:0}),wa(335544320,2,{_placeholderChild:0}),wa(335544320,3,{_labelChild:0}),wa(603979776,4,{_errorChildren:1}),wa(603979776,5,{_hintChildren:1}),wa(603979776,6,{_prefixChildren:1}),wa(603979776,7,{_suffixChildren:1}),(t()(),yo(19,0,null,1,7,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","CardCode"],["matInput",""],["name","Code"],["placeholder","Card Code"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,20)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,20).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,20)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,20)._compositionEnd(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,25)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,25)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,25)._onInput()&&i),i},null,null)),oa(20,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),la(1024,null,j_,function(t){return[t]},[V_]),oa(22,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(24,16384,null,0,gv,[[4,q_]],null,null),oa(25,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],readonly:[1,"readonly"]},null),la(2048,[[1,4]],Qv,null,[mk]),(t()(),yo(27,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(28,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,8,{_control:0}),wa(335544320,9,{_placeholderChild:0}),wa(335544320,10,{_labelChild:0}),wa(603979776,11,{_errorChildren:1}),wa(603979776,12,{_hintChildren:1}),wa(603979776,13,{_prefixChildren:1}),wa(603979776,14,{_suffixChildren:1}),(t()(),yo(36,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","Rows"],["matInput",""],["name","rows"],["placeholder","Rows"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,37)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,37).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,37)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,37)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,38).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,38).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,38).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,43)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,43)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,43)._onInput()&&i),i},null,null)),oa(37,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(38,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(40,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(42,16384,null,0,gv,[[4,q_]],null,null),oa(43,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[8,4]],Qv,null,[mk]),(t()(),yo(45,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(46,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,15,{_control:0}),wa(335544320,16,{_placeholderChild:0}),wa(335544320,17,{_labelChild:0}),wa(603979776,18,{_errorChildren:1}),wa(603979776,19,{_hintChildren:1}),wa(603979776,20,{_prefixChildren:1}),wa(603979776,21,{_suffixChildren:1}),(t()(),yo(54,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","Columns"],["matInput",""],["name","columns"],["placeholder","Columns"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,55)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,55).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,55)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,55)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,56).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,56).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,56).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,61)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,61)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,61)._onInput()&&i),i},null,null)),oa(55,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(56,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(58,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(60,16384,null,0,gv,[[4,q_]],null,null),oa(61,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[15,4]],Qv,null,[mk]),(t()(),yo(63,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(64,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,22,{_control:0}),wa(335544320,23,{_placeholderChild:0}),wa(335544320,24,{_labelChild:0}),wa(603979776,25,{_errorChildren:1}),wa(603979776,26,{_hintChildren:1}),wa(603979776,27,{_prefixChildren:1}),wa(603979776,28,{_suffixChildren:1}),(t()(),yo(72,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","TargetIndex"],["matInput",""],["name","targetIndex"],["placeholder","Target Index"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,73)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,73).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,73)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,73)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,74).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,74).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,74).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,79)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,79)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,79)._onInput()&&i),i},null,null)),oa(73,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(74,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(76,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(78,16384,null,0,gv,[[4,q_]],null,null),oa(79,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[22,4]],Qv,null,[mk]),(t()(),yo(81,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(82,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,29,{_control:0}),wa(335544320,30,{_placeholderChild:0}),wa(335544320,31,{_labelChild:0}),wa(603979776,32,{_errorChildren:1}),wa(603979776,33,{_hintChildren:1}),wa(603979776,34,{_prefixChildren:1}),wa(603979776,35,{_suffixChildren:1}),(t()(),yo(90,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","SampleWidth"],["matInput",""],["name","sampleWidth"],["placeholder","Sample Width"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,91)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,91).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,91)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,91)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,92).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,92).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,92).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,97)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,97)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,97)._onInput()&&i),i},null,null)),oa(91,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(92,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(94,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(96,16384,null,0,gv,[[4,q_]],null,null),oa(97,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[29,4]],Qv,null,[mk]),(t()(),yo(99,0,null,null,17,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(100,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,36,{_control:0}),wa(335544320,37,{_placeholderChild:0}),wa(335544320,38,{_labelChild:0}),wa(603979776,39,{_errorChildren:1}),wa(603979776,40,{_hintChildren:1}),wa(603979776,41,{_prefixChildren:1}),wa(603979776,42,{_suffixChildren:1}),(t()(),yo(108,0,null,1,8,"input",[["class","mat-input-element mat-form-field-autofill-control"],["formControlName","SampleHeighth"],["matInput",""],["name","sampleHeighth"],["placeholder","Sample Heighth"],["type","number"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"mat-input-server",null],[1,"id",0],[1,"placeholder",0],[8,"disabled",0],[8,"required",0],[1,"readonly",0],[1,"aria-describedby",0],[1,"aria-invalid",0],[1,"aria-required",0]],[[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"focus"]],function(t,e,n){var i=!0;return"input"===e&&(i=!1!==Go(t,109)._handleInput(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,109).onTouched()&&i),"compositionstart"===e&&(i=!1!==Go(t,109)._compositionStart()&&i),"compositionend"===e&&(i=!1!==Go(t,109)._compositionEnd(n.target.value)&&i),"change"===e&&(i=!1!==Go(t,110).onChange(n.target.value)&&i),"input"===e&&(i=!1!==Go(t,110).onChange(n.target.value)&&i),"blur"===e&&(i=!1!==Go(t,110).onTouched()&&i),"blur"===e&&(i=!1!==Go(t,115)._focusChanged(!1)&&i),"focus"===e&&(i=!1!==Go(t,115)._focusChanged(!0)&&i),"input"===e&&(i=!1!==Go(t,115)._onInput()&&i),i},null,null)),oa(109,16384,null,0,V_,[qe,Ve,[2,N_]],null,null),oa(110,16384,null,0,U_,[qe,Ve],null,null),la(1024,null,j_,function(t,e){return[t,e]},[V_,U_]),oa(112,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(114,16384,null,0,gv,[[4,q_]],null,null),oa(115,999424,null,0,mk,[Ve,nc,[6,q_],[2,Cv],[2,Ev],md,[8,null],ck,Mi],{placeholder:[0,"placeholder"],type:[1,"type"]},null),la(2048,[[36,4]],Qv,null,[mk]),(t()(),yo(117,0,null,null,18,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(118,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,43,{_control:0}),wa(335544320,44,{_placeholderChild:0}),wa(335544320,45,{_labelChild:0}),wa(603979776,46,{_errorChildren:1}),wa(603979776,47,{_hintChildren:1}),wa(603979776,48,{_prefixChildren:1}),wa(603979776,49,{_suffixChildren:1}),(t()(),yo(126,0,null,1,5,"ngx-mat-file-input",[["formControlName","PDFPath"],["name","pdfFile"],["placeholder","PDF file"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[8,"id",0],[1,"aria-describedby",0],[2,"mat-form-field-should-float",null],[2,"file-input-disabled",null]],[[null,"change"],[null,"focusout"]],function(t,e,n){var i=!0;return"change"===e&&(i=!1!==Go(t,130).change(n)&&i),"focusout"===e&&(i=!1!==Go(t,130).blur()&&i),i},vP,_P)),oa(127,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[8,null],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(129,16384,null,0,gv,[[4,q_]],null,null),oa(130,245760,null,0,t_,[[6,q_],$c,Ve,qe],{accept:[0,"accept"],placeholder:[1,"placeholder"]},null),la(2048,[[43,4]],Qv,null,[t_]),(t()(),yo(132,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(133,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(134,16384,[[49,4]],0,ib,[],null,null),(t()(),Oa(-1,0,["attach_file"])),(t()(),yo(136,0,null,null,18,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(137,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,50,{_control:0}),wa(335544320,51,{_placeholderChild:0}),wa(335544320,52,{_labelChild:0}),wa(603979776,53,{_errorChildren:1}),wa(603979776,54,{_hintChildren:1}),wa(603979776,55,{_prefixChildren:1}),wa(603979776,56,{_suffixChildren:1}),(t()(),yo(145,0,null,1,5,"ngx-mat-file-input",[["formControlName","SCVPath"],["name","scvFile"],["placeholder","SCV file"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[8,"id",0],[1,"aria-describedby",0],[2,"mat-form-field-should-float",null],[2,"file-input-disabled",null]],[[null,"change"],[null,"focusout"]],function(t,e,n){var i=!0;return"change"===e&&(i=!1!==Go(t,149).change(n)&&i),"focusout"===e&&(i=!1!==Go(t,149).blur()&&i),i},vP,_P)),oa(146,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[8,null],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(148,16384,null,0,gv,[[4,q_]],null,null),oa(149,245760,null,0,t_,[[6,q_],$c,Ve,qe],{accept:[0,"accept"],placeholder:[1,"placeholder"]},null),la(2048,[[50,4]],Qv,null,[t_]),(t()(),yo(151,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(152,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(153,16384,[[56,4]],0,ib,[],null,null),(t()(),Oa(-1,0,["attach_file"])),(t()(),yo(155,0,null,null,18,"mat-form-field",[["class","mat-form-field"]],[[2,"mat-form-field-appearance-standard",null],[2,"mat-form-field-appearance-fill",null],[2,"mat-form-field-appearance-outline",null],[2,"mat-form-field-appearance-legacy",null],[2,"mat-form-field-invalid",null],[2,"mat-form-field-can-float",null],[2,"mat-form-field-should-float",null],[2,"mat-form-field-has-label",null],[2,"mat-form-field-hide-placeholder",null],[2,"mat-form-field-disabled",null],[2,"mat-form-field-autofilled",null],[2,"mat-focused",null],[2,"mat-accent",null],[2,"mat-warn",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"_mat-animation-noopable",null]],null,null,qw,Rw)),oa(156,7520256,null,7,lb,[Ve,Zi,[2,Nd],[2,Zy],[2,ab],nc,Mi,[2,Ow]],null,null),wa(335544320,57,{_control:0}),wa(335544320,58,{_placeholderChild:0}),wa(335544320,59,{_labelChild:0}),wa(603979776,60,{_errorChildren:1}),wa(603979776,61,{_hintChildren:1}),wa(603979776,62,{_prefixChildren:1}),wa(603979776,63,{_suffixChildren:1}),(t()(),yo(164,0,null,1,5,"ngx-mat-file-input",[["formControlName","TempPath"],["name","templFile"],["placeholder","Template file"]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[8,"id",0],[1,"aria-describedby",0],[2,"mat-form-field-should-float",null],[2,"file-input-disabled",null]],[[null,"change"],[null,"focusout"]],function(t,e,n){var i=!0;return"change"===e&&(i=!1!==Go(t,168).change(n)&&i),"focusout"===e&&(i=!1!==Go(t,168).blur()&&i),i},vP,_P)),oa(165,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[8,null],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(167,16384,null,0,gv,[[4,q_]],null,null),oa(168,245760,null,0,t_,[[6,q_],$c,Ve,qe],{accept:[0,"accept"],placeholder:[1,"placeholder"]},null),la(2048,[[57,4]],Qv,null,[t_]),(t()(),yo(170,0,null,4,3,"mat-icon",[["class","mat-icon notranslate"],["matSuffix",""],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(171,9158656,null,0,Ak,[Ve,kk,[8,null],[2,Lk]],null,null),oa(172,16384,[[63,4]],0,ib,[],null,null),(t()(),Oa(-1,0,["attach_file"])),(t()(),yo(174,0,null,null,6,"mat-checkbox",[["class","example-ripple-checkbox mat-checkbox"],["color","primary"],["formControlName","EnableDoubleChecking"],["name","enableDoubleChecking"]],[[8,"id",0],[1,"tabindex",0],[2,"mat-checkbox-indeterminate",null],[2,"mat-checkbox-checked",null],[2,"mat-checkbox-disabled",null],[2,"mat-checkbox-label-before",null],[2,"_mat-animation-noopable",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],null,null,LP,CP)),oa(175,8568832,null,0,MP,[Ve,Zi,$c,Mi,[8,null],[2,bP],[2,Ow]],{color:[0,"color"],name:[1,"name"]},null),la(1024,null,j_,function(t){return[t]},[MP]),oa(177,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(179,16384,null,0,gv,[[4,q_]],null,null),(t()(),Oa(-1,0,["Enable Double Checking"])),(t()(),yo(181,0,null,null,6,"mat-checkbox",[["class","example-ripple-checkbox mat-checkbox"],["color","primary"],["formControlName","EnforceBarcodeDetection"],["name","enforceBarcodeDetection"]],[[8,"id",0],[1,"tabindex",0],[2,"mat-checkbox-indeterminate",null],[2,"mat-checkbox-checked",null],[2,"mat-checkbox-disabled",null],[2,"mat-checkbox-label-before",null],[2,"_mat-animation-noopable",null],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],null,null,LP,CP)),oa(182,8568832,null,0,MP,[Ve,Zi,$c,Mi,[8,null],[2,bP],[2,Ow]],{color:[0,"color"],name:[1,"name"]},null),la(1024,null,j_,function(t){return[t]},[MP]),oa(184,671744,null,0,Yv,[[3,A_],[8,null],[8,null],[6,j_],[2,Dv]],{name:[0,"name"]},null),la(2048,null,q_,null,[Yv]),oa(186,16384,null,0,gv,[[4,q_]],null,null),(t()(),Oa(-1,0,["Enforce Barcode Detection"])),(t()(),yo(188,0,null,null,8,"div",[["fxLayout","row"],["fxLayoutAlign","end center"]],null,null,null,null,null)),oa(189,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(190,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(191,0,null,null,2,"button",[["class","formbutton"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onCancel()&&i),i},Nk,Hk)),oa(192,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Cancel"])),(t()(),yo(194,0,null,null,2,"button",[["class","formbutton"],["color","primary"],["mat-primary",""],["mat-raised-button",""],["type","submit"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onSave()&&i),i},Nk,Hk)),oa(195,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),(t()(),Oa(-1,0,["Save"]))],function(t,e){var n=e.component;t(e,1,0),t(e,7,0,n.form),t(e,22,0,"CardCode"),t(e,25,0,"Card Code",!0),t(e,40,0,"Rows"),t(e,43,0,"Rows","number"),t(e,58,0,"Columns"),t(e,61,0,"Columns","number"),t(e,76,0,"TargetIndex"),t(e,79,0,"Target Index","number"),t(e,94,0,"SampleWidth"),t(e,97,0,"Sample Width","number"),t(e,112,0,"SampleHeighth"),t(e,115,0,"Sample Heighth","number"),t(e,127,0,"PDFPath"),t(e,130,0,".pdf","PDF file"),t(e,133,0),t(e,146,0,"SCVPath"),t(e,149,0,".csv","SCV file"),t(e,152,0),t(e,165,0,"TempPath"),t(e,168,0,".pdf","Template file"),t(e,171,0),t(e,175,0,"primary","enableDoubleChecking"),t(e,177,0,"EnableDoubleChecking"),t(e,182,0,"primary","enforceBarcodeDetection"),t(e,184,0,"EnforceBarcodeDetection"),t(e,189,0,"row"),t(e,190,0,"end center"),t(e,195,0,"primary")},function(t,e){var n=e.component;t(e,0,0,Go(e,1).id),t(e,2,0,n.title),t(e,5,0,Go(e,9).ngClassUntouched,Go(e,9).ngClassTouched,Go(e,9).ngClassPristine,Go(e,9).ngClassDirty,Go(e,9).ngClassValid,Go(e,9).ngClassInvalid,Go(e,9).ngClassPending),t(e,10,1,["standard"==Go(e,11).appearance,"fill"==Go(e,11).appearance,"outline"==Go(e,11).appearance,"legacy"==Go(e,11).appearance,Go(e,11)._control.errorState,Go(e,11)._canLabelFloat,Go(e,11)._shouldLabelFloat(),Go(e,11)._hasFloatingLabel(),Go(e,11)._hideControlPlaceholder(),Go(e,11)._control.disabled,Go(e,11)._control.autofilled,Go(e,11)._control.focused,"accent"==Go(e,11).color,"warn"==Go(e,11).color,Go(e,11)._shouldForward("untouched"),Go(e,11)._shouldForward("touched"),Go(e,11)._shouldForward("pristine"),Go(e,11)._shouldForward("dirty"),Go(e,11)._shouldForward("valid"),Go(e,11)._shouldForward("invalid"),Go(e,11)._shouldForward("pending"),!Go(e,11)._animationsEnabled]),t(e,19,1,[Go(e,24).ngClassUntouched,Go(e,24).ngClassTouched,Go(e,24).ngClassPristine,Go(e,24).ngClassDirty,Go(e,24).ngClassValid,Go(e,24).ngClassInvalid,Go(e,24).ngClassPending,Go(e,25)._isServer,Go(e,25).id,Go(e,25).placeholder,Go(e,25).disabled,Go(e,25).required,Go(e,25).readonly&&!Go(e,25)._isNativeSelect||null,Go(e,25)._ariaDescribedby||null,Go(e,25).errorState,Go(e,25).required.toString()]),t(e,27,1,["standard"==Go(e,28).appearance,"fill"==Go(e,28).appearance,"outline"==Go(e,28).appearance,"legacy"==Go(e,28).appearance,Go(e,28)._control.errorState,Go(e,28)._canLabelFloat,Go(e,28)._shouldLabelFloat(),Go(e,28)._hasFloatingLabel(),Go(e,28)._hideControlPlaceholder(),Go(e,28)._control.disabled,Go(e,28)._control.autofilled,Go(e,28)._control.focused,"accent"==Go(e,28).color,"warn"==Go(e,28).color,Go(e,28)._shouldForward("untouched"),Go(e,28)._shouldForward("touched"),Go(e,28)._shouldForward("pristine"),Go(e,28)._shouldForward("dirty"),Go(e,28)._shouldForward("valid"),Go(e,28)._shouldForward("invalid"),Go(e,28)._shouldForward("pending"),!Go(e,28)._animationsEnabled]),t(e,36,1,[Go(e,42).ngClassUntouched,Go(e,42).ngClassTouched,Go(e,42).ngClassPristine,Go(e,42).ngClassDirty,Go(e,42).ngClassValid,Go(e,42).ngClassInvalid,Go(e,42).ngClassPending,Go(e,43)._isServer,Go(e,43).id,Go(e,43).placeholder,Go(e,43).disabled,Go(e,43).required,Go(e,43).readonly&&!Go(e,43)._isNativeSelect||null,Go(e,43)._ariaDescribedby||null,Go(e,43).errorState,Go(e,43).required.toString()]),t(e,45,1,["standard"==Go(e,46).appearance,"fill"==Go(e,46).appearance,"outline"==Go(e,46).appearance,"legacy"==Go(e,46).appearance,Go(e,46)._control.errorState,Go(e,46)._canLabelFloat,Go(e,46)._shouldLabelFloat(),Go(e,46)._hasFloatingLabel(),Go(e,46)._hideControlPlaceholder(),Go(e,46)._control.disabled,Go(e,46)._control.autofilled,Go(e,46)._control.focused,"accent"==Go(e,46).color,"warn"==Go(e,46).color,Go(e,46)._shouldForward("untouched"),Go(e,46)._shouldForward("touched"),Go(e,46)._shouldForward("pristine"),Go(e,46)._shouldForward("dirty"),Go(e,46)._shouldForward("valid"),Go(e,46)._shouldForward("invalid"),Go(e,46)._shouldForward("pending"),!Go(e,46)._animationsEnabled]),t(e,54,1,[Go(e,60).ngClassUntouched,Go(e,60).ngClassTouched,Go(e,60).ngClassPristine,Go(e,60).ngClassDirty,Go(e,60).ngClassValid,Go(e,60).ngClassInvalid,Go(e,60).ngClassPending,Go(e,61)._isServer,Go(e,61).id,Go(e,61).placeholder,Go(e,61).disabled,Go(e,61).required,Go(e,61).readonly&&!Go(e,61)._isNativeSelect||null,Go(e,61)._ariaDescribedby||null,Go(e,61).errorState,Go(e,61).required.toString()]),t(e,63,1,["standard"==Go(e,64).appearance,"fill"==Go(e,64).appearance,"outline"==Go(e,64).appearance,"legacy"==Go(e,64).appearance,Go(e,64)._control.errorState,Go(e,64)._canLabelFloat,Go(e,64)._shouldLabelFloat(),Go(e,64)._hasFloatingLabel(),Go(e,64)._hideControlPlaceholder(),Go(e,64)._control.disabled,Go(e,64)._control.autofilled,Go(e,64)._control.focused,"accent"==Go(e,64).color,"warn"==Go(e,64).color,Go(e,64)._shouldForward("untouched"),Go(e,64)._shouldForward("touched"),Go(e,64)._shouldForward("pristine"),Go(e,64)._shouldForward("dirty"),Go(e,64)._shouldForward("valid"),Go(e,64)._shouldForward("invalid"),Go(e,64)._shouldForward("pending"),!Go(e,64)._animationsEnabled]),t(e,72,1,[Go(e,78).ngClassUntouched,Go(e,78).ngClassTouched,Go(e,78).ngClassPristine,Go(e,78).ngClassDirty,Go(e,78).ngClassValid,Go(e,78).ngClassInvalid,Go(e,78).ngClassPending,Go(e,79)._isServer,Go(e,79).id,Go(e,79).placeholder,Go(e,79).disabled,Go(e,79).required,Go(e,79).readonly&&!Go(e,79)._isNativeSelect||null,Go(e,79)._ariaDescribedby||null,Go(e,79).errorState,Go(e,79).required.toString()]),t(e,81,1,["standard"==Go(e,82).appearance,"fill"==Go(e,82).appearance,"outline"==Go(e,82).appearance,"legacy"==Go(e,82).appearance,Go(e,82)._control.errorState,Go(e,82)._canLabelFloat,Go(e,82)._shouldLabelFloat(),Go(e,82)._hasFloatingLabel(),Go(e,82)._hideControlPlaceholder(),Go(e,82)._control.disabled,Go(e,82)._control.autofilled,Go(e,82)._control.focused,"accent"==Go(e,82).color,"warn"==Go(e,82).color,Go(e,82)._shouldForward("untouched"),Go(e,82)._shouldForward("touched"),Go(e,82)._shouldForward("pristine"),Go(e,82)._shouldForward("dirty"),Go(e,82)._shouldForward("valid"),Go(e,82)._shouldForward("invalid"),Go(e,82)._shouldForward("pending"),!Go(e,82)._animationsEnabled]),t(e,90,1,[Go(e,96).ngClassUntouched,Go(e,96).ngClassTouched,Go(e,96).ngClassPristine,Go(e,96).ngClassDirty,Go(e,96).ngClassValid,Go(e,96).ngClassInvalid,Go(e,96).ngClassPending,Go(e,97)._isServer,Go(e,97).id,Go(e,97).placeholder,Go(e,97).disabled,Go(e,97).required,Go(e,97).readonly&&!Go(e,97)._isNativeSelect||null,Go(e,97)._ariaDescribedby||null,Go(e,97).errorState,Go(e,97).required.toString()]),t(e,99,1,["standard"==Go(e,100).appearance,"fill"==Go(e,100).appearance,"outline"==Go(e,100).appearance,"legacy"==Go(e,100).appearance,Go(e,100)._control.errorState,Go(e,100)._canLabelFloat,Go(e,100)._shouldLabelFloat(),Go(e,100)._hasFloatingLabel(),Go(e,100)._hideControlPlaceholder(),Go(e,100)._control.disabled,Go(e,100)._control.autofilled,Go(e,100)._control.focused,"accent"==Go(e,100).color,"warn"==Go(e,100).color,Go(e,100)._shouldForward("untouched"),Go(e,100)._shouldForward("touched"),Go(e,100)._shouldForward("pristine"),Go(e,100)._shouldForward("dirty"),Go(e,100)._shouldForward("valid"),Go(e,100)._shouldForward("invalid"),Go(e,100)._shouldForward("pending"),!Go(e,100)._animationsEnabled]),t(e,108,1,[Go(e,114).ngClassUntouched,Go(e,114).ngClassTouched,Go(e,114).ngClassPristine,Go(e,114).ngClassDirty,Go(e,114).ngClassValid,Go(e,114).ngClassInvalid,Go(e,114).ngClassPending,Go(e,115)._isServer,Go(e,115).id,Go(e,115).placeholder,Go(e,115).disabled,Go(e,115).required,Go(e,115).readonly&&!Go(e,115)._isNativeSelect||null,Go(e,115)._ariaDescribedby||null,Go(e,115).errorState,Go(e,115).required.toString()]),t(e,117,1,["standard"==Go(e,118).appearance,"fill"==Go(e,118).appearance,"outline"==Go(e,118).appearance,"legacy"==Go(e,118).appearance,Go(e,118)._control.errorState,Go(e,118)._canLabelFloat,Go(e,118)._shouldLabelFloat(),Go(e,118)._hasFloatingLabel(),Go(e,118)._hideControlPlaceholder(),Go(e,118)._control.disabled,Go(e,118)._control.autofilled,Go(e,118)._control.focused,"accent"==Go(e,118).color,"warn"==Go(e,118).color,Go(e,118)._shouldForward("untouched"),Go(e,118)._shouldForward("touched"),Go(e,118)._shouldForward("pristine"),Go(e,118)._shouldForward("dirty"),Go(e,118)._shouldForward("valid"),Go(e,118)._shouldForward("invalid"),Go(e,118)._shouldForward("pending"),!Go(e,118)._animationsEnabled]),t(e,126,1,[Go(e,129).ngClassUntouched,Go(e,129).ngClassTouched,Go(e,129).ngClassPristine,Go(e,129).ngClassDirty,Go(e,129).ngClassValid,Go(e,129).ngClassInvalid,Go(e,129).ngClassPending,Go(e,130).id,Go(e,130).describedBy,Go(e,130).shouldLabelFloat,Go(e,130).isDisabled]),t(e,132,0,Go(e,133).inline,"primary"!==Go(e,133).color&&"accent"!==Go(e,133).color&&"warn"!==Go(e,133).color),t(e,136,1,["standard"==Go(e,137).appearance,"fill"==Go(e,137).appearance,"outline"==Go(e,137).appearance,"legacy"==Go(e,137).appearance,Go(e,137)._control.errorState,Go(e,137)._canLabelFloat,Go(e,137)._shouldLabelFloat(),Go(e,137)._hasFloatingLabel(),Go(e,137)._hideControlPlaceholder(),Go(e,137)._control.disabled,Go(e,137)._control.autofilled,Go(e,137)._control.focused,"accent"==Go(e,137).color,"warn"==Go(e,137).color,Go(e,137)._shouldForward("untouched"),Go(e,137)._shouldForward("touched"),Go(e,137)._shouldForward("pristine"),Go(e,137)._shouldForward("dirty"),Go(e,137)._shouldForward("valid"),Go(e,137)._shouldForward("invalid"),Go(e,137)._shouldForward("pending"),!Go(e,137)._animationsEnabled]),t(e,145,1,[Go(e,148).ngClassUntouched,Go(e,148).ngClassTouched,Go(e,148).ngClassPristine,Go(e,148).ngClassDirty,Go(e,148).ngClassValid,Go(e,148).ngClassInvalid,Go(e,148).ngClassPending,Go(e,149).id,Go(e,149).describedBy,Go(e,149).shouldLabelFloat,Go(e,149).isDisabled]),t(e,151,0,Go(e,152).inline,"primary"!==Go(e,152).color&&"accent"!==Go(e,152).color&&"warn"!==Go(e,152).color),t(e,155,1,["standard"==Go(e,156).appearance,"fill"==Go(e,156).appearance,"outline"==Go(e,156).appearance,"legacy"==Go(e,156).appearance,Go(e,156)._control.errorState,Go(e,156)._canLabelFloat,Go(e,156)._shouldLabelFloat(),Go(e,156)._hasFloatingLabel(),Go(e,156)._hideControlPlaceholder(),Go(e,156)._control.disabled,Go(e,156)._control.autofilled,Go(e,156)._control.focused,"accent"==Go(e,156).color,"warn"==Go(e,156).color,Go(e,156)._shouldForward("untouched"),Go(e,156)._shouldForward("touched"),Go(e,156)._shouldForward("pristine"),Go(e,156)._shouldForward("dirty"),Go(e,156)._shouldForward("valid"),Go(e,156)._shouldForward("invalid"),Go(e,156)._shouldForward("pending"),!Go(e,156)._animationsEnabled]),t(e,164,1,[Go(e,167).ngClassUntouched,Go(e,167).ngClassTouched,Go(e,167).ngClassPristine,Go(e,167).ngClassDirty,Go(e,167).ngClassValid,Go(e,167).ngClassInvalid,Go(e,167).ngClassPending,Go(e,168).id,Go(e,168).describedBy,Go(e,168).shouldLabelFloat,Go(e,168).isDisabled]),t(e,170,0,Go(e,171).inline,"primary"!==Go(e,171).color&&"accent"!==Go(e,171).color&&"warn"!==Go(e,171).color),t(e,174,1,[Go(e,175).id,null,Go(e,175).indeterminate,Go(e,175).checked,Go(e,175).disabled,"before"==Go(e,175).labelPosition,"NoopAnimations"===Go(e,175)._animationMode,Go(e,179).ngClassUntouched,Go(e,179).ngClassTouched,Go(e,179).ngClassPristine,Go(e,179).ngClassDirty,Go(e,179).ngClassValid,Go(e,179).ngClassInvalid,Go(e,179).ngClassPending]),t(e,181,1,[Go(e,182).id,null,Go(e,182).indeterminate,Go(e,182).checked,Go(e,182).disabled,"before"==Go(e,182).labelPosition,"NoopAnimations"===Go(e,182)._animationMode,Go(e,186).ngClassUntouched,Go(e,186).ngClassTouched,Go(e,186).ngClassPristine,Go(e,186).ngClassDirty,Go(e,186).ngClassValid,Go(e,186).ngClassInvalid,Go(e,186).ngClassPending]),t(e,191,0,Go(e,192).disabled||null,"NoopAnimations"===Go(e,192)._animationMode),t(e,194,0,Go(e,195).disabled||null,"NoopAnimations"===Go(e,195)._animationMode)})}function EP(t){return Ia(0,[(t()(),yo(0,0,null,null,2,"app-add-card",[],null,null,null,TP,DP)),la(512,null,h_,h_,[ph]),oa(2,114688,null,0,VE,[kS,MS,h_,Iv],null,null)],function(t,e){t(e,2,0)},null)}var AP=Ro("app-add-card",VE,EP,{},{},[]);function PP(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function OP(t,e){var n=e?"":"none";PP(t.style,{touchAction:e?"":"none",webkitUserDrag:e?"":"none",webkitTapHighlightColor:e?"":"transparent",userSelect:n,msUserSelect:n,webkitUserSelect:n,MozUserSelect:n})}function YP(t){var e=t.toLowerCase().indexOf("ms")>-1?1:1e3;return parseFloat(t)*e}function RP(t,e){return t.getPropertyValue(e).split(",").map(function(t){return t.trim()})}var IP=ac({passive:!0}),FP=ac({passive:!1}),zP=function(){function t(t,e,n,i,r,o){var a=this;this._config=e,this._document=n,this._ngZone=i,this._viewportRuler=r,this._dragDropRegistry=o,this._passiveTransform={x:0,y:0},this._activeTransform={x:0,y:0},this._moveEvents=new H,this._moveEventSubscriptions=0,this._pointerMoveSubscription=x.EMPTY,this._pointerUpSubscription=x.EMPTY,this._boundaryElement=null,this._nativeInteractionsEnabled=!0,this._handles=[],this._disabledHandles=new Set,this._direction="ltr",this._disabled=!1,this.beforeStarted=new H,this.started=new H,this.released=new H,this.ended=new H,this.entered=new H,this.exited=new H,this.dropped=new H,this.moved=new Y(function(t){var e=a._moveEvents.subscribe(t);return a._moveEventSubscriptions++,function(){e.unsubscribe(),a._moveEventSubscriptions--}}),this._pointerDown=function(t){if(a.beforeStarted.next(),a._handles.length){var e=a._handles.find(function(e){var n=t.target;return!!n&&(n===e||e.contains(n))});!e||a._disabledHandles.has(e)||a.disabled||a._initializeDragSequence(e,t)}else a.disabled||a._initializeDragSequence(a._rootElement,t)},this._pointerMove=function(t){if(a._hasStartedDragging){a._boundaryElement&&(a._previewRect&&(a._previewRect.width||a._previewRect.height)||(a._previewRect=(a._preview||a._rootElement).getBoundingClientRect()));var e=a._getConstrainedPointerPosition(t);if(a._hasMoved=!0,t.preventDefault(),a._updatePointerDirectionDelta(e),a._dropContainer)a._updateActiveDropContainer(e);else{var n=a._activeTransform;n.x=e.x-a._pickupPositionOnPage.x+a._passiveTransform.x,n.y=e.y-a._pickupPositionOnPage.y+a._passiveTransform.y;var i=jP(n.x,n.y);a._rootElement.style.transform=a._initialTransform?i+" "+a._initialTransform:i,"undefined"!=typeof SVGElement&&a._rootElement instanceof SVGElement&&a._rootElement.setAttribute("transform","translate("+n.x+" "+n.y+")")}a._moveEventSubscriptions>0&&a._ngZone.run(function(){a._moveEvents.next({source:a,pointerPosition:e,event:t,delta:a._pointerDirectionDelta})})}else{var r=a._getPointerPositionOnPage(t);Math.abs(r.x-a._pickupPositionOnPage.x)+Math.abs(r.y-a._pickupPositionOnPage.y)>=a._config.dragStartThreshold&&(a._hasStartedDragging=!0,a._ngZone.run(function(){return a._startDragSequence(t)}))}},this._pointerUp=function(t){if(a._dragDropRegistry.isDragging(a)&&(a._removeSubscriptions(),a._dragDropRegistry.stopDragging(a),a._handles&&(a._rootElement.style.webkitTapHighlightColor=a._rootElementTapHighlight),a._hasStartedDragging)){if(a.released.next({source:a}),!a._dropContainer)return a._passiveTransform.x=a._activeTransform.x,a._passiveTransform.y=a._activeTransform.y,a._ngZone.run(function(){return a.ended.next({source:a})}),void a._dragDropRegistry.stopDragging(a);a._animatePreviewToPlaceholder().then(function(){a._cleanupDragArtifacts(t),a._dragDropRegistry.stopDragging(a)})}},this.withRootElement(t),o.registerDragItem(this)}return Object.defineProperty(t.prototype,"disabled",{get:function(){return this._disabled||!(!this._dropContainer||!this._dropContainer.disabled)},set:function(t){var e=Xu(t);e!==this._disabled&&(this._disabled=e,this._toggleNativeDragInteractions())},enumerable:!0,configurable:!0}),t.prototype.getPlaceholderElement=function(){return this._placeholder},t.prototype.getRootElement=function(){return this._rootElement},t.prototype.withHandles=function(t){return this._handles=t.map(function(t){return $u(t)}),this._handles.forEach(function(t){return OP(t,!1)}),this._toggleNativeDragInteractions(),this},t.prototype.withPreviewTemplate=function(t){return this._previewTemplate=t,this},t.prototype.withPlaceholderTemplate=function(t){return this._placeholderTemplate=t,this},t.prototype.withRootElement=function(t){var e=$u(t);return e!==this._rootElement&&(this._rootElement&&this._removeRootElementListeners(this._rootElement),e.addEventListener("mousedown",this._pointerDown,FP),e.addEventListener("touchstart",this._pointerDown,IP),this._initialTransform=void 0,this._rootElement=e),this},t.prototype.withBoundaryElement=function(t){return this._boundaryElement=t?$u(t):null,this},t.prototype.dispose=function(){this._removeRootElementListeners(this._rootElement),this.isDragging()&&VP(this._rootElement),this._destroyPreview(),this._destroyPlaceholder(),this._dragDropRegistry.removeDragItem(this),this._removeSubscriptions(),this.beforeStarted.complete(),this.started.complete(),this.released.complete(),this.ended.complete(),this.entered.complete(),this.exited.complete(),this.dropped.complete(),this._moveEvents.complete(),this._handles=[],this._disabledHandles.clear(),this._dropContainer=void 0,this._boundaryElement=this._rootElement=this._placeholderTemplate=this._previewTemplate=this._nextSibling=null},t.prototype.isDragging=function(){return this._hasStartedDragging&&this._dragDropRegistry.isDragging(this)},t.prototype.reset=function(){this._rootElement.style.transform=this._initialTransform||"",this._activeTransform={x:0,y:0},this._passiveTransform={x:0,y:0}},t.prototype.disableHandle=function(t){this._handles.indexOf(t)>-1&&this._disabledHandles.add(t)},t.prototype.enableHandle=function(t){this._disabledHandles.delete(t)},t.prototype.withDirection=function(t){return this._direction=t,this},t.prototype._withDropContainer=function(t){this._dropContainer=t},t.prototype._removeSubscriptions=function(){this._pointerMoveSubscription.unsubscribe(),this._pointerUpSubscription.unsubscribe()},t.prototype._destroyPreview=function(){this._preview&&VP(this._preview),this._previewRef&&this._previewRef.destroy(),this._preview=this._previewRef=null},t.prototype._destroyPlaceholder=function(){this._placeholder&&VP(this._placeholder),this._placeholderRef&&this._placeholderRef.destroy(),this._placeholder=this._placeholderRef=null},t.prototype._startDragSequence=function(t){if(this.started.next({source:this}),BP(t)&&(this._lastTouchEventTime=Date.now()),this._dropContainer){var e=this._rootElement;this._nextSibling=e.nextSibling;var n=this._preview=this._createPreviewElement(),i=this._placeholder=this._createPlaceholderElement();e.style.display="none",this._document.body.appendChild(e.parentNode.replaceChild(i,e)),this._document.body.appendChild(n),this._dropContainer.start()}},t.prototype._initializeDragSequence=function(t,e){e.stopPropagation();var n=this.isDragging(),i=BP(e),r=!i&&0!==e.button,o=this._rootElement,a=!i&&this._lastTouchEventTime&&this._lastTouchEventTime+800>Date.now();if(e.target&&e.target.draggable&&"mousedown"===e.type&&e.preventDefault(),!(n||r||a)){null==this._initialTransform&&(this._initialTransform=this._rootElement.style.transform||""),this._handles.length&&(this._rootElementTapHighlight=o.style.webkitTapHighlightColor,o.style.webkitTapHighlightColor="transparent"),this._toggleNativeDragInteractions(),this._hasStartedDragging=this._hasMoved=!1,this._initialContainer=this._dropContainer,this._pointerMoveSubscription=this._dragDropRegistry.pointerMove.subscribe(this._pointerMove),this._pointerUpSubscription=this._dragDropRegistry.pointerUp.subscribe(this._pointerUp),this._scrollPosition=this._viewportRuler.getViewportScrollPosition(),this._boundaryElement&&(this._boundaryRect=this._boundaryElement.getBoundingClientRect()),this._pickupPositionInElement=this._previewTemplate&&this._previewTemplate.template?{x:0,y:0}:this._getPointerPositionInElement(t,e);var l=this._pickupPositionOnPage=this._getPointerPositionOnPage(e);this._pointerDirectionDelta={x:0,y:0},this._pointerPositionAtLastDirectionChange={x:l.x,y:l.y},this._dragDropRegistry.startDragging(this,e)}},t.prototype._cleanupDragArtifacts=function(t){var e=this;this._rootElement.style.display="",this._nextSibling?this._nextSibling.parentNode.insertBefore(this._rootElement,this._nextSibling):this._initialContainer.element.appendChild(this._rootElement),this._destroyPreview(),this._destroyPlaceholder(),this._boundaryRect=this._previewRect=void 0,this._ngZone.run(function(){var n=e._dropContainer,i=n.getItemIndex(e),r=e._getPointerPositionOnPage(t),o=n._isOverContainer(r.x,r.y);e.ended.next({source:e}),e.dropped.next({item:e,currentIndex:i,previousIndex:e._initialContainer.getItemIndex(e),container:n,previousContainer:e._initialContainer,isPointerOverContainer:o}),n.drop(e,i,e._initialContainer,o),e._dropContainer=e._initialContainer})},t.prototype._updateActiveDropContainer=function(t){var e=this,n=t.x,i=t.y,r=this._dropContainer._getSiblingContainerFromPosition(this,n,i)||this._initialContainer._getSiblingContainerFromPosition(this,n,i);!r&&this._dropContainer!==this._initialContainer&&this._initialContainer._isOverContainer(n,i)&&(r=this._initialContainer),r&&r!==this._dropContainer&&this._ngZone.run(function(){e.exited.next({item:e,container:e._dropContainer}),e._dropContainer.exit(e),e.entered.next({item:e,container:r}),e._dropContainer=r,e._dropContainer.enter(e,n,i)}),this._dropContainer._sortItem(this,n,i,this._pointerDirectionDelta),this._preview.style.transform=jP(n-this._pickupPositionInElement.x,i-this._pickupPositionInElement.y)},t.prototype._createPreviewElement=function(){var t,e=this._previewTemplate,n=e?e.template:null;if(n){var i=e.viewContainer.createEmbeddedView(n,e.context);t=i.rootNodes[0],this._previewRef=i,t.style.transform=jP(this._pickupPositionOnPage.x,this._pickupPositionOnPage.y)}else{var r=this._rootElement,o=r.getBoundingClientRect();(t=HP(r)).style.width=o.width+"px",t.style.height=o.height+"px",t.style.transform=jP(o.left,o.top)}return PP(t.style,{pointerEvents:"none",position:"fixed",top:"0",left:"0",zIndex:"1000"}),OP(t,!1),t.classList.add("cdk-drag-preview"),t.setAttribute("dir",this._direction),t},t.prototype._animatePreviewToPlaceholder=function(){var t=this;if(!this._hasMoved)return Promise.resolve();var e=this._placeholder.getBoundingClientRect();this._preview.classList.add("cdk-drag-animating"),this._preview.style.transform=jP(e.left,e.top);var n=function(t){var e=getComputedStyle(t),n=RP(e,"transition-property"),i=n.find(function(t){return"transform"===t||"all"===t});if(!i)return 0;var r=n.indexOf(i),o=RP(e,"transition-duration"),a=RP(e,"transition-delay");return YP(o[r])+YP(a[r])}(this._preview);return 0===n?Promise.resolve():this._ngZone.runOutsideAngular(function(){return new Promise(function(e){var i=function(n){(!n||n.target===t._preview&&"transform"===n.propertyName)&&(t._preview.removeEventListener("transitionend",i),e(),clearTimeout(r))},r=setTimeout(i,1.5*n);t._preview.addEventListener("transitionend",i)})})},t.prototype._createPlaceholderElement=function(){var t,e=this._placeholderTemplate,n=e?e.template:null;return n?(this._placeholderRef=e.viewContainer.createEmbeddedView(n,e.context),t=this._placeholderRef.rootNodes[0]):t=HP(this._rootElement),t.classList.add("cdk-drag-placeholder"),t},t.prototype._getPointerPositionInElement=function(t,e){var n=this._rootElement.getBoundingClientRect(),i=t===this._rootElement?null:t,r=i?i.getBoundingClientRect():n,o=BP(e)?e.targetTouches[0]:e;return{x:r.left-n.left+(o.pageX-r.left-this._scrollPosition.left),y:r.top-n.top+(o.pageY-r.top-this._scrollPosition.top)}},t.prototype._getPointerPositionOnPage=function(t){var e=BP(t)?t.touches[0]||t.changedTouches[0]:t;return{x:e.pageX-this._scrollPosition.left,y:e.pageY-this._scrollPosition.top}},t.prototype._getConstrainedPointerPosition=function(t){var e=this._getPointerPositionOnPage(t),n=this._dropContainer?this._dropContainer.lockAxis:null;if("x"===this.lockAxis||"x"===n?e.y=this._pickupPositionOnPage.y:"y"!==this.lockAxis&&"y"!==n||(e.x=this._pickupPositionOnPage.x),this._boundaryRect){var i=this._pickupPositionInElement,r=i.x,o=i.y,a=this._boundaryRect,l=this._previewRect,s=a.top+o,u=a.bottom-(l.height-o);e.x=NP(e.x,a.left+r,a.right-(l.width-r)),e.y=NP(e.y,s,u)}return e},t.prototype._updatePointerDirectionDelta=function(t){var e=t.x,n=t.y,i=this._pointerDirectionDelta,r=this._pointerPositionAtLastDirectionChange,o=Math.abs(e-r.x),a=Math.abs(n-r.y);return o>this._config.pointerDirectionChangeThreshold&&(i.x=e>r.x?1:-1,r.x=e),a>this._config.pointerDirectionChangeThreshold&&(i.y=n>r.y?1:-1,r.y=n),i},t.prototype._toggleNativeDragInteractions=function(){if(this._rootElement&&this._handles){var t=this.disabled||this._handles.length>0;t!==this._nativeInteractionsEnabled&&(this._nativeInteractionsEnabled=t,OP(this._rootElement,t))}},t.prototype._removeRootElementListeners=function(t){t.removeEventListener("mousedown",this._pointerDown,FP),t.removeEventListener("touchstart",this._pointerDown,IP)},t}();function jP(t,e){return"translate3d("+Math.round(t)+"px, "+Math.round(e)+"px, 0)"}function HP(t){var e=t.cloneNode(!0);return e.removeAttribute("id"),e}function NP(t,e,n){return Math.max(e,Math.min(n,t))}function VP(t){t&&t.parentNode&&t.parentNode.removeChild(t)}function BP(t){return t.type.startsWith("touch")}function WP(t,e){return Math.max(0,Math.min(e,t))}var UP=0,GP=function(){function t(t,e,n){this._dragDropRegistry=e,this.id="cdk-drop-list-ref-"+UP++,this.disabled=!1,this.enterPredicate=function(){return!0},this.beforeStarted=new H,this.entered=new H,this.exited=new H,this.dropped=new H,this.sorted=new H,this._isDragging=!1,this._itemPositions=[],this._previousSwap={drag:null,delta:0},this._siblings=[],this._orientation="vertical",this._activeSiblings=new Set,this._direction="ltr",e.registerDropContainer(this),this._document=n,this.element=t instanceof Ve?t.nativeElement:t}return t.prototype.dispose=function(){this.beforeStarted.complete(),this.entered.complete(),this.exited.complete(),this.dropped.complete(),this.sorted.complete(),this._activeSiblings.clear(),this._dragDropRegistry.removeDropContainer(this)},t.prototype.isDragging=function(){return this._isDragging},t.prototype.start=function(){var t=this;this.beforeStarted.next(),this._isDragging=!0,this._activeDraggables=this._draggables.slice(),this._cacheOwnPosition(),this._cacheItemPositions(),this._siblings.forEach(function(e){return e._startReceiving(t)})},t.prototype.enter=function(t,e,n){this.entered.next({item:t,container:this}),this.start();var i=this._getItemIndexFromPointerPosition(t,e,n),r=this._activeDraggables.indexOf(t),o=this._activeDraggables[i],a=t.getPlaceholderElement();if(r>-1&&this._activeDraggables.splice(r,1),o&&!this._dragDropRegistry.isDragging(o)){var l=o.getRootElement();l.parentElement.insertBefore(a,l),this._activeDraggables.splice(i,0,t)}else this.element.appendChild(a),this._activeDraggables.push(t);a.style.transform="",this._cacheItemPositions()},t.prototype.exit=function(t){this._reset(),this.exited.next({item:t,container:this})},t.prototype.drop=function(t,e,n,i){this._reset(),this.dropped.next({item:t,currentIndex:e,previousIndex:n.getItemIndex(t),container:this,previousContainer:n,isPointerOverContainer:i})},t.prototype.withItems=function(t){var e=this;return this._draggables=t,t.forEach(function(t){return t._withDropContainer(e)}),this},t.prototype.withDirection=function(t){return this._direction=t,this},t.prototype.connectedTo=function(t){return this._siblings=t.slice(),this},t.prototype.withOrientation=function(t){return this._orientation=t,this},t.prototype.getItemIndex=function(t){return this._isDragging?XP("horizontal"===this._orientation&&"rtl"===this._direction?this._itemPositions.slice().reverse():this._itemPositions,function(e){return e.drag===t}):this._draggables.indexOf(t)},t.prototype.isReceiving=function(){return this._activeSiblings.size>0},t.prototype._sortItem=function(t,e,n,i){if(this._isPointerNearDropContainer(e,n)){var r=this._itemPositions,o=this._getItemIndexFromPointerPosition(t,e,n,i);if(!(-1===o&&r.length>0)){var a="horizontal"===this._orientation,l=XP(r,function(e){return e.drag===t}),s=r[o],u=r[l].clientRect,c=s.clientRect,d=l>o?1:-1;this._previousSwap.drag=s.drag,this._previousSwap.delta=a?i.x:i.y;var h=this._getItemOffsetPx(u,c,d),p=this._getSiblingOffsetPx(l,r,d),f=r.slice();!function(t,e,n){var i=WP(l,t.length-1),r=WP(n,t.length-1);if(i!==r){for(var o=t[i],a=rn.top-r&&en.left-i&&t=Math.floor(c.left)&&e<=Math.floor(c.right):n>=Math.floor(c.top)&&n<=Math.floor(c.bottom))})},t.prototype._isOverContainer=function(t,e){return KP(this._clientRect,t,e)},t.prototype._getSiblingContainerFromPosition=function(t,e,n){return this._siblings.find(function(i){return i._canReceive(t,e,n)})},t.prototype._canReceive=function(t,e,n){if(!this.enterPredicate(t,this)||!KP(this._clientRect,e,n))return!1;var i=this._document.elementFromPoint(e,n);return!!i&&(i===this.element||this.element.contains(i))},t.prototype._startReceiving=function(t){var e=this._activeSiblings;e.has(t)||(e.add(t),this._cacheOwnPosition())},t.prototype._stopReceiving=function(t){this._activeSiblings.delete(t)},t}();function qP(t,e,n){t.top+=e,t.bottom=t.top+t.height,t.left+=n,t.right=t.left+t.width}function XP(t,e){for(var n=0;n=t.top&&n<=t.bottom&&e>=t.left&&e<=t.right}var ZP=ac({passive:!1,capture:!0}),JP=function(){function t(t,e){var n=this;this._ngZone=t,this._dropInstances=new Set,this._dragInstances=new Set,this._activeDragInstances=new Set,this._globalListeners=new Map,this.pointerMove=new H,this.pointerUp=new H,this._preventDefaultWhileDragging=function(t){n._activeDragInstances.size&&t.preventDefault()},this._document=e}return t.prototype.registerDropContainer=function(t){if(!this._dropInstances.has(t)){if(this.getDropContainer(t.id))throw Error('Drop instance with id "'+t.id+'" has already been registered.');this._dropInstances.add(t)}},t.prototype.registerDragItem=function(t){var e=this;this._dragInstances.add(t),1===this._dragInstances.size&&this._ngZone.runOutsideAngular(function(){e._document.addEventListener("touchmove",e._preventDefaultWhileDragging,ZP)})},t.prototype.removeDropContainer=function(t){this._dropInstances.delete(t)},t.prototype.removeDragItem=function(t){this._dragInstances.delete(t),this.stopDragging(t),0===this._dragInstances.size&&this._document.removeEventListener("touchmove",this._preventDefaultWhileDragging,ZP)},t.prototype.startDragging=function(t,e){var n=this;if(this._activeDragInstances.add(t),1===this._activeDragInstances.size){var i=e.type.startsWith("touch"),r=i?"touchend":"mouseup";this._globalListeners.set(i?"touchmove":"mousemove",{handler:function(t){return n.pointerMove.next(t)},options:ZP}).set(r,{handler:function(t){return n.pointerUp.next(t)},options:!0}).set("selectstart",{handler:this._preventDefaultWhileDragging,options:ZP}),i||this._globalListeners.set("wheel",{handler:this._preventDefaultWhileDragging,options:ZP}),this._ngZone.runOutsideAngular(function(){n._globalListeners.forEach(function(t,e){n._document.addEventListener(e,t.handler,t.options)})})}},t.prototype.stopDragging=function(t){this._activeDragInstances.delete(t),0===this._activeDragInstances.size&&this._clearGlobalListeners()},t.prototype.isDragging=function(t){return this._activeDragInstances.has(t)},t.prototype.getDropContainer=function(t){return Array.from(this._dropInstances).find(function(e){return e.id===t})},t.prototype.ngOnDestroy=function(){var t=this;this._dragInstances.forEach(function(e){return t.removeDragItem(e)}),this._dropInstances.forEach(function(e){return t.removeDropContainer(e)}),this._clearGlobalListeners(),this.pointerMove.complete(),this.pointerUp.complete()},t.prototype._clearGlobalListeners=function(){var t=this;this._globalListeners.forEach(function(e,n){t._document.removeEventListener(n,e.handler,e.options)}),this._globalListeners.clear()},t.ngInjectableDef=St({factory:function(){return new t(ie(Mi),ie(As))},token:t,providedIn:"root"}),t}(),QP={dragStartThreshold:5,pointerDirectionChangeThreshold:5},$P=function(){function t(t,e,n,i){this._document=t,this._ngZone=e,this._viewportRuler=n,this._dragDropRegistry=i}return t.prototype.createDrag=function(t,e){return void 0===e&&(e=QP),new zP(t,e,this._document,this._ngZone,this._viewportRuler,this._dragDropRegistry)},t.prototype.createDropList=function(t){return new GP(t,this._dragDropRegistry,this._document)},t.ngInjectableDef=St({factory:function(){return new t(ie(As),ie(Mi),ie(SM),ie(JP))},token:t,providedIn:"root"}),t}(),tO=new Lt("CDK_DROP_LIST"),eO=new Lt("CDK_DRAG_PARENT"),nO=new Lt("CDK_DRAG_CONFIG",{providedIn:"root",factory:function(){return{dragStartThreshold:5,pointerDirectionChangeThreshold:5}}}),iO=function(){function t(t,e,n,i,r,o,a,l,s,u,c){var d=this;this.element=t,this.dropContainer=e,this._document=n,this._ngZone=i,this._viewContainerRef=r,this._dir=s,this._changeDetectorRef=c,this._destroyed=new H,this._disabled=!1,this.started=new kn,this.released=new kn,this.ended=new kn,this.entered=new kn,this.exited=new kn,this.dropped=new kn,this.moved=new Y(function(t){var e=d._dragRef.moved.pipe(nt(function(t){return{source:d,pointerPosition:t.pointerPosition,event:t.event,delta:t.delta}})).subscribe(t);return function(){e.unsubscribe()}}),this._dragRef=u?u.createDrag(t,l):new zP(t,l,n,i,o,a),this._dragRef.data=this,this._syncInputs(this._dragRef),this._handleEvents(this._dragRef)}return Object.defineProperty(t.prototype,"disabled",{get:function(){return this._disabled||this.dropContainer&&this.dropContainer.disabled},set:function(t){this._disabled=Xu(t),this._dragRef.disabled=this._disabled},enumerable:!0,configurable:!0}),t.prototype.getPlaceholderElement=function(){return this._dragRef.getPlaceholderElement()},t.prototype.getRootElement=function(){return this._dragRef.getRootElement()},t.prototype.reset=function(){this._dragRef.reset()},t.prototype.ngAfterViewInit=function(){var t=this;this._ngZone.onStable.asObservable().pipe(Ac(1),fg(this._destroyed)).subscribe(function(){t._updateRootElement(),t._handles.changes.pipe(hc(t._handles),mc(function(e){var n=e.filter(function(e){return e._parentDrag===t}).map(function(t){return t.element});t._dragRef.withHandles(n)}),ip(function(t){return ht.apply(void 0,t.map(function(t){return t._stateChanges}))}),fg(t._destroyed)).subscribe(function(e){var n=t._dragRef,i=e.element.nativeElement;e.disabled?n.disableHandle(i):n.enableHandle(i)})})},t.prototype.ngOnChanges=function(t){var e=t.rootElementSelector;e&&!e.firstChange&&this._updateRootElement()},t.prototype.ngOnDestroy=function(){this._destroyed.next(),this._destroyed.complete(),this._dragRef.dispose()},t.prototype._updateRootElement=function(){var t=this.element.nativeElement,e=this.rootElementSelector?rO(t,this.rootElementSelector):t;if(e&&e.nodeType!==this._document.ELEMENT_NODE)throw Error('cdkDrag must be attached to an element node. Currently attached to "'+e.nodeName+'".');this._dragRef.withRootElement(e||t)},t.prototype._getBoundaryElement=function(){var t=this.boundaryElementSelector;return t?rO(this.element.nativeElement,t):null},t.prototype._syncInputs=function(t){var e=this;t.beforeStarted.subscribe(function(){if(!t.isDragging()){var n=e._dir,i=e._placeholderTemplate?{template:e._placeholderTemplate.templateRef,context:e._placeholderTemplate.data,viewContainer:e._viewContainerRef}:null,r=e._previewTemplate?{template:e._previewTemplate.templateRef,context:e._previewTemplate.data,viewContainer:e._viewContainerRef}:null;t.disabled=e.disabled,t.lockAxis=e.lockAxis,t.withBoundaryElement(e._getBoundaryElement()).withPlaceholderTemplate(i).withPreviewTemplate(r),n&&t.withDirection(n.value)}})},t.prototype._handleEvents=function(t){var e=this;t.started.subscribe(function(){e.started.emit({source:e}),e._changeDetectorRef&&e._changeDetectorRef.markForCheck()}),t.released.subscribe(function(){e.released.emit({source:e})}),t.ended.subscribe(function(){e.ended.emit({source:e}),e._changeDetectorRef&&e._changeDetectorRef.markForCheck()}),t.entered.subscribe(function(t){e.entered.emit({container:t.container.data,item:e})}),t.exited.subscribe(function(t){e.exited.emit({container:t.container.data,item:e})}),t.dropped.subscribe(function(t){e.dropped.emit({previousIndex:t.previousIndex,currentIndex:t.currentIndex,previousContainer:t.previousContainer.data,container:t.container.data,isPointerOverContainer:t.isPointerOverContainer,item:e})})},t}();function rO(t,e){for(var n=t.parentElement;n;){if(n.matches?n.matches(e):n.msMatchesSelector(e))return n;n=n.parentElement}return null}var oO=function(){return function(){}}(),aO=Vr({encapsulation:0,styles:[[".mat-card-image[_ngcontent-%COMP%]{margin:.1em!important;display:block;-o-object-fit:cover;object-fit:cover;width:90%}.formbutton[_ngcontent-%COMP%]{margin-right:1em;margin-bottom:2px}.mat-card-header[_ngcontent-%COMP%]{min-height:1em;width:100%;padding:0;display:flex}.module[_ngcontent-%COMP%]{cursor:-webkit-grab;cursor:-moz-grab}.module[_ngcontent-%COMP%]:active{cursor:-webkit-grabbing;cursor:-moz-grabbing}.cardcontexttext[_ngcontent-%COMP%]{display:flex;margin-top:3px;text-align:center!important;font-size:10pt;align-items:center;justify-content:center}"]],data:{}});function lO(t){return Ia(0,[(t()(),yo(0,0,null,null,5,"div",[["class","mat-dialog-title"],["disableTypography",""],["fxLayout","row"],["fxLayoutAlign","space-between center"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(1,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(2,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(3,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),yo(4,0,null,null,1,"h1",[],null,null,null,null,null)),(t()(),Oa(5,null,["",""])),(t()(),yo(6,0,null,null,19,"mat-dialog-content",[["class","mat-typography mat-dialog-content"],["style","overflow: hidden;"]],null,null,null,null,null)),oa(7,16384,null,0,PS,[],null,null),(t()(),yo(8,0,null,null,17,"div",[["fxLayout","column"],["fxLayoutAlign","center"]],null,null,null,null,null)),oa(9,671744,null,0,ly,[Ve,Xg,[2,oy],Qg],{fxLayout:[0,"fxLayout"]},null),oa(10,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),(t()(),yo(11,0,null,null,14,"mat-card",[["class","mat-card"]],null,null,null,S_,M_)),oa(12,49152,null,0,x_,[],null,null),(t()(),yo(13,0,null,0,12,"mat-card-content",[["class","cardcontexttext mat-card-content"],["fxLayoutAlign","center"]],null,null,null,null,null)),oa(14,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(15,16384,null,0,__,[],null,null),(t()(),yo(16,0,null,null,9,"div",[["flex-direction:column",""],["fxFlex",""],["fxLayoutAlign","center"],["style","justify-content: center; overflow: hidden; align-items:center; width: 100%;\n height: 100%;"]],null,null,null,null,null)),oa(17,671744,null,0,jy,[Ve,Xg,[2,Fy],Qg],{fxLayoutAlign:[0,"fxLayoutAlign"]},null),oa(18,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(19,16777216,null,null,6,"img",[["alt","Source picture"],["cdkDrag",""],["class","module mat-card-image cdk-drag"],["mat-card-image",""]],[[8,"src",4],[2,"cdk-drag-disabled",null],[2,"cdk-drag-dragging",null]],null,null,null,null)),la(6144,null,eO,null,[iO]),oa(21,16384,null,0,b_,[],null,null),oa(22,4866048,null,3,iO,[Ve,[3,tO],As,Mi,Xi,SM,JP,nO,[2,Zy],$P,Zi],null,null),wa(603979776,1,{_handles:1}),wa(335544320,2,{_previewTemplate:0}),wa(335544320,3,{_placeholderTemplate:0}),(t()(),yo(26,0,null,null,7,"mat-dialog-actions",[["align","end"],["class","mat-dialog-actions"],["style"," margin-top: 1em;"]],null,null,null,null,null)),oa(27,16384,null,0,OS,[],null,null),(t()(),yo(28,0,null,null,2,"button",[["class","formbutton"],["color","primary"],["focus","true"],["mat-primary",""],["mat-raised-button",""],["type","submit"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onLoadImage()&&i),i},Nk,Hk)),oa(29,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],{color:[0,"color"]},null),(t()(),Oa(-1,0,["Download"])),(t()(),yo(31,0,null,null,2,"button",[["class","formbutton"],["mat-raised-button",""]],[[8,"disabled",0],[2,"_mat-animation-noopable",null]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.onOk()&&i),i},Nk,Hk)),oa(32,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),(t()(),Oa(-1,0,["Close"]))],function(t,e){t(e,1,0,"row"),t(e,2,0,"space-between center"),t(e,3,0),t(e,9,0,"column"),t(e,10,0,"center"),t(e,14,0,"center"),t(e,17,0,"center"),t(e,18,0,""),t(e,29,0,"primary")},function(t,e){var n=e.component;t(e,0,0,Go(e,3).id),t(e,5,0,n.title),t(e,19,0,n.imageURL,Go(e,22).disabled,Go(e,22)._dragRef.isDragging()),t(e,28,0,Go(e,29).disabled||null,"NoopAnimations"===Go(e,29)._animationMode),t(e,31,0,Go(e,32).disabled||null,"NoopAnimations"===Go(e,32)._animationMode)})}function sO(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-image-dialog",[],null,null,null,lO,aO)),oa(1,114688,null,0,zL,[kS,MS],null,null)],function(t,e){t(e,1,0)},null)}var uO=Ro("app-image-dialog",zL,sO,{},{},[]),cO=Vr({encapsulation:0,styles:[["h2[_ngcontent-%COMP%]{height:30px;padding-top:unset;margin-left:40px;margin-top:10px;text-align:center}.mat-icon[_ngcontent-%COMP%]{font-size:50px}.red[_ngcontent-%COMP%]{color:red}.green[_ngcontent-%COMP%]{color:green}"]],data:{}});function dO(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"div",[["class","row red"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,2,"mat-icon",[["aria-hidden","false"],["aria-label","error"],["aria-setsize","36"],["class","red mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(2,9158656,null,0,Ak,[Ve,kk,[8,"false"],[2,Lk]],null,null),(t()(),Oa(-1,0,["error"])),(t()(),yo(4,0,null,null,2,"h2",[["class","aligned-with-icon mat-dialog-title"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(5,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),Oa(-1,null,["Error"]))],function(t,e){t(e,2,0),t(e,5,0)},function(t,e){t(e,1,0,Go(e,2).inline,"primary"!==Go(e,2).color&&"accent"!==Go(e,2).color&&"warn"!==Go(e,2).color),t(e,4,0,Go(e,5).id)})}function hO(t){return Ia(0,[(t()(),yo(0,0,null,null,6,"div",[["class","row green"]],null,null,null,null,null)),(t()(),yo(1,0,null,null,2,"mat-icon",[["aria-hidden","false"],["aria-label","error"],["aria-setsize","36"],["class","green mat-icon notranslate"],["role","img"]],[[2,"mat-icon-inline",null],[2,"mat-icon-no-color",null]],null,null,Yk,Ok)),oa(2,9158656,null,0,Ak,[Ve,kk,[8,"false"],[2,Lk]],null,null),(t()(),Oa(-1,0,["check"])),(t()(),yo(4,0,null,null,2,"h2",[["class","aligned-with-icon mat-dialog-title"],["mat-dialog-title",""]],[[8,"id",0]],null,null,null,null)),oa(5,81920,null,0,AS,[[2,kS],Ve,DS],null,null),(t()(),Oa(-1,null,["OK"]))],function(t,e){t(e,2,0),t(e,5,0)},function(t,e){t(e,1,0,Go(e,2).inline,"primary"!==Go(e,2).color&&"accent"!==Go(e,2).color&&"warn"!==Go(e,2).color),t(e,4,0,Go(e,5).id)})}function pO(t){return Ia(0,[(t()(),go(16777216,null,null,1,null,dO)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),go(16777216,null,null,1,null,hO)),oa(3,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(4,0,null,null,3,"mat-dialog-content",[["class","mat-dialog-content"]],null,null,null,null,null)),oa(5,16384,null,0,PS,[],null,null),(t()(),yo(6,0,null,null,1,"p",[],null,null,null,null,null)),(t()(),Oa(7,null,["",""])),(t()(),yo(8,0,null,null,5,"mat-dialog-actions",[["align","end"],["class","mat-dialog-actions"]],null,null,null,null,null)),oa(9,16384,null,0,OS,[],null,null),(t()(),yo(10,0,null,null,3,"button",[["cdkFocusInitial",""],["mat-button",""],["type","button"]],[[8,"disabled",0],[2,"_mat-animation-noopable",null],[1,"aria-label",0]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,12).dialogRef.close(Go(t,12).dialogResult)&&i),i},Nk,Hk)),oa(11,180224,null,0,Fk,[Ve,nc,$c,[2,Ow]],null,null),oa(12,606208,null,0,ES,[[2,kS],Ve,DS],{dialogResult:[0,"dialogResult"]},null),(t()(),Oa(-1,0,["Close"]))],function(t,e){var n=e.component;t(e,1,0,n.data.error),t(e,3,0,!n.data.error),t(e,12,0,!0)},function(t,e){t(e,7,0,e.component.data.msg),t(e,10,0,Go(e,11).disabled||null,"NoopAnimations"===Go(e,11)._animationMode,Go(e,12).ariaLabel||null)})}function fO(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-error-dialog",[],null,null,null,pO,cO)),oa(1,114688,null,0,JT,[kS,MS],null,null)],function(t,e){t(e,1,0)},null)}var mO=Ro("app-error-dialog",JT,fO,{},{},[]),gO=od(function(){return function(t){this._elementRef=t}}()),yO=function(){return function(){}}(),_O=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r._platform=n,r._document=i,r}return r(e,t),e.prototype.ngAfterViewInit=function(){var t=this;tn()&&this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(function(){return t._checkToolbarMixedModes()}))},e.prototype._checkToolbarMixedModes=function(){var t=this;this._toolbarRows.length&&Array.from(this._elementRef.nativeElement.childNodes).filter(function(t){return!(t.classList&&t.classList.contains("mat-toolbar-row"))}).filter(function(e){return e.nodeType!==(t._document?t._document.COMMENT_NODE:8)}).some(function(t){return!(!t.textContent||!t.textContent.trim())})&&function(){throw Error("MatToolbar: Attempting to combine different toolbar modes. Either specify multiple `` elements explicitly or just place content inside of a `` for a single row.")}()},e}(gO),vO=function(){return function(){}}(),bO=Vr({encapsulation:2,styles:["@media (-ms-high-contrast:active){.mat-toolbar{outline:solid 1px}}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width:599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}"],data:{}});function xO(t){return Ia(2,[La(null,0),La(null,1)],null,null)}var wO=Vr({encapsulation:0,styles:[["a[_ngcontent-%COMP%]{text-decoration:none;color:#fff;padding:30px}body[_ngcontent-%COMP%]{margin:0;background-color:#fafafa}a[_ngcontent-%COMP%]:active, a[_ngcontent-%COMP%]:hover{color:#d3d3d3}.login-button[_ngcontent-%COMP%]{margin-left:1em}.active_route[_ngcontent-%COMP%]{text-decoration:none;display:inline-block}.active-span[_ngcontent-%COMP%]{padding:5px;border-bottom:2px solid #fff}mat-toolbar[_ngcontent-%COMP%]{font-size:12pt;position:fixed;z-index:100;box-shadow:0 5px 20px #696969}mat-toolbar[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%]{padding:30px;box-shadow:0 5px 20px #696969;position:fixed}.mat-toolbar-multiple-rows[_ngcontent-%COMP%]{min-height:0}.mat-toolbar-row[_ngcontent-%COMP%], .mat-toolbar-single-row[_ngcontent-%COMP%]{padding:35px 10px 35px 20px}@media (max-width:959px){mat-toolbar[_ngcontent-%COMP%]{border-radius:0;z-index:50}}@media screen and (max-width:599px){mat-toolbar[_ngcontent-%COMP%]{z-index:0}}.fill-remaining-space[_ngcontent-%COMP%]{flex:1 1 auto}.content-scrollable[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center}"]],data:{}});function kO(t){return Ia(0,[(t()(),yo(0,0,null,null,41,"mat-toolbar",[["class","mat-toolbar"],["color","primary"]],[[2,"mat-toolbar-multiple-rows",null],[2,"mat-toolbar-single-row",null]],null,null,xO,bO)),oa(1,4243456,null,1,_O,[Ve,nc,As],{color:[0,"color"]},null),wa(603979776,1,{_toolbarRows:1}),(t()(),yo(3,0,null,1,38,"mat-toolbar-row",[["class","mat-toolbar-row"]],null,null,null,null,null)),oa(4,16384,[[1,4]],0,yO,[],null,null),(t()(),yo(5,0,null,null,0,"img",[["height","40px"],["style","margin-right: 40px"]],[[8,"src",4]],null,null,null,null)),(t()(),yo(6,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/home"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,7).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(7,671744,[[3,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(8,1720320,[["homea",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,2,{links:1}),wa(603979776,3,{linksWithHrefs:1}),(t()(),yo(11,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,[" Home "])),(t()(),yo(13,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/statistics"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,14).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(14,671744,[[5,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(15,1720320,[["stata",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,4,{links:1}),wa(603979776,5,{linksWithHrefs:1}),(t()(),yo(18,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,["Statistics"])),(t()(),yo(20,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/results"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,21).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(21,671744,[[7,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(22,1720320,[["resa",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,6,{links:1}),wa(603979776,7,{linksWithHrefs:1}),(t()(),yo(25,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,["Results"])),(t()(),yo(27,0,null,null,6,"a",[["class","button-position"],["color","primary"],["routerLink","/realtime"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==Go(t,28).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),i},null,null)),oa(28,671744,[[9,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(29,1720320,[["rta",4]],2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,8,{links:1}),wa(603979776,9,{linksWithHrefs:1}),(t()(),yo(32,0,null,null,1,"span",[],[[2,"active-span",null]],null,null,null,null)),(t()(),Oa(-1,null,["RealTime"])),(t()(),yo(34,0,null,null,0,"span",[["class","fill-remaining-space"]],null,null,null,null,null)),(t()(),yo(35,0,null,null,6,"a",[["class","login-button"],["color","primary"],["routerLink","/login"],["routerLinkActive","active_route"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var i=!0,r=t.component;return"click"===e&&(i=!1!==Go(t,36).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&i),"click"===e&&(i=!1!==r.logout()&&i),i},null,null)),oa(36,671744,[[11,4]],0,Pm,[Am,xf,Gl],{routerLink:[0,"routerLink"]},null),oa(37,1720320,null,2,Ym,[Am,Ve,qe,Zi],{routerLinkActive:[0,"routerLinkActive"]},null),wa(603979776,10,{links:1}),wa(603979776,11,{linksWithHrefs:1}),(t()(),yo(40,0,null,null,1,"span",[],null,null,null,null,null)),(t()(),Oa(-1,null,["Logout"]))],function(t,e){t(e,1,0,"primary"),t(e,7,0,"/home"),t(e,8,0,"active_route"),t(e,14,0,"/statistics"),t(e,15,0,"active_route"),t(e,21,0,"/results"),t(e,22,0,"active_route"),t(e,28,0,"/realtime"),t(e,29,0,"active_route"),t(e,36,0,"/login"),t(e,37,0,"active_route")},function(t,e){var n=e.component;t(e,0,0,Go(e,1)._toolbarRows.length>0,0===Go(e,1)._toolbarRows.length),t(e,5,0,n.imageUrl),t(e,6,0,Go(e,7).target,Go(e,7).href),t(e,11,0,Go(e,8).isActive),t(e,13,0,Go(e,14).target,Go(e,14).href),t(e,18,0,Go(e,15).isActive),t(e,20,0,Go(e,21).target,Go(e,21).href),t(e,25,0,Go(e,22).isActive),t(e,27,0,Go(e,28).target,Go(e,28).href),t(e,32,0,Go(e,29).isActive),t(e,35,0,Go(e,36).target,Go(e,36).href)})}function MO(t){return Ia(0,[(t()(),go(16777216,null,null,1,null,kO)),oa(1,16384,null,0,gs,[Xi,Mn],{ngIf:[0,"ngIf"]},null),(t()(),yo(2,0,null,null,4,"div",[["class","content-scrollable"]],null,null,null,null,null)),(t()(),yo(3,0,null,null,3,"div",[["fxFlex",""],["style","overflow: hidden;"]],null,null,null,null,null)),oa(4,671744,null,0,ky,[Ve,Xg,xg,xy,Qg],{fxFlex:[0,"fxFlex"]},null),(t()(),yo(5,16777216,null,null,1,"router-outlet",[],null,null,null,null,null)),oa(6,212992,null,0,Fm,[Im,Xi,Fe,[8,null],Zi],null,null)],function(t,e){t(e,1,0,e.component.currentUser),t(e,4,0,""),t(e,6,0)},null)}function SO(t){return Ia(0,[(t()(),yo(0,0,null,null,1,"app-root",[],null,null,null,MO,wO)),oa(1,49152,null,0,Yh,[Am,Oh],null,null)],null,null)}var CO=Ro("app-root",Yh,SO,{},{},[]),LO=function(){function t(t){this.authenticationService=t}return t.prototype.intercept=function(t,e){var n=this.authenticationService.currentUserValue;return n&&n.AccessToken&&(t=t.clone({setHeaders:{Authorization:"Bearer "+n.AccessToken}})),e.handle(t)},t}(),DO=function(){return function(){}}(),TO=function(){function t(){this.changes=new H,this.optionalLabel="Optional"}return t.ngInjectableDef=St({factory:function(){return new t},token:t,providedIn:"root"}),t}();function EO(t){return t||new TO}var AO=function(){return function(){}}(),PO=new Lt("mat-menu-scroll-strategy");function OO(t){return function(){return t.scrollStrategies.reposition()}}var YO=function(){return function(){}}(),RO=function(t){function e(e){return t.call(this,e)||this}return r(e,t),e.prototype.createDate=function(t,e,n){if(e<0||e>11)throw Error('Invalid month index "'+e+'". Month index has to be between 0 and 11.');if(n<1)throw Error('Invalid date "'+n+'". Date has to be greater than 0.');var i=Vd.utc({year:t,month:e,date:n}).locale(this.locale);if(!i.isValid())throw Error('Invalid date "'+n+'" for month with index "'+e+'".');return i},e}(Ud),IO=function(){return function(t){this.template=t}}(),FO=function(){return function(){}}();function zO(){for(var t=[],e=0;e0){var a=o.indexOf(n);-1!==a&&o.splice(a,1)}},e.prototype.notifyComplete=function(){},e.prototype._next=function(t){if(0===this.toRespond.length){var e=[t].concat(this.values);this.project?this._tryProject(e):this.destination.next(e)}},e.prototype._tryProject=function(t){var e;try{e=this.project.apply(this,t)}catch(n){return void this.destination.error(n)}this.destination.next(e)},e}(et),NO="@ngrx/store/init",VO=function(t){function e(){return t.call(this,{type:NO})||this}return r(e,t),e.prototype.next=function(e){if(void 0===e)throw new TypeError("Actions must be objects");if(void 0===e.type)throw new TypeError("Actions must have a type property");t.prototype.next.call(this,e)},e.prototype.complete=function(){},e.prototype.ngOnDestroy=function(){t.prototype.complete.call(this)},e}(Th),BO=new Lt("@ngrx/store Internal Initial State"),WO=new Lt("@ngrx/store Initial State"),UO=new Lt("@ngrx/store Reducer Factory"),GO=new Lt("@ngrx/store Reducer Factory Provider"),qO=new Lt("@ngrx/store Initial Reducers"),XO=new Lt("@ngrx/store Internal Initial Reducers"),KO=new Lt("@ngrx/store Meta Reducers"),ZO=new Lt("@ngrx/store Internal Store Reducers"),JO=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},QO=function(){for(var t=[],e=0;e0&&(t=tY.apply(null,QO(e,[t]))),function(e,n){var i=t(e);return function(t,e){return i(t=void 0===t?n:t,e)}}}var nY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),iY=function(){return(iY=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0?tY.apply(void 0,QO(t)):function(t){return t};return function(t,n){return t=e(t),function(e,i){return t(e=void 0===e?n:e,i)}}}(r)(n,o):eY(i,r)(n,o);return t[a]=l,t},{});this.addReducers(e)},e.prototype.removeFeature=function(t){this.removeFeatures([t])},e.prototype.removeFeatures=function(t){this.removeReducers(t.map(function(t){return t.key}))},e.prototype.addReducer=function(t,e){var n;this.addReducers(((n={})[t]=e,n))},e.prototype.addReducers=function(t){this.reducers=iY({},this.reducers,t),this.updateReducers(Object.keys(t))},e.prototype.removeReducer=function(t){this.removeReducers([t])},e.prototype.removeReducers=function(t){var e=this;t.forEach(function(t){var n,i;e.reducers=(n=e.reducers,i=t,Object.keys(n).filter(function(t){return t!==i}).reduce(function(t,e){var i;return Object.assign(t,((i={})[e]=n[e],i))},{}))}),this.updateReducers(t)},e.prototype.updateReducers=function(t){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:"@ngrx/store/update-reducers",features:t})},e.prototype.ngOnDestroy=function(){this.complete()},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var l=t.length-1;l>=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn(),l(1,Zt(WO)),l(2,Zt(qO)),l(3,Zt(UO)),rY("design:paramtypes",[aY,Object,Object,Function])],e)}(Th),sY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),uY=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return sY(e,t),e.prototype.ngOnDestroy=function(){this.complete()},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var l=t.length-1;l>=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn()],e)}(H),cY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),dY=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},hY=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},pY=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return cY(e,t),e}(Y),fY=function(t){function e(e,n,i,r){var o,a,l=t.call(this,r)||this,s=e.pipe((o=fM,void 0===a&&(a=0),function(t){return t.lift(new gM(o,a))})).pipe(zO(n)).pipe(ap(mY,{state:r}));return l.stateSubscription=s.subscribe(function(t){var e=t.action;l.next(t.state),i.next(e)}),l}return cY(e,t),e.prototype.ngOnDestroy=function(){this.stateSubscription.unsubscribe(),this.complete()},e.INIT=NO,function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var l=t.length-1;l>=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn(),(3,n=Zt(WO),function(t,e){n(t,e,3)}),dY("design:paramtypes",[VO,oY,uY,Object])],e);var n}(Th);function mY(t,e){void 0===t&&(t={state:void 0});var n=hY(e,2),i=n[0];return{state:(0,n[1])(t.state,i),action:i}}var gY=function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),yY=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},_Y=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},vY=function(){for(var t=[],e=0;e=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Wn(),yY("design:paramtypes",[pY,VO,lY])],e)}(Y);function xY(t,e){for(var n=[],i=2;i=0;l--)(r=t[l])&&(a=(o<3?r(a):o>3?r(e,n,a):r(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}([Vn({}),wY("design:paramtypes",[VO,oY,uY,bY])],function(t,e,n,i){})}();function MY(t,e,n){return e instanceof Lt?t.get(e):e}function SY(t){return"function"==typeof t?t():t}var CY="@ngrx/router-store/navigation",LY="@ngrx/router-store/cancel",DY="@ngrx/router-store/error";function TY(t,e){var n=e;switch(n.type){case CY:case DY:case LY:return{state:n.payload.routerState,navigationId:n.payload.event.id};default:return t}}var EY=function(){return function(){}}(),AY=function(){function t(){}return t.prototype.serialize=function(t){return{root:this.serializeRoute(t.root),url:t.url}},t.prototype.serializeRoute=function(t){var e=this,n=t.children.map(function(t){return e.serializeRoute(t)});return{params:t.params,paramMap:t.paramMap,data:t.data,url:t.url,outlet:t.outlet,routeConfig:t.routeConfig?{component:t.routeConfig.component,path:t.routeConfig.path,pathMatch:t.routeConfig.pathMatch,redirectTo:t.routeConfig.redirectTo,outlet:t.routeConfig.outlet}:null,queryParams:t.queryParams,queryParamMap:t.queryParamMap,fragment:t.fragment,component:t.routeConfig?t.routeConfig.component:void 0,root:void 0,parent:void 0,firstChild:n[0],pathFromRoot:void 0,children:n}},t}(),PY=function(){return(PY=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=o.next()).done;)a.push(i.value)}catch(l){r={error:l}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a},YY=function(t){return t[t.PreActivation=1]="PreActivation",t[t.PostActivation=2]="PostActivation",t}({}),RY=new Lt("@ngrx/router-store Internal Configuration"),IY=new Lt("@ngrx/router-store Configuration"),FY="router";function zY(t){return PY({stateKey:FY,serializer:AY,navigationActionTiming:YY.PreActivation},t)}var jY=function(t){return t[t.NONE=1]="NONE",t[t.ROUTER=2]="ROUTER",t[t.STORE=3]="STORE",t}({}),HY=function(){function t(t,e,n,i,r){this.store=t,this.router=e,this.serializer=n,this.errorHandler=i,this.config=r,this.lastEvent=null,this.trigger=jY.NONE,this.stateKey=this.config.stateKey,this.setUpStoreStateListener(),this.setUpRouterEventsListener()}var e;return e=t,t.forRoot=function(t){return void 0===t&&(t={}),{ngModule:e,providers:[{provide:RY,useValue:t},{provide:EY,useClass:t.serializer?t.serializer:AY}]}},t.prototype.setUpStoreStateListener=function(){var t=this;this.store.pipe(xY(this.stateKey),zO(this.store)).subscribe(function(e){var n=OY(e,2);t.navigateIfNeeded(n[0],n[1])})},t.prototype.navigateIfNeeded=function(t,e){var n=this;if(t&&t.state&&this.trigger!==jY.ROUTER&&!(this.lastEvent instanceof pp)){var i=t.state.url;this.router.url!==i&&(this.storeState=e,this.trigger=jY.STORE,this.router.navigateByUrl(i).catch(function(t){n.errorHandler.handleError(t)}))}},t.prototype.setUpRouterEventsListener=function(){var t,e=this,n=this.config.navigationActionTiming===YY.PostActivation;this.router.events.pipe(zO(this.store)).subscribe(function(i){var r=OY(i,2),o=r[0],a=r[1];e.lastEvent=o,o instanceof pp?(e.routerState=e.serializer.serialize(e.router.routerState.snapshot),e.trigger!==jY.STORE&&(e.storeState=a,e.dispatchRouterRequest(o))):o instanceof yp?(t=o,n||e.trigger===jY.STORE||e.dispatchRouterNavigation(o)):o instanceof mp?(e.dispatchRouterCancel(o),e.reset()):o instanceof gp?(e.dispatchRouterError(o),e.reset()):o instanceof fp&&(e.trigger!==jY.STORE&&(n&&e.dispatchRouterNavigation(t),e.dispatchRouterNavigated(o)),e.reset())})},t.prototype.dispatchRouterRequest=function(t){this.dispatchRouterAction("@ngrx/router-store/request",{event:t})},t.prototype.dispatchRouterNavigation=function(t){var e=this.serializer.serialize(t.state);this.dispatchRouterAction(CY,{routerState:e,event:new yp(t.id,t.url,t.urlAfterRedirects,e)})},t.prototype.dispatchRouterCancel=function(t){this.dispatchRouterAction(LY,{storeState:this.storeState,event:t})},t.prototype.dispatchRouterError=function(t){this.dispatchRouterAction(DY,{storeState:this.storeState,event:new gp(t.id,t.url,""+t)})},t.prototype.dispatchRouterNavigated=function(t){var e=this.serializer.serialize(this.router.routerState.snapshot);this.dispatchRouterAction("@ngrx/router-store/navigated",{event:t,routerState:e})},t.prototype.dispatchRouterAction=function(t,e){this.trigger=jY.ROUTER;try{this.store.dispatch({type:t,payload:PY({routerState:this.routerState},e)})}finally{this.trigger=jY.NONE}},t.prototype.reset=function(){this.trigger=jY.NONE,this.storeState=null,this.routerState=null},t}(),NY=function(){function t(t,e){this.router=t,this.authenticationService=e}return t.prototype.canActivate=function(t,e){return!!this.authenticationService.currentUserValue||(this.router.navigate(["/login"],{queryParams:{returnUrl:e.url}}),!1)},t.ngInjectableDef=St({factory:function(){return new t(ie(Am),ie(Oh))},token:t,providedIn:"root"}),t}(),VY=function(){function t(){}return t.prototype.serialize=function(t){for(var e=t.root;e.firstChild;)e=e.firstChild;return{url:t.url,params:e.params,queryParams:t.root.queryParams}},t}(),BY=function(){return function(){}}(),WY=function(){return function(){}}(),UY=function(){function t(t,e){Rs(e)&&!t&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}return t.withConfig=function(e,n){return void 0===n&&(n=[]),{ngModule:t,providers:e.serverLoaded?[{provide:xg,useValue:o({},bg,e)},{provide:kg,useValue:n,multi:!0},{provide:wg,useValue:!0}]:[{provide:xg,useValue:o({},bg,e)},{provide:kg,useValue:n,multi:!0}]}},t}(),GY=function(){return function(){}}(),qY=function(){return function(){}}(),XY=new Lt("mat-chips-default-options"),KY=function(){return function(){}}(),ZY=function(){return function(){}}(),JY=function(){return function(){}}(),QY=function(){return function(){}}(),$Y=function(){return function(){}}(),tR=function(){return function(){}}(),eR=function(){return function(){}}(),nR=function(){return function(){}}(),iR=function(){return function(){}}(),rR=function(){return function(){}}(),oR=Nl(Kd,[Yh],function(t){return function(t){for(var e={},n=[],i=!1,r=0;r=2&&t<=4?e[1]:e[2]},translate:function(t,n,i){var r=e.words[i];return 1===i.length?n?r[0]:r[1]:t+" "+e.correctGrammaticalCase(t,r)}};t.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_\u010detvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._\u010det._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010de_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010de u] LT",lastWeek:function(){return["[pro\u0161le] [nedelje] [u] LT","[pro\u0161log] [ponedeljka] [u] LT","[pro\u0161log] [utorka] [u] LT","[pro\u0161le] [srede] [u] LT","[pro\u0161log] [\u010detvrtka] [u] LT","[pro\u0161log] [petka] [u] LT","[pro\u0161le] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mesec",MM:e.translate,y:"godinu",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("wd/R"))}},[[0,0]]]); \ No newline at end of file -- cgit v1.3.1 From 9b61ba1658c5c87766eede52f0f7aa6723f4dd1b Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 20 Aug 2019 11:40:27 +0300 Subject: Working on liquid quantity validation. --- .../Tango.Integration/Operation/MachineOperator.cs | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs index 558953ccb..0802801db 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs @@ -1272,26 +1272,27 @@ namespace Tango.Integration.Operation { Dictionary liquidQuantities = new Dictionary(); - int packIndex = 0; - - foreach (var item in configuration.NoneEmptyIdsPacks.OrderBy(x => x.PackIndex)) + foreach (var pack in configuration.NoneEmptyIdsPacks.OrderBy(x => x.PackIndex)) { - liquidQuantities.Add(packIndex++, 0); + liquidQuantities.Add(pack.PackIndex, 0); } for (int segmentIndex = 0; segmentIndex < ticket.Segments.Count; segmentIndex++) { var segment = ticket.Segments[segmentIndex]; + var segment_length_cm = segment.Length * 100d; + + var stop_count = segment.BrushStops.Count - (segment.BrushStops.Count == 1 ? 0 : 1); + var stop_length_centimeters = segment_length_cm / stop_count; - for (int stopIndex = 0; stopIndex < segment.BrushStops.Count; stopIndex++) + for (int stopIndex = 0; stopIndex < stop_count; stopIndex++) { var stop = segment.BrushStops[stopIndex]; - //var position = segment. - //foreach (var dispenser in stop.Dispensers) - //{ - - //} + foreach (var dispenser in stop.Dispensers) + { + liquidQuantities[dispenser.Index] += dispenser.NanoliterPerCentimeter * stop_length_centimeters; + } } } } -- cgit v1.3.1 From e3964d5fa3e86408e00556c020d6d2f5b261e6f8 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 20 Aug 2019 12:06:56 +0300 Subject: Fixed issue with ValveTechItem loading. --- .../Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs index 1a1832120..8eb792f0d 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs @@ -869,7 +869,8 @@ namespace Tango.MachineStudio.Technician.ViewModels else if (item is ValveItem) { (item as ValveItem).TechValve = Adapter.TechValves.FirstOrDefault(x => x.Guid == item.ItemGuid); - CreateElement(item); + var editor = CreateElement(item); + InitTechValveItem(editor.ValveItem); } else if (item is MeterItem) { -- cgit v1.3.1 From ac0c589e75315851c643ddb91b3d11fbed8e413e Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 20 Aug 2019 12:13:32 +0300 Subject: Fixed issue with running job name "copy" on PPC. --- Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs index 0802801db..3fd24b20b 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs @@ -1475,6 +1475,7 @@ namespace Tango.Integration.Operation var originalJob = job; var clonedJob = job.Clone(); clonedJob.Guid = job.Guid; + clonedJob.Name = job.Name; CurrentProcessParameters = processParameters; @@ -1482,6 +1483,7 @@ namespace Tango.Integration.Operation job = job.Clone(); job.Guid = originalJob.Guid; + job.Name = originalJob.Name; int max = job.OrderedSegments.Last().SegmentIndex + 1; -- cgit v1.3.1 From d504f798262a756da1827de43f4a0f3b618f83c5 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 20 Aug 2019 13:08:14 +0300 Subject: Added environment display to PPC menu. --- .../PPC/Tango.PPC.UI/Views/LayoutView.xaml | 25 ++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/LayoutView.xaml b/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/LayoutView.xaml index 13d0e56d5..bbf5ec6ce 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/LayoutView.xaml +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/LayoutView.xaml @@ -36,13 +36,30 @@ HorizontalAlignment="Right" IsChecked="{Binding ElementName=menu,Path=IsOpened}" Foreground="{StaticResource TangoPrimaryAccentBrush}" /> - + + Machine S/N: | Version: - + + + + + + + | + + +
- + - + diff --git a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml index 0d01c6777..cbe0e3f0b 100644 --- a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml +++ b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml @@ -23,6 +23,6 @@ 26 18 - Flexo Medium - 22 + 27 + 50 \ No newline at end of file -- cgit v1.3.1 From 36f3942bd00b369d207f59293942984eee9a1887 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Thu, 22 Aug 2019 11:36:58 +0300 Subject: PPC GUI changes - font and images --- .../Images/large-cards-view - blue.png | Bin 0 -> 891 bytes .../Tango.PPC.Jobs/Images/large-cards-view.png | Bin 0 -> 306 bytes .../Modules/Tango.PPC.Jobs/Images/pencil-blue.png | Bin 0 -> 434 bytes .../Modules/Tango.PPC.Jobs/Images/pencil-gray.png | Bin 0 -> 422 bytes .../PPC/Modules/Tango.PPC.Jobs/Images/plus.png | Bin 0 -> 133 bytes .../Images/small-cards-view - blue.png | Bin 0 -> 860 bytes .../Tango.PPC.Jobs/Images/small-cards-view.png | Bin 0 -> 370 bytes .../Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj | 13 +++++ .../Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs | 2 +- .../Tango.PPC.Jobs/Views/JobProgressView.xaml | 4 +- .../Tango.PPC.Jobs/Views/JobSummeryView.xaml | 14 ++--- .../PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml | 51 +++++++---------- .../Tango.Touch/Controls/TouchToggleImageButton.cs | 61 +++++++++++++++++++++ .../Controls/TouchToggleImageButton.xaml | 36 ++++++++++++ .../Visual_Studio/Tango.Touch/Resources/Fonts.xaml | 2 +- .../Visual_Studio/Tango.Touch/Tango.Touch.csproj | 7 ++- .../Visual_Studio/Tango.Touch/Themes/Generic.xaml | 4 +- 17 files changed, 149 insertions(+), 45 deletions(-) create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view - blue.png create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view.png create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-blue.png create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-gray.png create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/plus.png create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view - blue.png create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view.png create mode 100644 Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.cs create mode 100644 Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.xaml diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view - blue.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view - blue.png new file mode 100644 index 000000000..a37e0b555 Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view - blue.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view.png new file mode 100644 index 000000000..697ce228c Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/large-cards-view.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-blue.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-blue.png new file mode 100644 index 000000000..cab937cef Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-blue.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-gray.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-gray.png new file mode 100644 index 000000000..0ca2eed8c Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/pencil-gray.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/plus.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/plus.png new file mode 100644 index 000000000..de965130e Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/plus.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view - blue.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view - blue.png new file mode 100644 index 000000000..d0a97503e Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view - blue.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view.png new file mode 100644 index 000000000..873b7513f Binary files /dev/null and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/small-cards-view.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj index 8ed2ff80e..fb27ff031 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj @@ -469,6 +469,19 @@ + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs index c78af155c..2532aeef6 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs @@ -1062,7 +1062,7 @@ namespace Tango.PPC.Jobs.ViewModels { FineTuneItems.Clear(); - foreach (var stop in Job.Segments.SelectMany(x => x.BrushStops).DistinctBy(x => x.Color)) + foreach (var stop in Job.Segments.SelectMany(x => x.BrushStops).Where(x => x.ColorSpace.Space == BL.Enumerations.ColorSpaces.RGB || x.ColorSpace.Space == BL.Enumerations.ColorSpaces.LAB).DistinctBy(x => x.Color)) { FineTuneItem item = new FineTuneItem(_converter.Convert(stop)); item.BrushStops = Job.Segments.SelectMany(x => x.BrushStops).Where(x => x.Color == stop.Color).ToList(); diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml index 4545d5903..3b92581bc 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml @@ -89,7 +89,7 @@ Completed - + m @@ -109,7 +109,7 @@ Time Left
- + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml index 630b2089f..95508197d 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobSummeryView.xaml @@ -31,11 +31,11 @@ - - - - EDIT - + + + + EDIT + @@ -68,7 +68,7 @@ Length - + m @@ -82,7 +82,7 @@ Time - + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml index 2fd8496f8..9287203aa 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobView.xaml @@ -107,7 +107,7 @@
- + @@ -548,12 +548,21 @@ - - - + + + - - + + + @@ -562,8 +571,8 @@ - - SOLID SEGMENT + + SOLID SEGMENT @@ -575,8 +584,8 @@ - - GRADIENT SEGMENT + + GRADIENT SEGMENT @@ -694,28 +703,6 @@ Additional Tools - - diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.cs new file mode 100644 index 000000000..bcfba7559 --- /dev/null +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.cs @@ -0,0 +1,61 @@ +using FontAwesome.WPF; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.Touch.Controls +{ + public class TouchToggleImageButton: ToggleButton + { + static TouchToggleImageButton() + { + DefaultStyleKeyProperty.OverrideMetadata(typeof(TouchToggleImageButton), new FrameworkPropertyMetadata(typeof(TouchToggleImageButton))); + } + + public BitmapSource UncheckedImage + { + get { return (BitmapSource)GetValue(UncheckedImageProperty); } + set { SetValue(UncheckedImageProperty, value); } + } + public static readonly DependencyProperty UncheckedImageProperty = + DependencyProperty.Register("UncheckedImage", typeof(BitmapSource), typeof(TouchToggleImageButton), new PropertyMetadata(null)); + + public BitmapSource CheckedImage + { + get { return (BitmapSource)GetValue(CheckedImageProperty); } + set { SetValue(CheckedImageProperty, value); } + } + public static readonly DependencyProperty CheckedImageProperty = + DependencyProperty.Register("CheckedImage", typeof(BitmapSource), typeof(TouchToggleImageButton), new PropertyMetadata(null)); + + public Brush CheckedForeground + { + get { return (Brush)GetValue(CheckedForegroundProperty); } + set { SetValue(CheckedForegroundProperty, value); } + } + public static readonly DependencyProperty CheckedForegroundProperty = + DependencyProperty.Register("CheckedForeground", typeof(Brush), typeof(TouchToggleImageButton), new PropertyMetadata(null)); + + public CornerRadius CornerRadius + { + get { return (CornerRadius)GetValue(CornerRadiusProperty); } + set { SetValue(CornerRadiusProperty, value); } + } + public static readonly DependencyProperty CornerRadiusProperty = + DependencyProperty.Register("CornerRadius", typeof(CornerRadius), typeof(TouchToggleImageButton), new PropertyMetadata(default(CornerRadius))); + + + } +} diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.xaml b/Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.xaml new file mode 100644 index 000000000..772dea7c3 --- /dev/null +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchToggleImageButton.xaml @@ -0,0 +1,36 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml index cbe0e3f0b..27408f2bb 100644 --- a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml +++ b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml @@ -24,5 +24,5 @@ 18 27 - 50 + 46 \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj b/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj index ca07414af..79ecd4387 100644 --- a/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj +++ b/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj @@ -94,6 +94,7 @@ + @@ -251,6 +252,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile @@ -399,7 +404,7 @@ - + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml b/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml index 038731786..6ae82cefb 100644 --- a/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml +++ b/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml @@ -46,13 +46,15 @@ + + - + -- cgit v1.3.1 From 06e3100b305ba934b75b3da2ee54ccba8fb087a2 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Thu, 22 Aug 2019 11:55:35 +0300 Subject: MachineStudio. Changed Foreground of "Start job" to white --- .../Modules/Tango.MachineStudio.Developer/Views/JobView.xaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml index 6b1156ece..861a639d3 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml @@ -1260,7 +1260,7 @@ -- cgit v1.3.1 From 0c97dba8c1443ee39029136c52bc3861702888e2 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 22 Aug 2019 11:58:11 +0300 Subject: Added cartridge insertion validation handling. Implemented a better keep alive mechanism. --- .../Diagnostics/CartridgeValidationRequest.proto | 2 - .../Diagnostics/CartridgeValidationResponse.proto | 4 +- .../Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj | 2 +- .../PPC/Tango.PPC.Common/Resources/Merged.xaml | 1 + .../Dialogs/CartridgeValidationView.xaml | 67 +++++++++++++++++++++ .../Dialogs/CartridgeValidationView.xaml.cs | 28 +++++++++ .../Dialogs/CartridgeValidationViewVM.cs | 37 ++++++++++++ .../Tango.PPC.UI/Images/cartridge_validation.png | Bin 0 -> 44260 bytes .../Notifications/DefaultNotificationProvider.cs | 2 +- .../PPC/Tango.PPC.UI/Tango.PPC.UI.csproj | 11 +++- .../PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs | 29 +++++++++ .../Tango.Emulations/Emulators/MachineEmulator.cs | 10 +++ .../ExternalBridge/ExternalBridgeService.cs | 2 + .../ExternalBridge/ExternalBridgeTcpClient.cs | 1 + .../Operation/CartridgeValidationEventArgs.cs | 50 +++++++++++++++ .../Operation/IMachineOperator.cs | 5 ++ .../Tango.Integration/Operation/MachineOperator.cs | 47 +++++++++++++++ .../Tango.Integration/Tango.Integration.csproj | 3 +- .../Diagnostics/CartridgeValidationRequest.cs | 48 ++------------- .../Diagnostics/CartridgeValidationResponse.cs | 53 +++++++--------- .../Tango.Touch/Styles/TouchButton.xaml | 6 ++ .../Visual_Studio/Tango.Transport/ITransporter.cs | 5 ++ .../Tango.Transport/TransporterBase.cs | 21 ++++++- Software/Visual_Studio/Tango.sln | 12 ++-- .../Tango.MachineEM.UI/ViewModels/MainViewVM.cs | 20 ++++++ .../Tango.MachineEM.UI/Views/MainView.xaml | 8 ++- 26 files changed, 383 insertions(+), 91 deletions(-) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationView.xaml create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationView.xaml.cs create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationViewVM.cs create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.UI/Images/cartridge_validation.png create mode 100644 Software/Visual_Studio/Tango.Integration/Operation/CartridgeValidationEventArgs.cs diff --git a/Software/PMR/Messages/Diagnostics/CartridgeValidationRequest.proto b/Software/PMR/Messages/Diagnostics/CartridgeValidationRequest.proto index 6ea8ba407..432643e67 100644 --- a/Software/PMR/Messages/Diagnostics/CartridgeValidationRequest.proto +++ b/Software/PMR/Messages/Diagnostics/CartridgeValidationRequest.proto @@ -1,6 +1,5 @@ syntax = "proto3"; -import "Cartridge.proto"; import "CartridgeAction.proto"; package Tango.PMR.Diagnostics; @@ -8,6 +7,5 @@ option java_package = "com.twine.tango.pmr.diagnostics"; message CartridgeValidationRequest { - Cartridge Cartridge = 1; CartridgeAction Action = 2; } \ No newline at end of file diff --git a/Software/PMR/Messages/Diagnostics/CartridgeValidationResponse.proto b/Software/PMR/Messages/Diagnostics/CartridgeValidationResponse.proto index f3212faa6..5656c7987 100644 --- a/Software/PMR/Messages/Diagnostics/CartridgeValidationResponse.proto +++ b/Software/PMR/Messages/Diagnostics/CartridgeValidationResponse.proto @@ -1,12 +1,10 @@ syntax = "proto3"; -import "Cartridge.proto"; - package Tango.PMR.Diagnostics; option java_package = "com.twine.tango.pmr.diagnostics"; message CartridgeValidationResponse { bool IsValid = 1; - Cartridge Cartridge = 2; + int32 Index = 2; } \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj index 8ed2ff80e..26fd06d2d 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj @@ -472,7 +472,7 @@ - + \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml b/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml index b5b9f9b23..04021d6b6 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml @@ -49,6 +49,7 @@ + + + + + + + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationView.xaml.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationView.xaml.cs new file mode 100644 index 000000000..dbfb990b6 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationView.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.PPC.UI.Dialogs +{ + /// + /// Interaction logic for TechnicianModeLoginView.xaml + /// + public partial class CartridgeValidationView : UserControl + { + public CartridgeValidationView() + { + InitializeComponent(); + } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationViewVM.cs new file mode 100644 index 000000000..f901723a4 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/CartridgeValidationViewVM.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Entities; +using Tango.SharedUI; + +namespace Tango.PPC.UI.Dialogs +{ + public class CartridgeValidationViewVM : DialogViewVM + { + private List _idsPacks; + public List IDSPacks + { + get { return _idsPacks; } + set { _idsPacks = value; RaisePropertyChangedAuto(); } + } + + private IdsPack _selectedIDSPack; + public IdsPack SelectedIDSPack + { + get { return _selectedIDSPack; } + set { _selectedIDSPack = value; RaisePropertyChangedAuto(); InvalidateRelayCommands(); } + } + + public CartridgeValidationViewVM() + { + IDSPacks = new List(); + } + + protected override bool CanOK() + { + return base.CanOK() && SelectedIDSPack != null; + } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Images/cartridge_validation.png b/Software/Visual_Studio/PPC/Tango.PPC.UI/Images/cartridge_validation.png new file mode 100644 index 000000000..373cb78c1 Binary files /dev/null and b/Software/Visual_Studio/PPC/Tango.PPC.UI/Images/cartridge_validation.png differ diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs index 5062df1d6..1c71b080d 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs @@ -388,7 +388,7 @@ namespace Tango.PPC.UI.Notifications throw new NullReferenceException("The view " + viewType.ToString() + " is not of type framework element."); } - return ShowDialog(datacontext, Activator.CreateInstance(viewType) as FrameworkElement); + return ShowDialog(datacontext, view); } /// diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Tango.PPC.UI.csproj b/Software/Visual_Studio/PPC/Tango.PPC.UI/Tango.PPC.UI.csproj index 389f5d59b..c2025b733 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Tango.PPC.UI.csproj +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Tango.PPC.UI.csproj @@ -122,9 +122,13 @@ + + CartridgeValidationView.xaml + ScreenLockView.xaml + TechnicianModeLoginView.xaml @@ -194,6 +198,10 @@ Designer MSBuild:Compile + + MSBuild:Compile + Designer + MSBuild:Compile Designer @@ -311,6 +319,7 @@ + @@ -546,7 +555,7 @@ del "$(TargetDir)firmware_package.tfp" - + \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs index a4f550a39..01a47539e 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs @@ -6,6 +6,7 @@ using System.Threading.Tasks; using System.Windows.Threading; using Tango.Core.DI; using Tango.Integration.ExternalBridge; +using Tango.Integration.Operation; using Tango.PPC.Common; using Tango.PPC.Common.Application; using Tango.PPC.Common.Authentication; @@ -14,6 +15,7 @@ using Tango.PPC.Common.Modules; using Tango.PPC.Common.Navigation; using Tango.PPC.Common.Notifications; using Tango.PPC.Common.WatchDog; +using Tango.PPC.UI.Dialogs; using Tango.SharedUI; namespace Tango.PPC.UI.ViewModels @@ -49,6 +51,13 @@ namespace Tango.PPC.UI.ViewModels /// public override void OnApplicationStarted() { + + } + + public override void OnApplicationReady() + { + base.OnApplicationReady(); + MachineProvider.MachineOperator.CartridgeValidationRequestReceived += MachineOperator_CartridgeValidationRequestReceived; } #region Event Handlers @@ -63,6 +72,26 @@ namespace Tango.PPC.UI.ViewModels CurrentDateTime = DateTime.Now; } + private void MachineOperator_CartridgeValidationRequestReceived(object sender, CartridgeValidationEventArgs e) + { + InvokeUI(async () => + { + var vm = await NotificationProvider.ShowDialog(new CartridgeValidationViewVM() + { + IDSPacks = MachineProvider.Machine.Configuration.NoneEmptyIdsPacks.ToList(), + }); + + if (vm.DialogResult) + { + e.Approve(vm.SelectedIDSPack.PackIndex); + } + else + { + e.Decline(); + } + }); + } + #endregion } } diff --git a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs index 0a219b824..dea2ddb69 100644 --- a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs +++ b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs @@ -1312,6 +1312,16 @@ namespace Tango.Emulations.Emulators #region Public Methods + public async Task ValidateCartridge() + { + var response = await Transporter.SendRequest(new CartridgeValidationRequest() + { + Action = CartridgeAction.Inserted, + + }, TimeSpan.FromSeconds(10)); + + return response.Message.Index; + } #endregion } diff --git a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs index 648046bd2..b7921aac3 100644 --- a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs +++ b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs @@ -145,6 +145,8 @@ namespace Tango.Integration.ExternalBridge _tcpServer.ClientConnected += _tcpServer_ClientConnected; LogManager.NewLog += LogManager_NewLog; + + KeepAliveTimeout = TimeSpan.FromSeconds(5); } /// diff --git a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs index ef00133df..9adc1f223 100644 --- a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs +++ b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeTcpClient.cs @@ -251,6 +251,7 @@ namespace Tango.Integration.ExternalBridge SerialNumber = serialNumber; Machine = ObservablesStaticCollections.Instance.Machines.SingleOrDefault(x => x.SerialNumber == serialNumber); IPAddress = ipAddress; + KeepAliveTimeout = TimeSpan.FromSeconds(5); UseKeepAlive = false; EnableDiagnostics = true; } diff --git a/Software/Visual_Studio/Tango.Integration/Operation/CartridgeValidationEventArgs.cs b/Software/Visual_Studio/Tango.Integration/Operation/CartridgeValidationEventArgs.cs new file mode 100644 index 000000000..6ef6e43c6 --- /dev/null +++ b/Software/Visual_Studio/Tango.Integration/Operation/CartridgeValidationEventArgs.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.PMR.Diagnostics; + +namespace Tango.Integration.Operation +{ + /// + /// Represents a cartridge validation request event arguments. + /// + /// + public class CartridgeValidationEventArgs : EventArgs + { + private Action _approveAction; + private Action _declineAction; + + /// + /// Initializes a new instance of the class. + /// + /// The request. + /// The approve action. + public CartridgeValidationEventArgs(CartridgeValidationRequest request, Action approveAction,Action declineAction) + { + Request = request; + _approveAction = approveAction; + _declineAction = declineAction; + } + + /// + /// Gets the request. + /// + public CartridgeValidationRequest Request { get; private set; } + + /// + /// Sends approved response for the specified cartridge index. + /// + /// The cartridge index. + public void Approve(int cartridgeIndex) + { + _approveAction(cartridgeIndex); + } + + public void Decline() + { + _declineAction(); + } + } +} diff --git a/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs index 89c947764..ae303563b 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs @@ -167,6 +167,11 @@ namespace Tango.Integration.Operation /// event EventHandler MachineStatusChanged; + /// + /// Occurs when a new cartridge validation request has been received. + /// + event EventHandler CartridgeValidationRequestReceived; + /// /// Gets or sets a value indicating whether direct the embedded device to send diagnostics messages. /// diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs index 3fd24b20b..0c842d0da 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs @@ -137,6 +137,11 @@ namespace Tango.Integration.Operation /// public event EventHandler MachineStatusChanged; + /// + /// Occurs when a new cartridge validation request has been received. + /// + public event EventHandler CartridgeValidationRequestReceived; + /// /// Occurs when a request has been sent. /// @@ -776,6 +781,20 @@ namespace Tango.Integration.Operation ResponseReceived?.Invoke(this, response); } + /// + /// Called when a new request has been received. + /// + /// The request. + protected override void OnRequestReceived(MessageContainer container) + { + base.OnRequestReceived(container); + + if (container.Type == MessageType.CartridgeValidationRequest) + { + OnCartridgeValidationRequestReceived(container.Token, MessageFactory.ExtractMessageFromContainer(container)); + } + } + /// /// Called when the response has been sent /// @@ -803,6 +822,34 @@ namespace Tango.Integration.Operation StatusChanged?.Invoke(this, status); } + /// + /// Called when the cartridge validation request has been received. + /// + /// The request. + protected virtual void OnCartridgeValidationRequestReceived(String token, CartridgeValidationRequest request) + { + CartridgeValidationEventArgs e = new CartridgeValidationEventArgs(request, (index) => + { + //Approve + SendResponse(new CartridgeValidationResponse() + { + IsValid = true, + Index = index, + }, token).Wait(); + + }, () => + { + //Decline + SendResponse(new CartridgeValidationResponse() + { + + }, token).Wait(); + + }); + + CartridgeValidationRequestReceived?.Invoke(this, e); + } + #endregion #region Override Methods diff --git a/Software/Visual_Studio/Tango.Integration/Tango.Integration.csproj b/Software/Visual_Studio/Tango.Integration/Tango.Integration.csproj index bbd9f8c0d..62ff18fb6 100644 --- a/Software/Visual_Studio/Tango.Integration/Tango.Integration.csproj +++ b/Software/Visual_Studio/Tango.Integration/Tango.Integration.csproj @@ -99,6 +99,7 @@ + @@ -192,7 +193,7 @@ - + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationRequest.cs b/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationRequest.cs index 149c2b6cb..5dc0fa044 100644 --- a/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationRequest.cs +++ b/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationRequest.cs @@ -23,16 +23,14 @@ namespace Tango.PMR.Diagnostics { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiBDYXJ0cmlkZ2VWYWxpZGF0aW9uUmVxdWVzdC5wcm90bxIVVGFuZ28uUE1S", - "LkRpYWdub3N0aWNzGg9DYXJ0cmlkZ2UucHJvdG8aFUNhcnRyaWRnZUFjdGlv", - "bi5wcm90byKJAQoaQ2FydHJpZGdlVmFsaWRhdGlvblJlcXVlc3QSMwoJQ2Fy", - "dHJpZGdlGAEgASgLMiAuVGFuZ28uUE1SLkRpYWdub3N0aWNzLkNhcnRyaWRn", - "ZRI2CgZBY3Rpb24YAiABKA4yJi5UYW5nby5QTVIuRGlhZ25vc3RpY3MuQ2Fy", - "dHJpZGdlQWN0aW9uQiEKH2NvbS50d2luZS50YW5nby5wbXIuZGlhZ25vc3Rp", - "Y3NiBnByb3RvMw==")); + "LkRpYWdub3N0aWNzGhVDYXJ0cmlkZ2VBY3Rpb24ucHJvdG8iVAoaQ2FydHJp", + "ZGdlVmFsaWRhdGlvblJlcXVlc3QSNgoGQWN0aW9uGAIgASgOMiYuVGFuZ28u", + "UE1SLkRpYWdub3N0aWNzLkNhcnRyaWRnZUFjdGlvbkIhCh9jb20udHdpbmUu", + "dGFuZ28ucG1yLmRpYWdub3N0aWNzYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::Tango.PMR.Diagnostics.CartridgeReflection.Descriptor, global::Tango.PMR.Diagnostics.CartridgeActionReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::Tango.PMR.Diagnostics.CartridgeActionReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Diagnostics.CartridgeValidationRequest), global::Tango.PMR.Diagnostics.CartridgeValidationRequest.Parser, new[]{ "Cartridge", "Action" }, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Diagnostics.CartridgeValidationRequest), global::Tango.PMR.Diagnostics.CartridgeValidationRequest.Parser, new[]{ "Action" }, null, null, null) })); } #endregion @@ -63,7 +61,6 @@ namespace Tango.PMR.Diagnostics { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public CartridgeValidationRequest(CartridgeValidationRequest other) : this() { - Cartridge = other.cartridge_ != null ? other.Cartridge.Clone() : null; action_ = other.action_; } @@ -72,17 +69,6 @@ namespace Tango.PMR.Diagnostics { return new CartridgeValidationRequest(this); } - /// Field number for the "Cartridge" field. - public const int CartridgeFieldNumber = 1; - private global::Tango.PMR.Diagnostics.Cartridge cartridge_; - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public global::Tango.PMR.Diagnostics.Cartridge Cartridge { - get { return cartridge_; } - set { - cartridge_ = value; - } - } - /// Field number for the "Action" field. public const int ActionFieldNumber = 2; private global::Tango.PMR.Diagnostics.CartridgeAction action_ = 0; @@ -107,7 +93,6 @@ namespace Tango.PMR.Diagnostics { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(Cartridge, other.Cartridge)) return false; if (Action != other.Action) return false; return true; } @@ -115,7 +100,6 @@ namespace Tango.PMR.Diagnostics { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public override int GetHashCode() { int hash = 1; - if (cartridge_ != null) hash ^= Cartridge.GetHashCode(); if (Action != 0) hash ^= Action.GetHashCode(); return hash; } @@ -127,10 +111,6 @@ namespace Tango.PMR.Diagnostics { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public void WriteTo(pb::CodedOutputStream output) { - if (cartridge_ != null) { - output.WriteRawTag(10); - output.WriteMessage(Cartridge); - } if (Action != 0) { output.WriteRawTag(16); output.WriteEnum((int) Action); @@ -140,9 +120,6 @@ namespace Tango.PMR.Diagnostics { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public int CalculateSize() { int size = 0; - if (cartridge_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(Cartridge); - } if (Action != 0) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Action); } @@ -154,12 +131,6 @@ namespace Tango.PMR.Diagnostics { if (other == null) { return; } - if (other.cartridge_ != null) { - if (cartridge_ == null) { - cartridge_ = new global::Tango.PMR.Diagnostics.Cartridge(); - } - Cartridge.MergeFrom(other.Cartridge); - } if (other.Action != 0) { Action = other.Action; } @@ -173,13 +144,6 @@ namespace Tango.PMR.Diagnostics { default: input.SkipLastField(); break; - case 10: { - if (cartridge_ == null) { - cartridge_ = new global::Tango.PMR.Diagnostics.Cartridge(); - } - input.ReadMessage(cartridge_); - break; - } case 16: { action_ = (global::Tango.PMR.Diagnostics.CartridgeAction) input.ReadEnum(); break; diff --git a/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationResponse.cs b/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationResponse.cs index 7463f0270..e128809df 100644 --- a/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationResponse.cs +++ b/Software/Visual_Studio/Tango.PMR/Diagnostics/CartridgeValidationResponse.cs @@ -23,14 +23,13 @@ namespace Tango.PMR.Diagnostics { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiFDYXJ0cmlkZ2VWYWxpZGF0aW9uUmVzcG9uc2UucHJvdG8SFVRhbmdvLlBN", - "Ui5EaWFnbm9zdGljcxoPQ2FydHJpZGdlLnByb3RvImMKG0NhcnRyaWRnZVZh", - "bGlkYXRpb25SZXNwb25zZRIPCgdJc1ZhbGlkGAEgASgIEjMKCUNhcnRyaWRn", - "ZRgCIAEoCzIgLlRhbmdvLlBNUi5EaWFnbm9zdGljcy5DYXJ0cmlkZ2VCIQof", - "Y29tLnR3aW5lLnRhbmdvLnBtci5kaWFnbm9zdGljc2IGcHJvdG8z")); + "Ui5EaWFnbm9zdGljcyI9ChtDYXJ0cmlkZ2VWYWxpZGF0aW9uUmVzcG9uc2US", + "DwoHSXNWYWxpZBgBIAEoCBINCgVJbmRleBgCIAEoBUIhCh9jb20udHdpbmUu", + "dGFuZ28ucG1yLmRpYWdub3N0aWNzYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::Tango.PMR.Diagnostics.CartridgeReflection.Descriptor, }, + new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Diagnostics.CartridgeValidationResponse), global::Tango.PMR.Diagnostics.CartridgeValidationResponse.Parser, new[]{ "IsValid", "Cartridge" }, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Diagnostics.CartridgeValidationResponse), global::Tango.PMR.Diagnostics.CartridgeValidationResponse.Parser, new[]{ "IsValid", "Index" }, null, null, null) })); } #endregion @@ -62,7 +61,7 @@ namespace Tango.PMR.Diagnostics { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public CartridgeValidationResponse(CartridgeValidationResponse other) : this() { isValid_ = other.isValid_; - Cartridge = other.cartridge_ != null ? other.Cartridge.Clone() : null; + index_ = other.index_; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -81,14 +80,14 @@ namespace Tango.PMR.Diagnostics { } } - /// Field number for the "Cartridge" field. - public const int CartridgeFieldNumber = 2; - private global::Tango.PMR.Diagnostics.Cartridge cartridge_; + /// Field number for the "Index" field. + public const int IndexFieldNumber = 2; + private int index_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public global::Tango.PMR.Diagnostics.Cartridge Cartridge { - get { return cartridge_; } + public int Index { + get { return index_; } set { - cartridge_ = value; + index_ = value; } } @@ -106,7 +105,7 @@ namespace Tango.PMR.Diagnostics { return true; } if (IsValid != other.IsValid) return false; - if (!object.Equals(Cartridge, other.Cartridge)) return false; + if (Index != other.Index) return false; return true; } @@ -114,7 +113,7 @@ namespace Tango.PMR.Diagnostics { public override int GetHashCode() { int hash = 1; if (IsValid != false) hash ^= IsValid.GetHashCode(); - if (cartridge_ != null) hash ^= Cartridge.GetHashCode(); + if (Index != 0) hash ^= Index.GetHashCode(); return hash; } @@ -129,9 +128,9 @@ namespace Tango.PMR.Diagnostics { output.WriteRawTag(8); output.WriteBool(IsValid); } - if (cartridge_ != null) { - output.WriteRawTag(18); - output.WriteMessage(Cartridge); + if (Index != 0) { + output.WriteRawTag(16); + output.WriteInt32(Index); } } @@ -141,8 +140,8 @@ namespace Tango.PMR.Diagnostics { if (IsValid != false) { size += 1 + 1; } - if (cartridge_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(Cartridge); + if (Index != 0) { + size += 1 + pb::CodedOutputStream.ComputeInt32Size(Index); } return size; } @@ -155,11 +154,8 @@ namespace Tango.PMR.Diagnostics { if (other.IsValid != false) { IsValid = other.IsValid; } - if (other.cartridge_ != null) { - if (cartridge_ == null) { - cartridge_ = new global::Tango.PMR.Diagnostics.Cartridge(); - } - Cartridge.MergeFrom(other.Cartridge); + if (other.Index != 0) { + Index = other.Index; } } @@ -175,11 +171,8 @@ namespace Tango.PMR.Diagnostics { IsValid = input.ReadBool(); break; } - case 18: { - if (cartridge_ == null) { - cartridge_ = new global::Tango.PMR.Diagnostics.Cartridge(); - } - input.ReadMessage(cartridge_); + case 16: { + Index = input.ReadInt32(); break; } } diff --git a/Software/Visual_Studio/Tango.Touch/Styles/TouchButton.xaml b/Software/Visual_Studio/Tango.Touch/Styles/TouchButton.xaml index d8d843b78..2fd056b6d 100644 --- a/Software/Visual_Studio/Tango.Touch/Styles/TouchButton.xaml +++ b/Software/Visual_Studio/Tango.Touch/Styles/TouchButton.xaml @@ -47,6 +47,12 @@ + + + + + +