diff --git a/.angulardoc.json b/.angulardoc.json deleted file mode 100644 index a8863e174..000000000 --- a/.angulardoc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "repoId": "a13b5f05-f1dd-4d04-8f3d-e764621ce5c2", - "lastSync": 0 -} diff --git a/.editorconfig b/.editorconfig index 9b7352176..f1cc3ad32 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,13 +1,15 @@ -# Editor configuration, see http://editorconfig.org +# http://editorconfig.org + root = true [*] charset = utf-8 indent_style = space -indent_size = 4 +indent_size = 2 +end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.md] -max_line_length = off +insert_final_newline = false trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore index eebae6941..11231b2a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,45 +1,51 @@ -# See http://help.github.com/ignore-files/ for more about ignoring files. - -# compiled output -/tmp -/out-tsc -/dist - -# dependencies -/node_modules -package-lock.json - -# IDEs and editors -/.idea -.project -.classpath -.history -.c9/ -*.launch -.settings/ -*.sublime-workspace - -# IDE - VSCode -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json - -# misc -/.angular/cache -/.sass-cache -/connect.lock -/coverage -/libpeerconnection.log -npm-debug.log -testem.log -/typings - -# e2e -/e2e/*.js -/e2e/*.map - -# System Files +# Logs +logs +*.log + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directory +# Commenting this out is preferred by some people, see +# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- +node_modules +typings + +# Users Environment Variables +.lock-wscript +.tsdrc +.typingsrc + +#IDE configuration files +.idea +.vscode +*.iml + +/tools/**/*.js +dist/dev +dist/tmp +dev +docs +lib +test +tmp + +gulpfile.js +gulpfile.js.map + +# OS X trash files .DS_Store -Thumbs.db diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 000000000..f08d45ffc --- /dev/null +++ b/.jshintrc @@ -0,0 +1,61 @@ +{ + "bitwise": true, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "es3": false, + "forin": true, + "freeze": true, + "immed": true, + "indent": 2, + "latedef": "nofunc", + "newcap": true, + "noarg": true, + "noempty": true, + "nonbsp": true, + "nonew": true, + "plusplus": false, + "quotmark": "single", + "undef": true, + "unused": false, + "strict": false, + "maxparams": 10, + "maxdepth": 5, + "maxstatements": 40, + "maxcomplexity": 8, + "maxlen": 140, + + "asi": false, + "boss": false, + "debug": false, + "eqnull": true, + "esnext": false, + "evil": false, + "expr": false, + "funcscope": false, + "globalstrict": false, + "iterator": false, + "lastsemic": false, + "laxbreak": false, + "laxcomma": false, + "loopfunc": true, + "maxerr": false, + "moz": false, + "multistr": false, + "notypeof": false, + "proto": false, + "scripturl": false, + "shadow": false, + "sub": true, + "supernew": false, + "validthis": false, + "noyield": false, + + "browser": true, + "node": true, + + "globals": { + "angular": false, + "ng": false + } +} diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 0ced6c3c4..000000000 --- a/.prettierignore +++ /dev/null @@ -1,8 +0,0 @@ -package.json -package-lock.json -dist -.angulardoc.json -.vscode/* -.history/* -node_modules/* -src/assets diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 764608e1b..000000000 --- a/.prettierrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bracketSpacing": true, - "semi": true, - "singleQuote": true, - "trailingComma": "none", - "printWidth": 120, - "disableLanguages": ["html"] -} diff --git a/.stylelintrc b/.stylelintrc new file mode 100644 index 000000000..dc42e759a --- /dev/null +++ b/.stylelintrc @@ -0,0 +1,13 @@ +{ + "extends": "stylelint-config-standard", + "rules": { + "block-no-empty": null, + "at-rule-empty-line-before": null, + "rule-non-nested-empty-line-before": null, + "selector-pseudo-class-no-unknown" : [ true, { + "ignorePseudoClasses": [ + "host" + ] + }] + } +} diff --git a/.travis.yml b/.travis.yml index 45dda3d41..68f40fb2f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,55 @@ language: node_js node_js: - - '9' - - '10' + - 4 + - 5 + - stable -install: - - npm install +sudo: false -script: - - npm run test-ci +os: + - linux + - osx + +matrix: + exclude: + - os: osx + node_js: 4 + - os: osx + node_js: 5 + +before_install: + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew outdated xctool || brew upgrade xctool; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CHROME_BIN=chromium-browser; fi # Karma CI + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew cask install google-chrome; fi # Karma CI + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export DISPLAY=:99.0; fi + +before_script: + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sh -e /etc/init.d/xvfb start; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then nohup bash -c "webdriver-manager start 2>&1 &"; fi # Protractor CI + +after_failure: + - cat /home/travis/build/mgechev/angular2-seed/npm-debug.log + +branches: + only: master + +notifications: + email: true + webhooks: + urls: https://webhooks.gitter.im/e/565e4b2fed3b96c1b964 + on_success: change # options: [always|never|change] default: always + on_failure: always # options: [always|never|change] default: always + on_start: never # options: [always|never|change] default: always + +env: + global: + # https://github.com/DefinitelyTyped/tsd#tsdrc + # Token has no scope (read-only access to public information) + - TSD_GITHUB_TOKEN=9b18c72997769f3867ef2ec470e626d39661795d cache: - directories: - - node_modules + directories: node_modules + +script: + - npm run tests.all diff --git a/LICENSE b/LICENSE index 6de49abb9..b7437babb 100644 --- a/LICENSE +++ b/LICENSE @@ -1,13 +1,22 @@ - Copyright 2018 GeekyAnts +The MIT License (MIT) -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Copyright (c) 2016 GeekyAnts +http://geekyants.com/ - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 1bd2f15e0..bf0d0c5b5 100644 --- a/README.md +++ b/README.md @@ -1,65 +1,233 @@ -# SB Admin rewritten in Angular 13 and Bootstrap 5 +# SB Admin rewritten in Angular2 and Bootstrap 4 -Simple Dashboard Admin App built using Angular 13 and Bootstrap 5 +Simple Dashboard Admin App built using Angular 2 and Bootstrap 4 -This project is a port of the famous Free Admin Bootstrap Theme [SB Admin v8.0](http://startbootstrap.com/template-overviews/sb-admin-2/) to Angular 13 Theme. +This project is a port of the famous Free Admin Bootstrap Theme [SB Admin v2.0](http://startbootstrap.com/template-overviews/sb-admin-2/) to Angular2 Theme. Powered by [StartAngular](http://startangular.com/) & [StrapUI](http://strapui.com/) -## [Demo](http://rawgit.com/start-angular/SB-Admin-BS4-Angular-6/master/dist/) +##[Demo](http://rawgit.com/start-angular/SB-Admin-BS4-Angular-2/master/dist/prod/) -## [SB Admin Material version](https://github.com/start-javascript/sb-admin-material) +`SB Admin BS 4 Angular2` provides the following features: -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.2. +- Allows you to painlessly update the seed tasks of your already existing project. +- Ready to go, statically typed build system using gulp for working with TypeScript. +- Production and development builds. +- Ahead-of-Time compilation support. +- Sample unit tests with Jasmine and Karma including code coverage via istanbul. +- End-to-end tests with Protractor. +- Development server with Livereload. +- Following the best practices for your application’s structure. +- Manager of your type definitions using @types. +- Has autoprefixer and css-lint support. -### Introduction +## How to start -Provides fast, reliable and extensible starter for the development of Angular projects. +**Note** that this seed project requires node v4.x.x or higher and npm 2.14.7. -`sb-admin-bs5-angular13` provides the following features: +In order to start the seed use: -- Developed using boostrap-v6.0.0 -- angular-v13.2.2 -- angular/cli-v13.2.2 -- [ng-bootstrap-v12.0.0](https://github.com/ng-bootstrap/) -- [ngx-translate-v14.0.0](https://github.com/ngx-translate) -- Following the best practices. -- Ahead-of-Time compilation support. -- Official Angular i18n support. -- Production and development builds. -- Tree-Shaking production builds. +```bash +git clone https://github.com/start-angular/SB-Admin-BS4-Angular-2.git +cd SB-Admin-BS4-Angular-2 +# install the project's dependencies +npm install +# watches your files and uses livereload by default +npm start +# api document for the app +# npm run build.docs + +# dev build +npm run build.dev +# prod build +npm run build.prod +# prod build with AoT compilation +npm run build.prod.exp + +# dev build of multiple applications (by default the value of --app is "app") +npm start -- --app baz +npm start -- --app foo +npm start -- --app bar +``` -### How to start -**Note** that this seed project requires **node >=v12.0.0 and npm >=6**. +### Configuration -In order to start the project use: +Default application server configuration -```bash -$ git clone https://github.com/start-angular/SB-Admin-BS4-Angular-8.git -$ cd SB-Admin-BS4-Angular-8 -# install the project's dependencies -$ npm install -# watches your files and uses livereload by default run `npm start` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. -$ npm start -# prod build, will output the production application in `dist` -# the produced code can be deployed (rsynced) to a remote server -$ npm run build +```js +var PORT = 5555; +var LIVE_RELOAD_PORT = 4002; +var DOCS_PORT = 4003; +var APP_BASE = '/'; ``` -### Code scaffolding +Configure at runtime -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive/pipe/service/class/module`. +```bash +npm start -- --port 8080 --reload-port 4000 --base /my-app/ +``` -### Running unit tests +## Environment configuration -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). +If you have different environments and you need to configure them to use different end points, settings, etc. you can use the files `dev.ts` or `prod.ts` in`./tools/env/`. The name of the file is environment you want to use. -### Running end-to-end tests +The environment can be specified by using: -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). -Before running the tests make sure you are serving the app via `ng serve`. +```bash +npm start -- --config-env ENV_NAME +``` -### Further help +Currently the `ENV_NAME`s are `dev`, `prod`, `staging`, but you can simply add a different file `"ENV_NAME.ts".` file in order to alter extra such environments. -To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). +### Directory Structure + +``` +├── LICENSE +├── README.md +├── gulpfile.ts <- configuration of the gulp tasks +├── karma.conf.js <- configuration of the test runner +├── package.json <- dependencies of the project +├── protractor.conf.js <- e2e tests configuration +├── src <- source code of the application +│   └── client +│   ├── app +│   │   ├── login +│   │   │   ├── login.component.css +│   │   │   ├── login.component.e2e-spec.ts +│   │   │   ├── login.component.html +│   │   │   ├── login.component.spec.ts +│   │   │   ├── login.component.ts +│   │   │   ├── login.module.ts +│   │   │   ├── login.routes.ts +│   │   │   └── index.ts +│   │   ├── dashboard +│   │   │   ├── home +│   │   │   ├── bg-component +│   │   │   ├── blankpage +│   │   │   ├── dashboard.component.css +│   │   │   ├── dashboard.component.e2e-spec.ts +│   │   │   ├── dashboard.component.html +│   │   │   ├── dashboard.component.spec.ts +│   │   │   ├── dashboard.component.ts +│   │   │   ├── dashboard.module.ts +│   │   │   ├── dashboard.routes.ts +│   │   │   └── index.ts +│   │   ├── app.component.html +│   │   ├── app.component.ts +│   │   ├── app.module.ts +│   │   ├── app.routes.ts +│   │   ├── main.ts +│   │   └── shared +│   │   ├── config +│   │   │   └── env.config.ts +│   │   ├── index.ts +│   │   ├── shared.module.ts +│   │   ├── name-list +│   │   │   ├── index.ts +│   │   │   ├── name-list.service.spec.ts +│   │   │   └── name-list.service.ts +│   │   ├── sidebar +│   │   │   ├── index.ts +│   │   │   ├── sidebar.component.html +│   │   │   └── sidebar.component.ts +│   ├── assets +│   │   ├── bootstrao +│   │   └── images +│   │   └── sass +│   ├── testing +│   ├── index.html +│   ├── tsconfig.json +│   └── typings.d.ts +├── test-main.js <- testing configuration +├── tools +│   ├── README.md <- build documentation +│   ├── config +│   │   ├── project.config.ts <- configuration of the specific project +│   │   ├── seed.config.interfaces.ts +│   │   └── seed.config.ts <- generic configuration of the seed project +│   ├── config.ts <- exported configuration (merge both seed.config and project.config, project.config overrides seed.config) +│   ├── debug.ts +│   ├── env <- environment configuration +│   │   ├── base.ts +│   │   ├── dev.ts +│   │   └── prod.ts +│   ├── manual_typings +│   │   ├── project <- manual ambient typings for the project +│   │   │   └── sample.package.d.ts +│   │   └── seed <- seed manual ambient typings +│   │   ├── angular2-hot-loader.d.ts +│   │   ├── autoprefixer.d.ts +│   │   ├── colorguard.d.ts +│   │   ├── connect-livereload.d.ts +│   │   ├── cssnano.d.ts +│   │   ├── doiuse.d.ts +│   │   ├── express-history-api-fallback.d.ts +│   │   ├── istream.d.ts +│   │   ├── karma.d.ts +│   │   ├── merge-stream.d.ts +│   │   ├── open.d.ts +│   │   ├── postcss-reporter.d.ts +│   │   ├── slash.d.ts +│   │   ├── stylelint.d.ts +│   │   ├── systemjs-builder.d.ts +│   │   ├── tildify.d.ts +│   │   ├── tiny-lr.d.ts +│   │   └── walk.d.ts +│   ├── tasks <- gulp tasks +│   │   ├── project <- project specific gulp tasks +│   │   │   └── sample.task.ts +│   │   └── seed <- seed generic gulp tasks. They can be overriden by the project specific gulp tasks +│   │   ├── build.assets.dev.ts +│   │   ├── build.assets.prod.ts +│   │   ├── build.bundles.app.ts +│   │   ├── build.bundles.ts +│   │   ├── build.docs.ts +│   │   ├── build.html_css.ts +│   │   ├── build.index.dev.ts +│   │   ├── build.index.prod.ts +│   │   ├── build.js.dev.ts +│   │   ├── build.js.e2e.ts +│   │   ├── build.js.prod.ts +│   │   ├── build.js.test.ts +│   │   ├── build.js.tools.ts +│   │   ├── check.versions.ts +│   │   ├── clean.all.ts +│   │   ├── clean.coverage.ts +│   │   ├── clean.dev.ts +│   │   ├── clean.prod.ts +│   │   ├── clean.tools.ts +│   │   ├── copy.js.prod.ts +│   │   ├── css-lint.ts +│   │   ├── e2e.ts +│   │   ├── generate.manifest.ts +│   │   ├── karma.start.ts +│   │   ├── serve.coverage.ts +│   │   ├── serve.docs.ts +│   │   ├── server.prod.ts +│   │   ├── server.start.ts +│   │   ├── tslint.ts +│   │   ├── watch.dev.ts +│   │   ├── watch.e2e.ts +│   │   ├── watch.test.ts +│   │   └── webdriver.ts +│   ├── utils <- build utils +│   │   ├── project <- project specific gulp utils +│   │   │   └── sample_util.ts +│   │   ├── project.utils.ts +│   │   ├── seed <- seed specific gulp utils +│   │   │   ├── clean.ts +│   │   │   ├── code_change_tools.ts +│   │   │   ├── server.ts +│   │   │   ├── tasks_tools.ts +│   │   │   ├── template_locals.ts +│   │   │   ├── tsproject.ts +│   │   │   └── watch.ts +│   │   └── seed.utils.ts +│   └── utils.ts +├── tsconfig.json <- configuration of the typescript project (ts-node, which runs the tasks defined in gulpfile.ts) +├── tslint.json <- tslint configuration +├── typings <- typings directory. Contains all the external typing definitions defined with typings +├── typings.json +└── appveyor.yml +``` \ No newline at end of file diff --git a/angular.json b/angular.json deleted file mode 100644 index 8399ee415..000000000 --- a/angular.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "$schema": "./node_modules/@angular/cli/lib/config/schema.json", - "version": 1, - "newProjectRoot": "projects", - "projects": { - "test-ng7": { - "root": "", - "sourceRoot": "src", - "projectType": "application", - "architect": { - "build": { - "builder": "@angular-devkit/build-angular:browser", - "options": { - "outputPath": "dist", - "index": "src/index.html", - "main": "src/main.ts", - "tsConfig": "src/tsconfig.app.json", - "polyfills": "src/polyfills.ts", - "assets": ["src/assets", "src/favicon.ico"], - "styles": ["node_modules/font-awesome/css/font-awesome.css", "src/styles/app.scss"], - "scripts": ["node_modules/chart.js/dist/Chart.js"], - "allowedCommonJsDependencies": ["chart.js"], - "aot": false, - "vendorChunk": true, - "extractLicenses": false, - "buildOptimizer": false, - "sourceMap": true, - "optimization": false, - "namedChunks": true - }, - "configurations": { - "production": { - "fileReplacements": [ - { - "replace": "src/environments/environment.ts", - "with": "src/environments/environment.prod.ts" - } - ], - "optimization": true, - "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true, - "budgets": [ - { - "type": "initial", - "maximumWarning": "2mb", - "maximumError": "5mb" - } - ] - } - }, - "defaultConfiguration": "" - }, - "serve": { - "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "test-ng7:build" - }, - "configurations": { - "production": { - "buildTarget": "test-ng7:build:production" - } - } - }, - "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", - "options": { - "buildTarget": "test-ng7:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "main": "src/test.ts", - "polyfills": "src/polyfills.ts", - "tsConfig": "src/tsconfig.spec.json", - "karmaConfig": "src/karma.conf.js", - "scripts": ["node_modules/chart.js/dist/Chart.js"], - "styles": ["node_modules/font-awesome/css/font-awesome.css", "src/styles/app.scss"], - "assets": ["src/assets", "src/favicon.ico"] - } - } - } - }, - "test-ng7-e2e": { - "root": "e2e/", - "projectType": "application", - "prefix": "", - "architect": { - "e2e": { - "builder": "@angular-devkit/build-angular:protractor", - "options": { - "protractorConfig": "e2e/protractor.conf.js", - "devServerTarget": "test-ng7:serve" - }, - "configurations": { - "production": { - "devServerTarget": "test-ng7:serve:production" - } - } - } - } - } - }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "styleext": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, - "cli": { - "analytics": "0ccfd754-79ab-4bf6-b9ef-ef066366d8c7" - } -} diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..70136b7b2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,44 @@ +# AppVeyor file +# http://www.appveyor.com/docs/appveyor-yml +# This file: cloned from https://github.com/gruntjs/grunt/blob/master/appveyor.yml + +# Build version format +version: "{build}" + +# Test against this version of Node.js +environment: + nodejs_version: "Stable" + # https://github.com/DefinitelyTyped/tsd#tsdrc + # Token has no scope (read-only access to public information) + TSD_GITHUB_TOKEN: "9b18c72997769f3867ef2ec470e626d39661795d" + +build: off + +clone_depth: 10 + +# Fix line endings on Windows +init: + - git config --global core.autocrlf true + +install: + - ps: Install-Product node $env:nodejs_version + - npm install -g npm + - ps: $env:path = $env:appdata + "\npm;" + $env:path + - npm install && npm install karma-ie-launcher + +test_script: + # Output useful info for debugging. + - node --version && npm --version + # We test multiple Windows shells because of prior stdout buffering issues + # filed against Grunt. https://github.com/joyent/node/issues/3584 + - ps: "npm --version # PowerShell" # Pass comment to PS for easier debugging + - npm run tests.all + +notifications: + - provider: Webhook + url: https://webhooks.gitter.im/e/cfd8ce5ddee6f3a0b0c9 + on_build_success: false + on_build_failure: true + on_build_status_changed: true + +cache: node_modules diff --git a/browserslist b/browserslist deleted file mode 100644 index afcf7c5cb..000000000 --- a/browserslist +++ /dev/null @@ -1,6 +0,0 @@ -last 2 Chrome versions -last 1 Firefox version -last 2 Edge major versions -last 2 Safari major versions -last 2 iOS major versions -Firefox ESR diff --git a/dist/1.07ff48a34011da30d496.js b/dist/1.07ff48a34011da30d496.js deleted file mode 100644 index aa9b6618a..000000000 --- a/dist/1.07ff48a34011da30d496.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{LcBl:function(n,o,t){"use strict";t.r(o);var l=t("CcnG"),u=function(){},e=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),c=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function p(n){return l["\u0275vid"](0,[],null,null)}var r=l["\u0275ccf"]("app-blank-page",e,function(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"app-blank-page",[],null,null,null,p,c)),l["\u0275did"](1,114688,null,0,e,[],null,null)],function(n,o){n(o,1,0)},null)},{},{},[]),a=t("Ip0R"),i=t("ZYCi"),d=function(){};t.d(o,"BlankPageModuleNgFactory",function(){return f});var f=l["\u0275cmf"](u,[],function(n){return l["\u0275mod"]([l["\u0275mpd"](512,l.ComponentFactoryResolver,l["\u0275CodegenComponentFactoryResolver"],[[8,[r]],[3,l.ComponentFactoryResolver],l.NgModuleRef]),l["\u0275mpd"](4608,a.o,a.n,[l.LOCALE_ID,[2,a.w]]),l["\u0275mpd"](1073742336,a.b,a.b,[]),l["\u0275mpd"](1073742336,i.o,i.o,[[2,i.t],[2,i.l]]),l["\u0275mpd"](1073742336,d,d,[]),l["\u0275mpd"](1073742336,u,u,[]),l["\u0275mpd"](1024,i.j,function(){return[[{path:"",component:e}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/10.5e38288e5f1ce7d9c47e.js b/dist/10.5e38288e5f1ce7d9c47e.js deleted file mode 100644 index 2d2f2a22f..000000000 --- a/dist/10.5e38288e5f1ce7d9c47e.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[10],{iUTe:function(n,l,e){"use strict";e.r(l);var o=e("CcnG"),u=function(){},t=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),c=o["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function d(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),o["\u0275ted"](-1,null,[" access-denied works!\n"]))],null,null)}var r=o["\u0275ccf"]("app-access-denied",t,function(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,1,"app-access-denied",[],null,null,null,d,c)),o["\u0275did"](1,114688,null,0,t,[],null,null)],function(n,l){n(l,1,0)},null)},{},{},[]),i=e("Ip0R"),p=e("ZYCi"),s=function(){};e.d(l,"AccessDeniedModuleNgFactory",function(){return a});var a=o["\u0275cmf"](u,[],function(n){return o["\u0275mod"]([o["\u0275mpd"](512,o.ComponentFactoryResolver,o["\u0275CodegenComponentFactoryResolver"],[[8,[r]],[3,o.ComponentFactoryResolver],o.NgModuleRef]),o["\u0275mpd"](4608,i.o,i.n,[o.LOCALE_ID,[2,i.w]]),o["\u0275mpd"](1073742336,i.b,i.b,[]),o["\u0275mpd"](1073742336,p.o,p.o,[[2,p.t],[2,p.l]]),o["\u0275mpd"](1073742336,s,s,[]),o["\u0275mpd"](1073742336,u,u,[]),o["\u0275mpd"](1024,p.j,function(){return[[{path:"",component:t}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/11.148c568d5f43def6f662.js b/dist/11.148c568d5f43def6f662.js deleted file mode 100644 index c93b4d1d7..000000000 --- a/dist/11.148c568d5f43def6f662.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[11],{"+g98":function(n,l,r){"use strict";r.r(l);var o=r("CcnG"),u=function(){},e=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),t=o["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function c(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),o["\u0275ted"](-1,null,[" server-error works!\n"]))],null,null)}var p=o["\u0275ccf"]("app-server-error",e,function(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,1,"app-server-error",[],null,null,null,c,t)),o["\u0275did"](1,114688,null,0,e,[],null,null)],function(n,l){n(l,1,0)},null)},{},{},[]),d=r("Ip0R"),i=r("ZYCi"),a=function(){};r.d(l,"ServerErrorModuleNgFactory",function(){return f});var f=o["\u0275cmf"](u,[],function(n){return o["\u0275mod"]([o["\u0275mpd"](512,o.ComponentFactoryResolver,o["\u0275CodegenComponentFactoryResolver"],[[8,[p]],[3,o.ComponentFactoryResolver],o.NgModuleRef]),o["\u0275mpd"](4608,d.o,d.n,[o.LOCALE_ID,[2,d.w]]),o["\u0275mpd"](1073742336,d.b,d.b,[]),o["\u0275mpd"](1073742336,i.o,i.o,[[2,i.t],[2,i.l]]),o["\u0275mpd"](1073742336,a,a,[]),o["\u0275mpd"](1073742336,u,u,[]),o["\u0275mpd"](1024,i.j,function(){return[[{path:"",component:e}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/12.1faac5a34040be8bfbf9.js b/dist/12.1faac5a34040be8bfbf9.js deleted file mode 100644 index 4864ce441..000000000 --- a/dist/12.1faac5a34040be8bfbf9.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[12],{mH0F:function(n,l,t){"use strict";t.r(l);var o=t("CcnG"),e=function(){},u=t("ZYCi"),r=t("Ip0R"),i=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),a=o["\u0275crt"]({encapsulation:0,styles:[["[_nghost-%COMP%]{display:block}.login-page[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;bottom:0;overflow:auto;background:#222;text-align:center;color:#fff;padding:3em}.login-page[_ngcontent-%COMP%] .col-lg-4[_ngcontent-%COMP%]{padding:0}.login-page[_ngcontent-%COMP%] .input-lg[_ngcontent-%COMP%]{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.login-page[_ngcontent-%COMP%] .input-underline[_ngcontent-%COMP%]{background:0 0;border:none;box-shadow:none;border-bottom:2px solid rgba(255,255,255,.5);color:#fff;border-radius:0}.login-page[_ngcontent-%COMP%] .input-underline[_ngcontent-%COMP%]:focus{border-bottom:2px solid #fff;box-shadow:none}.login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]{border-radius:50px;color:rgba(255,255,255,.8);background:#222;border:2px solid rgba(255,255,255,.8);font-size:18px;line-height:40px;padding:0 25px}.login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:active, .login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:focus, .login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:hover, .login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:visited{color:#fff;border:2px solid #fff;outline:0}.login-page[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-weight:300;margin-top:20px;margin-bottom:10px;font-size:36px}.login-page[_ngcontent-%COMP%] h1[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{color:rgba(255,255,255,.7)}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%]{padding:8px 0}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]::-webkit-input-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:-moz-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]::-moz-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:-ms-input-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-content[_ngcontent-%COMP%]{padding:40px 0}.login-page[_ngcontent-%COMP%] .user-avatar[_ngcontent-%COMP%]{border-radius:50%;border:2px solid #fff}"]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function p(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,24,"div",[["class","login-page"]],[[24,"@routerTransition",0]],null,null,null,null)),(n()(),o["\u0275eld"](1,0,null,null,23,"div",[["class","row justify-content-md-center"]],null,null,null,null,null)),(n()(),o["\u0275eld"](2,0,null,null,22,"div",[["class","col-md-4"]],null,null,null,null,null)),(n()(),o["\u0275eld"](3,0,null,null,0,"img",[["class","user-avatar"],["src","assets/images/logo.png"],["width","150px"]],null,null,null,null,null)),(n()(),o["\u0275eld"](4,0,null,null,1,"h1",[],null,null,null,null,null)),(n()(),o["\u0275ted"](-1,null,["SB Admin BS4 Angular9"])),(n()(),o["\u0275eld"](6,0,null,null,18,"form",[["role","form"]],null,null,null,null,null)),(n()(),o["\u0275eld"](7,0,null,null,8,"div",[["class","form-content"]],null,null,null,null,null)),(n()(),o["\u0275eld"](8,0,null,null,1,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),o["\u0275eld"](9,0,null,null,0,"input",[["class","form-control input-underline input-lg"],["id",""],["placeholder","Full Name"],["type","text"]],null,null,null,null,null)),(n()(),o["\u0275eld"](10,0,null,null,1,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),o["\u0275eld"](11,0,null,null,0,"input",[["class","form-control input-underline input-lg"],["id",""],["placeholder","Email"],["type","text"]],null,null,null,null,null)),(n()(),o["\u0275eld"](12,0,null,null,1,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),o["\u0275eld"](13,0,null,null,0,"input",[["class","form-control input-underline input-lg"],["id",""],["placeholder","Password"],["type","password"]],null,null,null,null,null)),(n()(),o["\u0275eld"](14,0,null,null,1,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),o["\u0275eld"](15,0,null,null,0,"input",[["class","form-control input-underline input-lg"],["id",""],["placeholder","Repeat Password"],["type","password"]],null,null,null,null,null)),(n()(),o["\u0275eld"](16,0,null,null,3,"a",[["class","btn rounded-btn"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(n,l,t){var e=!0;return"click"===l&&(e=!1!==o["\u0275nov"](n,17).onClick(t.button,t.ctrlKey,t.metaKey,t.shiftKey)&&e),e},null,null)),o["\u0275did"](17,671744,null,0,u.n,[u.l,u.a,r.j],{routerLink:[0,"routerLink"]},null),o["\u0275pad"](18,1),(n()(),o["\u0275ted"](-1,null,[" Register "])),(n()(),o["\u0275ted"](-1,null,["\xa0 "])),(n()(),o["\u0275eld"](21,0,null,null,3,"a",[["class","btn rounded-btn"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(n,l,t){var e=!0;return"click"===l&&(e=!1!==o["\u0275nov"](n,22).onClick(t.button,t.ctrlKey,t.metaKey,t.shiftKey)&&e),e},null,null)),o["\u0275did"](22,671744,null,0,u.n,[u.l,u.a,r.j],{routerLink:[0,"routerLink"]},null),o["\u0275pad"](23,1),(n()(),o["\u0275ted"](-1,null,[" Log in "]))],function(n,l){n(l,17,0,n(l,18,0,"/dashboard")),n(l,22,0,n(l,23,0,"/login"))},function(n,l){n(l,0,0,void 0),n(l,16,0,o["\u0275nov"](l,17).target,o["\u0275nov"](l,17).href),n(l,21,0,o["\u0275nov"](l,22).target,o["\u0275nov"](l,22).href)})}var g=o["\u0275ccf"]("app-signup",i,function(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,1,"app-signup",[],null,null,null,p,a)),o["\u0275did"](1,114688,null,0,i,[],null,null)],function(n,l){n(l,1,0)},null)},{},{},[]),d=function(){};t.d(l,"SignupModuleNgFactory",function(){return c});var c=o["\u0275cmf"](e,[],function(n){return o["\u0275mod"]([o["\u0275mpd"](512,o.ComponentFactoryResolver,o["\u0275CodegenComponentFactoryResolver"],[[8,[g]],[3,o.ComponentFactoryResolver],o.NgModuleRef]),o["\u0275mpd"](4608,r.o,r.n,[o.LOCALE_ID,[2,r.w]]),o["\u0275mpd"](1073742336,r.b,r.b,[]),o["\u0275mpd"](1073742336,u.o,u.o,[[2,u.t],[2,u.l]]),o["\u0275mpd"](1073742336,d,d,[]),o["\u0275mpd"](1073742336,e,e,[]),o["\u0275mpd"](1024,u.j,function(){return[[{path:"",component:i}]]},[])])})}}]); diff --git a/dist/13.ebf8bc8b2bdca88ed122.js b/dist/13.ebf8bc8b2bdca88ed122.js deleted file mode 100644 index e58d7be12..000000000 --- a/dist/13.ebf8bc8b2bdca88ed122.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[13],{"f+ep":function(n,l,t){"use strict";t.r(l);var o=t("CcnG"),e=function(){},u=t("ZYCi"),r=t("Ip0R"),i=function(){function n(n){this.router=n}return n.prototype.ngOnInit=function(){},n.prototype.onLoggedin=function(){localStorage.setItem("isLoggedin","true")},n}(),g=o["\u0275crt"]({encapsulation:0,styles:[["[_nghost-%COMP%]{display:block}.login-page[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;bottom:0;overflow:auto;background:#222;text-align:center;color:#fff;padding:3em}.login-page[_ngcontent-%COMP%] .col-lg-4[_ngcontent-%COMP%]{padding:0}.login-page[_ngcontent-%COMP%] .input-lg[_ngcontent-%COMP%]{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.login-page[_ngcontent-%COMP%] .input-underline[_ngcontent-%COMP%]{background:0 0;border:none;box-shadow:none;border-bottom:2px solid rgba(255,255,255,.5);color:#fff;border-radius:0}.login-page[_ngcontent-%COMP%] .input-underline[_ngcontent-%COMP%]:focus{border-bottom:2px solid #fff;box-shadow:none}.login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]{border-radius:50px;color:rgba(255,255,255,.8);background:#222;border:2px solid rgba(255,255,255,.8);font-size:18px;line-height:40px;padding:0 25px}.login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:active, .login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:focus, .login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:hover, .login-page[_ngcontent-%COMP%] .rounded-btn[_ngcontent-%COMP%]:visited{color:#fff;border:2px solid #fff;outline:0}.login-page[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-weight:300;margin-top:20px;margin-bottom:10px;font-size:36px}.login-page[_ngcontent-%COMP%] h1[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{color:rgba(255,255,255,.7)}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%]{padding:8px 0}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]::-webkit-input-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:-moz-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]::-moz-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-group[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:-ms-input-placeholder{color:rgba(255,255,255,.6)!important}.login-page[_ngcontent-%COMP%] .form-content[_ngcontent-%COMP%]{padding:40px 0}.login-page[_ngcontent-%COMP%] .user-avatar[_ngcontent-%COMP%]{border-radius:50%;border:2px solid #fff}"]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function a(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,20,"div",[["class","login-page"]],[[24,"@routerTransition",0]],null,null,null,null)),(n()(),o["\u0275eld"](1,0,null,null,19,"div",[["class","row justify-content-md-center"]],null,null,null,null,null)),(n()(),o["\u0275eld"](2,0,null,null,18,"div",[["class","col-md-4"]],null,null,null,null,null)),(n()(),o["\u0275eld"](3,0,null,null,0,"img",[["class","user-avatar"],["src","assets/images/logo.png"],["width","150px"]],null,null,null,null,null)),(n()(),o["\u0275eld"](4,0,null,null,1,"h1",[],null,null,null,null,null)),(n()(),o["\u0275ted"](-1,null,["SB Admin BS4 Angular9"])),(n()(),o["\u0275eld"](6,0,null,null,14,"form",[["role","form"]],null,null,null,null,null)),(n()(),o["\u0275eld"](7,0,null,null,4,"div",[["class","form-content"]],null,null,null,null,null)),(n()(),o["\u0275eld"](8,0,null,null,1,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),o["\u0275eld"](9,0,null,null,0,"input",[["class","form-control input-underline input-lg"],["id",""],["ng-model","name"],["placeholder","Email"],["type","text"]],null,null,null,null,null)),(n()(),o["\u0275eld"](10,0,null,null,1,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),o["\u0275eld"](11,0,null,null,0,"input",[["class","form-control input-underline input-lg"],["id",""],["placeholder","Password"],["type","password"]],null,null,null,null,null)),(n()(),o["\u0275eld"](12,0,null,null,3,"a",[["class","btn rounded-btn"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(n,l,t){var e=!0,u=n.component;return"click"===l&&(e=!1!==o["\u0275nov"](n,13).onClick(t.button,t.ctrlKey,t.metaKey,t.shiftKey)&&e),"click"===l&&(e=!1!==u.onLoggedin()&&e),e},null,null)),o["\u0275did"](13,671744,null,0,u.n,[u.l,u.a,r.j],{routerLink:[0,"routerLink"]},null),o["\u0275pad"](14,1),(n()(),o["\u0275ted"](-1,null,[" Log in "])),(n()(),o["\u0275ted"](-1,null,[" \xa0 "])),(n()(),o["\u0275eld"](17,0,null,null,3,"a",[["class","btn rounded-btn"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(n,l,t){var e=!0;return"click"===l&&(e=!1!==o["\u0275nov"](n,18).onClick(t.button,t.ctrlKey,t.metaKey,t.shiftKey)&&e),e},null,null)),o["\u0275did"](18,671744,null,0,u.n,[u.l,u.a,r.j],{routerLink:[0,"routerLink"]},null),o["\u0275pad"](19,1),(n()(),o["\u0275ted"](-1,null,["Register"]))],function(n,l){n(l,13,0,n(l,14,0,"/dashboard")),n(l,18,0,n(l,19,0,"/signup"))},function(n,l){n(l,0,0,void 0),n(l,12,0,o["\u0275nov"](l,13).target,o["\u0275nov"](l,13).href),n(l,17,0,o["\u0275nov"](l,18).target,o["\u0275nov"](l,18).href)})}var p=o["\u0275ccf"]("app-login",i,function(n){return o["\u0275vid"](0,[(n()(),o["\u0275eld"](0,0,null,null,1,"app-login",[],null,null,null,a,g)),o["\u0275did"](1,114688,null,0,i,[u.l],null,null)],function(n,l){n(l,1,0)},null)},{},{},[]),c=function(){};t.d(l,"LoginModuleNgFactory",function(){return d});var d=o["\u0275cmf"](e,[],function(n){return o["\u0275mod"]([o["\u0275mpd"](512,o.ComponentFactoryResolver,o["\u0275CodegenComponentFactoryResolver"],[[8,[p]],[3,o.ComponentFactoryResolver],o.NgModuleRef]),o["\u0275mpd"](4608,r.o,r.n,[o.LOCALE_ID,[2,r.w]]),o["\u0275mpd"](1073742336,r.b,r.b,[]),o["\u0275mpd"](1073742336,u.o,u.o,[[2,u.t],[2,u.l]]),o["\u0275mpd"](1073742336,c,c,[]),o["\u0275mpd"](1073742336,e,e,[]),o["\u0275mpd"](1024,u.j,function(){return[[{path:"",component:i}]]},[])])})}}]); diff --git a/dist/14.4cdcc8acdfedb5fe06f2.js b/dist/14.4cdcc8acdfedb5fe06f2.js deleted file mode 100644 index 72883d60b..000000000 --- a/dist/14.4cdcc8acdfedb5fe06f2.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[14],{"/cdV":function(l,n,u){"use strict";u.r(n);var e=u("CcnG"),t=function(){},o=u("ruFZ"),a=u("lwpf"),r=u("ebCm"),i=u("ZYCi"),d=u("Ip0R"),s=function(){function l(l,n){var u=this;this.translate=l,this.router=n,this.pushRightClass="push-right",this.translate.addLangs(["en","fr","ur","es","it","fa","de","zh-CHS"]),this.translate.setDefaultLang("en");var e=this.translate.getBrowserLang();this.translate.use(e.match(/en|fr|ur|es|it|fa|de|zh-CHS/)?e:"en"),this.router.events.subscribe(function(l){l instanceof i.d&&window.innerWidth<=992&&u.isToggled()&&u.toggleSidebar()})}return l.prototype.ngOnInit=function(){},l.prototype.isToggled=function(){return document.querySelector("body").classList.contains(this.pushRightClass)},l.prototype.toggleSidebar=function(){document.querySelector("body").classList.toggle(this.pushRightClass)},l.prototype.rltAndLtr=function(){document.querySelector("body").classList.toggle("rtl")},l.prototype.onLoggedout=function(){localStorage.removeItem("isLoggedin")},l.prototype.changeLang=function(l){this.translate.use(l)},l}(),c=e["\u0275crt"]({encapsulation:0,styles:[["[_nghost-%COMP%] .navbar[_ngcontent-%COMP%]{background-color:#222}[_nghost-%COMP%] .navbar[_ngcontent-%COMP%] .navbar-brand[_ngcontent-%COMP%]{color:#fff}[_nghost-%COMP%] .navbar[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{color:#999}[_nghost-%COMP%] .navbar[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]:hover{color:#fff}[_nghost-%COMP%] .messages[_ngcontent-%COMP%]{width:300px}[_nghost-%COMP%] .messages[_ngcontent-%COMP%] .media[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;padding:5px 10px}[_nghost-%COMP%] .messages[_ngcontent-%COMP%] .media[_ngcontent-%COMP%]:last-child{border-bottom:none}[_nghost-%COMP%] .messages[_ngcontent-%COMP%] .media-body[_ngcontent-%COMP%] h5[_ngcontent-%COMP%]{font-size:13px;font-weight:600}[_nghost-%COMP%] .messages[_ngcontent-%COMP%] .media-body[_ngcontent-%COMP%] .small[_ngcontent-%COMP%]{margin:0}[_nghost-%COMP%] .messages[_ngcontent-%COMP%] .media-body[_ngcontent-%COMP%] .last[_ngcontent-%COMP%]{font-size:12px;margin:0}"]],data:{}});function p(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,160,"nav",[["class","navbar navbar-expand-lg fixed-top"]],null,null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,1,"a",[["class","navbar-brand"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["SB Admin Angular11 BS4 "])),(l()(),e["\u0275eld"](3,0,null,null,1,"button",[["class","navbar-toggler"],["type","button"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.toggleSidebar()&&e),e},null,null)),(l()(),e["\u0275eld"](4,0,null,null,0,"i",[["aria-hidden","true"],["class","fa fa-bars text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](5,0,null,null,155,"div",[["class","collapse navbar-collapse"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,2,"form",[["class","form-inline my-2 my-lg-0"]],null,null,null,null,null)),(l()(),e["\u0275eld"](7,0,null,null,1,"input",[["class","form-control mr-sm-2"],["type","text"]],[[8,"placeholder",0]],null,null,null,null)),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](9,0,null,null,151,"ul",[["class","navbar-nav ml-auto"]],null,null,null,null,null)),(l()(),e["\u0275eld"](10,0,null,null,3,"li",[["class","nav-item d-none d-xl-block"]],null,null,null,null,null)),(l()(),e["\u0275eld"](11,0,null,null,2,"a",[["class","nav-link btn mt-1"],["href","https://github.com/start-angular/SB-Admin-BS4-Angular-2/archive/master.zip"],["role","button"],["style","padding: .375rem 1rem !important;border-color: #999;"]],null,null,null,null,null)),(l()(),e["\u0275ted"](12,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275ted"](-1,null,[" \xa0 "])),(l()(),e["\u0275eld"](15,0,null,null,2,"li",[["class","nav-item"]],null,null,null,null,null)),(l()(),e["\u0275eld"](16,0,null,null,1,"a",[["class","nav-link mt-1"],["href","javascript:void(0)"],["style","padding: 0.375rem 1rem !important; border-color: #999;"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.rltAndLtr()&&e),e},null,null)),(l()(),e["\u0275ted"](-1,null,[" RTL/LTR "])),(l()(),e["\u0275ted"](-1,null,[" \xa0 "])),(l()(),e["\u0275eld"](19,0,null,null,42,"li",[["class","nav-item dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(l,n,u){var t=!0;return"keyup.esc"===n&&(t=!1!==e["\u0275nov"](l,20).closeFromOutsideEsc()&&t),"document:click"===n&&(t=!1!==e["\u0275nov"](l,20).closeFromClick(u)&&t),t},null,null)),e["\u0275did"](20,212992,null,2,a.a,[r.a,e.NgZone],null,null),e["\u0275qud"](335544320,1,{_menu:0}),e["\u0275qud"](335544320,2,{_anchor:0}),(l()(),e["\u0275eld"](23,0,null,null,6,"a",[["aria-haspopup","true"],["class","nav-link dropdown-toggle"],["href","javascript:void(0)"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,24).toggleOpen()&&t),t},null,null)),e["\u0275did"](24,16384,null,0,a.d,[a.a,e.ElementRef],null,null),e["\u0275prd"](2048,[[2,4]],a.b,null,[a.d]),(l()(),e["\u0275eld"](26,0,null,null,0,"i",[["class","fa fa-envelope"]],null,null,null,null,null)),(l()(),e["\u0275eld"](27,0,null,null,0,"b",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](28,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["(current)"])),(l()(),e["\u0275eld"](30,0,null,null,31,"ul",[["class","dropdown-menu-right messages"],["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),e["\u0275did"](31,16384,[[1,4]],0,a.c,[a.a,e.ElementRef,e.Renderer2],null,null),(l()(),e["\u0275eld"](32,0,null,null,9,"li",[["class","media"]],null,null,null,null,null)),(l()(),e["\u0275eld"](33,0,null,null,0,"img",[["alt","Generic placeholder image"],["class","d-flex align-self-center mr-3"],["src","http://i.huffpost.com/gadgets/slideshows/461162/slide_461162_6224974_sq50.jpg"]],null,null,null,null,null)),(l()(),e["\u0275eld"](34,0,null,null,7,"div",[["class","media-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](35,0,null,null,1,"h5",[["class","mt-0 mb-1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["John Smith"])),(l()(),e["\u0275eld"](37,0,null,null,2,"p",[["class","small text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](38,0,null,null,0,"i",[["class","fa fa-clock-o"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Yesterday at 4:32 PM"])),(l()(),e["\u0275eld"](40,0,null,null,1,"p",[["class","last"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur..."])),(l()(),e["\u0275eld"](42,0,null,null,9,"li",[["class","media"]],null,null,null,null,null)),(l()(),e["\u0275eld"](43,0,null,null,0,"img",[["alt","Generic placeholder image"],["class","d-flex align-self-center mr-3"],["src","http://i.huffpost.com/gadgets/slideshows/461162/slide_461162_6224974_sq50.jpg"]],null,null,null,null,null)),(l()(),e["\u0275eld"](44,0,null,null,7,"div",[["class","media-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](45,0,null,null,1,"h5",[["class","mt-0 mb-1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["John Smith"])),(l()(),e["\u0275eld"](47,0,null,null,2,"p",[["class","small text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](48,0,null,null,0,"i",[["class","fa fa-clock-o"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Yesterday at 4:32 PM"])),(l()(),e["\u0275eld"](50,0,null,null,1,"p",[["class","last"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur..."])),(l()(),e["\u0275eld"](52,0,null,null,9,"li",[["class","media"]],null,null,null,null,null)),(l()(),e["\u0275eld"](53,0,null,null,0,"img",[["alt","Generic placeholder image"],["class","d-flex align-self-center mr-3"],["src","http://i.huffpost.com/gadgets/slideshows/461162/slide_461162_6224974_sq50.jpg"]],null,null,null,null,null)),(l()(),e["\u0275eld"](54,0,null,null,7,"div",[["class","media-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](55,0,null,null,1,"h5",[["class","mt-0 mb-1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["John Smith"])),(l()(),e["\u0275eld"](57,0,null,null,2,"p",[["class","small text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](58,0,null,null,0,"i",[["class","fa fa-clock-o"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Yesterday at 4:32 PM"])),(l()(),e["\u0275eld"](60,0,null,null,1,"p",[["class","last"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur..."])),(l()(),e["\u0275eld"](62,0,null,null,31,"li",[["class","nav-item dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(l,n,u){var t=!0;return"keyup.esc"===n&&(t=!1!==e["\u0275nov"](l,63).closeFromOutsideEsc()&&t),"document:click"===n&&(t=!1!==e["\u0275nov"](l,63).closeFromClick(u)&&t),t},null,null)),e["\u0275did"](63,212992,null,2,a.a,[r.a,e.NgZone],null,null),e["\u0275qud"](335544320,3,{_menu:0}),e["\u0275qud"](335544320,4,{_anchor:0}),(l()(),e["\u0275eld"](66,0,null,null,6,"a",[["aria-haspopup","true"],["class","nav-link dropdown-toggle"],["href","javascript:void(0)"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,67).toggleOpen()&&t),t},null,null)),e["\u0275did"](67,16384,null,0,a.d,[a.a,e.ElementRef],null,null),e["\u0275prd"](2048,[[4,4]],a.b,null,[a.d]),(l()(),e["\u0275eld"](69,0,null,null,0,"i",[["class","fa fa-bell"]],null,null,null,null,null)),(l()(),e["\u0275eld"](70,0,null,null,0,"b",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](71,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["(current)"])),(l()(),e["\u0275eld"](73,0,null,null,20,"div",[["class","dropdown-menu-right"],["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),e["\u0275did"](74,16384,[[3,4]],0,a.c,[a.a,e.ElementRef,e.Renderer2],null,null),(l()(),e["\u0275eld"](75,0,null,null,4,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](76,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](78,0,null,null,1,"span",[["class","badge badge-info"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["6"])),(l()(),e["\u0275eld"](80,0,null,null,4,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](81,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](83,0,null,null,1,"span",[["class","badge badge-info"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 13"])),(l()(),e["\u0275eld"](85,0,null,null,4,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](86,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](88,0,null,null,1,"span",[["class","badge badge-info"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 45"])),(l()(),e["\u0275eld"](90,0,null,null,0,"li",[["class","dropdown-divider"]],null,null,null,null,null)),(l()(),e["\u0275eld"](91,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](92,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](94,0,null,null,36,"li",[["class","nav-item dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(l,n,u){var t=!0;return"keyup.esc"===n&&(t=!1!==e["\u0275nov"](l,95).closeFromOutsideEsc()&&t),"document:click"===n&&(t=!1!==e["\u0275nov"](l,95).closeFromClick(u)&&t),t},null,null)),e["\u0275did"](95,212992,null,2,a.a,[r.a,e.NgZone],null,null),e["\u0275qud"](335544320,5,{_menu:0}),e["\u0275qud"](335544320,6,{_anchor:0}),(l()(),e["\u0275eld"](98,0,null,null,6,"a",[["aria-haspopup","true"],["class","nav-link dropdown-toggle"],["href","javascript:void(0)"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,99).toggleOpen()&&t),t},null,null)),e["\u0275did"](99,16384,null,0,a.d,[a.a,e.ElementRef],null,null),e["\u0275prd"](2048,[[6,4]],a.b,null,[a.d]),(l()(),e["\u0275eld"](101,0,null,null,0,"i",[["class","fa fa-language"]],null,null,null,null,null)),(l()(),e["\u0275ted"](102,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](104,0,null,null,0,"b",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](105,0,null,null,25,"div",[["class","dropdown-menu-right"],["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),e["\u0275did"](106,16384,[[5,4]],0,a.c,[a.a,e.ElementRef,e.Renderer2],null,null),(l()(),e["\u0275eld"](107,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("en")&&e),e},null,null)),(l()(),e["\u0275ted"](108,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](110,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("fr")&&e),e},null,null)),(l()(),e["\u0275ted"](111,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](113,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("ur")&&e),e},null,null)),(l()(),e["\u0275ted"](114,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](116,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("es")&&e),e},null,null)),(l()(),e["\u0275ted"](117,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](119,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("it")&&e),e},null,null)),(l()(),e["\u0275ted"](120,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](122,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("fa")&&e),e},null,null)),(l()(),e["\u0275ted"](123,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](125,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("de")&&e),e},null,null)),(l()(),e["\u0275ted"](126,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](128,0,null,null,2,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("zh-CHS")&&e),e},null,null)),(l()(),e["\u0275ted"](129,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](131,0,null,null,29,"li",[["class","nav-item dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(l,n,u){var t=!0;return"keyup.esc"===n&&(t=!1!==e["\u0275nov"](l,132).closeFromOutsideEsc()&&t),"document:click"===n&&(t=!1!==e["\u0275nov"](l,132).closeFromClick(u)&&t),t},null,null)),e["\u0275did"](132,212992,null,2,a.a,[r.a,e.NgZone],null,null),e["\u0275qud"](335544320,7,{_menu:0}),e["\u0275qud"](335544320,8,{_anchor:0}),(l()(),e["\u0275eld"](135,0,null,null,5,"a",[["aria-haspopup","true"],["class","nav-link dropdown-toggle"],["href","javascript:void(0)"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,136).toggleOpen()&&t),t},null,null)),e["\u0275did"](136,16384,null,0,a.d,[a.a,e.ElementRef],null,null),e["\u0275prd"](2048,[[8,4]],a.b,null,[a.d]),(l()(),e["\u0275eld"](138,0,null,null,0,"i",[["class","fa fa-user"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" John Smith "])),(l()(),e["\u0275eld"](140,0,null,null,0,"b",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](141,0,null,null,19,"div",[["class","dropdown-menu-right"],["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),e["\u0275did"](142,16384,[[7,4]],0,a.c,[a.a,e.ElementRef,e.Renderer2],null,null),(l()(),e["\u0275eld"](143,0,null,null,3,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](144,0,null,null,0,"i",[["class","fa fa-fw fa-user"]],null,null,null,null,null)),(l()(),e["\u0275ted"](145,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](147,0,null,null,3,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](148,0,null,null,0,"i",[["class","fa fa-fw fa-envelope"]],null,null,null,null,null)),(l()(),e["\u0275ted"](149,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](151,0,null,null,3,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](152,0,null,null,0,"i",[["class","fa fa-fw fa-gear"]],null,null,null,null,null)),(l()(),e["\u0275ted"](153,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](155,0,null,null,5,"a",[["class","dropdown-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0,o=l.component;return"click"===n&&(t=!1!==e["\u0275nov"](l,156).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),"click"===n&&(t=!1!==o.onLoggedout()&&t),t},null,null)),e["\u0275did"](156,671744,null,0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](157,1),(l()(),e["\u0275eld"](158,0,null,null,0,"i",[["class","fa fa-fw fa-power-off"]],null,null,null,null,null)),(l()(),e["\u0275ted"](159,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef])],function(l,n){l(n,20,0),l(n,63,0),l(n,95,0),l(n,132,0),l(n,156,0,l(n,157,0,"/login"))},function(l,n){l(n,7,0,e["\u0275inlineInterpolate"](1,"",e["\u0275unv"](n,7,0,e["\u0275nov"](n,8).transform("Search")),"")),l(n,12,0,e["\u0275unv"](n,12,0,e["\u0275nov"](n,13).transform("Download Now"))),l(n,19,0,e["\u0275nov"](n,20).isOpen()),l(n,23,0,e["\u0275nov"](n,24).dropdown.isOpen()),l(n,30,0,!0,e["\u0275nov"](n,31).dropdown.isOpen(),e["\u0275nov"](n,31).placement),l(n,62,0,e["\u0275nov"](n,63).isOpen()),l(n,66,0,e["\u0275nov"](n,67).dropdown.isOpen()),l(n,73,0,!0,e["\u0275nov"](n,74).dropdown.isOpen(),e["\u0275nov"](n,74).placement),l(n,76,0,e["\u0275unv"](n,76,0,e["\u0275nov"](n,77).transform("Pending Task"))),l(n,81,0,e["\u0275unv"](n,81,0,e["\u0275nov"](n,82).transform("In queue"))),l(n,86,0,e["\u0275unv"](n,86,0,e["\u0275nov"](n,87).transform("Mail"))),l(n,92,0,e["\u0275unv"](n,92,0,e["\u0275nov"](n,93).transform("View All"))),l(n,94,0,e["\u0275nov"](n,95).isOpen()),l(n,98,0,e["\u0275nov"](n,99).dropdown.isOpen()),l(n,102,0,e["\u0275unv"](n,102,0,e["\u0275nov"](n,103).transform("Language"))),l(n,105,0,!0,e["\u0275nov"](n,106).dropdown.isOpen(),e["\u0275nov"](n,106).placement),l(n,108,0,e["\u0275unv"](n,108,0,e["\u0275nov"](n,109).transform("English"))),l(n,111,0,e["\u0275unv"](n,111,0,e["\u0275nov"](n,112).transform("French"))),l(n,114,0,e["\u0275unv"](n,114,0,e["\u0275nov"](n,115).transform("Urdu"))),l(n,117,0,e["\u0275unv"](n,117,0,e["\u0275nov"](n,118).transform("Spanish"))),l(n,120,0,e["\u0275unv"](n,120,0,e["\u0275nov"](n,121).transform("Italian"))),l(n,123,0,e["\u0275unv"](n,123,0,e["\u0275nov"](n,124).transform("Farsi"))),l(n,126,0,e["\u0275unv"](n,126,0,e["\u0275nov"](n,127).transform("German"))),l(n,129,0,e["\u0275unv"](n,129,0,e["\u0275nov"](n,130).transform("Simplified Chinese"))),l(n,131,0,e["\u0275nov"](n,132).isOpen()),l(n,135,0,e["\u0275nov"](n,136).dropdown.isOpen()),l(n,141,0,!0,e["\u0275nov"](n,142).dropdown.isOpen(),e["\u0275nov"](n,142).placement),l(n,145,0,e["\u0275unv"](n,145,0,e["\u0275nov"](n,146).transform("Profile"))),l(n,149,0,e["\u0275unv"](n,149,0,e["\u0275nov"](n,150).transform("Inbox"))),l(n,153,0,e["\u0275unv"](n,153,0,e["\u0275nov"](n,154).transform("Settings"))),l(n,155,0,e["\u0275nov"](n,156).target,e["\u0275nov"](n,156).href),l(n,159,0,e["\u0275unv"](n,159,0,e["\u0275nov"](n,160).transform("Log Out")))})}var g=function(){function l(l,n){var u=this;this.translate=l,this.router=n,this.isActive=!1,this.showMenu="",this.pushRightClass="push-right",this.translate.addLangs(["en","fr","ur","es","it","fa","de"]),this.translate.setDefaultLang("en");var e=this.translate.getBrowserLang();this.translate.use(e.match(/en|fr|ur|es|it|fa|de/)?e:"en"),this.router.events.subscribe(function(l){l instanceof i.d&&window.innerWidth<=992&&u.isToggled()&&u.toggleSidebar()})}return l.prototype.eventCalled=function(){this.isActive=!this.isActive},l.prototype.addExpandClass=function(l){this.showMenu=l===this.showMenu?"0":l},l.prototype.isToggled=function(){return document.querySelector("body").classList.contains(this.pushRightClass)},l.prototype.toggleSidebar=function(){document.querySelector("body").classList.toggle(this.pushRightClass)},l.prototype.rltAndLtr=function(){document.querySelector("body").classList.toggle("rtl")},l.prototype.changeLang=function(l){this.translate.use(l)},l.prototype.onLoggedout=function(){localStorage.removeItem("isLoggedin")},l}(),f=e["\u0275crt"]({encapsulation:0,styles:[[".sidebar[_ngcontent-%COMP%]{border-radius:0;position:fixed;z-index:1000;top:56px;left:235px;width:235px;margin-left:-235px;border:none;overflow-y:auto;background-color:#222;bottom:0;overflow-x:hidden;padding-bottom:40px;transition:all .2s ease-in-out}.sidebar[_ngcontent-%COMP%] .list-group[_ngcontent-%COMP%] a.list-group-item[_ngcontent-%COMP%]{background:#222;border:0;border-radius:0;color:#999;text-decoration:none}.sidebar[_ngcontent-%COMP%] .list-group[_ngcontent-%COMP%] a.list-group-item[_ngcontent-%COMP%] .fa[_ngcontent-%COMP%]{margin-right:10px}.sidebar[_ngcontent-%COMP%] .list-group[_ngcontent-%COMP%] a.router-link-active[_ngcontent-%COMP%], .sidebar[_ngcontent-%COMP%] .list-group[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{background:#151515;color:#fff}.sidebar[_ngcontent-%COMP%] .list-group[_ngcontent-%COMP%] .header-fields[_ngcontent-%COMP%]{padding-top:10px}.sidebar[_ngcontent-%COMP%] .list-group[_ngcontent-%COMP%] .header-fields[_ngcontent-%COMP%] > .list-group-item[_ngcontent-%COMP%]:first-child{border-top:1px solid rgba(255,255,255,.2)}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] [_ngcontent-%COMP%]:focus{border-radius:none;border:none}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-title[_ngcontent-%COMP%]{font-size:1rem;height:50px;margin-bottom:0}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-title[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#999;text-decoration:none;font-weight:400;background:#222}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-title[_ngcontent-%COMP%] a[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{position:relative;display:block;padding:1rem 1.5rem .75rem}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-title[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:focus, .sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-title[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#fff;outline:0;outline-offset:-2px}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-title[_ngcontent-%COMP%]:hover{background:#151515}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-collapse[_ngcontent-%COMP%]{border-radious:0;border:none}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-collapse[_ngcontent-%COMP%] .panel-body[_ngcontent-%COMP%] .list-group-item[_ngcontent-%COMP%]{border-radius:0;background-color:#222;border:0 solid transparent}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-collapse[_ngcontent-%COMP%] .panel-body[_ngcontent-%COMP%] .list-group-item[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#999}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-collapse[_ngcontent-%COMP%] .panel-body[_ngcontent-%COMP%] .list-group-item[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#fff}.sidebar[_ngcontent-%COMP%] .sidebar-dropdown[_ngcontent-%COMP%] .panel-collapse[_ngcontent-%COMP%] .panel-body[_ngcontent-%COMP%] .list-group-item[_ngcontent-%COMP%]:hover{background:#151515}.nested-menu[_ngcontent-%COMP%] .list-group-item[_ngcontent-%COMP%]{cursor:pointer}.nested-menu[_ngcontent-%COMP%] .nested[_ngcontent-%COMP%]{list-style-type:none}.nested-menu[_ngcontent-%COMP%] ul.submenu[_ngcontent-%COMP%]{display:none;height:0}.nested-menu[_ngcontent-%COMP%] .expand[_ngcontent-%COMP%] ul.submenu[_ngcontent-%COMP%]{display:block;list-style-type:none;height:auto}.nested-menu[_ngcontent-%COMP%] .expand[_ngcontent-%COMP%] ul.submenu[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#fff;padding:10px;display:block}@media screen and (max-width:992px){.sidebar[_ngcontent-%COMP%]{top:54px;left:0}}@media (min-width:992px){.header-fields[_ngcontent-%COMP%]{display:none}}[_ngcontent-%COMP%]::-webkit-scrollbar{width:8px}[_ngcontent-%COMP%]::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 0 #fff;border-radius:3px}[_ngcontent-%COMP%]::-webkit-scrollbar-thumb{border-radius:3px;-webkit-box-shadow:inset 0 0 3px #fff}"]],data:{}});function m(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,183,"nav",[["class","sidebar"]],null,null,null,null,null)),e["\u0275did"](1,278528,null,0,d.k,[e.IterableDiffers,e.KeyValueDiffers,e.ElementRef,e.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),e["\u0275pod"](2,{sidebarPushRight:0}),(l()(),e["\u0275eld"](3,0,null,null,180,"div",[["class","list-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](4,0,null,null,8,"a",[["class","list-group-item"],["routerLink","/dashboard"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,5).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](5,671744,[[2,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275did"](6,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,1,{links:1}),e["\u0275qud"](603979776,2,{linksWithHrefs:1}),e["\u0275pad"](9,1),(l()(),e["\u0275eld"](10,0,null,null,0,"i",[["class","fa fa-fw fa-dashboard"]],null,null,null,null,null)),(l()(),e["\u0275ted"](11,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](13,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,14).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](14,671744,[[4,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](15,1),e["\u0275did"](16,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,3,{links:1}),e["\u0275qud"](603979776,4,{linksWithHrefs:1}),e["\u0275pad"](19,1),(l()(),e["\u0275eld"](20,0,null,null,0,"i",[["class","fa fa-fw fa-bar-chart-o"]],null,null,null,null,null)),(l()(),e["\u0275ted"](21,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](23,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,24).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](24,671744,[[6,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](25,1),e["\u0275did"](26,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,5,{links:1}),e["\u0275qud"](603979776,6,{linksWithHrefs:1}),e["\u0275pad"](29,1),(l()(),e["\u0275eld"](30,0,null,null,0,"i",[["class","fa fa-fw fa-table"]],null,null,null,null,null)),(l()(),e["\u0275ted"](31,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](33,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,34).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](34,671744,[[8,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](35,1),e["\u0275did"](36,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,7,{links:1}),e["\u0275qud"](603979776,8,{linksWithHrefs:1}),e["\u0275pad"](39,1),(l()(),e["\u0275eld"](40,0,null,null,0,"i",[["class","fa fa-fw fa-edit"]],null,null,null,null,null)),(l()(),e["\u0275ted"](41,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](43,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,44).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](44,671744,[[10,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](45,1),e["\u0275did"](46,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,9,{links:1}),e["\u0275qud"](603979776,10,{linksWithHrefs:1}),e["\u0275pad"](49,1),(l()(),e["\u0275eld"](50,0,null,null,0,"i",[["class","fa fa-fw fa-desktop"]],null,null,null,null,null)),(l()(),e["\u0275ted"](51,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](53,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,54).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](54,671744,[[12,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](55,1),e["\u0275did"](56,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,11,{links:1}),e["\u0275qud"](603979776,12,{linksWithHrefs:1}),e["\u0275pad"](59,1),(l()(),e["\u0275eld"](60,0,null,null,0,"i",[["class","fa fa-fw fa-wrench"]],null,null,null,null,null)),(l()(),e["\u0275ted"](61,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](63,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,64).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](64,671744,[[14,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](65,1),e["\u0275did"](66,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,13,{links:1}),e["\u0275qud"](603979776,14,{linksWithHrefs:1}),e["\u0275pad"](69,1),(l()(),e["\u0275eld"](70,0,null,null,0,"i",[["class","fa fa-th-list"]],null,null,null,null,null)),(l()(),e["\u0275ted"](71,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](73,0,null,null,22,"div",[["class","nested-menu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](74,0,null,null,4,"a",[["class","list-group-item"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.addExpandClass("pages")&&e),e},null,null)),(l()(),e["\u0275eld"](75,0,null,null,3,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](76,0,null,null,0,"i",[["class","fa fa-plus"]],null,null,null,null,null)),(l()(),e["\u0275ted"](77,null,["\xa0 ",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](79,0,null,null,16,"li",[["class","nested"]],[[2,"expand",null]],null,null,null,null)),(l()(),e["\u0275eld"](80,0,null,null,15,"ul",[["class","submenu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](81,0,null,null,4,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](82,0,null,null,3,"a",[["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](83,0,null,null,2,"span",[],null,null,null,null,null)),(l()(),e["\u0275ted"](84,null,["",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](86,0,null,null,4,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](87,0,null,null,3,"a",[["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](88,0,null,null,2,"span",[],null,null,null,null,null)),(l()(),e["\u0275ted"](89,null,["",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](91,0,null,null,4,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](92,0,null,null,3,"a",[["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](93,0,null,null,2,"span",[],null,null,null,null,null)),(l()(),e["\u0275ted"](94,null,["",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](96,0,null,null,9,"a",[["class","list-group-item"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0;return"click"===n&&(t=!1!==e["\u0275nov"](l,97).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),t},null,null)),e["\u0275did"](97,671744,[[16,4]],0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](98,1),e["\u0275did"](99,1720320,null,2,i.m,[i.l,e.ElementRef,e.Renderer2,e.ChangeDetectorRef],{routerLinkActive:[0,"routerLinkActive"]},null),e["\u0275qud"](603979776,15,{links:1}),e["\u0275qud"](603979776,16,{linksWithHrefs:1}),e["\u0275pad"](102,1),(l()(),e["\u0275eld"](103,0,null,null,0,"i",[["class","fa fa-file-o"]],null,null,null,null,null)),(l()(),e["\u0275ted"](104,null,["\xa0"," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](106,0,null,null,2,"a",[["class","list-group-item more-themes"],["href","http://www.strapui.com/"]],null,null,null,null,null)),(l()(),e["\u0275ted"](107,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](109,0,null,null,74,"div",[["class","header-fields"]],null,null,null,null,null)),(l()(),e["\u0275eld"](110,0,null,null,3,"a",[["class","list-group-item"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.rltAndLtr()&&e),e},null,null)),(l()(),e["\u0275eld"](111,0,null,null,2,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](112,0,null,null,0,"i",[["class","fa fa-arrows-h"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["\xa0 RTL/LTR"])),(l()(),e["\u0275eld"](114,0,null,null,36,"div",[["class","nested-menu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](115,0,null,null,5,"a",[["class","list-group-item"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.addExpandClass("languages")&&e),e},null,null)),(l()(),e["\u0275eld"](116,0,null,null,4,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](117,0,null,null,0,"i",[["class","fa fa-language"]],null,null,null,null,null)),(l()(),e["\u0275ted"](118,null,["\xa0 "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](120,0,null,null,0,"b",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](121,0,null,null,29,"li",[["class","nested"]],[[2,"expand",null]],null,null,null,null)),(l()(),e["\u0275eld"](122,0,null,null,28,"ul",[["class","submenu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](123,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](124,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("en")&&e),e},null,null)),(l()(),e["\u0275ted"](125,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](127,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](128,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("fr")&&e),e},null,null)),(l()(),e["\u0275ted"](129,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](131,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](132,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("ur")&&e),e},null,null)),(l()(),e["\u0275ted"](133,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](135,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](136,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("es")&&e),e},null,null)),(l()(),e["\u0275ted"](137,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](139,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](140,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("it")&&e),e},null,null)),(l()(),e["\u0275ted"](141,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](143,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](144,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("fa")&&e),e},null,null)),(l()(),e["\u0275ted"](145,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](147,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](148,0,null,null,2,"a",[["href","javascript:void(0)"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.changeLang("de")&&e),e},null,null)),(l()(),e["\u0275ted"](149,null,[" "," "])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](151,0,null,null,32,"div",[["class","nested-menu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](152,0,null,null,3,"a",[["class","list-group-item"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.addExpandClass("profile")&&e),e},null,null)),(l()(),e["\u0275eld"](153,0,null,null,2,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](154,0,null,null,0,"i",[["class","fa fa-user"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["\xa0 John Smith"])),(l()(),e["\u0275eld"](156,0,null,null,27,"li",[["class","nested"]],[[2,"expand",null]],null,null,null,null)),(l()(),e["\u0275eld"](157,0,null,null,26,"ul",[["class","submenu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](158,0,null,null,5,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](159,0,null,null,4,"a",[["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](160,0,null,null,3,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](161,0,null,null,0,"i",[["class","fa fa-fw fa-user"]],null,null,null,null,null)),(l()(),e["\u0275ted"](162,null,[" ",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](164,0,null,null,5,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](165,0,null,null,4,"a",[["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](166,0,null,null,3,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](167,0,null,null,0,"i",[["class","fa fa-fw fa-envelope"]],null,null,null,null,null)),(l()(),e["\u0275ted"](168,null,[" ",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](170,0,null,null,5,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](171,0,null,null,4,"a",[["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](172,0,null,null,3,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](173,0,null,null,0,"i",[["class","fa fa-fw fa-gear"]],null,null,null,null,null)),(l()(),e["\u0275ted"](174,null,[" ",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef]),(l()(),e["\u0275eld"](176,0,null,null,7,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](177,0,null,null,6,"a",[],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(l,n,u){var t=!0,o=l.component;return"click"===n&&(t=!1!==e["\u0275nov"](l,178).onClick(u.button,u.ctrlKey,u.metaKey,u.shiftKey)&&t),"click"===n&&(t=!1!==o.onLoggedout()&&t),t},null,null)),e["\u0275did"](178,671744,null,0,i.n,[i.l,i.a,d.j],{routerLink:[0,"routerLink"]},null),e["\u0275pad"](179,1),(l()(),e["\u0275eld"](180,0,null,null,3,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](181,0,null,null,0,"i",[["class","fa fa-fw fa-power-off"]],null,null,null,null,null)),(l()(),e["\u0275ted"](182,null,[" ",""])),e["\u0275pid"](131072,o.i,[o.j,e.ChangeDetectorRef])],function(l,n){l(n,1,0,"sidebar",l(n,2,0,n.component.isActive)),l(n,5,0,"/dashboard"),l(n,6,0,l(n,9,0,"router-link-active")),l(n,14,0,l(n,15,0,"/charts")),l(n,16,0,l(n,19,0,"router-link-active")),l(n,24,0,l(n,25,0,"/tables")),l(n,26,0,l(n,29,0,"router-link-active")),l(n,34,0,l(n,35,0,"/forms")),l(n,36,0,l(n,39,0,"router-link-active")),l(n,44,0,l(n,45,0,"/bs-element")),l(n,46,0,l(n,49,0,"router-link-active")),l(n,54,0,l(n,55,0,"/grid")),l(n,56,0,l(n,59,0,"router-link-active")),l(n,64,0,l(n,65,0,"/components")),l(n,66,0,l(n,69,0,"router-link-active")),l(n,97,0,l(n,98,0,"/blank-page")),l(n,99,0,l(n,102,0,"router-link-active")),l(n,178,0,l(n,179,0,"/login"))},function(l,n){var u=n.component;l(n,4,0,e["\u0275nov"](n,5).target,e["\u0275nov"](n,5).href),l(n,11,0,e["\u0275unv"](n,11,0,e["\u0275nov"](n,12).transform("Dashboard"))),l(n,13,0,e["\u0275nov"](n,14).target,e["\u0275nov"](n,14).href),l(n,21,0,e["\u0275unv"](n,21,0,e["\u0275nov"](n,22).transform("Charts"))),l(n,23,0,e["\u0275nov"](n,24).target,e["\u0275nov"](n,24).href),l(n,31,0,e["\u0275unv"](n,31,0,e["\u0275nov"](n,32).transform("Tables"))),l(n,33,0,e["\u0275nov"](n,34).target,e["\u0275nov"](n,34).href),l(n,41,0,e["\u0275unv"](n,41,0,e["\u0275nov"](n,42).transform("Forms"))),l(n,43,0,e["\u0275nov"](n,44).target,e["\u0275nov"](n,44).href),l(n,51,0,e["\u0275unv"](n,51,0,e["\u0275nov"](n,52).transform("Bootstrap Element"))),l(n,53,0,e["\u0275nov"](n,54).target,e["\u0275nov"](n,54).href),l(n,61,0,e["\u0275unv"](n,61,0,e["\u0275nov"](n,62).transform("Bootstrap Grid"))),l(n,63,0,e["\u0275nov"](n,64).target,e["\u0275nov"](n,64).href),l(n,71,0,e["\u0275unv"](n,71,0,e["\u0275nov"](n,72).transform("Component"))),l(n,77,0,e["\u0275unv"](n,77,0,e["\u0275nov"](n,78).transform("Menu"))),l(n,79,0,"pages"===u.showMenu),l(n,84,0,e["\u0275unv"](n,84,0,e["\u0275nov"](n,85).transform("Submenu"))),l(n,89,0,e["\u0275unv"](n,89,0,e["\u0275nov"](n,90).transform("Submenu"))),l(n,94,0,e["\u0275unv"](n,94,0,e["\u0275nov"](n,95).transform("Submenu"))),l(n,96,0,e["\u0275nov"](n,97).target,e["\u0275nov"](n,97).href),l(n,104,0,e["\u0275unv"](n,104,0,e["\u0275nov"](n,105).transform("Blank Page"))),l(n,107,0,e["\u0275unv"](n,107,0,e["\u0275nov"](n,108).transform("More Theme"))),l(n,118,0,e["\u0275unv"](n,118,0,e["\u0275nov"](n,119).transform("Language"))),l(n,121,0,"languages"===u.showMenu),l(n,125,0,e["\u0275unv"](n,125,0,e["\u0275nov"](n,126).transform("English"))),l(n,129,0,e["\u0275unv"](n,129,0,e["\u0275nov"](n,130).transform("French"))),l(n,133,0,e["\u0275unv"](n,133,0,e["\u0275nov"](n,134).transform("Urdu"))),l(n,137,0,e["\u0275unv"](n,137,0,e["\u0275nov"](n,138).transform("Spanish"))),l(n,141,0,e["\u0275unv"](n,141,0,e["\u0275nov"](n,142).transform("Italian"))),l(n,145,0,e["\u0275unv"](n,145,0,e["\u0275nov"](n,146).transform("Farsi"))),l(n,149,0,e["\u0275unv"](n,149,0,e["\u0275nov"](n,150).transform("German"))),l(n,156,0,"profile"===u.showMenu),l(n,162,0,e["\u0275unv"](n,162,0,e["\u0275nov"](n,163).transform("Profile"))),l(n,168,0,e["\u0275unv"](n,168,0,e["\u0275nov"](n,169).transform("Inbox"))),l(n,174,0,e["\u0275unv"](n,174,0,e["\u0275nov"](n,175).transform("Settings"))),l(n,177,0,e["\u0275nov"](n,178).target,e["\u0275nov"](n,178).href),l(n,182,0,e["\u0275unv"](n,182,0,e["\u0275nov"](n,183).transform("Log Out")))})}var v=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),h=e["\u0275crt"]({encapsulation:0,styles:[[".main-container[_ngcontent-%COMP%]{margin-top:56px;margin-left:235px;padding:15px;-ms-overflow-x:hidden;overflow-x:hidden;overflow-y:scroll;position:relative;overflow:hidden}@media screen and (max-width:992px){.main-container[_ngcontent-%COMP%]{margin-left:0!important}}"]],data:{}});function C(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,1,"app-header",[],null,null,null,p,c)),e["\u0275did"](1,114688,null,0,s,[o.j,i.l],null,null),(l()(),e["\u0275eld"](2,0,null,null,1,"app-sidebar",[],null,null,null,m,f)),e["\u0275did"](3,49152,null,0,g,[o.j,i.l],null,null),(l()(),e["\u0275eld"](4,0,null,null,2,"section",[["class","main-container"]],null,null,null,null,null)),(l()(),e["\u0275eld"](5,16777216,null,null,1,"router-outlet",[],null,null,null,null,null)),e["\u0275did"](6,212992,null,0,i.p,[i.b,e.ViewContainerRef,e.ComponentFactoryResolver,[8,null],e.ChangeDetectorRef],null,null)],function(l,n){l(n,1,0),l(n,6,0)},null)}var b=e["\u0275ccf"]("app-layout",v,function(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,1,"app-layout",[],null,null,null,C,h)),e["\u0275did"](1,114688,null,0,v,[],null,null)],function(l,n){l(n,1,0)},null)},{},{},[]),k=function(){},M=u("C9m0");u.d(n,"LayoutModuleNgFactory",function(){return O});var O=e["\u0275cmf"](t,[],function(l){return e["\u0275mod"]([e["\u0275mpd"](512,e.ComponentFactoryResolver,e["\u0275CodegenComponentFactoryResolver"],[[8,[b]],[3,e.ComponentFactoryResolver],e.NgModuleRef]),e["\u0275mpd"](4608,d.o,d.n,[e.LOCALE_ID,[2,d.w]]),e["\u0275mpd"](4608,r.a,r.a,[]),e["\u0275mpd"](1073742336,d.b,d.b,[]),e["\u0275mpd"](1073742336,i.o,i.o,[[2,i.t],[2,i.l]]),e["\u0275mpd"](1073742336,k,k,[]),e["\u0275mpd"](1073742336,o.g,o.g,[]),e["\u0275mpd"](1073742336,M.a,M.a,[]),e["\u0275mpd"](1073742336,t,t,[]),e["\u0275mpd"](1024,i.j,function(){return[[{path:"",component:v,children:[{path:"",redirectTo:"dashboard"},{path:"dashboard",loadChildren:"./dashboard/dashboard.module#DashboardModule"},{path:"charts",loadChildren:"./charts/charts.module#ChartsModule"},{path:"tables",loadChildren:"./tables/tables.module#TablesModule"},{path:"forms",loadChildren:"./form/form.module#FormModule"},{path:"bs-element",loadChildren:"./bs-element/bs-element.module#BsElementModule"},{path:"grid",loadChildren:"./grid/grid.module#GridModule"},{path:"components",loadChildren:"./bs-component/bs-component.module#BsComponentModule"},{path:"blank-page",loadChildren:"./blank-page/blank-page.module#BlankPageModule"}]}]]},[])])})}}]); diff --git a/dist/2.d5d66fb565cc35cb25a4.js b/dist/2.d5d66fb565cc35cb25a4.js deleted file mode 100644 index e4775db09..000000000 --- a/dist/2.d5d66fb565cc35cb25a4.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{oW3c:function(n,e,t){"use strict";t.r(e);var l=t("CcnG"),o=function(){},i=t("rMXk"),u=t("3zLz");function r(n){return parseInt(""+n,10)}function a(n){return void 0!==n&&null!==n?""+n:""}function s(n,e,t){return void 0===t&&(t=0),Math.max(Math.min(n,e),t)}function c(n){return!isNaN(r(n))}function d(n){return"number"==typeof n&&isFinite(n)&&Math.floor(n)===n}function p(n){return void 0!==n&&null!==n}function h(n){return c(n)?("0"+n).slice(-2):""}var f=function(){this.closeOthers=!1},m=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[f]}},n}(),g=t("bt6x"),v=function(){},b=t("mrSG"),y=t("0/uQ"),_=t("6blF"),w=t("isby"),C=t("G5J1"),O=t("zotm"),D=t("MGBS"),R=t("67Y/"),k=function(n){function e(e,t){var l=n.call(this,e)||this;l.sources=t,l.completed=0,l.haveValues=0;var o=t.length;l.values=new Array(o);for(var i=0;in?{max:{max:n,actual:e.value}}:null}},n.required=function(n){return E(n.value)?{required:!0}:null},n.requiredTrue=function(n){return!0===n.value?null:{required:!0}},n.email=function(n){return E(n.value)?null:S.test(n.value)?null:{email:!0}},n.minLength=function(n){return function(e){if(E(e.value))return null;var t=e.value?e.value.length:0;return tn?{maxlength:{requiredLength:n,actualLength:t}}:null}},n.pattern=function(e){return e?("string"==typeof e?(l="","^"!==e.charAt(0)&&(l+="^"),l+=e,"$"!==e.charAt(e.length-1)&&(l+="$"),t=new RegExp(l)):(l=e.toString(),t=e),function(n){if(E(n.value))return null;var e=n.value;return t.test(e)?null:{pattern:{requiredPattern:l,actualValue:e}}}):n.nullValidator;var t,l},n.nullValidator=function(n){return null},n.compose=function(n){if(!n)return null;var e=n.filter(I);return 0==e.length?null:function(n){return j(function(n,t){return e.map(function(e){return e(n)})}(n))}},n.composeAsync=function(n){if(!n)return null;var e=n.filter(I);return 0==e.length?null:function(n){return function n(){for(var e,t=[],l=0;l=0;--e)if(this._accessors[e][1]===n)return void this._accessors.splice(e,1)},n.prototype.select=function(n){var e=this;this._accessors.forEach(function(t){e._isSameGroup(t,n)&&t[1]!==n&&t[1].fireUncheck(n.value)})},n.prototype._isSameGroup=function(n,e){return!!n[0].control&&n[0]._parent===e._control._parent&&n[1].name===e.name},n}(),H=function(){function n(n,e,t,l){this._renderer=n,this._elementRef=e,this._registry=t,this._injector=l,this.onChange=function(){},this.onTouched=function(){}}return n.prototype.ngOnInit=function(){this._control=this._injector.get($),this._checkName(),this._registry.add(this._control,this)},n.prototype.ngOnDestroy=function(){this._registry.remove(this)},n.prototype.writeValue=function(n){this._state=n===this.value,this._renderer.setProperty(this._elementRef.nativeElement,"checked",this._state)},n.prototype.registerOnChange=function(n){var e=this;this._fn=n,this.onChange=function(){n(e.value),e._registry.select(e)}},n.prototype.fireUncheck=function(n){this.writeValue(n)},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.setDisabledState=function(n){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",n)},n.prototype._checkName=function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)},n.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 ')},n}(),K=function(){function n(n,e){this._renderer=n,this._elementRef=e,this.onChange=function(n){},this.onTouched=function(){}}return n.prototype.writeValue=function(n){this._renderer.setProperty(this._elementRef.nativeElement,"value",parseFloat(n))},n.prototype.registerOnChange=function(n){this.onChange=function(e){n(""==e?null:parseFloat(e))}},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.setDisabledState=function(n){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",n)},n}(),Z='\n
\n \n
\n\n In your class:\n\n this.myGroup = new FormGroup({\n firstName: new FormControl()\n });',Y='\n
\n
\n \n
\n
\n\n In your class:\n\n this.myGroup = new FormGroup({\n person: new FormGroup({ firstName: new FormControl() })\n });',J='\n
\n
\n \n
\n
',X=function(){function n(){}return n.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 "+Z)},n.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 '+Y+"\n\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\n\n "+J)},n.missingFormException=function(){throw new Error("formGroup expects a FormGroup instance. Please pass one in.\n\n Example:\n\n "+Z)},n.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 "+Y)},n.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 });')},n.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 ")},n.ngModelWarning=function(n){console.warn("\n It looks like you're using ngModel on the same form field as "+n+". \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"===n?"FormControlDirective":"FormControlName")+"#use-with-ngmodel\n ")},n}();function Q(n,e){return null==n?""+e:(e&&"object"==typeof e&&(e="Object"),(n+": "+e).slice(0,50))}var nn=function(){function n(n,e){this._renderer=n,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=function(n){},this.onTouched=function(){},this._compareWith=l["\u0275looseIdentical"]}return Object.defineProperty(n.prototype,"compareWith",{set:function(n){if("function"!=typeof n)throw new Error("compareWith must be a function, but received "+JSON.stringify(n));this._compareWith=n},enumerable:!0,configurable:!0}),n.prototype.writeValue=function(n){this.value=n;var e=this._getOptionId(n);null==e&&this._renderer.setProperty(this._elementRef.nativeElement,"selectedIndex",-1);var t=Q(e,n);this._renderer.setProperty(this._elementRef.nativeElement,"value",t)},n.prototype.registerOnChange=function(n){var e=this;this.onChange=function(t){e.value=e._getOptionValue(t),n(e.value)}},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.setDisabledState=function(n){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",n)},n.prototype._registerOption=function(){return(this._idCounter++).toString()},n.prototype._getOptionId=function(n){try{for(var e=Object(b.__values)(Array.from(this._optionMap.keys())),t=e.next();!t.done;t=e.next()){var l=t.value;if(this._compareWith(this._optionMap.get(l),n))return l}}catch(n){o={error:n}}finally{try{t&&!t.done&&(i=e.return)&&i.call(e)}finally{if(o)throw o.error}}return null;var o,i},n.prototype._getOptionValue=function(n){var e=function(n){return n.split(":")[0]}(n);return this._optionMap.has(e)?this._optionMap.get(e):n},n}(),en=function(){function n(n,e,t){this._element=n,this._renderer=e,this._select=t,this._select&&(this.id=this._select._registerOption())}return Object.defineProperty(n.prototype,"ngValue",{set:function(n){null!=this._select&&(this._select._optionMap.set(this.id,n),this._setElementValue(Q(this.id,n)),this._select.writeValue(this._select.value))},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"value",{set:function(n){this._setElementValue(n),this._select&&this._select.writeValue(this._select.value)},enumerable:!0,configurable:!0}),n.prototype._setElementValue=function(n){this._renderer.setProperty(this._element.nativeElement,"value",n)},n.prototype.ngOnDestroy=function(){this._select&&(this._select._optionMap.delete(this.id),this._select.writeValue(this._select.value))},n}();function tn(n,e){return null==n?""+e:("string"==typeof e&&(e="'"+e+"'"),e&&"object"==typeof e&&(e="Object"),(n+": "+e).slice(0,50))}var ln=function(){function n(n,e){this._renderer=n,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=function(n){},this.onTouched=function(){},this._compareWith=l["\u0275looseIdentical"]}return Object.defineProperty(n.prototype,"compareWith",{set:function(n){if("function"!=typeof n)throw new Error("compareWith must be a function, but received "+JSON.stringify(n));this._compareWith=n},enumerable:!0,configurable:!0}),n.prototype.writeValue=function(n){var e,t=this;if(this.value=n,Array.isArray(n)){var l=n.map(function(n){return t._getOptionId(n)});e=function(n,e){n._setSelected(l.indexOf(e.toString())>-1)}}else e=function(n,e){n._setSelected(!1)};this._optionMap.forEach(e)},n.prototype.registerOnChange=function(n){var e=this;this.onChange=function(t){var l=[];if(t.hasOwnProperty("selectedOptions"))for(var o=t.selectedOptions,i=0;i1?"path: '"+n.path.join(" -> ")+"'":n.path[0]?"name: '"+n.path+"'":"unspecified name attribute",new Error(e+" "+t)}function pn(n){return null!=n?T.compose(n.map(W)):null}function hn(n){return null!=n?T.composeAsync(n.map(B)):null}function fn(n,e){if(!n.hasOwnProperty("model"))return!1;var t=n.model;return!!t.isFirstChange()||!Object(l["\u0275looseIdentical"])(e,t.currentValue)}var mn=[N,K,q,nn,ln,H];function gn(n,e){n._syncPendingControls(),e.forEach(function(n){var e=n.control;"submit"===e.updateOn&&e._pendingChange&&(n.viewToModelUpdate(e._pendingValue),e._pendingChange=!1)})}function vn(n,e){if(!e)return null;Array.isArray(e)||dn(n,"Value accessor was not provided as an array for form control with");var t=void 0,l=void 0,o=void 0;return e.forEach(function(e){var i;e.constructor===L?t=e:(i=e,mn.some(function(n){return i.constructor===n})?(l&&dn(n,"More than one built-in value accessor matches form control with"),l=e):(o&&dn(n,"More than one custom value accessor matches form control with"),o=e))}),o||l||t||(dn(n,"No valid value accessor for form control with"),null)}function bn(n,e){var t=n.indexOf(e);t>-1&&n.splice(t,1)}var yn=function(n){function e(){return null!==n&&n.apply(this,arguments)||this}return Object(b.__extends)(e,n),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 un(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 pn(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return hn(this._asyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){},e}(V),_n=function(){function n(n){this._cd=n}return Object.defineProperty(n.prototype,"ngClassUntouched",{get:function(){return!!this._cd.control&&this._cd.control.untouched},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"ngClassTouched",{get:function(){return!!this._cd.control&&this._cd.control.touched},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"ngClassPristine",{get:function(){return!!this._cd.control&&this._cd.control.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"ngClassDirty",{get:function(){return!!this._cd.control&&this._cd.control.dirty},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"ngClassValid",{get:function(){return!!this._cd.control&&this._cd.control.valid},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"ngClassInvalid",{get:function(){return!!this._cd.control&&this._cd.control.invalid},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"ngClassPending",{get:function(){return!!this._cd.control&&this._cd.control.pending},enumerable:!0,configurable:!0}),n}(),wn=function(n){function e(e){return n.call(this,e)||this}return Object(b.__extends)(e,n),e}(_n),Cn=function(n){function e(e){return n.call(this,e)||this}return Object(b.__extends)(e,n),e}(_n);function On(n){var e=Rn(n)?n.validators:n;return Array.isArray(e)?pn(e):e||null}function Dn(n,e){var t=Rn(e)?e.asyncValidators:n;return Array.isArray(t)?hn(t):t||null}function Rn(n){return null!=n&&!Array.isArray(n)&&"object"==typeof n}var kn=function(){function n(n,e){this.validator=n,this.asyncValidator=e,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return Object.defineProperty(n.prototype,"parent",{get:function(){return this._parent},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"valid",{get:function(){return"VALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"invalid",{get:function(){return"INVALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"pending",{get:function(){return"PENDING"==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"disabled",{get:function(){return"DISABLED"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"enabled",{get:function(){return"DISABLED"!==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"dirty",{get:function(){return!this.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"untouched",{get:function(){return!this.touched},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"updateOn",{get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"},enumerable:!0,configurable:!0}),n.prototype.setValidators=function(n){this.validator=On(n)},n.prototype.setAsyncValidators=function(n){this.asyncValidator=Dn(n)},n.prototype.clearValidators=function(){this.validator=null},n.prototype.clearAsyncValidators=function(){this.asyncValidator=null},n.prototype.markAsTouched=function(n){void 0===n&&(n={}),this.touched=!0,this._parent&&!n.onlySelf&&this._parent.markAsTouched(n)},n.prototype.markAsUntouched=function(n){void 0===n&&(n={}),this.touched=!1,this._pendingTouched=!1,this._forEachChild(function(n){n.markAsUntouched({onlySelf:!0})}),this._parent&&!n.onlySelf&&this._parent._updateTouched(n)},n.prototype.markAsDirty=function(n){void 0===n&&(n={}),this.pristine=!1,this._parent&&!n.onlySelf&&this._parent.markAsDirty(n)},n.prototype.markAsPristine=function(n){void 0===n&&(n={}),this.pristine=!0,this._pendingDirty=!1,this._forEachChild(function(n){n.markAsPristine({onlySelf:!0})}),this._parent&&!n.onlySelf&&this._parent._updatePristine(n)},n.prototype.markAsPending=function(n){void 0===n&&(n={}),this.status="PENDING",!1!==n.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!n.onlySelf&&this._parent.markAsPending(n)},n.prototype.disable=function(n){void 0===n&&(n={}),this.status="DISABLED",this.errors=null,this._forEachChild(function(e){e.disable(Object(b.__assign)({},n,{onlySelf:!0}))}),this._updateValue(),!1!==n.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(n),this._onDisabledChange.forEach(function(n){return n(!0)})},n.prototype.enable=function(n){void 0===n&&(n={}),this.status="VALID",this._forEachChild(function(e){e.enable(Object(b.__assign)({},n,{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:n.emitEvent}),this._updateAncestors(n),this._onDisabledChange.forEach(function(n){return n(!1)})},n.prototype._updateAncestors=function(n){this._parent&&!n.onlySelf&&(this._parent.updateValueAndValidity(n),this._parent._updatePristine(),this._parent._updateTouched())},n.prototype.setParent=function(n){this._parent=n},n.prototype.updateValueAndValidity=function(n){void 0===n&&(n={}),this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),"VALID"!==this.status&&"PENDING"!==this.status||this._runAsyncValidator(n.emitEvent)),!1!==n.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!n.onlySelf&&this._parent.updateValueAndValidity(n)},n.prototype._updateTreeValidity=function(n){void 0===n&&(n={emitEvent:!0}),this._forEachChild(function(e){return e._updateTreeValidity(n)}),this.updateValueAndValidity({onlySelf:!0,emitEvent:n.emitEvent})},n.prototype._setInitialStatus=function(){this.status=this._allControlsDisabled()?"DISABLED":"VALID"},n.prototype._runValidator=function(){return this.validator?this.validator(this):null},n.prototype._runAsyncValidator=function(n){var e=this;if(this.asyncValidator){this.status="PENDING";var t=A(this.asyncValidator(this));this._asyncValidationSubscription=t.subscribe(function(t){return e.setErrors(t,{emitEvent:n})})}},n.prototype._cancelExistingSubscription=function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()},n.prototype.setErrors=function(n,e){void 0===e&&(e={}),this.errors=n,this._updateControlsErrors(!1!==e.emitEvent)},n.prototype.get=function(n){return function(n,e,t){return null==e?null:(e instanceof Array||(e=e.split(".")),e instanceof Array&&0===e.length?null:e.reduce(function(n,e){return n instanceof Pn?n.controls[e]||null:n instanceof Vn&&n.at(e)||null},n))}(this,n)},n.prototype.getError=function(n,e){var t=e?this.get(e):this;return t&&t.errors?t.errors[n]:null},n.prototype.hasError=function(n,e){return!!this.getError(n,e)},Object.defineProperty(n.prototype,"root",{get:function(){for(var n=this;n._parent;)n=n._parent;return n},enumerable:!0,configurable:!0}),n.prototype._updateControlsErrors=function(n){this.status=this._calculateStatus(),n&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(n)},n.prototype._initObservables=function(){this.valueChanges=new l.EventEmitter,this.statusChanges=new l.EventEmitter},n.prototype._calculateStatus=function(){return this._allControlsDisabled()?"DISABLED":this.errors?"INVALID":this._anyControlsHaveStatus("PENDING")?"PENDING":this._anyControlsHaveStatus("INVALID")?"INVALID":"VALID"},n.prototype._anyControlsHaveStatus=function(n){return this._anyControls(function(e){return e.status===n})},n.prototype._anyControlsDirty=function(){return this._anyControls(function(n){return n.dirty})},n.prototype._anyControlsTouched=function(){return this._anyControls(function(n){return n.touched})},n.prototype._updatePristine=function(n){void 0===n&&(n={}),this.pristine=!this._anyControlsDirty(),this._parent&&!n.onlySelf&&this._parent._updatePristine(n)},n.prototype._updateTouched=function(n){void 0===n&&(n={}),this.touched=this._anyControlsTouched(),this._parent&&!n.onlySelf&&this._parent._updateTouched(n)},n.prototype._isBoxedValue=function(n){return"object"==typeof n&&null!==n&&2===Object.keys(n).length&&"value"in n&&"disabled"in n},n.prototype._registerOnCollectionChange=function(n){this._onCollectionChange=n},n.prototype._setUpdateStrategy=function(n){Rn(n)&&null!=n.updateOn&&(this._updateOn=n.updateOn)},n}(),xn=function(n){function e(e,t,l){void 0===e&&(e=null);var o=n.call(this,On(t),Dn(l,t))||this;return o._onChange=[],o._applyFormState(e),o._setUpdateStrategy(t),o.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),o._initObservables(),o}return Object(b.__extends)(e,n),e.prototype.setValue=function(n,e){var t=this;void 0===e&&(e={}),this.value=this._pendingValue=n,this._onChange.length&&!1!==e.emitModelToViewChange&&this._onChange.forEach(function(n){return n(t.value,!1!==e.emitViewToModelChange)}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(n,e){void 0===e&&(e={}),this.setValue(n,e)},e.prototype.reset=function(n,e){void 0===n&&(n=null),void 0===e&&(e={}),this._applyFormState(n),this.markAsPristine(e),this.markAsUntouched(e),this.setValue(this.value,e),this._pendingChange=!1},e.prototype._updateValue=function(){},e.prototype._anyControls=function(n){return!1},e.prototype._allControlsDisabled=function(){return this.disabled},e.prototype.registerOnChange=function(n){this._onChange.push(n)},e.prototype._clearChangeFns=function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}},e.prototype.registerOnDisabledChange=function(n){this._onDisabledChange.push(n)},e.prototype._forEachChild=function(n){},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(n){this._isBoxedValue(n)?(this.value=this._pendingValue=n.value,n.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=n},e}(kn),Pn=function(n){function e(e,t,l){var o=n.call(this,On(t),Dn(l,t))||this;return o.controls=e,o._initObservables(),o._setUpdateStrategy(t),o._setUpControls(),o.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),o}return Object(b.__extends)(e,n),e.prototype.registerControl=function(n,e){return this.controls[n]?this.controls[n]:(this.controls[n]=e,e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange),e)},e.prototype.addControl=function(n,e){this.registerControl(n,e),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.removeControl=function(n){this.controls[n]&&this.controls[n]._registerOnCollectionChange(function(){}),delete this.controls[n],this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.setControl=function(n,e){this.controls[n]&&this.controls[n]._registerOnCollectionChange(function(){}),delete this.controls[n],e&&this.registerControl(n,e),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.contains=function(n){return this.controls.hasOwnProperty(n)&&this.controls[n].enabled},e.prototype.setValue=function(n,e){var t=this;void 0===e&&(e={}),this._checkAllValuesPresent(n),Object.keys(n).forEach(function(l){t._throwIfControlMissing(l),t.controls[l].setValue(n[l],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(n,e){var t=this;void 0===e&&(e={}),Object.keys(n).forEach(function(l){t.controls[l]&&t.controls[l].patchValue(n[l],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.reset=function(n,e){void 0===n&&(n={}),void 0===e&&(e={}),this._forEachChild(function(t,l){t.reset(n[l],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e),this._updatePristine(e),this._updateTouched(e)},e.prototype.getRawValue=function(){return this._reduceChildren({},function(n,e,t){return n[t]=e instanceof xn?e.value:e.getRawValue(),n})},e.prototype._syncPendingControls=function(){var n=this._reduceChildren(!1,function(n,e){return!!e._syncPendingControls()||n});return n&&this.updateValueAndValidity({onlySelf:!0}),n},e.prototype._throwIfControlMissing=function(n){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[n])throw new Error("Cannot find form control with name: "+n+".")},e.prototype._forEachChild=function(n){var e=this;Object.keys(this.controls).forEach(function(t){return n(e.controls[t],t)})},e.prototype._setUpControls=function(){var n=this;this._forEachChild(function(e){e.setParent(n),e._registerOnCollectionChange(n._onCollectionChange)})},e.prototype._updateValue=function(){this.value=this._reduceValue()},e.prototype._anyControls=function(n){var e=this,t=!1;return this._forEachChild(function(l,o){t=t||e.contains(o)&&n(l)}),t},e.prototype._reduceValue=function(){var n=this;return this._reduceChildren({},function(e,t,l){return(t.enabled||n.disabled)&&(e[l]=t.value),e})},e.prototype._reduceChildren=function(n,e){var t=n;return this._forEachChild(function(n,l){t=e(t,n,l)}),t},e.prototype._allControlsDisabled=function(){try{for(var n=Object(b.__values)(Object.keys(this.controls)),e=n.next();!e.done;e=n.next())if(this.controls[e.value].enabled)return!1}catch(n){t={error:n}}finally{try{e&&!e.done&&(l=n.return)&&l.call(n)}finally{if(t)throw t.error}}return Object.keys(this.controls).length>0||this.disabled;var t,l},e.prototype._checkAllValuesPresent=function(n){this._forEachChild(function(e,t){if(void 0===n[t])throw new Error("Must supply a value for form control with name: '"+t+"'.")})},e}(kn),Vn=function(n){function e(e,t,l){var o=n.call(this,On(t),Dn(l,t))||this;return o.controls=e,o._initObservables(),o._setUpdateStrategy(t),o._setUpControls(),o.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),o}return Object(b.__extends)(e,n),e.prototype.at=function(n){return this.controls[n]},e.prototype.push=function(n){this.controls.push(n),this._registerControl(n),this.updateValueAndValidity(),this._onCollectionChange()},e.prototype.insert=function(n,e){this.controls.splice(n,0,e),this._registerControl(e),this.updateValueAndValidity()},e.prototype.removeAt=function(n){this.controls[n]&&this.controls[n]._registerOnCollectionChange(function(){}),this.controls.splice(n,1),this.updateValueAndValidity()},e.prototype.setControl=function(n,e){this.controls[n]&&this.controls[n]._registerOnCollectionChange(function(){}),this.controls.splice(n,1),e&&(this.controls.splice(n,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(n,e){var t=this;void 0===e&&(e={}),this._checkAllValuesPresent(n),n.forEach(function(n,l){t._throwIfControlMissing(l),t.at(l).setValue(n,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.patchValue=function(n,e){var t=this;void 0===e&&(e={}),n.forEach(function(n,l){t.at(l)&&t.at(l).patchValue(n,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)},e.prototype.reset=function(n,e){void 0===n&&(n=[]),void 0===e&&(e={}),this._forEachChild(function(t,l){t.reset(n[l],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e),this._updatePristine(e),this._updateTouched(e)},e.prototype.getRawValue=function(){return this.controls.map(function(n){return n instanceof xn?n.value:n.getRawValue()})},e.prototype._syncPendingControls=function(){var n=this.controls.reduce(function(n,e){return!!e._syncPendingControls()||n},!1);return n&&this.updateValueAndValidity({onlySelf:!0}),n},e.prototype._throwIfControlMissing=function(n){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(n))throw new Error("Cannot find form control at index "+n)},e.prototype._forEachChild=function(n){this.controls.forEach(function(e,t){n(e,t)})},e.prototype._updateValue=function(){var n=this;this.value=this.controls.filter(function(e){return e.enabled||n.disabled}).map(function(n){return n.value})},e.prototype._anyControls=function(n){return this.controls.some(function(e){return e.enabled&&n(e)})},e.prototype._setUpControls=function(){var n=this;this._forEachChild(function(e){return n._registerControl(e)})},e.prototype._checkAllValuesPresent=function(n){this._forEachChild(function(e,t){if(void 0===n[t])throw new Error("Must supply a value for form control at index: "+t+".")})},e.prototype._allControlsDisabled=function(){try{for(var n=Object(b.__values)(this.controls),e=n.next();!e.done;e=n.next())if(e.value.enabled)return!1}catch(n){t={error:n}}finally{try{e&&!e.done&&(l=n.return)&&l.call(n)}finally{if(t)throw t.error}}return this.controls.length>0||this.disabled;var t,l},e.prototype._registerControl=function(n){n.setParent(this),n._registerOnCollectionChange(this._onCollectionChange)},e}(kn),En=Promise.resolve(null),Mn=function(n){function e(e,t){var o=n.call(this)||this;return o.submitted=!1,o._directives=[],o.ngSubmit=new l.EventEmitter,o.form=new Pn({},pn(e),hn(t)),o}return Object(b.__extends)(e,n),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(n){var e=this;En.then(function(){var t=e._findContainer(n.path);n.control=t.registerControl(n.name,n.control),rn(n.control,n),n.control.updateValueAndValidity({emitEvent:!1}),e._directives.push(n)})},e.prototype.getControl=function(n){return this.form.get(n.path)},e.prototype.removeControl=function(n){var e=this;En.then(function(){var t=e._findContainer(n.path);t&&t.removeControl(n.name),bn(e._directives,n)})},e.prototype.addFormGroup=function(n){var e=this;En.then(function(){var t=e._findContainer(n.path),l=new Pn({});sn(l,n),t.registerControl(n.name,l),l.updateValueAndValidity({emitEvent:!1})})},e.prototype.removeFormGroup=function(n){var e=this;En.then(function(){var t=e._findContainer(n.path);t&&t.removeControl(n.name)})},e.prototype.getFormGroup=function(n){return this.form.get(n.path)},e.prototype.updateModel=function(n,e){var t=this;En.then(function(){t.form.get(n.path).setValue(e)})},e.prototype.setValue=function(n){this.control.setValue(n)},e.prototype.onSubmit=function(n){return this.submitted=!0,gn(this.form,this._directives),this.ngSubmit.emit(n),!1},e.prototype.onReset=function(){this.resetForm()},e.prototype.resetForm=function(n){void 0===n&&(n=void 0),this.form.reset(n),this.submitted=!1},e.prototype._setUpdateStrategy=function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)},e.prototype._findContainer=function(n){return n.pop(),n.length?this.form.get(n):this.form},e}(V),Sn=function(){function n(){}return n.modelParentException=function(){throw new Error('\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\n formGroup\'s partner directive "formControlName" instead. Example:\n\n '+Z+'\n\n Or, if you\'d like to avoid registering this form control, indicate that it\'s standalone in ngModelOptions:\n\n Example:\n\n \n
\n \n \n
\n ')},n.formGroupNameException=function(){throw new Error("\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\n\n Option 1: Use formControlName instead of ngModel (reactive strategy):\n\n "+Y+"\n\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\n\n "+J)},n.missingNameException=function(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\n control must be defined as \'standalone\' in ngModelOptions.\n\n Example 1: \n Example 2: ')},n.modelGroupParentException=function(){throw new Error("\n ngModelGroup cannot be used with a parent formGroup directive.\n\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\n\n "+Y+"\n\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\n\n "+J)},n}(),Tn=function(n){function e(e,t,l){var o=n.call(this)||this;return o._parent=e,o._validators=t,o._asyncValidators=l,o}return Object(b.__extends)(e,n),e.prototype._checkParentType=function(){this._parent instanceof e||this._parent instanceof Mn||Sn.modelGroupParentException()},e}(yn),In=Promise.resolve(null),An=function(n){function e(e,t,o,i){var u=n.call(this)||this;return u.control=new xn,u._registered=!1,u.update=new l.EventEmitter,u._parent=e,u._rawValidators=t||[],u._rawAsyncValidators=o||[],u.valueAccessor=vn(u,i),u}return Object(b.__extends)(e,n),e.prototype.ngOnChanges=function(n){this._checkForErrors(),this._registered||this._setUpControl(),"isDisabled"in n&&this._updateDisabled(n),fn(n,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeControl(this)},Object.defineProperty(e.prototype,"path",{get:function(){return this._parent?un(this.name,this._parent):[this.name]},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 pn(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return hn(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),e.prototype.viewToModelUpdate=function(n){this.viewModel=n,this.update.emit(n)},e.prototype._setUpControl=function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0},e.prototype._setUpdateStrategy=function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)},e.prototype._isStandalone=function(){return!this._parent||!(!this.options||!this.options.standalone)},e.prototype._setUpStandalone=function(){rn(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})},e.prototype._checkForErrors=function(){this._isStandalone()||this._checkParentType(),this._checkName()},e.prototype._checkParentType=function(){!(this._parent instanceof Tn)&&this._parent instanceof yn?Sn.formGroupNameException():this._parent instanceof Tn||this._parent instanceof Mn||Sn.modelParentException()},e.prototype._checkName=function(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||Sn.missingNameException()},e.prototype._updateValue=function(n){var e=this;In.then(function(){e.control.setValue(n,{emitViewToModelChange:!1})})},e.prototype._updateDisabled=function(n){var e=this,t=n.isDisabled.currentValue,l=""===t||t&&"false"!==t;In.then(function(){l&&!e.control.disabled?e.control.disable():!l&&e.control.disabled&&e.control.enable()})},e}($),jn=new l.InjectionToken("NgModelWithFormControlWarning"),Fn=function(n){function e(e,t){var o=n.call(this)||this;return o._validators=e,o._asyncValidators=t,o.submitted=!1,o.directives=[],o.form=null,o.ngSubmit=new l.EventEmitter,o}return Object(b.__extends)(e,n),e.prototype.ngOnChanges=function(n){this._checkFormPresent(),n.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(n){var e=this.form.get(n.path);return rn(e,n),e.updateValueAndValidity({emitEvent:!1}),this.directives.push(n),e},e.prototype.getControl=function(n){return this.form.get(n.path)},e.prototype.removeControl=function(n){bn(this.directives,n)},e.prototype.addFormGroup=function(n){var e=this.form.get(n.path);sn(e,n),e.updateValueAndValidity({emitEvent:!1})},e.prototype.removeFormGroup=function(n){},e.prototype.getFormGroup=function(n){return this.form.get(n.path)},e.prototype.addFormArray=function(n){var e=this.form.get(n.path);sn(e,n),e.updateValueAndValidity({emitEvent:!1})},e.prototype.removeFormArray=function(n){},e.prototype.getFormArray=function(n){return this.form.get(n.path)},e.prototype.updateModel=function(n,e){this.form.get(n.path).setValue(e)},e.prototype.onSubmit=function(n){return this.submitted=!0,gn(this.form,this.directives),this.ngSubmit.emit(n),!1},e.prototype.onReset=function(){this.resetForm()},e.prototype.resetForm=function(n){void 0===n&&(n=void 0),this.form.reset(n),this.submitted=!1},e.prototype._updateDomValue=function(){var n=this;this.directives.forEach(function(e){var t=n.form.get(e.path);e.control!==t&&(function(n,e){e.valueAccessor.registerOnChange(function(){return cn(e)}),e.valueAccessor.registerOnTouched(function(){return cn(e)}),e._rawValidators.forEach(function(n){n.registerOnValidatorChange&&n.registerOnValidatorChange(null)}),e._rawAsyncValidators.forEach(function(n){n.registerOnValidatorChange&&n.registerOnValidatorChange(null)}),n&&n._clearChangeFns()}(e.control,e),t&&rn(t,e),e.control=t)}),this.form._updateTreeValidity({emitEvent:!1})},e.prototype._updateRegistrations=function(){var n=this;this.form._registerOnCollectionChange(function(){return n._updateDomValue()}),this._oldForm&&this._oldForm._registerOnCollectionChange(function(){}),this._oldForm=this.form},e.prototype._updateValidators=function(){var n=pn(this._validators);this.form.validator=T.compose([this.form.validator,n]);var e=hn(this._asyncValidators);this.form.asyncValidator=T.composeAsync([this.form.asyncValidator,e])},e.prototype._checkFormPresent=function(){this.form||X.missingFormException()},e}(V),Nn=function(n){function e(e,t,l){var o=n.call(this)||this;return o._parent=e,o._validators=t,o._asyncValidators=l,o}return Object(b.__extends)(e,n),e.prototype._checkParentType=function(){Ln(this._parent)&&X.groupParentException()},e}(yn),zn=function(n){function e(e,t,l){var o=n.call(this)||this;return o._parent=e,o._validators=t,o._asyncValidators=l,o}return Object(b.__extends)(e,n),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 un(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validator",{get:function(){return pn(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return hn(this._asyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){Ln(this._parent)&&X.arrayParentException()},e}(V);function Ln(n){return!(n instanceof Nn||n instanceof Fn||n instanceof zn)}var Wn,Bn=function(n){function e(e,t,o,i,u){var r=n.call(this)||this;return r._ngModelWarningConfig=u,r._added=!1,r.update=new l.EventEmitter,r._ngModelWarningSent=!1,r._parent=e,r._rawValidators=t||[],r._rawAsyncValidators=o||[],r.valueAccessor=vn(r,i),r}return Object(b.__extends)(e,n),Object.defineProperty(e.prototype,"isDisabled",{set:function(n){X.disabledAttrWarning()},enumerable:!0,configurable:!0}),e.prototype.ngOnChanges=function(n){var t,o,i,u;this._added||this._setUpControl(),fn(n,this.viewModel)&&(t="formControlName",o=e,i=this,u=this._ngModelWarningConfig,Object(l.isDevMode)()&&"never"!==u&&((null!==u&&"once"!==u||o._ngModelWarningSentOnce)&&("always"!==u||i._ngModelWarningSent)||(X.ngModelWarning(t),o._ngModelWarningSentOnce=!0,i._ngModelWarningSent=!0)),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))},e.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeControl(this)},e.prototype.viewToModelUpdate=function(n){this.viewModel=n,this.update.emit(n)},Object.defineProperty(e.prototype,"path",{get:function(){return un(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 pn(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"asyncValidator",{get:function(){return hn(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),e.prototype._checkParentType=function(){!(this._parent instanceof Nn)&&this._parent instanceof yn?X.ngModelGroupException():this._parent instanceof Nn||this._parent instanceof Fn||this._parent instanceof zn||X.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}($),qn=function(){function n(){}return n.prototype.group=function(n,e){void 0===e&&(e=null);var t=this._reduceControls(n);return new Pn(t,null!=e?e.validator:null,null!=e?e.asyncValidator:null)},n.prototype.control=function(n,e,t){return new xn(n,e,t)},n.prototype.array=function(n,e,t){var l=this,o=n.map(function(n){return l._createControl(n)});return new Vn(o,e,t)},n.prototype._reduceControls=function(n){var e=this,t={};return Object.keys(n).forEach(function(l){t[l]=e._createControl(n[l])}),t},n.prototype._createControl=function(n){return n instanceof xn||n instanceof Pn||n instanceof Vn?n:Array.isArray(n)?this.control(n[0],n.length>1?n[1]:null,n.length>2?n[2]:null):this.control(n)},n}(),Gn=function(){},$n=function(){},Un=function(){},Hn=function(){function n(){}return n.withConfig=function(e){return{ngModule:n,providers:[{provide:jn,useValue:e.warnOnNgModelWithFormControl}]}},n}(),Kn=(Object(l.forwardRef)(function(){return Kn}),function(){function n(n){this._label=n,this.disabled=!1,this.valueChecked=!0,this.valueUnChecked=!1,this.onChange=function(n){},this.onTouched=function(){}}return Object.defineProperty(n.prototype,"focused",{set:function(n){this._label.focused=n,n||this.onTouched()},enumerable:!0,configurable:!0}),n.prototype.onInputChange=function(n){var e=n.target.checked?this.valueChecked:this.valueUnChecked;this.onChange(e),this.onTouched(),this.writeValue(e)},n.prototype.registerOnChange=function(n){this.onChange=n},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.setDisabledState=function(n){this.disabled=n,this._label.disabled=n},n.prototype.writeValue=function(n){this.checked=n===this.valueChecked,this._label.active=this.checked},n}()),Zn=(Object(l.forwardRef)(function(){return Yn}),0),Yn=function(){function n(){this._radios=new Set,this._value=null,this.name="ngb-radio-"+Zn++,this.onChange=function(n){},this.onTouched=function(){}}return Object.defineProperty(n.prototype,"disabled",{get:function(){return this._disabled},set:function(n){this.setDisabledState(n)},enumerable:!0,configurable:!0}),n.prototype.onRadioChange=function(n){this.writeValue(n.value),this.onChange(n.value)},n.prototype.onRadioValueUpdate=function(){this._updateRadiosValue()},n.prototype.register=function(n){this._radios.add(n)},n.prototype.registerOnChange=function(n){this.onChange=n},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.setDisabledState=function(n){this._disabled=n,this._updateRadiosDisabled()},n.prototype.unregister=function(n){this._radios.delete(n)},n.prototype.writeValue=function(n){this._value=n,this._updateRadiosValue()},n.prototype._updateRadiosValue=function(){var n=this;this._radios.forEach(function(e){return e.updateValue(n._value)})},n.prototype._updateRadiosDisabled=function(){this._radios.forEach(function(n){return n.updateDisabled()})},n}(),Jn=function(){function n(n,e,t,l){this._group=n,this._label=e,this._renderer=t,this._element=l,this._value=null,this._group.register(this)}return Object.defineProperty(n.prototype,"value",{get:function(){return this._value},set:function(n){this._value=n;var e=n?n.toString():"";this._renderer.setProperty(this._element.nativeElement,"value",e),this._group.onRadioValueUpdate()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"disabled",{get:function(){return this._group.disabled||this._disabled},set:function(n){this._disabled=!1!==n,this.updateDisabled()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"focused",{set:function(n){this._label&&(this._label.focused=n),n||this._group.onTouched()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"checked",{get:function(){return this._checked},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"nameAttr",{get:function(){return this.name||this._group.name},enumerable:!0,configurable:!0}),n.prototype.ngOnDestroy=function(){this._group.unregister(this)},n.prototype.onChange=function(){this._group.onRadioChange(this)},n.prototype.updateValue=function(n){this._checked=this.value===n,this._label.active=this._checked},n.prototype.updateDisabled=function(){this._label.disabled=this.disabled},n}(),Xn=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[]}},n}(),Qn=t("PsaP"),ne=function(){this.collapsed=!1},ee=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[]}},n}(),te=t("Ip0R"),le=["a[href]","button:not([disabled])",'input:not([disabled]):not([type="hidden"])',"select:not([disabled])","textarea:not([disabled])","[contenteditable]",'[tabindex]:not([tabindex="-1"])'].join(", "),oe=function(n){return n[n.BACKWARD=0]="BACKWARD",n[n.FORWARD=1]="FORWARD",n}({}),ie=function(){function n(n,e,t,l){var o=this;this._element=n,this._document=t,this._ngZone=l,this._direction=oe.FORWARD,this._previouslyFocused=null,this._endOfDocument=null,this._enforceFocus=this._enforceFocus.bind(this),this._detectDirection=this._detectDirection.bind(this);var i=this._endOfDocument=this._document.createElement("i");i.className="ngb-focustrap-eod",i.tabIndex=0,this._document.body.appendChild(i),this._ngZone.runOutsideAngular(function(){o._document.addEventListener("focusin",o._enforceFocus,!0),o._document.addEventListener("keydown",o._detectDirection),o._removeDocumentListener=function(){o._document.removeEventListener("focusin",o._enforceFocus,!0),o._document.removeEventListener("keydown",o._detectDirection)}}),!0===e&&(this._previouslyFocused=document.activeElement,this._focusInitial())}return Object.defineProperty(n.prototype,"focusableElement",{get:function(){var n=this._element.querySelectorAll(le);return this._direction===oe.BACKWARD?n[n.length-1]:n[0]},enumerable:!0,configurable:!0}),n.prototype._enforceFocus=function(n){var e=this,t=n.target;this._document===t||this._element===t||this._element.contains(t)||this._ngZone.run(function(){var t=e.focusableElement;t&&(t.focus(),n.stopPropagation())})},n.prototype._detectDirection=function(n){"Tab"===n.key&&(this._direction=n.shiftKey?oe.BACKWARD:oe.FORWARD)},n.prototype._focusInitial=function(){var n=this._element.querySelector("[ngbAutofocus]");n&&n.focus()},n.prototype.destroy=function(){this._removeDocumentListener(),this._document.body.removeChild(this._endOfDocument),this._previouslyFocused&&this._previouslyFocused.focus()},n}(),ue=function(){function n(n,e){this._document=n,this._ngZone=e}return n.prototype.create=function(n,e){return void 0===e&&(e=!1),new ie(n,e,this._document,this._ngZone)},n}(),re=t("t9fZ"),ae=function(){function n(n,e,t){this.year=n,this.month=e,this.day=t}return n.from=function(e){return e?new n(e.year,e.month,e.day?e.day:1):null},n.prototype.equals=function(n){return n&&this.year===n.year&&this.month===n.month&&this.day===n.day},n.prototype.before=function(n){return!!n&&(this.year===n.year?this.month===n.month?this.day!==n.day&&this.dayn.day:this.month>n.month:this.year>n.year)},n.prototype.toStruct=function(){return{year:this.year,month:this.month,day:this.day}},n.prototype.toString=function(){return this.year+"-"+this.month+"-"+this.day},n}(),se=(Wn=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,e){n.__proto__=e}||function(n,e){for(var t in e)e.hasOwnProperty(t)&&(n[t]=e[t])},function(n,e){function t(){this.constructor=n}Wn(n,e),n.prototype=null===e?Object.create(e):(t.prototype=e.prototype,new t)});function ce(n){return new ae(n.getFullYear(),n.getMonth()+1,n.getDate())}function de(n){var e=new Date(n.year,n.month-1,n.day,12);return isNaN(e.getTime())||e.setFullYear(n.year),e}var pe=function(){},he=function(n){function e(){return null!==n&&n.apply(this,arguments)||this}return se(e,n),e.prototype.getDaysPerWeek=function(){return 7},e.prototype.getMonths=function(){return[1,2,3,4,5,6,7,8,9,10,11,12]},e.prototype.getWeeksPerMonth=function(){return 6},e.prototype.getNext=function(n,e,t){void 0===e&&(e="d"),void 0===t&&(t=1);var l=de(n);switch(e){case"y":return new ae(n.year+t,1,1);case"m":l=new Date(n.year,n.month+t-1,1,12);break;case"d":l.setDate(l.getDate()+t);break;default:return n}return ce(l)},e.prototype.getPrev=function(n,e,t){return void 0===e&&(e="d"),void 0===t&&(t=1),this.getNext(n,e,-t)},e.prototype.getWeekday=function(n){var e=de(n).getDay();return 0===e?7:e},e.prototype.getWeekNumber=function(n,e){7===e&&(e=0);var t=de(n[(11-e)%7]);t.setDate(t.getDate()+4-(t.getDay()||7));var l=t.getTime();return t.setMonth(0),t.setDate(1),Math.floor(Math.round((l-t.getTime())/864e5)/7)+1},e.prototype.getToday=function(){return ce(new Date)},e.prototype.isValid=function(n){if(!(n&&d(n.year)&&d(n.month)&&d(n.day)))return!1;var e=de(n);return!isNaN(e.getTime())&&e.getFullYear()===n.year&&e.getMonth()+1===n.month&&e.getDate()===n.day},e}(pe),fe=t("K9Ia");function me(n,e){return!function(n,e){return!n&&!e||!!n&&!!e&&n.equals(e)}(n,e)}function ge(n,e,t){return n&&e&&n.before(e)?ae.from(e):n&&t&&n.after(t)?ae.from(t):n}function ve(n,e){var t=e.minDate,l=e.maxDate,o=e.disabled,i=e.markDisabled;return!(!p(n)||o||i&&i(n,{year:n.year,month:n.month})||t&&n.before(t)||l&&n.after(l))}var be=t("VnD/"),ye=function(){var n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,e){n.__proto__=e}||function(n,e){for(var t in e)e.hasOwnProperty(t)&&(n[t]=e[t])};return function(e,t){function l(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(l.prototype=t.prototype,new l)}}(),_e=function(){},we=function(n){function e(e,t){var l=n.call(this)||this;l._locale=e,l._datePipe=t;var o=Object(te.t)(e,te.e.Standalone,te.s.Short);return l._weekdaysShort=o.map(function(n,e){return o[(e+1)%7]}),l._monthsShort=Object(te.u)(e,te.e.Standalone,te.s.Abbreviated),l._monthsFull=Object(te.u)(e,te.e.Standalone,te.s.Wide),l}return ye(e,n),e.prototype.getWeekdayShortName=function(n){return this._weekdaysShort[n-1]},e.prototype.getMonthShortName=function(n){return this._monthsShort[n-1]},e.prototype.getMonthFullName=function(n){return this._monthsFull[n-1]},e.prototype.getDayAriaLabel=function(n){var e=new Date(n.year,n.month-1,n.day);return this._datePipe.transform(e,"fullDate",null,this._locale)},e}(_e),Ce=function(){function n(n,e){this._calendar=n,this._i18n=e,this._model$=new fe.a,this._select$=new fe.a,this._state={disabled:!1,displayMonths:1,firstDayOfWeek:1,focusVisible:!1,months:[],navigation:"select",prevDisabled:!1,nextDisabled:!1,selectBoxes:{years:[],months:[]},selectedDate:null}}return Object.defineProperty(n.prototype,"model$",{get:function(){return this._model$.pipe(Object(be.a)(function(n){return n.months.length>0}))},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"select$",{get:function(){return this._select$.pipe(Object(be.a)(function(n){return null!==n}))},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"disabled",{set:function(n){this._state.disabled!==n&&this._nextState({disabled:n})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"displayMonths",{set:function(n){d(n=r(n))&&n>0&&this._state.displayMonths!==n&&this._nextState({displayMonths:n})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"firstDayOfWeek",{set:function(n){d(n=r(n))&&n>=0&&this._state.firstDayOfWeek!==n&&this._nextState({firstDayOfWeek:n})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"focusVisible",{set:function(n){this._state.focusVisible===n||this._state.disabled||this._nextState({focusVisible:n})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"maxDate",{set:function(n){var e=this.toValidDate(n,null);me(this._state.maxDate,e)&&this._nextState({maxDate:e})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"markDisabled",{set:function(n){this._state.markDisabled!==n&&this._nextState({markDisabled:n})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"minDate",{set:function(n){var e=this.toValidDate(n,null);me(this._state.minDate,e)&&this._nextState({minDate:e})},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"navigation",{set:function(n){this._state.navigation!==n&&this._nextState({navigation:n})},enumerable:!0,configurable:!0}),n.prototype.focus=function(n){!this._state.disabled&&this._calendar.isValid(n)&&me(this._state.focusDate,n)&&this._nextState({focusDate:n})},n.prototype.focusMove=function(n,e){this.focus(this._calendar.getNext(this._state.focusDate,n,e))},n.prototype.focusSelect=function(){ve(this._state.focusDate,this._state)&&this.select(this._state.focusDate,{emitEvent:!0})},n.prototype.open=function(n){var e=this.toValidDate(n,this._calendar.getToday());this._state.disabled||this._nextState({firstDate:e})},n.prototype.select=function(n,e){void 0===e&&(e={});var t=this.toValidDate(n,null);this._state.disabled||(me(this._state.selectedDate,t)&&this._nextState({selectedDate:t}),e.emitEvent&&ve(t,this._state)&&this._select$.next(t))},n.prototype.toValidDate=function(n,e){var t=ae.from(n);return void 0===e&&(e=this._calendar.getToday()),this._calendar.isValid(t)?t:e},n.prototype._nextState=function(n){var e=this._updateState(n);this._patchContexts(e),this._state=e,this._model$.next(this._state)},n.prototype._patchContexts=function(n){n.months.forEach(function(e){e.weeks.forEach(function(t){t.days.forEach(function(t){n.focusDate&&(t.context.focused=n.focusDate.equals(t.date)&&n.focusVisible),t.tabindex=!n.disabled&&t.date.equals(n.focusDate)&&n.focusDate.month===e.number?0:-1,!0===n.disabled&&(t.context.disabled=!0),void 0!==n.selectedDate&&(t.context.selected=null!==n.selectedDate&&n.selectedDate.equals(t.date))})})})},n.prototype._updateState=function(n){var e,t,l=Object.assign({},this._state,n),o=l.firstDate;if(("minDate"in n||"maxDate"in n)&&(function(n,e){if(e&&n&&e.before(n))throw new Error("'maxDate' "+e+" should be greater than 'minDate' "+n)}(l.minDate,l.maxDate),l.focusDate=ge(l.focusDate,l.minDate,l.maxDate),l.firstDate=ge(l.firstDate,l.minDate,l.maxDate),o=l.focusDate),"disabled"in n&&(l.focusVisible=!1),"selectedDate"in n&&0===this._state.months.length&&(o=l.selectedDate),"focusDate"in n&&(l.focusDate=ge(l.focusDate,l.minDate,l.maxDate),o=l.focusDate,0!==l.months.length&&!l.focusDate.before(l.firstDate)&&!l.focusDate.after(l.lastDate)))return l;if("firstDate"in n&&(l.firstDate=ge(l.firstDate,l.minDate,l.maxDate),o=l.firstDate),o){var i=function(n,e,t,l,o){for(var i=t.displayMonths,u=t.months,r=[],a=function(i){var a=n.getNext(e,"m",i),s=u.findIndex(function(n){return n.firstDate.equals(a)});r.push(o||-1===s?function(n,e,t,l){var o=t.minDate,i=t.maxDate,u=t.firstDayOfWeek,r=t.markDisabled,a={firstDate:null,lastDate:null,number:e.month,year:e.year,weeks:[],weekdays:[]};e=function(n,e,t){var l=n.getDaysPerWeek(),o=new ae(e.year,e.month,1),i=n.getWeekday(o)%l;return n.getPrev(o,"d",(l+i-t)%l)}(n,e,u);for(var s=0;s0?i[0].firstDate:void 0,l.lastDate=i.length>0?i[i.length-1].lastDate:void 0,"selectedDate"in n&&!ve(l.selectedDate,l)&&(l.selectedDate=null),"firstDate"in n&&(void 0===l.focusDate||l.focusDate.before(l.firstDate)||l.focusDate.after(l.lastDate))&&(l.focusDate=o);var u=!this._state.firstDate||this._state.firstDate.year!==l.firstDate.year,r=!this._state.firstDate||this._state.firstDate.month!==l.firstDate.month;"select"===l.navigation?(("minDate"in n||"maxDate"in n||0===l.selectBoxes.years.length||u)&&(l.selectBoxes.years=function(n,e,t){if(!n)return[];var l=e&&e.year||n.year-10;return Array.from({length:(t&&t.year||n.year+10)-l+1},function(n,e){return l+e})}(l.focusDate,l.minDate,l.maxDate)),("minDate"in n||"maxDate"in n||0===l.selectBoxes.months.length||u)&&(l.selectBoxes.months=function(n,e,t,l){if(!e)return[];var o=n.getMonths();if(t&&e.year===t.year){var i=o.findIndex(function(n){return n===t.month});o=o.slice(i)}return l&&e.year===l.year&&(i=o.findIndex(function(n){return n===l.month}),o=o.slice(0,i+1)),o}(this._calendar,l.focusDate,l.minDate,l.maxDate))):l.selectBoxes={years:[],months:[]},"arrows"!==l.navigation&&"select"!==l.navigation||!(r||u||"minDate"in n||"maxDate"in n||"disabled"in n)||(l.prevDisabled=l.disabled||(e=l.minDate,t=this._calendar.getPrev(l.firstDate,"m"),e&&(t.year===e.year&&t.montht)for(;e>t;)e-=t,n=this.setMonth(n,n.month+1),t=this.getDaysInIslamicMonth(n.month,n.year);return n.day=e,n},e.prototype.setMonth=function(n,e){return e=+e,n.year=n.year+Math.floor((e-1)/12),n.month=Math.floor(((e-1)%12+12)%12)+1,n},e.prototype.setYear=function(n,e){return n.year=+e,n},e.prototype._isIslamicLeapYear=function(n){return(14+11*n)%30<11},e.prototype._getMonthStart=function(n,e){return Math.ceil(29.5*e)+354*(n-1)+Math.floor((3+11*n)/30)},e.prototype._getYearStart=function(n){return 354*(n-1)+Math.floor((3+11*n)/30)},e}(pe),We=function(){var n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,e){n.__proto__=e}||function(n,e){for(var t in e)e.hasOwnProperty(t)&&(n[t]=e[t])};return function(e,t){function l(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(l.prototype=t.prototype,new l)}}();function Be(n){var e=n.getFullYear();return e%4==0&&e%100!=0||e%400==0}function qe(n,e){return n-e*Math.floor(n/e)}var Ge=function(n){function e(){return null!==n&&n.apply(this,arguments)||this}return We(e,n),e.prototype.fromGregorian=function(n){var e=new Date(n),t=e.getFullYear(),l=e.getMonth(),o=e.getDate(),i=1721424.5+365*(t-1)+Math.floor((t-1)/4)+-Math.floor((t-1)/100)+Math.floor((t-1)/400)+Math.floor((367*(l+1)-362)/12+(l+1<=2?0:Be(e)?-1:-2)+o),u=(i=Math.floor(i)+.5)-1948439.5,r=Math.floor((30*u+10646)/10631),a=Math.ceil((u-29-this._getYearStart(r))/29.5);a=Math.min(a,11);var s=Math.ceil(u-this._getMonthStart(r,a))+1;return new ae(r,a+1,s)},e.prototype.toGregorian=function(n){var e=n.year,t=n.day+Math.ceil(29.5*(n.month-1))+354*(e-1)+Math.floor((3+11*e)/30)+1948439.5-1,l=Math.floor(t-.5)+.5,o=l-1721425.5,i=Math.floor(o/146097),u=qe(o,146097),r=Math.floor(u/36524),a=qe(u,36524),s=Math.floor(a/1461),c=qe(a,1461),d=Math.floor(c/365),p=400*i+100*r+4*s+d;4!==r&&4!==d&&p++;var h=l-(1721425.5+365*(p-1)+Math.floor((p-1)/4)-Math.floor((p-1)/100)+Math.floor((p-1)/400)),f=l<1721424.5+365*(p-1)+Math.floor((p-1)/4)-Math.floor((p-1)/100)+Math.floor((p-1)/400)+Math.floor(739/12+(Be(new Date(p,3,1))?-1:-2)+1)?0:Be(new Date(p,3,1))?1:2,m=Math.floor((12*(h+f)+373)/367),g=1721424.5+365*(p-1)+Math.floor((p-1)/4)-Math.floor((p-1)/100)+Math.floor((p-1)/400)+Math.floor((367*m-362)/12+(m<=2?0:Be(new Date(p,m-1,1))?-1:-2)+1);return new Date(p,m-1,l-g+1)},e.prototype.getDaysInIslamicMonth=function(n,e){e+=Math.floor(n/13);var t=29+(n=(n-1)%12+1)%2;return 12===n&&this._isIslamicLeapYear(e)&&t++,t},e.prototype.getNext=function(n,e,t){switch(void 0===e&&(e="d"),void 0===t&&(t=1),n=ae.from(n),e){case"y":return(n=this.setYear(n,n.year+t)).month=1,n.day=1,n;case"m":return(n=this.setMonth(n,n.month+t)).day=1,n;case"d":return this.setDay(n,n.day+t);default:return n}},e.prototype.getPrev=function(n,e,t){return void 0===e&&(e="d"),void 0===t&&(t=1),this.getNext(n,e,-t)},e.prototype.getWeekday=function(n){var e=this.toGregorian(n).getDay();return 0===e?7:e},e.prototype.getWeekNumber=function(n,e){7===e&&(e=0);var t=n[(11-e)%7],l=this.toGregorian(t);l.setDate(l.getDate()+4-(l.getDay()||7));var o=l.getTime(),i=this.toGregorian(new ae(t.year,1,1));return Math.floor(Math.round((o-i.getTime())/864e5)/7)+1},e.prototype.getToday=function(){return this.fromGregorian(new Date)},e}(Le);Object.setPrototypeOf||Array,new Date(1882,10,12),new Date(2174,10,25),new Ge;var $e=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[{provide:pe,useClass:he},{provide:_e,useClass:we},{provide:Te,useClass:Ie},{provide:Pe,useClass:Ve},ke,ue,te.d]}},n}(),Ue=t("C9m0"),He=function(){},Ke=function(n){return n[n.BACKDROP_CLICK=0]="BACKDROP_CLICK",n[n.ESC=1]="ESC",n}({}),Ze=function(){function n(n,e,t){this._elRef=e,this._renderer=t,this.backdrop=!0,this.keyboard=!0,this.dismissEvent=new l.EventEmitter,this._document=n}return n.prototype.backdropClick=function(n){!0===this.backdrop&&this._elRef.nativeElement===n.target&&this.dismiss(Ke.BACKDROP_CLICK)},n.prototype.escKey=function(n){this.keyboard&&!n.defaultPrevented&&this.dismiss(Ke.ESC)},n.prototype.dismiss=function(n){this.dismissEvent.emit(n)},n.prototype.ngOnInit=function(){this._elWithFocus=this._document.activeElement,this._renderer.addClass(this._document.body,"modal-open")},n.prototype.ngAfterViewInit=function(){this._elRef.nativeElement.contains(document.activeElement)||this._elRef.nativeElement.focus.apply(this._elRef.nativeElement,[])},n.prototype.ngOnDestroy=function(){var n,e=this._document.body,t=this._elWithFocus;(n=t&&t.focus&&e.contains(t)?t:e).focus.apply(n,[]),this._elWithFocus=null,this._renderer.removeClass(e,"modal-open")},n}(),Ye=function(n,e,t){this.nodes=n,this.viewRef=e,this.componentRef=t},Je=function(){function n(n,e,t,l,o){this._type=n,this._injector=e,this._viewContainerRef=t,this._renderer=l,this._componentFactoryResolver=o}return n.prototype.open=function(n,e){return this._windowRef||(this._contentRef=this._getContentRef(n,e),this._windowRef=this._viewContainerRef.createComponent(this._componentFactoryResolver.resolveComponentFactory(this._type),0,this._injector,this._contentRef.nodes)),this._windowRef},n.prototype.close=function(){this._windowRef&&(this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._windowRef.hostView)),this._windowRef=null,this._contentRef.viewRef&&(this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._contentRef.viewRef)),this._contentRef=null))},n.prototype._getContentRef=function(n,e){if(n){if(n instanceof l.TemplateRef){var t=this._viewContainerRef.createEmbeddedView(n,e);return new Ye([t.rootNodes],t)}return new Ye([[this._renderer.createText(""+n)]])}return new Ye([])},n}(),Xe=function(){function n(){}return n.prototype.close=function(n){},n.prototype.dismiss=function(n){},n}(),Qe=function(){function n(n,e,t,l){var o=this;this._windowCmptRef=n,this._contentRef=e,this._backdropCmptRef=t,this._beforeDismiss=l,n.instance.dismissEvent.subscribe(function(n){o.dismiss(n)}),this.result=new Promise(function(n,e){o._resolve=n,o._reject=e}),this.result.then(null,function(){})}return Object.defineProperty(n.prototype,"componentInstance",{get:function(){if(this._contentRef.componentRef)return this._contentRef.componentRef.instance},set:function(n){},enumerable:!0,configurable:!0}),n.prototype.close=function(n){this._windowCmptRef&&(this._resolve(n),this._removeModalElements())},n.prototype.dismiss=function(n){this._windowCmptRef&&(this._beforeDismiss&&!1===this._beforeDismiss()||(this._reject(n),this._removeModalElements()))},n.prototype._removeModalElements=function(){var n=this._windowCmptRef.location.nativeElement;if(n.parentNode.removeChild(n),this._windowCmptRef.destroy(),this._backdropCmptRef){var e=this._backdropCmptRef.location.nativeElement;e.parentNode.removeChild(e),this._backdropCmptRef.destroy()}this._contentRef&&this._contentRef.viewRef&&this._contentRef.viewRef.destroy(),this._windowCmptRef=null,this._backdropCmptRef=null,this._contentRef=null},n}(),nt=function(){function n(n,e,t,l){this._applicationRef=n,this._injector=e,this._componentFactoryResolver=t,this._windowAttributes=["backdrop","centered","keyboard","size","windowClass"],this._backdropAttributes=["backdropClass"],this._document=l}return n.prototype.open=function(n,e,t,l){var o=p(l.container)?this._document.querySelector(l.container):this._document.body;if(!o)throw new Error('The specified modal container "'+(l.container||"body")+'" was not found in the DOM.');var i=new Xe,u=this._getContentRef(n,l.injector||e,t,i),r=!1!==l.backdrop?this._attachBackdrop(o):null,a=this._attachWindowComponent(o,u),s=new Qe(a,u,r,l.beforeDismiss);return i.close=function(n){s.close(n)},i.dismiss=function(n){s.dismiss(n)},this._applyWindowOptions(a.instance,l),r&&r.instance&&this._applyBackdropOptions(r.instance,l),s},n.prototype._attachBackdrop=function(n){var e=this._componentFactoryResolver.resolveComponentFactory(He).create(this._injector);return this._applicationRef.attachView(e.hostView),n.appendChild(e.location.nativeElement),e},n.prototype._attachWindowComponent=function(n,e){var t=this._componentFactoryResolver.resolveComponentFactory(Ze).create(this._injector,e.nodes);return this._applicationRef.attachView(t.hostView),n.appendChild(t.location.nativeElement),t},n.prototype._applyWindowOptions=function(n,e){this._windowAttributes.forEach(function(t){p(e[t])&&(n[t]=e[t])})},n.prototype._applyBackdropOptions=function(n,e){this._backdropAttributes.forEach(function(t){p(e[t])&&(n[t]=e[t])})},n.prototype._getContentRef=function(n,e,t,o){return t?t instanceof l.TemplateRef?this._createFromTemplateRef(t,o):"string"==typeof t?this._createFromString(t):this._createFromComponent(n,e,t,o):new Ye([])},n.prototype._createFromTemplateRef=function(n,e){var t=n.createEmbeddedView(e);return this._applicationRef.attachView(t),new Ye([t.rootNodes],t)},n.prototype._createFromString=function(n){var e=this._document.createTextNode(""+n);return new Ye([[e]])},n.prototype._createFromComponent=function(n,e,t,o){var i=n.resolveComponentFactory(t),u=l.Injector.create([{provide:Xe,useValue:o}],e),r=i.create(u);return this._applicationRef.attachView(r.hostView),new Ye([[r.location.nativeElement]],r.hostView,r)},n}(),et=function(){function n(n,e,t){this._moduleCFR=n,this._injector=e,this._modalStack=t}return n.prototype.open=function(n,e){return void 0===e&&(e={}),this._modalStack.open(this._moduleCFR,this._injector,n,e)},n}(),tt=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[et,nt]}},n}(),lt=function(){this.disabled=!1,this.boundaryLinks=!1,this.directionLinks=!0,this.ellipses=!0,this.maxSize=0,this.pageSize=10,this.rotate=!1},ot=function(){function n(n){this.pageCount=0,this.pages=[],this.page=1,this.pageChange=new l.EventEmitter(!0),this.disabled=n.disabled,this.boundaryLinks=n.boundaryLinks,this.directionLinks=n.directionLinks,this.ellipses=n.ellipses,this.maxSize=n.maxSize,this.pageSize=n.pageSize,this.rotate=n.rotate,this.size=n.size}return n.prototype.hasPrevious=function(){return this.page>1},n.prototype.hasNext=function(){return this.page0&&(n>1&&this.pages.unshift(-1),this.pages.unshift(1)),e0&&this.pageCount>this.maxSize){var t=0,l=this.pageCount;this.rotate?(t=(o=this._applyRotation())[0],l=o[1]):(t=(i=this._applyPagination())[0],l=i[1]),this.pages=this.pages.slice(t,l),this._applyEllipses(t,l)}var o,i},n}(),it=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[lt]}},n}(),ut=function(){function n(n,e){this.open=n,this.close=e,e||(this.close=n)}return n.prototype.isManual=function(){return"manual"===this.open||"manual"===this.close},n}(),rt={hover:["mouseenter","mouseleave"]},at=function(){};function st(n,e,t,l,o,i){var u=function(n,e){void 0===e&&(e=rt);var t=(n||"").trim();if(0===t.length)return[];var l=t.split(/\s+/).map(function(n){return n.split(":")}).map(function(n){var t=e[n[0]]||n;return new ut(t[0],t[1])}),o=l.filter(function(n){return n.isManual()});if(o.length>1)throw"Triggers parse error: only one manual trigger is allowed";if(1===o.length&&l.length>1)throw"Triggers parse error: manual trigger can't be mixed with other triggers";return l}(t),r=[];return 1===u.length&&u[0].isManual()?at:(u.forEach(function(t){t.open===t.close?r.push(n.listen(e,t.open,i)):r.push(n.listen(e,t.open,l),n.listen(e,t.close,o))}),function(){r.forEach(function(n){return n()})})}var ct=function(){this.placement="top",this.triggers="click",this.disablePopover=!1},dt=0,pt=function(){function n(n,e){this._element=n,this._renderer=e,this.placement="top"}return n.prototype.applyPlacement=function(n){this._renderer.removeClass(this._element.nativeElement,"bs-popover-"+this.placement.toString().split("-")[0]),this._renderer.removeClass(this._element.nativeElement,"bs-popover-"+this.placement.toString()),this.placement=n,this._renderer.addClass(this._element.nativeElement,"bs-popover-"+this.placement.toString().split("-")[0]),this._renderer.addClass(this._element.nativeElement,"bs-popover-"+this.placement.toString())},n}(),ht=function(){function n(n,e,t,o,i,u,r){var a=this;this._elementRef=n,this._renderer=e,this.shown=new l.EventEmitter,this.hidden=new l.EventEmitter,this._ngbPopoverWindowId="ngb-popover-"+dt++,this.placement=u.placement,this.triggers=u.triggers,this.container=u.container,this.disablePopover=u.disablePopover,this._popupService=new Je(pt,t,i,e,o),this._zoneSubscription=r.onStable.subscribe(function(){a._windowRef&&a._windowRef.instance.applyPlacement(Object(Ae.a)(a._elementRef.nativeElement,a._windowRef.location.nativeElement,a.placement,"body"===a.container))})}return n.prototype._isDisabled=function(){return!!this.disablePopover||!this.ngbPopover&&!this.popoverTitle},n.prototype.open=function(n){this._windowRef||this._isDisabled()||(this._windowRef=this._popupService.open(this.ngbPopover,n),this._windowRef.instance.title=this.popoverTitle,this._windowRef.instance.id=this._ngbPopoverWindowId,this._renderer.setAttribute(this._elementRef.nativeElement,"aria-describedby",this._ngbPopoverWindowId),"body"===this.container&&window.document.querySelector(this.container).appendChild(this._windowRef.location.nativeElement),this._windowRef.changeDetectorRef.detectChanges(),this._windowRef.changeDetectorRef.markForCheck(),this._windowRef.instance.applyPlacement(Object(Ae.a)(this._elementRef.nativeElement,this._windowRef.location.nativeElement,this.placement,"body"===this.container)),this.shown.emit())},n.prototype.close=function(){this._windowRef&&(this._renderer.removeAttribute(this._elementRef.nativeElement,"aria-describedby"),this._popupService.close(),this._windowRef=null,this.hidden.emit())},n.prototype.toggle=function(){this._windowRef?this.close():this.open()},n.prototype.isOpen=function(){return null!=this._windowRef},n.prototype.ngOnInit=function(){this._unregisterListenersFn=st(this._renderer,this._elementRef.nativeElement,this.triggers,this.open.bind(this),this.close.bind(this),this.toggle.bind(this))},n.prototype.ngOnChanges=function(n){(n.ngbPopover||n.popoverTitle||n.disablePopover)&&this._isDisabled()&&this.close()},n.prototype.ngOnDestroy=function(){this.close(),this._unregisterListenersFn(),this._zoneSubscription.unsubscribe()},n}(),ft=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[ct]}},n}(),mt=function(){this.max=100,this.animated=!1,this.striped=!1,this.showValue=!1},gt=function(){function n(n){this.value=0,this.max=n.max,this.animated=n.animated,this.striped=n.striped,this.type=n.type,this.showValue=n.showValue,this.height=n.height}return n.prototype.getValue=function(){return s(this.value,this.max)},n.prototype.getPercentValue=function(){return 100*this.getValue()/this.max},n}(),vt=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[mt]}},n}(),bt=function(){this.max=10,this.readonly=!1,this.resettable=!1},yt=function(n){return n[n.End=35]="End",n[n.Home=36]="Home",n[n.ArrowLeft=37]="ArrowLeft",n[n.ArrowUp=38]="ArrowUp",n[n.ArrowRight=39]="ArrowRight",n[n.ArrowDown=40]="ArrowDown",n}({}),_t=(Object(l.forwardRef)(function(){return _t}),function(){function n(n,e){this._changeDetectorRef=e,this.contexts=[],this.disabled=!1,this.hover=new l.EventEmitter,this.leave=new l.EventEmitter,this.rateChange=new l.EventEmitter(!0),this.onChange=function(n){},this.onTouched=function(){},this.max=n.max,this.readonly=n.readonly}return n.prototype.ariaValueText=function(){return this.nextRate+" out of "+this.max},n.prototype.enter=function(n){this.readonly||this.disabled||this._updateState(n),this.hover.emit(n)},n.prototype.handleBlur=function(){this.onTouched()},n.prototype.handleClick=function(n){this.update(this.resettable&&this.rate===n?0:n)},n.prototype.handleKeyDown=function(n){if(yt[a(n.which)])switch(n.preventDefault(),n.which){case yt.ArrowDown:case yt.ArrowLeft:this.update(this.rate-1);break;case yt.ArrowUp:case yt.ArrowRight:this.update(this.rate+1);break;case yt.Home:this.update(0);break;case yt.End:this.update(this.max)}},n.prototype.ngOnChanges=function(n){n.rate&&this.update(this.rate)},n.prototype.ngOnInit=function(){this.contexts=Array.from({length:this.max},function(n,e){return{fill:0,index:e}}),this._updateState(this.rate)},n.prototype.registerOnChange=function(n){this.onChange=n},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.reset=function(){this.leave.emit(this.nextRate),this._updateState(this.rate)},n.prototype.setDisabledState=function(n){this.disabled=n},n.prototype.update=function(n,e){void 0===e&&(e=!0);var t=s(n,this.max,0);this.readonly||this.disabled||this.rate===t||(this.rate=t,this.rateChange.emit(this.rate)),e&&(this.onChange(this.rate),this.onTouched()),this._updateState(this.rate)},n.prototype.writeValue=function(n){this.update(n,!1),this._changeDetectorRef.markForCheck()},n.prototype._getFillValue=function(n){var e=this.nextRate-n;return e>=1?100:e<1&&e>0?Number.parseInt((100*e).toFixed(2)):0},n.prototype._updateState=function(n){var e=this;this.nextRate=n,this.contexts.forEach(function(n,t){return n.fill=e._getFillValue(t)})},n}()),wt=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[bt]}},n}(),Ct=function(){this.justify="start",this.orientation="horizontal",this.type="tabs"},Ot=0,Dt=function(n){this.templateRef=n},Rt=function(n){this.templateRef=n},kt=function(){function n(){this.id="ngb-tab-"+Ot++,this.disabled=!1}return n.prototype.ngAfterContentChecked=function(){this.titleTpl=this.titleTpls.first,this.contentTpl=this.contentTpls.first},n}(),xt=function(){function n(n){this.destroyOnHide=!0,this.tabChange=new l.EventEmitter,this.type=n.type,this.justify=n.justify,this.orientation=n.orientation}return Object.defineProperty(n.prototype,"justify",{set:function(n){this.justifyClass="fill"===n||"justified"===n?"nav-"+n:"justify-content-"+n},enumerable:!0,configurable:!0}),n.prototype.select=function(n){var e=this._getTabById(n);if(e&&!e.disabled&&this.activeId!==e.id){var t=!1;this.tabChange.emit({activeId:this.activeId,nextId:e.id,preventDefault:function(){t=!0}}),t||(this.activeId=e.id)}},n.prototype.ngAfterContentChecked=function(){var n=this._getTabById(this.activeId);this.activeId=n?n.id:this.tabs.length?this.tabs.first.id:null},n.prototype._getTabById=function(n){var e=this.tabs.filter(function(e){return e.id===n});return e.length?e[0]:null},n}(),Pt=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[Ct]}},n}(),Vt=function(){function n(n,e,t){this.hour=r(n),this.minute=r(e),this.second=r(t)}return n.prototype.changeHour=function(n){void 0===n&&(n=1),this.updateHour((isNaN(this.hour)?0:this.hour)+n)},n.prototype.updateHour=function(n){this.hour=c(n)?(n<0?24+n:n)%24:NaN},n.prototype.changeMinute=function(n){void 0===n&&(n=1),this.updateMinute((isNaN(this.minute)?0:this.minute)+n)},n.prototype.updateMinute=function(n){c(n)?(this.minute=n%60<0?60+n%60:n%60,this.changeHour(Math.floor(n/60))):this.minute=NaN},n.prototype.changeSecond=function(n){void 0===n&&(n=1),this.updateSecond((isNaN(this.second)?0:this.second)+n)},n.prototype.updateSecond=function(n){c(n)?(this.second=n<0?60+n%60:n%60,this.changeMinute(Math.floor(n/60))):this.second=NaN},n.prototype.isValid=function(n){return void 0===n&&(n=!0),c(this.hour)&&c(this.minute)&&(!n||c(this.second))},n.prototype.toString=function(){return(this.hour||0)+":"+(this.minute||0)+":"+(this.second||0)},n}(),Et=function(){this.meridian=!1,this.spinners=!0,this.seconds=!1,this.hourStep=1,this.minuteStep=1,this.secondStep=1,this.disabled=!1,this.readonlyInputs=!1,this.size="medium"},Mt=(Object(l.forwardRef)(function(){return Mt}),function(){function n(n){this.onChange=function(n){},this.onTouched=function(){},this.meridian=n.meridian,this.spinners=n.spinners,this.seconds=n.seconds,this.hourStep=n.hourStep,this.minuteStep=n.minuteStep,this.secondStep=n.secondStep,this.disabled=n.disabled,this.readonlyInputs=n.readonlyInputs,this.size=n.size}return n.prototype.writeValue=function(n){this.model=n?new Vt(n.hour,n.minute,n.second):new Vt,this.seconds||n&&c(n.second)||(this.model.second=0)},n.prototype.registerOnChange=function(n){this.onChange=n},n.prototype.registerOnTouched=function(n){this.onTouched=n},n.prototype.setDisabledState=function(n){this.disabled=n},n.prototype.changeHour=function(n){this.model.changeHour(n),this.propagateModelChange()},n.prototype.changeMinute=function(n){this.model.changeMinute(n),this.propagateModelChange()},n.prototype.changeSecond=function(n){this.model.changeSecond(n),this.propagateModelChange()},n.prototype.updateHour=function(n){var e=this.model.hour>=12,t=r(n);this.model.updateHour(this.meridian&&(e&&t<12||!e&&12===t)?t+12:t),this.propagateModelChange()},n.prototype.updateMinute=function(n){this.model.updateMinute(r(n)),this.propagateModelChange()},n.prototype.updateSecond=function(n){this.model.updateSecond(r(n)),this.propagateModelChange()},n.prototype.toggleMeridian=function(){this.meridian&&this.changeHour(12)},n.prototype.formatHour=function(n){return c(n)?h(this.meridian?n%12==0?12:n%12:n%24):h(NaN)},n.prototype.formatMinSec=function(n){return h(n)},n.prototype.setFormControlSize=function(){return{"form-control-sm":"small"===this.size,"form-control-lg":"large"===this.size}},n.prototype.setButtonSize=function(){return{"btn-sm":"small"===this.size,"btn-lg":"large"===this.size}},n.prototype.ngOnChanges=function(n){n.seconds&&!this.seconds&&this.model&&!c(this.model.second)&&(this.model.second=0,this.propagateModelChange(!1))},n.prototype.propagateModelChange=function(n){void 0===n&&(n=!0),n&&this.onTouched(),this.model.isValid(this.seconds)?this.onChange({hour:this.model.hour,minute:this.model.minute,second:this.model.second}):this.onChange(null)},n}()),St=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[Et]}},n}(),Tt=function(){this.placement="top",this.triggers="hover",this.disableTooltip=!1},It=0,At=function(){function n(n,e){this._element=n,this._renderer=e,this.placement="top"}return n.prototype.applyPlacement=function(n){this._renderer.removeClass(this._element.nativeElement,"bs-tooltip-"+this.placement.toString().split("-")[0]),this._renderer.removeClass(this._element.nativeElement,"bs-tooltip-"+this.placement.toString()),this.placement=n,this._renderer.addClass(this._element.nativeElement,"bs-tooltip-"+this.placement.toString().split("-")[0]),this._renderer.addClass(this._element.nativeElement,"bs-tooltip-"+this.placement.toString())},n}(),jt=function(){function n(n,e,t,o,i,u,r){var a=this;this._elementRef=n,this._renderer=e,this.shown=new l.EventEmitter,this.hidden=new l.EventEmitter,this._ngbTooltipWindowId="ngb-tooltip-"+It++,this.placement=u.placement,this.triggers=u.triggers,this.container=u.container,this.disableTooltip=u.disableTooltip,this._popupService=new Je(At,t,i,e,o),this._zoneSubscription=r.onStable.subscribe(function(){a._windowRef&&a._windowRef.instance.applyPlacement(Object(Ae.a)(a._elementRef.nativeElement,a._windowRef.location.nativeElement,a.placement,"body"===a.container))})}return Object.defineProperty(n.prototype,"ngbTooltip",{get:function(){return this._ngbTooltip},set:function(n){this._ngbTooltip=n,!n&&this._windowRef&&this.close()},enumerable:!0,configurable:!0}),n.prototype.open=function(n){this._windowRef||!this._ngbTooltip||this.disableTooltip||(this._windowRef=this._popupService.open(this._ngbTooltip,n),this._windowRef.instance.id=this._ngbTooltipWindowId,this._renderer.setAttribute(this._elementRef.nativeElement,"aria-describedby",this._ngbTooltipWindowId),"body"===this.container&&window.document.querySelector(this.container).appendChild(this._windowRef.location.nativeElement),this._windowRef.instance.placement=Array.isArray(this.placement)?this.placement[0]:this.placement,this._windowRef.changeDetectorRef.detectChanges(),this._windowRef.changeDetectorRef.markForCheck(),this._windowRef.instance.applyPlacement(Object(Ae.a)(this._elementRef.nativeElement,this._windowRef.location.nativeElement,this.placement,"body"===this.container)),this.shown.emit())},n.prototype.close=function(){null!=this._windowRef&&(this._renderer.removeAttribute(this._elementRef.nativeElement,"aria-describedby"),this._popupService.close(),this._windowRef=null,this.hidden.emit())},n.prototype.toggle=function(){this._windowRef?this.close():this.open()},n.prototype.isOpen=function(){return null!=this._windowRef},n.prototype.ngOnInit=function(){this._unregisterListenersFn=st(this._renderer,this._elementRef.nativeElement,this.triggers,this.open.bind(this),this.close.bind(this),this.toggle.bind(this))},n.prototype.ngOnDestroy=function(){this.close(),this._unregisterListenersFn&&this._unregisterListenersFn(),this._zoneSubscription.unsubscribe()},n}(),Ft=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[Tt]}},n}(),Nt=function(){function n(){this.highlightClass="ngb-highlight"}return n.prototype.ngOnChanges=function(n){var e,t=a(this.result),l=t.toLowerCase(),o=a(this.term).toLowerCase(),i=0;this.parts=o.length>0?l.split(new RegExp("("+(e=o,e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"))+")")).map(function(n){var e=t.substr(i,n.length);return i+=n.length,e}):[t]},n}(),zt=function(){function n(){this.activeIdx=0,this.focusFirst=!0,this.formatter=a,this.selectEvent=new l.EventEmitter,this.activeChangeEvent=new l.EventEmitter}return n.prototype.hasActive=function(){return this.activeIdx>-1&&this.activeIdx=0?this.id+"-"+this.activeIdx:void 0)},n}(),Lt=t("26FU"),Wt=t("2Bdj");Object;var Bt=new l.InjectionToken("live announcer delay"),qt=function(){function n(n,e){this._delay=e,this._element=function(n){var e=n.createElement("div");return e.setAttribute("aria-live","polite"),e.setAttribute("aria-atomic","true"),e.classList.add("sr-only"),n.body.appendChild(e),e}(n)}return n.prototype.ngOnDestroy=function(){this._element.parentElement.removeChild(this._element)},n.prototype.say=function(n){var e=this._element,t=this._delay;e.textContent="";var l=function(){return e.textContent=n};null===t?l():setTimeout(l,t)},n}(),Gt=function(){this.editable=!0,this.focusFirst=!0,this.showHint=!1,this.placement="bottom-left"},$t=t("xMyE"),Ut=t("15JJ"),Ht=function(n){return n[n.Tab=9]="Tab",n[n.Enter=13]="Enter",n[n.Escape=27]="Escape",n[n.ArrowUp=38]="ArrowUp",n[n.ArrowDown=40]="ArrowDown",n}({}),Kt=(Object(l.forwardRef)(function(){return Zt}),0),Zt=function(){function n(n,e,t,o,i,u,r,a){var s=this;this._elementRef=n,this._viewContainerRef=e,this._renderer=t,this._injector=o,this._live=a,this.placement="bottom-left",this.selectItem=new l.EventEmitter,this.popupId="ngb-typeahead-"+Kt++,this._onTouched=function(){},this._onChange=function(n){},this.container=u.container,this.editable=u.editable,this.focusFirst=u.focusFirst,this.showHint=u.showHint,this.placement=u.placement,this._valueChanges=function n(e,t,l,o){return Object(Wt.a)(l)&&(o=l,l=void 0),o?n(e,t,l).pipe(Object(R.a)(function(n){return Object(w.a)(n)?o.apply(void 0,n):o(n)})):new _.a(function(n){!function n(e,t,l,o,i){var u;if(function(n){return n&&"function"==typeof n.addEventListener&&"function"==typeof n.removeEventListener}(e)){var r=e;e.addEventListener(t,l,i),u=function(){return r.removeEventListener(t,l,i)}}else if(function(n){return n&&"function"==typeof n.on&&"function"==typeof n.off}(e)){var a=e;e.on(t,l),u=function(){return a.off(t,l)}}else if(function(n){return n&&"function"==typeof n.addListener&&"function"==typeof n.removeListener}(e)){var s=e;e.addListener(t,l),u=function(){return s.removeListener(t,l)}}else{if(!e||!e.length)throw new TypeError("Invalid event target");for(var c=0,d=e.length;c1?Array.prototype.slice.call(arguments):e)},n,l)})}(n.nativeElement,"input").pipe(Object(R.a)(function(n){return n.target.value})),this._resubscribeTypeahead=new Lt.a(null),this._popupService=new Je(zt,o,e,t,i),this._zoneSubscription=r.onStable.subscribe(function(){s.isPopupOpen()&&Object(Ae.a)(s._elementRef.nativeElement,s._windowRef.location.nativeElement,s.placement,"body"===s.container)})}return n.prototype.ngOnInit=function(){var n=this,e=this._valueChanges.pipe(Object($t.a)(function(e){n._inputValueBackup=e,n.editable&&n._onChange(e)})).pipe(this.ngbTypeahead).pipe(Object($t.a)(function(){n.editable||n._onChange(void 0)})),t=this._resubscribeTypeahead.pipe(Object(Ut.a)(function(){return e}));this._subscription=this._subscribeToUserInput(t)},n.prototype.ngOnDestroy=function(){this._closePopup(),this._unsubscribeFromUserInput(),this._zoneSubscription.unsubscribe()},n.prototype.registerOnChange=function(n){this._onChange=n},n.prototype.registerOnTouched=function(n){this._onTouched=n},n.prototype.writeValue=function(n){this._writeInputValue(this._formatItemForInput(n))},n.prototype.setDisabledState=function(n){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",n)},n.prototype.onDocumentClick=function(n){n.target!==this._elementRef.nativeElement&&this.dismissPopup()},n.prototype.dismissPopup=function(){this.isPopupOpen()&&(this._closePopup(),this._writeInputValue(this._inputValueBackup))},n.prototype.isPopupOpen=function(){return null!=this._windowRef},n.prototype.handleBlur=function(){this._resubscribeTypeahead.next(null),this._onTouched()},n.prototype.handleKeyDown=function(n){if(this.isPopupOpen()&&Ht[a(n.which)])switch(n.which){case Ht.ArrowDown:n.preventDefault(),this._windowRef.instance.next(),this._showHint();break;case Ht.ArrowUp:n.preventDefault(),this._windowRef.instance.prev(),this._showHint();break;case Ht.Enter:case Ht.Tab:var e=this._windowRef.instance.getActive();p(e)&&(n.preventDefault(),n.stopPropagation(),this._selectResult(e)),this._closePopup();break;case Ht.Escape:n.preventDefault(),this._resubscribeTypeahead.next(null),this.dismissPopup()}},n.prototype._openPopup=function(){var n=this;this.isPopupOpen()||(this._inputValueBackup=this._elementRef.nativeElement.value,this._windowRef=this._popupService.open(),this._windowRef.instance.id=this.popupId,this._windowRef.instance.selectEvent.subscribe(function(e){return n._selectResultClosePopup(e)}),this._windowRef.instance.activeChangeEvent.subscribe(function(e){return n.activeDescendant=e}),"body"===this.container&&window.document.querySelector(this.container).appendChild(this._windowRef.location.nativeElement))},n.prototype._closePopup=function(){this._popupService.close(),this._windowRef=null,this.activeDescendant=void 0},n.prototype._selectResult=function(n){var e=!1;this.selectItem.emit({item:n,preventDefault:function(){e=!0}}),this._resubscribeTypeahead.next(null),e||(this.writeValue(n),this._onChange(n))},n.prototype._selectResultClosePopup=function(n){this._selectResult(n),this._closePopup()},n.prototype._showHint=function(){if(this.showHint&&this._windowRef.instance.hasActive()&&null!=this._inputValueBackup){var n=this._inputValueBackup.toLowerCase(),e=this._formatItemForInput(this._windowRef.instance.getActive());n===e.substr(0,this._inputValueBackup.length).toLowerCase()?(this._writeInputValue(this._inputValueBackup+e.substr(this._inputValueBackup.length)),this._elementRef.nativeElement.setSelectionRange.apply(this._elementRef.nativeElement,[this._inputValueBackup.length,e.length])):this.writeValue(this._windowRef.instance.getActive())}},n.prototype._formatItemForInput=function(n){return n&&this.inputFormatter?this.inputFormatter(n):a(n)},n.prototype._writeInputValue=function(n){this._renderer.setProperty(this._elementRef.nativeElement,"value",a(n))},n.prototype._subscribeToUserInput=function(n){var e=this;return n.subscribe(function(n){n&&0!==n.length?(e._openPopup(),e._windowRef.instance.focusFirst=e.focusFirst,e._windowRef.instance.results=n,e._windowRef.instance.term=e._elementRef.nativeElement.value,e.resultFormatter&&(e._windowRef.instance.formatter=e.resultFormatter),e.resultTemplate&&(e._windowRef.instance.resultTemplate=e.resultTemplate),e._windowRef.instance.resetActive(),e._windowRef.changeDetectorRef.detectChanges(),e._showHint()):e._closePopup();var t=n.length;e._live.say(0===t?"No results available":t+" result"+(1===t?"":"s")+" available")})},n.prototype._unsubscribeFromUserInput=function(){this._subscription&&this._subscription.unsubscribe(),this._subscription=null},n}(),Yt=function(){function n(){}return n.forRoot=function(){return{ngModule:n,providers:[qt,Gt,{provide:Bt,useValue:100}]}},n}(),Jt=function(){},Xt=function(){function n(n){this.modalService=n}return n.prototype.open=function(n){var e=this;this.modalService.open(n).result.then(function(n){e.closeResult="Closed with: "+n},function(n){e.closeResult="Dismissed "+e.getDismissReason(n)})},n.prototype.getDismissReason=function(n){return n===Ke.ESC?"by pressing ESC":n===Ke.BACKDROP_CLICK?"by clicking on a backdrop":"with: "+n},n}(),Qt=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function nl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,5,"div",[["class","modal-header"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"h4",[["class","modal-title"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Modal title"])),(n()(),l["\u0275eld"](3,0,null,null,2,"button",[["aria-label","Close"],["class","close"],["type","button"]],null,[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.context.dismiss("Cross click")&&l),l},null,null)),(n()(),l["\u0275eld"](4,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["\xd7"])),(n()(),l["\u0275eld"](6,0,null,null,2,"div",[["class","modal-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](7,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["One fine body\u2026"])),(n()(),l["\u0275eld"](9,0,null,null,2,"div",[["class","modal-footer"]],null,null,null,null,null)),(n()(),l["\u0275eld"](10,0,null,null,1,"button",[["class","btn btn-secondary"],["type","button"]],null,[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.context.close("Close click")&&l),l},null,null)),(n()(),l["\u0275ted"](-1,null,["Close"]))],null,null)}function el(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,8,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,7,"div",[["class","col-sm-12"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,6,"div",[["class","card mb-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Modal"])),(n()(),l["\u0275eld"](5,0,null,null,3,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](6,0,null,null,1,"button",[["class","btn btn-primary"]],null,[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(o=!1!==n.component.open(l["\u0275nov"](n,8))&&o),o},null,null)),(n()(),l["\u0275ted"](-1,null,["Large modal"])),(n()(),l["\u0275and"](0,[["content",2]],null,0,null,nl))],null,null)}var tl=t("4lDY"),ll=t("o1U6"),ol=t("e5OV"),il=function(){function n(){this.alerts=[],this.alerts.push({id:1,type:"success",message:"This is an success alert"},{id:2,type:"info",message:"This is an info alert"},{id:3,type:"warning",message:"This is a warning alert"},{id:4,type:"danger",message:"This is a danger alert"})}return n.prototype.ngOnInit=function(){},n.prototype.closeAlert=function(n){var e=this.alerts.indexOf(n);this.alerts.splice(e,1)},n}(),ul=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function rl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,2,"ngb-alert",[],null,[[null,"close"]],function(n,e,t){var l=!0;return"close"===e&&(l=!1!==n.component.closeAlert(n.context.$implicit)&&l),l},tl.c,tl.b)),l["\u0275did"](2,49152,null,0,ll.a,[ol.a],{type:[0,"type"]},{close:"close"}),(n()(),l["\u0275ted"](3,0,["",""]))],function(n,e){n(e,2,0,e.context.$implicit.type)},function(n,e){n(e,3,0,e.context.$implicit.message)})}function al(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,7,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,6,"div",[["class","col-lg-12"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,5,"div",[["class","card mb-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Buttons"])),(n()(),l["\u0275eld"](5,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,rl)),l["\u0275did"](7,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){n(e,7,0,e.component.alerts)},null)}var sl=function(){function n(n){this.formBuilder=n,this.model=1}return n.prototype.ngOnInit=function(){this.radioGroupForm=this.formBuilder.group({model:"middle"})},n}(),cl=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function dl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,71,"div",[["class","row mb-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,32,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,31,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,4,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[" Radio Button group ("])),(n()(),l["\u0275eld"](5,0,null,null,1,"strong",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Using ngModel"])),(n()(),l["\u0275ted"](-1,null,[") "])),(n()(),l["\u0275eld"](8,0,null,null,25,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](9,0,null,null,20,"div",[["class","btn-group btn-group-toggle mb-3"],["name","radioBasic"],["ngbRadioGroup",""],["role","group"]],[[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,"ngModelChange"]],function(n,e,t){var l=!0;return"ngModelChange"===e&&(l=!1!==(n.component.model=t)&&l),l},null,null)),l["\u0275did"](10,16384,null,0,Yn,[],{name:[0,"name"]},null),l["\u0275prd"](1024,null,F,function(n){return[n]},[Yn]),l["\u0275did"](12,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{name:[0,"name"],model:[1,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](14,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](15,0,null,null,4,"label",[["class","btn-primary"],["ngbButtonLabel",""]],[[2,"btn",null],[2,"active",null],[2,"disabled",null],[2,"focus",null]],null,null,null,null)),l["\u0275did"](16,16384,null,0,v,[],null,null),(n()(),l["\u0275eld"](17,0,null,null,1,"input",[["ngbButton",""],["type","radio"]],[[8,"checked",0],[8,"disabled",0],[8,"name",0]],[[null,"change"],[null,"focus"],[null,"blur"]],function(n,e,t){var o=!0;return"change"===e&&(o=!1!==l["\u0275nov"](n,18).onChange()&&o),"focus"===e&&(o=0!=(l["\u0275nov"](n,18).focused=!0)&&o),"blur"===e&&(o=0!=(l["\u0275nov"](n,18).focused=!1)&&o),o},null,null)),l["\u0275did"](18,147456,null,0,Jn,[Yn,v,l.Renderer2,l.ElementRef],{value:[0,"value"]},null),(n()(),l["\u0275ted"](-1,null,[" Left (pre-checked) "])),(n()(),l["\u0275eld"](20,0,null,null,4,"label",[["class","btn-primary"],["ngbButtonLabel",""]],[[2,"btn",null],[2,"active",null],[2,"disabled",null],[2,"focus",null]],null,null,null,null)),l["\u0275did"](21,16384,null,0,v,[],null,null),(n()(),l["\u0275eld"](22,0,null,null,1,"input",[["ngbButton",""],["type","radio"],["value","middle"]],[[8,"checked",0],[8,"disabled",0],[8,"name",0]],[[null,"change"],[null,"focus"],[null,"blur"]],function(n,e,t){var o=!0;return"change"===e&&(o=!1!==l["\u0275nov"](n,23).onChange()&&o),"focus"===e&&(o=0!=(l["\u0275nov"](n,23).focused=!0)&&o),"blur"===e&&(o=0!=(l["\u0275nov"](n,23).focused=!1)&&o),o},null,null)),l["\u0275did"](23,147456,null,0,Jn,[Yn,v,l.Renderer2,l.ElementRef],{value:[0,"value"]},null),(n()(),l["\u0275ted"](-1,null,[" Middle "])),(n()(),l["\u0275eld"](25,0,null,null,4,"label",[["class","btn-primary"],["ngbButtonLabel",""]],[[2,"btn",null],[2,"active",null],[2,"disabled",null],[2,"focus",null]],null,null,null,null)),l["\u0275did"](26,16384,null,0,v,[],null,null),(n()(),l["\u0275eld"](27,0,null,null,1,"input",[["ngbButton",""],["type","radio"]],[[8,"checked",0],[8,"disabled",0],[8,"name",0]],[[null,"change"],[null,"focus"],[null,"blur"]],function(n,e,t){var o=!0;return"change"===e&&(o=!1!==l["\u0275nov"](n,28).onChange()&&o),"focus"===e&&(o=0!=(l["\u0275nov"](n,28).focused=!0)&&o),"blur"===e&&(o=0!=(l["\u0275nov"](n,28).focused=!1)&&o),o},null,null)),l["\u0275did"](28,147456,null,0,Jn,[Yn,v,l.Renderer2,l.ElementRef],{value:[0,"value"]},null),(n()(),l["\u0275ted"](-1,null,[" Right "])),(n()(),l["\u0275eld"](30,0,null,null,3,"div",[["class","alert alert-info mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](31,0,null,null,1,"strong",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Selected Value: "])),(n()(),l["\u0275ted"](33,null,[""," "])),(n()(),l["\u0275eld"](34,0,null,null,37,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](35,0,null,null,36,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](36,0,null,null,4,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[" Radio Button group ("])),(n()(),l["\u0275eld"](38,0,null,null,1,"strong",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Ractive Forms"])),(n()(),l["\u0275ted"](-1,null,[") "])),(n()(),l["\u0275eld"](41,0,null,null,30,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](42,0,null,null,25,"form",[["class","mb-3"],["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(n,e,t){var o=!0;return"submit"===e&&(o=!1!==l["\u0275nov"](n,44).onSubmit(t)&&o),"reset"===e&&(o=!1!==l["\u0275nov"](n,44).onReset()&&o),o},null,null)),l["\u0275did"](43,16384,null,0,Gn,[],null,null),l["\u0275did"](44,540672,null,0,Fn,[[8,null],[8,null]],{form:[0,"form"]},null),l["\u0275prd"](2048,null,V,null,[Fn]),l["\u0275did"](46,16384,null,0,Cn,[[4,V]],null,null),(n()(),l["\u0275eld"](47,0,null,null,20,"div",[["class","btn-group btn-group-toggle"],["formControlName","model"],["name","radioBasic"],["ngbRadioGroup",""],["role","group"]],[[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,null,null)),l["\u0275did"](48,16384,null,0,Yn,[],{name:[0,"name"]},null),l["\u0275prd"](1024,null,F,function(n){return[n]},[Yn]),l["\u0275did"](50,671744,null,0,Bn,[[3,V],[8,null],[8,null],[6,F],[2,jn]],{name:[0,"name"]},null),l["\u0275prd"](2048,null,$,null,[Bn]),l["\u0275did"](52,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](53,0,null,null,4,"label",[["class","btn-primary"],["ngbButtonLabel",""]],[[2,"btn",null],[2,"active",null],[2,"disabled",null],[2,"focus",null]],null,null,null,null)),l["\u0275did"](54,16384,null,0,v,[],null,null),(n()(),l["\u0275eld"](55,0,null,null,1,"input",[["ngbButton",""],["type","radio"]],[[8,"checked",0],[8,"disabled",0],[8,"name",0]],[[null,"change"],[null,"focus"],[null,"blur"]],function(n,e,t){var o=!0;return"change"===e&&(o=!1!==l["\u0275nov"](n,56).onChange()&&o),"focus"===e&&(o=0!=(l["\u0275nov"](n,56).focused=!0)&&o),"blur"===e&&(o=0!=(l["\u0275nov"](n,56).focused=!1)&&o),o},null,null)),l["\u0275did"](56,147456,null,0,Jn,[Yn,v,l.Renderer2,l.ElementRef],{value:[0,"value"]},null),(n()(),l["\u0275ted"](-1,null,[" Left (pre-checked) "])),(n()(),l["\u0275eld"](58,0,null,null,4,"label",[["class","btn-primary"],["ngbButtonLabel",""]],[[2,"btn",null],[2,"active",null],[2,"disabled",null],[2,"focus",null]],null,null,null,null)),l["\u0275did"](59,16384,null,0,v,[],null,null),(n()(),l["\u0275eld"](60,0,null,null,1,"input",[["ngbButton",""],["type","radio"],["value","middle"]],[[8,"checked",0],[8,"disabled",0],[8,"name",0]],[[null,"change"],[null,"focus"],[null,"blur"]],function(n,e,t){var o=!0;return"change"===e&&(o=!1!==l["\u0275nov"](n,61).onChange()&&o),"focus"===e&&(o=0!=(l["\u0275nov"](n,61).focused=!0)&&o),"blur"===e&&(o=0!=(l["\u0275nov"](n,61).focused=!1)&&o),o},null,null)),l["\u0275did"](61,147456,null,0,Jn,[Yn,v,l.Renderer2,l.ElementRef],{value:[0,"value"]},null),(n()(),l["\u0275ted"](-1,null,[" Middle "])),(n()(),l["\u0275eld"](63,0,null,null,4,"label",[["class","btn-primary"],["ngbButtonLabel",""]],[[2,"btn",null],[2,"active",null],[2,"disabled",null],[2,"focus",null]],null,null,null,null)),l["\u0275did"](64,16384,null,0,v,[],null,null),(n()(),l["\u0275eld"](65,0,null,null,1,"input",[["ngbButton",""],["type","radio"]],[[8,"checked",0],[8,"disabled",0],[8,"name",0]],[[null,"change"],[null,"focus"],[null,"blur"]],function(n,e,t){var o=!0;return"change"===e&&(o=!1!==l["\u0275nov"](n,66).onChange()&&o),"focus"===e&&(o=0!=(l["\u0275nov"](n,66).focused=!0)&&o),"blur"===e&&(o=0!=(l["\u0275nov"](n,66).focused=!1)&&o),o},null,null)),l["\u0275did"](66,147456,null,0,Jn,[Yn,v,l.Renderer2,l.ElementRef],{value:[0,"value"]},null),(n()(),l["\u0275ted"](-1,null,[" Right "])),(n()(),l["\u0275eld"](68,0,null,null,3,"div",[["class","alert alert-info mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](69,0,null,null,1,"strong",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Selected Value: "])),(n()(),l["\u0275ted"](71,null,[""," "]))],function(n,e){var t=e.component;n(e,10,0,"radioBasic"),n(e,12,0,"radioBasic",t.model),n(e,18,0,1),n(e,23,0,"middle"),n(e,28,0,!1),n(e,44,0,t.radioGroupForm),n(e,48,0,"radioBasic"),n(e,50,0,"model"),n(e,56,0,1),n(e,61,0,"middle"),n(e,66,0,!1)},function(n,e){var t=e.component;n(e,9,0,l["\u0275nov"](e,14).ngClassUntouched,l["\u0275nov"](e,14).ngClassTouched,l["\u0275nov"](e,14).ngClassPristine,l["\u0275nov"](e,14).ngClassDirty,l["\u0275nov"](e,14).ngClassValid,l["\u0275nov"](e,14).ngClassInvalid,l["\u0275nov"](e,14).ngClassPending),n(e,15,0,!0,l["\u0275nov"](e,16).active,l["\u0275nov"](e,16).disabled,l["\u0275nov"](e,16).focused),n(e,17,0,l["\u0275nov"](e,18).checked,l["\u0275nov"](e,18).disabled,l["\u0275nov"](e,18).nameAttr),n(e,20,0,!0,l["\u0275nov"](e,21).active,l["\u0275nov"](e,21).disabled,l["\u0275nov"](e,21).focused),n(e,22,0,l["\u0275nov"](e,23).checked,l["\u0275nov"](e,23).disabled,l["\u0275nov"](e,23).nameAttr),n(e,25,0,!0,l["\u0275nov"](e,26).active,l["\u0275nov"](e,26).disabled,l["\u0275nov"](e,26).focused),n(e,27,0,l["\u0275nov"](e,28).checked,l["\u0275nov"](e,28).disabled,l["\u0275nov"](e,28).nameAttr),n(e,33,0,t.model),n(e,42,0,l["\u0275nov"](e,46).ngClassUntouched,l["\u0275nov"](e,46).ngClassTouched,l["\u0275nov"](e,46).ngClassPristine,l["\u0275nov"](e,46).ngClassDirty,l["\u0275nov"](e,46).ngClassValid,l["\u0275nov"](e,46).ngClassInvalid,l["\u0275nov"](e,46).ngClassPending),n(e,47,0,l["\u0275nov"](e,52).ngClassUntouched,l["\u0275nov"](e,52).ngClassTouched,l["\u0275nov"](e,52).ngClassPristine,l["\u0275nov"](e,52).ngClassDirty,l["\u0275nov"](e,52).ngClassValid,l["\u0275nov"](e,52).ngClassInvalid,l["\u0275nov"](e,52).ngClassPending),n(e,53,0,!0,l["\u0275nov"](e,54).active,l["\u0275nov"](e,54).disabled,l["\u0275nov"](e,54).focused),n(e,55,0,l["\u0275nov"](e,56).checked,l["\u0275nov"](e,56).disabled,l["\u0275nov"](e,56).nameAttr),n(e,58,0,!0,l["\u0275nov"](e,59).active,l["\u0275nov"](e,59).disabled,l["\u0275nov"](e,59).focused),n(e,60,0,l["\u0275nov"](e,61).checked,l["\u0275nov"](e,61).disabled,l["\u0275nov"](e,61).nameAttr),n(e,63,0,!0,l["\u0275nov"](e,64).active,l["\u0275nov"](e,64).disabled,l["\u0275nov"](e,64).focused),n(e,65,0,l["\u0275nov"](e,66).checked,l["\u0275nov"](e,66).disabled,l["\u0275nov"](e,66).nameAttr),n(e,71,0,t.radioGroupForm.value.model)})}var pl=function(){this.isCollapsed=!1},hl=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function fl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,13,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,12,"div",[["class","col-lg-12"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,11,"div",[["class","card mb-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Collapse"])),(n()(),l["\u0275eld"](5,0,null,null,8,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](6,0,null,null,2,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](7,0,null,null,1,"button",[["aria-controls","collapseExample"],["class","btn btn-outline-primary"],["type","button"]],[[1,"aria-expanded",0]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=0!=(o.isCollapsed=!o.isCollapsed)&&l),l},null,null)),(n()(),l["\u0275ted"](-1,null,[" Toggle "])),(n()(),l["\u0275eld"](9,0,null,null,4,"div",[["id","collapseExample"]],[[2,"collapse",null],[2,"show",null]],null,null,null,null)),l["\u0275did"](10,16384,null,0,ne,[],{collapsed:[0,"collapsed"]},null),(n()(),l["\u0275eld"](11,0,null,null,2,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](12,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[" You can collapse this card by clicking Toggle "]))],function(n,e){n(e,10,0,e.component.isCollapsed)},function(n,e){n(e,7,0,!e.component.isCollapsed),n(e,9,0,!0,!l["\u0275nov"](e,10).collapsed)})}var ml=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),gl=l["\u0275crt"]({encapsulation:0,styles:[["[_nghost-%COMP%] .datepicker-input .custom-select{width:50%}"]],data:{}});function vl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,28,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,27,"div",[["class","col-lg-12"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,26,"div",[["class","card mb-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Date Picker"])),(n()(),l["\u0275eld"](5,0,null,null,23,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](6,0,null,null,17,"form",[["class","form-inline mb-3"],["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(n,e,t){var o=!0;return"submit"===e&&(o=!1!==l["\u0275nov"](n,8).onSubmit(t)&&o),"reset"===e&&(o=!1!==l["\u0275nov"](n,8).onReset()&&o),o},null,null)),l["\u0275did"](7,16384,null,0,Gn,[],null,null),l["\u0275did"](8,4210688,null,0,Mn,[[8,null],[8,null]],null,null),l["\u0275prd"](2048,null,V,null,[Mn]),l["\u0275did"](10,16384,null,0,Cn,[[4,V]],null,null),(n()(),l["\u0275eld"](11,0,null,null,12,"div",[["class","form-group"]],null,null,null,null,null)),(n()(),l["\u0275eld"](12,0,null,null,11,"div",[["class","input-group datepicker-input"]],null,null,null,null,null)),(n()(),l["\u0275eld"](13,16777216,null,null,8,"input",[["class","form-control"],["name","dp"],["ngbDatepicker",""],["placeholder","yyyy-mm-dd"]],[[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]],[[null,"ngModelChange"],[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"],[null,"keyup.esc"]],function(n,e,t){var o=!0,i=n.component;return"input"===e&&(o=!1!==l["\u0275nov"](n,14)._handleInput(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,14).onTouched()&&o),"compositionstart"===e&&(o=!1!==l["\u0275nov"](n,14)._compositionStart()&&o),"compositionend"===e&&(o=!1!==l["\u0275nov"](n,14)._compositionEnd(t.target.value)&&o),"input"===e&&(o=!1!==l["\u0275nov"](n,16).manualDateChange(t.target.value)&&o),"change"===e&&(o=!1!==l["\u0275nov"](n,16).manualDateChange(t.target.value,!0)&&o),"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,16).close()&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,16).onBlur()&&o),"ngModelChange"===e&&(o=!1!==(i.model=t)&&o),o},null,null)),l["\u0275did"](14,16384,null,0,L,[l.Renderer2,l.ElementRef,[2,z]],null,null),l["\u0275prd"](512,null,Ce,Ce,[pe,_e]),l["\u0275did"](16,671744,[["d",4]],0,je,[Te,l.ElementRef,l.ViewContainerRef,l.Renderer2,l.ComponentFactoryResolver,l.NgZone,Ce,pe,Pe,ue],null,null),l["\u0275prd"](1024,null,M,function(n){return[n]},[je]),l["\u0275prd"](1024,null,F,function(n,e){return[n,e]},[L,je]),l["\u0275did"](19,671744,null,0,An,[[2,V],[6,M],[8,null],[6,F]],{name:[0,"name"],model:[1,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](21,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](22,0,null,null,1,"button",[["class","input-group-addon"],["type","button"]],null,[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(o=!1!==l["\u0275nov"](n,16).toggle()&&o),o},null,null)),(n()(),l["\u0275eld"](23,0,null,null,0,"span",[["class","fa fa-calendar"]],null,null,null,null,null)),(n()(),l["\u0275eld"](24,0,null,null,4,"div",[["class","alert alert-info mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](25,0,null,null,1,"strong",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Model: "])),(n()(),l["\u0275ted"](27,null,[" "," "])),l["\u0275pid"](0,te.g,[])],function(n,e){n(e,19,0,"dp",e.component.model)},function(n,e){var t=e.component;n(e,6,0,l["\u0275nov"](e,10).ngClassUntouched,l["\u0275nov"](e,10).ngClassTouched,l["\u0275nov"](e,10).ngClassPristine,l["\u0275nov"](e,10).ngClassDirty,l["\u0275nov"](e,10).ngClassValid,l["\u0275nov"](e,10).ngClassInvalid,l["\u0275nov"](e,10).ngClassPending),n(e,13,0,l["\u0275nov"](e,16).disabled,l["\u0275nov"](e,21).ngClassUntouched,l["\u0275nov"](e,21).ngClassTouched,l["\u0275nov"](e,21).ngClassPristine,l["\u0275nov"](e,21).ngClassDirty,l["\u0275nov"](e,21).ngClassValid,l["\u0275nov"](e,21).ngClassInvalid,l["\u0275nov"](e,21).ngClassPending),n(e,27,0,l["\u0275unv"](e,27,0,l["\u0275nov"](e,28).transform(t.model)))})}var bl=t("lwpf"),yl=t("ebCm"),_l=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),wl=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function Cl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,69,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Dropdown"])),(n()(),l["\u0275eld"](3,0,null,null,66,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](4,0,null,null,34,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](5,0,null,null,16,"div",[["class","col"]],null,null,null,null,null)),(n()(),l["\u0275eld"](6,0,null,null,15,"div",[["class","d-inline-block dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(n,e,t){var o=!0;return"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,7).closeFromOutsideEsc()&&o),"document:click"===e&&(o=!1!==l["\u0275nov"](n,7).closeFromClick(t)&&o),o},null,null)),l["\u0275did"](7,212992,null,2,bl.a,[yl.a,l.NgZone],null,null),l["\u0275qud"](335544320,1,{_menu:0}),l["\u0275qud"](335544320,2,{_anchor:0}),(n()(),l["\u0275eld"](10,0,null,null,3,"button",[["aria-haspopup","true"],["class","btn btn-outline-primary dropdown-toggle"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(o=!1!==l["\u0275nov"](n,11).toggleOpen()&&o),o},null,null)),l["\u0275did"](11,16384,null,0,bl.d,[bl.a,l.ElementRef],null,null),l["\u0275prd"](2048,[[2,4]],bl.b,null,[bl.d]),(n()(),l["\u0275ted"](-1,null,["Toggle dropdown"])),(n()(),l["\u0275eld"](14,0,null,null,7,"div",[["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),l["\u0275did"](15,16384,[[1,4]],0,bl.c,[bl.a,l.ElementRef,l.Renderer2],null,null),(n()(),l["\u0275eld"](16,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Action"])),(n()(),l["\u0275eld"](18,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Another Action"])),(n()(),l["\u0275eld"](20,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Something else is here"])),(n()(),l["\u0275eld"](22,0,null,null,16,"div",[["class","col text-right"]],null,null,null,null,null)),(n()(),l["\u0275eld"](23,0,null,null,15,"div",[["class","d-inline-block dropdown"],["ngbDropdown",""],["placement","top-right"]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(n,e,t){var o=!0;return"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,24).closeFromOutsideEsc()&&o),"document:click"===e&&(o=!1!==l["\u0275nov"](n,24).closeFromClick(t)&&o),o},null,null)),l["\u0275did"](24,212992,null,2,bl.a,[yl.a,l.NgZone],{placement:[0,"placement"]},null),l["\u0275qud"](335544320,3,{_menu:0}),l["\u0275qud"](335544320,4,{_anchor:0}),(n()(),l["\u0275eld"](27,0,null,null,3,"button",[["aria-haspopup","true"],["class","btn btn-outline-primary dropdown-toggle"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(o=!1!==l["\u0275nov"](n,28).toggleOpen()&&o),o},null,null)),l["\u0275did"](28,16384,null,0,bl.d,[bl.a,l.ElementRef],null,null),l["\u0275prd"](2048,[[4,4]],bl.b,null,[bl.d]),(n()(),l["\u0275ted"](-1,null,["Toggle dropup"])),(n()(),l["\u0275eld"](31,0,null,null,7,"div",[["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),l["\u0275did"](32,16384,[[3,4]],0,bl.c,[bl.a,l.ElementRef,l.Renderer2],null,null),(n()(),l["\u0275eld"](33,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Action"])),(n()(),l["\u0275eld"](35,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Another Action"])),(n()(),l["\u0275eld"](37,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Something else is here"])),(n()(),l["\u0275eld"](39,0,null,null,0,"hr",[],null,null,null,null,null)),(n()(),l["\u0275eld"](40,0,null,null,1,"p",[["class","mb-2"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["You can easily control dropdowns programmatically using the exported dropdown instance."])),(n()(),l["\u0275eld"](42,0,null,null,15,"div",[["class","d-inline-block dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(n,e,t){var o=!0;return"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,43).closeFromOutsideEsc()&&o),"document:click"===e&&(o=!1!==l["\u0275nov"](n,43).closeFromClick(t)&&o),o},null,null)),l["\u0275did"](43,212992,[["myDrop",4]],2,bl.a,[yl.a,l.NgZone],null,null),l["\u0275qud"](335544320,5,{_menu:0}),l["\u0275qud"](335544320,6,{_anchor:0}),(n()(),l["\u0275eld"](46,0,null,null,3,"button",[["aria-haspopup","true"],["class","btn btn-outline-primary dropdown-toggle"],["ngbDropdownToggle",""]],[[1,"aria-expanded",0]],[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(o=!1!==l["\u0275nov"](n,47).toggleOpen()&&o),o},null,null)),l["\u0275did"](47,16384,null,0,bl.d,[bl.a,l.ElementRef],null,null),l["\u0275prd"](2048,[[6,4]],bl.b,null,[bl.d]),(n()(),l["\u0275ted"](-1,null,["Toggle dropdown"])),(n()(),l["\u0275eld"](50,0,null,null,7,"div",[["ngbDropdownMenu",""]],[[2,"dropdown-menu",null],[2,"show",null],[1,"x-placement",0]],null,null,null,null)),l["\u0275did"](51,16384,[[5,4]],0,bl.c,[bl.a,l.ElementRef,l.Renderer2],null,null),(n()(),l["\u0275eld"](52,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Action"])),(n()(),l["\u0275eld"](54,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Another Action"])),(n()(),l["\u0275eld"](56,0,null,null,1,"button",[["class","dropdown-item"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Something else is here"])),(n()(),l["\u0275eld"](58,0,null,null,5,"div",[["class","d-inline-block dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(n,e,t){var o=!0;return"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,59).closeFromOutsideEsc()&&o),"document:click"===e&&(o=!1!==l["\u0275nov"](n,59).closeFromClick(t)&&o),o},null,null)),l["\u0275did"](59,212992,[["myDrop",4]],2,bl.a,[yl.a,l.NgZone],null,null),l["\u0275qud"](335544320,7,{_menu:0}),l["\u0275qud"](335544320,8,{_anchor:0}),(n()(),l["\u0275eld"](62,0,null,null,1,"button",[["class","btn btn-outline-success"]],null,[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(t.stopPropagation(),o=!1!==l["\u0275nov"](n,65).open()&&o),o},null,null)),(n()(),l["\u0275ted"](-1,null,["Open from outside"])),(n()(),l["\u0275eld"](64,0,null,null,5,"div",[["class","d-inline-block dropdown"],["ngbDropdown",""]],[[2,"show",null]],[[null,"keyup.esc"],["document","click"]],function(n,e,t){var o=!0;return"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,65).closeFromOutsideEsc()&&o),"document:click"===e&&(o=!1!==l["\u0275nov"](n,65).closeFromClick(t)&&o),o},null,null)),l["\u0275did"](65,212992,[["myDrop",4]],2,bl.a,[yl.a,l.NgZone],null,null),l["\u0275qud"](335544320,9,{_menu:0}),l["\u0275qud"](335544320,10,{_anchor:0}),(n()(),l["\u0275eld"](68,0,null,null,1,"button",[["class","btn btn-outline-danger"]],null,[[null,"click"]],function(n,e,t){var o=!0;return"click"===e&&(t.stopPropagation(),o=!1!==l["\u0275nov"](n,65).close()&&o),o},null,null)),(n()(),l["\u0275ted"](-1,null,["Close from outside"]))],function(n,e){n(e,7,0),n(e,24,0,"top-right"),n(e,43,0),n(e,59,0),n(e,65,0)},function(n,e){n(e,6,0,l["\u0275nov"](e,7).isOpen()),n(e,10,0,l["\u0275nov"](e,11).dropdown.isOpen()),n(e,14,0,!0,l["\u0275nov"](e,15).dropdown.isOpen(),l["\u0275nov"](e,15).placement),n(e,23,0,l["\u0275nov"](e,24).isOpen()),n(e,27,0,l["\u0275nov"](e,28).dropdown.isOpen()),n(e,31,0,!0,l["\u0275nov"](e,32).dropdown.isOpen(),l["\u0275nov"](e,32).placement),n(e,42,0,l["\u0275nov"](e,43).isOpen()),n(e,46,0,l["\u0275nov"](e,47).dropdown.isOpen()),n(e,50,0,!0,l["\u0275nov"](e,51).dropdown.isOpen(),l["\u0275nov"](e,51).placement),n(e,58,0,l["\u0275nov"](e,59).isOpen()),n(e,64,0,l["\u0275nov"](e,65).isOpen())})}var Ol=l["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Dl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"li",[["class","page-item"]],[[2,"disabled",null]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,2,"a",[["aria-label","First"],["class","page-link"],["href",""]],[[1,"tabindex",0]],[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=0!=!!n.component.selectPage(1)&&l),l},null,null)),(n()(),l["\u0275eld"](2,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["\xab\xab"]))],null,function(n,e){var t=e.component;n(e,0,0,!t.hasPrevious()||t.disabled),n(e,1,0,t.hasPrevious()?null:"-1")})}function Rl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"li",[["class","page-item"]],[[2,"disabled",null]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,2,"a",[["aria-label","Previous"],["class","page-link"],["href",""]],[[1,"tabindex",0]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=0!=!!o.selectPage(o.page-1)&&l),l},null,null)),(n()(),l["\u0275eld"](2,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["\xab"]))],null,function(n,e){var t=e.component;n(e,0,0,!t.hasPrevious()||t.disabled),n(e,1,0,t.hasPrevious()?null:"-1")})}function kl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"a",[["class","page-link"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["..."]))],null,null)}function xl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["(current)"]))],null,null)}function Pl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"a",[["class","page-link"],["href",""]],null,[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=0!=!!n.component.selectPage(n.parent.context.$implicit)&&l),l},null,null)),(n()(),l["\u0275ted"](1,null,[" "," "])),(n()(),l["\u0275and"](16777216,null,null,1,null,xl)),l["\u0275did"](3,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(n,e){n(e,3,0,e.parent.context.$implicit===e.component.page)},function(n,e){n(e,1,0,e.parent.context.$implicit)})}function Vl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"li",[["class","page-item"]],[[2,"active",null],[2,"disabled",null]],null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,kl)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Pl)),l["\u0275did"](4,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(n,e){var t=e.component;n(e,2,0,t.isEllipsis(e.context.$implicit)),n(e,4,0,!t.isEllipsis(e.context.$implicit))},function(n,e){var t=e.component;n(e,0,0,e.context.$implicit===t.page,t.isEllipsis(e.context.$implicit)||t.disabled)})}function El(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"li",[["class","page-item"]],[[2,"disabled",null]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,2,"a",[["aria-label","Next"],["class","page-link"],["href",""]],[[1,"tabindex",0]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=0!=!!o.selectPage(o.page+1)&&l),l},null,null)),(n()(),l["\u0275eld"](2,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["\xbb"]))],null,function(n,e){var t=e.component;n(e,0,0,!t.hasNext()||t.disabled),n(e,1,0,t.hasNext()?null:"-1")})}function Ml(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"li",[["class","page-item"]],[[2,"disabled",null]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,2,"a",[["aria-label","Last"],["class","page-link"],["href",""]],[[1,"tabindex",0]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=0!=!!o.selectPage(o.pageCount)&&l),l},null,null)),(n()(),l["\u0275eld"](2,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["\xbb\xbb"]))],null,function(n,e){var t=e.component;n(e,0,0,!t.hasNext()||t.disabled),n(e,1,0,t.hasNext()?null:"-1")})}function Sl(n){return l["\u0275vid"](2,[(n()(),l["\u0275eld"](0,0,null,null,10,"ul",[],[[8,"className",0]],null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Dl)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Rl)),l["\u0275did"](4,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Vl)),l["\u0275did"](6,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,El)),l["\u0275did"](8,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Ml)),l["\u0275did"](10,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(n,e){var t=e.component;n(e,2,0,t.boundaryLinks),n(e,4,0,t.directionLinks),n(e,6,0,t.pages),n(e,8,0,t.directionLinks),n(e,10,0,t.boundaryLinks)},function(n,e){var t=e.component;n(e,0,0,"pagination"+(t.size?" pagination-"+t.size:""))})}var Tl=function(){function n(){this.defaultPagination=1,this.advancedPagination=1,this.paginationSize=1,this.disabledPagination=1,this.isDisabled=!0}return n.prototype.toggleDisabled=function(){this.isDisabled=!this.isDisabled},n}(),Il=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function Al(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,42,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,20,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,19,"div",[["class","card mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Basic Pagination"])),(n()(),l["\u0275eld"](5,0,null,null,16,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](6,0,null,null,1,"div",[["class","text-uppercase text-muted fs-12"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Default pagination"])),(n()(),l["\u0275eld"](8,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.defaultPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](9,573440,null,0,ot,[lt],{collectionSize:[0,"collectionSize"],page:[1,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](10,0,null,null,1,"div",[["class","text-uppercase text-muted fs-12"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["directionLinks = false"])),(n()(),l["\u0275eld"](12,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.defaultPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](13,573440,null,0,ot,[lt],{directionLinks:[0,"directionLinks"],collectionSize:[1,"collectionSize"],page:[2,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](14,0,null,null,1,"div",[["class","text-uppercase text-muted fs-12"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["boundaryLinks = true"])),(n()(),l["\u0275eld"](16,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.defaultPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](17,573440,null,0,ot,[lt],{boundaryLinks:[0,"boundaryLinks"],collectionSize:[1,"collectionSize"],page:[2,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](18,0,null,null,3,"div",[["class","alert alert-info"]],null,null,null,null,null)),(n()(),l["\u0275eld"](19,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Current page: "])),(n()(),l["\u0275ted"](21,null,[""," "])),(n()(),l["\u0275eld"](22,0,null,null,20,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](23,0,null,null,19,"div",[["class","card mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](24,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Advanced Pagination"])),(n()(),l["\u0275eld"](26,0,null,null,16,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](27,0,null,null,1,"div",[["class","text-uppercase text-muted fs-12"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["maxSize = 5, rotate = false"])),(n()(),l["\u0275eld"](29,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.advancedPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](30,573440,null,0,ot,[lt],{boundaryLinks:[0,"boundaryLinks"],collectionSize:[1,"collectionSize"],maxSize:[2,"maxSize"],page:[3,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](31,0,null,null,1,"div",[["class","text-uppercase text-muted fs-12"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["maxSize = 5, rotate = true"])),(n()(),l["\u0275eld"](33,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.advancedPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](34,573440,null,0,ot,[lt],{boundaryLinks:[0,"boundaryLinks"],rotate:[1,"rotate"],collectionSize:[2,"collectionSize"],maxSize:[3,"maxSize"],page:[4,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](35,0,null,null,1,"div",[["class","text-uppercase text-muted fs-12"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["maxSize = 5, rotate = true, ellipses = false"])),(n()(),l["\u0275eld"](37,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.advancedPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](38,573440,null,0,ot,[lt],{boundaryLinks:[0,"boundaryLinks"],ellipses:[1,"ellipses"],rotate:[2,"rotate"],collectionSize:[3,"collectionSize"],maxSize:[4,"maxSize"],page:[5,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](39,0,null,null,3,"div",[["class","alert alert-info"]],null,null,null,null,null)),(n()(),l["\u0275eld"](40,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Current page: "])),(n()(),l["\u0275ted"](42,null,[""," "])),(n()(),l["\u0275eld"](43,0,null,null,23,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](44,0,null,null,10,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](45,0,null,null,9,"div",[["class","card mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](46,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Pagination size"])),(n()(),l["\u0275eld"](48,0,null,null,6,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](49,0,null,null,1,"ngb-pagination",[["role","navigation"],["size","lg"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.paginationSize=t)&&l),l},Sl,Ol)),l["\u0275did"](50,573440,null,0,ot,[lt],{collectionSize:[0,"collectionSize"],page:[1,"page"],size:[2,"size"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](51,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.paginationSize=t)&&l),l},Sl,Ol)),l["\u0275did"](52,573440,null,0,ot,[lt],{collectionSize:[0,"collectionSize"],page:[1,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](53,0,null,null,1,"ngb-pagination",[["role","navigation"],["size","sm"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.paginationSize=t)&&l),l},Sl,Ol)),l["\u0275did"](54,573440,null,0,ot,[lt],{collectionSize:[0,"collectionSize"],page:[1,"page"],size:[2,"size"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](55,0,null,null,11,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](56,0,null,null,10,"div",[["class","card mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](57,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Disabled pagination"])),(n()(),l["\u0275eld"](59,0,null,null,7,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](60,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Pagination control can be disabled:"])),(n()(),l["\u0275eld"](62,0,null,null,1,"ngb-pagination",[["role","navigation"]],null,[[null,"pageChange"]],function(n,e,t){var l=!0;return"pageChange"===e&&(l=!1!==(n.component.disabledPagination=t)&&l),l},Sl,Ol)),l["\u0275did"](63,573440,null,0,ot,[lt],{disabled:[0,"disabled"],collectionSize:[1,"collectionSize"],page:[2,"page"]},{pageChange:"pageChange"}),(n()(),l["\u0275eld"](64,0,null,null,0,"hr",[],null,null,null,null,null)),(n()(),l["\u0275eld"](65,0,null,null,1,"button",[["class","btn btn-outline-primary"]],null,[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.component.toggleDisabled()&&l),l},null,null)),(n()(),l["\u0275ted"](-1,null,[" Toggle disabled "]))],function(n,e){var t=e.component;n(e,9,0,70,t.defaultPagination),n(e,13,0,!1,70,t.defaultPagination),n(e,17,0,!0,70,t.defaultPagination),n(e,30,0,!0,120,5,t.advancedPagination),n(e,34,0,!0,!0,120,5,t.advancedPagination),n(e,38,0,!0,!1,!0,120,5,t.advancedPagination),n(e,50,0,50,t.paginationSize,"lg"),n(e,52,0,50,t.paginationSize),n(e,54,0,50,t.paginationSize,"sm"),n(e,63,0,t.isDisabled,70,t.disabledPagination)},function(n,e){var t=e.component;n(e,21,0,t.defaultPagination),n(e,42,0,t.advancedPagination)})}var jl=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),Fl=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function Nl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,15,"div",[["class","card mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[" Pop over "])),(n()(),l["\u0275eld"](3,0,null,null,12,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](4,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbPopover","Vivamus sagittis lacus vel augue laoreet rutrum faucibus."],["placement","top"],["popoverTitle","Popover on top"],["type","button"]],null,null,null,null,null)),l["\u0275did"](5,737280,null,0,ht,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,ct,l.NgZone],{ngbPopover:[0,"ngbPopover"],popoverTitle:[1,"popoverTitle"],placement:[2,"placement"]},null),(n()(),l["\u0275ted"](-1,null,[" Popover on top "])),(n()(),l["\u0275eld"](7,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbPopover","Vivamus sagittis lacus vel augue laoreet rutrum faucibus."],["placement","right"],["popoverTitle","Popover on right"],["type","button"]],null,null,null,null,null)),l["\u0275did"](8,737280,null,0,ht,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,ct,l.NgZone],{ngbPopover:[0,"ngbPopover"],popoverTitle:[1,"popoverTitle"],placement:[2,"placement"]},null),(n()(),l["\u0275ted"](-1,null,[" Popover on right "])),(n()(),l["\u0275eld"](10,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbPopover","Vivamus sagittis lacus vel augue laoreet rutrum faucibus."],["placement","bottom"],["popoverTitle","Popover on bottom"],["type","button"]],null,null,null,null,null)),l["\u0275did"](11,737280,null,0,ht,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,ct,l.NgZone],{ngbPopover:[0,"ngbPopover"],popoverTitle:[1,"popoverTitle"],placement:[2,"placement"]},null),(n()(),l["\u0275ted"](-1,null,[" Popover on bottom "])),(n()(),l["\u0275eld"](13,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbPopover","Vivamus sagittis lacus vel augue laoreet rutrum faucibus."],["placement","left"],["popoverTitle","Popover on left"],["type","button"]],null,null,null,null,null)),l["\u0275did"](14,737280,null,0,ht,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,ct,l.NgZone],{ngbPopover:[0,"ngbPopover"],popoverTitle:[1,"popoverTitle"],placement:[2,"placement"]},null),(n()(),l["\u0275ted"](-1,null,[" Popover on left "]))],function(n,e){n(e,5,0,"Vivamus sagittis lacus vel augue laoreet rutrum faucibus.","Popover on top","top"),n(e,8,0,"Vivamus sagittis lacus vel augue laoreet rutrum faucibus.","Popover on right","right"),n(e,11,0,"Vivamus sagittis lacus vel augue laoreet rutrum faucibus.","Popover on bottom","bottom"),n(e,14,0,"Vivamus sagittis lacus vel augue laoreet rutrum faucibus.","Popover on left","left")},null)}var zl=l["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Ll(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"span",[],null,null,null,null,null)),(n()(),l["\u0275ted"](1,null,["","%"]))],null,function(n,e){n(e,1,0,e.component.getPercentValue())})}function Wl(n){return l["\u0275vid"](2,[(n()(),l["\u0275eld"](0,0,null,null,4,"div",[["class","progress"]],[[4,"height",null]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,3,"div",[["aria-valuemin","0"],["role","progressbar"]],[[8,"className",0],[4,"width","%"],[1,"aria-valuenow",0],[1,"aria-valuemax",0]],null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Ll)),l["\u0275did"](3,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),l["\u0275ncd"](null,0)],function(n,e){n(e,3,0,e.component.showValue)},function(n,e){var t=e.component;n(e,0,0,t.height),n(e,1,0,l["\u0275inlineInterpolate"](3,"progress-bar",t.type?" bg-"+t.type:"","",t.animated?" progress-bar-animated":"","",t.striped?" progress-bar-striped":"",""),t.getPercentValue(),t.getValue(),t.max)})}var Bl=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),ql=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function Gl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,32,"div",[["class","card mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Progressbar"])),(n()(),l["\u0275eld"](3,0,null,null,29,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](4,0,null,null,2,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](5,0,null,null,1,"ngb-progressbar",[["type","info"]],null,null,null,Wl,zl)),l["\u0275did"](6,49152,null,0,gt,[mt],{type:[0,"type"],value:[1,"value"]},null),(n()(),l["\u0275eld"](7,0,null,null,2,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](8,0,null,null,1,"ngb-progressbar",[["showValue","true"],["type","warning"]],null,null,null,Wl,zl)),l["\u0275did"](9,49152,null,0,gt,[mt],{max:[0,"max"],showValue:[1,"showValue"],type:[2,"type"],value:[3,"value"]},null),(n()(),l["\u0275eld"](10,0,null,null,2,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](11,0,null,null,1,"ngb-progressbar",[["type","danger"]],null,null,null,Wl,zl)),l["\u0275did"](12,49152,null,0,gt,[mt],{striped:[0,"striped"],type:[1,"type"],value:[2,"value"]},null),(n()(),l["\u0275eld"](13,0,null,null,3,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](14,0,null,null,2,"ngb-progressbar",[["type","success"]],null,null,null,Wl,zl)),l["\u0275did"](15,49152,null,0,gt,[mt],{type:[0,"type"],value:[1,"value"]},null),(n()(),l["\u0275ted"](-1,0,["25"])),(n()(),l["\u0275eld"](17,0,null,null,6,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](18,0,null,null,5,"ngb-progressbar",[["type","info"]],null,null,null,Wl,zl)),l["\u0275did"](19,49152,null,0,gt,[mt],{type:[0,"type"],value:[1,"value"]},null),(n()(),l["\u0275ted"](-1,0,["Copying file "])),(n()(),l["\u0275eld"](21,0,null,0,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["2 of 4"])),(n()(),l["\u0275ted"](-1,0,["..."])),(n()(),l["\u0275eld"](24,0,null,null,4,"p",[],null,null,null,null,null)),(n()(),l["\u0275eld"](25,0,null,null,3,"ngb-progressbar",[["type","warning"]],null,null,null,Wl,zl)),l["\u0275did"](26,49152,null,0,gt,[mt],{animated:[0,"animated"],striped:[1,"striped"],type:[2,"type"],value:[3,"value"]},null),(n()(),l["\u0275eld"](27,0,null,0,1,"i",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["50%"])),(n()(),l["\u0275eld"](29,0,null,null,3,"p",[["class","mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](30,0,null,null,2,"ngb-progressbar",[["type","danger"]],null,null,null,Wl,zl)),l["\u0275did"](31,49152,null,0,gt,[mt],{striped:[0,"striped"],type:[1,"type"],value:[2,"value"]},null),(n()(),l["\u0275ted"](-1,0,["Completed!"]))],function(n,e){n(e,6,0,"info",50),n(e,9,0,200,"true","warning",150),n(e,12,0,!0,"danger",100),n(e,15,0,"success",25),n(e,19,0,"info",50),n(e,26,0,!0,!0,"warning",75),n(e,31,0,!0,"danger",100)},null)}var $l=l["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Ul(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](0,null,null,0))],null,null)}function Hl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"li",[["class","nav-item"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,3,"a",[["class","nav-link"],["href",""],["role","tab"]],[[8,"id",0],[2,"active",null],[2,"disabled",null],[1,"tabindex",0],[1,"aria-controls",0],[1,"aria-expanded",0],[1,"aria-disabled",0]],[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=0!=!!n.component.select(n.context.$implicit.id)&&l),l},null,null)),(n()(),l["\u0275ted"](2,null,[" ",""])),(n()(),l["\u0275and"](16777216,null,null,1,null,Ul)),l["\u0275did"](4,540672,null,0,te.p,[l.ViewContainerRef],{ngTemplateOutlet:[0,"ngTemplateOutlet"]},null)],function(n,e){n(e,4,0,null==e.context.$implicit.titleTpl?null:e.context.$implicit.titleTpl.templateRef)},function(n,e){var t=e.component;n(e,1,0,e.context.$implicit.id,e.context.$implicit.id===t.activeId,e.context.$implicit.disabled,e.context.$implicit.disabled?"-1":void 0,t.destroyOnHide&&e.context.$implicit.id!==t.activeId?null:e.context.$implicit.id+"-panel",e.context.$implicit.id===t.activeId,e.context.$implicit.disabled),n(e,2,0,e.context.$implicit.title)})}function Kl(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](0,null,null,0))],null,null)}function Zl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,2,"div",[["role","tabpanel"]],[[8,"className",0],[1,"aria-labelledby",0],[8,"id",0],[1,"aria-expanded",0]],null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Kl)),l["\u0275did"](2,540672,null,0,te.p,[l.ViewContainerRef],{ngTemplateOutlet:[0,"ngTemplateOutlet"]},null)],function(n,e){n(e,2,0,null==e.parent.context.$implicit.contentTpl?null:e.parent.context.$implicit.contentTpl.templateRef)},function(n,e){var t=e.component;n(e,0,0,l["\u0275inlineInterpolate"](1,"tab-pane ",e.parent.context.$implicit.id===t.activeId?"active":null,""),e.parent.context.$implicit.id,l["\u0275inlineInterpolate"](1,"",e.parent.context.$implicit.id,"-panel"),e.parent.context.$implicit.id===t.activeId)})}function Yl(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](16777216,null,null,1,null,Zl)),l["\u0275did"](1,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](0,null,null,0))],function(n,e){var t=e.component;n(e,1,0,!t.destroyOnHide||e.context.$implicit.id===t.activeId)},null)}function Jl(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,2,"ul",[["role","tablist"]],[[8,"className",0]],null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Hl)),l["\u0275did"](2,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(n()(),l["\u0275eld"](3,0,null,null,2,"div",[["class","tab-content"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Yl)),l["\u0275did"](5,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){var t=e.component;n(e,2,0,t.tabs),n(e,5,0,t.tabs)},function(n,e){var t=e.component;n(e,0,0,"nav nav-"+t.type+("horizontal"==t.orientation?" "+t.justifyClass:" flex-column"))})}var Xl=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),Ql=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function no(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui."]))],null,null)}function eo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Fancy"])),(n()(),l["\u0275ted"](-1,null,[" title"]))],null,null)}function to(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park."]))],null,null)}function lo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui."]))],null,null)}function oo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui."]))],null,null)}function io(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Fancy"])),(n()(),l["\u0275ted"](-1,null,[" title"]))],null,null)}function uo(n){return l["\u0275vid"](0,[(n()(),l["\u0275ted"](-1,null,["Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. "])),(n()(),l["\u0275eld"](1,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park."]))],null,null)}function ro(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui."]))],null,null)}function ao(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,56,"div",[["class","row mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,27,"div",[["class","col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,26,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Tabset"])),(n()(),l["\u0275eld"](5,0,null,null,23,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](6,0,null,null,22,"ngb-tabset",[],null,null,null,Jl,$l)),l["\u0275did"](7,2146304,null,1,xt,[Ct],null,null),l["\u0275qud"](603979776,1,{tabs:1}),(n()(),l["\u0275eld"](9,0,null,null,5,"ngb-tab",[["title","Simple"]],null,null,null,null,null)),l["\u0275did"](10,2113536,[[1,4]],2,kt,[],{title:[0,"title"]},null),l["\u0275qud"](603979776,2,{titleTpls:1}),l["\u0275qud"](603979776,3,{contentTpls:1}),(n()(),l["\u0275and"](0,null,null,1,null,no)),l["\u0275did"](14,16384,[[3,4]],0,Rt,[l.TemplateRef],null,null),(n()(),l["\u0275eld"](15,0,null,null,7,"ngb-tab",[],null,null,null,null,null)),l["\u0275did"](16,2113536,[[1,4]],2,kt,[],null,null),l["\u0275qud"](603979776,4,{titleTpls:1}),l["\u0275qud"](603979776,5,{contentTpls:1}),(n()(),l["\u0275and"](0,null,null,1,null,eo)),l["\u0275did"](20,16384,[[4,4]],0,Dt,[l.TemplateRef],null,null),(n()(),l["\u0275and"](0,null,null,1,null,to)),l["\u0275did"](22,16384,[[5,4]],0,Rt,[l.TemplateRef],null,null),(n()(),l["\u0275eld"](23,0,null,null,5,"ngb-tab",[["title","Disabled"]],null,null,null,null,null)),l["\u0275did"](24,2113536,[[1,4]],2,kt,[],{title:[0,"title"],disabled:[1,"disabled"]},null),l["\u0275qud"](603979776,6,{titleTpls:1}),l["\u0275qud"](603979776,7,{contentTpls:1}),(n()(),l["\u0275and"](0,null,null,1,null,lo)),l["\u0275did"](28,16384,[[7,4]],0,Rt,[l.TemplateRef],null,null),(n()(),l["\u0275eld"](29,0,null,null,27,"div",[["class","col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](30,0,null,null,26,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](31,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Pills"])),(n()(),l["\u0275eld"](33,0,null,null,23,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](34,0,null,null,22,"ngb-tabset",[["type","pills"]],null,null,null,Jl,$l)),l["\u0275did"](35,2146304,null,1,xt,[Ct],{type:[0,"type"]},null),l["\u0275qud"](603979776,8,{tabs:1}),(n()(),l["\u0275eld"](37,0,null,null,5,"ngb-tab",[["title","Simple"]],null,null,null,null,null)),l["\u0275did"](38,2113536,[[8,4]],2,kt,[],{title:[0,"title"]},null),l["\u0275qud"](603979776,9,{titleTpls:1}),l["\u0275qud"](603979776,10,{contentTpls:1}),(n()(),l["\u0275and"](0,null,null,1,null,oo)),l["\u0275did"](42,16384,[[10,4]],0,Rt,[l.TemplateRef],null,null),(n()(),l["\u0275eld"](43,0,null,null,7,"ngb-tab",[],null,null,null,null,null)),l["\u0275did"](44,2113536,[[8,4]],2,kt,[],null,null),l["\u0275qud"](603979776,11,{titleTpls:1}),l["\u0275qud"](603979776,12,{contentTpls:1}),(n()(),l["\u0275and"](0,null,null,1,null,io)),l["\u0275did"](48,16384,[[11,4]],0,Dt,[l.TemplateRef],null,null),(n()(),l["\u0275and"](0,null,null,1,null,uo)),l["\u0275did"](50,16384,[[12,4]],0,Rt,[l.TemplateRef],null,null),(n()(),l["\u0275eld"](51,0,null,null,5,"ngb-tab",[["title","Disabled"]],null,null,null,null,null)),l["\u0275did"](52,2113536,[[8,4]],2,kt,[],{title:[0,"title"],disabled:[1,"disabled"]},null),l["\u0275qud"](603979776,13,{titleTpls:1}),l["\u0275qud"](603979776,14,{contentTpls:1}),(n()(),l["\u0275and"](0,null,null,1,null,ro)),l["\u0275did"](56,16384,[[14,4]],0,Rt,[l.TemplateRef],null,null)],function(n,e){n(e,10,0,"Simple"),n(e,24,0,"Disabled",!0),n(e,35,0,"pills"),n(e,38,0,"Simple"),n(e,52,0,"Disabled",!0)},null)}var so=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),co=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function po(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"em",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Tooltip"])),(n()(),l["\u0275eld"](2,0,null,null,1,"u",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["with"])),(n()(),l["\u0275eld"](4,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["HTML"]))],null,null)}function ho(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,19,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[" Tooltip "])),(n()(),l["\u0275eld"](3,0,null,null,16,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](4,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbTooltip","Tooltip on top"],["placement","top"],["type","button"]],null,null,null,null,null)),l["\u0275did"](5,212992,null,0,jt,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,Tt,l.NgZone],{placement:[0,"placement"],ngbTooltip:[1,"ngbTooltip"]},null),(n()(),l["\u0275ted"](-1,null,[" Tooltip on top "])),(n()(),l["\u0275eld"](7,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbTooltip","Tooltip on right"],["placement","right"],["type","button"]],null,null,null,null,null)),l["\u0275did"](8,212992,null,0,jt,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,Tt,l.NgZone],{placement:[0,"placement"],ngbTooltip:[1,"ngbTooltip"]},null),(n()(),l["\u0275ted"](-1,null,[" Tooltip on right "])),(n()(),l["\u0275eld"](10,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbTooltip","Tooltip on bottom"],["placement","bottom"],["type","button"]],null,null,null,null,null)),l["\u0275did"](11,212992,null,0,jt,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,Tt,l.NgZone],{placement:[0,"placement"],ngbTooltip:[1,"ngbTooltip"]},null),(n()(),l["\u0275ted"](-1,null,[" Tooltip on bottom "])),(n()(),l["\u0275eld"](13,16777216,null,null,2,"button",[["class","btn btn-secondary"],["ngbTooltip","Tooltip on left"],["placement","left"],["type","button"]],null,null,null,null,null)),l["\u0275did"](14,212992,null,0,jt,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,Tt,l.NgZone],{placement:[0,"placement"],ngbTooltip:[1,"ngbTooltip"]},null),(n()(),l["\u0275ted"](-1,null,[" Tooltip on left "])),(n()(),l["\u0275and"](0,[["StaticTipContent",2]],null,0,null,po)),(n()(),l["\u0275eld"](17,16777216,null,null,2,"button",[["class","btn btn-secondary"],["data-html","true"],["type","button"]],null,null,null,null,null)),l["\u0275did"](18,212992,null,0,jt,[l.ElementRef,l.Renderer2,l.Injector,l.ComponentFactoryResolver,l.ViewContainerRef,Tt,l.NgZone],{ngbTooltip:[0,"ngbTooltip"]},null),(n()(),l["\u0275ted"](-1,null,[" Tooltip with HTML "]))],function(n,e){n(e,5,0,"top","Tooltip on top"),n(e,8,0,"right","Tooltip on right"),n(e,11,0,"bottom","Tooltip on bottom"),n(e,14,0,"left","Tooltip on left"),n(e,18,0,l["\u0275nov"](e,16))},null)}var fo=l["\u0275crt"]({encapsulation:0,styles:[".ngb-tp[_ngcontent-%COMP%] {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n }\n\n .ngb-tp-hour[_ngcontent-%COMP%], .ngb-tp-minute[_ngcontent-%COMP%], .ngb-tp-second[_ngcontent-%COMP%], .ngb-tp-meridian[_ngcontent-%COMP%] {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: distribute;\n justify-content: space-around;\n }\n\n .ngb-tp-spacer[_ngcontent-%COMP%] {\n width: 1em;\n text-align: center;\n }\n\n .chevron[_ngcontent-%COMP%]::before {\n border-style: solid;\n border-width: 0.29em 0.29em 0 0;\n content: '';\n display: inline-block;\n height: 0.69em;\n left: 0.05em;\n position: relative;\n top: 0.15em;\n transform: rotate(-45deg);\n -webkit-transform: rotate(-45deg);\n -ms-transform: rotate(-45deg);\n vertical-align: middle;\n width: 0.71em;\n }\n\n .chevron.bottom[_ngcontent-%COMP%]:before {\n top: -.3em;\n -webkit-transform: rotate(135deg);\n -ms-transform: rotate(135deg);\n transform: rotate(135deg);\n }\n\n input[_ngcontent-%COMP%] {\n text-align: center;\n display: inline-block;\n width: auto;\n }"],data:{}});function mo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"button",[["class","btn btn-link"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=!1!==o.changeHour(o.hourStep)&&l),l},null,null)),l["\u0275did"](1,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","chevron"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Increment hours"]))],function(n,e){n(e,1,0,"btn btn-link",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled)})}function go(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"button",[["class","btn btn-link"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=!1!==o.changeHour(0-o.hourStep)&&l),l},null,null)),l["\u0275did"](1,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","chevron bottom"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Decrement hours"]))],function(n,e){n(e,1,0,"btn btn-link",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled)})}function vo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"button",[["class","btn btn-link"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=!1!==o.changeMinute(o.minuteStep)&&l),l},null,null)),l["\u0275did"](1,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","chevron"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Increment minutes"]))],function(n,e){n(e,1,0,"btn btn-link",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled)})}function bo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"button",[["class","btn btn-link"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=!1!==o.changeMinute(0-o.minuteStep)&&l),l},null,null)),l["\u0275did"](1,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","chevron bottom"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Decrement minutes"]))],function(n,e){n(e,1,0,"btn btn-link",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled)})}function yo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"div",[["class","ngb-tp-spacer"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[":"]))],null,null)}function _o(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"button",[["class","btn btn-link"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=!1!==o.changeSecond(o.secondStep)&&l),l},null,null)),l["\u0275did"](1,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","chevron"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Increment seconds"]))],function(n,e){n(e,1,0,"btn btn-link",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled)})}function wo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"button",[["class","btn btn-link"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=!1!==o.changeSecond(0-o.secondStep)&&l),l},null,null)),l["\u0275did"](1,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","chevron bottom"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Decrement seconds"]))],function(n,e){n(e,1,0,"btn btn-link",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled)})}function Co(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,6,"div",[["class","ngb-tp-second"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,_o)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](3,0,null,null,1,"input",[["aria-label","Seconds"],["class","form-control"],["maxlength","2"],["placeholder","SS"],["size","2"],["type","text"]],[[8,"value",0],[8,"readOnly",0],[8,"disabled",0]],[[null,"change"]],function(n,e,t){var l=!0;return"change"===e&&(l=!1!==n.component.updateSecond(t.target.value)&&l),l},null,null)),l["\u0275did"](4,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,wo)),l["\u0275did"](6,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(n,e){var t=e.component;n(e,2,0,t.spinners),n(e,4,0,"form-control",t.setFormControlSize()),n(e,6,0,t.spinners)},function(n,e){var t=e.component;n(e,3,0,t.formatMinSec(null==t.model?null:t.model.second),t.readonlyInputs,t.disabled)})}function Oo(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,0,"div",[["class","ngb-tp-spacer"]],null,null,null,null,null))],null,null)}function Do(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"div",[["class","ngb-tp-meridian"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,2,"button",[["class","btn btn-outline-primary"],["type","button"]],[[8,"disabled",0],[2,"disabled",null]],[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.component.toggleMeridian()&&l),l},null,null)),l["\u0275did"](2,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275ted"](3,null,["",""]))],function(n,e){n(e,2,0,"btn btn-outline-primary",e.component.setButtonSize())},function(n,e){var t=e.component;n(e,1,0,t.disabled,t.disabled),n(e,3,0,(null==t.model?null:t.model.hour)>=12?"PM":"AM")})}function Ro(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,25,"fieldset",[],[[8,"disabled",0],[2,"disabled",null]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,24,"div",[["class","ngb-tp"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,6,"div",[["class","ngb-tp-hour"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,mo)),l["\u0275did"](4,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](5,0,null,null,1,"input",[["aria-label","Hours"],["class","form-control"],["maxlength","2"],["placeholder","HH"],["size","2"],["type","text"]],[[8,"value",0],[8,"readOnly",0],[8,"disabled",0]],[[null,"change"]],function(n,e,t){var l=!0;return"change"===e&&(l=!1!==n.component.updateHour(t.target.value)&&l),l},null,null)),l["\u0275did"](6,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,go)),l["\u0275did"](8,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](9,0,null,null,1,"div",[["class","ngb-tp-spacer"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,[":"])),(n()(),l["\u0275eld"](11,0,null,null,6,"div",[["class","ngb-tp-minute"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,vo)),l["\u0275did"](13,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](14,0,null,null,1,"input",[["aria-label","Minutes"],["class","form-control"],["maxlength","2"],["placeholder","MM"],["size","2"],["type","text"]],[[8,"value",0],[8,"readOnly",0],[8,"disabled",0]],[[null,"change"]],function(n,e,t){var l=!0;return"change"===e&&(l=!1!==n.component.updateMinute(t.target.value)&&l),l},null,null)),l["\u0275did"](15,278528,null,0,te.k,[l.IterableDiffers,l.KeyValueDiffers,l.ElementRef,l.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,bo)),l["\u0275did"](17,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,yo)),l["\u0275did"](19,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Co)),l["\u0275did"](21,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Oo)),l["\u0275did"](23,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Do)),l["\u0275did"](25,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(n,e){var t=e.component;n(e,4,0,t.spinners),n(e,6,0,"form-control",t.setFormControlSize()),n(e,8,0,t.spinners),n(e,13,0,t.spinners),n(e,15,0,"form-control",t.setFormControlSize()),n(e,17,0,t.spinners),n(e,19,0,t.seconds),n(e,21,0,t.seconds),n(e,23,0,t.meridian),n(e,25,0,t.meridian)},function(n,e){var t=e.component;n(e,0,0,t.disabled,t.disabled),n(e,5,0,t.formatHour(null==t.model?null:t.model.hour),t.readonlyInputs,t.disabled),n(e,14,0,t.formatMinSec(null==t.model?null:t.model.minute),t.readonlyInputs,t.disabled)})}var ko=function(){function n(){this.defaultTime={hour:13,minute:30},this.meridianTime={hour:13,minute:30},this.meridian=!0,this.SecondsTime={hour:13,minute:30,second:30},this.seconds=!0,this.customTime={hour:13,minute:30,second:0},this.hourStep=1,this.minuteStep=15,this.secondStep=30}return n.prototype.toggleSeconds=function(){this.seconds=!this.seconds},n.prototype.toggleMeridian=function(){this.meridian=!this.meridian},n}(),xo=l["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function Po(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,111,"div",[["class","row mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,18,"div",[["class","col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](2,0,null,null,17,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](3,0,null,null,4,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Timepicker ("])),(n()(),l["\u0275eld"](5,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Default"])),(n()(),l["\u0275ted"](-1,null,[")"])),(n()(),l["\u0275eld"](8,0,null,null,11,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](9,0,null,null,5,"ngb-timepicker",[],[[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,"ngModelChange"]],function(n,e,t){var l=!0;return"ngModelChange"===e&&(l=!1!==(n.component.defaultTime=t)&&l),l},Ro,fo)),l["\u0275did"](10,573440,null,0,Mt,[Et],null,null),l["\u0275prd"](1024,null,F,function(n){return[n]},[Mt]),l["\u0275did"](12,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](14,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](15,0,null,null,4,"div",[["class","alert alert-info"]],null,null,null,null,null)),(n()(),l["\u0275eld"](16,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Selected time: "])),(n()(),l["\u0275ted"](18,null,[""," "])),l["\u0275pid"](0,te.g,[]),(n()(),l["\u0275eld"](20,0,null,null,20,"div",[["class","col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](21,0,null,null,19,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](22,0,null,null,4,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Timepicker ("])),(n()(),l["\u0275eld"](24,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Default"])),(n()(),l["\u0275ted"](-1,null,[")"])),(n()(),l["\u0275eld"](27,0,null,null,13,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](28,0,null,null,5,"ngb-timepicker",[],[[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,"ngModelChange"]],function(n,e,t){var l=!0;return"ngModelChange"===e&&(l=!1!==(n.component.meridianTime=t)&&l),l},Ro,fo)),l["\u0275did"](29,573440,null,0,Mt,[Et],{meridian:[0,"meridian"]},null),l["\u0275prd"](1024,null,F,function(n){return[n]},[Mt]),l["\u0275did"](31,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](33,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](34,0,null,null,1,"button",[],[[8,"className",0]],[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.component.toggleMeridian()&&l),l},null,null)),(n()(),l["\u0275ted"](35,null,[" Meridian - "," "])),(n()(),l["\u0275eld"](36,0,null,null,4,"div",[["class","alert alert-info mt-3 mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](37,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Selected time: "])),(n()(),l["\u0275ted"](39,null,[""," "])),l["\u0275pid"](0,te.g,[]),(n()(),l["\u0275eld"](41,0,null,null,20,"div",[["class","col-sm-6"]],null,null,null,null,null)),(n()(),l["\u0275eld"](42,0,null,null,19,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](43,0,null,null,4,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Timepicker ("])),(n()(),l["\u0275eld"](45,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Seconds"])),(n()(),l["\u0275ted"](-1,null,[")"])),(n()(),l["\u0275eld"](48,0,null,null,13,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](49,0,null,null,5,"ngb-timepicker",[],[[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,"ngModelChange"]],function(n,e,t){var l=!0;return"ngModelChange"===e&&(l=!1!==(n.component.SecondsTime=t)&&l),l},Ro,fo)),l["\u0275did"](50,573440,null,0,Mt,[Et],{seconds:[0,"seconds"]},null),l["\u0275prd"](1024,null,F,function(n){return[n]},[Mt]),l["\u0275did"](52,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](54,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](55,0,null,null,1,"button",[],[[8,"className",0]],[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.component.toggleSeconds()&&l),l},null,null)),(n()(),l["\u0275ted"](56,null,[" Seconds - "," "])),(n()(),l["\u0275eld"](57,0,null,null,4,"div",[["class","alert alert-info mt-3 mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](58,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Selected time: "])),(n()(),l["\u0275ted"](60,null,[""," "])),l["\u0275pid"](0,te.g,[]),(n()(),l["\u0275eld"](62,0,null,null,49,"div",[["class","col-sm-6 mt-3"]],null,null,null,null,null)),(n()(),l["\u0275eld"](63,0,null,null,48,"div",[["class","card"]],null,null,null,null,null)),(n()(),l["\u0275eld"](64,0,null,null,4,"div",[["class","card-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Timepicker ("])),(n()(),l["\u0275eld"](66,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Custom Step"])),(n()(),l["\u0275ted"](-1,null,[")"])),(n()(),l["\u0275eld"](69,0,null,null,42,"div",[["class","card-body"]],null,null,null,null,null)),(n()(),l["\u0275eld"](70,0,null,null,5,"ngb-timepicker",[],[[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,"ngModelChange"]],function(n,e,t){var l=!0;return"ngModelChange"===e&&(l=!1!==(n.component.customTime=t)&&l),l},Ro,fo)),l["\u0275did"](71,573440,null,0,Mt,[Et],{seconds:[0,"seconds"],hourStep:[1,"hourStep"],minuteStep:[2,"minuteStep"],secondStep:[3,"secondStep"]},null),l["\u0275prd"](1024,null,F,function(n){return[n]},[Mt]),l["\u0275did"](73,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](75,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](76,0,null,null,30,"div",[["class","row"]],null,null,null,null,null)),(n()(),l["\u0275eld"](77,0,null,null,9,"div",[["class","col-sm-4"]],null,null,null,null,null)),(n()(),l["\u0275eld"](78,0,null,null,1,"label",[["for","changeHourStep"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Hour Step"])),(n()(),l["\u0275eld"](80,0,null,null,6,"input",[["class","form-control"],["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]],[[null,"ngModelChange"],[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"]],function(n,e,t){var o=!0,i=n.component;return"input"===e&&(o=!1!==l["\u0275nov"](n,81)._handleInput(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,81).onTouched()&&o),"compositionstart"===e&&(o=!1!==l["\u0275nov"](n,81)._compositionStart()&&o),"compositionend"===e&&(o=!1!==l["\u0275nov"](n,81)._compositionEnd(t.target.value)&&o),"change"===e&&(o=!1!==l["\u0275nov"](n,82).onChange(t.target.value)&&o),"input"===e&&(o=!1!==l["\u0275nov"](n,82).onChange(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,82).onTouched()&&o),"ngModelChange"===e&&(o=!1!==(i.hourStep=t)&&o),o},null,null)),l["\u0275did"](81,16384,null,0,L,[l.Renderer2,l.ElementRef,[2,z]],null,null),l["\u0275did"](82,16384,null,0,q,[l.Renderer2,l.ElementRef],null,null),l["\u0275prd"](1024,null,F,function(n,e){return[n,e]},[L,q]),l["\u0275did"](84,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](86,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](87,0,null,null,9,"div",[["class","col-sm-4"]],null,null,null,null,null)),(n()(),l["\u0275eld"](88,0,null,null,1,"label",[["for","changeMinuteStep"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Minute Step"])),(n()(),l["\u0275eld"](90,0,null,null,6,"input",[["class","form-control"],["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]],[[null,"ngModelChange"],[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"]],function(n,e,t){var o=!0,i=n.component;return"input"===e&&(o=!1!==l["\u0275nov"](n,91)._handleInput(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,91).onTouched()&&o),"compositionstart"===e&&(o=!1!==l["\u0275nov"](n,91)._compositionStart()&&o),"compositionend"===e&&(o=!1!==l["\u0275nov"](n,91)._compositionEnd(t.target.value)&&o),"change"===e&&(o=!1!==l["\u0275nov"](n,92).onChange(t.target.value)&&o),"input"===e&&(o=!1!==l["\u0275nov"](n,92).onChange(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,92).onTouched()&&o),"ngModelChange"===e&&(o=!1!==(i.minuteStep=t)&&o),o},null,null)),l["\u0275did"](91,16384,null,0,L,[l.Renderer2,l.ElementRef,[2,z]],null,null),l["\u0275did"](92,16384,null,0,q,[l.Renderer2,l.ElementRef],null,null),l["\u0275prd"](1024,null,F,function(n,e){return[n,e]},[L,q]),l["\u0275did"](94,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](96,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](97,0,null,null,9,"div",[["class","col-sm-4"]],null,null,null,null,null)),(n()(),l["\u0275eld"](98,0,null,null,1,"label",[["for","changeSecondStep"]],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Second Step"])),(n()(),l["\u0275eld"](100,0,null,null,6,"input",[["class","form-control"],["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]],[[null,"ngModelChange"],[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"]],function(n,e,t){var o=!0,i=n.component;return"input"===e&&(o=!1!==l["\u0275nov"](n,101)._handleInput(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,101).onTouched()&&o),"compositionstart"===e&&(o=!1!==l["\u0275nov"](n,101)._compositionStart()&&o),"compositionend"===e&&(o=!1!==l["\u0275nov"](n,101)._compositionEnd(t.target.value)&&o),"change"===e&&(o=!1!==l["\u0275nov"](n,102).onChange(t.target.value)&&o),"input"===e&&(o=!1!==l["\u0275nov"](n,102).onChange(t.target.value)&&o),"blur"===e&&(o=!1!==l["\u0275nov"](n,102).onTouched()&&o),"ngModelChange"===e&&(o=!1!==(i.secondStep=t)&&o),o},null,null)),l["\u0275did"](101,16384,null,0,L,[l.Renderer2,l.ElementRef,[2,z]],null,null),l["\u0275did"](102,16384,null,0,q,[l.Renderer2,l.ElementRef],null,null),l["\u0275prd"](1024,null,F,function(n,e){return[n,e]},[L,q]),l["\u0275did"](104,671744,null,0,An,[[8,null],[8,null],[8,null],[6,F]],{model:[0,"model"]},{update:"ngModelChange"}),l["\u0275prd"](2048,null,$,null,[An]),l["\u0275did"](106,16384,null,0,wn,[[4,$]],null,null),(n()(),l["\u0275eld"](107,0,null,null,4,"div",[["class","alert alert-info mt-3 mb-0"]],null,null,null,null,null)),(n()(),l["\u0275eld"](108,0,null,null,1,"b",[],null,null,null,null,null)),(n()(),l["\u0275ted"](-1,null,["Selected time: "])),(n()(),l["\u0275ted"](110,null,[""," "])),l["\u0275pid"](0,te.g,[])],function(n,e){var t=e.component;n(e,12,0,t.defaultTime),n(e,29,0,t.meridian),n(e,31,0,t.meridianTime),n(e,50,0,t.seconds),n(e,52,0,t.SecondsTime),n(e,71,0,!0,t.hourStep,t.minuteStep,t.secondStep),n(e,73,0,t.customTime),n(e,84,0,t.hourStep),n(e,94,0,t.minuteStep),n(e,104,0,t.secondStep)},function(n,e){var t=e.component;n(e,9,0,l["\u0275nov"](e,14).ngClassUntouched,l["\u0275nov"](e,14).ngClassTouched,l["\u0275nov"](e,14).ngClassPristine,l["\u0275nov"](e,14).ngClassDirty,l["\u0275nov"](e,14).ngClassValid,l["\u0275nov"](e,14).ngClassInvalid,l["\u0275nov"](e,14).ngClassPending),n(e,18,0,l["\u0275unv"](e,18,0,l["\u0275nov"](e,19).transform(t.defaultTime))),n(e,28,0,l["\u0275nov"](e,33).ngClassUntouched,l["\u0275nov"](e,33).ngClassTouched,l["\u0275nov"](e,33).ngClassPristine,l["\u0275nov"](e,33).ngClassDirty,l["\u0275nov"](e,33).ngClassValid,l["\u0275nov"](e,33).ngClassInvalid,l["\u0275nov"](e,33).ngClassPending),n(e,34,0,l["\u0275inlineInterpolate"](1,"btn btn-sm btn-outline-",t.meridian?"success":"danger","")),n(e,35,0,t.meridian?"ON":"OFF"),n(e,39,0,l["\u0275unv"](e,39,0,l["\u0275nov"](e,40).transform(t.meridianTime))),n(e,49,0,l["\u0275nov"](e,54).ngClassUntouched,l["\u0275nov"](e,54).ngClassTouched,l["\u0275nov"](e,54).ngClassPristine,l["\u0275nov"](e,54).ngClassDirty,l["\u0275nov"](e,54).ngClassValid,l["\u0275nov"](e,54).ngClassInvalid,l["\u0275nov"](e,54).ngClassPending),n(e,55,0,l["\u0275inlineInterpolate"](1,"btn btn-sm btn-outline-",t.seconds?"success":"danger","")),n(e,56,0,t.seconds?"ON":"OFF"),n(e,60,0,l["\u0275unv"](e,60,0,l["\u0275nov"](e,61).transform(t.SecondsTime))),n(e,70,0,l["\u0275nov"](e,75).ngClassUntouched,l["\u0275nov"](e,75).ngClassTouched,l["\u0275nov"](e,75).ngClassPristine,l["\u0275nov"](e,75).ngClassDirty,l["\u0275nov"](e,75).ngClassValid,l["\u0275nov"](e,75).ngClassInvalid,l["\u0275nov"](e,75).ngClassPending),n(e,80,0,l["\u0275nov"](e,86).ngClassUntouched,l["\u0275nov"](e,86).ngClassTouched,l["\u0275nov"](e,86).ngClassPristine,l["\u0275nov"](e,86).ngClassDirty,l["\u0275nov"](e,86).ngClassValid,l["\u0275nov"](e,86).ngClassInvalid,l["\u0275nov"](e,86).ngClassPending),n(e,90,0,l["\u0275nov"](e,96).ngClassUntouched,l["\u0275nov"](e,96).ngClassTouched,l["\u0275nov"](e,96).ngClassPristine,l["\u0275nov"](e,96).ngClassDirty,l["\u0275nov"](e,96).ngClassValid,l["\u0275nov"](e,96).ngClassInvalid,l["\u0275nov"](e,96).ngClassPending),n(e,100,0,l["\u0275nov"](e,106).ngClassUntouched,l["\u0275nov"](e,106).ngClassTouched,l["\u0275nov"](e,106).ngClassPristine,l["\u0275nov"](e,106).ngClassDirty,l["\u0275nov"](e,106).ngClassValid,l["\u0275nov"](e,106).ngClassInvalid,l["\u0275nov"](e,106).ngClassPending),n(e,110,0,l["\u0275unv"](e,110,0,l["\u0275nov"](e,111).transform(t.customTime)))})}var Vo=l["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Eo(n){return l["\u0275vid"](0,[(n()(),l["\u0275ted"](0,null,["",""]))],null,function(n,e){n(e,0,0,100===e.context.fill?"\u2605":"\u2606")})}function Mo(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](0,null,null,0))],null,null)}function So(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(n()(),l["\u0275ted"](1,null,["(",")"])),(n()(),l["\u0275eld"](2,0,null,null,2,"span",[],[[4,"cursor",null]],[[null,"mouseenter"],[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"mouseenter"===e&&(l=!1!==o.enter(n.context.index+1)&&l),"click"===e&&(l=!1!==o.handleClick(n.context.index+1)&&l),l},null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Mo)),l["\u0275did"](4,540672,null,0,te.p,[l.ViewContainerRef],{ngTemplateOutletContext:[0,"ngTemplateOutletContext"],ngTemplateOutlet:[1,"ngTemplateOutlet"]},null)],function(n,e){var t=e.component;n(e,4,0,t.contexts[e.context.index],t.starTemplate||l["\u0275nov"](e.parent,0))},function(n,e){var t=e.component;n(e,1,0,e.context.index select[_ngcontent-%COMP%] {\n \n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.25;\n \n height: inherit;\n width: 50%;\n display: inline-block;\n }"],data:{}});function oi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"option",[],null,null,null,null,null)),l["\u0275did"](1,147456,null,0,en,[l.ElementRef,l.Renderer2,[8,null]],{value:[0,"value"]},null),l["\u0275did"](2,147456,null,0,on,[l.ElementRef,l.Renderer2,[8,null]],{value:[0,"value"]},null),(n()(),l["\u0275ted"](3,null,["",""]))],function(n,e){n(e,1,0,e.context.$implicit),n(e,2,0,e.context.$implicit)},function(n,e){n(e,3,0,e.component.i18n.getMonthShortName(e.context.$implicit))})}function ii(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,3,"option",[],null,null,null,null,null)),l["\u0275did"](1,147456,null,0,en,[l.ElementRef,l.Renderer2,[8,null]],{value:[0,"value"]},null),l["\u0275did"](2,147456,null,0,on,[l.ElementRef,l.Renderer2,[8,null]],{value:[0,"value"]},null),(n()(),l["\u0275ted"](3,null,["",""]))],function(n,e){n(e,1,0,e.context.$implicit),n(e,2,0,e.context.$implicit)},function(n,e){n(e,3,0,e.context.$implicit)})}function ui(n){return l["\u0275vid"](2,[(n()(),l["\u0275eld"](0,0,null,null,2,"select",[["class","custom-select"]],[[8,"disabled",0],[8,"value",0]],[[null,"change"]],function(n,e,t){var l=!0;return"change"===e&&(l=!1!==n.component.changeMonth(t.target.value)&&l),l},null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,oi)),l["\u0275did"](2,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(n()(),l["\u0275eld"](3,0,null,null,2,"select",[["class","custom-select"]],[[8,"disabled",0],[8,"value",0]],[[null,"change"]],function(n,e,t){var l=!0;return"change"===e&&(l=!1!==n.component.changeYear(t.target.value)&&l),l},null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,ii)),l["\u0275did"](5,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){var t=e.component;n(e,2,0,t.months),n(e,5,0,t.years)},function(n,e){var t=e.component;n(e,0,0,t.disabled,null==t.date?null:t.date.month),n(e,3,0,t.disabled,null==t.date?null:t.date.year)})}var ri=l["\u0275crt"]({encapsulation:0,styles:["[_nghost-%COMP%] {\n height: 2rem;\n line-height: 1.85rem;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n }\n .ngb-dp-navigation-chevron[_ngcontent-%COMP%] {\n border-style: solid;\n border-width: 0.2em 0.2em 0 0;\n display: inline-block;\n width: 0.75em;\n height: 0.75em;\n margin-left: 0.25em;\n margin-right: 0.15em;\n transform: rotate(-135deg);\n -webkit-transform: rotate(-135deg);\n -ms-transform: rotate(-135deg);\n }\n .right[_ngcontent-%COMP%] .ngb-dp-navigation-chevron[_ngcontent-%COMP%] {\n -webkit-transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n transform: rotate(45deg);\n margin-left: 0.15em;\n margin-right: 0.25em;\n }\n .ngb-dp-arrow[_ngcontent-%COMP%] {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1 1 auto;\n -ms-flex: 1 1 auto;\n flex-basis: auto;\n flex-grow: 1;\n padding-right: 0px;\n padding-left: 0px;\n margin: 0px;\n width: 2rem;\n height: 2rem;\n }\n .ngb-dp-arrow.right[_ngcontent-%COMP%] {\n -webkit-box-pack: end;\n -ms-flex-pack: end;\n justify-content: flex-end;\n }\n .ngb-dp-arrow-btn[_ngcontent-%COMP%] {\n padding: 0rem 0.25rem;\n margin: 0rem 0.5rem;\n border: none;\n background-color: transparent;\n z-index: 1;\n }\n .ngb-dp-arrow-btn[_ngcontent-%COMP%]:focus {\n outline-style: auto;\n outline-width: 1px;\n }\n .ngb-dp-month-name[_ngcontent-%COMP%] {\n font-size: larger;\n height: 2rem;\n line-height: 2rem;\n text-align: center;\n }\n .ngb-dp-navigation-select[_ngcontent-%COMP%] {\n -webkit-box-flex: 1 1 9rem;\n -ms-flex: 1 1 9rem;\n flex-grow: 1;\n flex-basis: 9rem;\n }"],data:{}});function ai(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"ngb-datepicker-navigation-select",[["class","d-block ngb-dp-navigation-select"]],null,[[null,"select"]],function(n,e,t){var l=!0;return"select"===e&&(l=!1!==n.component.select.emit(t)&&l),l},ui,li)),l["\u0275did"](1,49152,null,0,Ne,[_e],{date:[0,"date"],disabled:[1,"disabled"],months:[2,"months"],years:[3,"years"]},{select:"select"})],function(n,e){var t=e.component;n(e,1,0,t.date,t.disabled,t.selectBoxes.months,t.selectBoxes.years)},null)}function si(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,0,"div",[["class","ngb-dp-arrow"]],null,null,null,null,null))],null,null)}function ci(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,0,"div",[["class","ngb-dp-arrow"]],null,null,null,null,null))],null,null)}function di(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](16777216,null,null,1,null,si)),l["\u0275did"](1,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](2,0,null,null,1,"div",[["class","ngb-dp-month-name d-block"]],null,null,null,null,null)),(n()(),l["\u0275ted"](3,null,[" "," "," "])),(n()(),l["\u0275and"](16777216,null,null,1,null,ci)),l["\u0275did"](5,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](0,null,null,0))],function(n,e){var t=e.component;n(e,1,0,e.context.index>0),n(e,5,0,e.context.index!==t.months.length-1)},function(n,e){n(e,3,0,e.component.i18n.getMonthFullName(e.context.$implicit.number),e.context.$implicit.year)})}function pi(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](16777216,null,null,1,null,di)),l["\u0275did"](1,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(n()(),l["\u0275and"](0,null,null,0))],function(n,e){n(e,1,0,e.component.months)},null)}function hi(n){return l["\u0275vid"](2,[(n()(),l["\u0275eld"](0,0,null,null,2,"div",[["class","ngb-dp-arrow"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"button",[["class","btn btn-link ngb-dp-arrow-btn"],["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=0!=!!o.navigate.emit(o.navigation.PREV)&&l),l},null,null)),(n()(),l["\u0275eld"](2,0,null,null,0,"span",[["class","ngb-dp-navigation-chevron"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,ai)),l["\u0275did"](4,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,pi)),l["\u0275did"](6,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](7,0,null,null,2,"div",[["class","ngb-dp-arrow right"]],null,null,null,null,null)),(n()(),l["\u0275eld"](8,0,null,null,1,"button",[["class","btn btn-link ngb-dp-arrow-btn"],["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(n,e,t){var l=!0,o=n.component;return"click"===e&&(l=0!=!!o.navigate.emit(o.navigation.NEXT)&&l),l},null,null)),(n()(),l["\u0275eld"](9,0,null,null,0,"span",[["class","ngb-dp-navigation-chevron"]],null,null,null,null,null))],function(n,e){var t=e.component;n(e,4,0,t.showSelect),n(e,6,0,!t.showSelect)},function(n,e){var t=e.component;n(e,1,0,t.prevDisabled),n(e,8,0,t.nextDisabled)})}var fi=l["\u0275crt"]({encapsulation:0,styles:[".ngb-dp-weekday[_ngcontent-%COMP%], .ngb-dp-week-number[_ngcontent-%COMP%] {\n line-height: 2rem;\n text-align: center;\n font-style: italic;\n }\n .ngb-dp-weekday[_ngcontent-%COMP%] {\n color: #5bc0de;\n color: var(--info);\n }\n .ngb-dp-week[_ngcontent-%COMP%] {\n border-radius: 0.25rem;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n }\n .ngb-dp-weekdays[_ngcontent-%COMP%] {\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0rem;\n }\n .ngb-dp-day[_ngcontent-%COMP%], .ngb-dp-weekday[_ngcontent-%COMP%], .ngb-dp-week-number[_ngcontent-%COMP%] {\n width: 2rem;\n height: 2rem;\n }\n .ngb-dp-day[_ngcontent-%COMP%] {\n cursor: pointer;\n }\n .ngb-dp-day.disabled[_ngcontent-%COMP%], .ngb-dp-day.hidden[_ngcontent-%COMP%] {\n cursor: default;\n }"],data:{}});function mi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,0,"div",[["class","ngb-dp-weekday ngb-dp-showweek"]],null,null,null,null,null))],null,null)}function gi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"div",[["class","ngb-dp-weekday small"]],null,null,null,null,null)),(n()(),l["\u0275ted"](1,null,[" "," "]))],null,function(n,e){n(e,1,0,e.component.i18n.getWeekdayShortName(e.context.$implicit))})}function vi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"div",[["class","ngb-dp-week ngb-dp-weekdays bg-light"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,mi)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,gi)),l["\u0275did"](4,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){var t=e.component;n(e,2,0,t.showWeekNumbers),n(e,4,0,t.month.weekdays)},null)}function bi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"div",[["class","ngb-dp-week-number small text-muted"]],null,null,null,null,null)),(n()(),l["\u0275ted"](1,null,["",""]))],null,function(n,e){n(e,1,0,e.parent.parent.context.$implicit.number)})}function yi(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](0,null,null,0))],null,null)}function _i(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](16777216,null,null,1,null,yi)),l["\u0275did"](1,540672,null,0,te.p,[l.ViewContainerRef],{ngTemplateOutletContext:[0,"ngTemplateOutletContext"],ngTemplateOutlet:[1,"ngTemplateOutlet"]},null),(n()(),l["\u0275and"](0,null,null,0))],function(n,e){n(e,1,0,e.parent.context.$implicit.context,e.component.dayTemplate)},null)}function wi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,2,"div",[["class","ngb-dp-day"],["role","gridcell"]],[[2,"disabled",null],[8,"tabIndex",0],[2,"hidden",null],[1,"aria-label",0]],[[null,"click"]],function(n,e,t){var l=!0;return"click"===e&&(l=!1!==n.component.doSelect(n.context.$implicit)&&l),l},null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,_i)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(n,e){n(e,2,0,!e.component.isHidden(e.context.$implicit))},function(n,e){n(e,0,0,e.context.$implicit.context.disabled,e.context.$implicit.tabindex,e.component.isHidden(e.context.$implicit),e.context.$implicit.ariaLabel)})}function Ci(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"div",[["class","ngb-dp-week"],["role","row"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,bi)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,wi)),l["\u0275did"](4,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){n(e,2,0,e.component.showWeekNumbers),n(e,4,0,e.parent.context.$implicit.days)},null)}function Oi(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](16777216,null,null,1,null,Ci)),l["\u0275did"](1,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](0,null,null,0))],function(n,e){n(e,1,0,!e.component.isCollapsed(e.context.$implicit))},null)}function Di(n){return l["\u0275vid"](0,[(n()(),l["\u0275and"](16777216,null,null,1,null,vi)),l["\u0275did"](1,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275and"](16777216,null,null,1,null,Oi)),l["\u0275did"](3,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){var t=e.component;n(e,1,0,t.showWeekdays),n(e,3,0,t.month.weeks)},null)}var Ri=l["\u0275crt"]({encapsulation:0,styles:["[_nghost-%COMP%] {\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n display: inline-block;\n }\n .ngb-dp-month[_ngcontent-%COMP%] {\n pointer-events: none;\n }\n .ngb-dp-header[_ngcontent-%COMP%] {\n border-bottom: 0px;\n border-radius: .25rem 0.25rem 0rem 0rem;\n padding-top: 0.25rem;\n }\n ngb-datepicker-month-view[_ngcontent-%COMP%] {\n pointer-events: auto;\n }\n .ngb-dp-month-name[_ngcontent-%COMP%] {\n font-size: larger;\n height: 2rem;\n line-height: 2rem;\n text-align: center;\n }\n .ngb-dp-month + .ngb-dp-month > ngb-datepicker-month-view > .ngb-dp-week {\n padding-left: 1rem;\n }\n .ngb-dp-month + .ngb-dp-month > .ngb-dp-month-name {\n padding-left: 1rem;\n }\n .ngb-dp-month:last-child .ngb-dp-week {\n padding-right: .25rem;\n }\n .ngb-dp-month:first-child .ngb-dp-week {\n padding-left: .25rem;\n }\n .ngb-dp-month > ngb-datepicker-month-view > .ngb-dp-week:last-child {\n padding-bottom: .25rem;\n }\n .ngb-dp-months[_ngcontent-%COMP%] {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n }"],data:{}});function ki(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"div",[["class","btn-light"],["ngbDatepickerDayView",""]],[[2,"bg-primary",null],[2,"text-white",null],[2,"text-muted",null],[2,"outside",null],[2,"active",null]],null,null,ti,ei)),l["\u0275did"](1,49152,null,0,Fe,[],{currentMonth:[0,"currentMonth"],date:[1,"date"],disabled:[2,"disabled"],focused:[3,"focused"],selected:[4,"selected"]},null)],function(n,e){n(e,1,0,e.context.currentMonth,e.context.date,e.context.disabled,e.context.focused,e.context.selected)},function(n,e){n(e,0,0,l["\u0275nov"](e,1).selected,l["\u0275nov"](e,1).selected,l["\u0275nov"](e,1).isMuted(),l["\u0275nov"](e,1).isMuted(),l["\u0275nov"](e,1).focused)})}function xi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"ngb-datepicker-navigation",[],null,[[null,"navigate"],[null,"select"]],function(n,e,t){var l=!0,o=n.component;return"navigate"===e&&(l=!1!==o.onNavigateEvent(t)&&l),"select"===e&&(l=!1!==o.onNavigateDateSelect(t)&&l),l},hi,ri)),l["\u0275did"](1,49152,null,0,Se,[_e],{date:[0,"date"],disabled:[1,"disabled"],months:[2,"months"],showSelect:[3,"showSelect"],prevDisabled:[4,"prevDisabled"],nextDisabled:[5,"nextDisabled"],selectBoxes:[6,"selectBoxes"]},{navigate:"navigate",select:"select"})],function(n,e){var t=e.component;n(e,1,0,t.model.firstDate,t.model.disabled,t.model.months,"select"===t.model.navigation,t.model.prevDisabled,t.model.nextDisabled,t.model.selectBoxes)},null)}function Pi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"div",[["class","ngb-dp-month-name bg-light"]],null,null,null,null,null)),(n()(),l["\u0275ted"](1,null,[" "," "," "]))],null,function(n,e){n(e,1,0,e.component.i18n.getMonthFullName(e.parent.context.$implicit.number),e.parent.context.$implicit.year)})}function Vi(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"div",[["class","ngb-dp-month d-block"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Pi)),l["\u0275did"](2,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](3,0,null,null,1,"ngb-datepicker-month-view",[["class","d-block"],["role","grid"]],null,[[null,"select"]],function(n,e,t){var l=!0;return"select"===e&&(l=!1!==n.component.onDateSelect(t)&&l),l},Di,fi)),l["\u0275did"](4,49152,null,0,Me,[_e],{dayTemplate:[0,"dayTemplate"],month:[1,"month"],outsideDays:[2,"outsideDays"],showWeekdays:[3,"showWeekdays"],showWeekNumbers:[4,"showWeekNumbers"]},{select:"select"})],function(n,e){var t=e.component;n(e,2,0,"none"===t.navigation||t.displayMonths>1&&"select"===t.navigation),n(e,4,0,t.dayTemplate||l["\u0275nov"](e.parent,0),e.context.$implicit,1===t.displayMonths?t.outsideDays:"hidden",t.showWeekdays,t.showWeekNumbers)},null)}function Ei(n){return l["\u0275vid"](2,[(n()(),l["\u0275and"](0,[["dt",2]],null,0,null,ki)),(n()(),l["\u0275eld"](1,0,null,null,2,"div",[["class","ngb-dp-header bg-light"]],null,null,null,null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,xi)),l["\u0275did"](3,16384,null,0,te.m,[l.ViewContainerRef,l.TemplateRef],{ngIf:[0,"ngIf"]},null),(n()(),l["\u0275eld"](4,0,null,null,2,"div",[["class","ngb-dp-months"]],null,[[null,"keydown"],[null,"focusin"],[null,"focusout"]],function(n,e,t){var l=!0,o=n.component;return"keydown"===e&&(l=!1!==o.onKeyDown(t)&&l),"focusin"===e&&(l=!1!==o.showFocus(!0)&&l),"focusout"===e&&(l=!1!==o.showFocus(!1)&&l),l},null,null)),(n()(),l["\u0275and"](16777216,null,null,1,null,Vi)),l["\u0275did"](6,802816,null,0,te.l,[l.ViewContainerRef,l.TemplateRef,l.IterableDiffers],{ngForOf:[0,"ngForOf"]},null)],function(n,e){var t=e.component;n(e,3,0,"none"!==t.navigation),n(e,6,0,t.model.months)},null)}var Mi=l["\u0275ccf"]("ngb-datepicker",Ee,function(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,4,"ngb-datepicker",[],null,null,null,Ei,Ri)),l["\u0275prd"](5120,null,F,function(n){return[n]},[Ee]),l["\u0275prd"](512,null,Ce,Ce,[pe,_e]),l["\u0275prd"](512,null,De,De,[Ce,pe]),l["\u0275did"](4,770048,null,0,Ee,[De,Ce,pe,_e,ke,l.ChangeDetectorRef,l.ElementRef,Pe,l.NgZone],null,null)],function(n,e){n(e,4,0)},null)},{dayTemplate:"dayTemplate",displayMonths:"displayMonths",firstDayOfWeek:"firstDayOfWeek",markDisabled:"markDisabled",maxDate:"maxDate",minDate:"minDate",navigation:"navigation",outsideDays:"outsideDays",showWeekdays:"showWeekdays",showWeekNumbers:"showWeekNumbers",startDate:"startDate"},{navigate:"navigate",select:"select"},[]),Si=l["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Ti(n){return l["\u0275vid"](0,[],null,null)}var Ii=l["\u0275ccf"]("ngb-modal-backdrop",He,function(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"ngb-modal-backdrop",[],[[8,"className",0]],null,null,Ti,Si)),l["\u0275did"](1,49152,null,0,He,[],null,null)],null,function(n,e){n(e,0,0,"modal-backdrop fade show"+(l["\u0275nov"](e,1).backdropClass?" "+l["\u0275nov"](e,1).backdropClass:""))})},{backdropClass:"backdropClass"},{},[]),Ai=l["\u0275crt"]({encapsulation:2,styles:[],data:{}});function ji(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,2,"div",[["role","document"]],[[8,"className",0]],null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"div",[["class","modal-content"]],null,null,null,null,null)),l["\u0275ncd"](null,0)],null,function(n,e){var t=e.component;n(e,0,0,"modal-dialog"+(t.size?" modal-"+t.size:"")+(t.centered?" modal-dialog-centered":""))})}var Fi=l["\u0275ccf"]("ngb-modal-window",Ze,function(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"ngb-modal-window",[["role","dialog"],["tabindex","-1"]],[[8,"className",0]],[[null,"keyup.esc"],[null,"click"]],function(n,e,t){var o=!0;return"keyup.esc"===e&&(o=!1!==l["\u0275nov"](n,1).escKey(t)&&o),"click"===e&&(o=!1!==l["\u0275nov"](n,1).backdropClick(t)&&o),o},ji,Ai)),l["\u0275did"](1,4440064,null,0,Ze,[te.c,l.ElementRef,l.Renderer2],null,null)],function(n,e){n(e,1,0)},function(n,e){n(e,0,0,"modal fade show d-block"+(l["\u0275nov"](e,1).windowClass?" "+l["\u0275nov"](e,1).windowClass:""))})},{backdrop:"backdrop",centered:"centered",keyboard:"keyboard",size:"size",windowClass:"windowClass"},{dismissEvent:"dismiss"},["*"]),Ni=l["\u0275crt"]({encapsulation:0,styles:[".bs-popover-top[_nghost-%COMP%] .arrow[_ngcontent-%COMP%], .bs-popover-bottom[_nghost-%COMP%] .arrow[_ngcontent-%COMP%] {\n left: 50%;\n margin-left: -5px;\n }\n\n .bs-popover-top-left[_nghost-%COMP%] .arrow[_ngcontent-%COMP%], .bs-popover-bottom-left[_nghost-%COMP%] .arrow[_ngcontent-%COMP%] {\n left: 2em;\n }\n\n .bs-popover-top-right[_nghost-%COMP%] .arrow[_ngcontent-%COMP%], .bs-popover-bottom-right[_nghost-%COMP%] .arrow[_ngcontent-%COMP%] {\n left: auto;\n right: 2em;\n }\n\n .bs-popover-left[_nghost-%COMP%] .arrow[_ngcontent-%COMP%], .bs-popover-right[_nghost-%COMP%] .arrow[_ngcontent-%COMP%] {\n top: 50%;\n margin-top: -5px;\n }\n\n .bs-popover-left-top[_nghost-%COMP%] .arrow[_ngcontent-%COMP%], .bs-popover-right-top[_nghost-%COMP%] .arrow[_ngcontent-%COMP%] {\n top: 0.7em;\n }\n\n .bs-popover-left-bottom[_nghost-%COMP%] .arrow[_ngcontent-%COMP%], .bs-popover-right-bottom[_nghost-%COMP%] .arrow[_ngcontent-%COMP%] {\n top: auto;\n bottom: 0.7em;\n }"],data:{}});function zi(n){return l["\u0275vid"](2,[(n()(),l["\u0275eld"](0,0,null,null,0,"div",[["class","arrow"]],null,null,null,null,null)),(n()(),l["\u0275eld"](1,0,null,null,1,"h3",[["class","popover-header"]],null,null,null,null,null)),(n()(),l["\u0275ted"](2,null,["",""])),(n()(),l["\u0275eld"](3,0,null,null,1,"div",[["class","popover-body"]],null,null,null,null,null)),l["\u0275ncd"](null,0)],null,function(n,e){n(e,2,0,e.component.title)})}var Li=l["\u0275ccf"]("ngb-popover-window",pt,function(n){return l["\u0275vid"](0,[(n()(),l["\u0275eld"](0,0,null,null,1,"ngb-popover-window",[["role","tooltip"]],[[8,"className",0],[8,"id",0]],null,null,zi,Ni)),l["\u0275did"](1,49152,null,0,pt,[l.ElementRef,l.Renderer2],null,null)],null,function(n,e){n(e,0,0,"popover bs-popover-"+l["\u0275nov"](e,1).placement.split("-")[0]+" bs-popover-"+l["\u0275nov"](e,1).placement,l["\u0275nov"](e,1).id)})},{placement:"placement",title:"title",id:"id"},{},["*"]),Wi=t("q7oS"),Bi=t("ZYCi"),qi=function(){},Gi=t("+Sv0");t.d(e,"BsComponentModuleNgFactory",function(){return $i});var $i=l["\u0275cmf"](o,[],function(n){return l["\u0275mod"]([l["\u0275mpd"](512,l.ComponentFactoryResolver,l["\u0275CodegenComponentFactoryResolver"],[[8,[Lo,tl.a,qo,ni,Mi,Ii,Fi,Li]],[3,l.ComponentFactoryResolver],l.NgModuleRef]),l["\u0275mpd"](4608,te.o,te.n,[l.LOCALE_ID,[2,te.w]]),l["\u0275mpd"](4608,U,U,[]),l["\u0275mpd"](4608,qn,qn,[]),l["\u0275mpd"](4608,nt,nt,[l.ApplicationRef,l.Injector,l.ComponentFactoryResolver,te.c]),l["\u0275mpd"](4608,et,et,[l.ComponentFactoryResolver,l.Injector,nt]),l["\u0275mpd"](4608,ol.a,ol.a,[]),l["\u0275mpd"](4608,mt,mt,[]),l["\u0275mpd"](4608,Tt,Tt,[]),l["\u0275mpd"](135680,qt,qt,[te.c,Bt]),l["\u0275mpd"](4608,Gt,Gt,[]),l["\u0275mpd"](4608,f,f,[]),l["\u0275mpd"](4608,Wi.a,Wi.a,[]),l["\u0275mpd"](4608,pe,he,[]),l["\u0275mpd"](4608,te.d,te.d,[l.LOCALE_ID]),l["\u0275mpd"](4608,_e,we,[l.LOCALE_ID,te.d]),l["\u0275mpd"](4608,Te,Ie,[]),l["\u0275mpd"](4608,Pe,Ve,[]),l["\u0275mpd"](4608,ke,ke,[]),l["\u0275mpd"](4608,ue,ue,[te.c,l.NgZone]),l["\u0275mpd"](4608,yl.a,yl.a,[]),l["\u0275mpd"](4608,lt,lt,[]),l["\u0275mpd"](4608,ct,ct,[]),l["\u0275mpd"](4608,bt,bt,[]),l["\u0275mpd"](4608,Ct,Ct,[]),l["\u0275mpd"](4608,Et,Et,[]),l["\u0275mpd"](1073742336,te.b,te.b,[]),l["\u0275mpd"](1073742336,Bi.o,Bi.o,[[2,Bi.t],[2,Bi.l]]),l["\u0275mpd"](1073742336,qi,qi,[]),l["\u0275mpd"](1073742336,$n,$n,[]),l["\u0275mpd"](1073742336,Un,Un,[]),l["\u0275mpd"](1073742336,Hn,Hn,[]),l["\u0275mpd"](1073742336,g.a,g.a,[]),l["\u0275mpd"](1073742336,Xn,Xn,[]),l["\u0275mpd"](1073742336,ee,ee,[]),l["\u0275mpd"](1073742336,vt,vt,[]),l["\u0275mpd"](1073742336,Ft,Ft,[]),l["\u0275mpd"](1073742336,Yt,Yt,[]),l["\u0275mpd"](1073742336,m,m,[]),l["\u0275mpd"](1073742336,Qn.a,Qn.a,[]),l["\u0275mpd"](1073742336,$e,$e,[]),l["\u0275mpd"](1073742336,Ue.a,Ue.a,[]),l["\u0275mpd"](1073742336,tt,tt,[]),l["\u0275mpd"](1073742336,it,it,[]),l["\u0275mpd"](1073742336,ft,ft,[]),l["\u0275mpd"](1073742336,wt,wt,[]),l["\u0275mpd"](1073742336,Pt,Pt,[]),l["\u0275mpd"](1073742336,St,St,[]),l["\u0275mpd"](1073742336,Jt,Jt,[]),l["\u0275mpd"](1073742336,Gi.a,Gi.a,[]),l["\u0275mpd"](1073742336,o,o,[]),l["\u0275mpd"](1024,Bi.j,function(){return[[{path:"",component:Fo}]]},[]),l["\u0275mpd"](256,Bt,100,[])])})}}]); \ No newline at end of file diff --git a/dist/3.4e06f20e1abe7db485c4.js b/dist/3.4e06f20e1abe7db485c4.js deleted file mode 100644 index 7b6cb179d..000000000 --- a/dist/3.4e06f20e1abe7db485c4.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{"6OTL":function(l,n,u){"use strict";u.r(n);var d=u("CcnG"),e=function(){},s=u("rMXk"),c=u("3zLz"),t=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),a=d["\u0275crt"]({encapsulation:0,styles:[[""]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function o(l){return d["\u0275vid"](0,[(l()(),d["\u0275eld"](0,0,null,null,142,"div",[],[[24,"@routerTransition",0]],null,null,null,null)),(l()(),d["\u0275eld"](1,0,null,null,1,"app-page-header",[],null,null,null,s.b,s.a)),d["\u0275did"](2,114688,null,0,c.a,[],{heading:[0,"heading"],icon:[1,"icon"]},null),(l()(),d["\u0275eld"](3,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](4,0,null,null,3,"div",[["class","col-xl-12 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](5,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](6,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-12 "])),(l()(),d["\u0275eld"](8,0,null,null,8,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](9,0,null,null,3,"div",[["class","col-xl-6 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](10,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](11,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-6 "])),(l()(),d["\u0275eld"](13,0,null,null,3,"div",[["class","col-xl-6 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](14,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](15,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-6 "])),(l()(),d["\u0275eld"](17,0,null,null,12,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](18,0,null,null,3,"div",[["class","col-xl-4 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](19,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](20,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-4 "])),(l()(),d["\u0275eld"](22,0,null,null,3,"div",[["class","col-xl-4 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](23,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](24,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-4 "])),(l()(),d["\u0275eld"](26,0,null,null,3,"div",[["class","col-xl-4 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](27,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](28,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-4 "])),(l()(),d["\u0275eld"](30,0,null,null,16,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](31,0,null,null,3,"div",[["class","col-xl-3 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](32,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](33,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-3 "])),(l()(),d["\u0275eld"](35,0,null,null,3,"div",[["class","col-xl-3 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](36,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](37,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-3 "])),(l()(),d["\u0275eld"](39,0,null,null,3,"div",[["class","col-xl-3 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](40,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](41,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-3 "])),(l()(),d["\u0275eld"](43,0,null,null,3,"div",[["class","col-xl-3 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](44,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](45,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-3 "])),(l()(),d["\u0275eld"](47,0,null,null,24,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](48,0,null,null,3,"div",[["class","col-xl-2 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](49,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](50,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-2 "])),(l()(),d["\u0275eld"](52,0,null,null,3,"div",[["class","col-xl-2 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](53,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](54,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-2 "])),(l()(),d["\u0275eld"](56,0,null,null,3,"div",[["class","col-xl-2 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](57,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](58,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-2 "])),(l()(),d["\u0275eld"](60,0,null,null,3,"div",[["class","col-xl-2 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](61,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](62,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-2 "])),(l()(),d["\u0275eld"](64,0,null,null,3,"div",[["class","col-xl-2 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](65,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](66,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-2 "])),(l()(),d["\u0275eld"](68,0,null,null,3,"div",[["class","col-xl-2 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](69,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](70,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-2 "])),(l()(),d["\u0275eld"](72,0,null,null,48,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](73,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](74,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](75,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](77,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](78,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](79,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](81,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](82,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](83,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](85,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](86,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](87,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](89,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](90,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](91,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](93,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](94,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](95,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](97,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](98,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](99,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](101,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](102,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](103,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](105,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](106,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](107,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](109,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](110,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](111,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](113,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](114,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](115,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](117,0,null,null,3,"div",[["class","col-xl-1 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](118,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](119,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-1 "])),(l()(),d["\u0275eld"](121,0,null,null,8,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](122,0,null,null,3,"div",[["class","col-xl-8 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](123,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](124,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-8 "])),(l()(),d["\u0275eld"](126,0,null,null,3,"div",[["class","col-xl-4 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](127,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](128,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-4 "])),(l()(),d["\u0275eld"](130,0,null,null,12,"div",[["class","row"]],null,null,null,null,null)),(l()(),d["\u0275eld"](131,0,null,null,3,"div",[["class","col-xl-3 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](132,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](133,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-3 "])),(l()(),d["\u0275eld"](135,0,null,null,3,"div",[["class","col-xl-6 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](136,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](137,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-6 "])),(l()(),d["\u0275eld"](139,0,null,null,3,"div",[["class","col-xl-3 text-xs-center"]],null,null,null,null,null)),(l()(),d["\u0275eld"](140,0,null,null,2,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),d["\u0275eld"](141,0,null,null,1,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),d["\u0275ted"](-1,null,[" .col-xl-3 "]))],function(l,n){l(n,2,0,"Bootstrap Grid","fa-wrench")},function(l,n){l(n,0,0,void 0)})}var i=d["\u0275ccf"]("app-grid",t,function(l){return d["\u0275vid"](0,[(l()(),d["\u0275eld"](0,0,null,null,1,"app-grid",[],null,null,null,o,a)),d["\u0275did"](1,114688,null,0,t,[],null,null)],function(l,n){l(n,1,0)},null)},{},{},[]),r=u("Ip0R"),x=u("ZYCi"),v=function(){},b=u("+Sv0");u.d(n,"GridModuleNgFactory",function(){return y});var y=d["\u0275cmf"](e,[],function(l){return d["\u0275mod"]([d["\u0275mpd"](512,d.ComponentFactoryResolver,d["\u0275CodegenComponentFactoryResolver"],[[8,[i]],[3,d.ComponentFactoryResolver],d.NgModuleRef]),d["\u0275mpd"](4608,r.o,r.n,[d.LOCALE_ID,[2,r.w]]),d["\u0275mpd"](1073742336,r.b,r.b,[]),d["\u0275mpd"](1073742336,x.o,x.o,[[2,x.t],[2,x.l]]),d["\u0275mpd"](1073742336,v,v,[]),d["\u0275mpd"](1073742336,b.a,b.a,[]),d["\u0275mpd"](1073742336,e,e,[]),d["\u0275mpd"](1024,x.j,function(){return[[{path:"",component:t}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/3rdpartylicenses.txt b/dist/3rdpartylicenses.txt deleted file mode 100644 index fb02cdb1c..000000000 --- a/dist/3rdpartylicenses.txt +++ /dev/null @@ -1,497 +0,0 @@ -@ng-bootstrap/ng-bootstrap@2.0.0 -MIT -The MIT License (MIT) - -Copyright (c) 2015-2018 Angular ng-bootstrap team - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -moment@2.22.1 -MIT -Copyright (c) JS Foundation and other contributors - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -chart.js@2.7.2 -MIT -The MIT License (MIT) - -Copyright (c) 2018 Chart.js Contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -chartjs-color@2.2.0 -MIT -Copyright (c) 2012 Heather Arthur - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -color-name@1.1.3 -MIT -The MIT License (MIT) -Copyright (c) 2015 Dmitry Ivanov - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -webpack@4.6.0 -MIT -Copyright JS Foundation and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -chartjs-color-string@0.5.0 -MIT -Copyright (c) 2011 Heather Arthur - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -ng2-charts@1.6.0 -MIT -The MIT License (MIT) - -Copyright (c) 2015-2017 Dmitriy Shekhovtsov -Copyright (c) 2015-2017 Valor Software - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -font-awesome@4.7.0 -(OFL-1.1 AND MIT) -(OFL-1.1 AND MIT) - -core-js@2.5.5 -MIT -Copyright (c) 2014-2018 Denis Pushkarev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -zone.js@0.8.26 -MIT -The MIT License - -Copyright (c) 2016-2018 Google, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -rxjs@6.1.0 -Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -@angular/platform-browser@6.0.0 -MIT -MIT - -tslib@1.9.0 -Apache-2.0 -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this License; and - -You must cause any modified files to carry prominent notices stating that You changed the files; and - -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -@angular/common@6.0.0 -MIT -MIT - -@angular/core@6.0.0 -MIT -MIT - -@angular/router@6.0.0 -MIT -MIT - -@ngx-translate/core@10.0.1 -MIT -MIT \ No newline at end of file diff --git a/dist/4.5155810445d94ceb6b58.js b/dist/4.5155810445d94ceb6b58.js deleted file mode 100644 index af079a12d..000000000 --- a/dist/4.5155810445d94ceb6b58.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[4],{WgX5:function(l,n,u){"use strict";u.r(n);var e=u("CcnG"),t=function(){},a=u("rMXk"),s=u("3zLz"),d=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),r=e["\u0275crt"]({encapsulation:0,styles:[[""]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function i(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,307,"div",[],[[24,"@routerTransition",0]],null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,1,"app-page-header",[],null,null,null,a.b,a.a)),e["\u0275did"](2,114688,null,0,s.a,[],{heading:[0,"heading"],icon:[1,"icon"]},null),(l()(),e["\u0275eld"](3,0,null,null,7,"div",[["class","jumbotron"]],null,null,null,null,null)),(l()(),e["\u0275eld"](4,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Hello, world!"])),(l()(),e["\u0275eld"](6,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique. "])),(l()(),e["\u0275eld"](8,0,null,null,2,"p",[],null,null,null,null,null)),(l()(),e["\u0275eld"](9,0,null,null,1,"a",[["class","btn btn-primary btn-lg"],["href","javascript:void(0)"],["role","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Learn more \xbb"])),(l()(),e["\u0275eld"](11,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](12,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Buttons"])),(l()(),e["\u0275eld"](14,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](15,0,null,null,16,"p",[],null,null,null,null,null)),(l()(),e["\u0275eld"](16,0,null,null,1,"button",[["class","btn btn-lg btn-default"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Default"])),(l()(),e["\u0275eld"](18,0,null,null,1,"button",[["class","btn btn-lg btn-primary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Primary"])),(l()(),e["\u0275eld"](20,0,null,null,1,"button",[["class","btn btn-lg btn-secondary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Secondary"])),(l()(),e["\u0275eld"](22,0,null,null,1,"button",[["class","btn btn-lg btn-success"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Success"])),(l()(),e["\u0275eld"](24,0,null,null,1,"button",[["class","btn btn-lg btn-info"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Info"])),(l()(),e["\u0275eld"](26,0,null,null,1,"button",[["class","btn btn-lg btn-warning"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Warning"])),(l()(),e["\u0275eld"](28,0,null,null,1,"button",[["class","btn btn-lg btn-danger"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Danger"])),(l()(),e["\u0275eld"](30,0,null,null,1,"button",[["class","btn btn-lg btn-link"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Link"])),(l()(),e["\u0275eld"](32,0,null,null,16,"p",[],null,null,null,null,null)),(l()(),e["\u0275eld"](33,0,null,null,1,"button",[["class","btn btn-default"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Default"])),(l()(),e["\u0275eld"](35,0,null,null,1,"button",[["class","btn btn-primary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Primary"])),(l()(),e["\u0275eld"](37,0,null,null,1,"button",[["class","btn btn-secondary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Secondary"])),(l()(),e["\u0275eld"](39,0,null,null,1,"button",[["class","btn btn-success"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Success"])),(l()(),e["\u0275eld"](41,0,null,null,1,"button",[["class","btn btn-info"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Info"])),(l()(),e["\u0275eld"](43,0,null,null,1,"button",[["class","btn btn-warning"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Warning"])),(l()(),e["\u0275eld"](45,0,null,null,1,"button",[["class","btn btn-danger"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Danger"])),(l()(),e["\u0275eld"](47,0,null,null,1,"button",[["class","btn btn-link"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Link"])),(l()(),e["\u0275eld"](49,0,null,null,16,"p",[],null,null,null,null,null)),(l()(),e["\u0275eld"](50,0,null,null,1,"button",[["class","btn btn-sm btn-default"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Default"])),(l()(),e["\u0275eld"](52,0,null,null,1,"button",[["class","btn btn-sm btn-primary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Primary"])),(l()(),e["\u0275eld"](54,0,null,null,1,"button",[["class","btn btn-sm btn-secondary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Secondary"])),(l()(),e["\u0275eld"](56,0,null,null,1,"button",[["class","btn btn-sm btn-success"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Success"])),(l()(),e["\u0275eld"](58,0,null,null,1,"button",[["class","btn btn-sm btn-info"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Info"])),(l()(),e["\u0275eld"](60,0,null,null,1,"button",[["class","btn btn-sm btn-warning"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Warning"])),(l()(),e["\u0275eld"](62,0,null,null,1,"button",[["class","btn btn-sm btn-danger"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Danger"])),(l()(),e["\u0275eld"](64,0,null,null,1,"button",[["class","btn btn-sm btn-link"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Link"])),(l()(),e["\u0275eld"](66,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](67,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](68,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thumbnails"])),(l()(),e["\u0275eld"](70,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](71,0,null,null,0,"img",[["alt",""],["class","img-thumbnail"],["src","http://placehold.it/400x400"]],null,null,null,null,null)),(l()(),e["\u0275eld"](72,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](73,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Dropdown menus"])),(l()(),e["\u0275eld"](75,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](76,0,null,null,9,"div",[["class","dropdown theme-dropdown clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](77,0,null,null,1,"button",[["class","btn btn-secondary"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Dropdown "])),(l()(),e["\u0275eld"](79,0,null,null,6,"div",[["aria-labelledby","dropdownMenu1"],["class","dropdown-menu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](80,0,null,null,1,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Action"])),(l()(),e["\u0275eld"](82,0,null,null,1,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Another action"])),(l()(),e["\u0275eld"](84,0,null,null,1,"a",[["class","dropdown-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Something else here"])),(l()(),e["\u0275eld"](86,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](87,0,null,null,2,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](88,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Navbars"])),(l()(),e["\u0275eld"](90,0,null,null,21,"nav",[["class","navbar navbar-expand-lg navbar-light bg-light"]],null,null,null,null,null)),(l()(),e["\u0275eld"](91,0,null,null,1,"a",[["class","navbar-brand"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Navbar"])),(l()(),e["\u0275eld"](93,0,null,null,1,"button",[["class","navbar-toggler"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275eld"](94,0,null,null,0,"span",[["class","navbar-toggler-icon"]],null,null,null,null,null)),(l()(),e["\u0275eld"](95,0,null,null,16,"div",[["class","collapse navbar-collapse"]],null,null,null,null,null)),(l()(),e["\u0275eld"](96,0,null,null,11,"ul",[["class","navbar-nav mr-auto"]],null,null,null,null,null)),(l()(),e["\u0275eld"](97,0,null,null,4,"li",[["class","nav-item active"]],null,null,null,null,null)),(l()(),e["\u0275eld"](98,0,null,null,3,"a",[["class","nav-link"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Home "])),(l()(),e["\u0275eld"](100,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["(current)"])),(l()(),e["\u0275eld"](102,0,null,null,2,"li",[["class","nav-item"]],null,null,null,null,null)),(l()(),e["\u0275eld"](103,0,null,null,1,"a",[["class","nav-link"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Link"])),(l()(),e["\u0275eld"](105,0,null,null,2,"li",[["class","nav-item"]],null,null,null,null,null)),(l()(),e["\u0275eld"](106,0,null,null,1,"a",[["class","nav-link disabled"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled"])),(l()(),e["\u0275eld"](108,0,null,null,3,"form",[["class","form-inline my-2 my-lg-0"]],null,null,null,null,null)),(l()(),e["\u0275eld"](109,0,null,null,0,"input",[["aria-label","Search"],["class","form-control mr-sm-2"],["placeholder","Search"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](110,0,null,null,1,"button",[["class","btn btn-outline-success my-2 my-sm-0"],["type","submit"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Search"])),(l()(),e["\u0275eld"](112,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](113,0,null,null,21,"nav",[["class","navbar navbar-expand-lg navbar-dark bg-dark mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](114,0,null,null,1,"a",[["class","navbar-brand"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Navbar"])),(l()(),e["\u0275eld"](116,0,null,null,1,"button",[["class","navbar-toggler"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275eld"](117,0,null,null,0,"span",[["class","navbar-toggler-icon"]],null,null,null,null,null)),(l()(),e["\u0275eld"](118,0,null,null,16,"div",[["class","collapse navbar-collapse"]],null,null,null,null,null)),(l()(),e["\u0275eld"](119,0,null,null,11,"ul",[["class","navbar-nav mr-auto"]],null,null,null,null,null)),(l()(),e["\u0275eld"](120,0,null,null,4,"li",[["class","nav-item active"]],null,null,null,null,null)),(l()(),e["\u0275eld"](121,0,null,null,3,"a",[["class","nav-link"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Home "])),(l()(),e["\u0275eld"](123,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["(current)"])),(l()(),e["\u0275eld"](125,0,null,null,2,"li",[["class","nav-item"]],null,null,null,null,null)),(l()(),e["\u0275eld"](126,0,null,null,1,"a",[["class","nav-link"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Link"])),(l()(),e["\u0275eld"](128,0,null,null,2,"li",[["class","nav-item"]],null,null,null,null,null)),(l()(),e["\u0275eld"](129,0,null,null,1,"a",[["class","nav-link disabled"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled"])),(l()(),e["\u0275eld"](131,0,null,null,3,"form",[["class","form-inline my-2 my-lg-0"]],null,null,null,null,null)),(l()(),e["\u0275eld"](132,0,null,null,0,"input",[["aria-label","Search"],["class","form-control mr-sm-2"],["placeholder","Search"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](133,0,null,null,1,"button",[["class","btn btn-outline-success my-2 my-sm-0"],["type","submit"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Search"])),(l()(),e["\u0275eld"](135,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](136,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Alerts"])),(l()(),e["\u0275eld"](138,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](139,0,null,null,3,"div",[["class","alert alert-success"]],null,null,null,null,null)),(l()(),e["\u0275eld"](140,0,null,null,1,"strong",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Well done!"])),(l()(),e["\u0275ted"](-1,null,[" You successfully read this important alert message. "])),(l()(),e["\u0275eld"](143,0,null,null,3,"div",[["class","alert alert-info"]],null,null,null,null,null)),(l()(),e["\u0275eld"](144,0,null,null,1,"strong",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Heads up!"])),(l()(),e["\u0275ted"](-1,null,[" This alert needs your attention, but it's not super important. "])),(l()(),e["\u0275eld"](147,0,null,null,3,"div",[["class","alert alert-warning"]],null,null,null,null,null)),(l()(),e["\u0275eld"](148,0,null,null,1,"strong",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Warning!"])),(l()(),e["\u0275ted"](-1,null,[" Best check yo self, you're not looking too good. "])),(l()(),e["\u0275eld"](151,0,null,null,3,"div",[["class","alert alert-danger"]],null,null,null,null,null)),(l()(),e["\u0275eld"](152,0,null,null,1,"strong",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Oh snap!"])),(l()(),e["\u0275ted"](-1,null,[" Change a few things up and try submitting again. "])),(l()(),e["\u0275eld"](155,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](156,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Progress bars"])),(l()(),e["\u0275eld"](158,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](159,0,null,null,1,"div",[["class","progress"]],null,null,null,null,null)),(l()(),e["\u0275eld"](160,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","25"],["class","progress-bar"],["role","progressbar"],["style","width: 25%; height: 10px;"]],null,null,null,null,null)),(l()(),e["\u0275eld"](161,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](162,0,null,null,1,"div",[["class","progress"]],null,null,null,null,null)),(l()(),e["\u0275eld"](163,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","25"],["class","progress-bar bg-success"],["role","progressbar"],["style","width: 25%"]],null,null,null,null,null)),(l()(),e["\u0275eld"](164,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](165,0,null,null,1,"div",[["class","progress"]],null,null,null,null,null)),(l()(),e["\u0275eld"](166,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","50"],["class","progress-bar bg-info"],["role","progressbar"],["style","width: 50%"]],null,null,null,null,null)),(l()(),e["\u0275eld"](167,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](168,0,null,null,3,"div",[["class","progress"]],null,null,null,null,null)),(l()(),e["\u0275eld"](169,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","15"],["class","progress-bar"],["role","progressbar"],["style","width: 15%"]],null,null,null,null,null)),(l()(),e["\u0275eld"](170,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","30"],["class","progress-bar bg-success"],["role","progressbar"],["style","width: 30%"]],null,null,null,null,null)),(l()(),e["\u0275eld"](171,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","20"],["class","progress-bar bg-info"],["role","progressbar"],["style","width: 20%"]],null,null,null,null,null)),(l()(),e["\u0275eld"](172,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](173,0,null,null,1,"div",[["class","progress"]],null,null,null,null,null)),(l()(),e["\u0275eld"](174,0,null,null,0,"div",[["aria-valuemax","100"],["aria-valuemin","0"],["aria-valuenow","100"],["class","progress-bar progress-bar-striped bg-danger"],["role","progressbar"],["style","width: 100%"]],null,null,null,null,null)),(l()(),e["\u0275eld"](175,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](176,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](177,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["List groups"])),(l()(),e["\u0275eld"](179,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](180,0,null,null,41,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](181,0,null,null,11,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](182,0,null,null,10,"ul",[["class","list-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](183,0,null,null,1,"li",[["class","list-group-item"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Cras justo odio"])),(l()(),e["\u0275eld"](185,0,null,null,1,"li",[["class","list-group-item"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Dapibus ac facilisis in"])),(l()(),e["\u0275eld"](187,0,null,null,1,"li",[["class","list-group-item"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Morbi leo risus"])),(l()(),e["\u0275eld"](189,0,null,null,1,"li",[["class","list-group-item"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Porta ac consectetur ac"])),(l()(),e["\u0275eld"](191,0,null,null,1,"li",[["class","list-group-item"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Vestibulum at eros"])),(l()(),e["\u0275eld"](193,0,null,null,11,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](194,0,null,null,10,"div",[["class","list-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](195,0,null,null,1,"a",[["class","list-group-item active"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Cras justo odio"])),(l()(),e["\u0275eld"](197,0,null,null,1,"a",[["class","list-group-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Dapibus ac facilisis in"])),(l()(),e["\u0275eld"](199,0,null,null,1,"a",[["class","list-group-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Morbi leo risus"])),(l()(),e["\u0275eld"](201,0,null,null,1,"a",[["class","list-group-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Porta ac consectetur ac"])),(l()(),e["\u0275eld"](203,0,null,null,1,"a",[["class","list-group-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Vestibulum at eros"])),(l()(),e["\u0275eld"](205,0,null,null,16,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](206,0,null,null,15,"div",[["class","list-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](207,0,null,null,4,"a",[["class","list-group-item active"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](208,0,null,null,1,"h4",[["class","list-group-item-heading"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["List group item heading"])),(l()(),e["\u0275eld"](210,0,null,null,1,"p",[["class","list-group-item-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit."])),(l()(),e["\u0275eld"](212,0,null,null,4,"a",[["class","list-group-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](213,0,null,null,1,"h4",[["class","list-group-item-heading"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["List group item heading"])),(l()(),e["\u0275eld"](215,0,null,null,1,"p",[["class","list-group-item-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit."])),(l()(),e["\u0275eld"](217,0,null,null,4,"a",[["class","list-group-item"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](218,0,null,null,1,"h4",[["class","list-group-item-heading"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["List group item heading"])),(l()(),e["\u0275eld"](220,0,null,null,1,"p",[["class","list-group-item-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit."])),(l()(),e["\u0275eld"](222,0,null,null,3,"div",[["class","page-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](223,0,null,null,1,"h1",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Cards"])),(l()(),e["\u0275eld"](225,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](226,0,null,null,81,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](227,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](228,0,null,null,7,"div",[["class","card text-white bg-primary mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](229,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](231,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](232,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Primary card title"])),(l()(),e["\u0275eld"](234,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](236,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](237,0,null,null,7,"div",[["class","card text-white bg-secondary mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](238,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](240,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](241,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Secondary card title"])),(l()(),e["\u0275eld"](243,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](245,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](246,0,null,null,7,"div",[["class","card text-white bg-success mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](247,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](249,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](250,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Success card title"])),(l()(),e["\u0275eld"](252,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](254,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](255,0,null,null,7,"div",[["class","card text-white bg-danger mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](256,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](258,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](259,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Danger card title"])),(l()(),e["\u0275eld"](261,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](263,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](264,0,null,null,7,"div",[["class","card text-white bg-warning mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](265,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](267,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](268,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Warning card title"])),(l()(),e["\u0275eld"](270,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](272,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](273,0,null,null,7,"div",[["class","card text-white bg-info mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](274,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](276,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](277,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Info card title"])),(l()(),e["\u0275eld"](279,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](281,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](282,0,null,null,7,"div",[["class","card bg-light mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](283,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](285,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](286,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Light card title"])),(l()(),e["\u0275eld"](288,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](290,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](291,0,null,null,7,"div",[["class","card text-white bg-dark mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](292,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](294,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](295,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Dark card title"])),(l()(),e["\u0275eld"](297,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."])),(l()(),e["\u0275eld"](299,0,null,null,8,"div",[["class","col-sm-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](300,0,null,null,7,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](301,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Header"])),(l()(),e["\u0275eld"](303,0,null,null,4,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](304,0,null,null,1,"h4",[["class","card-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Dark card title"])),(l()(),e["\u0275eld"](306,0,null,null,1,"p",[["class","card-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Some quick example text to build on the card title and make up the bulk of the card's content."]))],function(l,n){l(n,2,0,"Bootstrap Elements","fa-desktop")},function(l,n){l(n,0,0,void 0)})}var o=e["\u0275ccf"]("app-bs-element",d,function(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,1,"app-bs-element",[],null,null,null,i,r)),e["\u0275did"](1,114688,null,0,d,[],null,null)],function(l,n){l(n,1,0)},null)},{},{},[]),c=u("Ip0R"),b=u("ZYCi"),p=function(){},m=u("+Sv0");u.d(n,"BsElementModuleNgFactory",function(){return v});var v=e["\u0275cmf"](t,[],function(l){return e["\u0275mod"]([e["\u0275mpd"](512,e.ComponentFactoryResolver,e["\u0275CodegenComponentFactoryResolver"],[[8,[o]],[3,e.ComponentFactoryResolver],e.NgModuleRef]),e["\u0275mpd"](4608,c.o,c.n,[e.LOCALE_ID,[2,c.w]]),e["\u0275mpd"](1073742336,c.b,c.b,[]),e["\u0275mpd"](1073742336,b.o,b.o,[[2,b.t],[2,b.l]]),e["\u0275mpd"](1073742336,p,p,[]),e["\u0275mpd"](1073742336,m.a,m.a,[]),e["\u0275mpd"](1073742336,t,t,[]),e["\u0275mpd"](1024,b.j,function(){return[[{path:"",component:d}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/5.a503abe30ae186904613.js b/dist/5.a503abe30ae186904613.js deleted file mode 100644 index eb9439732..000000000 --- a/dist/5.a503abe30ae186904613.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{aEOV:function(l,n,u){"use strict";u.r(n);var e=u("CcnG"),t=function(){},o=u("rMXk"),d=u("3zLz"),s=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),i=e["\u0275crt"]({encapsulation:0,styles:[[""]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function a(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,187,"div",[],[[24,"@routerTransition",0]],null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,1,"app-page-header",[],null,null,null,o.b,o.a)),e["\u0275did"](2,114688,null,0,d.a,[],{heading:[0,"heading"],icon:[1,"icon"]},null),(l()(),e["\u0275eld"](3,0,null,null,184,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](4,0,null,null,110,"div",[["class","col-lg-6"]],null,null,null,null,null)),(l()(),e["\u0275eld"](5,0,null,null,109,"form",[["role","form"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,5,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](7,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Text Input"])),(l()(),e["\u0275eld"](9,0,null,null,0,"input",[["class","form-control"]],null,null,null,null,null)),(l()(),e["\u0275eld"](10,0,null,null,1,"p",[["class","help-block"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Example block-level help text here."])),(l()(),e["\u0275eld"](12,0,null,null,3,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](13,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Text Input with Placeholder"])),(l()(),e["\u0275eld"](15,0,null,null,0,"input",[["class","form-control"],["placeholder","Enter text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](16,0,null,null,4,"div",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](17,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Static Control"])),(l()(),e["\u0275eld"](19,0,null,null,1,"p",[["class","form-control-static"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["email@example.com"])),(l()(),e["\u0275eld"](21,0,null,null,3,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](22,0,null,null,1,"label",[["for","exampleInputFile"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["File input"])),(l()(),e["\u0275eld"](24,0,null,null,0,"input",[["class","form-control-file"],["id","exampleInputFile"],["type","file"]],null,null,null,null,null)),(l()(),e["\u0275eld"](25,0,null,null,3,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](26,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Text area"])),(l()(),e["\u0275eld"](28,0,null,null,0,"textarea",[["class","form-control"],["rows","3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](29,0,null,null,14,"div",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](30,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Checkboxes"])),(l()(),e["\u0275eld"](32,0,null,null,3,"div",[["class","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275eld"](33,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](34,0,null,null,0,"input",[["type","checkbox"],["value",""]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Checkbox 1 "])),(l()(),e["\u0275eld"](36,0,null,null,3,"div",[["class","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275eld"](37,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](38,0,null,null,0,"input",[["type","checkbox"],["value",""]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Checkbox 2 "])),(l()(),e["\u0275eld"](40,0,null,null,3,"div",[["class","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275eld"](41,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](42,0,null,null,0,"input",[["type","checkbox"],["value",""]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Checkbox 3 "])),(l()(),e["\u0275eld"](44,0,null,null,11,"div",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](45,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Inline Checkboxes"])),(l()(),e["\u0275eld"](47,0,null,null,2,"label",[["class","checkbox-inline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](48,0,null,null,0,"input",[["type","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1 "])),(l()(),e["\u0275eld"](50,0,null,null,2,"label",[["class","checkbox-inline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](51,0,null,null,0,"input",[["type","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2 "])),(l()(),e["\u0275eld"](53,0,null,null,2,"label",[["class","checkbox-inline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](54,0,null,null,0,"input",[["type","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3 "])),(l()(),e["\u0275eld"](56,0,null,null,14,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](57,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Radio Buttons"])),(l()(),e["\u0275eld"](59,0,null,null,3,"div",[["class","radio"]],null,null,null,null,null)),(l()(),e["\u0275eld"](60,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](61,0,null,null,0,"input",[["checked",""],["id","optionsRadios1"],["name","optionsRadios"],["type","radio"],["value","option1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Radio 1 "])),(l()(),e["\u0275eld"](63,0,null,null,3,"div",[["class","radio"]],null,null,null,null,null)),(l()(),e["\u0275eld"](64,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](65,0,null,null,0,"input",[["id","optionsRadios2"],["name","optionsRadios"],["type","radio"],["value","option2"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Radio 2 "])),(l()(),e["\u0275eld"](67,0,null,null,3,"div",[["class","radio"]],null,null,null,null,null)),(l()(),e["\u0275eld"](68,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](69,0,null,null,0,"input",[["id","optionsRadios3"],["name","optionsRadios"],["type","radio"],["value","option3"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Radio 3 "])),(l()(),e["\u0275eld"](71,0,null,null,11,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](72,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Inline Radio Buttons"])),(l()(),e["\u0275eld"](74,0,null,null,2,"label",[["class","radio-inline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](75,0,null,null,0,"input",[["checked",""],["id","optionsRadiosInline1"],["name","optionsRadiosInline"],["type","radio"],["value","option1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1 "])),(l()(),e["\u0275eld"](77,0,null,null,2,"label",[["class","radio-inline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](78,0,null,null,0,"input",[["id","optionsRadiosInline2"],["name","optionsRadiosInline"],["type","radio"],["value","option2"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2 "])),(l()(),e["\u0275eld"](80,0,null,null,2,"label",[["class","radio-inline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](81,0,null,null,0,"input",[["id","optionsRadiosInline3"],["name","optionsRadiosInline"],["type","radio"],["value","option3"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3 "])),(l()(),e["\u0275eld"](83,0,null,null,13,"div",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](84,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Selects"])),(l()(),e["\u0275eld"](86,0,null,null,10,"select",[["class","form-control"]],null,null,null,null,null)),(l()(),e["\u0275eld"](87,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](89,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](91,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](93,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["4"])),(l()(),e["\u0275eld"](95,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["5"])),(l()(),e["\u0275eld"](97,0,null,null,13,"fieldset",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](98,0,null,null,1,"label",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Multiple Selects"])),(l()(),e["\u0275eld"](100,0,null,null,10,"select",[["class","form-control"],["multiple",""]],null,null,null,null,null)),(l()(),e["\u0275eld"](101,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](103,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](105,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](107,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["4"])),(l()(),e["\u0275eld"](109,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["5"])),(l()(),e["\u0275eld"](111,0,null,null,1,"button",[["class","btn btn-secondary"],["type","submit"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Submit Button"])),(l()(),e["\u0275eld"](113,0,null,null,1,"button",[["class","btn btn-secondary"],["type","reset"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Reset Button"])),(l()(),e["\u0275eld"](115,0,null,null,72,"div",[["class","col-lg-6"]],null,null,null,null,null)),(l()(),e["\u0275eld"](116,0,null,null,1,"h4",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled Form States"])),(l()(),e["\u0275eld"](118,0,null,null,17,"form",[["role","form"]],null,null,null,null,null)),(l()(),e["\u0275eld"](119,0,null,null,16,"fieldset",[["disabled",""]],null,null,null,null,null)),(l()(),e["\u0275eld"](120,0,null,null,3,"div",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](121,0,null,null,1,"label",[["for","disabledSelect"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled input"])),(l()(),e["\u0275eld"](123,0,null,null,0,"input",[["class","form-control"],["disabled",""],["id","disabledInput"],["placeholder","Disabled input"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](124,0,null,null,5,"div",[["class","form-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](125,0,null,null,1,"label",[["for","disabledSelect"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled select menu"])),(l()(),e["\u0275eld"](127,0,null,null,2,"select",[["class","form-control"],["id","disabledSelect"]],null,null,null,null,null)),(l()(),e["\u0275eld"](128,0,null,null,1,"option",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled select"])),(l()(),e["\u0275eld"](130,0,null,null,3,"div",[["class","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275eld"](131,0,null,null,2,"label",[],null,null,null,null,null)),(l()(),e["\u0275eld"](132,0,null,null,0,"input",[["type","checkbox"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Disabled Checkbox "])),(l()(),e["\u0275eld"](134,0,null,null,1,"button",[["class","btn btn-primary"],["type","submit"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Disabled Button"])),(l()(),e["\u0275eld"](136,0,null,null,0,"br",[],null,null,null,null,null)),(l()(),e["\u0275eld"](137,0,null,null,1,"h4",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Form Validation"])),(l()(),e["\u0275eld"](139,0,null,null,12,"form",[["role","form"]],null,null,null,null,null)),(l()(),e["\u0275eld"](140,0,null,null,3,"div",[["class","form-group has-success"]],null,null,null,null,null)),(l()(),e["\u0275eld"](141,0,null,null,1,"label",[["class","form-control-label"],["for","inputSuccess"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Input with success"])),(l()(),e["\u0275eld"](143,0,null,null,0,"input",[["class","form-control form-control-success"],["id","inputSuccess"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](144,0,null,null,3,"div",[["class","form-group has-warning"]],null,null,null,null,null)),(l()(),e["\u0275eld"](145,0,null,null,1,"label",[["class","form-control-label"],["for","inputWarning"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Input with warning"])),(l()(),e["\u0275eld"](147,0,null,null,0,"input",[["class","form-control form-control-warning"],["id","inputWarning"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](148,0,null,null,3,"div",[["class","form-group has-danger"]],null,null,null,null,null)),(l()(),e["\u0275eld"](149,0,null,null,1,"label",[["class","form-control-label"],["for","inputError"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Input with danger"])),(l()(),e["\u0275eld"](151,0,null,null,0,"input",[["class","form-control form-control-danger"],["id","inputError"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](152,0,null,null,1,"h4",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Input Groups"])),(l()(),e["\u0275eld"](154,0,null,null,28,"form",[["role","form"]],null,null,null,null,null)),(l()(),e["\u0275eld"](155,0,null,null,4,"div",[["class","form-group input-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](156,0,null,null,2,"div",[["class","input-group-prepend"]],null,null,null,null,null)),(l()(),e["\u0275eld"](157,0,null,null,1,"span",[["class","input-group-text"],["id","basic-addon1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@"])),(l()(),e["\u0275eld"](159,0,null,null,0,"input",[["class","form-control"],["placeholder","Username"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](160,0,null,null,4,"div",[["class","form-group input-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](161,0,null,null,0,"input",[["class","form-control"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](162,0,null,null,2,"div",[["class","input-group-append"]],null,null,null,null,null)),(l()(),e["\u0275eld"](163,0,null,null,1,"span",[["class","input-group-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[".00"])),(l()(),e["\u0275eld"](165,0,null,null,4,"div",[["class","form-group input-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](166,0,null,null,2,"div",[["class","input-group-prepend"]],null,null,null,null,null)),(l()(),e["\u0275eld"](167,0,null,null,1,"span",[["class","input-group-text"],["id","basic-addon1"]],null,null,null,null,null)),(l()(),e["\u0275eld"](168,0,null,null,0,"i",[["class","fa fa-eur"]],null,null,null,null,null)),(l()(),e["\u0275eld"](169,0,null,null,0,"input",[["class","form-control"],["placeholder","Font Awesome Icon"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](170,0,null,null,7,"div",[["class","form-group input-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](171,0,null,null,2,"div",[["class","input-group-prepend"]],null,null,null,null,null)),(l()(),e["\u0275eld"](172,0,null,null,1,"span",[["class","input-group-text"],["id","basic-addon1"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$"])),(l()(),e["\u0275eld"](174,0,null,null,0,"input",[["class","form-control"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](175,0,null,null,2,"div",[["class","input-group-append"]],null,null,null,null,null)),(l()(),e["\u0275eld"](176,0,null,null,1,"span",[["class","input-group-text"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[".00"])),(l()(),e["\u0275eld"](178,0,null,null,4,"div",[["class","form-group input-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](179,0,null,null,0,"input",[["class","form-control"],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](180,0,null,null,2,"div",[["class","input-group-append"]],null,null,null,null,null)),(l()(),e["\u0275eld"](181,0,null,null,1,"button",[["class","btn btn-secondary"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275eld"](182,0,null,null,0,"i",[["class","fa fa-search"]],null,null,null,null,null)),(l()(),e["\u0275eld"](183,0,null,null,4,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["For complete documentation, please visit "])),(l()(),e["\u0275eld"](185,0,null,null,1,"a",[["href","http://v4-alpha.getbootstrap.com/components/forms/"],["target","_blank"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Bootstrap's Form Documentation"])),(l()(),e["\u0275ted"](-1,null,["."]))],function(l,n){l(n,2,0,"Forms","fa-edit")},function(l,n){l(n,0,0,void 0)})}var p=e["\u0275ccf"]("app-form",s,function(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,1,"app-form",[],null,null,null,a,i)),e["\u0275did"](1,114688,null,0,s,[],null,null)],function(l,n){l(n,1,0)},null)},{},{},[]),r=u("Ip0R"),c=u("ZYCi"),f=function(){},m=u("+Sv0");u.d(n,"FormModuleNgFactory",function(){return b});var b=e["\u0275cmf"](t,[],function(l){return e["\u0275mod"]([e["\u0275mpd"](512,e.ComponentFactoryResolver,e["\u0275CodegenComponentFactoryResolver"],[[8,[p]],[3,e.ComponentFactoryResolver],e.NgModuleRef]),e["\u0275mpd"](4608,r.o,r.n,[e.LOCALE_ID,[2,r.w]]),e["\u0275mpd"](1073742336,r.b,r.b,[]),e["\u0275mpd"](1073742336,c.o,c.o,[[2,c.t],[2,c.l]]),e["\u0275mpd"](1073742336,f,f,[]),e["\u0275mpd"](1073742336,m.a,m.a,[]),e["\u0275mpd"](1073742336,t,t,[]),e["\u0275mpd"](1024,c.j,function(){return[[{path:"",component:s}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/6.a97c2d3de28a197cadc1.js b/dist/6.a97c2d3de28a197cadc1.js deleted file mode 100644 index 9dfd041c3..000000000 --- a/dist/6.a97c2d3de28a197cadc1.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{TP0X:function(l,n,u){"use strict";u.r(n);var e=u("CcnG"),d=function(){},t=u("rMXk"),a=u("3zLz"),r=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),s=e["\u0275crt"]({encapsulation:0,styles:[[""]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function o(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,442,"div",[],[[24,"@routerTransition",0]],null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,1,"app-page-header",[],null,null,null,t.b,t.a)),e["\u0275did"](2,114688,null,0,a.a,[],{heading:[0,"heading"],icon:[1,"icon"]},null),(l()(),e["\u0275eld"](3,0,null,null,439,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](4,0,null,null,215,"div",[["class","col col-xl-6 col-lg-12"]],null,null,null,null,null)),(l()(),e["\u0275eld"](5,0,null,null,42,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Basic example "])),(l()(),e["\u0275eld"](8,0,null,null,39,"div",[["class","card-body table-responsive"]],null,null,null,null,null)),(l()(),e["\u0275eld"](9,0,null,null,38,"table",[["class","table"]],null,null,null,null,null)),(l()(),e["\u0275eld"](10,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](11,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](12,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](14,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](16,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](18,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](20,0,null,null,27,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](21,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](22,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](24,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](26,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](28,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](30,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](31,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](33,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](35,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](37,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](39,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](40,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](42,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](44,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](46,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](48,0,null,null,81,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](49,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Table head options"])),(l()(),e["\u0275eld"](51,0,null,null,78,"div",[["class","card-body table-responsive"]],null,null,null,null,null)),(l()(),e["\u0275eld"](52,0,null,null,38,"table",[["class","table"]],null,null,null,null,null)),(l()(),e["\u0275eld"](53,0,null,null,9,"thead",[["class","thead-inverse"]],null,null,null,null,null)),(l()(),e["\u0275eld"](54,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](55,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](57,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](59,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](61,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](63,0,null,null,27,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](64,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](65,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](67,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](69,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](71,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](73,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](74,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](76,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](78,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](80,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](82,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](83,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](85,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](87,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](89,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](91,0,null,null,38,"table",[["class","table"]],null,null,null,null,null)),(l()(),e["\u0275eld"](92,0,null,null,9,"thead",[["class","thead-default"]],null,null,null,null,null)),(l()(),e["\u0275eld"](93,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](94,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](96,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](98,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](100,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](102,0,null,null,27,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](103,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](104,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](106,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](108,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](110,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](112,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](113,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](115,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](117,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](119,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](121,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](122,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](124,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](126,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](128,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](130,0,null,null,49,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](131,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Bordered table"])),(l()(),e["\u0275eld"](133,0,null,null,46,"div",[["class","card-body table-responsive"]],null,null,null,null,null)),(l()(),e["\u0275eld"](134,0,null,null,45,"table",[["class","table table-bordered"]],null,null,null,null,null)),(l()(),e["\u0275eld"](135,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](136,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](137,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](139,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](141,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](143,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](145,0,null,null,34,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](146,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](147,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](149,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](151,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](153,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](155,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](156,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](158,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](160,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](162,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@TwBootstrap"])),(l()(),e["\u0275eld"](164,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](165,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](167,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](169,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](171,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](173,0,null,null,6,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](174,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["4"])),(l()(),e["\u0275eld"](176,0,null,null,1,"td",[["colspan","2"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry the Bird"])),(l()(),e["\u0275eld"](178,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](180,0,null,null,39,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](181,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Small table"])),(l()(),e["\u0275eld"](183,0,null,null,36,"table",[["class","table table-sm"]],null,null,null,null,null)),(l()(),e["\u0275eld"](184,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](185,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](186,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](188,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](190,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](192,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](194,0,null,null,25,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](195,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](196,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](198,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](200,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](202,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](204,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](205,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](207,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](209,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](211,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](213,0,null,null,6,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](214,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](216,0,null,null,1,"td",[["colspan","2"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry the Bird"])),(l()(),e["\u0275eld"](218,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](220,0,null,null,222,"div",[["class","col col-xl-6 col-lg-12"]],null,null,null,null,null)),(l()(),e["\u0275eld"](221,0,null,null,42,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](222,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Inverse table"])),(l()(),e["\u0275eld"](224,0,null,null,39,"div",[["class","card-body table-responsive"]],null,null,null,null,null)),(l()(),e["\u0275eld"](225,0,null,null,38,"table",[["class","table table-inverse"]],null,null,null,null,null)),(l()(),e["\u0275eld"](226,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](227,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](228,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](230,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](232,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](234,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](236,0,null,null,27,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](237,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](238,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](240,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](242,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](244,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](246,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](247,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](249,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](251,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](253,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](255,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](256,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](258,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](260,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](262,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](264,0,null,null,78,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](265,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Striped Rows"])),(l()(),e["\u0275eld"](267,0,null,null,75,"div",[["class","card-body table-responsive"]],null,null,null,null,null)),(l()(),e["\u0275eld"](268,0,null,null,74,"table",[["class","table table-hover table-striped"]],null,null,null,null,null)),(l()(),e["\u0275eld"](269,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](270,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](271,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Page"])),(l()(),e["\u0275eld"](273,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Visits"])),(l()(),e["\u0275eld"](275,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["% New Visits"])),(l()(),e["\u0275eld"](277,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Revenue"])),(l()(),e["\u0275eld"](279,0,null,null,63,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](280,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](281,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/index.html"])),(l()(),e["\u0275eld"](283,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1265"])),(l()(),e["\u0275eld"](285,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["32.3%"])),(l()(),e["\u0275eld"](287,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$321.33"])),(l()(),e["\u0275eld"](289,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](290,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/about.html"])),(l()(),e["\u0275eld"](292,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["261"])),(l()(),e["\u0275eld"](294,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["33.3%"])),(l()(),e["\u0275eld"](296,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$234.12"])),(l()(),e["\u0275eld"](298,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](299,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/sales.html"])),(l()(),e["\u0275eld"](301,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["665"])),(l()(),e["\u0275eld"](303,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["21.3%"])),(l()(),e["\u0275eld"](305,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$16.34"])),(l()(),e["\u0275eld"](307,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](308,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/blog.html"])),(l()(),e["\u0275eld"](310,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["9516"])),(l()(),e["\u0275eld"](312,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["89.3%"])),(l()(),e["\u0275eld"](314,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$1644.43"])),(l()(),e["\u0275eld"](316,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](317,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/404.html"])),(l()(),e["\u0275eld"](319,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["23"])),(l()(),e["\u0275eld"](321,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["34.3%"])),(l()(),e["\u0275eld"](323,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$23.52"])),(l()(),e["\u0275eld"](325,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](326,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/services.html"])),(l()(),e["\u0275eld"](328,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["421"])),(l()(),e["\u0275eld"](330,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["60.3%"])),(l()(),e["\u0275eld"](332,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$724.32"])),(l()(),e["\u0275eld"](334,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](335,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["/blog/post.html"])),(l()(),e["\u0275eld"](337,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1233"])),(l()(),e["\u0275eld"](339,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["93.2%"])),(l()(),e["\u0275eld"](341,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["$126.34"])),(l()(),e["\u0275eld"](343,0,null,null,39,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](344,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Hoverable rows"])),(l()(),e["\u0275eld"](346,0,null,null,36,"table",[["class","card-body table table-hover"]],null,null,null,null,null)),(l()(),e["\u0275eld"](347,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](348,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](349,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](351,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](353,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](355,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](357,0,null,null,25,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](358,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](359,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](361,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](363,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](365,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](367,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](368,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](370,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](372,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](374,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](376,0,null,null,6,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](377,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](379,0,null,null,1,"td",[["colspan","2"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry the Bird"])),(l()(),e["\u0275eld"](381,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](383,0,null,null,59,"div",[["class","card mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](384,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Contextual classes"])),(l()(),e["\u0275eld"](386,0,null,null,56,"table",[["class","card-body table"]],null,null,null,null,null)),(l()(),e["\u0275eld"](387,0,null,null,9,"thead",[],null,null,null,null,null)),(l()(),e["\u0275eld"](388,0,null,null,8,"tr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](389,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["#"])),(l()(),e["\u0275eld"](391,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["First Name"])),(l()(),e["\u0275eld"](393,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Last Name"])),(l()(),e["\u0275eld"](395,0,null,null,1,"th",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Username"])),(l()(),e["\u0275eld"](397,0,null,null,45,"tbody",[],null,null,null,null,null)),(l()(),e["\u0275eld"](398,0,null,null,8,"tr",[["class","table-active"]],null,null,null,null,null)),(l()(),e["\u0275eld"](399,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["1"])),(l()(),e["\u0275eld"](401,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Mark"])),(l()(),e["\u0275eld"](403,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Otto"])),(l()(),e["\u0275eld"](405,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@mdo"])),(l()(),e["\u0275eld"](407,0,null,null,8,"tr",[["class","table-success"]],null,null,null,null,null)),(l()(),e["\u0275eld"](408,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["2"])),(l()(),e["\u0275eld"](410,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jacob"])),(l()(),e["\u0275eld"](412,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Thornton"])),(l()(),e["\u0275eld"](414,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@fat"])),(l()(),e["\u0275eld"](416,0,null,null,8,"tr",[["class","table-info"]],null,null,null,null,null)),(l()(),e["\u0275eld"](417,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](419,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](421,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](423,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](425,0,null,null,8,"tr",[["class","table-warning"]],null,null,null,null,null)),(l()(),e["\u0275eld"](426,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](428,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](430,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](432,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"])),(l()(),e["\u0275eld"](434,0,null,null,8,"tr",[["class","table-danger"]],null,null,null,null,null)),(l()(),e["\u0275eld"](435,0,null,null,1,"th",[["scope","row"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["3"])),(l()(),e["\u0275eld"](437,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Larry"])),(l()(),e["\u0275eld"](439,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["the Bird"])),(l()(),e["\u0275eld"](441,0,null,null,1,"td",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["@twitter"]))],function(l,n){l(n,2,0,"Tables","fa-table")},function(l,n){l(n,0,0,void 0)})}var c=e["\u0275ccf"]("app-tables",r,function(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,1,"app-tables",[],null,null,null,o,s)),e["\u0275did"](1,114688,null,0,r,[],null,null)],function(l,n){l(n,1,0)},null)},{},{},[]),i=u("Ip0R"),h=u("ZYCi"),p=function(){},b=u("+Sv0");u.d(n,"TablesModuleNgFactory",function(){return m});var m=e["\u0275cmf"](d,[],function(l){return e["\u0275mod"]([e["\u0275mpd"](512,e.ComponentFactoryResolver,e["\u0275CodegenComponentFactoryResolver"],[[8,[c]],[3,e.ComponentFactoryResolver],e.NgModuleRef]),e["\u0275mpd"](4608,i.o,i.n,[e.LOCALE_ID,[2,i.w]]),e["\u0275mpd"](1073742336,i.b,i.b,[]),e["\u0275mpd"](1073742336,h.o,h.o,[[2,h.t],[2,h.l]]),e["\u0275mpd"](1073742336,p,p,[]),e["\u0275mpd"](1073742336,b.a,b.a,[]),e["\u0275mpd"](1073742336,d,d,[]),e["\u0275mpd"](1024,h.j,function(){return[[{path:"",component:r}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/7.bb44c1a7321ed80a9959.js b/dist/7.bb44c1a7321ed80a9959.js deleted file mode 100644 index 6b105fca0..000000000 --- a/dist/7.bb44c1a7321ed80a9959.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[7],{"+s0g":function(e,t,a){!function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^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|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,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(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(a("wd/R"))},"//9w":function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},"/X5v":function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(a("wd/R"))},"0mo+":function(e,t,a){!function(e){"use strict";var t={1:"\u0f21",2:"\u0f22",3:"\u0f23",4:"\u0f24",5:"\u0f25",6:"\u0f26",7:"\u0f27",8:"\u0f28",9:"\u0f29",0:"\u0f20"},a={"\u0f21":"1","\u0f22":"2","\u0f23":"3","\u0f24":"4","\u0f25":"5","\u0f26":"6","\u0f27":"7","\u0f28":"8","\u0f29":"9","\u0f20":"0"};e.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(e){return e.replace(/[\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\u0f29\u0f20]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},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(e,t){return 12===e&&(e=0),"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"===t&&e>=4||"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44"===t&&e<5||"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42"===t?e+12:e},meridiem:function(e,t,a){return e<4?"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c":e<10?"\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66":e<17?"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44":e<20?"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42":"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"},week:{dow:0,doy:6}})}(a("wd/R"))},"0tRk":function(e,t,a){!function(e){"use strict";e.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"})}(a("wd/R"))},"1rYy":function(e,t,a){!function(e){"use strict";e.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(e){return/^(\u0581\u0565\u0580\u0565\u056f\u057e\u0561|\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576)$/.test(e)},meridiem:function(e){return e<4?"\u0563\u056b\u0577\u0565\u0580\u057e\u0561":e<12?"\u0561\u057c\u0561\u057e\u0578\u057f\u057e\u0561":e<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(e,t){switch(t){case"DDD":case"w":case"W":case"DDDo":return 1===e?e+"-\u056b\u0576":e+"-\u0580\u0564";default:return e}},week:{dow:1,doy:7}})}(a("wd/R"))},"1xZ4":function(e,t,a){!function(e){"use strict";e.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(e,t){var a=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"\xe8";return"w"!==t&&"W"!==t||(a="a"),e+a},week:{dow:1,doy:4}})}(a("wd/R"))},"2UWG":function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3");function i(e){return void 0!==e._view.width}function s(e){var t,a,n,r,s=e._view;if(i(e)){var o=s.width/2;t=s.x-o,a=s.x+o,n=Math.min(s.y,s.base),r=Math.max(s.y,s.base)}else{var d=s.height/2;t=Math.min(s.x,s.base),a=Math.max(s.x,s.base),n=s.y-d,r=s.y+d}return{left:t,top:n,right:a,bottom:r}}n._set("global",{elements:{rectangle:{backgroundColor:n.global.defaultColor,borderColor:n.global.defaultColor,borderSkipped:"bottom",borderWidth:0}}}),e.exports=r.extend({draw:function(){var e,t,a,n,r,i,s,o=this._chart.ctx,d=this._view,l=d.borderWidth;if(d.horizontal?(a=d.y-d.height/2,n=d.y+d.height/2,r=(t=d.x)>(e=d.base)?1:-1,i=1,s=d.borderSkipped||"left"):(e=d.x-d.width/2,t=d.x+d.width/2,r=1,i=(n=d.base)>(a=d.y)?1:-1,s=d.borderSkipped||"bottom"),l){var u=Math.min(Math.abs(e-t),Math.abs(a-n)),_=(l=l>u?u:l)/2,h=e+("left"!==s?_*r:0),c=t+("right"!==s?-_*r:0),m=a+("top"!==s?_*i:0),f=n+("bottom"!==s?-_*i:0);h!==c&&(a=m,n=f),m!==f&&(e=h,t=c)}o.beginPath(),o.fillStyle=d.backgroundColor,o.strokeStyle=d.borderColor,o.lineWidth=l;var p=[[e,n],[e,a],[t,a],[t,n]],M=["bottom","left","top","right"].indexOf(s,0);function y(e){return p[(M+e)%4]}-1===M&&(M=0);var g=y(0);o.moveTo(g[0],g[1]);for(var L=1;L<4;L++)g=y(L),o.lineTo(g[0],g[1]);o.fill(),l&&o.stroke()},height:function(){var e=this._view;return e.base-e.y},inRange:function(e,t){var a=!1;if(this._view){var n=s(this);a=e>=n.left&&e<=n.right&&t>=n.top&&t<=n.bottom}return a},inLabelRange:function(e,t){if(!this._view)return!1;var a=s(this);return i(this)?e>=a.left&&e<=a.right:t>=a.top&&t<=a.bottom},inXRange:function(e){var t=s(this);return e>=t.left&&e<=t.right},inYRange:function(e){var t=s(this);return e>=t.top&&e<=t.bottom},getCenterPoint:function(){var e,t,a=this._view;return i(this)?(e=a.x,t=(a.y+a.base)/2):(e=(a.x+a.base)/2,t=a.y),{x:e,y:t}},getArea:function(){var e=this._view;return e.width*Math.abs(e.y-e.base)},tooltipPosition:function(){var e=this._view;return{x:e.x,y:e.y}}})},"2fjn":function(e,t,a){!function(e){"use strict";e.defineLocale("fr-ca",{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:"YYYY-MM-DD",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(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}}})}(a("wd/R"))},"2ykv":function(e,t,a){!function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^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|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,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(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(a("wd/R"))},"35yf":function(e,t,a){"use strict";a("CDJp")._set("scatter",{hover:{mode:"single"},scales:{xAxes:[{id:"x-axis-1",type:"linear",position:"bottom"}],yAxes:[{id:"y-axis-1",type:"linear",position:"left"}]},showLines:!1,tooltips:{callbacks:{title:function(){return""},label:function(e){return"("+e.xLabel+", "+e.yLabel+")"}}}}),e.exports=function(e){e.controllers.scatter=e.controllers.line}},"3E1r":function(e,t,a){!function(e){"use strict";var t={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},a={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};e.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(e){return e.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/\u0930\u093e\u0924|\u0938\u0941\u092c\u0939|\u0926\u094b\u092a\u0939\u0930|\u0936\u093e\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),"\u0930\u093e\u0924"===t?e<4?e:e+12:"\u0938\u0941\u092c\u0939"===t?e:"\u0926\u094b\u092a\u0939\u0930"===t?e>=10?e:e+12:"\u0936\u093e\u092e"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0930\u093e\u0924":e<10?"\u0938\u0941\u092c\u0939":e<17?"\u0926\u094b\u092a\u0939\u0930":e<20?"\u0936\u093e\u092e":"\u0930\u093e\u0924"},week:{dow:0,doy:6}})}(a("wd/R"))},"4MV3":function(e,t,a){!function(e){"use strict";var t={1:"\u0ae7",2:"\u0ae8",3:"\u0ae9",4:"\u0aea",5:"\u0aeb",6:"\u0aec",7:"\u0aed",8:"\u0aee",9:"\u0aef",0:"\u0ae6"},a={"\u0ae7":"1","\u0ae8":"2","\u0ae9":"3","\u0aea":"4","\u0aeb":"5","\u0aec":"6","\u0aed":"7","\u0aee":"8","\u0aef":"9","\u0ae6":"0"};e.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(e){return e.replace(/[\u0ae7\u0ae8\u0ae9\u0aea\u0aeb\u0aec\u0aed\u0aee\u0aef\u0ae6]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/\u0ab0\u0abe\u0aa4|\u0aac\u0aaa\u0acb\u0ab0|\u0ab8\u0ab5\u0abe\u0ab0|\u0ab8\u0abe\u0a82\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),"\u0ab0\u0abe\u0aa4"===t?e<4?e:e+12:"\u0ab8\u0ab5\u0abe\u0ab0"===t?e:"\u0aac\u0aaa\u0acb\u0ab0"===t?e>=10?e:e+12:"\u0ab8\u0abe\u0a82\u0a9c"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0ab0\u0abe\u0aa4":e<10?"\u0ab8\u0ab5\u0abe\u0ab0":e<17?"\u0aac\u0aaa\u0acb\u0ab0":e<20?"\u0ab8\u0abe\u0a82\u0a9c":"\u0ab0\u0abe\u0aa4"},week:{dow:0,doy:6}})}(a("wd/R"))},"4dOw":function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(a("wd/R"))},"5ZZ7":function(e,t,a){"use strict";var n=a("CDJp"),r=a("vvH+"),i=a("RDha");n._set("polarArea",{scale:{type:"radialLinear",angleLines:{display:!1},gridLines:{circular:!0},pointLabels:{display:!1},ticks:{beginAtZero:!0}},animation:{animateRotate:!0,animateScale:!0},startAngle:-.5*Math.PI,legendCallback:function(e){var t=[];t.push('
    ');var a=e.data,n=a.datasets,r=a.labels;if(n.length)for(var i=0;i'),r[i]&&t.push(r[i]),t.push("");return t.push("
"),t.join("")},legend:{labels:{generateLabels:function(e){var t=e.data;return t.labels.length&&t.datasets.length?t.labels.map(function(a,n){var r=e.getDatasetMeta(0),s=t.datasets[0],o=r.data[n].custom||{},d=i.valueAtIndexOrDefault,l=e.options.elements.arc;return{text:a,fillStyle:o.backgroundColor?o.backgroundColor:d(s.backgroundColor,n,l.backgroundColor),strokeStyle:o.borderColor?o.borderColor:d(s.borderColor,n,l.borderColor),lineWidth:o.borderWidth?o.borderWidth:d(s.borderWidth,n,l.borderWidth),hidden:isNaN(s.data[n])||r.data[n].hidden,index:n}}):[]}},onClick:function(e,t){var a,n,r,i=t.index,s=this.chart;for(a=0,n=(s.data.datasets||[]).length;a0&&!isNaN(e)?2*Math.PI/t:0}})}},"6+QB":function(e,t,a){!function(e){"use strict";e.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(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"pagi":e<15?"tengahari":e<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}})}(a("wd/R"))},"6B0Y":function(e,t,a){!function(e){"use strict";var t={1:"\u17e1",2:"\u17e2",3:"\u17e3",4:"\u17e4",5:"\u17e5",6:"\u17e6",7:"\u17e7",8:"\u17e8",9:"\u17e9",0:"\u17e0"},a={"\u17e1":"1","\u17e2":"2","\u17e3":"3","\u17e4":"4","\u17e5":"5","\u17e6":"6","\u17e7":"7","\u17e8":"8","\u17e9":"9","\u17e0":"0"};e.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(e){return"\u179b\u17d2\u1784\u17b6\u1785"===e},meridiem:function(e,t,a){return e<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(e){return e.replace(/[\u17e1\u17e2\u17e3\u17e4\u17e5\u17e6\u17e7\u17e8\u17e9\u17e0]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})}(a("wd/R"))},"6rqY":function(e,t,a){"use strict";var n=a("CDJp"),r=a("RDha"),i=a("mlr9"),s=a("fELs"),o=a("iM7B"),d=a("VgNv");e.exports=function(e){function t(e){return"top"===e||"bottom"===e}e.types={},e.instances={},e.controllers={},r.extend(e.prototype,{construct:function(t,a){var i=this;a=function(e){var t=(e=e||{}).data=e.data||{};return t.datasets=t.datasets||[],t.labels=t.labels||[],e.options=r.configMerge(n.global,n[e.type],e.options||{}),e}(a);var s=o.acquireContext(t,a),d=s&&s.canvas,l=d&&d.height,u=d&&d.width;i.id=r.uid(),i.ctx=s,i.canvas=d,i.config=a,i.width=u,i.height=l,i.aspectRatio=l?u/l:null,i.options=a.options,i._bufferedRender=!1,i.chart=i,i.controller=i,e.instances[i.id]=i,Object.defineProperty(i,"data",{get:function(){return i.config.data},set:function(e){i.config.data=e}}),s&&d?(i.initialize(),i.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var e=this;return d.notify(e,"beforeInit"),r.retinaScale(e,e.options.devicePixelRatio),e.bindEvents(),e.options.responsive&&e.resize(!0),e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.initToolTip(),d.notify(e,"afterInit"),e},clear:function(){return r.canvas.clear(this),this},stop:function(){return e.animationService.cancelAnimation(this),this},resize:function(e){var t=this,a=t.options,n=t.canvas,i=a.maintainAspectRatio&&t.aspectRatio||null,s=Math.max(0,Math.floor(r.getMaximumWidth(n))),o=Math.max(0,Math.floor(i?s/i:r.getMaximumHeight(n)));if((t.width!==s||t.height!==o)&&(n.width=t.width=s,n.height=t.height=o,n.style.width=s+"px",n.style.height=o+"px",r.retinaScale(t,a.devicePixelRatio),!e)){var l={width:s,height:o};d.notify(t,"resize",[l]),t.options.onResize&&t.options.onResize(t,l),t.stop(),t.update(t.options.responsiveAnimationDuration)}},ensureScalesHaveIDs:function(){var e=this.options,t=e.scales||{},a=e.scale;r.each(t.xAxes,function(e,t){e.id=e.id||"x-axis-"+t}),r.each(t.yAxes,function(e,t){e.id=e.id||"y-axis-"+t}),a&&(a.id=a.id||"scale")},buildOrUpdateScales:function(){var a=this,n=a.options,i=a.scales||{},s=[],o=Object.keys(i).reduce(function(e,t){return e[t]=!1,e},{});n.scales&&(s=s.concat((n.scales.xAxes||[]).map(function(e){return{options:e,dtype:"category",dposition:"bottom"}}),(n.scales.yAxes||[]).map(function(e){return{options:e,dtype:"linear",dposition:"left"}}))),n.scale&&s.push({options:n.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),r.each(s,function(n){var s=n.options,d=s.id,l=r.valueOrDefault(s.type,n.dtype);t(s.position)!==t(n.dposition)&&(s.position=n.dposition),o[d]=!0;var u=null;if(d in i&&i[d].type===l)(u=i[d]).options=s,u.ctx=a.ctx,u.chart=a;else{var _=e.scaleService.getScaleConstructor(l);if(!_)return;u=new _({id:d,type:l,options:s,ctx:a.ctx,chart:a}),i[u.id]=u}u.mergeTicksOptions(),n.isDefault&&(a.scale=u)}),r.each(o,function(e,t){e||delete i[t]}),a.scales=i,e.scaleService.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t=this,a=[],n=[];return r.each(t.data.datasets,function(r,i){var s=t.getDatasetMeta(i),o=r.type||t.config.type;if(s.type&&s.type!==o&&(t.destroyDatasetMeta(i),s=t.getDatasetMeta(i)),s.type=o,a.push(s.type),s.controller)s.controller.updateIndex(i),s.controller.linkScales();else{var d=e.controllers[s.type];if(void 0===d)throw new Error('"'+s.type+'" is not a chart type.');s.controller=new d(t,i),n.push(s.controller)}},t),n},resetElements:function(){var e=this;r.each(e.data.datasets,function(t,a){e.getDatasetMeta(a).controller.reset()},e)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var a,n,i=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),n=(a=i).options,r.each(a.scales,function(e){s.removeBox(a,e)}),n=r.configMerge(e.defaults.global,e.defaults[a.config.type],n),a.options=a.config.options=n,a.ensureScalesHaveIDs(),a.buildOrUpdateScales(),a.tooltip._options=n.tooltips,a.tooltip.initialize(),d._invalidate(i),!1!==d.notify(i,"beforeUpdate")){i.tooltip._data=i.data;var o=i.buildOrUpdateControllers();r.each(i.data.datasets,function(e,t){i.getDatasetMeta(t).controller.buildOrUpdateElements()},i),i.updateLayout(),i.options.animation&&i.options.animation.duration&&r.each(o,function(e){e.reset()}),i.updateDatasets(),i.tooltip.initialize(),i.lastActive=[],d.notify(i,"afterUpdate"),i._bufferedRender?i._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:i.render(t)}},updateLayout:function(){!1!==d.notify(this,"beforeLayout")&&(s.update(this,this.width,this.height),d.notify(this,"afterScaleUpdate"),d.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==d.notify(this,"beforeDatasetsUpdate")){for(var e=0,t=this.data.datasets.length;e=0;--a)t.isDatasetVisible(a)&&t.drawDataset(a,e);d.notify(t,"afterDatasetsDraw",[e])}},drawDataset:function(e,t){var a=this.getDatasetMeta(e),n={meta:a,index:e,easingValue:t};!1!==d.notify(this,"beforeDatasetDraw",[n])&&(a.controller.draw(t),d.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(e){var t=this.tooltip,a={tooltip:t,easingValue:e};!1!==d.notify(this,"beforeTooltipDraw",[a])&&(t.draw(),d.notify(this,"afterTooltipDraw",[a]))},getElementAtEvent:function(e){return i.modes.single(this,e)},getElementsAtEvent:function(e){return i.modes.label(this,e,{intersect:!0})},getElementsAtXAxis:function(e){return i.modes["x-axis"](this,e,{intersect:!0})},getElementsAtEventForMode:function(e,t,a){var n=i.modes[t];return"function"==typeof n?n(this,e,a):[]},getDatasetAtEvent:function(e){return i.modes.dataset(this,e,{intersect:!0})},getDatasetMeta:function(e){var t=this.data.datasets[e];t._meta||(t._meta={});var a=t._meta[this.id];return a||(a=t._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),a},getVisibleDatasetCount:function(){for(var e=0,t=0,a=this.data.datasets.length;ta?(t+.05)/(a+.05):(a+.05)/(t+.05)},level:function(e){var t=this.contrast(e);return t>=7.1?"AAA":t>=4.5?"AA":""},dark:function(){var e=this.values.rgb;return(299*e[0]+587*e[1]+114*e[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var e=[],t=0;t<3;t++)e[t]=255-this.values.rgb[t];return this.setValues("rgb",e),this},lighten:function(e){var t=this.values.hsl;return t[2]+=t[2]*e,this.setValues("hsl",t),this},darken:function(e){var t=this.values.hsl;return t[2]-=t[2]*e,this.setValues("hsl",t),this},saturate:function(e){var t=this.values.hsl;return t[1]+=t[1]*e,this.setValues("hsl",t),this},desaturate:function(e){var t=this.values.hsl;return t[1]-=t[1]*e,this.setValues("hsl",t),this},whiten:function(e){var t=this.values.hwb;return t[1]+=t[1]*e,this.setValues("hwb",t),this},blacken:function(e){var t=this.values.hwb;return t[2]+=t[2]*e,this.setValues("hwb",t),this},greyscale:function(){var e=this.values.rgb,t=.3*e[0]+.59*e[1]+.11*e[2];return this.setValues("rgb",[t,t,t]),this},clearer:function(e){var t=this.values.alpha;return this.setValues("alpha",t-t*e),this},opaquer:function(e){var t=this.values.alpha;return this.setValues("alpha",t+t*e),this},rotate:function(e){var t=this.values.hsl,a=(t[0]+e)%360;return t[0]=a<0?360+a:a,this.setValues("hsl",t),this},mix:function(e,t){var a=e,n=void 0===t?.5:t,r=2*n-1,i=this.alpha()-a.alpha(),s=((r*i==-1?r:(r+i)/(1+r*i))+1)/2,o=1-s;return this.rgb(s*this.red()+o*a.red(),s*this.green()+o*a.green(),s*this.blue()+o*a.blue()).alpha(this.alpha()*n+a.alpha()*(1-n))},toJSON:function(){return this.rgb()},clone:function(){var e,t,a=new i,n=this.values,r=a.values;for(var s in n)n.hasOwnProperty(s)&&("[object Array]"===(t={}.toString.call(e=n[s]))?r[s]=e.slice(0):"[object Number]"===t?r[s]=e:console.error("unexpected color value:",e));return a}},i.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},i.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},i.prototype.getValues=function(e){for(var t=this.values,a={},n=0;n11?a?"\u0db4.\u0dc0.":"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4":a?"\u0db4\u0dd9.\u0dc0.":"\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4"}})}(a("wd/R"))},"8/+R":function(e,t,a){!function(e){"use strict";var t={1:"\u0a67",2:"\u0a68",3:"\u0a69",4:"\u0a6a",5:"\u0a6b",6:"\u0a6c",7:"\u0a6d",8:"\u0a6e",9:"\u0a6f",0:"\u0a66"},a={"\u0a67":"1","\u0a68":"2","\u0a69":"3","\u0a6a":"4","\u0a6b":"5","\u0a6c":"6","\u0a6d":"7","\u0a6e":"8","\u0a6f":"9","\u0a66":"0"};e.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:"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(e){return e.replace(/[\u0a67\u0a68\u0a69\u0a6a\u0a6b\u0a6c\u0a6d\u0a6e\u0a6f\u0a66]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/\u0a30\u0a3e\u0a24|\u0a38\u0a35\u0a47\u0a30|\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30|\u0a38\u0a3c\u0a3e\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),"\u0a30\u0a3e\u0a24"===t?e<4?e:e+12:"\u0a38\u0a35\u0a47\u0a30"===t?e:"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30"===t?e>=10?e:e+12:"\u0a38\u0a3c\u0a3e\u0a2e"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0a30\u0a3e\u0a24":e<10?"\u0a38\u0a35\u0a47\u0a30":e<17?"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30":e<20?"\u0a38\u0a3c\u0a3e\u0a2e":"\u0a30\u0a3e\u0a24"},week:{dow:0,doy:6}})}(a("wd/R"))},"8//i":function(e,t,a){"use strict";var n=a("CDJp"),r=a("RDha"),i=a("g8vO");e.exports=function(e){var t=n.global,a={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:i.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(e){return e}}};function s(e){var t=e.options;return t.angleLines.display||t.pointLabels.display?e.chart.data.labels.length:0}function o(e){var a=e.options.pointLabels,n=r.valueOrDefault(a.fontSize,t.defaultFontSize),i=r.valueOrDefault(a.fontStyle,t.defaultFontStyle),s=r.valueOrDefault(a.fontFamily,t.defaultFontFamily);return{size:n,style:i,family:s,font:r.fontString(n,i,s)}}function d(e,t,a,n,r){return e===n||e===r?{start:t-a/2,end:t+a/2}:er?{start:t-a-5,end:t}:{start:t,end:t+a+5}}function l(e){return 0===e||180===e?"center":e<180?"left":"right"}function u(e,t,a,n){if(r.isArray(t))for(var i=a.y,s=1.5*n,o=0;o270||e<90)&&(a.y-=t.h)}function h(e){return r.isNumber(e)?e:0}var c=e.LinearScaleBase.extend({setDimensions:function(){var e=this,a=e.options,n=a.ticks;e.width=e.maxWidth,e.height=e.maxHeight,e.xCenter=Math.round(e.width/2),e.yCenter=Math.round(e.height/2);var i=r.min([e.height,e.width]),s=r.valueOrDefault(n.fontSize,t.defaultFontSize);e.drawingArea=a.display?i/2-(s/2+n.backdropPaddingY):i/2},determineDataLimits:function(){var e=this,t=e.chart,a=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY;r.each(t.data.datasets,function(i,s){if(t.isDatasetVisible(s)){var o=t.getDatasetMeta(s);r.each(i.data,function(t,r){var i=+e.getRightValue(t);isNaN(i)||o.data[r].hidden||(a=Math.min(i,a),n=Math.max(i,n))})}}),e.min=a===Number.POSITIVE_INFINITY?0:a,e.max=n===Number.NEGATIVE_INFINITY?0:n,e.handleTickRangeOptions()},getTickLimit:function(){var e=this.options.ticks,a=r.valueOrDefault(e.fontSize,t.defaultFontSize);return Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.drawingArea/(1.5*a)))},convertTicksToLabels:function(){var t=this;e.LinearScaleBase.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map(t.options.pointLabels.callback,t)},getLabelForIndex:function(e,t){return+this.getRightValue(this.chart.data.datasets[t].data[e])},fit:function(){var e,t;this.options.pointLabels.display?function(e){var t,a,n,i=o(e),l=Math.min(e.height/2,e.width/2),u={r:e.width,l:0,t:e.height,b:0},_={};e.ctx.font=i.font,e._pointLabelSizes=[];var h,c,m,f=s(e);for(t=0;tu.r&&(u.r=y.end,_.r=p),g.startu.b&&(u.b=g.end,_.b=p)}e.setReductions(l,u,_)}(this):(e=this,t=Math.min(e.height/2,e.width/2),e.drawingArea=Math.round(t),e.setCenterPoint(0,0,0,0))},setReductions:function(e,t,a){var n=t.l/Math.sin(a.l),r=Math.max(t.r-this.width,0)/Math.sin(a.r),i=-t.t/Math.cos(a.t),s=-Math.max(t.b-this.height,0)/Math.cos(a.b);n=h(n),r=h(r),i=h(i),s=h(s),this.drawingArea=Math.min(Math.round(e-(n+r)/2),Math.round(e-(i+s)/2)),this.setCenterPoint(n,r,i,s)},setCenterPoint:function(e,t,a,n){var r=this,i=a+r.drawingArea,s=r.height-n-r.drawingArea;r.xCenter=Math.round((e+r.drawingArea+(r.width-t-r.drawingArea))/2+r.left),r.yCenter=Math.round((i+s)/2+r.top)},getIndexAngle:function(e){return e*(2*Math.PI/s(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(e){var t=this;if(null===e)return 0;var a=t.drawingArea/(t.max-t.min);return t.options.ticks.reverse?(t.max-e)*a:(e-t.min)*a},getPointPosition:function(e,t){var a=this.getIndexAngle(e)-Math.PI/2;return{x:Math.round(Math.cos(a)*t)+this.xCenter,y:Math.round(Math.sin(a)*t)+this.yCenter}},getPointPositionForValue:function(e,t){return this.getPointPosition(e,this.getDistanceFromCenterForValue(t))},getBasePosition:function(){var e=this.min,t=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:e<0&&t<0?t:e>0&&t>0?e:0)},draw:function(){var e=this,a=e.options,n=a.gridLines,i=a.ticks,d=r.valueOrDefault;if(a.display){var h=e.ctx,c=this.getIndexAngle(0),m=d(i.fontSize,t.defaultFontSize),f=d(i.fontStyle,t.defaultFontStyle),p=d(i.fontFamily,t.defaultFontFamily),M=r.fontString(m,f,p);r.each(e.ticks,function(a,o){if(o>0||i.reverse){var l=e.getDistanceFromCenterForValue(e.ticksAsNumbers[o]);if(n.display&&0!==o&&function(e,t,a,n){var i=e.ctx;if(i.strokeStyle=r.valueAtIndexOrDefault(t.color,n-1),i.lineWidth=r.valueAtIndexOrDefault(t.lineWidth,n-1),e.options.gridLines.circular)i.beginPath(),i.arc(e.xCenter,e.yCenter,a,0,2*Math.PI),i.closePath(),i.stroke();else{var o=s(e);if(0===o)return;i.beginPath();var d=e.getPointPosition(0,a);i.moveTo(d.x,d.y);for(var l=1;l=0;m--){if(i.display){var f=e.getPointPosition(m,h);a.beginPath(),a.moveTo(e.xCenter,e.yCenter),a.lineTo(f.x,f.y),a.stroke(),a.closePath()}if(d.display){var p=e.getPointPosition(m,h+5),M=r.valueAtIndexOrDefault(d.fontColor,m,t.defaultFontColor);a.font=c.font,a.fillStyle=M;var y=e.getIndexAngle(m),g=r.toDegrees(y);a.textAlign=l(g),_(g,e._pointLabelSizes[m],p),u(a,e.pointLabels[m]||"",p,c.size)}}}(e)}}});e.scaleService.registerScaleType("radialLinear",c,a)}},"8TtQ":function(e,t,a){"use strict";e.exports=function(e){var t=e.Scale.extend({getLabels:function(){var e=this.chart.data;return this.options.labels||(this.isHorizontal()?e.xLabels:e.yLabels)||e.labels},determineDataLimits:function(){var e,t=this,a=t.getLabels();t.minIndex=0,t.maxIndex=a.length-1,void 0!==t.options.ticks.min&&(e=a.indexOf(t.options.ticks.min),t.minIndex=-1!==e?e:t.minIndex),void 0!==t.options.ticks.max&&(e=a.indexOf(t.options.ticks.max),t.maxIndex=-1!==e?e:t.maxIndex),t.min=a[t.minIndex],t.max=a[t.maxIndex]},buildTicks:function(){var e=this,t=e.getLabels();e.ticks=0===e.minIndex&&e.maxIndex===t.length-1?t:t.slice(e.minIndex,e.maxIndex+1)},getLabelForIndex:function(e,t){var a=this,n=a.chart.data,r=a.isHorizontal();return n.yLabels&&!r?a.getRightValue(n.datasets[t].data[e]):a.ticks[e-a.minIndex]},getPixelForValue:function(e,t){var a,n=this,r=n.options.offset,i=Math.max(n.maxIndex+1-n.minIndex-(r?0:1),1);if(void 0!==e&&null!==e&&(a=n.isHorizontal()?e.x:e.y),void 0!==a||void 0!==e&&isNaN(t)){var s=n.getLabels().indexOf(e=a||e);t=-1!==s?s:t}if(n.isHorizontal()){var o=n.width/i,d=o*(t-n.minIndex);return r&&(d+=o/2),n.left+Math.round(d)}var l=n.height/i,u=l*(t-n.minIndex);return r&&(u+=l/2),n.top+Math.round(u)},getPixelForTick:function(e){return this.getPixelForValue(this.ticks[e],e+this.minIndex,null)},getValueForPixel:function(e){var t=this,a=t.options.offset,n=Math.max(t._ticks.length-(a?0:1),1),r=t.isHorizontal(),i=(r?t.width:t.height)/n;return e-=r?t.left:t.top,a&&(e-=i/2),(e<=0?0:Math.round(e/i))+t.minIndex},getBasePixel:function(){return this.bottom}});e.scaleService.registerScaleType("category",t,{position:"bottom"})}},"8mBD":function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},"9rRi":function(e,t,a){!function(e){"use strict";e.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(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}})}(a("wd/R"))},"A+xa":function(e,t,a){!function(e){"use strict";e.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(e){return e+(/\u0441\u0435\u0445\u0435\u0442$/i.exec(e)?"\u0440\u0435\u043d":/\u04ab\u0443\u043b$/i.exec(e)?"\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}})}(a("wd/R"))},A5uo:function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3"),i=a("RDha");n._set("global",{animation:{duration:1e3,easing:"easeOutQuart",onProgress:i.noop,onComplete:i.noop}}),e.exports=function(e){e.Animation=r.extend({chart:null,currentStep:0,numSteps:60,easing:"",render:null,onAnimationProgress:null,onAnimationComplete:null}),e.animationService={frameDuration:17,animations:[],dropFrames:0,request:null,addAnimation:function(e,t,a,n){var r,i,s=this.animations;for(t.chart=e,n||(e.animating=!0),r=0,i=s.length;r1&&(a=Math.floor(e.dropFrames),e.dropFrames=e.dropFrames%1),e.advance(1+a);var n=Date.now();e.dropFrames+=(n-t)/e.frameDuration,e.animations.length>0&&e.requestAnimationFrame()},advance:function(e){for(var t,a,n=this.animations,r=0;r=t.numSteps?(i.callback(t.onAnimationComplete,[t],a),a.animating=!1,n.splice(r,1)):++r}},Object.defineProperty(e.Animation.prototype,"animationObject",{get:function(){return this}}),Object.defineProperty(e.Animation.prototype,"chartInstance",{get:function(){return this.chart},set:function(e){this.chart=e}})}},AQ68:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},AX6q:function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3"),i=a("RDha"),s=a("fELs"),o=i.noop;function d(e,t){return e.usePointStyle?t*Math.SQRT2:e.boxWidth}n._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(e,t){var a=t.datasetIndex,n=this.chart,r=n.getDatasetMeta(a);r.hidden=null===r.hidden?!n.data.datasets[a].hidden:null,n.update()},onHover:null,labels:{boxWidth:40,padding:10,generateLabels:function(e){var t=e.data;return i.isArray(t.datasets)?t.datasets.map(function(t,a){return{text:t.label,fillStyle:i.isArray(t.backgroundColor)?t.backgroundColor[0]:t.backgroundColor,hidden:!e.isDatasetVisible(a),lineCap:t.borderCapStyle,lineDash:t.borderDash,lineDashOffset:t.borderDashOffset,lineJoin:t.borderJoinStyle,lineWidth:t.borderWidth,strokeStyle:t.borderColor,pointStyle:t.pointStyle,datasetIndex:a}},this):[]}}},legendCallback:function(e){var t=[];t.push('
    ');for(var a=0;a'),e.data.datasets[a].label&&t.push(e.data.datasets[a].label),t.push("");return t.push("
"),t.join("")}});var l=r.extend({initialize:function(e){i.extend(this,e),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:o,update:function(e,t,a){var n=this;return n.beforeUpdate(),n.maxWidth=e,n.maxHeight=t,n.margins=a,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:o,beforeSetDimensions:o,setDimensions:function(){var e=this;e.isHorizontal()?(e.width=e.maxWidth,e.left=0,e.right=e.width):(e.height=e.maxHeight,e.top=0,e.bottom=e.height),e.paddingLeft=0,e.paddingTop=0,e.paddingRight=0,e.paddingBottom=0,e.minSize={width:0,height:0}},afterSetDimensions:o,beforeBuildLabels:o,buildLabels:function(){var e=this,t=e.options.labels||{},a=i.callback(t.generateLabels,[e.chart],e)||[];t.filter&&(a=a.filter(function(a){return t.filter(a,e.chart.data)})),e.options.reverse&&a.reverse(),e.legendItems=a},afterBuildLabels:o,beforeFit:o,fit:function(){var e=this,t=e.options,a=t.labels,r=t.display,s=e.ctx,o=n.global,l=i.valueOrDefault,u=l(a.fontSize,o.defaultFontSize),_=l(a.fontStyle,o.defaultFontStyle),h=l(a.fontFamily,o.defaultFontFamily),c=i.fontString(u,_,h),m=e.legendHitBoxes=[],f=e.minSize,p=e.isHorizontal();if(p?(f.width=e.maxWidth,f.height=r?10:0):(f.width=r?10:0,f.height=e.maxHeight),r)if(s.font=c,p){var M=e.lineWidths=[0],y=e.legendItems.length?u+a.padding:0;s.textAlign="left",s.textBaseline="top",i.each(e.legendItems,function(t,n){var r=d(a,u)+u/2+s.measureText(t.text).width;M[M.length-1]+r+a.padding>=e.width&&(y+=u+a.padding,M[M.length]=e.left),m[n]={left:0,top:0,width:r,height:u},M[M.length-1]+=r+a.padding}),f.height+=y}else{var g=a.padding,L=e.columnWidths=[],v=a.padding,Y=0,k=0,b=u+g;i.each(e.legendItems,function(e,t){var n=d(a,u)+u/2+s.measureText(e.text).width;k+b>f.height&&(v+=Y+a.padding,L.push(Y),Y=0,k=0),Y=Math.max(Y,n),k+=b,m[t]={left:0,top:0,width:n,height:u}}),v+=Y,L.push(Y),f.width+=v}e.width=f.width,e.height=f.height},afterFit:o,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var e=this,t=e.options,a=t.labels,r=n.global,s=r.elements.line,o=e.width,l=e.lineWidths;if(t.display){var u,_=e.ctx,h=i.valueOrDefault,c=h(a.fontColor,r.defaultFontColor),m=h(a.fontSize,r.defaultFontSize),f=h(a.fontStyle,r.defaultFontStyle),p=h(a.fontFamily,r.defaultFontFamily),M=i.fontString(m,f,p);_.textAlign="left",_.textBaseline="middle",_.lineWidth=.5,_.strokeStyle=c,_.fillStyle=c,_.font=M;var y=d(a,m),g=e.legendHitBoxes,L=e.isHorizontal();u=L?{x:e.left+(o-l[0])/2,y:e.top+a.padding,line:0}:{x:e.left+a.padding,y:e.top+a.padding,line:0};var v=m+a.padding;i.each(e.legendItems,function(n,d){var c=_.measureText(n.text).width,f=y+m/2+c,p=u.x,M=u.y;L?p+f>=o&&(M=u.y+=v,u.line++,p=u.x=e.left+(o-l[u.line])/2):M+v>e.bottom&&(p=u.x=p+e.columnWidths[u.line]+a.padding,M=u.y=e.top+a.padding,u.line++),function(e,a,n){if(!(isNaN(y)||y<=0)){_.save(),_.fillStyle=h(n.fillStyle,r.defaultColor),_.lineCap=h(n.lineCap,s.borderCapStyle),_.lineDashOffset=h(n.lineDashOffset,s.borderDashOffset),_.lineJoin=h(n.lineJoin,s.borderJoinStyle),_.lineWidth=h(n.lineWidth,s.borderWidth),_.strokeStyle=h(n.strokeStyle,r.defaultColor);var o=0===h(n.lineWidth,s.borderWidth);if(_.setLineDash&&_.setLineDash(h(n.lineDash,s.borderDash)),t.labels&&t.labels.usePointStyle){var d=m*Math.SQRT2/2,l=d/Math.SQRT2;i.canvas.drawPoint(_,n.pointStyle,d,e+l,a+l)}else o||_.strokeRect(e,a,y,m),_.fillRect(e,a,y,m);_.restore()}}(p,M,n),g[d].left=p,g[d].top=M,function(e,t,a,n){var r=m/2,i=y+r+e,s=t+r;_.fillText(a.text,i,s),a.hidden&&(_.beginPath(),_.lineWidth=2,_.moveTo(i,s),_.lineTo(i+n,s),_.stroke())}(p,M,n,c),L?u.x+=f+a.padding:u.y+=v})}},handleEvent:function(e){var t=this,a=t.options,n="mouseup"===e.type?"click":e.type,r=!1;if("mousemove"===n){if(!a.onHover)return}else{if("click"!==n)return;if(!a.onClick)return}var i=e.x,s=e.y;if(i>=t.left&&i<=t.right&&s>=t.top&&s<=t.bottom)for(var o=t.legendHitBoxes,d=0;d=l.left&&i<=l.left+l.width&&s>=l.top&&s<=l.top+l.height){if("click"===n){a.onClick.call(t,e.native,t.legendItems[d]),r=!0;break}if("mousemove"===n){a.onHover.call(t,e.native,t.legendItems[d]),r=!0;break}}}return r}});function u(e,t){var a=new l({ctx:e.ctx,options:t,chart:e});s.configure(e,a,t),s.addBox(e,a),e.legend=a}e.exports={id:"legend",_element:l,beforeInit:function(e){var t=e.options.legend;t&&u(e,t)},beforeUpdate:function(e){var t=e.options.legend,a=e.legend;t?(i.mergeIf(t,n.global.legend),a?(s.configure(e,a,t),a.options=t):u(e,t)):a&&(s.removeBox(e,a),delete e.legend)},afterEvent:function(e,t){var a=e.legend;a&&a.handleEvent(t)}}},As3K:function(e,t,a){"use strict";var n=a("TC34");e.exports={toLineHeight:function(e,t){var a=(""+e).match(/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/);if(!a||"normal"===a[1])return 1.2*t;switch(e=+a[2],a[3]){case"px":return e;case"%":e/=100}return t*e},toPadding:function(e){var t,a,r,i;return n.isObject(e)?(t=+e.top||0,a=+e.right||0,r=+e.bottom||0,i=+e.left||0):t=a=r=i=+e||0,{top:t,right:a,bottom:r,left:i,height:t+r,width:i+a}},resolve:function(e,t,a){var r,i,s;for(r=0,i=e.length;r=4||"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d"===t||"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02"===t?e+12:e},meridiem:function(e,t,a){return e<4?"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f":e<12?"\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46":e<17?"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d":e<20?"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02":"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"}})}(a("wd/R"))},B55N:function(e,t,a){!function(e){"use strict";e.defineLocale("ja",{months:"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("_"),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(e){return"\u5348\u5f8c"===e},meridiem:function(e,t,a){return e<12?"\u5348\u524d":"\u5348\u5f8c"},calendar:{sameDay:"[\u4eca\u65e5] LT",nextDay:"[\u660e\u65e5] LT",nextWeek:function(e){return e.week()12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"rati":e<12?"sokalli":e<16?"donparam":e<20?"sanje":"rati"}})}(a("wd/R"))},Dkky:function(e,t,a){!function(e){"use strict";e.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(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})}(a("wd/R"))},Dmvi:function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(a("wd/R"))},DoHr:function(e,t,a){!function(e){"use strict";var t={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"};e.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(e,a){switch(a){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'\u0131nc\u0131";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(a("wd/R"))},DxQv:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},Dzi0:function(e,t,a){!function(e){"use strict";e.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(e){return e},week:{dow:1,doy:4}})}(a("wd/R"))},"E+lV":function(e,t,a){!function(e){"use strict";var t={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(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,a,n){var r=t.words[n];return 1===n.length?a?r[0]:r[1]:e+" "+t.correctGrammaticalCase(e,r)}};e.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:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"\u0434\u0430\u043d",dd:t.translate,M:"\u043c\u0435\u0441\u0435\u0446",MM:t.translate,y:"\u0433\u043e\u0434\u0438\u043d\u0443",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(a("wd/R"))},EOgW:function(e,t,a){!function(e){"use strict";e.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(e){return"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"===e},meridiem:function(e,t,a){return e<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"}})}(a("wd/R"))},G0Q6:function(e,t,a){"use strict";var n=a("CDJp"),r=a("vvH+"),i=a("RDha");n._set("line",{showLines:!0,spanGaps:!1,hover:{mode:"label"},scales:{xAxes:[{type:"category",id:"x-axis-0"}],yAxes:[{type:"linear",id:"y-axis-0"}]}}),e.exports=function(e){function t(e,t){return i.valueOrDefault(e.showLine,t.showLines)}e.controllers.line=e.DatasetController.extend({datasetElementType:r.Line,dataElementType:r.Point,update:function(e){var a,n,r,s=this,o=s.getMeta(),d=o.dataset,l=o.data||[],u=s.chart.options,_=u.elements.line,h=s.getScaleForId(o.yAxisID),c=s.getDataset(),m=t(c,u);for(m&&(r=d.custom||{},void 0!==c.tension&&void 0===c.lineTension&&(c.lineTension=c.tension),d._scale=h,d._datasetIndex=s.index,d._children=l,d._model={spanGaps:c.spanGaps?c.spanGaps:u.spanGaps,tension:r.tension?r.tension:i.valueOrDefault(c.lineTension,_.tension),backgroundColor:r.backgroundColor?r.backgroundColor:c.backgroundColor||_.backgroundColor,borderWidth:r.borderWidth?r.borderWidth:c.borderWidth||_.borderWidth,borderColor:r.borderColor?r.borderColor:c.borderColor||_.borderColor,borderCapStyle:r.borderCapStyle?r.borderCapStyle:c.borderCapStyle||_.borderCapStyle,borderDash:r.borderDash?r.borderDash:c.borderDash||_.borderDash,borderDashOffset:r.borderDashOffset?r.borderDashOffset:c.borderDashOffset||_.borderDashOffset,borderJoinStyle:r.borderJoinStyle?r.borderJoinStyle:c.borderJoinStyle||_.borderJoinStyle,fill:r.fill?r.fill:void 0!==c.fill?c.fill:_.fill,steppedLine:r.steppedLine?r.steppedLine:i.valueOrDefault(c.steppedLine,_.stepped),cubicInterpolationMode:r.cubicInterpolationMode?r.cubicInterpolationMode:i.valueOrDefault(c.cubicInterpolationMode,_.cubicInterpolationMode)},d.pivot()),a=0,n=l.length;a=2&&n%10<=4&&(n%100<10||n%100>=20)?r[1]:r[2])}e.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:/\[ ?[\u0412\u0432] ?(?:\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:t,mm:t,h:t,hh:t,d:"\u0434\u0437\u0435\u043d\u044c",dd:t,M:"\u043c\u0435\u0441\u044f\u0446",MM:t,y:"\u0433\u043e\u0434",yy:t},meridiemParse:/\u043d\u043e\u0447\u044b|\u0440\u0430\u043d\u0456\u0446\u044b|\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430/,isPM:function(e){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430)$/.test(e)},meridiem:function(e,t,a){return e<4?"\u043d\u043e\u0447\u044b":e<12?"\u0440\u0430\u043d\u0456\u0446\u044b":e<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0430\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0456|\u044b|\u0433\u0430)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+"-\u044b":e+"-\u0456";case"D":return e+"-\u0433\u0430";default:return e}},week:{dow:1,doy:7}})}(a("wd/R"))},HP3h:function(e,t,a){!function(e){"use strict";var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},a=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={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(e){return function(t,r,i,s){var o=a(t),d=n[e][a(t)];return 2===o&&(d=d[r?0:1]),d.replace(/%d/i,t)}},i=["\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"];e.defineLocale("ar-ly",{months:i,monthsShort:i,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(e){return"\u0645"===e},meridiem:function(e,t,a){return e<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(e){return e.replace(/\u060c/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(a("wd/R"))},Hg4g:function(e,t){e.exports={acquireContext:function(e){return e&&e.canvas&&(e=e.canvas),e&&e.getContext("2d")||null}}},IBtZ:function(e,t,a){!function(e){"use strict";e.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(e){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10ec\u10d4\u10da\u10d8)/.test(e)?e.replace(/\u10d8$/,"\u10e8\u10d8"):e+"\u10e8\u10d8"},past:function(e){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10d3\u10e6\u10d4|\u10d7\u10d5\u10d4)/.test(e)?e.replace(/(\u10d8|\u10d4)$/,"\u10d8\u10e1 \u10ec\u10d8\u10dc"):/\u10ec\u10d4\u10da\u10d8/.test(e)?e.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(e){return 0===e?e:1===e?e+"-\u10da\u10d8":e<20||e<=100&&e%20==0||e%100==0?"\u10db\u10d4-"+e:e+"-\u10d4"},week:{dow:1,doy:7}})}(a("wd/R"))},"Ivi+":function(e,t,a){!function(e){"use strict";e.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(e,t){switch(t){case"d":case"D":case"DDD":return e+"\uc77c";case"M":return e+"\uc6d4";case"w":case"W":return e+"\uc8fc";default:return e}},meridiemParse:/\uc624\uc804|\uc624\ud6c4/,isPM:function(e){return"\uc624\ud6c4"===e},meridiem:function(e,t,a){return e<12?"\uc624\uc804":"\uc624\ud6c4"}})}(a("wd/R"))},JVSJ:function(e,t,a){!function(e){"use strict";function t(e,t,a){var n=e+" ";switch(a){case"ss":return n+(1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi");case"m":return t?"jedna minuta":"jedne minute";case"mm":return n+(1===e?"minuta":2===e||3===e||4===e?"minute":"minuta");case"h":return t?"jedan sat":"jednog sata";case"hh":return n+(1===e?"sat":2===e||3===e||4===e?"sata":"sati");case"dd":return n+(1===e?"dan":"dana");case"MM":return n+(1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci");case"yy":return n+(1===e?"godina":2===e||3===e||4===e?"godine":"godina")}}e.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:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(a("wd/R"))},JvlW:function(e,t,a){!function(e){"use strict";var t={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 a(e,t,a,n){return t?r(a)[0]:n?r(a)[1]:r(a)[2]}function n(e){return e%10==0||e>10&&e<20}function r(e){return t[e].split("_")}function i(e,t,i,s){var o=e+" ";return 1===e?o+a(0,t,i[0],s):t?o+(n(e)?r(i)[1]:r(i)[0]):s?o+r(i)[1]:o+(n(e)?r(i)[1]:r(i)[2])}e.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(e,t,a,n){return t?"kelios sekund\u0117s":n?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},ss:i,m:a,mm:i,h:a,hh:i,d:a,dd:i,M:a,MM:i,y:a,yy:i},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})}(a("wd/R"))},"K/tc":function(e,t,a){!function(e){"use strict";e.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(e){return/^nm$/i.test(e)},meridiem:function(e,t,a){return e<12?a?"vm":"VM":a?"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(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(a("wd/R"))},K2E3:function(e,t,a){"use strict";var n=a("6ww4"),r=a("RDha"),i=function(e){r.extend(this,e),this.initialize.apply(this,arguments)};r.extend(i.prototype,{initialize:function(){this.hidden=!1},pivot:function(){var e=this;return e._view||(e._view=r.clone(e._model)),e._start={},e},transition:function(e){var t=this,a=t._model,r=t._start,i=t._view;return a&&1!==e?(i||(i=t._view={}),r||(r=t._start={}),function(e,t,a,r){var i,s,o,d,l,u,_,h,c,m=Object.keys(a);for(i=0,s=m.length;i0||(t.forEach(function(t){delete e[t]}),delete e._chartjs)}}e.DatasetController=function(e,t){this.initialize(e,t)},n.extend(e.DatasetController.prototype,{datasetElementType:null,dataElementType:null,initialize:function(e,t){this.chart=e,this.index=t,this.linkScales(),this.addElements()},updateIndex:function(e){this.index=e},linkScales:function(){var e=this,t=e.getMeta(),a=e.getDataset();null!==t.xAxisID&&t.xAxisID in e.chart.scales||(t.xAxisID=a.xAxisID||e.chart.options.scales.xAxes[0].id),null!==t.yAxisID&&t.yAxisID in e.chart.scales||(t.yAxisID=a.yAxisID||e.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(e){return this.chart.scales[e]},reset:function(){this.update(!0)},destroy:function(){this._data&&a(this._data,this)},createMetaDataset:function(){var e=this.datasetElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(e){var t=this.dataElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index,_index:e})},addElements:function(){var e,t,a=this.getMeta(),n=this.getDataset().data||[],r=a.data;for(e=0,t=n.length;ea&&this.insertElements(a,n-a)},insertElements:function(e,t){for(var a=0;a=2&&e<=4?t[1]:t[2]},translate:function(e,a,n){var r=t.words[n];return 1===n.length?a?r[0]:r[1]:e+" "+t.correctGrammaticalCase(e,r)}};e.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:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mjesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(a("wd/R"))},Loxo:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},ODdm:function(e,t,a){"use strict";e.exports=function(e){e.Bar=function(t,a){return a.type="bar",new e(t,a)}}},OIYi:function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}})}(a("wd/R"))},OXbD:function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3"),i=a("RDha"),s=n.global.defaultColor;function o(e){var t=this._view;return!!t&&Math.abs(e-t.x)=10?e:e+12:"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0930\u093e\u0924\u094d\u0930\u0940":e<10?"\u0938\u0915\u093e\u0933\u0940":e<17?"\u0926\u0941\u092a\u093e\u0930\u0940":e<20?"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940":"\u0930\u093e\u0924\u094d\u0930\u0940"},week:{dow:0,doy:6}})}(a("wd/R"))},OjkT:function(e,t,a){!function(e){"use strict";var t={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},a={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};e.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(e){return e.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/\u0930\u093e\u0924\u093f|\u092c\u093f\u0939\u093e\u0928|\u0926\u093f\u0909\u0901\u0938\u094b|\u0938\u093e\u0901\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),"\u0930\u093e\u0924\u093f"===t?e<4?e:e+12:"\u092c\u093f\u0939\u093e\u0928"===t?e:"\u0926\u093f\u0909\u0901\u0938\u094b"===t?e>=10?e:e+12:"\u0938\u093e\u0901\u091d"===t?e+12:void 0},meridiem:function(e,t,a){return e<3?"\u0930\u093e\u0924\u093f":e<12?"\u092c\u093f\u0939\u093e\u0928":e<16?"\u0926\u093f\u0909\u0901\u0938\u094b":e<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}})}(a("wd/R"))},Oxv6:function(e,t,a){!function(e){"use strict";var t={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"};e.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(e,t){return 12===e&&(e=0),"\u0448\u0430\u0431"===t?e<4?e:e+12:"\u0441\u0443\u0431\u04b3"===t?e:"\u0440\u04ef\u0437"===t?e>=11?e:e+12:"\u0431\u0435\u0433\u043e\u04b3"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0448\u0430\u0431":e<11?"\u0441\u0443\u0431\u04b3":e<16?"\u0440\u04ef\u0437":e<19?"\u0431\u0435\u0433\u043e\u04b3":"\u0448\u0430\u0431"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0443\u043c|\u044e\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(a("wd/R"))},PA2r:function(e,t,a){!function(e){"use strict";var t="leden_\xfanor_b\u0159ezen_duben_kv\u011bten_\u010derven_\u010dervenec_srpen_z\xe1\u0159\xed_\u0159\xedjen_listopad_prosinec".split("_"),a="led_\xfano_b\u0159e_dub_kv\u011b_\u010dvn_\u010dvc_srp_z\xe1\u0159_\u0159\xedj_lis_pro".split("_");function n(e){return e>1&&e<5&&1!=~~(e/10)}function r(e,t,a,r){var i=e+" ";switch(a){case"s":return t||r?"p\xe1r sekund":"p\xe1r sekundami";case"ss":return t||r?i+(n(e)?"sekundy":"sekund"):i+"sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?i+(n(e)?"minuty":"minut"):i+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?i+(n(e)?"hodiny":"hodin"):i+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?i+(n(e)?"dny":"dn\xed"):i+"dny";case"M":return t||r?"m\u011bs\xedc":"m\u011bs\xedcem";case"MM":return t||r?i+(n(e)?"m\u011bs\xedce":"m\u011bs\xedc\u016f"):i+"m\u011bs\xedci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?i+(n(e)?"roky":"let"):i+"lety"}}e.defineLocale("cs",{months:t,monthsShort:a,monthsParse:function(e,t){var a,n=[];for(a=0;a<12;a++)n[a]=new RegExp("^"+e[a]+"$|^"+t[a]+"$","i");return n}(t,a),shortMonthsParse:function(e){var t,a=[];for(t=0;t<12;t++)a[t]=new RegExp("^"+e[t]+"$","i");return a}(a),longMonthsParse:function(e){var t,a=[];for(t=0;t<12;t++)a[t]=new RegExp("^"+e[t]+"$","i");return a}(t),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: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}})}(a("wd/R"))},PeUW:function(e,t,a){!function(e){"use strict";var t={1:"\u0be7",2:"\u0be8",3:"\u0be9",4:"\u0bea",5:"\u0beb",6:"\u0bec",7:"\u0bed",8:"\u0bee",9:"\u0bef",0:"\u0be6"},a={"\u0be7":"1","\u0be8":"2","\u0be9":"3","\u0bea":"4","\u0beb":"5","\u0bec":"6","\u0bed":"7","\u0bee":"8","\u0bef":"9","\u0be6":"0"};e.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(e){return e+"\u0bb5\u0ba4\u0bc1"},preparse:function(e){return e.replace(/[\u0be7\u0be8\u0be9\u0bea\u0beb\u0bec\u0bed\u0bee\u0bef\u0be6]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},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(e,t,a){return e<2?" \u0baf\u0bbe\u0bae\u0bae\u0bcd":e<6?" \u0bb5\u0bc8\u0b95\u0bb1\u0bc8":e<10?" \u0b95\u0bbe\u0bb2\u0bc8":e<14?" \u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd":e<18?" \u0b8e\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1":e<22?" \u0bae\u0bbe\u0bb2\u0bc8":" \u0baf\u0bbe\u0bae\u0bae\u0bcd"},meridiemHour:function(e,t){return 12===e&&(e=0),"\u0baf\u0bbe\u0bae\u0bae\u0bcd"===t?e<2?e:e+12:"\u0bb5\u0bc8\u0b95\u0bb1\u0bc8"===t||"\u0b95\u0bbe\u0bb2\u0bc8"===t?e:"\u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(a("wd/R"))},PpIw:function(e,t,a){!function(e){"use strict";var t={1:"\u0ce7",2:"\u0ce8",3:"\u0ce9",4:"\u0cea",5:"\u0ceb",6:"\u0cec",7:"\u0ced",8:"\u0cee",9:"\u0cef",0:"\u0ce6"},a={"\u0ce7":"1","\u0ce8":"2","\u0ce9":"3","\u0cea":"4","\u0ceb":"5","\u0cec":"6","\u0ced":"7","\u0cee":"8","\u0cef":"9","\u0ce6":"0"};e.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(e){return e.replace(/[\u0ce7\u0ce8\u0ce9\u0cea\u0ceb\u0cec\u0ced\u0cee\u0cef\u0ce6]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},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(e,t){return 12===e&&(e=0),"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"===t?e<4?e:e+12:"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6"===t?e:"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8"===t?e>=10?e:e+12:"\u0cb8\u0c82\u0c9c\u0cc6"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf":e<10?"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6":e<17?"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8":e<20?"\u0cb8\u0c82\u0c9c\u0cc6":"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"},dayOfMonthOrdinalParse:/\d{1,2}(\u0ca8\u0cc6\u0cd5)/,ordinal:function(e){return e+"\u0ca8\u0cc6\u0cd5"},week:{dow:0,doy:6}})}(a("wd/R"))},Qexa:function(e,t,a){"use strict";e.exports=function(e){e.Bubble=function(t,a){return a.type="bubble",new e(t,a)}}},Qj4J:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},RAwQ:function(e,t,a){!function(e){"use strict";function t(e,t,a,n){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 t?r[a][0]:r[a][1]}function a(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return a(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return a(e)}return a(e/=1e3)}e.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(e){return a(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e},past:function(e){return a(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e},s:"e puer Sekonnen",ss:"%d Sekonnen",m:t,mm:"%d Minutten",h:t,hh:"%d Stonnen",d:t,dd:"%d Deeg",M:t,MM:"%d M\xe9int",y:t,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},RCHg:function(e,t,a){"use strict";var n=a("wd/R");n="function"==typeof n?n:window.moment;var r=a("CDJp"),i=a("RDha"),s=Number.MIN_SAFE_INTEGER||-9007199254740991,o=Number.MAX_SAFE_INTEGER||9007199254740991,d={millisecond:{common:!0,size:1,steps:[1,2,5,10,20,50,100,250,500]},second:{common:!0,size:1e3,steps:[1,2,5,10,30]},minute:{common:!0,size:6e4,steps:[1,2,5,10,30]},hour:{common:!0,size:36e5,steps:[1,2,3,6,12]},day:{common:!0,size:864e5,steps:[1,2,5]},week:{common:!1,size:6048e5,steps:[1,2,3,4]},month:{common:!0,size:2628e6,steps:[1,2,3]},quarter:{common:!1,size:7884e6,steps:[1,2,3,4]},year:{common:!0,size:3154e7}},l=Object.keys(d);function u(e,t){return e-t}function _(e){var t,a,n,r={},i=[];for(t=0,a=e.length;t=0&&s<=o;){if(i=e[n=s+o>>1],!(r=e[n-1]||null))return{lo:null,hi:i};if(i[t]a))return{lo:r,hi:i};o=n-1}}return{lo:i,hi:null}}(e,t,a),i=r.lo?r.hi?r.lo:e[e.length-2]:e[0],s=r.lo?r.hi?r.hi:e[e.length-1]:e[1],o=s[t]-i[t];return i[n]+(s[n]-i[n])*(o?(a-i[t])/o:0)}function c(e,t){var a=t.parser,r=t.parser||t.format;return"function"==typeof a?a(e):"string"==typeof e&&"string"==typeof r?n(e,r):(e instanceof n||(e=n(e)),e.isValid()?e:"function"==typeof r?r(e):e)}function m(e,t){if(i.isNullOrUndef(e))return null;var a=t.options.time,n=c(t.getRightValue(e),a);return n.isValid()?(a.round&&n.startOf(a.round),n.valueOf()):null}function f(e){for(var t=l.indexOf(e)+1,a=l.length;t=s&&a<=u&&y.push(a);return r.min=s,r.max=u,r._unit=p.unit||function(e,t,a,i){var s,o,u=n.duration(n(r.max).diff(n(a)));for(s=l.length-1;s>=l.indexOf(t);s--)if(d[o=l[s]].common&&u.as(o)>=e.length)return o;return l[t?l.indexOf(t):0]}(y,p.minUnit,r.min),r._majorUnit=f(r._unit),r._table=function(e,t,a,n){if("linear"===_.distribution||!e.length)return[{time:t,pos:0},{time:a,pos:1}];var r,i,s,o,d,l=[],u=[t];for(r=0,i=e.length;rt&&o1?t[1]:n,"pos")-h(e,"time",s,"pos"))/2),r.time.max||(i=t[t.length-1],s=t.length>1?t[t.length-2]:a,d=(h(e,"time",i,"pos")-h(e,"time",s,"pos"))/2)),{left:o,right:d}}(r._table,y,s,u,_),r._labelFormat=function(e,t){var a,n,r,i=e.length;for(a=0;a=0&&e0?o:1}});e.scaleService.registerScaleType("time",t,{position:"bottom",distribution:"linear",bounds:"data",time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}})}},RDha:function(e,t,a){"use strict";e.exports=a("TC34"),e.exports.easing=a("u0Op"),e.exports.canvas=a("Sfow"),e.exports.options=a("As3K")},RnhZ:function(e,t,a){var n={"./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-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","./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.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+","./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(e){var t=i(e);return a(t)}function i(e){var t=n[e];if(!(t+1)){var a=new Error('Cannot find module "'+e+'".');throw a.code="MODULE_NOT_FOUND",a}return t}r.keys=function(){return Object.keys(n)},r.resolve=i,e.exports=r,r.id="RnhZ"},"S3/U":function(e,t,a){"use strict";e.exports=function(e){e.Scatter=function(t,a){return a.type="scatter",new e(t,a)}}},S6ln:function(e,t,a){!function(e){"use strict";function t(e,t,a){var n=e+" ";switch(a){case"ss":return n+(1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi");case"m":return t?"jedna minuta":"jedne minute";case"mm":return n+(1===e?"minuta":2===e||3===e||4===e?"minute":"minuta");case"h":return t?"jedan sat":"jednog sata";case"hh":return n+(1===e?"sat":2===e||3===e||4===e?"sata":"sati");case"dd":return n+(1===e?"dan":"dana");case"MM":return n+(1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci");case"yy":return n+(1===e?"godina":2===e||3===e||4===e?"godine":"godina")}}e.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:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(a("wd/R"))},S7Ns:function(e,t,a){"use strict";e.exports=function(e){e.Doughnut=function(t,a){return a.type="doughnut",new e(t,a)}}},SFxW:function(e,t,a){!function(e){"use strict";var t={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"};e.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 saniyy\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(e){return/^(g\xfcnd\xfcz|ax\u015fam)$/.test(e)},meridiem:function(e,t,a){return e<4?"gec\u0259":e<12?"s\u0259h\u0259r":e<17?"g\xfcnd\xfcz":"ax\u015fam"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0131nc\u0131|inci|nci|\xfcnc\xfc|nc\u0131|uncu)/,ordinal:function(e){if(0===e)return e+"-\u0131nc\u0131";var a=e%10;return e+(t[a]||t[e%100-a]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(a("wd/R"))},SatO:function(e,t,a){!function(e){"use strict";e.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(e,t){return 12===e&&(e=0),"\u51cc\u6668"===t||"\u65e9\u4e0a"===t||"\u4e0a\u5348"===t?e:"\u4e2d\u5348"===t?e>=11?e:e+12:"\u4e0b\u5348"===t||"\u665a\u4e0a"===t?e+12:void 0},meridiem:function(e,t,a){var n=100*e+t;return n<600?"\u51cc\u6668":n<900?"\u65e9\u4e0a":n<1130?"\u4e0a\u5348":n<1230?"\u4e2d\u5348":n<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(e,t){switch(t){case"d":case"D":case"DDD":return e+"\u65e5";case"M":return e+"\u6708";case"w":case"W":return e+"\u9031";default:return e}},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"}})}(a("wd/R"))},Sfow:function(e,t,a){"use strict";var n=a("TC34");t=e.exports={clear:function(e){e.ctx.clearRect(0,0,e.width,e.height)},roundedRect:function(e,t,a,n,r,i){if(i){var s=Math.min(i,n/2),o=Math.min(i,r/2);e.moveTo(t+s,a),e.lineTo(t+n-s,a),e.quadraticCurveTo(t+n,a,t+n,a+o),e.lineTo(t+n,a+r-o),e.quadraticCurveTo(t+n,a+r,t+n-s,a+r),e.lineTo(t+s,a+r),e.quadraticCurveTo(t,a+r,t,a+r-o),e.lineTo(t,a+o),e.quadraticCurveTo(t,a,t+s,a)}else e.rect(t,a,n,r)},drawPoint:function(e,t,a,n,r){var i,s,o,d,l,u;if(!t||"object"!=typeof t||"[object HTMLImageElement]"!==(i=t.toString())&&"[object HTMLCanvasElement]"!==i){if(!(isNaN(a)||a<=0)){switch(t){default:e.beginPath(),e.arc(n,r,a,0,2*Math.PI),e.closePath(),e.fill();break;case"triangle":e.beginPath(),l=(s=3*a/Math.sqrt(3))*Math.sqrt(3)/2,e.moveTo(n-s/2,r+l/3),e.lineTo(n+s/2,r+l/3),e.lineTo(n,r-2*l/3),e.closePath(),e.fill();break;case"rect":u=1/Math.SQRT2*a,e.beginPath(),e.fillRect(n-u,r-u,2*u,2*u),e.strokeRect(n-u,r-u,2*u,2*u);break;case"rectRounded":var _=a/Math.SQRT2,h=n-_,c=r-_,m=Math.SQRT2*a;e.beginPath(),this.roundedRect(e,h,c,m,m,a/2),e.closePath(),e.fill();break;case"rectRot":u=1/Math.SQRT2*a,e.beginPath(),e.moveTo(n-u,r),e.lineTo(n,r+u),e.lineTo(n+u,r),e.lineTo(n,r-u),e.closePath(),e.fill();break;case"cross":e.beginPath(),e.moveTo(n,r+a),e.lineTo(n,r-a),e.moveTo(n-a,r),e.lineTo(n+a,r),e.closePath();break;case"crossRot":e.beginPath(),o=Math.cos(Math.PI/4)*a,d=Math.sin(Math.PI/4)*a,e.moveTo(n-o,r-d),e.lineTo(n+o,r+d),e.moveTo(n-o,r+d),e.lineTo(n+o,r-d),e.closePath();break;case"star":e.beginPath(),e.moveTo(n,r+a),e.lineTo(n,r-a),e.moveTo(n-a,r),e.lineTo(n+a,r),o=Math.cos(Math.PI/4)*a,d=Math.sin(Math.PI/4)*a,e.moveTo(n-o,r-d),e.lineTo(n+o,r+d),e.moveTo(n-o,r+d),e.lineTo(n+o,r-d),e.closePath();break;case"line":e.beginPath(),e.moveTo(n-a,r),e.lineTo(n+a,r),e.closePath();break;case"dash":e.beginPath(),e.moveTo(n,r),e.lineTo(n+a,r),e.closePath()}e.stroke()}}else e.drawImage(t,n-t.width/2,r-t.height/2,t.width,t.height)},clipArea:function(e,t){e.save(),e.beginPath(),e.rect(t.left,t.top,t.right-t.left,t.bottom-t.top),e.clip()},unclipArea:function(e){e.restore()},lineTo:function(e,t,a,n){if(a.steppedLine)return"after"===a.steppedLine&&!n||"after"!==a.steppedLine&&n?e.lineTo(t.x,a.y):e.lineTo(a.x,t.y),void e.lineTo(a.x,a.y);a.tension?e.bezierCurveTo(n?t.controlPointPreviousX:t.controlPointNextX,n?t.controlPointPreviousY:t.controlPointNextY,n?a.controlPointNextX:a.controlPointPreviousX,n?a.controlPointNextY:a.controlPointPreviousY,a.x,a.y):e.lineTo(a.x,a.y)}},n.clear=t.clear,n.drawRoundedRectangle=function(e){e.beginPath(),t.roundedRect.apply(t,arguments),e.closePath()}},T016:function(e,t,a){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},TC34:function(e,t,a){"use strict";var n,r={noop:function(){},uid:(n=0,function(){return n++}),isNullOrUndef:function(e){return null===e||void 0===e},isArray:Array.isArray?Array.isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e)},isObject:function(e){return null!==e&&"[object Object]"===Object.prototype.toString.call(e)},valueOrDefault:function(e,t){return void 0===e?t:e},valueAtIndexOrDefault:function(e,t,a){return r.valueOrDefault(r.isArray(e)?e[t]:e,a)},callback:function(e,t,a){if(e&&"function"==typeof e.call)return e.apply(a,t)},each:function(e,t,a,n){var i,s,o;if(r.isArray(e))if(s=e.length,n)for(i=s-1;i>=0;i--)t.call(a,e[i],i);else for(i=0;i=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"pagi":e<15?"siang":e<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}})}(a("wd/R"))},UpQW:function(e,t,a){!function(e){"use strict";var t=["\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"],a=["\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"];e.defineLocale("ur",{months:t,monthsShort:t,weekdays:a,weekdaysShort:a,weekdaysMin:a,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(e){return"\u0634\u0627\u0645"===e},meridiem:function(e,t,a){return e<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(e){return e.replace(/\u060c/g,",")},postformat:function(e){return e.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}(a("wd/R"))},UqmZ:function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3"),i=a("RDha"),s=n.global;n._set("global",{elements:{line:{tension:.4,backgroundColor:s.defaultColor,borderWidth:3,borderColor:s.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}}),e.exports=r.extend({draw:function(){var e,t,a,n,r=this._view,o=this._chart.ctx,d=r.spanGaps,l=this._children.slice(),u=s.elements.line,_=-1;for(this._loop&&l.length&&l.push(l[0]),o.save(),o.lineCap=r.borderCapStyle||u.borderCapStyle,o.setLineDash&&o.setLineDash(r.borderDash||u.borderDash),o.lineDashOffset=r.borderDashOffset||u.borderDashOffset,o.lineJoin=r.borderJoinStyle||u.borderJoinStyle,o.lineWidth=r.borderWidth||u.borderWidth,o.strokeStyle=r.borderColor||s.defaultColor,o.beginPath(),_=-1,e=0;e=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})}(a("wd/R"))},V2x9:function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(a("wd/R"))},Vclq:function(e,t,a){!function(e){"use strict";var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_");e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsParseExact:!0,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:"MMMM [de] D [de] YYYY",LLL:"MMMM [de] D [de] YYYY h:mm A",LLLL:"dddd, MMMM [de] D [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}})}(a("wd/R"))},VgNv:function(e,t,a){"use strict";var n=a("CDJp"),r=a("RDha");n._set("global",{plugins:{}}),e.exports={_plugins:[],_cacheId:0,register:function(e){var t=this._plugins;[].concat(e).forEach(function(e){-1===t.indexOf(e)&&t.push(e)}),this._cacheId++},unregister:function(e){var t=this._plugins;[].concat(e).forEach(function(e){var a=t.indexOf(e);-1!==a&&t.splice(a,1)}),this._cacheId++},clear:function(){this._plugins=[],this._cacheId++},count:function(){return this._plugins.length},getAll:function(){return this._plugins},notify:function(e,t,a){var n,r,i,s,o,d=this.descriptors(e),l=d.length;for(n=0;nd;)r-=2*Math.PI;for(;r=o&&r<=d&&s>=a.innerRadius&&s<=a.outerRadius}return!1},getCenterPoint:function(){var e=this._view,t=(e.startAngle+e.endAngle)/2,a=(e.innerRadius+e.outerRadius)/2;return{x:e.x+Math.cos(t)*a,y:e.y+Math.sin(t)*a}},getArea:function(){var e=this._view;return Math.PI*((e.endAngle-e.startAngle)/(2*Math.PI))*(Math.pow(e.outerRadius,2)-Math.pow(e.innerRadius,2))},tooltipPosition:function(){var e=this._view,t=e.startAngle+(e.endAngle-e.startAngle)/2,a=(e.outerRadius-e.innerRadius)/2+e.innerRadius;return{x:e.x+Math.cos(t)*a,y:e.y+Math.sin(t)*a}},draw:function(){var e=this._chart.ctx,t=this._view,a=t.startAngle,n=t.endAngle;e.beginPath(),e.arc(t.x,t.y,t.outerRadius,a,n),e.arc(t.x,t.y,t.innerRadius,n,a,!0),e.closePath(),e.strokeStyle=t.borderColor,e.lineWidth=t.borderWidth,e.fillStyle=t.backgroundColor,e.fill(),e.lineJoin="bevel",t.borderWidth&&e.stroke()}})},XDpg:function(e,t,a){!function(e){"use strict";e.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(e,t){return 12===e&&(e=0),"\u51cc\u6668"===t||"\u65e9\u4e0a"===t||"\u4e0a\u5348"===t?e:"\u4e0b\u5348"===t||"\u665a\u4e0a"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,a){var n=100*e+t;return n<600?"\u51cc\u6668":n<900?"\u65e9\u4e0a":n<1130?"\u4e0a\u5348":n<1230?"\u4e2d\u5348":n<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(e,t){switch(t){case"d":case"D":case"DDD":return e+"\u65e5";case"M":return e+"\u6708";case"w":case"W":return e+"\u5468";default:return e}},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}})}(a("wd/R"))},XLvN:function(e,t,a){!function(e){"use strict";e.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\u0c42\u0c32\u0c46\u0c56_\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\u0c42\u0c32\u0c46\u0c56_\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(e,t){return 12===e&&(e=0),"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"===t?e<4?e:e+12:"\u0c09\u0c26\u0c2f\u0c02"===t?e:"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02"===t?e>=10?e:e+12:"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f":e<10?"\u0c09\u0c26\u0c2f\u0c02":e<17?"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02":e<20?"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02":"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"},week:{dow:0,doy:6}})}(a("wd/R"))},"XQh+":function(e,t,a){"use strict";var n=a("CDJp"),r=a("vvH+"),i=a("RDha");n._set("doughnut",{animation:{animateRotate:!0,animateScale:!1},hover:{mode:"single"},legendCallback:function(e){var t=[];t.push('
    ');var a=e.data,n=a.datasets,r=a.labels;if(n.length)for(var i=0;i'),r[i]&&t.push(r[i]),t.push("");return t.push("
"),t.join("")},legend:{labels:{generateLabels:function(e){var t=e.data;return t.labels.length&&t.datasets.length?t.labels.map(function(a,n){var r=e.getDatasetMeta(0),s=t.datasets[0],o=r.data[n],d=o&&o.custom||{},l=i.valueAtIndexOrDefault,u=e.options.elements.arc;return{text:a,fillStyle:d.backgroundColor?d.backgroundColor:l(s.backgroundColor,n,u.backgroundColor),strokeStyle:d.borderColor?d.borderColor:l(s.borderColor,n,u.borderColor),lineWidth:d.borderWidth?d.borderWidth:l(s.borderWidth,n,u.borderWidth),hidden:isNaN(s.data[n])||r.data[n].hidden,index:n}}):[]}},onClick:function(e,t){var a,n,r,i=t.index,s=this.chart;for(a=0,n=(s.data.datasets||[]).length;a=Math.PI?-1:m<-Math.PI?1:0))+c,p={x:Math.cos(m),y:Math.sin(m)},M={x:Math.cos(f),y:Math.sin(f)},y=m<=0&&f>=0||m<=2*Math.PI&&2*Math.PI<=f,g=m<=.5*Math.PI&&.5*Math.PI<=f||m<=2.5*Math.PI&&2.5*Math.PI<=f,L=m<=-Math.PI&&-Math.PI<=f||m<=Math.PI&&Math.PI<=f,v=m<=.5*-Math.PI&&.5*-Math.PI<=f||m<=1.5*Math.PI&&1.5*Math.PI<=f,Y=h/100,k={x:L?-1:Math.min(p.x*(p.x<0?1:Y),M.x*(M.x<0?1:Y)),y:v?-1:Math.min(p.y*(p.y<0?1:Y),M.y*(M.y<0?1:Y))},b={x:y?1:Math.max(p.x*(p.x>0?1:Y),M.x*(M.x>0?1:Y)),y:g?1:Math.max(p.y*(p.y>0?1:Y),M.y*(M.y>0?1:Y))},D={width:.5*(b.x-k.x),height:.5*(b.y-k.y)};l=Math.min(o/D.width,d/D.height),u={x:-.5*(b.x+k.x),y:-.5*(b.y+k.y)}}a.borderWidth=t.getMaxBorderWidth(_.data),a.outerRadius=Math.max((l-a.borderWidth)/2,0),a.innerRadius=Math.max(h?a.outerRadius/100*h:0,0),a.radiusLength=(a.outerRadius-a.innerRadius)/a.getVisibleDatasetCount(),a.offsetX=u.x*a.outerRadius,a.offsetY=u.y*a.outerRadius,_.total=t.calculateTotal(),t.outerRadius=a.outerRadius-a.radiusLength*t.getRingIndex(t.index),t.innerRadius=Math.max(t.outerRadius-a.radiusLength,0),i.each(_.data,function(a,n){t.updateElement(a,n,e)})},updateElement:function(e,t,a){var n=this,r=n.chart,s=r.chartArea,o=r.options,d=o.animation,l=(s.left+s.right)/2,u=(s.top+s.bottom)/2,_=o.rotation,h=o.rotation,c=n.getDataset(),m=a&&d.animateRotate?0:e.hidden?0:n.calculateCircumference(c.data[t])*(o.circumference/(2*Math.PI));i.extend(e,{_datasetIndex:n.index,_index:t,_model:{x:l+r.offsetX,y:u+r.offsetY,startAngle:_,endAngle:h,circumference:m,outerRadius:a&&d.animateScale?0:n.outerRadius,innerRadius:a&&d.animateScale?0:n.innerRadius,label:(0,i.valueAtIndexOrDefault)(c.label,t,r.data.labels[t])}});var f=e._model;this.removeHoverStyle(e),a&&d.animateRotate||(f.startAngle=0===t?o.rotation:n.getMeta().data[t-1]._model.endAngle,f.endAngle=f.startAngle+f.circumference),e.pivot()},removeHoverStyle:function(t){e.DatasetController.prototype.removeHoverStyle.call(this,t,this.chart.options.elements.arc)},calculateTotal:function(){var e,t=this.getDataset(),a=this.getMeta(),n=0;return i.each(a.data,function(a,r){e=t.data[r],isNaN(e)||a.hidden||(n+=Math.abs(e))}),n},calculateCircumference:function(e){var t=this.getMeta().total;return t>0&&!isNaN(e)?2*Math.PI*(Math.abs(e)/t):0},getMaxBorderWidth:function(e){for(var t,a,n=0,r=this.index,i=e.length,s=0;s(n=t>n?t:n)?a:n;return n}})}},Y4Rb:function(e,t,a){"use strict";var n=a("RDha"),r=a("g8vO");e.exports=function(e){var t={position:"left",ticks:{callback:r.formatters.logarithmic}},a=e.Scale.extend({determineDataLimits:function(){var e=this,t=e.options,a=e.chart,r=a.data.datasets,i=e.isHorizontal();function s(t){return i?t.xAxisID===e.id:t.yAxisID===e.id}e.min=null,e.max=null,e.minNotZero=null;var o=t.stacked;if(void 0===o&&n.each(r,function(e,t){if(!o){var n=a.getDatasetMeta(t);a.isDatasetVisible(t)&&s(n)&&void 0!==n.stack&&(o=!0)}}),t.stacked||o){var d={};n.each(r,function(r,i){var o=a.getDatasetMeta(i),l=[o.type,void 0===t.stacked&&void 0===o.stack?i:"",o.stack].join(".");a.isDatasetVisible(i)&&s(o)&&(void 0===d[l]&&(d[l]=[]),n.each(r.data,function(t,a){var n=d[l],r=+e.getRightValue(t);isNaN(r)||o.data[a].hidden||r<0||(n[a]=n[a]||0,n[a]+=r)}))}),n.each(d,function(t){if(t.length>0){var a=n.min(t),r=n.max(t);e.min=null===e.min?a:Math.min(e.min,a),e.max=null===e.max?r:Math.max(e.max,r)}})}else n.each(r,function(t,r){var i=a.getDatasetMeta(r);a.isDatasetVisible(r)&&s(i)&&n.each(t.data,function(t,a){var n=+e.getRightValue(t);isNaN(n)||i.data[a].hidden||n<0||(null===e.min?e.min=n:ne.max&&(e.max=n),0!==n&&(null===e.minNotZero||n0?e.min:e.max<1?Math.pow(10,Math.floor(n.log10(e.max))):1)},buildTicks:function(){var e=this,t=e.options.ticks,a=!e.isHorizontal(),r=e.ticks=function(e,t){var a,r,i=[],s=n.valueOrDefault,o=s(e.min,Math.pow(10,Math.floor(n.log10(t.min)))),d=Math.floor(n.log10(t.max)),l=Math.ceil(t.max/Math.pow(10,d));0===o?(a=Math.floor(n.log10(t.minNotZero)),r=Math.floor(t.minNotZero/Math.pow(10,a)),i.push(o),o=r*Math.pow(10,a)):(a=Math.floor(n.log10(o)),r=Math.floor(o/Math.pow(10,a)));var u=a<0?Math.pow(10,Math.abs(a)):1;do{i.push(o),10==++r&&(r=1,u=++a>=0?1:u),o=Math.round(r*Math.pow(10,a)*u)/u}while(a=11?e:e+12},meridiem:function(e,t,a){var n=100*e+t;return n<600?"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5":n<900?"\u0633\u06d5\u06be\u06d5\u0631":n<1130?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646":n<1230?"\u0686\u06c8\u0634":n<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(e,t){switch(t){case"d":case"D":case"DDD":return e+"-\u0643\u06c8\u0646\u0649";case"w":case"W":return e+"-\u06be\u06d5\u067e\u062a\u06d5";default:return e}},preparse:function(e){return e.replace(/\u060c/g,",")},postformat:function(e){return e.replace(/,/g,"\u060c")},week:{dow:1,doy:7}})}(a("wd/R"))},YSsK:function(e,t,a){"use strict";var n=a("CDJp"),r=a("RDha"),i=a("g8vO");e.exports=function(e){var t={position:"left",ticks:{callback:i.formatters.linear}},a=e.LinearScaleBase.extend({determineDataLimits:function(){var e=this,t=e.options,a=e.chart,n=a.data.datasets,i=e.isHorizontal();function s(t){return i?t.xAxisID===e.id:t.yAxisID===e.id}e.min=null,e.max=null;var o=t.stacked;if(void 0===o&&r.each(n,function(e,t){if(!o){var n=a.getDatasetMeta(t);a.isDatasetVisible(t)&&s(n)&&void 0!==n.stack&&(o=!0)}}),t.stacked||o){var d={};r.each(n,function(n,i){var o=a.getDatasetMeta(i),l=[o.type,void 0===t.stacked&&void 0===o.stack?i:"",o.stack].join(".");void 0===d[l]&&(d[l]={positiveValues:[],negativeValues:[]});var u=d[l].positiveValues,_=d[l].negativeValues;a.isDatasetVisible(i)&&s(o)&&r.each(n.data,function(a,n){var r=+e.getRightValue(a);isNaN(r)||o.data[n].hidden||(u[n]=u[n]||0,_[n]=_[n]||0,t.relativePoints?u[n]=100:r<0?_[n]+=r:u[n]+=r)})}),r.each(d,function(t){var a=t.positiveValues.concat(t.negativeValues),n=r.min(a),i=r.max(a);e.min=null===e.min?n:Math.min(e.min,n),e.max=null===e.max?i:Math.max(e.max,i)})}else r.each(n,function(t,n){var i=a.getDatasetMeta(n);a.isDatasetVisible(n)&&s(i)&&r.each(t.data,function(t,a){var n=+e.getRightValue(t);isNaN(n)||i.data[a].hidden||(null===e.min?e.min=n:ne.max&&(e.max=n))})});e.min=isFinite(e.min)&&!isNaN(e.min)?e.min:0,e.max=isFinite(e.max)&&!isNaN(e.max)?e.max:1,this.handleTickRangeOptions()},getTickLimit:function(){var e,t=this.options.ticks;if(this.isHorizontal())e=Math.min(t.maxTicksLimit?t.maxTicksLimit:11,Math.ceil(this.width/50));else{var a=r.valueOrDefault(t.fontSize,n.global.defaultFontSize);e=Math.min(t.maxTicksLimit?t.maxTicksLimit:11,Math.ceil(this.height/(2*a)))}return e},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(e,t){return+this.getRightValue(this.chart.data.datasets[t].data[e])},getPixelForValue:function(e){var t=this,a=t.start,n=+t.getRightValue(e),r=t.end-a;return t.isHorizontal()?t.left+t.width/r*(n-a):t.bottom-t.height/r*(n-a)},getValueForPixel:function(e){var t=this,a=t.isHorizontal();return t.start+(a?e-t.left:t.bottom-e)/(a?t.width:t.height)*(t.end-t.start)},getPixelForTick:function(e){return this.getPixelForValue(this.ticksAsNumbers[e])}});e.scaleService.registerScaleType("linear",a,t)}},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,a){!function(e){"use strict";var t=["\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"],a=["\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"];e.defineLocale("sd",{months:t,monthsShort:t,weekdays:a,weekdaysShort:a,weekdaysMin:a,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(e){return"\u0634\u0627\u0645"===e},meridiem:function(e,t,a){return e<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(e){return e.replace(/\u060c/g,",")},postformat:function(e){return e.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}(a("wd/R"))},ZAMP:function(e,t,a){!function(e){"use strict";e.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(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"pagi":e<15?"tengahari":e<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}})}(a("wd/R"))},ZANz:function(e,t,a){"use strict";var n=a("CDJp"),r=a("vvH+"),i=a("RDha");n._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}}),n._set("horizontalBar",{hover:{mode:"index",axis:"y"},scales:{xAxes:[{type:"linear",position:"bottom"}],yAxes:[{position:"left",type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}]},elements:{rectangle:{borderSkipped:"left"}},tooltips:{callbacks:{title:function(e,t){var a="";return e.length>0&&(e[0].yLabel?a=e[0].yLabel:t.labels.length>0&&e[0].index0?Math.min(s,n-a):s,a=n;return s}(a,l):-1,pixels:l,start:o,end:d,stackCount:n,scale:a}},calculateBarValuePixels:function(e,t){var a,n,r,i,s,o,d=this.chart,l=this.getMeta(),u=this.getValueScale(),_=d.data.datasets,h=u.getRightValue(_[e].data[t]),c=u.options.stacked,m=l.stack,f=0;if(c||void 0===c&&void 0!==m)for(a=0;a=0&&r>0)&&(f+=r));return i=u.getPixelForValue(f),{size:o=((s=u.getPixelForValue(f+h))-i)/2,base:i,head:s,center:s+o/2}},calculateBarIndexPixels:function(e,t,a){var n=a.scale.options,r="flex"===n.barThickness?function(e,t,a){var n=t.pixels,r=n[e],i=e>0?n[e-1]:null,s=e11?a?"p.t.m.":"P.T.M.":a?"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}})}(a("wd/R"))},aB2c:function(e,t,a){"use strict";var n=a("CDJp"),r=a("vvH+"),i=a("RDha");n._set("radar",{scale:{type:"radialLinear"},elements:{line:{tension:0}}}),e.exports=function(e){e.controllers.radar=e.DatasetController.extend({datasetElementType:r.Line,dataElementType:r.Point,linkScales:i.noop,update:function(e){var t=this,a=t.getMeta(),n=a.data,r=a.dataset.custom||{},s=t.getDataset(),o=t.chart.options.elements.line,d=t.chart.scale;void 0!==s.tension&&void 0===s.lineTension&&(s.lineTension=s.tension),i.extend(a.dataset,{_datasetIndex:t.index,_scale:d,_children:n,_loop:!0,_model:{tension:r.tension?r.tension:i.valueOrDefault(s.lineTension,o.tension),backgroundColor:r.backgroundColor?r.backgroundColor:s.backgroundColor||o.backgroundColor,borderWidth:r.borderWidth?r.borderWidth:s.borderWidth||o.borderWidth,borderColor:r.borderColor?r.borderColor:s.borderColor||o.borderColor,fill:r.fill?r.fill:void 0!==s.fill?s.fill:o.fill,borderCapStyle:r.borderCapStyle?r.borderCapStyle:s.borderCapStyle||o.borderCapStyle,borderDash:r.borderDash?r.borderDash:s.borderDash||o.borderDash,borderDashOffset:r.borderDashOffset?r.borderDashOffset:s.borderDashOffset||o.borderDashOffset,borderJoinStyle:r.borderJoinStyle?r.borderJoinStyle:s.borderJoinStyle||o.borderJoinStyle}}),a.dataset.pivot(),i.each(n,function(a,n){t.updateElement(a,n,e)},t),t.updateBezierControlPoints()},updateElement:function(e,t,a){var n=this,r=e.custom||{},s=n.getDataset(),o=n.chart.scale,d=n.chart.options.elements.point,l=o.getPointPositionForValue(t,s.data[t]);void 0!==s.radius&&void 0===s.pointRadius&&(s.pointRadius=s.radius),void 0!==s.hitRadius&&void 0===s.pointHitRadius&&(s.pointHitRadius=s.hitRadius),i.extend(e,{_datasetIndex:n.index,_index:t,_scale:o,_model:{x:a?o.xCenter:l.x,y:a?o.yCenter:l.y,tension:r.tension?r.tension:i.valueOrDefault(s.lineTension,n.chart.options.elements.line.tension),radius:r.radius?r.radius:i.valueAtIndexOrDefault(s.pointRadius,t,d.radius),backgroundColor:r.backgroundColor?r.backgroundColor:i.valueAtIndexOrDefault(s.pointBackgroundColor,t,d.backgroundColor),borderColor:r.borderColor?r.borderColor:i.valueAtIndexOrDefault(s.pointBorderColor,t,d.borderColor),borderWidth:r.borderWidth?r.borderWidth:i.valueAtIndexOrDefault(s.pointBorderWidth,t,d.borderWidth),pointStyle:r.pointStyle?r.pointStyle:i.valueAtIndexOrDefault(s.pointStyle,t,d.pointStyle),hitRadius:r.hitRadius?r.hitRadius:i.valueAtIndexOrDefault(s.pointHitRadius,t,d.hitRadius)}}),e._model.skip=r.skip?r.skip:isNaN(e._model.x)||isNaN(e._model.y)},updateBezierControlPoints:function(){var e=this.chart.chartArea,t=this.getMeta();i.each(t.data,function(a,n){var r=a._model,s=i.splineCurve(i.previousItem(t.data,n,!0)._model,r,i.nextItem(t.data,n,!0)._model,r.tension);r.controlPointPreviousX=Math.max(Math.min(s.previous.x,e.right),e.left),r.controlPointPreviousY=Math.max(Math.min(s.previous.y,e.bottom),e.top),r.controlPointNextX=Math.max(Math.min(s.next.x,e.right),e.left),r.controlPointNextY=Math.max(Math.min(s.next.y,e.bottom),e.top),a.pivot()})},setHoverStyle:function(e){var t=this.chart.data.datasets[e._datasetIndex],a=e.custom||{},n=e._index,r=e._model;r.radius=a.hoverRadius?a.hoverRadius:i.valueAtIndexOrDefault(t.pointHoverRadius,n,this.chart.options.elements.point.hoverRadius),r.backgroundColor=a.hoverBackgroundColor?a.hoverBackgroundColor:i.valueAtIndexOrDefault(t.pointHoverBackgroundColor,n,i.getHoverColor(r.backgroundColor)),r.borderColor=a.hoverBorderColor?a.hoverBorderColor:i.valueAtIndexOrDefault(t.pointHoverBorderColor,n,i.getHoverColor(r.borderColor)),r.borderWidth=a.hoverBorderWidth?a.hoverBorderWidth:i.valueAtIndexOrDefault(t.pointHoverBorderWidth,n,r.borderWidth)},removeHoverStyle:function(e){var t=this.chart.data.datasets[e._datasetIndex],a=e.custom||{},n=e._index,r=e._model,s=this.chart.options.elements.point;r.radius=a.radius?a.radius:i.valueAtIndexOrDefault(t.pointRadius,n,s.radius),r.backgroundColor=a.backgroundColor?a.backgroundColor:i.valueAtIndexOrDefault(t.pointBackgroundColor,n,s.backgroundColor),r.borderColor=a.borderColor?a.borderColor:i.valueAtIndexOrDefault(t.pointBorderColor,n,s.borderColor),r.borderWidth=a.borderWidth?a.borderWidth:i.valueAtIndexOrDefault(t.pointBorderWidth,n,s.borderWidth)}})}},aIdf:function(e,t,a){!function(e){"use strict";function t(e,t,a){return e+" "+function(e,t){return 2===t?function(e){var t={m:"v",b:"v",d:"z"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:"munutenn",MM:"miz",dd:"devezh"}[a],e)}e.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:t,h:"un eur",hh:"%d eur",d:"un devezh",dd:t,M:"ur miz",MM:t,y:"ur bloaz",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}},dayOfMonthOrdinalParse:/\d{1,2}(a\xf1|vet)/,ordinal:function(e){return e+(1===e?"a\xf1":"vet")},week:{dow:1,doy:4}})}(a("wd/R"))},aIsn:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},aQkU:function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10,a=e%100;return 0===e?e+"-\u0435\u0432":0===a?e+"-\u0435\u043d":a>10&&a<20?e+"-\u0442\u0438":1===t?e+"-\u0432\u0438":2===t?e+"-\u0440\u0438":7===t||8===t?e+"-\u043c\u0438":e+"-\u0442\u0438"},week:{dow:1,doy:7}})}(a("wd/R"))},b1Dy:function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(a("wd/R"))},bOMt:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},bXm7:function(e,t,a){!function(e){"use strict";var t={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"};e.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(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(a("wd/R"))},bYM6:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},bidN:function(e,t,a){"use strict";var n=a("CDJp"),r=a("vvH+"),i=a("RDha");n._set("bubble",{hover:{mode:"single"},scales:{xAxes:[{type:"linear",position:"bottom",id:"x-axis-0"}],yAxes:[{type:"linear",position:"left",id:"y-axis-0"}]},tooltips:{callbacks:{title:function(){return""},label:function(e,t){return(t.datasets[e.datasetIndex].label||"")+": ("+e.xLabel+", "+e.yLabel+", "+t.datasets[e.datasetIndex].data[e.index].r+")"}}}}),e.exports=function(e){e.controllers.bubble=e.DatasetController.extend({dataElementType:r.Point,update:function(e){var t=this,a=t.getMeta();i.each(a.data,function(a,n){t.updateElement(a,n,e)})},updateElement:function(e,t,a){var n=this,r=n.getMeta(),i=e.custom||{},s=n.getScaleForId(r.xAxisID),o=n.getScaleForId(r.yAxisID),d=n._resolveElementOptions(e,t),l=n.getDataset().data[t],u=n.index,_=a?s.getPixelForDecimal(.5):s.getPixelForValue("object"==typeof l?l:NaN,t,u),h=a?o.getBasePixel():o.getPixelForValue(l,t,u);e._xScale=s,e._yScale=o,e._options=d,e._datasetIndex=u,e._index=t,e._model={backgroundColor:d.backgroundColor,borderColor:d.borderColor,borderWidth:d.borderWidth,hitRadius:d.hitRadius,pointStyle:d.pointStyle,radius:a?0:d.radius,skip:i.skip||isNaN(_)||isNaN(h),x:_,y:h},e.pivot()},setHoverStyle:function(e){var t=e._model,a=e._options;t.backgroundColor=i.valueOrDefault(a.hoverBackgroundColor,i.getHoverColor(a.backgroundColor)),t.borderColor=i.valueOrDefault(a.hoverBorderColor,i.getHoverColor(a.borderColor)),t.borderWidth=i.valueOrDefault(a.hoverBorderWidth,a.borderWidth),t.radius=a.radius+a.hoverRadius},removeHoverStyle:function(e){var t=e._model,a=e._options;t.backgroundColor=a.backgroundColor,t.borderColor=a.borderColor,t.borderWidth=a.borderWidth,t.radius=a.radius},_resolveElementOptions:function(e,t){var a,n,r,s=this.chart,o=s.data.datasets[this.index],d=e.custom||{},l=s.options.elements.point,u=i.options.resolve,_=o.data[t],h={},c={chart:s,dataIndex:t,dataset:o,datasetIndex:this.index},m=["backgroundColor","borderColor","borderWidth","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth","hoverRadius","hitRadius","pointStyle"];for(a=0,n=m.length;a=20?"ste":"de")},week:{dow:1,doy:4}})}(a("wd/R"))},cdu6:function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3"),i=a("RDha"),s=a("g8vO");function o(e){var t,a,n=[];for(t=0,a=e.length;th&&de.maxHeight){d--;break}d++,_=l*u}e.labelRotation=d},afterCalculateTickRotation:function(){i.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){i.callback(this.options.beforeFit,[this])},fit:function(){var e=this,n=e.minSize={width:0,height:0},r=o(e._ticks),d=e.options,l=d.ticks,u=d.scaleLabel,_=d.gridLines,h=d.display,c=e.isHorizontal(),m=a(l),f=d.gridLines.tickMarkLength;if(n.width=c?e.isFullWidth()?e.maxWidth-e.margins.left-e.margins.right:e.maxWidth:h&&_.drawTicks?f:0,n.height=c?h&&_.drawTicks?f:0:e.maxHeight,u.display&&h){var p=s(u)+i.options.toPadding(u.padding).height;c?n.height+=p:n.width+=p}if(l.display&&h){var M=i.longestText(e.ctx,m.font,r,e.longestTextCache),y=i.numberOfLabelLines(r),g=.5*m.size,L=e.options.ticks.padding;if(c){e.longestLabelWidth=M;var v=i.toRadians(e.labelRotation),Y=Math.cos(v),k=Math.sin(v);n.height=Math.min(e.maxHeight,n.height+(k*M+m.size*y+g*(y-1)+g)+L),e.ctx.font=m.font;var b=t(e.ctx,r[0],m.font),D=t(e.ctx,r[r.length-1],m.font);0!==e.labelRotation?(e.paddingLeft="bottom"===d.position?Y*b+3:Y*g+3,e.paddingRight="bottom"===d.position?Y*g+3:Y*D+3):(e.paddingLeft=b/2+3,e.paddingRight=D/2+3)}else l.mirror?M=0:M+=L+g,n.width=Math.min(e.maxWidth,n.width+M),e.paddingTop=m.size/2,e.paddingBottom=m.size/2}e.handleMargins(),e.width=n.width,e.height=n.height},handleMargins:function(){var e=this;e.margins&&(e.paddingLeft=Math.max(e.paddingLeft-e.margins.left,0),e.paddingTop=Math.max(e.paddingTop-e.margins.top,0),e.paddingRight=Math.max(e.paddingRight-e.margins.right,0),e.paddingBottom=Math.max(e.paddingBottom-e.margins.bottom,0))},afterFit:function(){i.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(e){if(i.isNullOrUndef(e))return NaN;if("number"==typeof e&&!isFinite(e))return NaN;if(e)if(this.isHorizontal()){if(void 0!==e.x)return this.getRightValue(e.x)}else if(void 0!==e.y)return this.getRightValue(e.y);return e},getLabelForIndex:i.noop,getPixelForValue:i.noop,getValueForPixel:i.noop,getPixelForTick:function(e){var t=this,a=t.options.offset;if(t.isHorizontal()){var n=(t.width-(t.paddingLeft+t.paddingRight))/Math.max(t._ticks.length-(a?0:1),1),r=n*e+t.paddingLeft;return a&&(r+=n/2),t.left+Math.round(r)+(t.isFullWidth()?t.margins.left:0)}return t.top+e*((t.height-(t.paddingTop+t.paddingBottom))/(t._ticks.length-1))},getPixelForDecimal:function(e){var t=this;return t.isHorizontal()?t.left+Math.round((t.width-(t.paddingLeft+t.paddingRight))*e+t.paddingLeft)+(t.isFullWidth()?t.margins.left:0):t.top+e*t.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var e=this.min,t=this.max;return this.beginAtZero?0:e<0&&t<0?t:e>0&&t>0?e:0},_autoSkip:function(e){var t,a,n,r,s=this,o=s.isHorizontal(),d=s.options.ticks.minor,l=e.length,u=i.toRadians(s.labelRotation),_=Math.cos(u),h=s.longestLabelWidth*_,c=[];for(d.maxTicksLimit&&(r=d.maxTicksLimit),o&&(t=!1,(h+d.autoSkipPadding)*l>s.width-(s.paddingLeft+s.paddingRight)&&(t=1+Math.floor((h+d.autoSkipPadding)*l/(s.width-(s.paddingLeft+s.paddingRight)))),r&&l>r&&(t=Math.max(t,Math.floor(l/r)))),a=0;a1&&a%t>0||a%t==0&&a+t>=l)&&a!==l-1&&delete n.label,c.push(n);return c},draw:function(e){var t=this,r=t.options;if(r.display){var o=t.ctx,l=n.global,u=r.ticks.minor,_=r.ticks.major||u,h=r.gridLines,c=r.scaleLabel,m=0!==t.labelRotation,f=t.isHorizontal(),p=u.autoSkip?t._autoSkip(t.getTicks()):t.getTicks(),M=i.valueOrDefault(u.fontColor,l.defaultFontColor),y=a(u),g=i.valueOrDefault(_.fontColor,l.defaultFontColor),L=a(_),v=h.drawTicks?h.tickMarkLength:0,Y=i.valueOrDefault(c.fontColor,l.defaultFontColor),k=a(c),b=i.options.toPadding(c.padding),D=i.toRadians(t.labelRotation),w=[],x=t.options.gridLines.lineWidth,T="right"===r.position?t.right:t.right-x-v,S="right"===r.position?t.right+v:t.right,H="bottom"===r.position?t.top+x:t.bottom-v-x,j="bottom"===r.position?t.top+x+v:t.bottom+x;if(i.each(p,function(a,n){if(!i.isNullOrUndef(a.label)){var s,o,_,c,M,y,g,L,Y,k,b,C,P,O,A=a.label;n===t.zeroLineIndex&&r.offset===h.offsetGridLines?(s=h.zeroLineWidth,o=h.zeroLineColor,_=h.zeroLineBorderDash,c=h.zeroLineBorderDashOffset):(s=i.valueAtIndexOrDefault(h.lineWidth,n),o=i.valueAtIndexOrDefault(h.color,n),_=i.valueOrDefault(h.borderDash,l.borderDash),c=i.valueOrDefault(h.borderDashOffset,l.borderDashOffset));var W="middle",F="middle",R=u.padding;if(f){var I=v+R;"bottom"===r.position?(F=m?"middle":"top",W=m?"right":"center",O=t.top+I):(F=m?"middle":"bottom",W=m?"left":"center",O=t.bottom-I);var E=d(t,n,h.offsetGridLines&&p.length>1);E1);B1&&e<5}function r(e,t,a,r){var i=e+" ";switch(a){case"s":return t||r?"p\xe1r sek\xfand":"p\xe1r sekundami";case"ss":return t||r?i+(n(e)?"sekundy":"sek\xfand"):i+"sekundami";case"m":return t?"min\xfata":r?"min\xfatu":"min\xfatou";case"mm":return t||r?i+(n(e)?"min\xfaty":"min\xfat"):i+"min\xfatami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?i+(n(e)?"hodiny":"hod\xedn"):i+"hodinami";case"d":return t||r?"de\u0148":"d\u0148om";case"dd":return t||r?i+(n(e)?"dni":"dn\xed"):i+"d\u0148ami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?i+(n(e)?"mesiace":"mesiacov"):i+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?i+(n(e)?"roky":"rokov"):i+"rokmi"}}e.defineLocale("sk",{months:t,monthsShort:a,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}})}(a("wd/R"))},fELs:function(e,t,a){"use strict";var n=a("RDha");function r(e,t){return n.where(e,function(e){return e.position===t})}function i(e,t){e.forEach(function(e,t){return e._tmpIndex_=t,e}),e.sort(function(e,a){var n=t?a:e,r=t?e:a;return n.weight===r.weight?n._tmpIndex_-r._tmpIndex_:n.weight-r.weight}),e.forEach(function(e){delete e._tmpIndex_})}e.exports={defaults:{},addBox:function(e,t){e.boxes||(e.boxes=[]),t.fullWidth=t.fullWidth||!1,t.position=t.position||"top",t.weight=t.weight||0,e.boxes.push(t)},removeBox:function(e,t){var a=e.boxes?e.boxes.indexOf(t):-1;-1!==a&&e.boxes.splice(a,1)},configure:function(e,t,a){for(var n,r=["fullWidth","position","weight"],i=r.length,s=0;s3?a[2]-a[1]:a[1]-a[0];Math.abs(r)>1&&e!==Math.floor(e)&&(r=e-Math.floor(e));var i=n.log10(Math.abs(r)),s="";if(0!==e){var o=-1*Math.floor(i);o=Math.max(Math.min(o,20),0),s=e.toFixed(o)}else s="0";return s},logarithmic:function(e,t,a){var r=e/Math.pow(10,Math.floor(n.log10(e)));return 0===e?"0":1===r||2===r||5===r||0===t||t===a.length-1?e.toExponential():""}}}},gVVK:function(e,t,a){!function(e){"use strict";function t(e,t,a,n){var r=e+" ";switch(a){case"s":return t||n?"nekaj sekund":"nekaj sekundami";case"ss":return r+(1===e?t?"sekundo":"sekundi":2===e?t||n?"sekundi":"sekundah":e<5?t||n?"sekunde":"sekundah":"sekund");case"m":return t?"ena minuta":"eno minuto";case"mm":return r+(1===e?t?"minuta":"minuto":2===e?t||n?"minuti":"minutama":e<5?t||n?"minute":"minutami":t||n?"minut":"minutami");case"h":return t?"ena ura":"eno uro";case"hh":return r+(1===e?t?"ura":"uro":2===e?t||n?"uri":"urama":e<5?t||n?"ure":"urami":t||n?"ur":"urami");case"d":return t||n?"en dan":"enim dnem";case"dd":return r+(1===e?t||n?"dan":"dnem":2===e?t||n?"dni":"dnevoma":t||n?"dni":"dnevi");case"M":return t||n?"en mesec":"enim mesecem";case"MM":return r+(1===e?t||n?"mesec":"mesecem":2===e?t||n?"meseca":"mesecema":e<5?t||n?"mesece":"meseci":t||n?"mesecev":"meseci");case"y":return t||n?"eno leto":"enim letom";case"yy":return r+(1===e?t||n?"leto":"letom":2===e?t||n?"leti":"letoma":e<5?t||n?"leta":"leti":t||n?"let":"leti")}}e.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:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(a("wd/R"))},gekB:function(e,t,a){!function(e){"use strict";var t="nolla yksi kaksi kolme nelj\xe4 viisi kuusi seitsem\xe4n kahdeksan yhdeks\xe4n".split(" "),a=["nolla","yhden","kahden","kolmen","nelj\xe4n","viiden","kuuden",t[7],t[8],t[9]];function n(e,n,r,i){var s="";switch(r){case"s":return i?"muutaman sekunnin":"muutama sekunti";case"ss":return i?"sekunnin":"sekuntia";case"m":return i?"minuutin":"minuutti";case"mm":s=i?"minuutin":"minuuttia";break;case"h":return i?"tunnin":"tunti";case"hh":s=i?"tunnin":"tuntia";break;case"d":return i?"p\xe4iv\xe4n":"p\xe4iv\xe4";case"dd":s=i?"p\xe4iv\xe4n":"p\xe4iv\xe4\xe4";break;case"M":return i?"kuukauden":"kuukausi";case"MM":s=i?"kuukauden":"kuukautta";break;case"y":return i?"vuoden":"vuosi";case"yy":s=i?"vuoden":"vuotta"}return function(e,n){return e<10?n?a[e]:t[e]:e}(e,i)+" "+s}e.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: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}})}(a("wd/R"))},gjCT:function(e,t,a){!function(e){"use strict";var t={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},a={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"};e.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(e){return"\u0645"===e},meridiem:function(e,t,a){return e<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(e){return e.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(e){return a[e]}).replace(/\u060c/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"\u060c")},week:{dow:0,doy:6}})}(a("wd/R"))},hKrs:function(e,t,a){!function(e){"use strict";e.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(e){var t=e%10,a=e%100;return 0===e?e+"-\u0435\u0432":0===a?e+"-\u0435\u043d":a>10&&a<20?e+"-\u0442\u0438":1===t?e+"-\u0432\u0438":2===t?e+"-\u0440\u0438":7===t||8===t?e+"-\u043c\u0438":e+"-\u0442\u0438"},week:{dow:1,doy:7}})}(a("wd/R"))},honF:function(e,t,a){!function(e){"use strict";var t={1:"\u1041",2:"\u1042",3:"\u1043",4:"\u1044",5:"\u1045",6:"\u1046",7:"\u1047",8:"\u1048",9:"\u1049",0:"\u1040"},a={"\u1041":"1","\u1042":"2","\u1043":"3","\u1044":"4","\u1045":"5","\u1046":"6","\u1047":"7","\u1048":"8","\u1049":"9","\u1040":"0"};e.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(e){return e.replace(/[\u1041\u1042\u1043\u1044\u1045\u1046\u1047\u1048\u1049\u1040]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})}(a("wd/R"))},iEDd:function(e,t,a){!function(e){"use strict";e.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(e){return 0===e.indexOf("un")?"n"+e:"en "+e},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}})}(a("wd/R"))},iM7B:function(e,t,a){"use strict";var n=a("RDha"),r=a("Hg4g"),i=a("q8Fl");e.exports=n.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},i._enabled?i:r)},iYGd:function(e,t,a){"use strict";e.exports=function(e){e.Radar=function(t,a){return a.type="radar",new e(t,a)}}},iYuL:function(e,t,a){!function(e){"use strict";var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=[/^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;e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},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:n,longMonthsParse:n,shortMonthsParse:n,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}})}(a("wd/R"))},jUeY:function(e,t,a){!function(e){"use strict";e.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(e,t){return e?"string"==typeof t&&/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.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(e,t,a){return e>11?a?"\u03bc\u03bc":"\u039c\u039c":a?"\u03c0\u03bc":"\u03a0\u039c"},isPM:function(e){return"\u03bc"===(e+"").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(e,t){var a,n=this._calendarEl[e],r=t&&t.hours();return((a=n)instanceof Function||"[object Function]"===Object.prototype.toString.call(a))&&(n=n.apply(t)),n.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}})}(a("wd/R"))},jVdC:function(e,t,a){!function(e){"use strict";var t="stycze\u0144_luty_marzec_kwiecie\u0144_maj_czerwiec_lipiec_sierpie\u0144_wrzesie\u0144_pa\u017adziernik_listopad_grudzie\u0144".split("_"),a="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\u015bnia_pa\u017adziernika_listopada_grudnia".split("_");function n(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function r(e,t,a){var r=e+" ";switch(a){case"ss":return r+(n(e)?"sekundy":"sekund");case"m":return t?"minuta":"minut\u0119";case"mm":return r+(n(e)?"minuty":"minut");case"h":return t?"godzina":"godzin\u0119";case"hh":return r+(n(e)?"godziny":"godzin");case"MM":return r+(n(e)?"miesi\u0105ce":"miesi\u0119cy");case"yy":return r+(n(e)?"lata":"lat")}}e.defineLocale("pl",{months:function(e,n){return e?""===n?"("+a[e.month()]+"|"+t[e.month()]+")":/D MMMM/.test(n)?a[e.month()]:t[e.month()]:t},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}})}(a("wd/R"))},jXIB:function(e,t,a){"use strict";e.exports={},e.exports.filler=a("vpM6"),e.exports.legend=a("AX6q"),e.exports.title=a("mjYD")},jfSC:function(e,t,a){!function(e){"use strict";var t={1:"\u06f1",2:"\u06f2",3:"\u06f3",4:"\u06f4",5:"\u06f5",6:"\u06f6",7:"\u06f7",8:"\u06f8",9:"\u06f9",0:"\u06f0"},a={"\u06f1":"1","\u06f2":"2","\u06f3":"3","\u06f4":"4","\u06f5":"5","\u06f6":"6","\u06f7":"7","\u06f8":"8","\u06f9":"9","\u06f0":"0"};e.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(e){return/\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631/.test(e)},meridiem:function(e,t,a){return e<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(e){return e.replace(/[\u06f0-\u06f9]/g,function(e){return a[e]}).replace(/\u060c/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"\u060c")},dayOfMonthOrdinalParse:/\d{1,2}\u0645/,ordinal:"%d\u0645",week:{dow:6,doy:12}})}(a("wd/R"))},jnO4:function(e,t,a){!function(e){"use strict";var t={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},a={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%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"]},i=function(e){return function(t,a,i,s){var o=n(t),d=r[e][n(t)];return 2===o&&(d=d[a?0:1]),d.replace(/%d/i,t)}},s=["\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"];e.defineLocale("ar",{months:s,monthsShort:s,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(e){return"\u0645"===e},meridiem:function(e,t,a){return e<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:i("s"),ss:i("s"),m:i("m"),mm:i("m"),h:i("h"),hh:i("h"),d:i("d"),dd:i("d"),M:i("M"),MM:i("M"),y:i("y"),yy:i("y")},preparse:function(e){return e.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(e){return a[e]}).replace(/\u060c/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(a("wd/R"))},kEOa:function(e,t,a){!function(e){"use strict";var t={1:"\u09e7",2:"\u09e8",3:"\u09e9",4:"\u09ea",5:"\u09eb",6:"\u09ec",7:"\u09ed",8:"\u09ee",9:"\u09ef",0:"\u09e6"},a={"\u09e7":"1","\u09e8":"2","\u09e9":"3","\u09ea":"4","\u09eb":"5","\u09ec":"6","\u09ed":"7","\u09ee":"8","\u09ef":"9","\u09e6":"0"};e.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(e){return e.replace(/[\u09e7\u09e8\u09e9\u09ea\u09eb\u09ec\u09ed\u09ee\u09ef\u09e6]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/\u09b0\u09be\u09a4|\u09b8\u0995\u09be\u09b2|\u09a6\u09c1\u09aa\u09c1\u09b0|\u09ac\u09bf\u0995\u09be\u09b2|\u09b0\u09be\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),"\u09b0\u09be\u09a4"===t&&e>=4||"\u09a6\u09c1\u09aa\u09c1\u09b0"===t&&e<5||"\u09ac\u09bf\u0995\u09be\u09b2"===t?e+12:e},meridiem:function(e,t,a){return e<4?"\u09b0\u09be\u09a4":e<10?"\u09b8\u0995\u09be\u09b2":e<17?"\u09a6\u09c1\u09aa\u09c1\u09b0":e<20?"\u09ac\u09bf\u0995\u09be\u09b2":"\u09b0\u09be\u09a4"},week:{dow:0,doy:6}})}(a("wd/R"))},kOpN:function(e,t,a){!function(e){"use strict";e.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(e,t){return 12===e&&(e=0),"\u51cc\u6668"===t||"\u65e9\u4e0a"===t||"\u4e0a\u5348"===t?e:"\u4e2d\u5348"===t?e>=11?e:e+12:"\u4e0b\u5348"===t||"\u665a\u4e0a"===t?e+12:void 0},meridiem:function(e,t,a){var n=100*e+t;return n<600?"\u51cc\u6668":n<900?"\u65e9\u4e0a":n<1130?"\u4e0a\u5348":n<1230?"\u4e2d\u5348":n<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(e,t){switch(t){case"d":case"D":case"DDD":return e+"\u65e5";case"M":return e+"\u6708";case"w":case"W":return e+"\u9031";default:return e}},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"}})}(a("wd/R"))},l5ep:function(e,t,a){!function(e){"use strict";e.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(e){var t="";return e>20?t=40===e||50===e||60===e||80===e||100===e?"fed":"ain":e>0&&(t=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"][e]),e+t},week:{dow:1,doy:4}})}(a("wd/R"))},lXzo:function(e,t,a){!function(e){"use strict";function t(e,t,a){var n,r;return"m"===a?t?"\u043c\u0438\u043d\u0443\u0442\u0430":"\u043c\u0438\u043d\u0443\u0442\u0443":e+" "+(n=+e,r={ss:t?"\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:t?"\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"}[a].split("_"),n%10==1&&n%100!=11?r[0]:n%10>=2&&n%10<=4&&(n%100<10||n%100>=20)?r[1]:r[2])}var a=[/^\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];e.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:a,longMonthsParse:a,shortMonthsParse:a,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(e){if(e.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(e){if(e.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:t,m:t,mm:t,h:"\u0447\u0430\u0441",hh:t,d:"\u0434\u0435\u043d\u044c",dd:t,M:"\u043c\u0435\u0441\u044f\u0446",MM:t,y:"\u0433\u043e\u0434",yy:t},meridiemParse:/\u043d\u043e\u0447\u0438|\u0443\u0442\u0440\u0430|\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430/i,isPM:function(e){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430)$/.test(e)},meridiem:function(e,t,a){return e<4?"\u043d\u043e\u0447\u0438":e<12?"\u0443\u0442\u0440\u0430":e<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0435\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e|\u044f)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-\u0439";case"D":return e+"-\u0433\u043e";case"w":case"W":return e+"-\u044f";default:return e}},week:{dow:1,doy:4}})}(a("wd/R"))},lYtQ:function(e,t,a){!function(e){"use strict";function t(e,t,a,n){switch(a){case"s":return t?"\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 e+(t?" \u0441\u0435\u043a\u0443\u043d\u0434":" \u0441\u0435\u043a\u0443\u043d\u0434\u044b\u043d");case"m":case"mm":return e+(t?" \u043c\u0438\u043d\u0443\u0442":" \u043c\u0438\u043d\u0443\u0442\u044b\u043d");case"h":case"hh":return e+(t?" \u0446\u0430\u0433":" \u0446\u0430\u0433\u0438\u0439\u043d");case"d":case"dd":return e+(t?" \u04e9\u0434\u04e9\u0440":" \u04e9\u0434\u0440\u0438\u0439\u043d");case"M":case"MM":return e+(t?" \u0441\u0430\u0440":" \u0441\u0430\u0440\u044b\u043d");case"y":case"yy":return e+(t?" \u0436\u0438\u043b":" \u0436\u0438\u043b\u0438\u0439\u043d");default:return e}}e.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(e){return"\u04ae\u0425"===e},meridiem:function(e,t,a){return e<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:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2} \u04e9\u0434\u04e9\u0440/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+" \u04e9\u0434\u04e9\u0440";default:return e}}})}(a("wd/R"))},lgnt:function(e,t,a){!function(e){"use strict";var t={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"};e.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\u0435 \u0441\u0430\u0430\u0442] LT",lastWeek:"[\u04e8\u0442\u043a\u0435\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(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(a("wd/R"))},lyxo:function(e,t,a){!function(e){"use strict";function t(e,t,a){var n=" ";return(e%100>=20||e>=100&&e%100==0)&&(n=" de "),e+n+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"}[a]}e.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:t,m:"un minut",mm:t,h:"o or\u0103",hh:t,d:"o zi",dd:t,M:"o lun\u0103",MM:t,y:"un an",yy:t},week:{dow:1,doy:7}})}(a("wd/R"))},mgIt:function(e,t,a){var n=a("T016");function r(e){if(e){var t=[0,0,0],a=1,r=e.match(/^#([a-fA-F0-9]{3})$/i);if(r){r=r[1];for(var i=0;i0&&(l=e.getDatasetMeta(l[0]._datasetIndex).data),l},"x-axis":function(e,t){return l(e,t,{intersect:!1})},point:function(e,t){return s(e,r(t,e))},nearest:function(e,t,a){var n=r(t,e);a.axis=a.axis||"xy";var i=d(a.axis),s=o(e,n,a.intersect,i);return s.length>1&&s.sort(function(e,t){var a=e.getArea()-t.getArea();return 0===a&&(a=e._datasetIndex-t._datasetIndex),a}),s.slice(0,1)},x:function(e,t,a){var n=r(t,e),s=[],o=!1;return i(e,function(e){e.inXRange(n.x)&&s.push(e),e.inRange(n.x,n.y)&&(o=!0)}),a.intersect&&!o&&(s=[]),s},y:function(e,t,a){var n=r(t,e),s=[],o=!1;return i(e,function(e){e.inYRange(n.y)&&s.push(e),e.inRange(n.x,n.y)&&(o=!0)}),a.intersect&&!o&&(s=[]),s}}}},nDWh:function(e,t,a){"use strict";var n=a("6ww4"),r=a("CDJp"),i=a("RDha");e.exports=function(e){function t(e,t,a){var n;return"string"==typeof e?(n=parseInt(e,10),-1!==e.indexOf("%")&&(n=n/100*t.parentNode[a])):n=e,n}function a(e){return void 0!==e&&null!==e&&"none"!==e}function s(e,n,r){var i=document.defaultView,s=e.parentNode,o=i.getComputedStyle(e)[n],d=i.getComputedStyle(s)[n],l=a(o),u=a(d),_=Number.POSITIVE_INFINITY;return l||u?Math.min(l?t(o,e,r):_,u?t(d,s,r):_):"none"}i.configMerge=function(){return i.merge(i.clone(arguments[0]),[].slice.call(arguments,1),{merger:function(t,a,n,r){var s=a[t]||{},o=n[t];"scales"===t?a[t]=i.scaleMerge(s,o):"scale"===t?a[t]=i.merge(s,[e.scaleService.getScaleDefaults(o.type),o]):i._merger(t,a,n,r)}})},i.scaleMerge=function(){return i.merge(i.clone(arguments[0]),[].slice.call(arguments,1),{merger:function(t,a,n,r){if("xAxes"===t||"yAxes"===t){var s,o,d,l=n[t].length;for(a[t]||(a[t]=[]),s=0;s=a[t].length&&a[t].push({}),i.merge(a[t][s],!a[t][s].type||d.type&&d.type!==a[t][s].type?[e.scaleService.getScaleDefaults(o),d]:d)}else i._merger(t,a,n,r)}})},i.where=function(e,t){if(i.isArray(e)&&Array.prototype.filter)return e.filter(t);var a=[];return i.each(e,function(e){t(e)&&a.push(e)}),a},i.findIndex=Array.prototype.findIndex?function(e,t,a){return e.findIndex(t,a)}:function(e,t,a){a=void 0===a?e:a;for(var n=0,r=e.length;n=0;n--){var r=e[n];if(t(r))return r}},i.isNumber=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},i.almostEquals=function(e,t,a){return Math.abs(e-t)e},i.max=function(e){return e.reduce(function(e,t){return isNaN(t)?e:Math.max(e,t)},Number.NEGATIVE_INFINITY)},i.min=function(e){return e.reduce(function(e,t){return isNaN(t)?e:Math.min(e,t)},Number.POSITIVE_INFINITY)},i.sign=Math.sign?function(e){return Math.sign(e)}:function(e){return 0==(e=+e)||isNaN(e)?e:e>0?1:-1},i.log10=Math.log10?function(e){return Math.log10(e)}:function(e){var t=Math.log(e)*Math.LOG10E,a=Math.round(t);return e===Math.pow(10,a)?a:t},i.toRadians=function(e){return e*(Math.PI/180)},i.toDegrees=function(e){return e*(180/Math.PI)},i.getAngleFromPoint=function(e,t){var a=t.x-e.x,n=t.y-e.y,r=Math.sqrt(a*a+n*n),i=Math.atan2(n,a);return i<-.5*Math.PI&&(i+=2*Math.PI),{angle:i,distance:r}},i.distanceBetweenPoints=function(e,t){return Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))},i.aliasPixel=function(e){return e%2==0?0:.5},i.splineCurve=function(e,t,a,n){var r=e.skip?t:e,i=t,s=a.skip?t:a,o=Math.sqrt(Math.pow(i.x-r.x,2)+Math.pow(i.y-r.y,2)),d=Math.sqrt(Math.pow(s.x-i.x,2)+Math.pow(s.y-i.y,2)),l=o/(o+d),u=d/(o+d),_=n*(l=isNaN(l)?0:l),h=n*(u=isNaN(u)?0:u);return{previous:{x:i.x-_*(s.x-r.x),y:i.y-_*(s.y-r.y)},next:{x:i.x+h*(s.x-r.x),y:i.y+h*(s.y-r.y)}}},i.EPSILON=Number.EPSILON||1e-14,i.splineCurveMonotone=function(e){var t,a,n,r,s,o,d,l,u,_=(e||[]).map(function(e){return{model:e._model,deltaK:0,mK:0}}),h=_.length;for(t=0;t0?_[t-1]:null,(r=t0?_[t-1]:null,r=t=e.length-1?e[0]:e[t+1]:t>=e.length-1?e[e.length-1]:e[t+1]},i.previousItem=function(e,t,a){return a?t<=0?e[e.length-1]:e[t-1]:t<=0?e[0]:e[t-1]},i.niceNum=function(e,t){var a=Math.floor(i.log10(e)),n=e/Math.pow(10,a);return(t?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,a)},i.requestAnimFrame="undefined"==typeof window?function(e){e()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e){return window.setTimeout(e,1e3/60)},i.getRelativePosition=function(e,t){var a,n,r=e.originalEvent||e,s=e.currentTarget||e.srcElement,o=s.getBoundingClientRect(),d=r.touches;d&&d.length>0?(a=d[0].clientX,n=d[0].clientY):(a=r.clientX,n=r.clientY);var l=parseFloat(i.getStyle(s,"padding-left")),u=parseFloat(i.getStyle(s,"padding-top")),_=parseFloat(i.getStyle(s,"padding-right")),h=parseFloat(i.getStyle(s,"padding-bottom")),c=o.bottom-o.top-u-h;return{x:a=Math.round((a-o.left-l)/(o.right-o.left-l-_)*s.width/t.currentDevicePixelRatio),y:n=Math.round((n-o.top-u)/c*s.height/t.currentDevicePixelRatio)}},i.getConstraintWidth=function(e){return s(e,"max-width","clientWidth")},i.getConstraintHeight=function(e){return s(e,"max-height","clientHeight")},i.getMaximumWidth=function(e){var t=e.parentNode;if(!t)return e.clientWidth;var a=parseInt(i.getStyle(t,"padding-left"),10),n=parseInt(i.getStyle(t,"padding-right"),10),r=t.clientWidth-a-n,s=i.getConstraintWidth(e);return isNaN(s)?r:Math.min(r,s)},i.getMaximumHeight=function(e){var t=e.parentNode;if(!t)return e.clientHeight;var a=parseInt(i.getStyle(t,"padding-top"),10),n=parseInt(i.getStyle(t,"padding-bottom"),10),r=t.clientHeight-a-n,s=i.getConstraintHeight(e);return isNaN(s)?r:Math.min(r,s)},i.getStyle=function(e,t){return e.currentStyle?e.currentStyle[t]:document.defaultView.getComputedStyle(e,null).getPropertyValue(t)},i.retinaScale=function(e,t){var a=e.currentDevicePixelRatio=t||window.devicePixelRatio||1;if(1!==a){var n=e.canvas,r=e.height,i=e.width;n.height=r*a,n.width=i*a,e.ctx.scale(a,a),n.style.height||n.style.width||(n.style.height=r+"px",n.style.width=i+"px")}},i.fontString=function(e,t,a){return t+" "+e+"px "+a},i.longestText=function(e,t,a,n){var r=(n=n||{}).data=n.data||{},s=n.garbageCollect=n.garbageCollect||[];n.font!==t&&(r=n.data={},s=n.garbageCollect=[],n.font=t),e.font=t;var o=0;i.each(a,function(t){void 0!==t&&null!==t&&!0!==i.isArray(t)?o=i.measureText(e,r,s,o,t):i.isArray(t)&&i.each(t,function(t){void 0===t||null===t||i.isArray(t)||(o=i.measureText(e,r,s,o,t))})});var d=s.length/2;if(d>a.length){for(var l=0;ln&&(n=i),n},i.numberOfLabelLines=function(e){var t=1;return i.each(e,function(e){i.isArray(e)&&e.length>t&&(t=e.length)}),t},i.color=n?function(e){return e instanceof CanvasGradient&&(e=r.global.defaultColor),n(e)}:function(e){return console.error("Color.js not found!"),e},i.getHoverColor=function(e){return e instanceof CanvasPattern?e:i.color(e).saturate(.5).darken(.1).rgbString()}}},nyYc:function(e,t,a){!function(e){"use strict";e.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(e,t){switch(t){case"D":return e+(1===e?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})}(a("wd/R"))},o1bE:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},"p/rL":function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},paOr:function(e,t,a){"use strict";var n=a("RDha");e.exports=function(e){var t=n.noop;e.LinearScaleBase=e.Scale.extend({getRightValue:function(t){return"string"==typeof t?+t:e.Scale.prototype.getRightValue.call(this,t)},handleTickRangeOptions:function(){var e=this,t=e.options.ticks;if(t.beginAtZero){var a=n.sign(e.min),r=n.sign(e.max);a<0&&r<0?e.max=0:a>0&&r>0&&(e.min=0)}var i=void 0!==t.min||void 0!==t.suggestedMin,s=void 0!==t.max||void 0!==t.suggestedMax;void 0!==t.min?e.min=t.min:void 0!==t.suggestedMin&&(e.min=null===e.min?t.suggestedMin:Math.min(e.min,t.suggestedMin)),void 0!==t.max?e.max=t.max:void 0!==t.suggestedMax&&(e.max=null===e.max?t.suggestedMax:Math.max(e.max,t.suggestedMax)),i!==s&&e.min>=e.max&&(i?e.max=e.min+1:e.min=e.max-1),e.min===e.max&&(e.max++,t.beginAtZero||e.min--)},getTickLimit:t,handleDirectionalChanges:t,buildTicks:function(){var e=this,t=e.options.ticks,a=e.getTickLimit(),r={maxTicks:a=Math.max(2,a),min:t.min,max:t.max,stepSize:n.valueOrDefault(t.fixedStepSize,t.stepSize)},i=e.ticks=function(e,t){var a,r=[];if(e.stepSize&&e.stepSize>0)a=e.stepSize;else{var i=n.niceNum(t.max-t.min,!1);a=n.niceNum(i/(e.maxTicks-1),!0)}var s=Math.floor(t.min/a)*a,o=Math.ceil(t.max/a)*a;e.min&&e.max&&e.stepSize&&n.almostWhole((e.max-e.min)/e.stepSize,a/1e3)&&(s=e.min,o=e.max);var d=(o-s)/a;d=n.almostEquals(d,Math.round(d),a/1e3)?Math.round(d):Math.ceil(d);var l=1;a<1&&(l=Math.pow(10,a.toString().length-2),s=Math.round(s*l)/l,o=Math.round(o*l)/l),r.push(void 0!==e.min?e.min:s);for(var u=1;u
';var r=t.childNodes[0],i=t.childNodes[1];t._reset=function(){r.scrollLeft=1e6,r.scrollTop=1e6,i.scrollLeft=1e6,i.scrollTop=1e6};var s=function(){t._reset(),e()};return d(r,"scroll",s.bind(r,"expand")),d(i,"scroll",s.bind(i,"shrink")),t}((i=function(){if(_.resizer)return t(u("resize",a))},o=!1,l=[],function(){l=Array.prototype.slice.call(arguments),s=s||this,o||(o=!0,n.requestAnimFrame.call(window,function(){o=!1,i.apply(s,l)}))}));!function(e,t){var a=e.$chartjs||(e.$chartjs={}),i=a.renderProxy=function(e){"chartjs-render-animation"===e.animationName&&t()};n.each(r,function(t){d(e,t,i)}),a.reflow=!!e.offsetParent,e.classList.add("chartjs-render-monitor")}(e,function(){if(_.resizer){var t=e.parentNode;t&&t!==h.parentNode&&t.insertBefore(h,t.firstChild),h._reset()}})}(s,a,e)},removeEventListener:function(e,t,a){var i,s,o,d=e.canvas;if("resize"!==t){var u=((a.$chartjs||{}).proxies||{})[e.id+"_"+t];u&&l(d,t,u)}else o=(s=(i=d).$chartjs||{}).resizer,delete s.resizer,function(e){var t=e.$chartjs||{},a=t.renderProxy;a&&(n.each(r,function(t){l(e,t,a)}),delete t.renderProxy),e.classList.remove("chartjs-render-monitor")}(i),o&&o.parentNode&&o.parentNode.removeChild(o)}},n.addEvent=d,n.removeEvent=l},qzaf:function(e,t,a){"use strict";e.exports=function(e){e.PolarArea=function(t,a){return a.type="polarArea",new e(t,a)}}},rYty:function(e,t,a){"use strict";a.r(t);var n=a("CcnG"),r=function(){},i=a("rMXk"),s=a("3zLz"),o=a("xdbM"),d=function(){function e(){this.barChartOptions={scaleShowVerticalLines:!1,responsive:!0},this.barChartLabels=["2006","2007","2008","2009","2010","2011","2012"],this.barChartType="bar",this.barChartLegend=!0,this.barChartData=[{data:[65,59,80,81,56,55,40],label:"Series A"},{data:[28,48,40,19,86,27,90],label:"Series B"}],this.doughnutChartLabels=["Download Sales","In-Store Sales","Mail-Order Sales"],this.doughnutChartData=[350,450,100],this.doughnutChartType="doughnut",this.radarChartLabels=["Eating","Drinking","Sleeping","Designing","Coding","Cycling","Running"],this.radarChartData=[{data:[65,59,90,81,56,55,40],label:"Series A"},{data:[28,48,40,19,96,27,100],label:"Series B"}],this.radarChartType="radar",this.pieChartLabels=["Download Sales","In-Store Sales","Mail Sales"],this.pieChartData=[300,500,100],this.pieChartType="pie",this.polarAreaChartLabels=["Download Sales","In-Store Sales","Mail Sales","Telesales","Corporate Sales"],this.polarAreaChartData=[300,500,100,40,120],this.polarAreaLegend=!0,this.polarAreaChartType="polarArea",this.lineChartData=[{data:[65,59,80,81,56,55,40],label:"Series A"},{data:[28,48,40,19,86,27,90],label:"Series B"},{data:[18,48,77,9,100,27,40],label:"Series C"}],this.lineChartLabels=["January","February","March","April","May","June","July"],this.lineChartOptions={responsive:!0},this.lineChartColors=[{backgroundColor:"rgba(148,159,177,0.2)",borderColor:"rgba(148,159,177,1)",pointBackgroundColor:"rgba(148,159,177,1)",pointBorderColor:"#fff",pointHoverBackgroundColor:"#fff",pointHoverBorderColor:"rgba(148,159,177,0.8)"},{backgroundColor:"rgba(77,83,96,0.2)",borderColor:"rgba(77,83,96,1)",pointBackgroundColor:"rgba(77,83,96,1)",pointBorderColor:"#fff",pointHoverBackgroundColor:"#fff",pointHoverBorderColor:"rgba(77,83,96,1)"},{backgroundColor:"rgba(148,159,177,0.2)",borderColor:"rgba(148,159,177,1)",pointBackgroundColor:"rgba(148,159,177,1)",pointBorderColor:"#fff",pointHoverBackgroundColor:"#fff",pointHoverBorderColor:"rgba(148,159,177,0.8)"}],this.lineChartLegend=!0,this.lineChartType="line"}return e.prototype.chartClicked=function(e){},e.prototype.chartHovered=function(e){},e.prototype.randomize=function(){var e=[Math.round(100*Math.random()),59,80,100*Math.random(),56,100*Math.random(),40],t=JSON.parse(JSON.stringify(this.barChartData));t[0].data=e,this.barChartData=t},e.prototype.ngOnInit=function(){},e}(),l=n["\u0275crt"]({encapsulation:0,styles:[[""]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function u(e){return n["\u0275vid"](0,[(e()(),n["\u0275eld"](0,0,null,null,50,"div",[],[[24,"@routerTransition",0]],null,null,null,null)),(e()(),n["\u0275eld"](1,0,null,null,1,"app-page-header",[],null,null,null,i.b,i.a)),n["\u0275did"](2,114688,null,0,s.a,[],{heading:[0,"heading"],icon:[1,"icon"]},null),(e()(),n["\u0275eld"](3,0,null,null,17,"div",[["class","row"]],null,null,null,null,null)),(e()(),n["\u0275eld"](4,0,null,null,9,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(e()(),n["\u0275eld"](5,0,null,null,8,"div",[["class","card mb-3"]],null,null,null,null,null)),(e()(),n["\u0275eld"](6,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(e()(),n["\u0275ted"](-1,null,[" Bar Chart "])),(e()(),n["\u0275eld"](8,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(e()(),n["\u0275eld"](9,0,null,null,1,"canvas",[["baseChart",""]],null,[[null,"chartHover"],[null,"chartClick"]],function(e,t,a){var n=!0,r=e.component;return"chartHover"===t&&(n=!1!==r.chartHovered(a)&&n),"chartClick"===t&&(n=!1!==r.chartClicked(a)&&n),n},null,null)),n["\u0275did"](10,737280,null,0,o.BaseChartDirective,[n.ElementRef],{datasets:[0,"datasets"],labels:[1,"labels"],options:[2,"options"],chartType:[3,"chartType"],legend:[4,"legend"]},{chartClick:"chartClick",chartHover:"chartHover"}),(e()(),n["\u0275eld"](11,0,null,null,2,"div",[["class","card-footer"]],null,null,null,null,null)),(e()(),n["\u0275eld"](12,0,null,null,1,"button",[["class","btn btn-info btn-sm"]],null,[[null,"click"]],function(e,t,a){var n=!0;return"click"===t&&(n=!1!==e.component.randomize()&&n),n},null,null)),(e()(),n["\u0275ted"](-1,null,["Update"])),(e()(),n["\u0275eld"](14,0,null,null,6,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(e()(),n["\u0275eld"](15,0,null,null,5,"div",[["class","card mb-3"]],null,null,null,null,null)),(e()(),n["\u0275eld"](16,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(e()(),n["\u0275ted"](-1,null,[" Doughnut Chart "])),(e()(),n["\u0275eld"](18,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(e()(),n["\u0275eld"](19,0,null,null,1,"canvas",[["baseChart",""],["height","180px"]],null,[[null,"chartHover"],[null,"chartClick"]],function(e,t,a){var n=!0,r=e.component;return"chartHover"===t&&(n=!1!==r.chartHovered(a)&&n),"chartClick"===t&&(n=!1!==r.chartClicked(a)&&n),n},null,null)),n["\u0275did"](20,737280,null,0,o.BaseChartDirective,[n.ElementRef],{data:[0,"data"],labels:[1,"labels"],chartType:[2,"chartType"]},{chartClick:"chartClick",chartHover:"chartHover"}),(e()(),n["\u0275eld"](21,0,null,null,14,"div",[["class","row"]],null,null,null,null,null)),(e()(),n["\u0275eld"](22,0,null,null,6,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(e()(),n["\u0275eld"](23,0,null,null,5,"div",[["class","card mb-3"]],null,null,null,null,null)),(e()(),n["\u0275eld"](24,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(e()(),n["\u0275ted"](-1,null,[" Radar Chart "])),(e()(),n["\u0275eld"](26,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(e()(),n["\u0275eld"](27,0,null,null,1,"canvas",[["baseChart",""],["height","150px"]],null,[[null,"chartHover"],[null,"chartClick"]],function(e,t,a){var n=!0,r=e.component;return"chartHover"===t&&(n=!1!==r.chartHovered(a)&&n),"chartClick"===t&&(n=!1!==r.chartClicked(a)&&n),n},null,null)),n["\u0275did"](28,737280,null,0,o.BaseChartDirective,[n.ElementRef],{datasets:[0,"datasets"],labels:[1,"labels"],chartType:[2,"chartType"]},{chartClick:"chartClick",chartHover:"chartHover"}),(e()(),n["\u0275eld"](29,0,null,null,6,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(e()(),n["\u0275eld"](30,0,null,null,5,"div",[["class","card mb-3"]],null,null,null,null,null)),(e()(),n["\u0275eld"](31,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(e()(),n["\u0275ted"](-1,null,[" Pie Chart "])),(e()(),n["\u0275eld"](33,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(e()(),n["\u0275eld"](34,0,null,null,1,"canvas",[["baseChart",""],["height","150px"]],null,[[null,"chartHover"],[null,"chartClick"]],function(e,t,a){var n=!0,r=e.component;return"chartHover"===t&&(n=!1!==r.chartHovered(a)&&n),"chartClick"===t&&(n=!1!==r.chartClicked(a)&&n),n},null,null)),n["\u0275did"](35,737280,null,0,o.BaseChartDirective,[n.ElementRef],{data:[0,"data"],labels:[1,"labels"],chartType:[2,"chartType"]},{chartClick:"chartClick",chartHover:"chartHover"}),(e()(),n["\u0275eld"](36,0,null,null,14,"div",[["class","row"]],null,null,null,null,null)),(e()(),n["\u0275eld"](37,0,null,null,6,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(e()(),n["\u0275eld"](38,0,null,null,5,"div",[["class","card mb-3"]],null,null,null,null,null)),(e()(),n["\u0275eld"](39,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(e()(),n["\u0275ted"](-1,null,[" Polar Area Chart "])),(e()(),n["\u0275eld"](41,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(e()(),n["\u0275eld"](42,0,null,null,1,"canvas",[["baseChart",""],["height","130px"]],null,[[null,"chartHover"],[null,"chartClick"]],function(e,t,a){var n=!0,r=e.component;return"chartHover"===t&&(n=!1!==r.chartHovered(a)&&n),"chartClick"===t&&(n=!1!==r.chartClicked(a)&&n),n},null,null)),n["\u0275did"](43,737280,null,0,o.BaseChartDirective,[n.ElementRef],{data:[0,"data"],labels:[1,"labels"],chartType:[2,"chartType"],legend:[3,"legend"]},{chartClick:"chartClick",chartHover:"chartHover"}),(e()(),n["\u0275eld"](44,0,null,null,6,"div",[["class","col col-sm-6"]],null,null,null,null,null)),(e()(),n["\u0275eld"](45,0,null,null,5,"div",[["class","card mb-3"]],null,null,null,null,null)),(e()(),n["\u0275eld"](46,0,null,null,1,"div",[["class","card-header"]],null,null,null,null,null)),(e()(),n["\u0275ted"](-1,null,[" Line Chart "])),(e()(),n["\u0275eld"](48,0,null,null,2,"div",[["class","card-body"]],null,null,null,null,null)),(e()(),n["\u0275eld"](49,0,null,null,1,"canvas",[["baseChart",""],["height","130"]],null,[[null,"chartHover"],[null,"chartClick"]],function(e,t,a){var n=!0,r=e.component;return"chartHover"===t&&(n=!1!==r.chartHovered(a)&&n),"chartClick"===t&&(n=!1!==r.chartClicked(a)&&n),n},null,null)),n["\u0275did"](50,737280,null,0,o.BaseChartDirective,[n.ElementRef],{datasets:[0,"datasets"],labels:[1,"labels"],options:[2,"options"],chartType:[3,"chartType"],colors:[4,"colors"],legend:[5,"legend"]},{chartClick:"chartClick",chartHover:"chartHover"})],function(e,t){var a=t.component;e(t,2,0,"Charts","fa-bar-chart-o"),e(t,10,0,a.barChartData,a.barChartLabels,a.barChartOptions,a.barChartType,a.barChartLegend),e(t,20,0,a.doughnutChartData,a.doughnutChartLabels,a.doughnutChartType),e(t,28,0,a.radarChartData,a.radarChartLabels,a.radarChartType),e(t,35,0,a.pieChartData,a.pieChartLabels,a.pieChartType),e(t,43,0,a.polarAreaChartData,a.polarAreaChartLabels,a.polarAreaChartType,a.polarAreaLegend),e(t,50,0,a.lineChartData,a.lineChartLabels,a.lineChartOptions,a.lineChartType,a.lineChartColors,a.lineChartLegend)},function(e,t){e(t,0,0,void 0)})}var _=n["\u0275ccf"]("app-charts",d,function(e){return n["\u0275vid"](0,[(e()(),n["\u0275eld"](0,0,null,null,1,"app-charts",[],null,null,null,u,l)),n["\u0275did"](1,114688,null,0,d,[],null,null)],function(e,t){e(t,1,0)},null)},{},{},[]),h=a("Ip0R"),c=a("ZYCi"),m=function(){},f=a("+Sv0");a.d(t,"ChartsModuleNgFactory",function(){return p});var p=n["\u0275cmf"](r,[],function(e){return n["\u0275mod"]([n["\u0275mpd"](512,n.ComponentFactoryResolver,n["\u0275CodegenComponentFactoryResolver"],[[8,[_]],[3,n.ComponentFactoryResolver],n.NgModuleRef]),n["\u0275mpd"](4608,h.o,h.n,[n.LOCALE_ID,[2,h.w]]),n["\u0275mpd"](1073742336,h.b,h.b,[]),n["\u0275mpd"](1073742336,o.ChartsModule,o.ChartsModule,[]),n["\u0275mpd"](1073742336,c.o,c.o,[[2,c.t],[2,c.l]]),n["\u0275mpd"](1073742336,m,m,[]),n["\u0275mpd"](1073742336,f.a,f.a,[]),n["\u0275mpd"](1073742336,r,r,[]),n["\u0275mpd"](1024,c.j,function(){return[[{path:"",component:d}]]},[])])})},raLr:function(e,t,a){!function(e){"use strict";function t(e,t,a){var n,r;return"m"===a?t?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443":"h"===a?t?"\u0433\u043e\u0434\u0438\u043d\u0430":"\u0433\u043e\u0434\u0438\u043d\u0443":e+" "+(n=+e,r={ss:t?"\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:t?"\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:t?"\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"}[a].split("_"),n%10==1&&n%100!=11?r[0]:n%10>=2&&n%10<=4&&(n%100<10||n%100>=20)?r[1]:r[2])}function a(e){return function(){return e+"\u043e"+(11===this.hours()?"\u0431":"")+"] LT"}}e.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(e,t){var a={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 e?a[/(\[[\u0412\u0432\u0423\u0443]\]) ?dddd/.test(t)?"accusative":/\[?(?:\u043c\u0438\u043d\u0443\u043b\u043e\u0457|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0457)? ?\] ?dddd/.test(t)?"genitive":"nominative"][e.day()]:a.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:a("[\u0421\u044c\u043e\u0433\u043e\u0434\u043d\u0456 "),nextDay:a("[\u0417\u0430\u0432\u0442\u0440\u0430 "),lastDay:a("[\u0412\u0447\u043e\u0440\u0430 "),nextWeek:a("[\u0423] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return a("[\u041c\u0438\u043d\u0443\u043b\u043e\u0457] dddd [").call(this);case 1:case 2:case 4:return a("[\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:t,m:t,mm:t,h:"\u0433\u043e\u0434\u0438\u043d\u0443",hh:t,d:"\u0434\u0435\u043d\u044c",dd:t,M:"\u043c\u0456\u0441\u044f\u0446\u044c",MM:t,y:"\u0440\u0456\u043a",yy:t},meridiemParse:/\u043d\u043e\u0447\u0456|\u0440\u0430\u043d\u043a\u0443|\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430/,isPM:function(e){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430)$/.test(e)},meridiem:function(e,t,a){return e<4?"\u043d\u043e\u0447\u0456":e<12?"\u0440\u0430\u043d\u043a\u0443":e<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u043e\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-\u0439";case"D":return e+"-\u0433\u043e";default:return e}},week:{dow:1,doy:7}})}(a("wd/R"))},"s+uk":function(e,t,a){!function(e){"use strict";function t(e,t,a,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?r[a][0]:r[a][1]}e.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:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},sp3z:function(e,t,a){!function(e){"use strict";e.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(e){return"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"===e},meridiem:function(e,t,a){return e<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(e){return"\u0e97\u0eb5\u0ec8"+e}})}(a("wd/R"))},t1N5:function(e,t){function a(e){var t,a,n=e[0]/255,r=e[1]/255,i=e[2]/255,s=Math.min(n,r,i),o=Math.max(n,r,i),d=o-s;return o==s?t=0:n==o?t=(r-i)/d:r==o?t=2+(i-n)/d:i==o&&(t=4+(n-r)/d),(t=Math.min(60*t,360))<0&&(t+=360),a=(s+o)/2,[t,100*(o==s?0:a<=.5?d/(o+s):d/(2-o-s)),100*a]}function n(e){var t,a,n=e[0],r=e[1],i=e[2],s=Math.min(n,r,i),o=Math.max(n,r,i),d=o-s;return a=0==o?0:d/o*1e3/10,o==s?t=0:n==o?t=(r-i)/d:r==o?t=2+(i-n)/d:i==o&&(t=4+(n-r)/d),(t=Math.min(60*t,360))<0&&(t+=360),[t,a,o/255*1e3/10]}function i(e){var t=e[0],n=e[1],r=e[2];return[a(e)[0],1/255*Math.min(t,Math.min(n,r))*100,100*(r=1-1/255*Math.max(t,Math.max(n,r)))]}function s(e){var t,a=e[0]/255,n=e[1]/255,r=e[2]/255;return[100*((1-a-(t=Math.min(1-a,1-n,1-r)))/(1-t)||0),100*((1-n-t)/(1-t)||0),100*((1-r-t)/(1-t)||0),100*t]}function o(e){return k[JSON.stringify(e)]}function d(e){var t=e[0]/255,a=e[1]/255,n=e[2]/255;return[100*(.4124*(t=t>.04045?Math.pow((t+.055)/1.055,2.4):t/12.92)+.3576*(a=a>.04045?Math.pow((a+.055)/1.055,2.4):a/12.92)+.1805*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)),100*(.2126*t+.7152*a+.0722*n),100*(.0193*t+.1192*a+.9505*n)]}function l(e){var t=d(e),a=t[0],n=t[1],r=t[2];return n/=100,r/=108.883,a=(a/=95.047)>.008856?Math.pow(a,1/3):7.787*a+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(a-n),200*(n-(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116))]}function u(e){var t,a,n,r,i,s=e[0]/360,o=e[1]/100,d=e[2]/100;if(0==o)return[i=255*d,i,i];t=2*d-(a=d<.5?d*(1+o):d+o-d*o),r=[0,0,0];for(var l=0;l<3;l++)(n=s+1/3*-(l-1))<0&&n++,n>1&&n--,r[l]=255*(i=6*n<1?t+6*(a-t)*n:2*n<1?a:3*n<2?t+(a-t)*(2/3-n)*6:t);return r}function _(e){var t=e[0]/60,a=e[1]/100,n=e[2]/100,r=Math.floor(t)%6,i=t-Math.floor(t),s=255*n*(1-a),o=255*n*(1-a*i),d=255*n*(1-a*(1-i));switch(n*=255,r){case 0:return[n,d,s];case 1:return[o,n,s];case 2:return[s,n,d];case 3:return[s,o,n];case 4:return[d,s,n];case 5:return[n,s,o]}}function h(e){var t,a,n,i,s=e[0]/360,o=e[1]/100,d=e[2]/100,l=o+d;switch(l>1&&(o/=l,d/=l),a=1-d,n=6*s-(t=Math.floor(6*s)),0!=(1&t)&&(n=1-n),i=o+n*(a-o),t){default:case 6:case 0:r=a,g=i,b=o;break;case 1:r=i,g=a,b=o;break;case 2:r=o,g=a,b=i;break;case 3:r=o,g=i,b=a;break;case 4:r=i,g=o,b=a;break;case 5:r=a,g=o,b=i}return[255*r,255*g,255*b]}function c(e){var t=e[1]/100,a=e[2]/100,n=e[3]/100;return[255*(1-Math.min(1,e[0]/100*(1-n)+n)),255*(1-Math.min(1,t*(1-n)+n)),255*(1-Math.min(1,a*(1-n)+n))]}function m(e){var t,a,n,r=e[0]/100,i=e[1]/100,s=e[2]/100;return a=-.9689*r+1.8758*i+.0415*s,n=.0557*r+-.204*i+1.057*s,t=(t=3.2406*r+-1.5372*i+-.4986*s)>.0031308?1.055*Math.pow(t,1/2.4)-.055:t*=12.92,a=a>.0031308?1.055*Math.pow(a,1/2.4)-.055:a*=12.92,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*=12.92,[255*(t=Math.min(Math.max(0,t),1)),255*(a=Math.min(Math.max(0,a),1)),255*(n=Math.min(Math.max(0,n),1))]}function f(e){var t=e[0],a=e[1],n=e[2];return a/=100,n/=108.883,t=(t/=95.047)>.008856?Math.pow(t,1/3):7.787*t+16/116,[116*(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116)-16,500*(t-a),200*(a-(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116))]}function p(e){var t,a,n,r,i=e[0],s=e[1],o=e[2];return i<=8?r=(a=100*i/903.3)/100*7.787+16/116:(a=100*Math.pow((i+16)/116,3),r=Math.pow(a/100,1/3)),[t=t/95.047<=.008856?t=95.047*(s/500+r-16/116)/7.787:95.047*Math.pow(s/500+r,3),a,n=n/108.883<=.008859?n=108.883*(r-o/200-16/116)/7.787:108.883*Math.pow(r-o/200,3)]}function M(e){var t,a=e[0],n=e[1],r=e[2];return(t=360*Math.atan2(r,n)/2/Math.PI)<0&&(t+=360),[a,Math.sqrt(n*n+r*r),t]}function y(e){return m(p(e))}function L(e){var t,a=e[1];return t=e[2]/360*2*Math.PI,[e[0],a*Math.cos(t),a*Math.sin(t)]}function v(e){return Y[e]}e.exports={rgb2hsl:a,rgb2hsv:n,rgb2hwb:i,rgb2cmyk:s,rgb2keyword:o,rgb2xyz:d,rgb2lab:l,rgb2lch:function(e){return M(l(e))},hsl2rgb:u,hsl2hsv:function(e){var t=e[1]/100,a=e[2]/100;return 0===a?[0,0,0]:[e[0],2*(t*=(a*=2)<=1?a:2-a)/(a+t)*100,(a+t)/2*100]},hsl2hwb:function(e){return i(u(e))},hsl2cmyk:function(e){return s(u(e))},hsl2keyword:function(e){return o(u(e))},hsv2rgb:_,hsv2hsl:function(e){var t,a,n=e[1]/100,r=e[2]/100;return t=n*r,[e[0],100*(t=(t/=(a=(2-n)*r)<=1?a:2-a)||0),100*(a/=2)]},hsv2hwb:function(e){return i(_(e))},hsv2cmyk:function(e){return s(_(e))},hsv2keyword:function(e){return o(_(e))},hwb2rgb:h,hwb2hsl:function(e){return a(h(e))},hwb2hsv:function(e){return n(h(e))},hwb2cmyk:function(e){return s(h(e))},hwb2keyword:function(e){return o(h(e))},cmyk2rgb:c,cmyk2hsl:function(e){return a(c(e))},cmyk2hsv:function(e){return n(c(e))},cmyk2hwb:function(e){return i(c(e))},cmyk2keyword:function(e){return o(c(e))},keyword2rgb:v,keyword2hsl:function(e){return a(v(e))},keyword2hsv:function(e){return n(v(e))},keyword2hwb:function(e){return i(v(e))},keyword2cmyk:function(e){return s(v(e))},keyword2lab:function(e){return l(v(e))},keyword2xyz:function(e){return d(v(e))},xyz2rgb:m,xyz2lab:f,xyz2lch:function(e){return M(f(e))},lab2xyz:p,lab2rgb:y,lab2lch:M,lch2lab:L,lch2xyz:function(e){return p(L(e))},lch2rgb:function(e){return y(L(e))}};var Y={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},k={};for(var D in Y)k[JSON.stringify(Y[D])]=D},tGlX:function(e,t,a){!function(e){"use strict";function t(e,t,a,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?r[a][0]:r[a][1]}e.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:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},tT3J:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},tUCv:function(e,t,a){!function(e){"use strict";e.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(e,t){return 12===e&&(e=0),"enjing"===t?e:"siyang"===t?e>=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"enjing":e<15?"siyang":e<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}})}(a("wd/R"))},tjFV:function(e,t,a){"use strict";var n=a("CDJp"),r=a("RDha"),i=a("fELs");e.exports=function(e){e.scaleService={constructors:{},defaults:{},registerScaleType:function(e,t,a){this.constructors[e]=t,this.defaults[e]=r.clone(a)},getScaleConstructor:function(e){return this.constructors.hasOwnProperty(e)?this.constructors[e]:void 0},getScaleDefaults:function(e){return this.defaults.hasOwnProperty(e)?r.merge({},[n.scale,this.defaults[e]]):{}},updateScaleDefaults:function(e,t){this.defaults.hasOwnProperty(e)&&(this.defaults[e]=r.extend(this.defaults[e],t))},addScalesToLayout:function(e){r.each(e.scales,function(t){t.fullWidth=t.options.fullWidth,t.position=t.options.position,t.weight=t.options.weight,i.addBox(e,t)})}}}},u0Op:function(e,t,a){"use strict";var n=a("TC34"),r={linear:function(e){return e},easeInQuad:function(e){return e*e},easeOutQuad:function(e){return-e*(e-2)},easeInOutQuad:function(e){return(e/=.5)<1?.5*e*e:-.5*(--e*(e-2)-1)},easeInCubic:function(e){return e*e*e},easeOutCubic:function(e){return(e-=1)*e*e+1},easeInOutCubic:function(e){return(e/=.5)<1?.5*e*e*e:.5*((e-=2)*e*e+2)},easeInQuart:function(e){return e*e*e*e},easeOutQuart:function(e){return-((e-=1)*e*e*e-1)},easeInOutQuart:function(e){return(e/=.5)<1?.5*e*e*e*e:-.5*((e-=2)*e*e*e-2)},easeInQuint:function(e){return e*e*e*e*e},easeOutQuint:function(e){return(e-=1)*e*e*e*e+1},easeInOutQuint:function(e){return(e/=.5)<1?.5*e*e*e*e*e:.5*((e-=2)*e*e*e*e+2)},easeInSine:function(e){return 1-Math.cos(e*(Math.PI/2))},easeOutSine:function(e){return Math.sin(e*(Math.PI/2))},easeInOutSine:function(e){return-.5*(Math.cos(Math.PI*e)-1)},easeInExpo:function(e){return 0===e?0:Math.pow(2,10*(e-1))},easeOutExpo:function(e){return 1===e?1:1-Math.pow(2,-10*e)},easeInOutExpo:function(e){return 0===e?0:1===e?1:(e/=.5)<1?.5*Math.pow(2,10*(e-1)):.5*(2-Math.pow(2,-10*--e))},easeInCirc:function(e){return e>=1?e:-(Math.sqrt(1-e*e)-1)},easeOutCirc:function(e){return Math.sqrt(1-(e-=1)*e)},easeInOutCirc:function(e){return(e/=.5)<1?-.5*(Math.sqrt(1-e*e)-1):.5*(Math.sqrt(1-(e-=2)*e)+1)},easeInElastic:function(e){var t=1.70158,a=0,n=1;return 0===e?0:1===e?1:(a||(a=.3),n<1?(n=1,t=a/4):t=a/(2*Math.PI)*Math.asin(1/n),-n*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/a))},easeOutElastic:function(e){var t=1.70158,a=0,n=1;return 0===e?0:1===e?1:(a||(a=.3),n<1?(n=1,t=a/4):t=a/(2*Math.PI)*Math.asin(1/n),n*Math.pow(2,-10*e)*Math.sin((e-t)*(2*Math.PI)/a)+1)},easeInOutElastic:function(e){var t=1.70158,a=0,n=1;return 0===e?0:2==(e/=.5)?1:(a||(a=.45),n<1?(n=1,t=a/4):t=a/(2*Math.PI)*Math.asin(1/n),e<1?n*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/a)*-.5:n*Math.pow(2,-10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/a)*.5+1)},easeInBack:function(e){var t=1.70158;return e*e*((t+1)*e-t)},easeOutBack:function(e){var t=1.70158;return(e-=1)*e*((t+1)*e+t)+1},easeInOutBack:function(e){var t=1.70158;return(e/=.5)<1?e*e*((1+(t*=1.525))*e-t)*.5:.5*((e-=2)*e*((1+(t*=1.525))*e+t)+2)},easeInBounce:function(e){return 1-r.easeOutBounce(1-e)},easeOutBounce:function(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375},easeInOutBounce:function(e){return e<.5?.5*r.easeInBounce(2*e):.5*r.easeOutBounce(2*e-1)+.5}};e.exports={effects:r},n.easingEffects=r},u3GI:function(e,t,a){!function(e){"use strict";function t(e,t,a,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?r[a][0]:r[a][1]}e.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:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},uEye:function(e,t,a){!function(e){"use strict";e.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}})}(a("wd/R"))},uXwI:function(e,t,a){!function(e){"use strict";var t={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 a(e,t,a){return a?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function n(e,n,r){return e+" "+a(t[r],e,n)}function r(e,n,r){return a(t[r],e,n)}e.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(e,t){return t?"da\u017eas sekundes":"da\u017e\u0101m sekund\u0113m"},ss:n,m:r,mm:n,h:r,hh:n,d:r,dd:n,M:r,MM:n,y:r,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},uxXc:function(e,t,a){var n=a("t1N5"),r=function(){return new l};for(var i in n){r[i+"Raw"]=function(e){return function(t){return"number"==typeof t&&(t=Array.prototype.slice.call(arguments)),n[e](t)}}(i);var s=/(\w+)2(\w+)/.exec(i),o=s[1],d=s[2];(r[o]=r[o]||{})[d]=r[i]=function(e){return function(t){"number"==typeof t&&(t=Array.prototype.slice.call(arguments));var a=n[e](t);if("string"==typeof a||void 0===a)return a;for(var r=0;r=a)&&n;switch(i){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return i;default:return!1}}function d(e){var t,a=e.el._model||{},n=e.el._scale||{},r=e.fill,i=null;if(isFinite(r))return null;if("start"===r?i=void 0===a.scaleBottom?n.bottom:a.scaleBottom:"end"===r?i=void 0===a.scaleTop?n.top:a.scaleTop:void 0!==a.scaleZero?i=a.scaleZero:n.getBasePosition?i=n.getBasePosition():n.getBasePixel&&(i=n.getBasePixel()),void 0!==i&&null!==i){if(void 0!==i.x&&void 0!==i.y)return i;if("number"==typeof i&&isFinite(i))return{x:(t=n.isHorizontal())?i:null,y:t?null:i}}return null}function l(e,t,a){var n,r=e[t].fill,i=[t];if(!a)return r;for(;!1!==r&&-1===i.indexOf(r);){if(!isFinite(r))return r;if(!(n=e[r]))return!1;if(n.visible)return r;i.push(r),r=n.fill}return!1}function u(e){var t=e.fill,a="dataset";return!1===t?null:(isFinite(t)||(a="boundary"),s[a](e))}function _(e){return e&&!e.skip}function h(e,t,a,n,r){var s;if(n&&r){for(e.moveTo(t[0].x,t[0].y),s=1;s0;--s)i.canvas.lineTo(e,a[s],a[s-1],!0)}}e.exports={id:"filler",afterDatasetsUpdate:function(e,t){var a,n,i,s,_=(e.data.datasets||[]).length,h=t.propagate,c=[];for(n=0;n<_;++n)s=null,(i=(a=e.getDatasetMeta(n)).dataset)&&i._model&&i instanceof r.Line&&(s={visible:e.isDatasetVisible(n),fill:o(i,n,_),chart:e,el:i}),a.$filler=s,c.push(s);for(n=0;n<_;++n)(s=c[n])&&(s.fill=l(c,n,h),s.boundary=d(s),s.mapper=u(s))},beforeDatasetDraw:function(e,t){var a=t.meta.$filler;if(a){var r=e.ctx,s=a.el,o=s._view,d=s._children||[],l=a.mapper,u=o.backgroundColor||n.global.defaultColor;l&&u&&d.length&&(i.canvas.clipArea(r,e.chartArea),function(e,t,a,n,r,i){var s,o,d,l,u,c,m,f=t.length,p=n.spanGaps,M=[],y=[],g=0,L=0;for(e.beginPath(),s=0,o=f+!!i;s>>0,n=0;n0)for(a=0;a=0?a?"+":"":"-")+Math.pow(10,Math.max(0,t-n.length)).toString().substr(1)+n}var E=/(\[[^\[]*\])|(\\)?([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,z=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,N={},B={};function V(e,t,a,n){var r=n;"string"==typeof n&&(r=function(){return this[n]()}),e&&(B[e]=r),t&&(B[t[0]]=function(){return I(r.apply(this,arguments),t[1],t[2])}),a&&(B[a]=function(){return this.localeData().ordinal(r.apply(this,arguments),e)})}function J(e,t){return e.isValid()?(t=U(t,e.localeData()),N[t]=N[t]||function(e){var t,a,n,r=e.match(E);for(t=0,a=r.length;t=0&&z.test(e);)e=e.replace(z,n),z.lastIndex=0,a-=1;return e}var G=/\d/,q=/\d\d/,K=/\d{3}/,Z=/\d{4}/,Q=/[+-]?\d{6}/,X=/\d\d?/,$=/\d\d\d\d?/,ee=/\d\d\d\d\d\d?/,te=/\d{1,3}/,ae=/\d{1,4}/,ne=/[+-]?\d{1,6}/,re=/\d+/,ie=/[+-]?\d+/,se=/Z|[+-]\d\d:?\d\d/gi,oe=/Z|[+-]\d\d(?::?\d\d)?/gi,de=/[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,le={};function ue(e,t,a){le[e]=H(t)?t:function(e,n){return e&&a?a:t}}function _e(e,t){return _(le,e)?le[e](t._strict,t._locale):new RegExp(he(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,a,n,r){return t||a||n||r})))}function he(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var ce={};function me(e,t){var a,n=t;for("string"==typeof e&&(e=[e]),d(t)&&(n=function(e,a){a[t]=k(e)}),a=0;a68?1900:2e3)};var Te,Se=He("FullYear",!0);function He(e,t){return function(a){return null!=a?(Ce(this,e,a),r.updateOffset(this,t),this):je(this,e)}}function je(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function Ce(e,t,a){e.isValid()&&!isNaN(a)&&("FullYear"===t&&xe(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](a,e.month(),Pe(a,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](a))}function Pe(e,t){if(isNaN(e)||isNaN(t))return NaN;var a=(t%12+12)%12;return e+=(t-a)/12,1===a?xe(e)?29:28:31-a%7%2}Te=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0&&isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e),t}function Be(e,t,a){var n=7+t-a;return-(7+Ne(e,0,n).getUTCDay()-t)%7+n-1}function Ve(e,t,a,n,r){var i,s,o=1+7*(t-1)+(7+a-n)%7+Be(e,n,r);return o<=0?s=we(i=e-1)+o:o>we(e)?(i=e+1,s=o-we(e)):(i=e,s=o),{year:i,dayOfYear:s}}function Je(e,t,a){var n,r,i=Be(e.year(),t,a),s=Math.floor((e.dayOfYear()-i-1)/7)+1;return s<1?n=s+Ue(r=e.year()-1,t,a):s>Ue(e.year(),t,a)?(n=s-Ue(e.year(),t,a),r=e.year()+1):(r=e.year(),n=s),{week:n,year:r}}function Ue(e,t,a){var n=Be(e,t,a),r=Be(e+1,t,a);return(we(e)-n+r)/7}V("w",["ww",2],"wo","week"),V("W",["WW",2],"Wo","isoWeek"),O("week","w"),O("isoWeek","W"),R("week",5),R("isoWeek",5),ue("w",X),ue("ww",X,q),ue("W",X),ue("WW",X,q),fe(["w","ww","W","WW"],function(e,t,a,n){t[n.substr(0,1)]=k(e)}),V("d",0,"do","day"),V("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),V("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),V("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),V("e",0,0,"weekday"),V("E",0,0,"isoWeekday"),O("day","d"),O("weekday","e"),O("isoWeekday","E"),R("day",11),R("weekday",11),R("isoWeekday",11),ue("d",X),ue("e",X),ue("E",X),ue("dd",function(e,t){return t.weekdaysMinRegex(e)}),ue("ddd",function(e,t){return t.weekdaysShortRegex(e)}),ue("dddd",function(e,t){return t.weekdaysRegex(e)}),fe(["dd","ddd","dddd"],function(e,t,a,n){var r=a._locale.weekdaysParse(e,n,a._strict);null!=r?t.d=r:m(a).invalidWeekday=e}),fe(["d","e","E"],function(e,t,a,n){t[n]=k(e)});var Ge="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),qe="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ke="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Ze=de,Qe=de,Xe=de;function $e(){function e(e,t){return t.length-e.length}var t,a,n,r,i,s=[],o=[],d=[],l=[];for(t=0;t<7;t++)a=c([2e3,1]).day(t),n=this.weekdaysMin(a,""),r=this.weekdaysShort(a,""),i=this.weekdays(a,""),s.push(n),o.push(r),d.push(i),l.push(n),l.push(r),l.push(i);for(s.sort(e),o.sort(e),d.sort(e),l.sort(e),t=0;t<7;t++)o[t]=he(o[t]),d[t]=he(d[t]),l[t]=he(l[t]);this._weekdaysRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+s.join("|")+")","i")}function et(){return this.hours()%12||12}function tt(e,t){V(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function at(e,t){return t._meridiemParse}V("H",["HH",2],0,"hour"),V("h",["hh",2],0,et),V("k",["kk",2],0,function(){return this.hours()||24}),V("hmm",0,0,function(){return""+et.apply(this)+I(this.minutes(),2)}),V("hmmss",0,0,function(){return""+et.apply(this)+I(this.minutes(),2)+I(this.seconds(),2)}),V("Hmm",0,0,function(){return""+this.hours()+I(this.minutes(),2)}),V("Hmmss",0,0,function(){return""+this.hours()+I(this.minutes(),2)+I(this.seconds(),2)}),tt("a",!0),tt("A",!1),O("hour","h"),R("hour",13),ue("a",at),ue("A",at),ue("H",X),ue("h",X),ue("k",X),ue("HH",X,q),ue("hh",X,q),ue("kk",X,q),ue("hmm",$),ue("hmmss",ee),ue("Hmm",$),ue("Hmmss",ee),me(["H","HH"],Le),me(["k","kk"],function(e,t,a){var n=k(e);t[Le]=24===n?0:n}),me(["a","A"],function(e,t,a){a._isPm=a._locale.isPM(e),a._meridiem=e}),me(["h","hh"],function(e,t,a){t[Le]=k(e),m(a).bigHour=!0}),me("hmm",function(e,t,a){var n=e.length-2;t[Le]=k(e.substr(0,n)),t[ve]=k(e.substr(n)),m(a).bigHour=!0}),me("hmmss",function(e,t,a){var n=e.length-4,r=e.length-2;t[Le]=k(e.substr(0,n)),t[ve]=k(e.substr(n,2)),t[Ye]=k(e.substr(r)),m(a).bigHour=!0}),me("Hmm",function(e,t,a){var n=e.length-2;t[Le]=k(e.substr(0,n)),t[ve]=k(e.substr(n))}),me("Hmmss",function(e,t,a){var n=e.length-4,r=e.length-2;t[Le]=k(e.substr(0,n)),t[ve]=k(e.substr(n,2)),t[Ye]=k(e.substr(r))});var nt,rt=He("Hours",!0),it={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:Ae,monthsShort:We,week:{dow:0,doy:6},weekdays:Ge,weekdaysMin:Ke,weekdaysShort:qe,meridiemParse:/[ap]\.?m?\.?/i},st={},ot={};function dt(e){return e?e.toLowerCase().replace("_","-"):e}function lt(t){var n=null;if(!st[t]&&void 0!==e&&e&&e.exports)try{n=nt._abbr,a("RnhZ")("./"+t),ut(n)}catch(e){}return st[t]}function ut(e,t){var a;return e&&((a=o(t)?ht(e):_t(e,t))?nt=a:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),nt._abbr}function _t(e,t){if(null!==t){var a,n=it;if(t.abbr=e,null!=st[e])S("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."),n=st[e]._config;else if(null!=t.parentLocale)if(null!=st[t.parentLocale])n=st[t.parentLocale]._config;else{if(null==(a=lt(t.parentLocale)))return ot[t.parentLocale]||(ot[t.parentLocale]=[]),ot[t.parentLocale].push({name:e,config:t}),null;n=a._config}return st[e]=new C(j(n,t)),ot[e]&&ot[e].forEach(function(e){_t(e.name,e.config)}),ut(e),st[e]}return delete st[e],null}function ht(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return nt;if(!i(e)){if(t=lt(e))return t;e=[e]}return function(e){for(var t,a,n,r,i=0;i0;){if(n=lt(r.slice(0,t).join("-")))return n;if(a&&a.length>=t&&b(r,a,!0)>=t-1)break;t--}i++}return nt}(e)}function ct(e){var t,a=e._a;return a&&-2===m(e).overflow&&(t=a[ye]<0||a[ye]>11?ye:a[ge]<1||a[ge]>Pe(a[Me],a[ye])?ge:a[Le]<0||a[Le]>24||24===a[Le]&&(0!==a[ve]||0!==a[Ye]||0!==a[ke])?Le:a[ve]<0||a[ve]>59?ve:a[Ye]<0||a[Ye]>59?Ye:a[ke]<0||a[ke]>999?ke:-1,m(e)._overflowDayOfYear&&(tge)&&(t=ge),m(e)._overflowWeeks&&-1===t&&(t=be),m(e)._overflowWeekday&&-1===t&&(t=De),m(e).overflow=t),e}function mt(e,t,a){return null!=e?e:null!=t?t:a}function ft(e){var t,a,n,i,s,o=[];if(!e._d){for(n=function(e){var t=new Date(r.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[ge]&&null==e._a[ye]&&function(e){var t,a,n,r,i,s,o,d;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)i=1,s=4,a=mt(t.GG,e._a[Me],Je(St(),1,4).year),n=mt(t.W,1),((r=mt(t.E,1))<1||r>7)&&(d=!0);else{i=e._locale._week.dow,s=e._locale._week.doy;var l=Je(St(),i,s);a=mt(t.gg,e._a[Me],l.year),n=mt(t.w,l.week),null!=t.d?((r=t.d)<0||r>6)&&(d=!0):null!=t.e?(r=t.e+i,(t.e<0||t.e>6)&&(d=!0)):r=i}n<1||n>Ue(a,i,s)?m(e)._overflowWeeks=!0:null!=d?m(e)._overflowWeekday=!0:(o=Ve(a,n,r,i,s),e._a[Me]=o.year,e._dayOfYear=o.dayOfYear)}(e),null!=e._dayOfYear&&(s=mt(e._a[Me],n[Me]),(e._dayOfYear>we(s)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),a=Ne(s,0,e._dayOfYear),e._a[ye]=a.getUTCMonth(),e._a[ge]=a.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=o[t]=n[t];for(;t<7;t++)e._a[t]=o[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[Le]&&0===e._a[ve]&&0===e._a[Ye]&&0===e._a[ke]&&(e._nextDay=!0,e._a[Le]=0),e._d=(e._useUTC?Ne:function(e,t,a,n,r,i,s){var o=new Date(e,t,a,n,r,i,s);return e<100&&e>=0&&isFinite(o.getFullYear())&&o.setFullYear(e),o}).apply(null,o),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[Le]=24),e._w&&void 0!==e._w.d&&e._w.d!==i&&(m(e).weekdayMismatch=!0)}}var pt=/^\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)?)?$/,Mt=/^\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)?)?$/,yt=/Z|[+-]\d\d(?::?\d\d)?/,gt=[["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}/]],Lt=[["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/]],vt=/^\/?Date\((\-?\d+)/i;function Yt(e){var t,a,n,r,i,s,o=e._i,d=pt.exec(o)||Mt.exec(o);if(d){for(m(e).iso=!0,t=0,a=gt.length;t0&&m(e).unusedInput.push(s),o=o.slice(o.indexOf(a)+a.length),l+=a.length),B[i]?(a?m(e).empty=!1:m(e).unusedTokens.push(i),pe(i,a,e)):e._strict&&!a&&m(e).unusedTokens.push(i);m(e).charsLeftOver=d-l,o.length>0&&m(e).unusedInput.push(o),e._a[Le]<=12&&!0===m(e).bigHour&&e._a[Le]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[Le]=(u=e._locale,_=e._a[Le],null==(h=e._meridiem)?_:null!=u.meridiemHour?u.meridiemHour(_,h):null!=u.isPM?((c=u.isPM(h))&&_<12&&(_+=12),c||12!==_||(_=0),_):_),ft(e),ct(e)}else Dt(e);else Yt(e);var u,_,h,c}function xt(e){var t=e._i,a=e._f;return e._locale=e._locale||ht(e._l),null===t||void 0===a&&""===t?p({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),v(t)?new L(ct(t)):(l(t)?e._d=t:i(a)?function(e){var t,a,n,r,i;if(0===e._f.length)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(r=0;rthis?this:e:p()});function Ct(e,t){var a,n;if(1===t.length&&i(t[0])&&(t=t[0]),!t.length)return St();for(a=t[0],n=1;n(i=Ue(e,n,r))&&(t=i),(function(e,t,a,n,r){var i=Ve(e,t,a,n,r),s=Ne(i.year,0,i.dayOfYear);return this.year(s.getUTCFullYear()),this.month(s.getUTCMonth()),this.date(s.getUTCDate()),this}).call(this,e,t,a,n,r))}V(0,["gg",2],0,function(){return this.weekYear()%100}),V(0,["GG",2],0,function(){return this.isoWeekYear()%100}),aa("gggg","weekYear"),aa("ggggg","weekYear"),aa("GGGG","isoWeekYear"),aa("GGGGG","isoWeekYear"),O("weekYear","gg"),O("isoWeekYear","GG"),R("weekYear",1),R("isoWeekYear",1),ue("G",ie),ue("g",ie),ue("GG",X,q),ue("gg",X,q),ue("GGGG",ae,Z),ue("gggg",ae,Z),ue("GGGGG",ne,Q),ue("ggggg",ne,Q),fe(["gggg","ggggg","GGGG","GGGGG"],function(e,t,a,n){t[n.substr(0,2)]=k(e)}),fe(["gg","GG"],function(e,t,a,n){t[n]=r.parseTwoDigitYear(e)}),V("Q",0,"Qo","quarter"),O("quarter","Q"),R("quarter",7),ue("Q",G),me("Q",function(e,t){t[ye]=3*(k(e)-1)}),V("D",["DD",2],"Do","date"),O("date","D"),R("date",9),ue("D",X),ue("DD",X,q),ue("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),me(["D","DD"],ge),me("Do",function(e,t){t[ge]=k(e.match(X)[0])});var ra=He("Date",!0);V("DDD",["DDDD",3],"DDDo","dayOfYear"),O("dayOfYear","DDD"),R("dayOfYear",4),ue("DDD",te),ue("DDDD",K),me(["DDD","DDDD"],function(e,t,a){a._dayOfYear=k(e)}),V("m",["mm",2],0,"minute"),O("minute","m"),R("minute",14),ue("m",X),ue("mm",X,q),me(["m","mm"],ve);var ia=He("Minutes",!1);V("s",["ss",2],0,"second"),O("second","s"),R("second",15),ue("s",X),ue("ss",X,q),me(["s","ss"],Ye);var sa,oa=He("Seconds",!1);for(V("S",0,0,function(){return~~(this.millisecond()/100)}),V(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),V(0,["SSS",3],0,"millisecond"),V(0,["SSSS",4],0,function(){return 10*this.millisecond()}),V(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),V(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),V(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),V(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),V(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),O("millisecond","ms"),R("millisecond",16),ue("S",te,G),ue("SS",te,q),ue("SSS",te,K),sa="SSSS";sa.length<=9;sa+="S")ue(sa,re);function da(e,t){t[ke]=k(1e3*("0."+e))}for(sa="S";sa.length<=9;sa+="S")me(sa,da);var la=He("Milliseconds",!1);V("z",0,0,"zoneAbbr"),V("zz",0,0,"zoneName");var ua=L.prototype;function _a(e){return e}ua.add=Zt,ua.calendar=function(e,t){var a=e||St(),n=Et(a,this).startOf("day"),i=r.calendarFormat(this,n)||"sameElse",s=t&&(H(t[i])?t[i].call(this,a):t[i]);return this.format(s||this.localeData().calendar(i,this,St(a)))},ua.clone=function(){return new L(this)},ua.diff=function(e,t,a){var n,r,i;if(!this.isValid())return NaN;if(!(n=Et(e,this)).isValid())return NaN;switch(r=6e4*(n.utcOffset()-this.utcOffset()),t=A(t)){case"year":i=Xt(this,n)/12;break;case"month":i=Xt(this,n);break;case"quarter":i=Xt(this,n)/3;break;case"second":i=(this-n)/1e3;break;case"minute":i=(this-n)/6e4;break;case"hour":i=(this-n)/36e5;break;case"day":i=(this-n-r)/864e5;break;case"week":i=(this-n-r)/6048e5;break;default:i=this-n}return a?i:Y(i)},ua.endOf=function(e){return void 0===(e=A(e))||"millisecond"===e?this:("date"===e&&(e="day"),this.startOf(e).add(1,"isoWeek"===e?"week":e).subtract(1,"ms"))},ua.format=function(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=J(this,e);return this.localeData().postformat(t)},ua.from=function(e,t){return this.isValid()&&(v(e)&&e.isValid()||St(e).isValid())?Jt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},ua.fromNow=function(e){return this.from(St(),e)},ua.to=function(e,t){return this.isValid()&&(v(e)&&e.isValid()||St(e).isValid())?Jt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},ua.toNow=function(e){return this.to(St(),e)},ua.get=function(e){return H(this[e=A(e)])?this[e]():this},ua.invalidAt=function(){return m(this).overflow},ua.isAfter=function(e,t){var a=v(e)?e:St(e);return!(!this.isValid()||!a.isValid())&&("millisecond"===(t=A(o(t)?"millisecond":t))?this.valueOf()>a.valueOf():a.valueOf()9999?J(a,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):H(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",J(a,"Z")):J(a,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},ua.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="";this.isLocal()||(e=0===this.utcOffset()?"moment.utc":"moment.parseZone",t="Z");var a="["+e+'("]',n=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY";return this.format(a+n+"-MM-DD[T]HH:mm:ss.SSS"+t+'[")]')},ua.toJSON=function(){return this.isValid()?this.toISOString():null},ua.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},ua.unix=function(){return Math.floor(this.valueOf()/1e3)},ua.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},ua.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},ua.year=Se,ua.isLeapYear=function(){return xe(this.year())},ua.weekYear=function(e){return na.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},ua.isoWeekYear=function(e){return na.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},ua.quarter=ua.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},ua.month=Re,ua.daysInMonth=function(){return Pe(this.year(),this.month())},ua.week=ua.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},ua.isoWeek=ua.isoWeeks=function(e){var t=Je(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},ua.weeksInYear=function(){var e=this.localeData()._week;return Ue(this.year(),e.dow,e.doy)},ua.isoWeeksInYear=function(){return Ue(this.year(),1,4)},ua.date=ra,ua.day=ua.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,"d")):t},ua.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},ua.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},ua.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},ua.hour=ua.hours=rt,ua.minute=ua.minutes=ia,ua.second=ua.seconds=oa,ua.millisecond=ua.milliseconds=la,ua.utcOffset=function(e,t,a){var n,i=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=It(oe,e)))return this}else Math.abs(e)<16&&!a&&(e*=60);return!this._isUTC&&t&&(n=zt(this)),this._offset=e,this._isUTC=!0,null!=n&&this.add(n,"m"),i!==e&&(!t||this._changeInProgress?Kt(this,Jt(e-i,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,r.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?i:zt(this)},ua.utc=function(e){return this.utcOffset(0,e)},ua.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(zt(this),"m")),this},ua.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=It(se,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},ua.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?St(e).utcOffset():0,(this.utcOffset()-e)%60==0)},ua.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},ua.isLocal=function(){return!!this.isValid()&&!this._isUTC},ua.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},ua.isUtc=Nt,ua.isUTC=Nt,ua.zoneAbbr=function(){return this._isUTC?"UTC":""},ua.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},ua.dates=w("dates accessor is deprecated. Use date instead.",ra),ua.months=w("months accessor is deprecated. Use month instead",Re),ua.years=w("years accessor is deprecated. Use year instead",Se),ua.zone=w("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),ua.isDSTShifted=w("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!o(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=xt(e))._a){var t=e._isUTC?c(e._a):St(e._a);this._isDSTShifted=this.isValid()&&b(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var ha=C.prototype;function ca(e,t,a,n){var r=ht(),i=c().set(n,t);return r[a](i,e)}function ma(e,t,a){if(d(e)&&(t=e,e=void 0),e=e||"",null!=t)return ca(e,t,a,"month");var n,r=[];for(n=0;n<12;n++)r[n]=ca(e,n,a,"month");return r}function fa(e,t,a,n){"boolean"==typeof e?(d(t)&&(a=t,t=void 0),t=t||""):(a=t=e,e=!1,d(t)&&(a=t,t=void 0),t=t||"");var r,i=ht(),s=e?i._week.dow:0;if(null!=a)return ca(t,(a+s)%7,n,"day");var o=[];for(r=0;r<7;r++)o[r]=ca(t,(r+s)%7,n,"day");return o}ha.calendar=function(e,t,a){var n=this._calendar[e]||this._calendar.sameElse;return H(n)?n.call(t,a):n},ha.longDateFormat=function(e){var t=this._longDateFormat[e],a=this._longDateFormat[e.toUpperCase()];return t||!a?t:(this._longDateFormat[e]=a.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])},ha.invalidDate=function(){return this._invalidDate},ha.ordinal=function(e){return this._ordinal.replace("%d",e)},ha.preparse=_a,ha.postformat=_a,ha.relativeTime=function(e,t,a,n){var r=this._relativeTime[a];return H(r)?r(e,t,a,n):r.replace(/%d/i,e)},ha.pastFuture=function(e,t){var a=this._relativeTime[e>0?"future":"past"];return H(a)?a(t):a.replace(/%s/i,t)},ha.set=function(e){var t,a;for(a in e)H(t=e[a])?this[a]=t:this["_"+a]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},ha.months=function(e,t){return e?i(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Oe).test(t)?"format":"standalone"][e.month()]:i(this._months)?this._months:this._months.standalone},ha.monthsShort=function(e,t){return e?i(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Oe.test(t)?"format":"standalone"][e.month()]:i(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},ha.monthsParse=function(e,t,a){var n,r,i;if(this._monthsParseExact)return(function(e,t,a){var n,r,i,s=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],n=0;n<12;++n)i=c([2e3,n]),this._shortMonthsParse[n]=this.monthsShort(i,"").toLocaleLowerCase(),this._longMonthsParse[n]=this.months(i,"").toLocaleLowerCase();return a?"MMM"===t?-1!==(r=Te.call(this._shortMonthsParse,s))?r:null:-1!==(r=Te.call(this._longMonthsParse,s))?r:null:"MMM"===t?-1!==(r=Te.call(this._shortMonthsParse,s))?r:-1!==(r=Te.call(this._longMonthsParse,s))?r:null:-1!==(r=Te.call(this._longMonthsParse,s))?r:-1!==(r=Te.call(this._shortMonthsParse,s))?r:null}).call(this,e,t,a);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),n=0;n<12;n++){if(r=c([2e3,n]),a&&!this._longMonthsParse[n]&&(this._longMonthsParse[n]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[n]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),a||this._monthsParse[n]||(i="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[n]=new RegExp(i.replace(".",""),"i")),a&&"MMMM"===t&&this._longMonthsParse[n].test(e))return n;if(a&&"MMM"===t&&this._shortMonthsParse[n].test(e))return n;if(!a&&this._monthsParse[n].test(e))return n}},ha.monthsRegex=function(e){return this._monthsParseExact?(_(this,"_monthsRegex")||ze.call(this),e?this._monthsStrictRegex:this._monthsRegex):(_(this,"_monthsRegex")||(this._monthsRegex=Ee),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},ha.monthsShortRegex=function(e){return this._monthsParseExact?(_(this,"_monthsRegex")||ze.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(_(this,"_monthsShortRegex")||(this._monthsShortRegex=Ie),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},ha.week=function(e){return Je(e,this._week.dow,this._week.doy).week},ha.firstDayOfYear=function(){return this._week.doy},ha.firstDayOfWeek=function(){return this._week.dow},ha.weekdays=function(e,t){return e?i(this._weekdays)?this._weekdays[e.day()]:this._weekdays[this._weekdays.isFormat.test(t)?"format":"standalone"][e.day()]:i(this._weekdays)?this._weekdays:this._weekdays.standalone},ha.weekdaysMin=function(e){return e?this._weekdaysMin[e.day()]:this._weekdaysMin},ha.weekdaysShort=function(e){return e?this._weekdaysShort[e.day()]:this._weekdaysShort},ha.weekdaysParse=function(e,t,a){var n,r,i;if(this._weekdaysParseExact)return(function(e,t,a){var n,r,i,s=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],n=0;n<7;++n)i=c([2e3,1]).day(n),this._minWeekdaysParse[n]=this.weekdaysMin(i,"").toLocaleLowerCase(),this._shortWeekdaysParse[n]=this.weekdaysShort(i,"").toLocaleLowerCase(),this._weekdaysParse[n]=this.weekdays(i,"").toLocaleLowerCase();return a?"dddd"===t?-1!==(r=Te.call(this._weekdaysParse,s))?r:null:"ddd"===t?-1!==(r=Te.call(this._shortWeekdaysParse,s))?r:null:-1!==(r=Te.call(this._minWeekdaysParse,s))?r:null:"dddd"===t?-1!==(r=Te.call(this._weekdaysParse,s))?r:-1!==(r=Te.call(this._shortWeekdaysParse,s))?r:-1!==(r=Te.call(this._minWeekdaysParse,s))?r:null:"ddd"===t?-1!==(r=Te.call(this._shortWeekdaysParse,s))?r:-1!==(r=Te.call(this._weekdaysParse,s))?r:-1!==(r=Te.call(this._minWeekdaysParse,s))?r:null:-1!==(r=Te.call(this._minWeekdaysParse,s))?r:-1!==(r=Te.call(this._weekdaysParse,s))?r:-1!==(r=Te.call(this._shortWeekdaysParse,s))?r:null}).call(this,e,t,a);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),n=0;n<7;n++){if(r=c([2e3,1]).day(n),a&&!this._fullWeekdaysParse[n]&&(this._fullWeekdaysParse[n]=new RegExp("^"+this.weekdays(r,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[n]=new RegExp("^"+this.weekdaysShort(r,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[n]=new RegExp("^"+this.weekdaysMin(r,"").replace(".",".?")+"$","i")),this._weekdaysParse[n]||(i="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[n]=new RegExp(i.replace(".",""),"i")),a&&"dddd"===t&&this._fullWeekdaysParse[n].test(e))return n;if(a&&"ddd"===t&&this._shortWeekdaysParse[n].test(e))return n;if(a&&"dd"===t&&this._minWeekdaysParse[n].test(e))return n;if(!a&&this._weekdaysParse[n].test(e))return n}},ha.weekdaysRegex=function(e){return this._weekdaysParseExact?(_(this,"_weekdaysRegex")||$e.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(_(this,"_weekdaysRegex")||(this._weekdaysRegex=Ze),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},ha.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(_(this,"_weekdaysRegex")||$e.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(_(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Qe),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},ha.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(_(this,"_weekdaysRegex")||$e.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(_(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Xe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},ha.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},ha.meridiem=function(e,t,a){return e>11?a?"pm":"PM":a?"am":"AM"},ut("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=w("moment.lang is deprecated. Use moment.locale instead.",ut),r.langData=w("moment.langData is deprecated. Use moment.localeData instead.",ht);var pa=Math.abs;function Ma(e,t,a,n){var r=Jt(t,a);return e._milliseconds+=n*r._milliseconds,e._days+=n*r._days,e._months+=n*r._months,e._bubble()}function ya(e){return e<0?Math.floor(e):Math.ceil(e)}function ga(e){return 4800*e/146097}function La(e){return 146097*e/4800}function va(e){return function(){return this.as(e)}}var Ya=va("ms"),ka=va("s"),ba=va("m"),Da=va("h"),wa=va("d"),xa=va("w"),Ta=va("M"),Sa=va("y");function Ha(e){return function(){return this.isValid()?this._data[e]:NaN}}var ja=Ha("milliseconds"),Ca=Ha("seconds"),Pa=Ha("minutes"),Oa=Ha("hours"),Aa=Ha("days"),Wa=Ha("months"),Fa=Ha("years"),Ra=Math.round,Ia={ss:44,s:45,m:45,h:22,d:26,M:11},Ea=Math.abs;function za(e){return(e>0)-(e<0)||+e}function Na(){if(!this.isValid())return this.localeData().invalidDate();var e,t,a=Ea(this._milliseconds)/1e3,n=Ea(this._days),r=Ea(this._months);t=Y((e=Y(a/60))/60),a%=60,e%=60;var i=Y(r/12),s=r%=12,o=n,d=t,l=e,u=a?a.toFixed(3).replace(/\.?0+$/,""):"",_=this.asSeconds();if(!_)return"P0D";var h=_<0?"-":"",c=za(this._months)!==za(_)?"-":"",m=za(this._days)!==za(_)?"-":"",f=za(this._milliseconds)!==za(_)?"-":"";return h+"P"+(i?c+i+"Y":"")+(s?c+s+"M":"")+(o?m+o+"D":"")+(d||l||u?"T":"")+(d?f+d+"H":"")+(l?f+l+"M":"")+(u?f+u+"S":"")}var Ba=Ot.prototype;return Ba.isValid=function(){return this._isValid},Ba.abs=function(){var e=this._data;return this._milliseconds=pa(this._milliseconds),this._days=pa(this._days),this._months=pa(this._months),e.milliseconds=pa(e.milliseconds),e.seconds=pa(e.seconds),e.minutes=pa(e.minutes),e.hours=pa(e.hours),e.months=pa(e.months),e.years=pa(e.years),this},Ba.add=function(e,t){return Ma(this,e,t,1)},Ba.subtract=function(e,t){return Ma(this,e,t,-1)},Ba.as=function(e){if(!this.isValid())return NaN;var t,a,n=this._milliseconds;if("month"===(e=A(e))||"year"===e)return a=this._months+ga(t=this._days+n/864e5),"month"===e?a:a/12;switch(t=this._days+Math.round(La(this._months)),e){case"week":return t/7+n/6048e5;case"day":return t+n/864e5;case"hour":return 24*t+n/36e5;case"minute":return 1440*t+n/6e4;case"second":return 86400*t+n/1e3;case"millisecond":return Math.floor(864e5*t)+n;default:throw new Error("Unknown unit "+e)}},Ba.asMilliseconds=Ya,Ba.asSeconds=ka,Ba.asMinutes=ba,Ba.asHours=Da,Ba.asDays=wa,Ba.asWeeks=xa,Ba.asMonths=Ta,Ba.asYears=Sa,Ba.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},Ba._bubble=function(){var e,t,a,n,r,i=this._milliseconds,s=this._days,o=this._months,d=this._data;return i>=0&&s>=0&&o>=0||i<=0&&s<=0&&o<=0||(i+=864e5*ya(La(o)+s),s=0,o=0),d.milliseconds=i%1e3,e=Y(i/1e3),d.seconds=e%60,t=Y(e/60),d.minutes=t%60,a=Y(t/60),d.hours=a%24,o+=r=Y(ga(s+=Y(a/24))),s-=ya(La(r)),n=Y(o/12),o%=12,d.days=s,d.months=o,d.years=n,this},Ba.clone=function(){return Jt(this)},Ba.get=function(e){return e=A(e),this.isValid()?this[e+"s"]():NaN},Ba.milliseconds=ja,Ba.seconds=Ca,Ba.minutes=Pa,Ba.hours=Oa,Ba.days=Aa,Ba.weeks=function(){return Y(this.days()/7)},Ba.months=Wa,Ba.years=Fa,Ba.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),a=function(e,t,a){var n=Jt(e).abs(),r=Ra(n.as("s")),i=Ra(n.as("m")),s=Ra(n.as("h")),o=Ra(n.as("d")),d=Ra(n.as("M")),l=Ra(n.as("y")),u=r<=Ia.ss&&["s",r]||r0,u[4]=a,(function(e,t,a,n,r){return r.relativeTime(t||1,!!a,e,n)}).apply(null,u)}(this,!e,t);return e&&(a=t.pastFuture(+this,a)),t.postformat(a)},Ba.toISOString=Na,Ba.toString=Na,Ba.toJSON=Na,Ba.locale=$t,Ba.localeData=ta,Ba.toIsoString=w("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Na),Ba.lang=ea,V("X",0,0,"unix"),V("x",0,0,"valueOf"),ue("x",ie),ue("X",/[+-]?\d+(\.\d{1,3})?/),me("X",function(e,t,a){a._d=new Date(1e3*parseFloat(e,10))}),me("x",function(e,t,a){a._d=new Date(k(e))}),r.version="2.22.1",t=St,r.fn=ua,r.min=function(){return Ct("isBefore",[].slice.call(arguments,0))},r.max=function(){return Ct("isAfter",[].slice.call(arguments,0))},r.now=function(){return Date.now?Date.now():+new Date},r.utc=c,r.unix=function(e){return St(1e3*e)},r.months=function(e,t){return ma(e,t,"months")},r.isDate=l,r.locale=ut,r.invalid=p,r.duration=Jt,r.isMoment=v,r.weekdays=function(e,t,a){return fa(e,t,a,"weekdays")},r.parseZone=function(){return St.apply(null,arguments).parseZone()},r.localeData=ht,r.isDuration=At,r.monthsShort=function(e,t){return ma(e,t,"monthsShort")},r.weekdaysMin=function(e,t,a){return fa(e,t,a,"weekdaysMin")},r.defineLocale=_t,r.updateLocale=function(e,t){if(null!=t){var a,n,r=it;null!=(n=lt(e))&&(r=n._config),(a=new C(t=j(r,t))).parentLocale=st[e],st[e]=a,ut(e)}else null!=st[e]&&(null!=st[e].parentLocale?st[e]=st[e].parentLocale:null!=st[e]&&delete st[e]);return st[e]},r.locales=function(){return x(st)},r.weekdaysShort=function(e,t,a){return fa(e,t,a,"weekdaysShort")},r.normalizeUnits=A,r.relativeTimeRounding=function(e){return void 0===e?Ra:"function"==typeof e&&(Ra=e,!0)},r.relativeTimeThreshold=function(e,t){return void 0!==Ia[e]&&(void 0===t?Ia[e]:(Ia[e]=t,"s"===e&&(Ia.ss=t-1),!0))},r.calendarFormat=function(e,t){var a=e.diff(t,"days",!0);return a<-6?"sameElse":a<-1?"lastWeek":a<0?"lastDay":a<1?"sameDay":a<2?"nextDay":a<7?"nextWeek":"sameElse"},r.prototype=ua,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:"YYYY-[W]WW",MONTH:"YYYY-MM"},r}()}).call(this,a("YuTi")(e))},x6pH:function(e,t,a){!function(e){"use strict";e.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(e){return 2===e?"\u05e9\u05e2\u05ea\u05d9\u05d9\u05dd":e+" \u05e9\u05e2\u05d5\u05ea"},d:"\u05d9\u05d5\u05dd",dd:function(e){return 2===e?"\u05d9\u05d5\u05de\u05d9\u05d9\u05dd":e+" \u05d9\u05de\u05d9\u05dd"},M:"\u05d7\u05d5\u05d3\u05e9",MM:function(e){return 2===e?"\u05d7\u05d5\u05d3\u05e9\u05d9\u05d9\u05dd":e+" \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd"},y:"\u05e9\u05e0\u05d4",yy:function(e){return 2===e?"\u05e9\u05e0\u05ea\u05d9\u05d9\u05dd":e%10==0&&10!==e?e+" \u05e9\u05e0\u05d4":e+" \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(e){return/^(\u05d0\u05d7\u05d4"\u05e6|\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05d1\u05e2\u05e8\u05d1)$/.test(e)},meridiem:function(e,t,a){return e<5?"\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8":e<10?"\u05d1\u05d1\u05d5\u05e7\u05e8":e<12?a?'\u05dc\u05e4\u05e0\u05d4"\u05e6':"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":e<18?a?'\u05d0\u05d7\u05d4"\u05e6':"\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":"\u05d1\u05e2\u05e8\u05d1"}})}(a("wd/R"))},x8uC:function(e,t,a){"use strict";var n=a("CDJp"),r=a("K2E3"),i=a("RDha");n._set("global",{tooltips:{enabled:!0,custom:null,mode:"nearest",position:"average",intersect:!0,backgroundColor:"rgba(0,0,0,0.8)",titleFontStyle:"bold",titleSpacing:2,titleMarginBottom:6,titleFontColor:"#fff",titleAlign:"left",bodySpacing:2,bodyFontColor:"#fff",bodyAlign:"left",footerFontStyle:"bold",footerSpacing:2,footerMarginTop:6,footerFontColor:"#fff",footerAlign:"left",yPadding:6,xPadding:6,caretPadding:2,caretSize:5,cornerRadius:6,multiKeyBackground:"#fff",displayColors:!0,borderColor:"rgba(0,0,0,0)",borderWidth:0,callbacks:{beforeTitle:i.noop,title:function(e,t){var a="",n=t.labels,r=n?n.length:0;if(e.length>0){var i=e[0];i.xLabel?a=i.xLabel:r>0&&i.indexn.width&&(r=n.width-t.width),r<0&&(r=0)),"top"===d?i+=l:i-="bottom"===d?t.height+l:t.height/2,"center"===d?"left"===o?r+=l:"right"===o&&(r-=l):"left"===o?r-=u:"right"===o&&(r+=u),{x:r,y:i}}(m,g=function(e,t){var a=e._chart.ctx,n=2*t.yPadding,r=0,s=t.body,o=s.reduce(function(e,t){return e+t.before.length+t.lines.length+t.after.length},0);o+=t.beforeBody.length+t.afterBody.length;var d=t.title.length,l=t.footer.length,u=t.titleFontSize,_=t.bodyFontSize,h=t.footerFontSize;n+=d*u,n+=d?(d-1)*t.titleSpacing:0,n+=d?t.titleMarginBottom:0,n+=o*_,n+=o?(o-1)*t.bodySpacing:0,n+=l?t.footerMarginTop:0,n+=l*h,n+=l?(l-1)*t.footerSpacing:0;var c=0,m=function(e){r=Math.max(r,a.measureText(e).width+c)};return a.font=i.fontString(u,t._titleFontStyle,t._titleFontFamily),i.each(t.title,m),a.font=i.fontString(_,t._bodyFontStyle,t._bodyFontFamily),i.each(t.beforeBody.concat(t.afterBody),m),c=t.displayColors?_+2:0,i.each(s,function(e){i.each(e.before,m),i.each(e.lines,m),i.each(e.after,m)}),c=0,a.font=i.fontString(h,t._footerFontStyle,t._footerFontFamily),i.each(t.footer,m),{width:r+=2*t.xPadding,height:n}}(this,m),M=function(e,t){var a,n,r,i,s,o=e._model,d=e._chart,l=e._chart.chartArea,u="center",_="center";o.yd.height-t.height&&(_="bottom");var h=(l.left+l.right)/2,c=(l.top+l.bottom)/2;"center"===_?(a=function(e){return e<=h},n=function(e){return e>h}):(a=function(e){return e<=t.width/2},n=function(e){return e>=d.width-t.width/2}),r=function(e){return e+t.width+o.caretSize+o.caretPadding>d.width},i=function(e){return e-t.width-o.caretSize-o.caretPadding<0},s=function(e){return e<=c?"top":"bottom"},a(o.x)?(u="left",r(o.x)&&(u="center",_=s(o.y))):n(o.x)&&(u="right",i(o.x)&&(u="center",_=s(o.y)));var m=e._options;return{xAlign:m.xAlign?m.xAlign:u,yAlign:m.yAlign?m.yAlign:_}}(this,g),_._chart)}else m.opacity=0;return m.xAlign=M.xAlign,m.yAlign=M.yAlign,m.x=y.x,m.y=y.y,m.width=g.width,m.height=g.height,m.caretX=L.x,m.caretY=L.y,_._model=m,t&&h.custom&&h.custom.call(_,m),_},drawCaret:function(e,t){var a=this._chart.ctx,n=this.getCaretPosition(e,t,this._view);a.lineTo(n.x1,n.y1),a.lineTo(n.x2,n.y2),a.lineTo(n.x3,n.y3)},getCaretPosition:function(e,t,a){var n,r,i,s,o,d,l=a.caretSize,u=a.cornerRadius,_=a.xAlign,h=a.yAlign,c=e.x,m=e.y,f=t.width,p=t.height;if("center"===h)o=m+p/2,"left"===_?(r=(n=c)-l,i=n,s=o+l,d=o-l):(r=(n=c+f)+l,i=n,s=o-l,d=o+l);else if("left"===_?(n=(r=c+u+l)-l,i=r+l):"right"===_?(n=(r=c+f-u-l)-l,i=r+l):(n=(r=a.caretX)-l,i=r+l),"top"===h)o=(s=m)-l,d=s;else{o=(s=m+p)+l,d=s;var M=i;i=n,n=M}return{x1:n,x2:r,x3:i,y1:s,y2:o,y3:d}},drawTitle:function(e,a,n,r){var s=a.title;if(s.length){n.textAlign=a._titleAlign,n.textBaseline="top";var o,d,l=a.titleFontSize,u=a.titleSpacing;for(n.fillStyle=t(a.titleFontColor,r),n.font=i.fontString(l,a._titleFontStyle,a._titleFontFamily),o=0,d=s.length;o0&&n.stroke()},draw:function(){var e=this._chart.ctx,t=this._view;if(0!==t.opacity){var a={width:t.width,height:t.height},n={x:t.x,y:t.y},r=Math.abs(t.opacity<.001)?0:t.opacity;this._options.enabled&&(t.title.length||t.beforeBody.length||t.body.length||t.afterBody.length||t.footer.length)&&(this.drawBackground(n,t,e,a,r),n.x+=t.xPadding,n.y+=t.yPadding,this.drawTitle(n,t,e,r),this.drawBody(n,t,e,r),this.drawFooter(n,t,e,r))}},handleEvent:function(e){var t,a=this,n=a._options;return a._lastActive=a._lastActive||[],a._active="mouseout"===e.type?[]:a._chart.getElementsAtEventForMode(e,n.mode,n),(t=!i.arrayEquals(a._active,a._lastActive))&&(a._lastActive=a._active,(n.enabled||n.custom)&&(a._eventPosition={x:e.x,y:e.y},a.update(!0),a.pivot())),t}}),e.Tooltip.positioners={average:function(e){if(!e.length)return!1;var t,a,n=0,r=0,i=0;for(t=0,a=e.length;t11?a?"d'o":"D'O":a?"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:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},z3Vd:function(e,t,a){!function(e){"use strict";var t="pagh_wa\u2019_cha\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");function a(e,a,n,r){var i=function(e){var a=Math.floor(e%1e3/100),n=Math.floor(e%100/10),r=e%10,i="";return a>0&&(i+=t[a]+"vatlh"),n>0&&(i+=(""!==i?" ":"")+t[n]+"maH"),r>0&&(i+=(""!==i?" ":"")+t[r]),""===i?"pagh":i}(e);switch(n){case"ss":return i+" lup";case"mm":return i+" tup";case"hh":return i+" rep";case"dd":return i+" jaj";case"MM":return i+" jar";case"yy":return i+" DIS"}}e.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(e){var t=e;return-1!==e.indexOf("jaj")?t.slice(0,-3)+"leS":-1!==e.indexOf("jar")?t.slice(0,-3)+"waQ":-1!==e.indexOf("DIS")?t.slice(0,-3)+"nem":t+" pIq"},past:function(e){var t=e;return-1!==e.indexOf("jaj")?t.slice(0,-3)+"Hu\u2019":-1!==e.indexOf("jar")?t.slice(0,-3)+"wen":-1!==e.indexOf("DIS")?t.slice(0,-3)+"ben":t+" ret"},s:"puS lup",ss:a,m:"wa\u2019 tup",mm:a,h:"wa\u2019 rep",hh:a,d:"wa\u2019 jaj",dd:a,M:"wa\u2019 jar",MM:a,y:"wa\u2019 DIS",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(a("wd/R"))},zx6S:function(e,t,a){!function(e){"use strict";var t={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,a,n){var r=t.words[n];return 1===n.length?a?r[0]:r[1]:e+" "+t.correctGrammaticalCase(e,r)}};e.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:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(a("wd/R"))}}]); \ No newline at end of file diff --git a/dist/8.8ff81c58b04baca19ff5.js b/dist/8.8ff81c58b04baca19ff5.js deleted file mode 100644 index c69632a00..000000000 --- a/dist/8.8ff81c58b04baca19ff5.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[8],{UE8e:function(l,n,u){"use strict";u.r(n);var e=u("CcnG"),t=function(){},i=u("4lDY"),a=u("hEq5"),s=u("o1U6"),d=u("e5OV"),o=u("Ip0R"),c=u("q7oS"),r=e["\u0275crt"]({encapsulation:2,styles:[],data:{}});function m(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,0,"li",[],[[8,"id",0],[2,"active",null]],[[null,"click"]],function(l,n,u){var e=!0,t=l.component;return"click"===n&&(e=!1!==t.cycleToSelected(l.context.$implicit.id,t.getSlideEventDirection(t.activeId,l.context.$implicit.id))&&e),e},null,null))],null,function(l,n){l(n,0,0,n.context.$implicit.id,n.context.$implicit.id===n.component.activeId)})}function p(l){return e["\u0275vid"](0,[(l()(),e["\u0275and"](0,null,null,0))],null,null)}function f(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,2,"div",[["class","carousel-item"]],[[2,"active",null]],null,null,null,null)),(l()(),e["\u0275and"](16777216,null,null,1,null,p)),e["\u0275did"](2,540672,null,0,o.p,[e.ViewContainerRef],{ngTemplateOutlet:[0,"ngTemplateOutlet"]},null)],function(l,n){l(n,2,0,n.context.$implicit.tplRef)},function(l,n){l(n,0,0,n.context.$implicit.id===n.component.activeId)})}function g(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,2,"ol",[["class","carousel-indicators"]],null,null,null,null,null)),(l()(),e["\u0275and"](16777216,null,null,1,null,m)),e["\u0275did"](2,802816,null,0,o.l,[e.ViewContainerRef,e.TemplateRef,e.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(l()(),e["\u0275eld"](3,0,null,null,2,"div",[["class","carousel-inner"]],null,null,null,null,null)),(l()(),e["\u0275and"](16777216,null,null,1,null,f)),e["\u0275did"](5,802816,null,0,o.l,[e.ViewContainerRef,e.TemplateRef,e.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(l()(),e["\u0275eld"](6,0,null,null,3,"a",[["class","carousel-control-prev"],["role","button"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.cycleToPrev()&&e),e},null,null)),(l()(),e["\u0275eld"](7,0,null,null,0,"span",[["aria-hidden","true"],["class","carousel-control-prev-icon"]],null,null,null,null,null)),(l()(),e["\u0275eld"](8,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Previous"])),(l()(),e["\u0275eld"](10,0,null,null,3,"a",[["class","carousel-control-next"],["role","button"]],null,[[null,"click"]],function(l,n,u){var e=!0;return"click"===n&&(e=!1!==l.component.cycleToNext()&&e),e},null,null)),(l()(),e["\u0275eld"](11,0,null,null,0,"span",[["aria-hidden","true"],["class","carousel-control-next-icon"]],null,null,null,null,null)),(l()(),e["\u0275eld"](12,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Next"]))],function(l,n){var u=n.component;l(n,2,0,u.slides),l(n,5,0,u.slides)},null)}var b=function(){function l(){this.event=new e.EventEmitter}return l.prototype.ngOnInit=function(){},l}(),h=e["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function v(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,15,"div",[],[[8,"className",0]],null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,8,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](2,0,null,null,7,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](3,0,null,null,1,"div",[["class","col col-xs-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](4,0,null,null,0,"i",[],[[8,"className",0]],null,null,null,null)),(l()(),e["\u0275eld"](5,0,null,null,4,"div",[["class","col col-xs-9 text-right"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,1,"div",[["class","d-block huge"]],null,null,null,null,null)),(l()(),e["\u0275ted"](7,null,["",""])),(l()(),e["\u0275eld"](8,0,null,null,1,"div",[["class","d-block"]],null,null,null,null,null)),(l()(),e["\u0275ted"](9,null,["",""])),(l()(),e["\u0275eld"](10,0,null,null,5,"div",[["class","card-footer"]],null,null,null,null,null)),(l()(),e["\u0275eld"](11,0,null,null,1,"span",[["class","float-left"]],null,null,null,null,null)),(l()(),e["\u0275ted"](12,null,["View Details ",""])),(l()(),e["\u0275eld"](13,0,null,null,2,"a",[["class","float-right card-inverse"],["href","javascript:void(0)"]],null,null,null,null,null)),(l()(),e["\u0275eld"](14,0,null,null,1,"span",[],null,null,null,null,null)),(l()(),e["\u0275eld"](15,0,null,null,0,"i",[["class","fa fa-arrow-circle-right"]],null,null,null,null,null))],null,function(l,n){var u=n.component;l(n,0,0,e["\u0275inlineInterpolate"](1,"card text-white bg-",u.bgClass,"")),l(n,4,0,e["\u0275inlineInterpolate"](1,"fa ",u.icon," fa-5x")),l(n,7,0,u.count),l(n,9,0,u.label),l(n,12,0,u.data)})}var x=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),C=e["\u0275crt"]({encapsulation:0,styles:[['.timeline[_ngcontent-%COMP%]{position:relative;padding:20px 0;list-style:none}.timeline[_ngcontent-%COMP%]:before{content:" ";position:absolute;top:0;bottom:0;left:50%;width:3px;margin-left:-1.5px;background-color:#eee}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]{position:relative;margin-bottom:20px}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:after, .timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:before{content:" ";display:table}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:after{clear:both}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]{float:left;position:relative;width:46%;padding:20px;border:1px solid #d4d4d4;border-radius:2px;box-shadow:0 1px 6px rgba(0,0,0,.175)}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]:before{content:" ";display:inline-block;position:absolute;top:26px;right:-15px;border-top:15px solid transparent;border-right:0 solid #ccc;border-bottom:15px solid transparent;border-left:15px solid #ccc}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]:after{content:" ";display:inline-block;position:absolute;top:27px;right:-14px;border-top:14px solid transparent;border-right:0 solid #fff;border-bottom:14px solid transparent;border-left:14px solid #fff}.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-badge[_ngcontent-%COMP%]{z-index:100;position:absolute;top:16px;left:50%;width:50px;height:50px;margin-left:-25px;border-radius:50%;text-align:center;font-size:1.4em;line-height:50px;color:#fff;background-color:#999}.timeline[_ngcontent-%COMP%] > li.timeline-inverted[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]{float:right}.timeline[_ngcontent-%COMP%] > li.timeline-inverted[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]:before{right:auto;left:-15px;border-right-width:15px;border-left-width:0}.timeline[_ngcontent-%COMP%] > li.timeline-inverted[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]:after{right:auto;left:-14px;border-right-width:14px;border-left-width:0}.timeline-badge.primary[_ngcontent-%COMP%]{background-color:#2e6da4!important}.timeline-badge.success[_ngcontent-%COMP%]{background-color:#3f903f!important}.timeline-badge.warning[_ngcontent-%COMP%]{background-color:#f0ad4e!important}.timeline-badge.danger[_ngcontent-%COMP%]{background-color:#d9534f!important}.timeline-badge.info[_ngcontent-%COMP%]{background-color:#5bc0de!important}.timeline-title[_ngcontent-%COMP%]{margin-top:0;color:inherit}.timeline-body[_ngcontent-%COMP%] > p[_ngcontent-%COMP%], .timeline-body[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{margin-bottom:0}.timeline-body[_ngcontent-%COMP%] > p[_ngcontent-%COMP%] + p[_ngcontent-%COMP%]{margin-top:5px}@media (max-width:767px){ul.timeline[_ngcontent-%COMP%]:before{left:40px}ul.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]{width:calc(100% - 90px);width:-webkit-calc(100% - 90px);float:right}ul.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-badge[_ngcontent-%COMP%]{top:16px;left:15px;margin-left:0}ul.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]:before{right:auto;left:-15px;border-right-width:15px;border-left-width:0}ul.timeline[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > .timeline-panel[_ngcontent-%COMP%]:after{right:auto;left:-14px;border-right-width:14px;border-left-width:0}}']],data:{}});function w(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,92,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,91,"ul",[["class","timeline"]],null,null,null,null,null)),(l()(),e["\u0275eld"](2,0,null,null,13,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](3,0,null,null,1,"div",[["class","timeline-badge"]],null,null,null,null,null)),(l()(),e["\u0275eld"](4,0,null,null,0,"i",[["class","fa fa-check"]],null,null,null,null,null)),(l()(),e["\u0275eld"](5,0,null,null,10,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,6,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](7,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](9,0,null,null,3,"p",[],null,null,null,null,null)),(l()(),e["\u0275eld"](10,0,null,null,2,"small",[["class","text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](11,0,null,null,0,"i",[["class","fa fa-clock-o"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 11 hours ago via Twitter"])),(l()(),e["\u0275eld"](13,0,null,null,2,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](14,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero laboriosam dolor perspiciatis omnis exercitationem. Beatae, officia pariatur? Est cum veniam excepturi. Maiores praesentium, porro voluptas suscipit facere rem dicta, debitis."])),(l()(),e["\u0275eld"](16,0,null,null,11,"li",[["class","timeline-inverted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](17,0,null,null,1,"div",[["class","timeline-badge warning"]],null,null,null,null,null)),(l()(),e["\u0275eld"](18,0,null,null,0,"i",[["class","fa fa-credit-card"]],null,null,null,null,null)),(l()(),e["\u0275eld"](19,0,null,null,8,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](20,0,null,null,2,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](21,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](23,0,null,null,4,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](24,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Autem dolorem quibusdam, tenetur commodi provident cumque magni voluptatem libero, quis rerum. Fugiat esse debitis optio, tempore. Animi officiis alias, officia repellendus."])),(l()(),e["\u0275eld"](26,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium maiores odit qui est tempora eos, nostrum provident explicabo dignissimos debitis vel! Adipisci eius voluptates, ad aut recusandae minus eaque facere."])),(l()(),e["\u0275eld"](28,0,null,null,9,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](29,0,null,null,1,"div",[["class","timeline-badge danger"]],null,null,null,null,null)),(l()(),e["\u0275eld"](30,0,null,null,0,"i",[["class","fa fa-bomb"]],null,null,null,null,null)),(l()(),e["\u0275eld"](31,0,null,null,6,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](32,0,null,null,2,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](33,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](35,0,null,null,2,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](36,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus numquam facilis enim eaque, tenetur nam id qui vel velit similique nihil iure molestias aliquam, voluptatem totam quaerat, magni commodi quisquam."])),(l()(),e["\u0275eld"](38,0,null,null,7,"li",[["class","timeline-inverted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](39,0,null,null,6,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](40,0,null,null,2,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](41,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](43,0,null,null,2,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](44,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptates est quaerat asperiores sapiente, eligendi, nihil. Itaque quos, alias sapiente rerum quas odit! Aperiam officiis quidem delectus libero, omnis ut debitis!"])),(l()(),e["\u0275eld"](46,0,null,null,28,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](47,0,null,null,1,"div",[["class","timeline-badge info"]],null,null,null,null,null)),(l()(),e["\u0275eld"](48,0,null,null,0,"i",[["class","fa fa-save"]],null,null,null,null,null)),(l()(),e["\u0275eld"](49,0,null,null,25,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](50,0,null,null,2,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](51,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](53,0,null,null,21,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](54,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis minus modi quam ipsum alias at est molestiae excepturi delectus nesciunt, quibusdam debitis amet, beatae consequuntur impedit nulla qui! Laborum, atque."])),(l()(),e["\u0275eld"](56,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](57,0,null,null,17,"div",[["class","btn-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](58,0,null,null,2,"button",[["class","btn btn-primary btn-sm dropdown-toggle"],["data-toggle","dropdown"],["type","button"]],null,null,null,null,null)),(l()(),e["\u0275eld"](59,0,null,null,0,"i",[["class","fa fa-gear"]],null,null,null,null,null)),(l()(),e["\u0275eld"](60,0,null,null,0,"span",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](61,0,null,null,13,"ul",[["class","dropdown-menu"],["role","menu"]],null,null,null,null,null)),(l()(),e["\u0275eld"](62,0,null,null,2,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](63,0,null,null,1,"a",[["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Action"])),(l()(),e["\u0275eld"](65,0,null,null,2,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](66,0,null,null,1,"a",[["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Another action"])),(l()(),e["\u0275eld"](68,0,null,null,2,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](69,0,null,null,1,"a",[["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Something else here"])),(l()(),e["\u0275eld"](71,0,null,null,0,"li",[["class","divider"]],null,null,null,null,null)),(l()(),e["\u0275eld"](72,0,null,null,2,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](73,0,null,null,1,"a",[["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Separated link"])),(l()(),e["\u0275eld"](75,0,null,null,7,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](76,0,null,null,6,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](77,0,null,null,2,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](78,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](80,0,null,null,2,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](81,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi fuga odio quibusdam. Iure expedita, incidunt unde quis nam! Quod, quisquam. Officia quam qui adipisci quas consequuntur nostrum sequi. Consequuntur, commodi."])),(l()(),e["\u0275eld"](83,0,null,null,9,"li",[["class","timeline-inverted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](84,0,null,null,1,"div",[["class","timeline-badge success"]],null,null,null,null,null)),(l()(),e["\u0275eld"](85,0,null,null,0,"i",[["class","fa fa-graduation-cap"]],null,null,null,null,null)),(l()(),e["\u0275eld"](86,0,null,null,6,"div",[["class","timeline-panel"]],null,null,null,null,null)),(l()(),e["\u0275eld"](87,0,null,null,2,"div",[["class","timeline-heading"]],null,null,null,null,null)),(l()(),e["\u0275eld"](88,0,null,null,1,"h4",[["class","timeline-title"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor"])),(l()(),e["\u0275eld"](90,0,null,null,2,"div",[["class","timeline-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](91,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt obcaecati, quaerat tempore officia voluptas debitis consectetur culpa amet, accusamus dolorum fugiat, animi dicta aperiam, enim incidunt quisquam maxime neque eaque."]))],null,null)}var y=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),O=e["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function P(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,57,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,54,"div",[["class","list-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](2,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](3,0,null,null,0,"i",[["class","fa fa-comment fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" New Comment "])),(l()(),e["\u0275eld"](5,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["4 minutes ago"])),(l()(),e["\u0275eld"](8,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](9,0,null,null,0,"i",[["class","fa fa-twitter fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 3 New Followers "])),(l()(),e["\u0275eld"](11,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](12,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["12 minutes ago"])),(l()(),e["\u0275eld"](14,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](15,0,null,null,0,"i",[["class","fa fa-envelope fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Message Sent "])),(l()(),e["\u0275eld"](17,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](18,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["27 minutes ago"])),(l()(),e["\u0275eld"](20,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](21,0,null,null,0,"i",[["class","fa fa-tasks fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" New Task "])),(l()(),e["\u0275eld"](23,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](24,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["43 minutes ago"])),(l()(),e["\u0275eld"](26,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](27,0,null,null,0,"i",[["class","fa fa-upload fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Server Rebooted "])),(l()(),e["\u0275eld"](29,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](30,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["11:32 AM"])),(l()(),e["\u0275eld"](32,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](33,0,null,null,0,"i",[["class","fa fa-bolt fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Server Crashed! "])),(l()(),e["\u0275eld"](35,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](36,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["11:13 AM"])),(l()(),e["\u0275eld"](38,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](39,0,null,null,0,"i",[["class","fa fa-warning fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Server Not Responding "])),(l()(),e["\u0275eld"](41,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](42,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["10:57 AM"])),(l()(),e["\u0275eld"](44,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](45,0,null,null,0,"i",[["class","fa fa-shopping-cart fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" New Order Placed "])),(l()(),e["\u0275eld"](47,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](48,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["9:49 AM"])),(l()(),e["\u0275eld"](50,0,null,null,5,"a",[["class","list-group-item clearfix d-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](51,0,null,null,0,"i",[["class","fa fa-money fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Payment Received "])),(l()(),e["\u0275eld"](53,0,null,null,2,"span",[["class","float-right text-muted small"]],null,null,null,null,null)),(l()(),e["\u0275eld"](54,0,null,null,1,"em",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Yesterday"])),(l()(),e["\u0275eld"](56,0,null,null,1,"a",[["class","btn btn-default btn-block"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["View All Alerts"]))],null,null)}var M=function(){function l(){}return l.prototype.ngOnInit=function(){},l}(),_=e["\u0275crt"]({encapsulation:0,styles:[[".chat-panel[_ngcontent-%COMP%] .chat-dropdown[_ngcontent-%COMP%]{margin-top:-3px}.chat-panel[_ngcontent-%COMP%] .chat[_ngcontent-%COMP%]{height:350px;overflow-y:scroll;margin:0;padding:0;list-style:none}.chat-panel[_ngcontent-%COMP%] .chat[_ngcontent-%COMP%] .left[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{margin-right:15px}.chat-panel[_ngcontent-%COMP%] .chat[_ngcontent-%COMP%] .right[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{margin-left:15px}.chat-panel[_ngcontent-%COMP%] .chat[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-bottom:10px;margin-right:15px;padding-bottom:5px;border-bottom:1px dotted #999}.chat-panel[_ngcontent-%COMP%] .card-footer[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{padding:3px}"]],data:{}});function k(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,89,"div",[["class","chat-panel card card-default"]],null,null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,32,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](2,0,null,null,0,"i",[["class","fa fa-comments fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Chat "])),(l()(),e["\u0275eld"](4,0,null,null,29,"div",[["class"," pull-right"],["ngbDropdown",""]],null,null,null,null,null)),(l()(),e["\u0275eld"](5,0,null,null,1,"button",[["class","btn btn-secondary btn-sm"],["ngbDropdownToggle",""]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,0,"span",[["class","caret"]],null,null,null,null,null)),(l()(),e["\u0275eld"](7,0,null,null,26,"ul",[["class","dropdown-menu dropdown-menu-right"]],null,null,null,null,null)),(l()(),e["\u0275eld"](8,0,null,null,3,"li",[["role","menuitem"]],null,null,null,null,null)),(l()(),e["\u0275eld"](9,0,null,null,2,"a",[["class","dropdown-item"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](10,0,null,null,0,"i",[["class","fa fa-refresh fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Refresh"])),(l()(),e["\u0275eld"](12,0,null,null,3,"li",[["role","menuitem"]],null,null,null,null,null)),(l()(),e["\u0275eld"](13,0,null,null,2,"a",[["class","dropdown-item"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](14,0,null,null,0,"i",[["class","fa fa-check-circle fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Available"])),(l()(),e["\u0275eld"](16,0,null,null,3,"li",[["role","menuitem"]],null,null,null,null,null)),(l()(),e["\u0275eld"](17,0,null,null,2,"a",[["class","dropdown-item"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](18,0,null,null,0,"i",[["class","fa fa-times fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Busy"])),(l()(),e["\u0275eld"](20,0,null,null,0,"li",[["class","divider dropdown-divider"]],null,null,null,null,null)),(l()(),e["\u0275eld"](21,0,null,null,3,"li",[["role","menuitem"]],null,null,null,null,null)),(l()(),e["\u0275eld"](22,0,null,null,2,"a",[["class","dropdown-item"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](23,0,null,null,0,"i",[["class","fa fa-times fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Busy "])),(l()(),e["\u0275eld"](25,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](26,0,null,null,2,"a",[["class","dropdown-item"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](27,0,null,null,0,"i",[["class","fa fa-clock-o fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Away "])),(l()(),e["\u0275eld"](29,0,null,null,0,"li",[["class","divider"]],null,null,null,null,null)),(l()(),e["\u0275eld"](30,0,null,null,3,"li",[],null,null,null,null,null)),(l()(),e["\u0275eld"](31,0,null,null,2,"a",[["class","dropdown-item"],["href","#"]],null,null,null,null,null)),(l()(),e["\u0275eld"](32,0,null,null,0,"i",[["class","fa fa-sign-out fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Sign Out "])),(l()(),e["\u0275eld"](34,0,null,null,49,"div",[["class","card-body"]],null,null,null,null,null)),(l()(),e["\u0275eld"](35,0,null,null,48,"ul",[["class","chat"]],null,null,null,null,null)),(l()(),e["\u0275eld"](36,0,null,null,11,"li",[["class","left clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](37,0,null,null,1,"span",[["class","chat-img pull-left"]],null,null,null,null,null)),(l()(),e["\u0275eld"](38,0,null,null,0,"img",[["alt","User Avatar"],["class","img-circle"],["src","http://placehold.it/50/55C1E7/fff"]],null,null,null,null,null)),(l()(),e["\u0275eld"](39,0,null,null,8,"div",[["class","chat-body clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](40,0,null,null,5,"div",[["class","header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](41,0,null,null,1,"strong",[["class","primary-font"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jack Sparrow"])),(l()(),e["\u0275eld"](43,0,null,null,2,"small",[["class","pull-right text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](44,0,null,null,0,"i",[["class","fa fa-clock-o fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 12 mins ago "])),(l()(),e["\u0275eld"](46,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. "])),(l()(),e["\u0275eld"](48,0,null,null,11,"li",[["class","right clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](49,0,null,null,1,"span",[["class","chat-img pull-right"]],null,null,null,null,null)),(l()(),e["\u0275eld"](50,0,null,null,0,"img",[["alt","User Avatar"],["class","img-circle"],["src","http://placehold.it/50/FA6F57/fff"]],null,null,null,null,null)),(l()(),e["\u0275eld"](51,0,null,null,8,"div",[["class","chat-body clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](52,0,null,null,5,"div",[["class","header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](53,0,null,null,2,"small",[["class"," text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](54,0,null,null,0,"i",[["class","fa fa-clock-o fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 13 mins ago "])),(l()(),e["\u0275eld"](56,0,null,null,1,"strong",[["class","pull-right primary-font"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Bhaumik Patel"])),(l()(),e["\u0275eld"](58,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. "])),(l()(),e["\u0275eld"](60,0,null,null,11,"li",[["class","left clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](61,0,null,null,1,"span",[["class","chat-img pull-left"]],null,null,null,null,null)),(l()(),e["\u0275eld"](62,0,null,null,0,"img",[["alt","User Avatar"],["class","img-circle"],["src","http://placehold.it/50/55C1E7/fff"]],null,null,null,null,null)),(l()(),e["\u0275eld"](63,0,null,null,8,"div",[["class","chat-body clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](64,0,null,null,5,"div",[["class","header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](65,0,null,null,1,"strong",[["class","primary-font"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Jack Sparrow"])),(l()(),e["\u0275eld"](67,0,null,null,2,"small",[["class","pull-right text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](68,0,null,null,0,"i",[["class","fa fa-clock-o fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 14 mins ago "])),(l()(),e["\u0275eld"](70,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. "])),(l()(),e["\u0275eld"](72,0,null,null,11,"li",[["class","right clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](73,0,null,null,1,"span",[["class","chat-img pull-right"]],null,null,null,null,null)),(l()(),e["\u0275eld"](74,0,null,null,0,"img",[["alt","User Avatar"],["class","img-circle"],["src","http://placehold.it/50/FA6F57/fff"]],null,null,null,null,null)),(l()(),e["\u0275eld"](75,0,null,null,8,"div",[["class","chat-body clearfix"]],null,null,null,null,null)),(l()(),e["\u0275eld"](76,0,null,null,5,"div",[["class","header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](77,0,null,null,2,"small",[["class"," text-muted"]],null,null,null,null,null)),(l()(),e["\u0275eld"](78,0,null,null,0,"i",[["class","fa fa-clock-o fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" 15 mins ago "])),(l()(),e["\u0275eld"](80,0,null,null,1,"strong",[["class","pull-right primary-font"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Bhaumik Patel"])),(l()(),e["\u0275eld"](82,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. "])),(l()(),e["\u0275eld"](84,0,null,null,5,"div",[["class","card-footer"]],null,null,null,null,null)),(l()(),e["\u0275eld"](85,0,null,null,4,"div",[["class","input-group"]],null,null,null,null,null)),(l()(),e["\u0275eld"](86,0,null,null,0,"input",[["class","form-control input-sm"],["id","btn-input"],["placeholder","Type your message here..."],["type","text"]],null,null,null,null,null)),(l()(),e["\u0275eld"](87,0,null,null,2,"span",[["class","input-group-btn"]],null,null,null,null,null)),(l()(),e["\u0275eld"](88,0,null,null,1,"button",[["class","btn btn-warning btn-sm"],["id","btn-chat"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Send "]))],null,null)}var q=function(){function l(){this.alerts=[],this.sliders=[],this.sliders.push({imagePath:"assets/images/slider1.jpg",label:"First slide label",text:"Nulla vitae elit libero, a pharetra augue mollis interdum."},{imagePath:"assets/images/slider2.jpg",label:"Second slide label",text:"Lorem ipsum dolor sit amet, consectetur adipiscing elit."},{imagePath:"assets/images/slider3.jpg",label:"Third slide label",text:"Praesent commodo cursus magna, vel scelerisque nisl consectetur."}),this.alerts.push({id:1,type:"success",message:"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n Voluptates est animi quibusdam praesentium quam, et perspiciatis,\n consectetur velit culpa molestias dignissimos\n voluptatum veritatis quod aliquam! Rerum placeat necessitatibus, vitae dolorum"},{id:2,type:"warning",message:"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n Voluptates est animi quibusdam praesentium quam, et perspiciatis,\n consectetur velit culpa molestias dignissimos\n voluptatum veritatis quod aliquam! Rerum placeat necessitatibus, vitae dolorum"})}return l.prototype.ngOnInit=function(){},l.prototype.closeAlert=function(l){var n=this.alerts.indexOf(l);this.alerts.splice(n,1)},l}(),L=e["\u0275crt"]({encapsulation:0,styles:[[""]],data:{animation:[{type:7,name:"routerTransition",definitions:[{type:0,name:"void",styles:{type:6,styles:{},offset:null},options:void 0},{type:0,name:"*",styles:{type:6,styles:{},offset:null},options:void 0},{type:1,expr:":enter",animation:[{type:6,styles:{transform:"translateY(100%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(0%)"},offset:null},timings:"0.5s ease-in-out"}],options:null},{type:1,expr:":leave",animation:[{type:6,styles:{transform:"translateY(0%)"},offset:null},{type:4,styles:{type:6,styles:{transform:"translateY(-100%)"},offset:null},timings:"0.5s ease-in-out"}],options:null}],options:{}}]}});function R(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,0,"img",[["alt","Random first slide"],["class","img-fluid mx-auto d-block"],["width","100%"]],[[8,"src",4]],null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,4,"div",[["class","carousel-caption"]],null,null,null,null,null)),(l()(),e["\u0275eld"](2,0,null,null,1,"h3",[],null,null,null,null,null)),(l()(),e["\u0275ted"](3,null,["",""])),(l()(),e["\u0275eld"](4,0,null,null,1,"p",[],null,null,null,null,null)),(l()(),e["\u0275ted"](5,null,["",""]))],null,function(l,n){l(n,0,0,n.parent.context.$implicit.imagePath),l(n,3,0,n.parent.context.$implicit.label),l(n,5,0,n.parent.context.$implicit.text)})}function A(l){return e["\u0275vid"](0,[(l()(),e["\u0275and"](0,null,null,1,null,R)),e["\u0275did"](1,16384,[[1,4]],0,a.b,[e.TemplateRef],null,null)],null,null)}function F(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,2,"ngb-alert",[],null,[[null,"close"]],function(l,n,u){var e=!0;return"close"===n&&(e=!1!==l.component.closeAlert(l.context.$implicit)&&e),e},i.c,i.b)),e["\u0275did"](1,49152,null,0,s.a,[d.a],{type:[0,"type"]},{close:"close"}),(l()(),e["\u0275ted"](2,0,["",""]))],function(l,n){l(n,1,0,n.context.$implicit.type)},function(l,n){l(n,2,0,n.context.$implicit.message)})}function I(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,46,"div",[],[[24,"@routerTransition",0]],null,null,null,null)),(l()(),e["\u0275eld"](1,0,null,null,3,"h2",[["class","text-muted"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Dashboard "])),(l()(),e["\u0275eld"](3,0,null,null,1,"small",[],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,["Statistics Overview"])),(l()(),e["\u0275eld"](5,0,null,null,6,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](6,0,null,null,5,"div",[["class","col-md-12"]],null,null,null,null,null)),(l()(),e["\u0275eld"](7,0,null,null,4,"ngb-carousel",[["class","carousel slide"],["tabIndex","0"]],[[4,"display",null]],[[null,"mouseenter"],[null,"mouseleave"],[null,"keydown.arrowLeft"],[null,"keydown.arrowRight"]],function(l,n,u){var t=!0;return"mouseenter"===n&&(t=!1!==e["\u0275nov"](l,8).pause()&&t),"mouseleave"===n&&(t=!1!==e["\u0275nov"](l,8).cycle()&&t),"keydown.arrowLeft"===n&&(t=!1!==e["\u0275nov"](l,8).keyPrev()&&t),"keydown.arrowRight"===n&&(t=!1!==e["\u0275nov"](l,8).keyNext()&&t),t},g,r)),e["\u0275did"](8,2867200,null,1,a.a,[c.a],null,null),e["\u0275qud"](603979776,1,{slides:1}),(l()(),e["\u0275and"](16777216,null,null,1,null,A)),e["\u0275did"](11,802816,null,0,o.l,[e.ViewContainerRef,e.TemplateRef,e.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(l()(),e["\u0275eld"](12,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](13,0,null,null,12,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](14,0,null,null,2,"div",[["class","col-xl-3 col-lg-6"]],null,null,null,null,null)),(l()(),e["\u0275eld"](15,0,null,null,1,"app-stat",[],null,null,null,v,h)),e["\u0275did"](16,114688,null,0,b,[],{bgClass:[0,"bgClass"],icon:[1,"icon"],count:[2,"count"],label:[3,"label"]},null),(l()(),e["\u0275eld"](17,0,null,null,2,"div",[["class","col-xl-3 col-lg-6"]],null,null,null,null,null)),(l()(),e["\u0275eld"](18,0,null,null,1,"app-stat",[],null,null,null,v,h)),e["\u0275did"](19,114688,null,0,b,[],{bgClass:[0,"bgClass"],icon:[1,"icon"],count:[2,"count"],label:[3,"label"]},null),(l()(),e["\u0275eld"](20,0,null,null,2,"div",[["class","col-xl-3 col-lg-6"]],null,null,null,null,null)),(l()(),e["\u0275eld"](21,0,null,null,1,"app-stat",[],null,null,null,v,h)),e["\u0275did"](22,114688,null,0,b,[],{bgClass:[0,"bgClass"],icon:[1,"icon"],count:[2,"count"],label:[3,"label"]},null),(l()(),e["\u0275eld"](23,0,null,null,2,"div",[["class","col-xl-3 col-lg-6"]],null,null,null,null,null)),(l()(),e["\u0275eld"](24,0,null,null,1,"app-stat",[],null,null,null,v,h)),e["\u0275did"](25,114688,null,0,b,[],{bgClass:[0,"bgClass"],icon:[1,"icon"],count:[2,"count"],label:[3,"label"]},null),(l()(),e["\u0275eld"](26,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275and"](16777216,null,null,1,null,F)),e["\u0275did"](28,802816,null,0,o.l,[e.ViewContainerRef,e.TemplateRef,e.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(l()(),e["\u0275eld"](29,0,null,null,0,"hr",[],null,null,null,null,null)),(l()(),e["\u0275eld"](30,0,null,null,16,"div",[["class","row"]],null,null,null,null,null)),(l()(),e["\u0275eld"](31,0,null,null,6,"div",[["class","col-lg-8"]],null,null,null,null,null)),(l()(),e["\u0275eld"](32,0,null,null,5,"div",[["class","card card-default"]],null,null,null,null,null)),(l()(),e["\u0275eld"](33,0,null,null,2,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](34,0,null,null,0,"i",[["class","fa fa-clock-o fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Responsive Timeline "])),(l()(),e["\u0275eld"](36,0,null,null,1,"app-timeline",[],null,null,null,w,C)),e["\u0275did"](37,114688,null,0,x,[],null,null),(l()(),e["\u0275eld"](38,0,null,null,8,"div",[["class","col-lg-4"]],null,null,null,null,null)),(l()(),e["\u0275eld"](39,0,null,null,5,"div",[["class","card card-default mb-3"]],null,null,null,null,null)),(l()(),e["\u0275eld"](40,0,null,null,2,"div",[["class","card-header"]],null,null,null,null,null)),(l()(),e["\u0275eld"](41,0,null,null,0,"i",[["class","fa fa-bell fa-fw"]],null,null,null,null,null)),(l()(),e["\u0275ted"](-1,null,[" Notifications card "])),(l()(),e["\u0275eld"](43,0,null,null,1,"app-notification",[],null,null,null,P,O)),e["\u0275did"](44,114688,null,0,y,[],null,null),(l()(),e["\u0275eld"](45,0,null,null,1,"app-chat",[],null,null,null,k,_)),e["\u0275did"](46,114688,null,0,M,[],null,null)],function(l,n){var u=n.component;l(n,8,0),l(n,11,0,u.sliders),l(n,16,0,"primary","fa-comments",26,"New Comments!"),l(n,19,0,"warning","fa-tasks",12,"New task!"),l(n,22,0,"success","fa-shopping-cart",124,"New Orders!"),l(n,25,0,"danger","fa-support",13,"New Tickets!"),l(n,28,0,u.alerts),l(n,37,0),l(n,44,0),l(n,46,0)},function(l,n){l(n,0,0,void 0),l(n,7,0,"block")})}var N=e["\u0275ccf"]("app-dashboard",q,function(l){return e["\u0275vid"](0,[(l()(),e["\u0275eld"](0,0,null,null,1,"app-dashboard",[],null,null,null,I,L)),e["\u0275did"](1,114688,null,0,q,[],null,null)],function(l,n){l(n,1,0)},null)},{},{},[]),T=u("PsaP"),S=u("bt6x"),D=u("ZYCi"),$=function(){},V=u("MviD");u.d(n,"DashboardModuleNgFactory",function(){return E});var E=e["\u0275cmf"](t,[],function(l){return e["\u0275mod"]([e["\u0275mpd"](512,e.ComponentFactoryResolver,e["\u0275CodegenComponentFactoryResolver"],[[8,[i.a,N]],[3,e.ComponentFactoryResolver],e.NgModuleRef]),e["\u0275mpd"](4608,o.o,o.n,[e.LOCALE_ID,[2,o.w]]),e["\u0275mpd"](4608,c.a,c.a,[]),e["\u0275mpd"](4608,d.a,d.a,[]),e["\u0275mpd"](1073742336,o.b,o.b,[]),e["\u0275mpd"](1073742336,T.a,T.a,[]),e["\u0275mpd"](1073742336,S.a,S.a,[]),e["\u0275mpd"](1073742336,D.o,D.o,[[2,D.t],[2,D.l]]),e["\u0275mpd"](1073742336,$,$,[]),e["\u0275mpd"](1073742336,V.a,V.a,[]),e["\u0275mpd"](1073742336,t,t,[]),e["\u0275mpd"](1024,D.j,function(){return[[{path:"",component:q}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/9.bc17644bc96b34a5eff3.js b/dist/9.bc17644bc96b34a5eff3.js deleted file mode 100644 index dfe75b295..000000000 --- a/dist/9.bc17644bc96b34a5eff3.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[9],{Ec8W:function(n,o,l){"use strict";l.r(o);var u=l("CcnG"),t=function(){},e=function(){function n(){}return n.prototype.ngOnInit=function(){},n}(),c=u["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function r(n){return u["\u0275vid"](0,[(n()(),u["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(n()(),u["\u0275ted"](-1,null,[" not-found works!\n"]))],null,null)}var d=u["\u0275ccf"]("app-not-found",e,function(n){return u["\u0275vid"](0,[(n()(),u["\u0275eld"](0,0,null,null,1,"app-not-found",[],null,null,null,r,c)),u["\u0275did"](1,114688,null,0,e,[],null,null)],function(n,o){n(o,1,0)},null)},{},{},[]),p=l("Ip0R"),i=l("ZYCi"),f=function(){};l.d(o,"NotFoundModuleNgFactory",function(){return a});var a=u["\u0275cmf"](t,[],function(n){return u["\u0275mod"]([u["\u0275mpd"](512,u.ComponentFactoryResolver,u["\u0275CodegenComponentFactoryResolver"],[[8,[d]],[3,u.ComponentFactoryResolver],u.NgModuleRef]),u["\u0275mpd"](4608,p.o,p.n,[u.LOCALE_ID,[2,p.w]]),u["\u0275mpd"](1073742336,p.b,p.b,[]),u["\u0275mpd"](1073742336,i.o,i.o,[[2,i.t],[2,i.l]]),u["\u0275mpd"](1073742336,f,f,[]),u["\u0275mpd"](1073742336,t,t,[]),u["\u0275mpd"](1024,i.j,function(){return[[{path:"",component:e}]]},[])])})}}]); \ No newline at end of file diff --git a/dist/assets/i18n/de.json b/dist/assets/i18n/de.json deleted file mode 100644 index a60ac0dc8..000000000 --- a/dist/assets/i18n/de.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "Dashboard", - "Charts": "Graphen", - "Tables": "Tabellen", - "Forms": "Formulare", - "Bootstrap Element": "Bootstrap Element", - "Bootstrap Grid": "Bootstrap Grid", - "Component": "Komponente", - "Menu": "Menü", - "Submenu": "Submenü", - "Blank Page": "Leere Seite", - "More Theme": "Mehr Themes", - "Download Now": "Jetzt runterladen", - "Language": "Sprache", - "English": "Englisch", - "French": "Französisch", - "Urdu": "Urdu", - "Spanish": "Spanisch", - "Italian": "Italienisch", - "Farsi": "Farsi", - "German": "Deutsch", - "Simplified Chinese": "Vereinfachtes Chinesisch", - "Search" : "Suchen", - "Settings" : "Einstellungen", - "Profile" : "Profil", - "Inbox" : "Posteingang", - "Log Out" : "Ausloggen", - "Pending Task" : "Ausstehende Aufgabe", - "In queue" : "In der Warteschlange", - "Mail" : "Post", - "View All" : "Alle Anzeigen" -} diff --git a/dist/assets/i18n/en.json b/dist/assets/i18n/en.json deleted file mode 100644 index b0153e6c6..000000000 --- a/dist/assets/i18n/en.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "Dashboard", - "Charts": "Charts", - "Tables": "Tables", - "Forms": "Forms", - "Bootstrap Element": "Bootstrap Element", - "Bootstrap Grid": "Bootstrap Grid", - "Component": "Component", - "Menu": "Menu", - "Submenu": "Submenu", - "Blank Page": "Blank Page", - "More Theme": "More Themes", - "Download Now": "Download Now", - "Language": "Language", - "English": "English", - "French": "French", - "Urdu": "Urdu", - "Spanish": "Spanish", - "Italian": "Italian", - "Farsi": "Farsi", - "German": "German", - "Simplified Chinese": "Simplified Chinese", - "Search" : "Search", - "Settings" : "Settings", - "Profile" : "Profile", - "Inbox" : "Inbox", - "Log Out" : "Log Out", - "Pending Task" : "Pending Task", - "In queue" : "In queue", - "Mail" : "Mail", - "View All" : "View All" -} diff --git a/dist/assets/i18n/es.json b/dist/assets/i18n/es.json deleted file mode 100644 index 2979c5319..000000000 --- a/dist/assets/i18n/es.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "Principal", - "Charts": "Caracteres", - "Tables": "Tablas", - "Forms": "Formularios", - "Bootstrap Element": "Elementos Bootstrap", - "Bootstrap Grid": "Rejilla Bootstrap", - "Component": "Componentes", - "Menu": "Menú", - "Submenu": "Submenú", - "Blank Page": "Página en Blanco", - "More Theme": "Más temas", - "Download Now": "Descarga Ahora", - "Language": "Idioma", - "English": "Inglés", - "French": "Francés", - "Urdu": "Urdu", - "Spanish": "Español", - "Italian": "Italiano", - "Farsi": "Farsi", - "German": "Alemán", - "Simplified Chinese": "Chino simplificado", - "Search" : "Búsqueda", - "Settings" : "Ajustes", - "Profile" : "Profile", - "Inbox" : "Bandeja de entrada", - "Log Out" : "Cerrar Sesión", - "Pending Task" : "Tarea pendiente", - "In queue" : "En cola", - "Mail" : "Correo", - "View All" : "Ver todo" -} diff --git a/dist/assets/i18n/fa.json b/dist/assets/i18n/fa.json deleted file mode 100644 index 24e39e7a6..000000000 --- a/dist/assets/i18n/fa.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "داشبورد", - "Charts": "چارت ها", - "Tables": "جداول", - "Forms": "فرم ها", - "Bootstrap Element": "عناصر بوتسترپ", - "Bootstrap Grid": "جداول بوتسترپ", - "Component": "کامپوننت", - "Menu": "منوها", - "Submenu": "زیر منوها", - "Blank Page": "صفحه خالی", - "More Theme": "تم های بیشتر", - "Download Now": "دانلود", - "Language": "زبان", - "English": "انگلیسی", - "French": "فرانسوی", - "Urdu": "اردو", - "Spanish": "اسپانیایی", - "Italian": "ایتالیایی", - "Farsi": "فارسی", - "German": "آلمانی", - "Simplified Chinese": "چینی ساده شده", - "Search" : "جستجو", - "Settings" : "تنظیمات", - "Profile" : "مشخصات", - "Inbox" : "صندوق ورودی", - "Log Out" : "خروج از سیستم", - "Pending Task" : "وظایف در انتظار", - "In queue" : "در صف", - "Mail" : "ایمیل", - "View All" : "نمایش همه" -} diff --git a/dist/assets/i18n/fr.json b/dist/assets/i18n/fr.json deleted file mode 100644 index 1a0dd54eb..000000000 --- a/dist/assets/i18n/fr.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "Tableau de bord", - "Charts": "Hit-parade", - "Tables": "Tableaux", - "Forms": "Froms", - "Bootstrap Element": "Bootstrap Élément", - "Bootstrap Grid": "Bootstrap Grille", - "Component": "Composant", - "Menu": "Menu", - "Submenu": "Sous-menu", - "Blank Page": "Blanc Page", - "More Theme": "Plus Thèmes", - "Download Now": "Télécharger", - "Language": "Langue", - "English": "Anglais", - "French": "Français", - "Urdu": "Ourdou", - "Spanish": "Spanish", - "Italian": "Italien", - "Farsi": "Farsi", - "German": "Allemand", - "Simplified Chinese": "Chinois Simplifié", - "Search" : "Chercher", - "Settings" : "Paramètres", - "Profile" : "Profile", - "Inbox" : "Boîte de réception", - "Log Out" : "Connectez - Out", - "Pending Task" : "Tâche en attente", - "In queue" : "Dans la queue", - "Mail" : "Courrier", - "View All" : "Voir tout" -} diff --git a/dist/assets/i18n/it.json b/dist/assets/i18n/it.json deleted file mode 100644 index bac27371c..000000000 --- a/dist/assets/i18n/it.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "Principale", - "Charts": "Grafici", - "Tables": "Tabelle", - "Forms": "Formulari", - "Bootstrap Element": "Elementi Bootstrap", - "Bootstrap Grid": "Griglia Bootstrap", - "Component": "Componenti", - "Menu": "Menu", - "Submenu": "Submenu", - "Blank Page": "Pagina in Bianco", - "More Theme": "Altri temi", - "Download Now": "Scarica Adesso", - "Language": "Lingua", - "English": "Inglese", - "French": "Francese", - "Urdu": "Urdu", - "Spanish": "Spagnolo", - "Italian": "Italiano", - "Farsi": "Farsi", - "German": "Tedesco", - "Simplified Chinese": "Cinese semplificato", - "Search" : "Ricerca", - "Settings" : "Impostazioni", - "Profile" : "Profilo", - "Inbox" : "Posta in arrivo", - "Log Out" : "Uscire", - "Pending Task" : "Attività in sospeso", - "In queue" : "In coda", - "Mail" : "Posta", - "View All" : "Visualizza tutti" -} diff --git a/dist/assets/i18n/ur.json b/dist/assets/i18n/ur.json deleted file mode 100644 index e52e086ae..000000000 --- a/dist/assets/i18n/ur.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "داشبورد", - "Charts": "چارت ها", - "Tables": "جداول", - "Forms": "فرم ها", - "Bootstrap Element": "عنصر بوتسترپ", - "Bootstrap Grid": "جدول بوتسترپ", - "Component": "کامپوننت", - "Menu": "منو", - "Submenu": "زیر منو", - "Blank Page": "صفحه خالی", - "More Theme": "تم های بیشتر", - "Download Now": "دانلود", - "Language": "زبان", - "English": "انگریزی", - "French": "فرانسیسی", - "Urdu": "اردو", - "Spanish": "ہسپانوی", - "Italian": "اطالوی", - "Farsi": "فارسی", - "German": "جرمن", - "Simplified Chinese": "چینی چینی", - "Search" : "تلاش کریں", - "Settings" : "ترتیبات", - "Profile" : "پروفائل", - "Inbox" : "ان باکس", - "Log Out" : "لاگ آوٹ", - "Pending Task" : "زیر التواء ٹاسک", - "In queue" : "قطار میں", - "Mail" : "میل", - "View All" : "سب دیکھیں" -} diff --git a/dist/assets/i18n/zh-CHS.json b/dist/assets/i18n/zh-CHS.json deleted file mode 100644 index e8128b6c1..000000000 --- a/dist/assets/i18n/zh-CHS.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "Dashboard": "仪表板", - "Charts": "图表", - "Tables": "表格", - "Forms": "表单", - "Bootstrap Element": "Bootstrap 元素", - "Bootstrap Grid": "Bootstrap 网格", - "Component": "组件", - "Menu": "菜单", - "Submenu": "子菜单", - "Blank Page": "空白页", - "More Theme": "更多主题", - "Download Now": "现在下载", - "Language": "语言", - "English": "英语", - "French": "法语", - "Urdu": "乌尔都语", - "Spanish": "西班牙语", - "Italian": "意大利语", - "Farsi": "波斯语", - "German": "德语", - "Simplified Chinese": "简体中文", - "Search" : "搜索", - "Settings" : "设置", - "Profile" : "个人配置", - "Inbox" : "收件箱", - "Log Out" : "退出", - "Pending Task" : "挂起任务", - "In queue" : "队列中", - "Mail" : "邮件", - "View All" : "查看所有" -} diff --git a/dist/assets/images/slider1.jpg b/dist/assets/images/slider1.jpg deleted file mode 100644 index 98595656d..000000000 Binary files a/dist/assets/images/slider1.jpg and /dev/null differ diff --git a/dist/assets/images/slider2.jpg b/dist/assets/images/slider2.jpg deleted file mode 100644 index 794d79180..000000000 Binary files a/dist/assets/images/slider2.jpg and /dev/null differ diff --git a/dist/assets/images/slider3.jpg b/dist/assets/images/slider3.jpg deleted file mode 100644 index fc4d343e3..000000000 Binary files a/dist/assets/images/slider3.jpg and /dev/null differ diff --git a/dist/common.f16d6f70975b6e9a3881.js b/dist/common.f16d6f70975b6e9a3881.js deleted file mode 100644 index 0206b6c64..000000000 --- a/dist/common.f16d6f70975b6e9a3881.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[0],{"3zLz":function(t,e,n){"use strict";n.d(e,"a",function(){return i});var i=function(){function t(){}return t.prototype.ngOnInit=function(){},t}()},"4lDY":function(t,e,n){"use strict";n.d(e,"b",function(){return s}),n.d(e,"c",function(){return c}),n.d(e,"a",function(){return a});var i=n("CcnG"),o=n("Ip0R"),l=n("o1U6"),r=n("e5OV"),s=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function u(t){return i["\u0275vid"](0,[(t()(),i["\u0275eld"](0,0,null,null,2,"button",[["aria-label","Close"],["class","close"],["type","button"]],null,[[null,"click"]],function(t,e,n){var i=!0;return"click"===e&&(i=!1!==t.component.closeHandler()&&i),i},null,null)),(t()(),i["\u0275eld"](1,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(t()(),i["\u0275ted"](-1,null,["\xd7"]))],null,null)}function c(t){return i["\u0275vid"](2,[(t()(),i["\u0275eld"](0,0,null,null,3,"div",[["role","alert"]],[[8,"className",0]],null,null,null,null)),(t()(),i["\u0275and"](16777216,null,null,1,null,u)),i["\u0275did"](2,16384,null,0,o.m,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),i["\u0275ncd"](null,0)],function(t,e){t(e,2,0,e.component.dismissible)},function(t,e){var n=e.component;t(e,0,0,"alert alert-"+n.type+(n.dismissible?" alert-dismissible":""))})}var a=i["\u0275ccf"]("ngb-alert",l.a,function(t){return i["\u0275vid"](0,[(t()(),i["\u0275eld"](0,0,null,null,1,"ngb-alert",[],null,null,null,c,s)),i["\u0275did"](1,49152,null,0,l.a,[r.a],null,null)],null,null)},{dismissible:"dismissible",type:"type"},{close:"close"},["*"])},C1df:function(t,e,n){"use strict";n.d(e,"a",function(){return o});var i=new(function(){function t(){}return t.prototype.getAllStyles=function(t){return window.getComputedStyle(t)},t.prototype.getStyle=function(t,e){return this.getAllStyles(t)[e]},t.prototype.isStaticPositioned=function(t){return"static"===(this.getStyle(t,"position")||"static")},t.prototype.offsetParent=function(t){for(var e=t.offsetParent||document.documentElement;e&&e!==document.documentElement&&this.isStaticPositioned(e);)e=e.offsetParent;return e||document.documentElement},t.prototype.position=function(t,e){var n;void 0===e&&(e=!0);var i={width:0,height:0,top:0,bottom:0,left:0,right:0};if("fixed"===this.getStyle(t,"position"))n=t.getBoundingClientRect();else{var o=this.offsetParent(t);n=this.offset(t,!1),o!==document.documentElement&&(i=this.offset(o,!1)),i.top+=o.clientTop,i.left+=o.clientLeft}return n.top-=i.top,n.bottom-=i.top,n.left-=i.left,n.right-=i.left,e&&(n.top=Math.round(n.top),n.bottom=Math.round(n.bottom),n.left=Math.round(n.left),n.right=Math.round(n.right)),n},t.prototype.offset=function(t,e){void 0===e&&(e=!0);var n=t.getBoundingClientRect(),i=window.pageYOffset-document.documentElement.clientTop,o=window.pageXOffset-document.documentElement.clientLeft,l={height:n.height||t.offsetHeight,width:n.width||t.offsetWidth,top:n.top+i,bottom:n.bottom+i,left:n.left+o,right:n.right+o};return e&&(l.height=Math.round(l.height),l.width=Math.round(l.width),l.top=Math.round(l.top),l.bottom=Math.round(l.bottom),l.left=Math.round(l.left),l.right=Math.round(l.right)),l},t.prototype.positionElements=function(t,e,n,i){var o=i?this.offset(t,!1):this.position(t,!1),l=this.getAllStyles(e),r=e.getBoundingClientRect(),s=n.split("-")[0]||"top",u=n.split("-")[1]||"center",c={height:r.height||e.offsetHeight,width:r.width||e.offsetWidth,top:0,bottom:r.height||e.offsetHeight,left:0,right:r.width||e.offsetWidth};switch(s){case"top":c.top=o.top-(e.offsetHeight+parseFloat(l.marginBottom));break;case"bottom":c.top=o.top+o.height;break;case"left":c.left=o.left-(e.offsetWidth+parseFloat(l.marginRight));break;case"right":c.left=o.left+o.width}switch(u){case"top":c.top=o.top;break;case"bottom":c.top=o.top+o.height-e.offsetHeight;break;case"left":c.left=o.left;break;case"right":c.left=o.left+o.width-e.offsetWidth;break;case"center":"top"===s||"bottom"===s?c.left=o.left+o.width/2-e.offsetWidth/2:c.top=o.top+o.height/2-e.offsetHeight/2}return c.top=Math.round(c.top),c.bottom=Math.round(c.bottom),c.left=Math.round(c.left),c.right=Math.round(c.right),c},t.prototype.getAvailablePlacements=function(t,e){var n=[],i=t.getBoundingClientRect(),o=e.getBoundingClientRect(),l=document.documentElement;return o.width0&&n.splice(n.length,1,"left"),this.setSecondaryPlacementForLeftRight(i,o,"left",n)),o.heighto.width&&(i.top+i.height/2-e.offsetHeight/2>0&&n.splice(n.length,1,"right"),this.setSecondaryPlacementForLeftRight(i,o,"right",n)),(window.innerHeight||l.clientHeight)-i.bottom>o.height&&(n.splice(n.length,1,"bottom"),this.setSecondaryPlacementForTopBottom(i,o,"bottom",n)),n},t.prototype.setSecondaryPlacementForLeftRight=function(t,e,n,i){var o=document.documentElement;e.height<=t.bottom&&i.splice(i.length,1,n+"-bottom"),(window.innerHeight||o.clientHeight)-t.top>=e.height&&i.splice(i.length,1,n+"-top")},t.prototype.setSecondaryPlacementForTopBottom=function(t,e,n,i){var o=document.documentElement;(window.innerWidth||o.clientWidth)-t.left>=e.width&&i.splice(i.length,1,n+"-left"),e.width<=t.right&&i.splice(i.length,1,n+"-right")},t}());function o(t,e,n,o){var l=Array.isArray(n)?n:[n],r=l.findIndex(function(t){return"auto"===t});r>=0&&["top","right","bottom","left"].forEach(function(t){null==l.find(function(e){return-1!==e.search("^"+t+"|^"+t+"-")})&&l.splice(r++,1,t)});for(var s,u=0,c=0,a=i.getAvailablePlacements(t,e),h=function(n,r){if(null!=a.find(function(t){return t===n})||l.length===r+1){s=n;var h=i.positionElements(t,e,n,o);return u=h.top,c=h.left,"break"}},d=0,p=l.map(function(t,e){return{item:t,index:e}});dthis._getSlideIdxById(e)?s.RIGHT:s.LEFT},t.prototype.keyPrev=function(){this.keyboard&&this.prev()},t.prototype.keyNext=function(){this.keyboard&&this.next()},t.prototype._restartTimer=function(){this._stopTimer(),this._startTimer()},t.prototype._startTimer=function(){var t=this;this.interval>0&&(this._slideChangeInterval=setInterval(function(){t.cycleToNext()},this.interval))},t.prototype._stopTimer=function(){clearInterval(this._slideChangeInterval)},t.prototype._getSlideById=function(t){var e=this.slides.filter(function(e){return e.id===t});return e.length?e[0]:null},t.prototype._getSlideIdxById=function(t){return this.slides.toArray().indexOf(this._getSlideById(t))},t.prototype._getNextSlide=function(t){var e=this.slides.toArray(),n=this._getSlideIdxById(t);return n===e.length-1?this.wrap?e[0].id:e[e.length-1].id:e[n+1].id},t.prototype._getPrevSlide=function(t){var e=this.slides.toArray(),n=this._getSlideIdxById(t);return 0===n?this.wrap?e[e.length-1].id:e[0].id:e[n-1].id},t}(),s=function(t){return t[t.LEFT="left"]="LEFT",t[t.RIGHT="right"]="RIGHT",t}({})},lwpf:function(t,e,n){"use strict";n.d(e,"c",function(){return s}),n.d(e,"b",function(){return u}),n.d(e,"d",function(){return c}),n.d(e,"a",function(){return a});var i,o=n("CcnG"),l=(n("ebCm"),n("C1df")),r=(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])},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),s=function(){function t(t,e,n){this.dropdown=t,this._elementRef=e,this._renderer=n,this.placement="bottom",this.isOpen=!1}return t.prototype.isEventFrom=function(t){return this._elementRef.nativeElement.contains(t.target)},t.prototype.position=function(t,e){this.applyPlacement(Object(l.a)(t,this._elementRef.nativeElement,e))},t.prototype.applyPlacement=function(t){this._renderer.removeClass(this._elementRef.nativeElement.parentNode,"dropup"),this._renderer.removeClass(this._elementRef.nativeElement.parentNode,"dropdown"),this.placement=t,-1!==t.search("^top")?this._renderer.addClass(this._elementRef.nativeElement.parentNode,"dropup"):this._renderer.addClass(this._elementRef.nativeElement.parentNode,"dropdown")},t}(),u=function(){function t(t,e){this.dropdown=t,this._elementRef=e,this.anchorEl=e.nativeElement}return t.prototype.isEventFrom=function(t){return this._elementRef.nativeElement.contains(t.target)},t}(),c=function(t){function e(e,n){return t.call(this,e,n)||this}return r(e,t),e.prototype.toggleOpen=function(){this.dropdown.toggle()},e}(u),a=function(){function t(t,e){var n=this;this._open=!1,this.openChange=new o.EventEmitter,this.placement=t.placement,this.autoClose=t.autoClose,this._zoneSubscription=e.onStable.subscribe(function(){n._positionMenu()})}return t.prototype.ngOnInit=function(){this._menu&&this._menu.applyPlacement(Array.isArray(this.placement)?this.placement[0]:this.placement)},t.prototype.isOpen=function(){return this._open},t.prototype.open=function(){this._open||(this._open=!0,this._positionMenu(),this.openChange.emit(!0))},t.prototype.close=function(){this._open&&(this._open=!1,this.openChange.emit(!1))},t.prototype.toggle=function(){this.isOpen()?this.close():this.open()},t.prototype.closeFromClick=function(t){this.autoClose&&2!==t.button&&!this._isEventFromToggle(t)&&(!0===this.autoClose?this.close():"inside"===this.autoClose&&this._isEventFromMenu(t)?this.close():"outside"!==this.autoClose||this._isEventFromMenu(t)||this.close())},t.prototype.closeFromOutsideEsc=function(){this.autoClose&&this.close()},t.prototype.ngOnDestroy=function(){this._zoneSubscription.unsubscribe()},t.prototype._isEventFromToggle=function(t){return this._anchor.isEventFrom(t)},t.prototype._isEventFromMenu=function(t){return!!this._menu&&this._menu.isEventFrom(t)},t.prototype._positionMenu=function(){this.isOpen()&&this._menu&&this._menu.position(this._anchor.anchorEl,this.placement)},t}()},o1U6:function(t,e,n){"use strict";n.d(e,"a",function(){return o});var i=n("CcnG"),o=(n("e5OV"),function(){function t(t){this.close=new i.EventEmitter,this.dismissible=t.dismissible,this.type=t.type}return t.prototype.closeHandler=function(){this.close.emit(null)},t}())},q7oS:function(t,e,n){"use strict";n.d(e,"a",function(){return i});var i=function(){this.interval=5e3,this.wrap=!0,this.keyboard=!0}},rMXk:function(t,e,n){"use strict";var i=n("CcnG"),o=n("ZYCi"),l=n("Ip0R");n("3zLz"),n.d(e,"a",function(){return r}),n.d(e,"b",function(){return s});var r=i["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function s(t){return i["\u0275vid"](0,[(t()(),i["\u0275eld"](0,0,null,null,13,"div",[["class","row"]],null,null,null,null,null)),(t()(),i["\u0275eld"](1,0,null,null,12,"div",[["class","col-xl-12"]],null,null,null,null,null)),(t()(),i["\u0275eld"](2,0,null,null,1,"h2",[["class","page-header"]],null,null,null,null,null)),(t()(),i["\u0275ted"](3,null,[" "," "])),(t()(),i["\u0275eld"](4,0,null,null,9,"ol",[["class","breadcrumb"]],null,null,null,null,null)),(t()(),i["\u0275eld"](5,0,null,null,5,"li",[["class","breadcrumb-item"]],null,null,null,null,null)),(t()(),i["\u0275eld"](6,0,null,null,0,"i",[["class","fa fa-dashboard"]],null,null,null,null,null)),(t()(),i["\u0275eld"](7,0,null,null,3,"a",[["href","Javascript:void(0)"]],[[1,"target",0],[8,"href",4]],[[null,"click"]],function(t,e,n){var o=!0;return"click"===e&&(o=!1!==i["\u0275nov"](t,8).onClick(n.button,n.ctrlKey,n.metaKey,n.shiftKey)&&o),o},null,null)),i["\u0275did"](8,671744,null,0,o.n,[o.l,o.a,l.j],{routerLink:[0,"routerLink"]},null),i["\u0275pad"](9,1),(t()(),i["\u0275ted"](-1,null,["Dashboard"])),(t()(),i["\u0275eld"](11,0,null,null,2,"li",[["class","breadcrumb-item active"]],null,null,null,null,null)),(t()(),i["\u0275eld"](12,0,null,null,0,"i",[],[[8,"className",0]],null,null,null,null)),(t()(),i["\u0275ted"](13,null,[" ",""]))],function(t,e){t(e,8,0,t(e,9,0,"/dashboard"))},function(t,e){var n=e.component;t(e,3,0,n.heading),t(e,7,0,i["\u0275nov"](e,8).target,i["\u0275nov"](e,8).href),t(e,12,0,i["\u0275inlineInterpolate"](1,"fa ",n.icon,"")),t(e,13,0,n.heading)})}}}]); \ No newline at end of file diff --git a/dist/favicon.ico b/dist/favicon.ico deleted file mode 100644 index 8081c7cea..000000000 Binary files a/dist/favicon.ico and /dev/null differ diff --git a/dist/fontawesome-webfont.674f50d287a8c48dc19b.eot b/dist/fontawesome-webfont.674f50d287a8c48dc19b.eot deleted file mode 100644 index e9f60ca95..000000000 Binary files a/dist/fontawesome-webfont.674f50d287a8c48dc19b.eot and /dev/null differ diff --git a/dist/fontawesome-webfont.912ec66d7572ff821749.svg b/dist/fontawesome-webfont.912ec66d7572ff821749.svg deleted file mode 100644 index 855c845e5..000000000 --- a/dist/fontawesome-webfont.912ec66d7572ff821749.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dist/fontawesome-webfont.af7ae505a9eed503f8b8.woff2 b/dist/fontawesome-webfont.af7ae505a9eed503f8b8.woff2 deleted file mode 100644 index 4d13fc604..000000000 Binary files a/dist/fontawesome-webfont.af7ae505a9eed503f8b8.woff2 and /dev/null differ diff --git a/dist/fontawesome-webfont.fee66e712a8a08eef580.woff b/dist/fontawesome-webfont.fee66e712a8a08eef580.woff deleted file mode 100644 index 400014a4b..000000000 Binary files a/dist/fontawesome-webfont.fee66e712a8a08eef580.woff and /dev/null differ diff --git a/dist/index.html b/dist/index.html deleted file mode 100644 index 37febe1c3..000000000 --- a/dist/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - Codestin Search App - - - - - - - -
-
-
-
-
-
- - - diff --git a/dist/main.4b20b7ce32df78939b4f.js b/dist/main.4b20b7ce32df78939b4f.js deleted file mode 100644 index 39fcc0e20..000000000 --- a/dist/main.4b20b7ce32df78939b4f.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[18],{"+Sv0":function(e,t,n){"use strict";n.d(t,"a",function(){return r});var r=function(){}},"+tJ4":function(e,t,n){"use strict";n.d(t,"a",function(){return r});var r=function(e){return function(t){for(var n=0,r=e.length;n0)for(var n=this.count>=this.total?this.total:this.count,r=this.ring,o=0;o ");else if("object"==typeof t){var o=[];for(var i in t)if(t.hasOwnProperty(i)){var a=t[i];o.push(i+":"+("string"==typeof a?JSON.stringify(a):Q(a)))}r="{"+o.join(", ")+"}"}return"StaticInjectorError"+(n?"("+n+")":"")+"["+r+"]: "+e.replace(be,"\n ")}function Oe(e,t){return new Error(Se(e,t))}var xe=void 0;function Te(e){var t=xe;return xe=e,t}function ke(e,t){if(void 0===t&&(t=0),void 0===xe)throw new Error("inject() must be called from an injection context");if(null===xe){var n=e.ngInjectableDef;if(n&&"root"==n.providedIn)return void 0===n.value?n.value=n.factory():n.value;throw new Error("Injector: NOT_FOUND ["+Q(e)+"]")}return xe.get(e,8&t?null:void 0,t)}function je(e){for(var t=[],n=0;n1?" ("+function(e){for(var t=[],n=0;n-1)return t.push(e[n]),t;t.push(e[n])}return t}(e.slice().reverse()).map(function(e){return Q(e.token)}).join(" -> ")+")":""}function We(e,t,n,r){var o=[t],i=n(o),a=r?function(e,t){var n=i+" caused by: "+(t instanceof Error?t.message:t),r=Error(n);return r[ze]=t,r}(0,r):Error(i);return a.addKey=Ye,a.keys=o,a.injectors=[e],a.constructResolvingMessage=n,a[ze]=r,a}function Ye(e,t){this.injectors.push(e),this.keys.push(t),this.message=this.constructResolvingMessage(this.keys)}function Je(e,t){for(var n=[],r=0,o=t.length;r=this._providers.length)throw function(e){return Error("Index "+e+" is out-of-bounds.")}(e);return this._providers[e]},e.prototype._new=function(e){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw We(this,e.key,function(e){return"Cannot instantiate cyclic dependency!"+Ze(e)});return this._instantiateProvider(e)},e.prototype._getMaxNumberOfObjects=function(){return this.objs.length},e.prototype._instantiateProvider=function(e){if(e.multiProvider){for(var t=new Array(e.resolvedFactories.length),n=0;n0&&(o=setTimeout(function(){r._callbacks=r._callbacks.filter(function(e){return e.timeoutId!==o}),e(r._didWork,r.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:o,updateCb:n})},e.prototype.whenStable=function(e,t,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(e,t,n),this._runCallbacksIfReady()},e.prototype.getPendingRequestCount=function(){return this._pendingCount},e.prototype.findProviders=function(e,t,n){return[]},e}(),Cn=function(){function e(){this._applications=new Map,On.addToWindow(this)}return e.prototype.registerApplication=function(e,t){this._applications.set(e,t)},e.prototype.unregisterApplication=function(e){this._applications.delete(e)},e.prototype.unregisterAllApplications=function(){this._applications.clear()},e.prototype.getTestability=function(e){return this._applications.get(e)||null},e.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},e.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},e.prototype.findTestabilityInTree=function(e,t){return void 0===t&&(t=!0),On.findTestabilityInTree(this,e,t)},e.ctorParameters=function(){return[]},e}();function En(e){On=e}var Sn,On=new(function(){function e(){}return e.prototype.addToWindow=function(e){},e.prototype.findTestabilityInTree=function(e,t,n){return null},e}()),xn=!0,Tn=!1,kn=new f("AllowMultipleToken");function jn(){if(Tn)throw new Error("Cannot enable prod mode after platform setup.");xn=!1}function Pn(){return Tn=!0,xn}var In=function(e,t){this.name=e,this.token=t};function An(e){if(Sn&&!Sn.destroyed&&!Sn.injector.get(kn,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");Sn=e.get(Ln);var t=e.get(Dt,null);return t&&t.forEach(function(e){return e()}),Sn}function Dn(e,t,n){void 0===n&&(n=[]);var r="Platform: "+t,o=new f(r);return function(t){void 0===t&&(t=[]);var i=Mn();if(!i||i.injector.get(kn,!1))if(e)e(n.concat(t).concat({provide:o,useValue:!0}));else{var a=n.concat(t).concat({provide:o,useValue:!0});An(pe.create({providers:a,name:r}))}return Nn(o)}}function Nn(e){var t=Mn();if(!t)throw new Error("No platform exists!");if(!t.injector.get(e,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return t}function Rn(){Sn&&!Sn.destroyed&&Sn.destroy()}function Mn(){return Sn&&!Sn.destroyed?Sn:null}var Ln=function(){function e(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return e.prototype.bootstrapModuleFactory=function(e,t){var n,r=this,o="noop"===(n=t?t.ngZone:void 0)?new bn:("zone.js"===n?void 0:n)||new hn({enableLongStackTrace:Pn()}),i=[{provide:hn,useValue:o}];return o.run(function(){var t=pe.create({providers:i,parent:r.injector,name:e.moduleType.name}),n=e.create(t),a=n.injector.get(Qe,null);if(!a)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return n.onDestroy(function(){return Hn(r._modules,n)}),o.runOutsideAngular(function(){return o.onError.subscribe({next:function(e){a.handleError(e)}})}),function(e,t,o){try{var i=((a=n.injector.get(kt)).runInitializers(),a.donePromise.then(function(){return r._moduleDoBootstrap(n),n}));return Ot(i)?i.catch(function(n){throw t.runOutsideAngular(function(){return e.handleError(n)}),n}):i}catch(n){throw t.runOutsideAngular(function(){return e.handleError(n)}),n}var a}(a,o)})},e.prototype.bootstrapModule=function(e,t){var n=this;void 0===t&&(t=[]);var r=this.injector.get(zt),o=Fn({},t);return r.createCompiler([o]).compileModuleAsync(e).then(function(e){return n.bootstrapModuleFactory(e,o)})},e.prototype._moduleDoBootstrap=function(e){var t=e.injector.get(Vn);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(function(e){return t.bootstrap(e)});else{if(!e.instance.ngDoBootstrap)throw new Error("The module "+Q(e.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');e.instance.ngDoBootstrap(t)}this._modules.push(e)},e.prototype.onDestroy=function(e){this._destroyListeners.push(e)},Object.defineProperty(e.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(e){return e.destroy()}),this._destroyListeners.forEach(function(e){return e()}),this._destroyed=!0},Object.defineProperty(e.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),e}();function Fn(e,t){return Array.isArray(t)?t.reduce(Fn,e):Object(r.__assign)({},e,t)}var Vn=function(){function e(e,t,n,r,o,i){var c=this;this._zone=e,this._console=t,this._injector=n,this._exceptionHandler=r,this._componentFactoryResolver=o,this._initStatus=i,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Pn(),this._zone.onMicrotaskEmpty.subscribe({next:function(){c._zone.run(function(){c.tick()})}});var l=new a.a(function(e){c._stable=c._zone.isStable&&!c._zone.hasPendingMacrotasks&&!c._zone.hasPendingMicrotasks,c._zone.runOutsideAngular(function(){e.next(c._stable),e.complete()})}),f=new a.a(function(e){var t;c._zone.runOutsideAngular(function(){t=c._zone.onStable.subscribe(function(){hn.assertNotInAngularZone(),G(function(){c._stable||c._zone.hasPendingMacrotasks||c._zone.hasPendingMicrotasks||(c._stable=!0,e.next(!0))})})});var n=c._zone.onUnstable.subscribe(function(){hn.assertInAngularZone(),c._stable&&(c._stable=!1,c._zone.runOutsideAngular(function(){e.next(!1)}))});return function(){t.unsubscribe(),n.unsubscribe()}});this.isStable=Object(s.a)(l,f.pipe(Object(u.a)()))}return e.prototype.bootstrap=function(e,t){var n,r=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=e instanceof qt?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var o=n instanceof $t?null:this._injector.get(Xt),i=n.create(pe.NULL,[],t||n.selector,o);i.onDestroy(function(){r._unloadComponent(i)});var a=i.injector.get(wn,null);return a&&i.injector.get(Cn).registerApplication(i.location.nativeElement,a),this._loadComponent(i),Pn()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),i},e.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(e){return e.detectChanges()}),this._enforceNoNewChanges&&this._views.forEach(function(e){return e.checkNoChanges()})}catch(e){this._zone.runOutsideAngular(function(){return t._exceptionHandler.handleError(e)})}finally{this._runningTick=!1,ln(n)}},e.prototype.attachView=function(e){var t=e;this._views.push(t),t.attachToAppRef(this)},e.prototype.detachView=function(e){var t=e;Hn(this._views,t),t.detachFromAppRef()},e.prototype._loadComponent=function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(Rt,[]).concat(this._bootstrapListeners).forEach(function(t){return t(e)})},e.prototype._unloadComponent=function(e){this.detachView(e.hostView),Hn(this.components,e)},e.prototype.ngOnDestroy=function(){this._views.slice().forEach(function(e){return e.destroy()})},Object.defineProperty(e.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),e._tickScope=cn("ApplicationRef#tick()"),e}();function Hn(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var Un=function(e,t,n,r,o,i){this.id=e,this.templateUrl=t,this.slotCount=n,this.encapsulation=r,this.styles=o,this.animations=i},zn=function(){},Bn=function(){},qn=function(){},Gn=function(){},Kn=function(e){return e[e.Important=1]="Important",e[e.DashCase=2]="DashCase",e}({}),Qn=function(){},Zn=function(e){this.nativeElement=e},Wn=function(){},Yn=new Map;function Jn(e,t){var n=Yn.get(e);if(n)throw new Error("Duplicate module registered for "+e+" - "+n.moduleType.name+" vs "+t.moduleType.name);Yn.set(e,t)}function $n(e){var t=Yn.get(e);if(!t)throw new Error("No module with ID "+e+" loaded");return t}var Xn=function(){function e(){this.dirty=!0,this._results=[],this.changes=new dn,this.length=0}return e.prototype.map=function(e){return this._results.map(e)},e.prototype.filter=function(e){return this._results.filter(e)},e.prototype.find=function(e){return this._results.find(e)},e.prototype.reduce=function(e,t){return this._results.reduce(e,t)},e.prototype.forEach=function(e){this._results.forEach(e)},e.prototype.some=function(e){return this._results.some(e)},e.prototype.toArray=function(){return this._results.slice()},e.prototype[q()]=function(){return this._results[q()]()},e.prototype.toString=function(){return this._results.toString()},e.prototype.reset=function(e){this._results=function e(t){return t.reduce(function(t,n){var r=Array.isArray(n)?e(n):n;return t.concat(r)},[])}(e),this.dirty=!1,this.length=this._results.length,this.last=this._results[this.length-1],this.first=this._results[0]},e.prototype.notifyOnChanges=function(){this.changes.emit(this)},e.prototype.setDirty=function(){this.dirty=!0},e.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},e}(),er=function(){},tr={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},nr=function(){function e(e,t){this._compiler=e,this._config=t||tr}return e.prototype.load=function(e){return this._compiler instanceof Ht?this.loadFactory(e):this.loadAndCompile(e)},e.prototype.loadAndCompile=function(e){var t=this,o=Object(r.__read)(e.split("#"),2),i=o[0],a=o[1];return void 0===a&&(a="default"),n("crnd")(i).then(function(e){return e[a]}).then(function(e){return rr(e,i,a)}).then(function(e){return t._compiler.compileModuleAsync(e)})},e.prototype.loadFactory=function(e){var t=Object(r.__read)(e.split("#"),2),o=t[0],i=t[1],a="NgFactory";return void 0===i&&(i="default",a=""),n("crnd")(this._config.factoryPathPrefix+o+this._config.factoryPathSuffix).then(function(e){return e[i+a]}).then(function(e){return rr(e,o,i)})},e}();function rr(e,t,n){if(!e)throw new Error("Cannot find '"+n+"' in '"+t+"'");return e}var or=function(){},ir=function(){},ar=function(){},sr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(r.__extends)(t,e),t}(ar),ur=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(r.__extends)(t,e),t}(sr),cr=function(){function e(e,t,n){this._debugContext=n,this.nativeNode=e,t&&t instanceof lr?t.addChild(this):this.parent=null,this.listeners=[]}return Object.defineProperty(e.prototype,"injector",{get:function(){return this._debugContext.injector},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){return this._debugContext.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._debugContext.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return this._debugContext.references},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){return this._debugContext.providerTokens},enumerable:!0,configurable:!0}),e}(),lr=function(e){function t(t,n,r){var o=e.call(this,t,n,r)||this;return o.properties={},o.attributes={},o.classes={},o.styles={},o.childNodes=[],o.nativeElement=t,o}return Object(r.__extends)(t,e),t.prototype.addChild=function(e){e&&(this.childNodes.push(e),e.parent=this)},t.prototype.removeChild=function(e){var t=this.childNodes.indexOf(e);-1!==t&&(e.parent=null,this.childNodes.splice(t,1))},t.prototype.insertChildrenAfter=function(e,t){var n,o=this,i=this.childNodes.indexOf(e);-1!==i&&((n=this.childNodes).splice.apply(n,Object(r.__spread)([i+1,0],t)),t.forEach(function(e){e.parent&&e.parent.removeChild(e),e.parent=o}))},t.prototype.insertBefore=function(e,t){var n=this.childNodes.indexOf(e);-1===n?this.addChild(t):(t.parent&&t.parent.removeChild(t),t.parent=this,this.childNodes.splice(n,0,t))},t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return pr(this,e,t),t},t.prototype.queryAllNodes=function(e){var t=[];return dr(this,e,t),t},Object.defineProperty(t.prototype,"children",{get:function(){return this.childNodes.filter(function(e){return e instanceof t})},enumerable:!0,configurable:!0}),t.prototype.triggerEventHandler=function(e,t){this.listeners.forEach(function(n){n.name==e&&n.callback(t)})},t}(cr);function fr(e){return e.map(function(e){return e.nativeElement})}function pr(e,t,n){e.childNodes.forEach(function(e){e instanceof lr&&(t(e)&&n.push(e),pr(e,t,n))})}function dr(e,t,n){e instanceof lr&&e.childNodes.forEach(function(e){t(e)&&n.push(e),e instanceof lr&&dr(e,t,n)})}var hr=new Map;function yr(e){return hr.get(e)||null}function vr(e){hr.set(e.nativeNode,e)}function gr(e,t){var n=br(e),r=br(t);return n&&r?function(e,t,n){for(var r=e[q()](),o=t[q()]();;){var i=r.next(),a=o.next();if(i.done&&a.done)return!0;if(i.done||a.done)return!1;if(!n(i.value,a.value))return!1}}(e,t,gr):!(n||!e||"object"!=typeof e&&"function"!=typeof e||r||!t||"object"!=typeof t&&"function"!=typeof t)||K(e,t)}var mr=function(){function e(e){this.wrapped=e}return e.wrap=function(t){return new e(t)},e.unwrap=function(t){return e.isWrapped(t)?t.wrapped:t},e.isWrapped=function(t){return t instanceof e},e}(),_r=function(){function e(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}return e.prototype.isFirstChange=function(){return this.firstChange},e}();function br(e){return!!wr(e)&&(Array.isArray(e)||!(e instanceof Map)&&q()in e)}function wr(e){return null!==e&&("function"==typeof e||"object"==typeof e)}var Cr=function(){function e(){}return e.prototype.supports=function(e){return br(e)},e.prototype.create=function(e){return new Sr(e)},e}(),Er=function(e,t){return t},Sr=function(){function e(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||Er}return e.prototype.forEachItem=function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)},e.prototype.forEachOperation=function(e){for(var t=this._itHead,n=this._removalsHead,r=0,o=null;t||n;){var i=!n||t&&t.currentIndex',!this.inertBodyElement.querySelector||this.inertBodyElement.querySelector("svg")?(this.inertBodyElement.innerHTML='