From 815872b0fcb6af99f7f947c8abba33a3af135f3b Mon Sep 17 00:00:00 2001 From: Andrew Brazzatti Date: Wed, 10 Jan 2024 05:44:08 +0000 Subject: [PATCH 01/10] Deleted api directory as the build will generate it --- api/Config.js | 29 -- api/UserInfo.js | 10 - api/controllers/LabarchivesController.js | 325 ----------------------- api/core/CoreController.js | 153 ----------- api/core/CoreService.js | 51 ---- api/services/LabarchivesService.js | 170 ------------ typescript/api/core/CoreController.ts | 274 ------------------- typescript/api/core/CoreService.ts | 67 ----- 8 files changed, 1079 deletions(-) delete mode 100644 api/Config.js delete mode 100644 api/UserInfo.js delete mode 100644 api/controllers/LabarchivesController.js delete mode 100644 api/core/CoreController.js delete mode 100644 api/core/CoreService.js delete mode 100644 api/services/LabarchivesService.js delete mode 100644 typescript/api/core/CoreController.ts delete mode 100644 typescript/api/core/CoreService.ts diff --git a/api/Config.js b/api/Config.js deleted file mode 100644 index 58fa5a6..0000000 --- a/api/Config.js +++ /dev/null @@ -1,29 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -class Config { - constructor(workspaces) { - const workspaceConfig = workspaces; - const la = workspaceConfig.labarchives; - this.host = la.host; - this.recordType = la.recordType; - this.workflowStage = la.workflowStage; - this.formName = la.formName; - this.appName = la.appName; - this.domain = la.domain; - this.parentRecord = workspaceConfig.parentRecord; - this.provisionerUser = workspaceConfig.provisionerUser; - this.location = la.location; - this.description = la.description; - this.brandingAndPortalUrl = ''; - this.redboxHeaders = { - 'Cache-Control': 'no-cache', - 'Content-Type': 'application/json', - 'Authorization': workspaceConfig.portal.authorization, - }; - this.defaultGroupId = la.defaultGroupId; - this.types = la.types; - this.workspaceFileName = la.workspaceFileName; - this.key = la.key; - } -} -exports.Config = Config; diff --git a/api/UserInfo.js b/api/UserInfo.js deleted file mode 100644 index 6d4cfd6..0000000 --- a/api/UserInfo.js +++ /dev/null @@ -1,10 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -class UserInfo { - constructor(id, orcid, fullName) { - this.id = id; - this.orcid = orcid; - this.fullName = fullName; - } -} -exports.UserInfo = UserInfo; diff --git a/api/controllers/LabarchivesController.js b/api/controllers/LabarchivesController.js deleted file mode 100644 index 04a3c22..0000000 --- a/api/controllers/LabarchivesController.js +++ /dev/null @@ -1,325 +0,0 @@ -"use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const rxjs_1 = require("rxjs"); -require("rxjs/add/operator/map"); -const controller = require("../core/CoreController"); -const Config_1 = require("../Config"); -const UserInfo_1 = require("../UserInfo"); -var Controllers; -(function (Controllers) { - class LabarchivesController extends controller.Controllers.Core.Controller { - constructor() { - super(); - this._exportedMethods = [ - 'info', - 'rdmpInfo', - 'login', - 'link', - 'checkLink', - 'list', - 'createNotebook' - ]; - this.config = new Config_1.Config(sails.config.workspaces); - } - info(req, res) { - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - this.ajaxOk(req, res, null, { location: this.config.location, status: true }); - } - rdmpInfo(req, res) { - sails.log.debug('rdmpInfo'); - const userId = req.user.id; - const rdmp = req.param('rdmp'); - let recordMetadata = {}; - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - return WorkspaceService.getRecordMeta(this.config, rdmp) - .subscribe(response => { - sails.log.debug('recordMetadata'); - recordMetadata = response; - this.ajaxOk(req, res, null, { status: true, recordMetadata: recordMetadata }); - }, error => { - sails.log.error('recordMetadata: error'); - sails.log.error(error); - this.ajaxFail(req, res, error.message, { status: false, message: error.message }); - }); - } - login(req, res) { - const user = { - username: req.param('username'), - password: req.param('password') - }; - if (user.username && user.password) { - let info = {}; - const userId = req.user.id; - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - const userInfo = LabarchivesService.login(this.config.key, user.username, user.password); - rxjs_1.Observable.fromPromise(userInfo).flatMap(response => { - const userInfo = response['users']; - if (userInfo) { - info = new UserInfo_1.UserInfo(userInfo['id'], userInfo['orcid'], userInfo['fullname']); - return WorkspaceService.workspaceAppFromUserId(userId, this.config.appName); - } - else { - const message = 'username and password invalid'; - throw new Error(message); - } - }).flatMap(response => { - if (response && response['id']) { - return WorkspaceService.updateWorkspaceInfo(response['id'], info); - } - else { - return WorkspaceService.createWorkspaceInfo(userId, this.config.appName, info); - } - }).subscribe(response => { - this.ajaxOk(req, res, null, { status: true, login: true }); - }, error => { - const errorMessage = `Failed to login for user ${user.username}`; - sails.log.error(error); - this.ajaxFail(req, res, errorMessage, { status: false, message: errorMessage }); - }); - } - else { - const message = 'Input username and password'; - this.ajaxFail(req, res, message, { status: false, message: message }); - } - } - list(req, res) { - sails.log.debug('list'); - const userId = req.user.id; - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - let info = {}; - return WorkspaceService.workspaceAppFromUserId(userId, this.config.appName) - .flatMap(response => { - let user = null; - if (!response) { - user = null; - } - else { - user = response['info'] || null; - } - if (user) { - const userInfo = LabarchivesService.userInfo(this.config.key, user['id'], true); - return rxjs_1.Observable.fromPromise(userInfo); - } - else { - return rxjs_1.Observable.throwError('cannot get user info'); - } - }) - .subscribe(response => { - let resNotebooks = response['users']['notebooks']; - let notebooks = { '$': { type: 'array' }, notebook: [] }; - if (Array.isArray(resNotebooks['notebook'])) { - notebooks['notebook'] = resNotebooks['notebook']; - } - else { - if (resNotebooks['notebook']) { - notebooks['notebook'] = [resNotebooks['notebook']]; - } - } - this.ajaxOk(req, res, null, { status: true, notebooks: notebooks, message: 'list' }); - }, error => { - sails.log.error('list: error'); - sails.log.error(error); - this.ajaxFail(req, res, error.message, { status: false, message: error.message }); - }); - } - link(req, res) { - const userId = req.user.id; - const username = req.user.username; - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - const rdmp = req.param('rdmp'); - const notebook = req.param('workspace'); - if (!notebook || !rdmp) { - const message = 'rdmp, notebook are missing'; - this.ajaxFail(req, res, message, { status: false, message: message }); - return; - } - const nbId = notebook['id']; - const nbName = notebook['name']; - sails.log.debug('notebook: ' + nbId); - sails.log.debug('name: ' + nbName); - if (!nbId || !nbName) { - const message = 'notebook or notebook name are missing'; - this.ajaxFail(req, res, message, { status: false, message: message }); - return; - } - let info = {}; - let workspace = null; - let metadataContent = ''; - let rdmpTitle = ''; - let recordMetadata = null; - WorkspaceService.getRecordMeta(this.config, rdmp) - .flatMap(response => { - sails.log.debug('recordMetadata'); - recordMetadata = response; - rdmpTitle = recordMetadata.title; - return WorkspaceService.workspaceAppFromUserId(userId, this.config.appName); - }) - .flatMap(response => { - info = response.info; - const record = { - rdmpOid: rdmp, - rdmpTitle: rdmpTitle, - title: nbName, - location: this.config.location, - description: this.config.description, - type: this.config.recordType - }; - return WorkspaceService.createWorkspaceRecord(this.config, username, record, this.config.recordType, this.config.workflowStage); - }) - .flatMap(response => { - workspace = response; - const insertNode = LabarchivesService.insertNode(this.config.key, info['id'], nbId, 'stash.workspace', false); - return rxjs_1.Observable.fromPromise(insertNode); - }) - .flatMap(response => { - if (response && response['tree-tools']) { - const tree = response['tree-tools']; - const node = tree['node']; - metadataContent = ` -
-

UTS

-

Workspace ${nbName} is linked to:

-

Research Data Management Plan ${rdmpTitle}

-

Stash Id: ${workspace.oid}

-
- `; - const partType = 'text entry'; - const insertNode = LabarchivesService.addEntry(this.config.key, info['id'], nbId, node['tree-id'], partType, metadataContent); - return rxjs_1.Observable.fromPromise(insertNode); - } - else - return rxjs_1.Observable.throwError(new Error('cannot insert node')); - }) - .flatMap(response => { - if (recordMetadata.workspaces) { - const wss = recordMetadata.workspaces.find(id => workspace.oid === id); - if (!wss) { - recordMetadata.workspaces.push({ id: workspace.oid }); - } - } - return WorkspaceService.updateRecordMeta(this.config, recordMetadata, rdmp); - }) - .subscribe(response => { - this.ajaxOk(req, res, null, { status: true, message: 'workspaceRecordCreated' }); - }, error => { - sails.log.error('link: error'); - sails.log.error(error); - this.ajaxFail(req, res, error.message, { status: false, message: error.message }); - }); - } - checkLink(req, res) { - const userId = req.user.id; - const username = req.user.username; - const rdmp = req.param('rdmp'); - const nbId = req.param('nbId'); - const workspace = req.param('workspace'); - let info = {}; - let check = { - link: '' - }; - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - return WorkspaceService.workspaceAppFromUserId(userId, this.config.appName) - .flatMap(response => { - info = response.info; - const nbTree = LabarchivesService.getNotebookTree(this.config.key, info['id'], nbId, 0); - return rxjs_1.Observable.fromPromise(nbTree); - }) - .subscribe(response => { - if (response['tree-tools'] && response['tree-tools']['level-nodes']) { - const lvlNodes = response['tree-tools']['level-nodes']; - const nodes = lvlNodes['level-node']; - if (Array.isArray(nodes)) { - nodes.map(node => { - if (node['display-text'] === 'stash.workspace') { - check.link = 'linked'; - } - }); - } - } - this.ajaxOk(req, res, null, { status: true, check: check, message: 'checkLink' }); - }, error => { - sails.log.error('checkLink: error'); - sails.log.error(error); - this.ajaxFail(req, res, error.message, { status: false, message: error.message }); - }); - } - createNotebook(req, res) { - const userId = req.user.id; - const name = req.param('name'); - const userEmail = req.param('userEmail'); - let supervisor = req.param('supervisor'); - const rdmp = req.param('rdmp'); - let recordMetadata = {}; - let rdmpTitle = ''; - let info = {}; - let nb; - this.config.brandingAndPortalUrl = BrandingService.getFullPath(req); - return WorkspaceService.getRecordMeta(this.config, rdmp) - .flatMap(response => { - sails.log.debug('recordMetadata'); - recordMetadata = response; - rdmpTitle = recordMetadata['title']; - const supervisorFromRDMP = recordMetadata['contributor_ci']['email']; - if (supervisor === supervisorFromRDMP) { - return WorkspaceService.workspaceAppFromUserId(userId, this.config.appName); - } - else { - rxjs_1.Observable.throwError(new Error('Supervisor email does not match workspace')); - } - sails.log.debug(recordMetadata); - }) - .flatMap((response) => __awaiter(this, void 0, void 0, function* () { - sails.log.debug('workspaceAppFromUserId'); - info = response.info; - sails.log.debug('userHasEmail'); - const supervisorHasEmail = yield LabarchivesService.userHasEmail(this.config.key, supervisor); - if (supervisorHasEmail && supervisorHasEmail['users'] && supervisorHasEmail['users']['account-for-email']['_']) { - sails.log.debug('createNotebook'); - const result = yield LabarchivesService.createNotebook(this.config.key, info['id'], name); - if (result && result.notebooks) { - nb = result.notebooks; - if (userEmail.toLowerCase() === supervisor.toLowerCase()) { - return rxjs_1.Observable.of(nb); - } - else { - const addUser = yield LabarchivesService.addUserToNotebook(this.config.key, info['id'], nb['nbid'], supervisor, 'ADMINISTRATOR'); - sails.log.debug('addUser'); - if (addUser) { - const nbu = addUser.notebooks['notebook-user']; - sails.log.debug(nbu); - return rxjs_1.Observable.of(nb); - } - else { - rxjs_1.Observable.throwError(new Error('Cannot add user to notebook')); - } - } - } - else { - rxjs_1.Observable.throwError(new Error('Notebook not created')); - } - } - else { - rxjs_1.Observable.throwError(new Error('Supervisor not on LabArchives')); - } - })) - .subscribe(response => { - sails.log.debug('create notebook'); - this.ajaxOk(req, res, null, { status: true, nb: nb['nbid'], name: name, message: 'createNotebook' }); - }, error => { - sails.log.error('createNotebook: error'); - sails.log.error(error); - this.ajaxFail(req, res, error.message, { status: false, message: error.message }); - }); - } - } - Controllers.LabarchivesController = LabarchivesController; -})(Controllers = exports.Controllers || (exports.Controllers = {})); -module.exports = new Controllers.LabarchivesController().exports(); diff --git a/api/core/CoreController.js b/api/core/CoreController.js deleted file mode 100644 index a4016bd..0000000 --- a/api/core/CoreController.js +++ /dev/null @@ -1,153 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const pathExists = require("path-exists"); -var Controllers; -(function (Controllers) { - var Core; - (function (Core) { - class Controller { - constructor() { - this._config = {}; - this._exportedMethods = []; - this._theme = 'default'; - this._layout = 'default'; - this._layoutRelativePath = '../_layouts/'; - this._defaultExportedMethods = [ - '_config', - ]; - } - exports() { - var methods = this._defaultExportedMethods.concat(this._exportedMethods); - var exportedMethods = {}; - for (var i = 0; i < methods.length; i++) { - if (typeof this[methods[i]] !== 'undefined') { - if (methods[i][0] !== '_' || methods[i] === '_config') { - if (_.isFunction(this[methods[i]])) { - exportedMethods[methods[i]] = this[methods[i]].bind(this); - } - else { - exportedMethods[methods[i]] = this[methods[i]]; - } - } - else { - console.error('The method "' + methods[i] + '" is not public and cannot be exported. ' + this); - } - } - else { - console.error('The method "' + methods[i] + '" does not exist on the controller ' + this); - } - } - return exportedMethods; - } - _handleRequest(req, res, callback, options = {}) { - callback(req, res, options); - } - index(req, res, callback, options = {}) { - res.notFound(); - } - _getResolvedView(branding, portal, view) { - var resolvedView = null; - var viewToTest = sails.config.appPath + "/views/" + branding + "/" + portal + "/" + view + ".ejs"; - if (pathExists.sync(viewToTest)) { - resolvedView = branding + "/" + portal + "/" + view; - } - if (resolvedView == null) { - viewToTest = sails.config.appPath + "/views/default/" + portal + "/" + view + ".ejs"; - if (pathExists.sync(viewToTest)) { - resolvedView = "default/" + portal + "/" + view; - } - } - if (resolvedView == null) { - viewToTest = sails.config.appPath + "/views/default/default/" + view + ".ejs"; - if (pathExists.sync(viewToTest)) { - resolvedView = "default/default/" + view; - } - } - return resolvedView; - } - _getResolvedLayout(branding, portal) { - var resolvedLayout = null; - var layoutToTest = sails.config.appPath + "/views/" + branding + "/" + portal + "/layout/layout.ejs"; - if (pathExists.sync(layoutToTest)) { - resolvedLayout = branding + "/" + portal + "/layout"; - } - if (resolvedLayout == null) { - layoutToTest = sails.config.appPath + "/views/default/" + portal + "/layout.ejs"; - if (pathExists.sync(layoutToTest)) { - resolvedLayout = "/default/" + portal + "/layout"; - } - } - if (resolvedLayout == null) { - layoutToTest = sails.config.appPath + "/views/default/default/" + "layout.ejs"; - if (pathExists.sync(layoutToTest)) { - resolvedLayout = "default/default/layout"; - } - } - return resolvedLayout; - } - sendView(req, res, view, locals = {}) { - if (req.options.locals == null) { - req.options.locals = {}; - } - var mergedLocal = Object.assign({}, req.options.locals, locals); - var branding = mergedLocal['branding']; - var portal = mergedLocal['portal']; - var resolvedView = this._getResolvedView(branding, portal, view); - var resolvedLayout = this._getResolvedLayout(branding, portal); - if (resolvedLayout != null && mergedLocal["layout"] != false) { - res.locals.layout = resolvedLayout; - } - if (resolvedView == null) { - res.notFound(mergedLocal, "404"); - } - mergedLocal.view = {}; - mergedLocal.view.pathFromApp = resolvedView; - mergedLocal.view.ext = 'ejs'; - _.merge(mergedLocal, this.getNg2Apps(view)); - sails.log.error("resolvedView"); - sails.log.error(resolvedView); - sails.log.error("mergedLocal"); - sails.log.error(mergedLocal); - res.view(resolvedView, mergedLocal); - } - respond(req, res, ajaxCb, normalCb, forceAjax) { - if (req.headers['x-source'] == 'jsclient' || forceAjax == true) { - return ajaxCb(req, res); - } - else { - return normalCb(req, res); - } - } - ajaxOk(req, res, msg = '', data = null, forceAjax = false) { - if (!data) { - data = { status: true, message: msg }; - } - this.ajaxRespond(req, res, data, forceAjax); - } - ajaxFail(req, res, msg = '', data = null, forceAjax = false) { - if (!data) { - data = { status: false, message: msg }; - } - this.ajaxRespond(req, res, data, forceAjax); - } - ajaxRespond(req, res, jsonObj = null, forceAjax) { - var notAjaxMsg = "Got non-ajax request, don't know what do..."; - this.respond(req, res, (req, res) => { - return res.json(jsonObj); - }, (req, res) => { - sails.log.verbose(notAjaxMsg); - res.notFound(notAjaxMsg); - }, forceAjax); - } - getNg2Apps(viewPath) { - if (sails.config.ng2.use_bundled && sails.config.ng2.apps[viewPath]) { - return { ng2_apps: sails.config.ng2.apps[viewPath] }; - } - else { - return { ng2_apps: [] }; - } - } - } - Core.Controller = Controller; - })(Core = Controllers.Core || (Controllers.Core = {})); -})(Controllers = exports.Controllers || (exports.Controllers = {})); diff --git a/api/core/CoreService.js b/api/core/CoreService.js deleted file mode 100644 index bae8194..0000000 --- a/api/core/CoreService.js +++ /dev/null @@ -1,51 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const Rx_1 = require("rxjs/Rx"); -const _ = require('lodash'); -var Services; -(function (Services) { - var Core; - (function (Core) { - class Service { - constructor() { - this._exportedMethods = []; - this._defaultExportedMethods = [ - '_config', - ]; - } - getObservable(q, method = 'exec', type = 'node') { - if (type == 'node') - return Rx_1.Observable.bindNodeCallback(q[method].bind(q))(); - else - return Rx_1.Observable.bindCallback(q[method].bind(q))(); - } - exec(q, successFn, errorFn) { - this.getObservable(q).subscribe(successFn, errorFn); - } - exports() { - var methods = this._defaultExportedMethods.concat(this._exportedMethods); - var exportedMethods = {}; - for (var i = 0; i < methods.length; i++) { - if (typeof this[methods[i]] !== 'undefined') { - if (methods[i][0] !== '_' || methods[i] === '_config') { - if (_.isFunction(this[methods[i]])) { - exportedMethods[methods[i]] = this[methods[i]].bind(this); - } - else { - exportedMethods[methods[i]] = this[methods[i]]; - } - } - else { - console.error('The method "' + methods[i] + '" is not public and cannot be exported. ' + this); - } - } - else { - console.error('The method "' + methods[i] + '" does not exist on the controller ' + this); - } - } - return exportedMethods; - } - } - Core.Service = Service; - })(Core = Services.Core || (Services.Core = {})); -})(Services = exports.Services || (exports.Services = {})); diff --git a/api/services/LabarchivesService.js b/api/services/LabarchivesService.js deleted file mode 100644 index d7f7150..0000000 --- a/api/services/LabarchivesService.js +++ /dev/null @@ -1,170 +0,0 @@ -"use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const la = require("@uts-eresearch/provision-labarchives"); -const Config_1 = require("../Config"); -const services = require("../core/CoreService"); -var Services; -(function (Services) { - class LabarchivesService extends services.Services.Core.Service { - constructor() { - super(); - this._exportedMethods = [ - 'login', - 'userInfo', - 'insertNode', - 'addEntry', - 'getNotebookInfo', - 'getNotebookTree', - 'createNotebook', - 'addUserToNotebook', - 'userHasEmail' - ]; - this.config = new Config_1.Config(sails.config.workspaces); - } - login(key, username, password) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.accessInfo(key, username, password); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - userInfo(key, userId) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.userInfoViaId(key, userId); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - insertNode(key, userId, nbId, displayText) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.insertNode(key, userId, nbId, 0, displayText, false); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - addEntry(key, userId, nbId, treeId, partType, metadata) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.addEntry(key, userId, nbId, treeId, partType, metadata); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - getNotebookInfo(key, userId, nbId) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.getNotebookInfo(key, userId, nbId); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - getNotebookTree(key, userId, nbId, treeLevel = 0) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.getTree(key, userId, nbId, treeLevel); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - createNotebook(key, userId, name) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.createNotebook(key, userId, name); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - addUserToNotebook(key, uid, nbid, email, userRole) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.addUserToNotebook(key, uid, nbid, email, userRole); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - userHasEmail(key, email) { - return __awaiter(this, void 0, void 0, function* () { - try { - if (key && key['akid'] && key['password']) { - return yield la.emailHasAccount(key, email); - } - else { - return Promise.reject(new Error('missing keys for accessing lab archives APIs')); - } - } - catch (e) { - return Promise.reject(new Error(e)); - } - }); - } - } - Services.LabarchivesService = LabarchivesService; -})(Services = exports.Services || (exports.Services = {})); -module.exports = new Services.LabarchivesService().exports(); diff --git a/typescript/api/core/CoreController.ts b/typescript/api/core/CoreController.ts deleted file mode 100644 index e2f0514..0000000 --- a/typescript/api/core/CoreController.ts +++ /dev/null @@ -1,274 +0,0 @@ -declare var _; -declare var sails; - -import pathExists = require('path-exists'); -export module Controllers.Core { - - /** - * Core controller which defines common logic between controllers. - * - * Workflow details: - * - First, the "_handleRequest" method must be called. It ensures common stuff happens, and bind some data into the option object. - * - It calls a magic method such as "__beforeIndex" if the request was coming from an "index" method. - * - If it doesn't find any specific magic method to call, it calls directly the "__beforeEach" method. - * - If it does find a custom magic method, then the "__beforeIndex" will automatically call the "__beforeEach" once it is done. - * - Once all the "__before" magic methods have been called, the caller's callback function is called. - * - * The options object contains specific stuff that belongs to the controllers logic, I could have use the req but I prefer not. - * - * The public methods such as index/show/etc. are defined but send by default a 404 response if they are not overridden in the child class. - * They exists just to bind by default all these methods without take care if they exists or not in order to speed up development. - */ - export class Controller { - - /** - * Overrides for the settings in `config/controllers.js` - * (specific to the controller where it's defined) - * Specific to sails. Don't rename. - */ - protected _config: any = {}; - - /** - * Exported methods. Must be overridden by the child to add custom methods. - */ - protected _exportedMethods: string[] = []; - - /** - * Theme used by the controller by default. - * Could be overridden by the user theme. (One day, when the feature will be done...) - */ - protected _theme: string = 'default'; - - /** - * Layout used by the controller by default. - */ - protected _layout: string = 'default'; - - /** - * Relative path to a layout from a view. - */ - protected _layoutRelativePath: string = '../_layouts/'; - - /** - * Default exported methods. - * These methods will be accessible. - */ - private _defaultExportedMethods: string[] = [ - // Sails controller custom config. - '_config', - ]; - - /** - ************************************************************************************************** - **************************************** Public methods ****************************************** - ************************************************************************************************** - */ - - /** - * Returns an object that contains all exported methods of the controller. - * These methods must be defined in either the "_defaultExportedMethods" or "_exportedMethods" arrays. - * - * @returns {*} - */ - public exports(): any { - // Merge default array and custom array from child. - var methods: any = this._defaultExportedMethods.concat(this._exportedMethods); - var exportedMethods: any = {}; - - for (var i = 0; i < methods.length; i++) { - // Check if the method exists. - if (typeof this[methods[i]] !== 'undefined') { - // Check that the method shouldn't be private. (Exception for _config, which is a sails config) - if (methods[i][0] !== '_' || methods[i] === '_config') { - - if (_.isFunction(this[methods[i]])) { - exportedMethods[methods[i]] = this[methods[i]].bind(this); - } else { - exportedMethods[methods[i]] = this[methods[i]]; - } - } else { - console.error('The method "' + methods[i] + '" is not public and cannot be exported. ' + this); - } - } else { - console.error('The method "' + methods[i] + '" does not exist on the controller ' + this); - } - } - - return exportedMethods; - } - - /** - ************************************************************************************************** - **************************************** Protected methods ****************************************** - ************************************************************************************************** - */ - - /** - * Acts as a requests workflow handler to automatically call magic methods such as "__before". - * Used to call magic methods before the targeted methods is called. - * Bind some data as well, like the current controller and action name. - * - * @param req Request. - * @param res Response. - * @param callback Function to execute. - * @param options Object that contains options. - * controller Controller Child controller class. (static) - * - */ - protected _handleRequest(req, res, callback, options: any = {}): void { - callback(req, res, options); - } - - /** - ************************************************************************************************** - **************************************** Controller basic methods ******************************** - ************************************************************************************************** - */ - - /** - * Displays the global content, displays several resources. - * This method is just to return a 404 error and explain the role. - * - * @param req Request. - * @param res Response. - * @param callback Function to execute. - * @param options Object that contains options. - */ - public index(req, res, callback: any, options: any = {}) { - res.notFound(); - } - - - public _getResolvedView(branding: string, portal: string, view: string): string { - var resolvedView: string = null; - - //Check if view exists for branding and portal - var viewToTest: string = sails.config.appPath + "/views/" + branding + "/" + portal + "/" + view + ".ejs"; - if (pathExists.sync(viewToTest)) { - resolvedView = branding + "/" + portal + "/" + view; - } - // If view doesn't exist, next try for portal with default branding - if (resolvedView == null) { - viewToTest = sails.config.appPath + "/views/default/" + portal + "/" + view + ".ejs"; - if (pathExists.sync(viewToTest)) { - resolvedView = "default/" + portal + "/" + view; - } - } - - // If view still doesn't exist, next try for default portal with default branding - if (resolvedView == null) { - viewToTest = sails.config.appPath + "/views/default/default/" + view + ".ejs"; - if (pathExists.sync(viewToTest)) { - resolvedView = "default/default/" + view; - } - } - - return resolvedView; - } - - public _getResolvedLayout(branding: string, portal: string): string { - var resolvedLayout: string = null; - - //Check if view exists for branding and portal - var layoutToTest: string = sails.config.appPath + "/views/" + branding + "/" + portal + "/layout/layout.ejs"; - if (pathExists.sync(layoutToTest)) { - resolvedLayout = branding + "/" + portal + "/layout"; - } - // If view doesn't exist, next try for portal with default branding - if (resolvedLayout == null) { - layoutToTest = sails.config.appPath + "/views/default/" + portal + "/layout.ejs"; - if (pathExists.sync(layoutToTest)) { - resolvedLayout = "/default/" + portal + "/layout"; - } - } - - // If view still doesn't exist, next try for default portal with default branding - if (resolvedLayout == null) { - layoutToTest = sails.config.appPath + "/views/default/default/" + "layout.ejs"; - if (pathExists.sync(layoutToTest)) { - resolvedLayout = "default/default/layout"; - } - } - - return resolvedLayout; - } - - public sendView(req, res, view: string, locals: any = {}) { - - if (req.options.locals == null) { - req.options.locals = {}; - } - var mergedLocal = (Object).assign({}, req.options.locals, locals); - - var branding = mergedLocal['branding']; - var portal = mergedLocal['portal']; - - var resolvedView: string = this._getResolvedView(branding, portal, view); - var resolvedLayout: string = this._getResolvedLayout(branding, portal); - - // If we can resolve a layout set it. - if (resolvedLayout != null && mergedLocal["layout"] != false) { - res.locals.layout = resolvedLayout; - } - - // View still doesn't exist so return a 404 - if (resolvedView == null) { - res.notFound(mergedLocal, "404"); - } - - // Add some properties blueprints usually adds - // TODO: Doesn't seem to be binding properly. Investigate - mergedLocal.view = {}; - mergedLocal.view.pathFromApp = resolvedView; - mergedLocal.view.ext = 'ejs'; - // merge with ng2 app... - _.merge(mergedLocal, this.getNg2Apps(view)); - sails.log.error("resolvedView"); - sails.log.error(resolvedView); - sails.log.error("mergedLocal"); - sails.log.error(mergedLocal); - res.view(resolvedView, mergedLocal); - } - - public respond(req, res, ajaxCb, normalCb, forceAjax) { - if (req.headers['x-source'] == 'jsclient' || forceAjax == true) { - return ajaxCb(req, res); - } else { - return normalCb(req, res); - } - } - - protected ajaxOk(req, res, msg='', data=null, forceAjax=false) { - if (!data) { - data = {status:true, message:msg}; - } - this.ajaxRespond(req, res, data, forceAjax); - } - - protected ajaxFail(req, res, msg='', data=null, forceAjax=false) { - if (!data) { - data = {status:false, message:msg}; - } - this.ajaxRespond(req, res, data, forceAjax); - } - - protected ajaxRespond(req, res, jsonObj=null, forceAjax) { - var notAjaxMsg = "Got non-ajax request, don't know what do..."; - this.respond(req, res, (req, res) => { - return res.json(jsonObj); - }, (req, res)=> { - sails.log.verbose(notAjaxMsg); - res.notFound(notAjaxMsg); - }, forceAjax); - } - - protected getNg2Apps(viewPath) { - if (sails.config.ng2.use_bundled && sails.config.ng2.apps[viewPath]) { - return {ng2_apps:sails.config.ng2.apps[viewPath]}; - } else { - return {ng2_apps: []}; - } - } - - } -} diff --git a/typescript/api/core/CoreService.ts b/typescript/api/core/CoreService.ts deleted file mode 100644 index 879d91a..0000000 --- a/typescript/api/core/CoreService.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { Observable } from 'rxjs/Rx'; -const _ = require('lodash'); - -export module Services.Core { - export class Service { - /** - * Exported methods. Must be overridden by the child to add custom methods. - */ - protected _exportedMethods: string[] = []; - /** - * Default exported methods. - * These methods will be accessible. - */ - private _defaultExportedMethods: string[] = [ - // Sails controller custom config. - '_config', - ]; - /** - * Returns an RxJS Observable wrapped nice and tidy for your subscribing pleasure - */ - protected getObservable(q, method='exec', type='node'): Observable { - if (type == 'node') - return Observable.bindNodeCallback(q[method].bind(q))(); - else - return Observable.bindCallback(q[method].bind(q))(); - } - - /** - * Wrapper for straightforward query, no chaining.. - */ - protected exec(q, successFn, errorFn) { - this.getObservable(q).subscribe(successFn, errorFn); - } - /** - * Returns an object that contains all exported methods of the controller. - * These methods must be defined in either the "_defaultExportedMethods" or "_exportedMethods" arrays. - * - * @returns {*} - */ - public exports(): any { - // Merge default array and custom array from child. - var methods: any = this._defaultExportedMethods.concat(this._exportedMethods); - var exportedMethods: any = {}; - - for (var i = 0; i < methods.length; i++) { - // Check if the method exists. - if (typeof this[methods[i]] !== 'undefined') { - // Check that the method shouldn't be private. (Exception for _config, which is a sails config) - if (methods[i][0] !== '_' || methods[i] === '_config') { - - if (_.isFunction(this[methods[i]])) { - exportedMethods[methods[i]] = this[methods[i]].bind(this); - } else { - exportedMethods[methods[i]] = this[methods[i]]; - } - } else { - console.error('The method "' + methods[i] + '" is not public and cannot be exported. ' + this); - } - } else { - console.error('The method "' + methods[i] + '" does not exist on the controller ' + this); - } - } - - return exportedMethods; - } - } -} From e009d0309e46fbc35aa095440ecff3c14e8c41be Mon Sep 17 00:00:00 2001 From: Andrew Brazzatti Date: Wed, 10 Jan 2024 05:49:15 +0000 Subject: [PATCH 02/10] Upgraded node and typescript versions to latest major version Added core-types library and refactored code to use it Added CircleCI build config --- .circleci/config.yml | 67 + .gitignore | 1 + .nvmrc | 1 + package-lock.json | 3884 ++++++++++------- package.json | 7 +- tsconfig.json | 62 +- .../api/controllers/LabarchivesController.ts | 6 +- typescript/api/services/LabarchivesService.ts | 5 +- yarn.lock | 2106 +++++---- 9 files changed, 3571 insertions(+), 2568 deletions(-) create mode 100644 .circleci/config.yml create mode 100644 .nvmrc diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..4351fb0 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,67 @@ +version: 2.1 +jobs: + build_and_publish: + docker: + - image: cimg/node:20.9.0 + working_directory: ~/repo + steps: + - checkout + - run: npm install && node_modules/.bin/tsc + # run tests! + # - run: npm test + # # store test results + # - store_test_results: + # path: test_results + + # store code coverage + # - persist_to_workspace: + # root: ~/repo + # paths: . + - run: + name: Authenticate with NPM + command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc + - run: + name: Publish package + command: npm publish --access public + +workflows: + publish: + jobs: + - build_and_publish: + filters: + tags: + only: /^v.*/ + branches: + ignore: /.*/ + +# jobs: +# build: +# docker: +# - image: "cimg/base:stable" +# - checkout +# - node/install: +# node-version: 12.16.0 +# - run: npm install --production +# - run: node_modules/.bin/tsc +# - persist_to_workspace: +# root: . +# paths: +# - . +# test: +# machine: true +# steps: +# - docker/install-docker-compose +# - attach_workspace: +# at: /home/circleci/project +# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm install 12.16.0 && nvm use 12.16.0 +# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm use 12.16.0 && node_modules/.bin/tsc -p tsconfig-codecov.json +# - run: (cd support/integration-testing && docker-compose -f docker-compose.newman.yml up --abort-on-container-exit --exit-code-from redboxportal && docker-compose -f docker-compose.mocha.yml up --abort-on-container-exit --exit-code-from redboxportal) +# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm use 12.16.0 && npm i -g codecov && codecov -t $CODECOV_TOKEN +# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm use 12.16.0 && node_modules/.bin/tsc +# +# orbs: +# node: circleci/node@4.0.0 +# docker: circleci/docker@1.4.0 +# version: 2.1 +# workflows: +# diff --git a/.gitignore b/.gitignore index 23cc084..2b1b762 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ e2e/*.map Thumbs.db test/angular +api/* diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..43bff1f --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +20.9.0 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index f93d837..311bf83 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,174 +1,237 @@ { "name": "sails-hook-redbox-labarchives", - "version": "1.0.2", - "lockfileVersion": 1, + "version": "1.1.0", + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@sailshq/lodash": { + "packages": { + "": { + "name": "sails-hook-redbox-labarchives", + "version": "1.1.0", + "license": "GPL-3.0", + "dependencies": { + "@researchdatabox/redbox-core-types": "^1.4.2", + "@uts-eresearch/provision-labarchives": "^1.1.5", + "lodash": "^4.17.15", + "ncp": "^2.0.0", + "path-exists": "^4.0.0", + "request": "^2.88.0", + "request-promise": "^4.2.4", + "rxjs": "6.5.2", + "rxjs-compat": "6.5.2" + }, + "devDependencies": { + "@types/lodash": "^4.14.134", + "@types/node": "^20.10.3", + "mocha": "^6.1.4", + "sails": "^1.0.2", + "supertest": "^4.0.2", + "typescript": "^5.3.3" + } + }, + "node_modules/@researchdatabox/redbox-core-types": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@researchdatabox/redbox-core-types/-/redbox-core-types-1.4.2.tgz", + "integrity": "sha512-npuaYjnbS2Ed8khDCGYJBiXnu6U3Vkd40b2/KArKCB2XD1xGwtp93ZpncueMVrbgPAUk8IuEEWtdmEGCK+4NKQ==", + "dependencies": { + "@tsconfig/node18": "^18.2.0" + } + }, + "node_modules/@sailshq/lodash": { "version": "3.10.3", "resolved": "https://registry.npmjs.org/@sailshq/lodash/-/lodash-3.10.3.tgz", "integrity": "sha512-XTF5BtsTSiSpTnfqrCGS5Q8FvSHWCywA0oRxFAZo8E1a8k1MMFUvk3VlRk3q/SusEYwy7gvVdyt9vvNlTa2VuA==", "dev": true }, - "@types/lodash": { + "node_modules/@tsconfig/node18": { + "version": "18.2.2", + "resolved": "https://registry.npmjs.org/@tsconfig/node18/-/node18-18.2.2.tgz", + "integrity": "sha512-d6McJeGsuoRlwWZmVIeE8CUA27lu6jLjvv1JzqmpsytOYYbVi1tHZEnwCNVOXnj4pyLvneZlFlpXUK+X9wBWyw==" + }, + "node_modules/@types/lodash": { "version": "4.14.134", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.134.tgz", "integrity": "sha512-2/O0khFUCFeDlbi7sZ7ZFRCcT812fAeOLm7Ev4KbwASkZ575TDrDcY7YyaoHdTOzKcNbfiwLYZqPmoC4wadrsw==", "dev": true }, - "@types/node": { - "version": "10.12.18", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz", - "integrity": "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==", - "dev": true + "node_modules/@types/node": { + "version": "20.10.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.8.tgz", + "integrity": "sha512-f8nQs3cLxbAFc00vEU59yf9UyGUftkPaLGfvbVOIDdx2i1b8epBqj2aNGyP19fiyXWvlmZ7qC1XLjAzw/OKIeA==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, - "@uts-eresearch/provision-labarchives": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@uts-eresearch/provision-labarchives/-/provision-labarchives-1.1.2.tgz", - "integrity": "sha512-yZrtTE5WArAliP746pf8AShpecWtgvqPzjKI6kvaF1ohMS5Bnyk+xKRTrSpzOFWABQCMeIutLVcNK4Isjq0qcA==", - "requires": { - "axios": "^0.19.0", + "node_modules/@uts-eresearch/provision-labarchives": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@uts-eresearch/provision-labarchives/-/provision-labarchives-1.1.6.tgz", + "integrity": "sha512-SvI8casUwKtL6zvOULDcEfZv2mzdfzdoz1W6MyLsqJa9vyah8jCOHxyGFVyh+4fbLl7cizl4vVu7UwGGWsB1rQ==", + "dependencies": { + "axios": "^0.21.1", "common-tags": "^1.4.0", - "lodash": "^4.17.15", - "underscore": "^1.8.3", + "lodash": "^4.17.21", + "underscore": "^1.12.1", "xml2js": "^0.4.19" } }, - "accepts": { + "node_modules/@uts-eresearch/provision-labarchives/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/accepts": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", "dev": true, - "requires": { + "dependencies": { "mime-types": "~2.1.18", "negotiator": "0.6.1" + }, + "engines": { + "node": ">= 0.6" } }, - "ajv": { + "node_modules/ajv": { "version": "6.5.5", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz", "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==", - "requires": { + "dependencies": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, - "anchor": { + "node_modules/anchor": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/anchor/-/anchor-1.3.0.tgz", "integrity": "sha512-mA+EfMr/WVT69u1HisKqQED7+LmTxpb0Lm9Lo/qTT/uf7AOFA3qYYb/ZPiMi3aQqWn2ji4fC6UQuRIP0XBV9ZA==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "validator": "5.7.0" } }, - "ansi-colors": { + "node_modules/ansi-colors": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "ansi-regex": { + "node_modules/ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "ansi-styles": { + "node_modules/ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "argparse": { + "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "requires": { + "dependencies": { "sprintf-js": "~1.0.2" } }, - "array-flatten": { + "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", "dev": true }, - "asn1": { + "node_modules/asn1": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { + "dependencies": { "safer-buffer": "~2.1.0" } }, - "assert-plus": { + "node_modules/assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "engines": { + "node": ">=0.8" + } }, - "async": { + "node_modules/async": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", "dev": true, - "requires": { + "dependencies": { "lodash": "^4.14.0" } }, - "asynckit": { + "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, - "aws-sign2": { + "node_modules/aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "engines": { + "node": "*" + } }, - "aws4": { + "node_modules/aws4": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" }, - "axios": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.1.tgz", - "integrity": "sha512-Yl+7nfreYKaLRvAvjNPkvfjnQHJM1yLBY3zhqAwcJSwR/6ETkanUgylgtIvkvz0xJ+p/vZuNw8X7Hnb7Whsbpw==", - "requires": { - "follow-redirects": "1.5.10" + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" } }, - "balanced-match": { + "node_modules/balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, - "bcrypt-pbkdf": { + "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { + "dependencies": { "tweetnacl": "^0.14.3" } }, - "bluebird": { + "node_modules/bluebird": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.2.1.tgz", "integrity": "sha1-POzzUEkEwwzj55wXCHfok6EZEP0=", "dev": true }, - "body-parser": { + "node_modules/body-parser": { "version": "1.18.2", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", "dev": true, - "requires": { + "dependencies": { "bytes": "3.0.0", "content-type": "~1.0.4", "debug": "2.6.9", @@ -180,249 +243,295 @@ "raw-body": "2.3.2", "type-is": "~1.6.15" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - } + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/body-parser/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/body-parser/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "brace-expansion": { + "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "requires": { + "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "browser-stdout": { + "node_modules/browser-stdout": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", "dev": true }, - "bytes": { + "node_modules/bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "camelcase": { + "node_modules/camelcase": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "captains-log": { + "node_modules/captains-log": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/captains-log/-/captains-log-2.0.0.tgz", "integrity": "sha512-ICNwMIjnPvEm9tVoZ1mxFtuN3t9hCFjVOXj5AgeYBrnqErgx0zd4JqueEv6LgRQzSssYe4Tj//S3W86G68pbmg==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "chalk": "1.1.3", "rc": "1.0.1", "semver": "5.4.1" + } + }, + "node_modules/captains-log/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/captains-log/node_modules/rc": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.0.1.tgz", + "integrity": "sha1-+RnCXoBMsKpg9v2S2Sn8hrRQE+g=", + "dev": true, "dependencies": { - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "rc": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.0.1.tgz", - "integrity": "sha1-+RnCXoBMsKpg9v2S2Sn8hrRQE+g=", - "dev": true, - "requires": { - "deep-extend": "~0.2.5", - "ini": "~1.3.0", - "minimist": "~0.0.7", - "strip-json-comments": "0.1.x" - } - }, - "semver": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", - "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==", - "dev": true - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } + "deep-extend": "~0.2.5", + "ini": "~1.3.0", + "minimist": "~0.0.7", + "strip-json-comments": "0.1.x" + }, + "bin": { + "rc": "index.js" + } + }, + "node_modules/captains-log/node_modules/semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==", + "dev": true, + "bin": { + "semver": "bin/semver" } }, - "caseless": { + "node_modules/captains-log/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, - "chalk": { + "node_modules/chalk": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", "dev": true, - "requires": { + "dependencies": { "ansi-styles": "^3.1.0", "escape-string-regexp": "^1.0.5", "supports-color": "^4.0.0" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - } + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "cliui": { + "node_modules/cliui": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", "dev": true, - "requires": { + "dependencies": { "string-width": "^2.1.1", "strip-ansi": "^4.0.0", "wrap-ansi": "^2.0.0" - }, + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "code-point-at": { + "node_modules/code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "color-convert": { + "node_modules/color-convert": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", "dev": true, - "requires": { + "dependencies": { "color-name": "^1.1.1" } }, - "color-name": { + "node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, - "colors": { + "node_modules/colors": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.1.90" + } }, - "combined-stream": { + "node_modules/combined-stream": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", - "requires": { + "dependencies": { "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "commander": { + "node_modules/commander": { "version": "2.11.0", "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==", "dev": true }, - "common-js-file-extensions": { + "node_modules/common-js-file-extensions": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/common-js-file-extensions/-/common-js-file-extensions-1.0.2.tgz", "integrity": "sha1-Hs8ThwARVtpoD1gUmovpvrgEvx4=", "dev": true }, - "common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } }, - "component-emitter": { + "node_modules/component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "dev": true }, - "compressible": { + "node_modules/compressible": { "version": "2.0.13", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz", "integrity": "sha1-DRAgq5JLL9tNYnmHXH1tq6a6p6k=", "dev": true, - "requires": { + "dependencies": { "mime-db": ">= 1.33.0 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "compression": { + "node_modules/compression": { "version": "1.7.1", "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.1.tgz", "integrity": "sha1-7/JgPvwuIs+G810uuTWJ+YdTc9s=", "dev": true, - "requires": { + "dependencies": { "accepts": "~1.3.4", "bytes": "3.0.0", "compressible": "~2.0.11", @@ -431,329 +540,400 @@ "safe-buffer": "5.1.1", "vary": "~1.1.2" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } + "ms": "2.0.0" } }, - "concat-map": { + "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, - "connect": { + "node_modules/connect": { "version": "3.6.5", "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.5.tgz", "integrity": "sha1-+43ee6B2OHfQ7J352sC0tA5yx9o=", "dev": true, - "requires": { + "dependencies": { "debug": "2.6.9", "finalhandler": "1.0.6", "parseurl": "~1.3.2", "utils-merge": "1.0.1" }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } + "ms": "2.0.0" } }, - "content-disposition": { + "node_modules/content-disposition": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "content-type": { + "node_modules/content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "convert-to-ecmascript-compatible-varname": { + "node_modules/convert-to-ecmascript-compatible-varname": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/convert-to-ecmascript-compatible-varname/-/convert-to-ecmascript-compatible-varname-0.1.4.tgz", "integrity": "sha1-Sf9G6WwdNWqR1Lg+X/4BM8PIrBQ=", "dev": true }, - "cookie": { + "node_modules/cookie": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "cookie-parser": { + "node_modules/cookie-parser": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz", "integrity": "sha1-D+MfoZ0AC5X0qt8fU/3CuKIDuqU=", "dev": true, - "requires": { + "dependencies": { "cookie": "0.3.1", "cookie-signature": "1.0.6" + }, + "engines": { + "node": ">= 0.8.0" } }, - "cookie-signature": { + "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", "dev": true }, - "cookiejar": { + "node_modules/cookiejar": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==", "dev": true }, - "core-util-is": { + "node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, - "crc": { + "node_modules/crc": { "version": "3.4.4", "resolved": "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz", "integrity": "sha1-naHpgOO9RPxck79as9ozeNheRms=", "dev": true }, - "cross-spawn": { + "node_modules/cross-spawn": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz", "integrity": "sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE=", "dev": true, - "requires": { + "dependencies": { "lru-cache": "^4.0.1", "which": "^1.2.9" } }, - "csrf": { + "node_modules/csrf": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz", "integrity": "sha1-thEg3c7q/JHnbtUxO7XAsmZ7cQo=", "dev": true, - "requires": { + "dependencies": { "rndm": "1.2.0", "tsscmp": "1.0.5", "uid-safe": "2.1.4" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/csrf/node_modules/uid-safe": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz", + "integrity": "sha1-Otbzg2jG1MjHXsF2I/t5qh0HHYE=", + "dev": true, "dependencies": { - "uid-safe": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz", - "integrity": "sha1-Otbzg2jG1MjHXsF2I/t5qh0HHYE=", - "dev": true, - "requires": { - "random-bytes": "~1.0.0" - } - } + "random-bytes": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "csurf": { + "node_modules/csurf": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/csurf/-/csurf-1.9.0.tgz", "integrity": "sha1-SdLGkl/87Ht95VlZfBU/pTM2QTM=", "dev": true, - "requires": { + "dependencies": { "cookie": "0.3.1", "cookie-signature": "1.0.6", "csrf": "~3.0.3", "http-errors": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "cycle": { + "node_modules/cycle": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", "integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, - "dashdash": { + "node_modules/dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { + "dependencies": { "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" } }, - "debug": { + "node_modules/debug": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { + "dev": true, + "dependencies": { "ms": "2.0.0" } }, - "decamelize": { + "node_modules/decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "deep-equal": { + "node_modules/deep-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", "dev": true }, - "deep-extend": { + "node_modules/deep-extend": { "version": "0.2.11", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz", "integrity": "sha1-eha6aXKRMjQFBhcElLyD9wdv4I8=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4" + } }, - "define-properties": { + "node_modules/define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dev": true, - "requires": { + "dependencies": { "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" } }, - "delayed-stream": { + "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "engines": { + "node": ">=0.4.0" + } }, - "depd": { + "node_modules/depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "destroy": { + "node_modules/destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", "dev": true }, - "diff": { + "node_modules/diff": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.3.1" + } }, - "dot-access": { + "node_modules/dot-access": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dot-access/-/dot-access-1.0.0.tgz", "integrity": "sha1-o2LlolkGtVurSKQtEBU4cmBh+mg=", "dev": true }, - "double-ended-queue": { + "node_modules/double-ended-queue": { "version": "2.1.0-0", "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=", "dev": true }, - "ecc-jsbn": { + "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { + "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, - "ee-first": { + "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, - "ejs": { + "node_modules/ejs": { "version": "2.5.7", "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz", "integrity": "sha1-zIcsFoiArjxxiXYv1f/ACJbJUYo=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "emoji-regex": { + "node_modules/emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, - "encodeurl": { + "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "end-of-stream": { + "node_modules/end-of-stream": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", "dev": true, - "requires": { + "dependencies": { "once": "^1.4.0" } }, - "es-abstract": { + "node_modules/es-abstract": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", "dev": true, - "requires": { + "dependencies": { "es-to-primitive": "^1.2.0", "function-bind": "^1.1.1", "has": "^1.0.3", "is-callable": "^1.1.4", "is-regex": "^1.0.4", "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" } }, - "es-to-primitive": { + "node_modules/es-to-primitive": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", "dev": true, - "requires": { + "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, - "escape-html": { + "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", "dev": true }, - "escape-string-regexp": { + "node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, - "esprima": { + "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } }, - "etag": { + "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "execa": { + "node_modules/execa": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, - "requires": { + "dependencies": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", "is-stream": "^1.1.0", @@ -762,34 +942,41 @@ "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true, + "bin": { + "semver": "bin/semver" } }, - "express": { + "node_modules/express": { "version": "4.16.2", "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=", "dev": true, - "requires": { + "dependencies": { "accepts": "~1.3.4", "array-flatten": "1.1.1", "body-parser": "1.18.2", @@ -821,51 +1008,16 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "finalhandler": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", - "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.1", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.3.1", - "unpipe": "~1.0.0" - } - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - } + "engines": { + "node": ">= 0.10.0" } }, - "express-session": { + "node_modules/express-session": { "version": "1.15.6", "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz", "integrity": "sha512-r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA==", "dev": true, - "requires": { + "dependencies": { "cookie": "0.3.1", "cookie-signature": "1.0.6", "crc": "3.4.4", @@ -876,60 +1028,106 @@ "uid-safe": "~2.1.5", "utils-merge": "1.0.1" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/express-session/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/finalhandler": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", + "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.1", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.3.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "extend": { + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "node_modules/express/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "extsprintf": { + "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ] }, - "eyes": { + "node_modules/eyes": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=", - "dev": true + "dev": true, + "engines": { + "node": "> 0.1.90" + } }, - "fast-deep-equal": { + "node_modules/fast-deep-equal": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" }, - "fast-json-stable-stringify": { + "node_modules/fast-json-stable-stringify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" }, - "fd-slicer": { + "node_modules/fd-slicer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", "dev": true, - "requires": { + "dependencies": { "pend": "~1.2.0" } }, - "finalhandler": { + "node_modules/finalhandler": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.6.tgz", "integrity": "sha1-AHrqM9Gk0+QgF/YkhIrVjSEvgU8=", "dev": true, - "requires": { + "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.1", "escape-html": "~1.0.3", @@ -938,100 +1136,133 @@ "statuses": "~1.3.1", "unpipe": "~1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } + "ms": "2.0.0" } }, - "find-up": { + "node_modules/find-up": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, - "requires": { + "dependencies": { "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "flat": { + "node_modules/flat": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", + "deprecated": "Fixed a prototype pollution security issue in 4.1.0, please upgrade to ^4.1.1 or ^5.0.1.", "dev": true, - "requires": { + "dependencies": { "is-buffer": "~2.0.3" }, - "dependencies": { - "is-buffer": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz", - "integrity": "sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw==", - "dev": true - } + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat/node_modules/is-buffer": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz", + "integrity": "sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw==", + "dev": true, + "engines": { + "node": ">=4" } }, - "flaverr": { + "node_modules/flaverr": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/flaverr/-/flaverr-1.9.2.tgz", "integrity": "sha512-14CoGOGUhFkhzDCgGdpFFJE9PrdMPhGmhuS39WxxgTpTKVzfWW3DAVfolUiHwYpaROz7UFrJuaSJtsxhem+i9g==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2" } }, - "follow-redirects": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", - "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", - "requires": { - "debug": "=3.1.0" + "node_modules/follow-redirects": { + "version": "1.15.4", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz", + "integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "forever-agent": { + "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "engines": { + "node": "*" + } }, - "form-data": { + "node_modules/form-data": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", - "requires": { + "dependencies": { "asynckit": "^0.4.0", "combined-stream": "1.0.6", "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" } }, - "formidable": { + "node_modules/formidable": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz", "integrity": "sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg==", + "deprecated": "Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau", "dev": true }, - "forwarded": { + "node_modules/forwarded": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "fresh": { + "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "fs-extra": { + "node_modules/fs-extra": { "version": "0.30.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.2", "jsonfile": "^2.1.0", "klaw": "^1.0.0", @@ -1039,449 +1270,548 @@ "rimraf": "^2.2.8" } }, - "fs.realpath": { + "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, - "function-bind": { + "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, - "get-caller-file": { + "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } }, - "get-stream": { + "node_modules/get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, - "requires": { + "dependencies": { "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "getpass": { + "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { + "dependencies": { "assert-plus": "^1.0.0" } }, - "glob": { + "node_modules/glob": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", "dev": true, - "requires": { + "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" } }, - "graceful-fs": { + "node_modules/graceful-fs": { "version": "4.1.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, - "graceful-readlink": { + "node_modules/graceful-readlink": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", "dev": true }, - "growl": { + "node_modules/growl": { "version": "1.10.5", "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "dev": true + "dev": true, + "engines": { + "node": ">=4.x" + } }, - "har-schema": { + "node_modules/har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "engines": { + "node": ">=4" + } }, - "har-validator": { + "node_modules/har-validator": { "version": "5.1.3", "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "requires": { + "deprecated": "this library is no longer supported", + "dependencies": { "ajv": "^6.5.5", "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "has": { + "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, - "requires": { + "dependencies": { "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" } }, - "has-ansi": { + "node_modules/has-ansi": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "has-flag": { + "node_modules/has-flag": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "has-symbols": { + "node_modules/has-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4" + } }, - "he": { + "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true + "dev": true, + "bin": { + "he": "bin/he" + } }, - "http-errors": { + "node_modules/http-errors": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz", "integrity": "sha1-eIwNLB3iyBuebowBhDtrl+uSB1A=", "dev": true, - "requires": { + "dependencies": { "inherits": "2.0.3", "setprototypeof": "1.0.2", "statuses": ">= 1.3.1 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "http-signature": { + "node_modules/http-signature": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { + "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "i": { + "node_modules/i": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/i/-/i-0.3.6.tgz", "integrity": "sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4" + } }, - "i18n-2": { + "node_modules/i18n-2": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/i18n-2/-/i18n-2-0.6.3.tgz", "integrity": "sha1-V6xhhePqR8/+mTzXpcFLQN82Szk=", "dev": true, - "requires": { + "dependencies": { "sprintf": "^0.1.5" + }, + "engines": { + "node": ">=0.4.0" } }, - "iconv-lite": { + "node_modules/iconv-lite": { "version": "0.4.19", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "include-all": { + "node_modules/include-all": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/include-all/-/include-all-4.0.3.tgz", "integrity": "sha1-ZfBujxGJSxp7XsH8l+azOS98+nU=", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "merge-dictionaries": "^0.0.3" - }, + } + }, + "node_modules/include-all/node_modules/merge-dictionaries": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/merge-dictionaries/-/merge-dictionaries-0.0.3.tgz", + "integrity": "sha1-xN5NWNuyXkwoI6owy44VOQaet1c=", + "dev": true, "dependencies": { - "merge-dictionaries": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/merge-dictionaries/-/merge-dictionaries-0.0.3.tgz", - "integrity": "sha1-xN5NWNuyXkwoI6owy44VOQaet1c=", - "dev": true, - "requires": { - "@sailshq/lodash": "^3.10.2" - } - } + "@sailshq/lodash": "^3.10.2" } }, - "inflight": { + "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, - "requires": { + "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, - "inherits": { + "node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", "dev": true }, - "ini": { + "node_modules/ini": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "dev": true + "deprecated": "Please update to ini >=1.3.6 to avoid a prototype pollution issue", + "dev": true, + "engines": { + "node": "*" + } }, - "invert-kv": { + "node_modules/invert-kv": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "ipaddr.js": { + "node_modules/ipaddr.js": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz", "integrity": "sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "is-callable": { + "node_modules/is-callable": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4" + } }, - "is-date-object": { + "node_modules/is-date-object": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4" + } }, - "is-fullwidth-code-point": { + "node_modules/is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "is-regex": { + "node_modules/is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", "dev": true, - "requires": { + "dependencies": { "has": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" } }, - "is-stream": { + "node_modules/is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-symbol": { + "node_modules/is-symbol": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", "dev": true, - "requires": { + "dependencies": { "has-symbols": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" } }, - "is-typedarray": { + "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, - "isarray": { + "node_modules/isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", "dev": true }, - "isexe": { + "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, - "isstream": { + "node_modules/isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, - "js-yaml": { + "node_modules/js-yaml": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", "dev": true, - "requires": { + "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "jsbn": { + "node_modules/jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" }, - "json-schema": { + "node_modules/json-schema": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" }, - "json-schema-traverse": { + "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, - "json-stringify-safe": { + "node_modules/json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, - "jsonfile": { + "node_modules/jsonfile": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", "dev": true, - "requires": { + "optionalDependencies": { "graceful-fs": "^4.1.6" } }, - "jsprim": { + "node_modules/jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { + "engines": [ + "node >=0.6.0" + ], + "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.2.3", "verror": "1.10.0" } }, - "klaw": { + "node_modules/klaw": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", "dev": true, - "requires": { + "optionalDependencies": { "graceful-fs": "^4.1.9" } }, - "lcid": { + "node_modules/lcid": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", "dev": true, - "requires": { + "dependencies": { "invert-kv": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "locate-path": { + "node_modules/locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, - "requires": { + "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" }, - "dependencies": { - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - } + "engines": { + "node": ">=6" + } + }, + "node_modules/locate-path/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" } }, - "lodash": { + "node_modules/lodash": { "version": "4.17.15", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" }, - "lodash.iserror": { + "node_modules/lodash.iserror": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/lodash.iserror/-/lodash.iserror-3.1.1.tgz", "integrity": "sha1-KXuaBfq2cUvCRE18wZ0dfES17Ow=", "dev": true }, - "lodash.isfunction": { + "node_modules/lodash.isfunction": { "version": "3.0.8", "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.8.tgz", "integrity": "sha1-TbcJ/IG8So/XEnpFilNGxc3OLGs=", "dev": true }, - "lodash.isobject": { + "node_modules/lodash.isobject": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", "integrity": "sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=", "dev": true }, - "lodash.isregexp": { + "node_modules/lodash.isregexp": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/lodash.isregexp/-/lodash.isregexp-3.0.5.tgz", "integrity": "sha1-4PWWJC8voiioQAhrbIrYLktx/S0=", "dev": true }, - "lodash.isstring": { + "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", "dev": true }, - "lodash.isundefined": { + "node_modules/lodash.isundefined": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz", "integrity": "sha1-I+89lTVWUgOmbO/VuDD4SJEa+0g=", "dev": true }, - "log-symbols": { + "node_modules/log-symbols": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "dev": true, - "requires": { + "dependencies": { "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" } }, - "lru-cache": { + "node_modules/lru-cache": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", "dev": true, - "requires": { + "dependencies": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" } }, - "machine": { + "node_modules/machine": { "version": "15.0.0", "resolved": "https://registry.npmjs.org/machine/-/machine-15.0.0.tgz", "integrity": "sha512-DZx0vaY3jErgOe/5PXyPly56YacKhReiOu/T1mm2huCl4kTaMYvLxLqee9s+5x78nltF6YfcynK0GMXXZBP8OQ==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "anchor": "^1.2.0", "flaverr": "^1.7.0", "parley": "^3.1.0", "rttc": "^10.0.0-3" + }, + "engines": { + "node": ">= 4.0.0", + "npm": ">= 2.0.0" } }, - "machine-as-action": { + "node_modules/machine-as-action": { "version": "10.1.1", "resolved": "https://registry.npmjs.org/machine-as-action/-/machine-as-action-10.1.1.tgz", "integrity": "sha512-ay8kkZ3YVRSI96OPezta/KcSomcqy5AZ1rmewIEvtGlDIh8PMaelnu6Kx6VcKfRbyj1xd57NQeuFHSpgawYTzg==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "flaverr": "^1.5.1", "machine": "^15.0.0-19", @@ -1489,63 +1819,67 @@ "streamifier": "0.1.1" } }, - "machinepack-json": { + "node_modules/machinepack-json": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/machinepack-json/-/machinepack-json-2.0.1.tgz", "integrity": "sha1-uZGrXIjYxR6dgafe87U4gpVmzEA=", "dev": true, - "requires": { + "dependencies": { "lodash.iserror": "3.1.1", "lodash.isfunction": "3.0.8", "lodash.isregexp": "3.0.5", "machine": "~12.1.0" + } + }, + "node_modules/machinepack-json/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/machinepack-json/node_modules/machine": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/machine/-/machine-12.1.1.tgz", + "integrity": "sha512-fohf/zxGNvZL69JfbZI/rf660cLnC2tU3tSz8BHGrl+5c7C/82Zypy2fpT2FKPh1q56zfAaCqyI5hSROqBF90g==", + "dev": true, + "dependencies": { + "convert-to-ecmascript-compatible-varname": "0.1.4", + "debug": "3.1.0", + "lodash": "3.10.1", + "object-hash": "0.3.0", + "rttc": "~9.3.0", + "switchback": "2.0.0" }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" + } + }, + "node_modules/machinepack-json/node_modules/rttc": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/rttc/-/rttc-9.3.4.tgz", + "integrity": "sha1-vABXU7c80WrFANkURta5kyBhctc=", + "dev": true, "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "machine": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/machine/-/machine-12.1.1.tgz", - "integrity": "sha512-fohf/zxGNvZL69JfbZI/rf660cLnC2tU3tSz8BHGrl+5c7C/82Zypy2fpT2FKPh1q56zfAaCqyI5hSROqBF90g==", - "dev": true, - "requires": { - "convert-to-ecmascript-compatible-varname": "0.1.4", - "debug": "3.1.0", - "lodash": "3.10.1", - "object-hash": "0.3.0", - "rttc": "~9.3.0", - "switchback": "2.0.0" - } - }, - "rttc": { - "version": "9.3.4", - "resolved": "https://registry.npmjs.org/rttc/-/rttc-9.3.4.tgz", - "integrity": "sha1-vABXU7c80WrFANkURta5kyBhctc=", - "dev": true, - "requires": { - "lodash": "3.8.0" - }, - "dependencies": { - "lodash": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz", - "integrity": "sha1-N265i9zZOCqTZcM8TLglDeEyW5E=", - "dev": true - } - } - } + "lodash": "3.8.0" + }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" } }, - "machinepack-process": { + "node_modules/machinepack-json/node_modules/rttc/node_modules/lodash": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz", + "integrity": "sha1-N265i9zZOCqTZcM8TLglDeEyW5E=", + "dev": true + }, + "node_modules/machinepack-process": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/machinepack-process/-/machinepack-process-2.0.2.tgz", "integrity": "sha1-SMaZT+n8YBXBNcszJKb614486zk=", "dev": true, - "requires": { + "dependencies": { "lodash.isfunction": "3.0.8", "lodash.isobject": "3.0.2", "lodash.isstring": "4.0.1", @@ -1553,255 +1887,292 @@ "machine": "~12.1.0", "machinepack-json": "~2.0.0", "open": "0.0.5" + } + }, + "node_modules/machinepack-process/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/machinepack-process/node_modules/machine": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/machine/-/machine-12.1.1.tgz", + "integrity": "sha512-fohf/zxGNvZL69JfbZI/rf660cLnC2tU3tSz8BHGrl+5c7C/82Zypy2fpT2FKPh1q56zfAaCqyI5hSROqBF90g==", + "dev": true, + "dependencies": { + "convert-to-ecmascript-compatible-varname": "0.1.4", + "debug": "3.1.0", + "lodash": "3.10.1", + "object-hash": "0.3.0", + "rttc": "~9.3.0", + "switchback": "2.0.0" }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" + } + }, + "node_modules/machinepack-process/node_modules/rttc": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/rttc/-/rttc-9.3.4.tgz", + "integrity": "sha1-vABXU7c80WrFANkURta5kyBhctc=", + "dev": true, "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "machine": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/machine/-/machine-12.1.1.tgz", - "integrity": "sha512-fohf/zxGNvZL69JfbZI/rf660cLnC2tU3tSz8BHGrl+5c7C/82Zypy2fpT2FKPh1q56zfAaCqyI5hSROqBF90g==", - "dev": true, - "requires": { - "convert-to-ecmascript-compatible-varname": "0.1.4", - "debug": "3.1.0", - "lodash": "3.10.1", - "object-hash": "0.3.0", - "rttc": "~9.3.0", - "switchback": "2.0.0" - } - }, - "rttc": { - "version": "9.3.4", - "resolved": "https://registry.npmjs.org/rttc/-/rttc-9.3.4.tgz", - "integrity": "sha1-vABXU7c80WrFANkURta5kyBhctc=", - "dev": true, - "requires": { - "lodash": "3.8.0" - }, - "dependencies": { - "lodash": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz", - "integrity": "sha1-N265i9zZOCqTZcM8TLglDeEyW5E=", - "dev": true - } - } - } + "lodash": "3.8.0" + }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" } }, - "machinepack-redis": { + "node_modules/machinepack-process/node_modules/rttc/node_modules/lodash": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz", + "integrity": "sha1-N265i9zZOCqTZcM8TLglDeEyW5E=", + "dev": true + }, + "node_modules/machinepack-redis": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/machinepack-redis/-/machinepack-redis-1.3.0.tgz", "integrity": "sha1-eXMRUKJs8rCwCw63V3/yaOW/dbg=", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "async": "2.0.1", "flaverr": "^1.1.1", "machine": "^13.0.0-11", "redis": "2.6.3" + } + }, + "node_modules/machinepack-redis/node_modules/async": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", + "integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=", + "dev": true, + "dependencies": { + "lodash": "^4.8.0" + } + }, + "node_modules/machinepack-redis/node_modules/include-all": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/include-all/-/include-all-1.0.8.tgz", + "integrity": "sha1-6LuEsFcniiLPlEMZA32XAMGKQ3k=", + "dev": true, + "dependencies": { + "lodash": "3.10.1" + } + }, + "node_modules/machinepack-redis/node_modules/include-all/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/machinepack-redis/node_modules/machine": { + "version": "13.0.0-24", + "resolved": "https://registry.npmjs.org/machine/-/machine-13.0.0-24.tgz", + "integrity": "sha512-M4jMQbHlAgPklsGdCxP6udDgeOEABlYxwSV0oybcgt4bZ5hz0CLIIpJUtBNtpDNe29K9u6qFHQrGAAIkEiNa7w==", + "dev": true, + "dependencies": { + "@sailshq/lodash": "^3.10.2", + "convert-to-ecmascript-compatible-varname": "0.1.4", + "debug": "3.1.0", + "include-all": "^1.0.5", + "rttc": "^9.8.1", + "switchback": "^2.0.1" }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" + } + }, + "node_modules/machinepack-redis/node_modules/rttc": { + "version": "9.8.2", + "resolved": "https://registry.npmjs.org/rttc/-/rttc-9.8.2.tgz", + "integrity": "sha1-IzfSHUE/SjT/+IF3+V6uft+9Jr8=", + "dev": true, "dependencies": { - "async": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", - "integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=", - "dev": true, - "requires": { - "lodash": "^4.8.0" - } - }, - "include-all": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/include-all/-/include-all-1.0.8.tgz", - "integrity": "sha1-6LuEsFcniiLPlEMZA32XAMGKQ3k=", - "dev": true, - "requires": { - "lodash": "3.10.1" - }, - "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } - } - }, - "machine": { - "version": "13.0.0-24", - "resolved": "https://registry.npmjs.org/machine/-/machine-13.0.0-24.tgz", - "integrity": "sha512-M4jMQbHlAgPklsGdCxP6udDgeOEABlYxwSV0oybcgt4bZ5hz0CLIIpJUtBNtpDNe29K9u6qFHQrGAAIkEiNa7w==", - "dev": true, - "requires": { - "@sailshq/lodash": "^3.10.2", - "convert-to-ecmascript-compatible-varname": "0.1.4", - "debug": "3.1.0", - "include-all": "^1.0.5", - "rttc": "^9.8.1", - "switchback": "^2.0.1" - } - }, - "rttc": { - "version": "9.8.2", - "resolved": "https://registry.npmjs.org/rttc/-/rttc-9.8.2.tgz", - "integrity": "sha1-IzfSHUE/SjT/+IF3+V6uft+9Jr8=", - "dev": true, - "requires": { - "lodash": "3.10.1" - }, - "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } - } - }, - "switchback": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/switchback/-/switchback-2.0.2.tgz", - "integrity": "sha1-ls8ODTY7VZ0Lt/8htip6qRDsYHk=", - "dev": true, - "requires": { - "lodash": "3.10.1" - }, - "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } - } - } + "lodash": "3.10.1" + }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" + } + }, + "node_modules/machinepack-redis/node_modules/rttc/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/machinepack-redis/node_modules/switchback": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/switchback/-/switchback-2.0.2.tgz", + "integrity": "sha1-ls8ODTY7VZ0Lt/8htip6qRDsYHk=", + "dev": true, + "dependencies": { + "lodash": "3.10.1" } }, - "map-age-cleaner": { + "node_modules/machinepack-redis/node_modules/switchback/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/map-age-cleaner": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", "dev": true, - "requires": { + "dependencies": { "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" } }, - "media-typer": { + "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "mem": { + "node_modules/mem": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", "dev": true, - "requires": { + "dependencies": { "map-age-cleaner": "^0.1.1", "mimic-fn": "^2.0.0", "p-is-promise": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "merge-defaults": { + "node_modules/merge-defaults": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/merge-defaults/-/merge-defaults-0.2.1.tgz", "integrity": "sha1-3UIkjrlrtqUVIXJDIccv+Vg93oA=", "dev": true, - "requires": { - "lodash": "~2.4.1" - }, "dependencies": { - "lodash": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", - "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", - "dev": true - } + "lodash": "~2.4.1" } }, - "merge-descriptors": { + "node_modules/merge-defaults/node_modules/lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", + "dev": true, + "engines": [ + "node", + "rhino" + ] + }, + "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", "dev": true }, - "merge-dictionaries": { + "node_modules/merge-dictionaries": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/merge-dictionaries/-/merge-dictionaries-1.0.0.tgz", "integrity": "sha1-eJbuGrGhVQ0yh6AxG323gEtpGTE=", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2" } }, - "methods": { + "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "mime": { + "node_modules/mime": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true + "dev": true, + "bin": { + "mime": "cli.js" + } }, - "mime-db": { + "node_modules/mime-db": { "version": "1.33.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", - "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "engines": { + "node": ">= 0.6" + } }, - "mime-types": { + "node_modules/mime-types": { "version": "2.1.18", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", - "requires": { + "dependencies": { "mime-db": "~1.33.0" + }, + "engines": { + "node": ">= 0.6" } }, - "mimic-fn": { + "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "minimatch": { + "node_modules/minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "dev": true, - "requires": { + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { + "node_modules/minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", "dev": true }, - "mkdirp": { + "node_modules/mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", "dev": true, - "requires": { + "dependencies": { "minimist": "0.0.8" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "mocha": { + "node_modules/mocha": { "version": "6.1.4", "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.1.4.tgz", "integrity": "sha512-PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg==", "dev": true, - "requires": { + "dependencies": { "ansi-colors": "3.2.3", "browser-stdout": "1.3.1", "debug": "3.2.6", @@ -1826,535 +2197,678 @@ "yargs-parser": "13.0.0", "yargs-unparser": "1.5.0" }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "supports-color": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", - "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "yargs": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz", - "integrity": "sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "os-locale": "^3.1.0", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.0.0" - } - } + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 6.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "multiparty": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/multiparty/-/multiparty-4.1.3.tgz", - "integrity": "sha1-PEPH/LGJbhdGBDap3Qtu8WaOT5Q=", + "node_modules/mocha/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true, - "requires": { - "fd-slicer": "~1.0.1" + "engines": { + "node": ">=6" } }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true + "node_modules/mocha/node_modules/debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } }, - "ncp": { - "version": "2.0.0", - "resolved": "http://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=" + "node_modules/mocha/node_modules/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", - "dev": true + "node_modules/mocha/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "node_modules/mocha/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", "dev": true }, - "node-environment-flags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", - "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", + "node_modules/mocha/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, - "requires": { - "object.getownpropertydescriptors": "^2.0.3", - "semver": "^5.7.0" + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", + "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/mocha/node_modules/yargs": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz", + "integrity": "sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA==", + "dev": true, + "dependencies": { + "cliui": "^4.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "os-locale": "^3.1.0", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.0.0" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/multiparty": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/multiparty/-/multiparty-4.1.3.tgz", + "integrity": "sha1-PEPH/LGJbhdGBDap3Qtu8WaOT5Q=", + "dev": true, + "dependencies": { + "fd-slicer": "~1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "node_modules/ncp": { + "version": "2.0.0", + "resolved": "http://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", + "bin": { + "ncp": "bin/ncp" + } + }, + "node_modules/negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-environment-flags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", + "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", + "dev": true, + "dependencies": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + } + }, + "node_modules/node-environment-flags/node_modules/semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true, + "bin": { + "semver": "bin/semver" } }, - "npm-run-path": { + "node_modules/npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "dev": true, - "requires": { + "dependencies": { "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "number-is-nan": { + "node_modules/number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "oauth-sign": { + "node_modules/oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } }, - "object-hash": { + "node_modules/object-hash": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-0.3.0.tgz", "integrity": "sha1-VIII5Ds2pE5NowutbFasU7iF50Q=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8.0" + } }, - "object-keys": { + "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4" + } }, - "object.assign": { + "node_modules/object.assign": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", "dev": true, - "requires": { + "dependencies": { "define-properties": "^1.1.2", "function-bind": "^1.1.1", "has-symbols": "^1.0.0", "object-keys": "^1.0.11" + }, + "engines": { + "node": ">= 0.4" } }, - "object.getownpropertydescriptors": { + "node_modules/object.getownpropertydescriptors": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", "dev": true, - "requires": { + "dependencies": { "define-properties": "^1.1.2", "es-abstract": "^1.5.1" + }, + "engines": { + "node": ">= 0.8" } }, - "on-finished": { + "node_modules/on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", "dev": true, - "requires": { + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "on-headers": { + "node_modules/on-headers": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz", "integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "once": { + "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, - "requires": { + "dependencies": { "wrappy": "1" } }, - "open": { + "node_modules/open": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/open/-/open-0.0.5.tgz", "integrity": "sha1-QsPhjslUZra/DcQvOilFw/DK2Pw=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6.0" + } }, - "os-locale": { + "node_modules/os-locale": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", "dev": true, - "requires": { + "dependencies": { "execa": "^1.0.0", "lcid": "^2.0.0", "mem": "^4.0.0" + }, + "engines": { + "node": ">=6" } }, - "p-defer": { + "node_modules/p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "p-finally": { + "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "p-is-promise": { + "node_modules/p-is-promise": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "p-limit": { + "node_modules/p-limit": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", "dev": true, - "requires": { + "dependencies": { "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "p-locate": { + "node_modules/p-locate": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, - "requires": { + "dependencies": { "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "p-try": { + "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "parasails": { + "node_modules/parasails": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/parasails/-/parasails-0.7.4.tgz", "integrity": "sha512-2Mc8lx/68xrBVa7RoMUNAliqaK8m8fyaEhFAPTtsNbT9BqdixtIjlDGaeqrX082xQ+bmvSxZdw4UJG8f8+G21w==", "dev": true }, - "parley": { + "node_modules/parley": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/parley/-/parley-3.4.2.tgz", "integrity": "sha512-I7g4YZ+hQFXvKhmQLjZB4L4cMQ6af/nO36+T8TabtVNkNQ6e5K7pL0ivbGfHkHuTLBHxpaDvYmZWHy9Ob28J0A==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "bluebird": "3.2.1", "flaverr": "^1.5.1" } }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "path-exists": { + "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "path-key": { + "node_modules/path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "path-to-regexp": { + "node_modules/path-to-regexp": { "version": "1.5.3", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.5.3.tgz", "integrity": "sha1-ciHd1CSDU4vd+f6tlCp5/zFk9Xo=", "dev": true, - "requires": { + "dependencies": { "isarray": "0.0.1" } }, - "pend": { + "node_modules/pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", "dev": true }, - "performance-now": { + "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, - "pkginfo": { + "node_modules/pkginfo": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", "integrity": "sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, - "pluralize": { + "node_modules/pluralize": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=", "dev": true }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "prompt": { + "node_modules/prompt": { "version": "0.2.14", "resolved": "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz", "integrity": "sha1-V3VPZPVD/XsIRXB8gY7OYY8F/9w=", "dev": true, - "requires": { + "dependencies": { "pkginfo": "0.x.x", "read": "1.0.x", "revalidator": "0.1.x", "utile": "0.2.x", "winston": "0.8.x" + }, + "engines": { + "node": ">= 0.6.6" } }, - "proxy-addr": { + "node_modules/proxy-addr": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz", "integrity": "sha512-jQTChiCJteusULxjBp8+jftSQE5Obdl3k4cnmLA6WXtK6XFuWRnvVL7aCiBqaLPM8c4ph0S4tKna8XvmIwEnXQ==", "dev": true, - "requires": { + "dependencies": { "forwarded": "~0.1.2", "ipaddr.js": "1.6.0" + }, + "engines": { + "node": ">= 0.10" } }, - "pseudomap": { + "node_modules/pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", "dev": true }, - "psl": { + "node_modules/psl": { "version": "1.1.29", "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" }, - "pump": { + "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "requires": { + "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "punycode": { + "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } }, - "qs": { + "node_modules/qs": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.6" + } }, - "random-bytes": { + "node_modules/random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", "integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "raw-body": { + "node_modules/raw-body": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", "dev": true, - "requires": { + "dependencies": { "bytes": "3.0.0", "http-errors": "1.6.2", "iconv-lite": "0.4.19", "unpipe": "1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body/node_modules/http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "dev": true, "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", - "dev": true - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "dev": true, - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" - } - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", - "dev": true - } + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": ">= 1.3.1 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "rc": { + "node_modules/raw-body/node_modules/setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", + "dev": true + }, + "node_modules/rc": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz", "integrity": "sha1-2M6ctX6NZNnHut2YdsfDTL48cHc=", "dev": true, - "requires": { + "dependencies": { "deep-extend": "~0.4.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, - "dependencies": { - "deep-extend": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", - "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=", - "dev": true - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - } + "bin": { + "rc": "index.js" } }, - "read": { + "node_modules/rc/node_modules/deep-extend": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", + "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.12.0" + } + }, + "node_modules/rc/node_modules/minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", "dev": true, - "requires": { + "dependencies": { "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" } }, - "readable-stream": { + "node_modules/readable-stream": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, - "requires": { + "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", @@ -2362,122 +2876,134 @@ "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" - }, + } + }, + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "safe-buffer": "~5.1.0" } }, - "redis": { + "node_modules/redis": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/redis/-/redis-2.6.3.tgz", "integrity": "sha1-hDBbklU8ah8Jx8R8MLEazn27etQ=", "dev": true, - "requires": { + "dependencies": { "double-ended-queue": "^2.1.0-0", "redis-commands": "^1.2.0", "redis-parser": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "redis-commands": { + "node_modules/redis-commands": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.5.tgz", "integrity": "sha512-foGF8u6MXGFF++1TZVC6icGXuMYPftKXt1FBT2vrfU9ZATNtZJ8duRC5d1lEfE8hyVe3jhelHGB91oB7I6qLsA==", "dev": true }, - "redis-parser": { + "node_modules/redis-parser": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "reportback": { + "node_modules/reportback": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/reportback/-/reportback-2.0.1.tgz", "integrity": "sha1-PyJVrlkEpQn8AV1CWq+iNviTpRY=", "dev": true, - "requires": { + "dependencies": { "captains-log": "^1.0.1", "switchback": "^2.0.1" + } + }, + "node_modules/reportback/node_modules/captains-log": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/captains-log/-/captains-log-1.0.3.tgz", + "integrity": "sha512-zEdafsQYvRCxvcU18iNvBnG7DWG2GqcgiIbNEGBb27+wXijJOgZUUQE6FEjsxTffhxegNkD2YNI00NkfpoNMTg==", + "dev": true, + "dependencies": { + "@sailshq/lodash": "^3.10.2", + "chalk": "1.1.3", + "rc": "1.0.1" + } + }, + "node_modules/reportback/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reportback/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/reportback/node_modules/rc": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.0.1.tgz", + "integrity": "sha1-+RnCXoBMsKpg9v2S2Sn8hrRQE+g=", + "dev": true, "dependencies": { - "captains-log": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/captains-log/-/captains-log-1.0.3.tgz", - "integrity": "sha512-zEdafsQYvRCxvcU18iNvBnG7DWG2GqcgiIbNEGBb27+wXijJOgZUUQE6FEjsxTffhxegNkD2YNI00NkfpoNMTg==", - "dev": true, - "requires": { - "@sailshq/lodash": "^3.10.2", - "chalk": "1.1.3", - "rc": "1.0.1" - } - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "rc": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.0.1.tgz", - "integrity": "sha1-+RnCXoBMsKpg9v2S2Sn8hrRQE+g=", - "dev": true, - "requires": { - "deep-extend": "~0.2.5", - "ini": "~1.3.0", - "minimist": "~0.0.7", - "strip-json-comments": "0.1.x" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "switchback": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/switchback/-/switchback-2.0.2.tgz", - "integrity": "sha1-ls8ODTY7VZ0Lt/8htip6qRDsYHk=", - "dev": true, - "requires": { - "lodash": "3.10.1" - } - } + "deep-extend": "~0.2.5", + "ini": "~1.3.0", + "minimist": "~0.0.7", + "strip-json-comments": "0.1.x" + }, + "bin": { + "rc": "index.js" } }, - "request": { + "node_modules/reportback/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/reportback/node_modules/switchback": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/switchback/-/switchback-2.0.2.tgz", + "integrity": "sha1-ls8ODTY7VZ0Lt/8htip6qRDsYHk=", + "dev": true, + "dependencies": { + "lodash": "3.10.1" + } + }, + "node_modules/request": { "version": "2.88.0", "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", - "requires": { + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", @@ -2499,121 +3025,158 @@ "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" }, - "dependencies": { - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "mime-db": { - "version": "1.37.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz", - "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==" - }, - "mime-types": { - "version": "2.1.21", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz", - "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==", - "requires": { - "mime-db": "~1.37.0" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - } - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - } + "engines": { + "node": ">= 4" } }, - "request-promise": { + "node_modules/request-promise": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.4.tgz", "integrity": "sha512-8wgMrvE546PzbR5WbYxUQogUnUDfM0S7QIFZMID+J73vdFARkFy+HElj4T+MWYhpXwlLp0EQ8Zoj8xUA0he4Vg==", - "requires": { + "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "dependencies": { "bluebird": "^3.5.0", "request-promise-core": "1.1.2", "stealthy-require": "^1.1.1", "tough-cookie": "^2.3.3" }, - "dependencies": { - "bluebird": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", - "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==" - } + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" } }, - "request-promise-core": { + "node_modules/request-promise-core": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz", "integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==", - "requires": { + "dependencies": { "lodash": "^4.17.11" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise/node_modules/bluebird": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", + "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==" + }, + "node_modules/request/node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/request/node_modules/mime-db": { + "version": "1.37.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz", + "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/request/node_modules/mime-types": { + "version": "2.1.21", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz", + "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==", + "dependencies": { + "mime-db": "~1.37.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/request/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "engines": { + "node": ">=0.6" } }, - "require-directory": { + "node_modules/request/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "dependencies": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "require-main-filename": { + "node_modules/require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, - "revalidator": { + "node_modules/revalidator": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", "integrity": "sha1-/s5hv6DBtSoga9axgZgYS91SOjs=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, - "rimraf": { + "node_modules/rimraf": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", "dev": true, - "requires": { + "dependencies": { "glob": "^7.0.5" + }, + "bin": { + "rimraf": "bin.js" } }, - "rndm": { + "node_modules/rndm": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", "integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=", "dev": true }, - "router": { + "node_modules/router": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/router/-/router-1.3.2.tgz", "integrity": "sha1-v6oWiIpSg9XuQNmZ2nqfoVKWpgw=", "dev": true, - "requires": { + "dependencies": { "array-flatten": "2.1.1", "debug": "2.6.9", "methods": "~1.1.2", @@ -2622,74 +3185,82 @@ "setprototypeof": "1.1.0", "utils-merge": "1.0.1" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/router/node_modules/array-flatten": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz", + "integrity": "sha1-Qmu52oQJDBg42BLIFQryCoMx4pY=", + "dev": true + }, + "node_modules/router/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "array-flatten": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz", - "integrity": "sha1-Qmu52oQJDBg42BLIFQryCoMx4pY=", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - } + "ms": "2.0.0" } }, - "rttc": { + "node_modules/router/node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "node_modules/router/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/rttc": { "version": "10.0.0-4", "resolved": "https://registry.npmjs.org/rttc/-/rttc-10.0.0-4.tgz", "integrity": "sha512-HroJ9z+RVipbPCeFdglopiVM18w9BM5PFqXivM6ZceNQEphjpDGZ154srk1JhviNacrmFqhdzDbGQZsB13g6JA==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2" + }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" } }, - "rxjs": { + "node_modules/rxjs": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz", "integrity": "sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==", - "requires": { + "dependencies": { "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" } }, - "rxjs-compat": { + "node_modules/rxjs-compat": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/rxjs-compat/-/rxjs-compat-6.5.2.tgz", "integrity": "sha512-TRMkTp4FgSxE2HtGvxmgRukh3JqdFM7ejAj1Ti/VdodbPGfWvZR5+KdLKRV9jVDFyu2SknM8RD+PR54KGnoLjg==" }, - "safe-buffer": { + "node_modules/safe-buffer": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" }, - "safer-buffer": { + "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "sails": { + "node_modules/sails": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/sails/-/sails-1.0.2.tgz", "integrity": "sha512-tcMERTduNcO1WAWgkQxp5hZEBLBxdNgS3Kf5LEe1PzgEORKLYJrj+KXdjadcYuyuzydBsWmlv76oF2Y97P4RoQ==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "async": "2.5.0", "captains-log": "^2.0.0", @@ -2735,21 +3306,20 @@ "vary": "1.1.2", "whelk": "^6.0.0" }, - "dependencies": { - "minimist": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", - "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", - "dev": true - } + "bin": { + "sails": "bin/sails.js" + }, + "engines": { + "node": ">= 0.10.0", + "npm": ">= 1.4.0" } }, - "sails-generate": { + "node_modules/sails-generate": { "version": "1.15.24", "resolved": "https://registry.npmjs.org/sails-generate/-/sails-generate-1.15.24.tgz", "integrity": "sha512-177Y2SO6zqNLShHtIbDYVPRIGGA/fVqAMTOadbHjh86odSw/2cRcMjDq1IrHaAQ771a8lWbxvny+tP5HBnGuqg==", "dev": true, - "requires": { + "dependencies": { "async": "2.0.1", "chalk": "1.1.3", "cross-spawn": "4.0.2", @@ -2761,93 +3331,106 @@ "read": "1.0.7", "reportback": "^2.0.1", "sails.io.js-dist": "^1.0.0" - }, + } + }, + "node_modules/sails-generate/node_modules/async": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", + "integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=", + "dev": true, "dependencies": { - "async": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", - "integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=", - "dev": true, - "requires": { - "lodash": "^4.8.0" - }, - "dependencies": { - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", - "dev": true - } - } - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } + "lodash": "^4.8.0" + } + }, + "node_modules/sails-generate/node_modules/async/node_modules/lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, + "node_modules/sails-generate/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sails-generate/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/sails-generate/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" } }, - "sails-stringfile": { + "node_modules/sails-stringfile": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/sails-stringfile/-/sails-stringfile-0.3.2.tgz", "integrity": "sha1-2k42Zqj5z9Ph80a/uBFqMD4cML0=", "dev": true, - "requires": { + "dependencies": { "colors": "*", "lodash": "~2.4.1" - }, - "dependencies": { - "lodash": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", - "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", - "dev": true - } } }, - "sails.io.js-dist": { + "node_modules/sails-stringfile/node_modules/lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", + "dev": true, + "engines": [ + "node", + "rhino" + ] + }, + "node_modules/sails.io.js-dist": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/sails.io.js-dist/-/sails.io.js-dist-1.2.1.tgz", "integrity": "sha512-fBMdntawlqd5N/1xL9Vu6l+J5zvy86jLUf0nFDal5McUeZzUy7PpNqq+Vx/F9KgItAyFJ7RoO3YltO9dD0Q5OQ==", "dev": true }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "node_modules/sails/node_modules/minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "node_modules/sax": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" }, - "semver": { + "node_modules/semver": { "version": "4.3.6", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", - "dev": true + "dev": true, + "bin": { + "semver": "bin/semver" + } }, - "send": { + "node_modules/send": { "version": "0.16.1", "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz", "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==", "dev": true, - "requires": { + "dependencies": { "debug": "2.6.9", "depd": "~1.1.1", "destroy": "~1.0.4", @@ -2862,108 +3445,125 @@ "range-parser": "~1.2.0", "statuses": "~1.3.1" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "dependencies": { - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - } - } - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - } + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send/node_modules/http-errors/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "serve-favicon": { + "node_modules/send/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-favicon": { "version": "2.4.5", "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz", "integrity": "sha512-s7F8h2NrslMkG50KxvlGdj+ApSwaLex0vexuJ9iFf3GLTIp1ph/l1qZvRe9T9TJEYZgmq72ZwJ2VYiAEtChknw==", "dev": true, - "requires": { + "dependencies": { "etag": "~1.8.1", "fresh": "0.5.2", "ms": "2.0.0", "parseurl": "~1.3.2", "safe-buffer": "5.1.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "serve-static": { + "node_modules/serve-static": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz", "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==", "dev": true, - "requires": { + "dependencies": { "encodeurl": "~1.0.1", "escape-html": "~1.0.3", "parseurl": "~1.3.2", "send": "0.16.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "set-blocking": { + "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, - "setprototypeof": { + "node_modules/setprototypeof": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz", "integrity": "sha1-gaVSFB7BBLiOic44MQOtXGZWTQg=", "dev": true }, - "shebang-command": { + "node_modules/shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, - "requires": { + "dependencies": { "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "shebang-regex": { + "node_modules/shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "signal-exit": { + "node_modules/signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "dev": true }, - "skipper": { + "node_modules/skipper": { "version": "0.8.5", "resolved": "https://registry.npmjs.org/skipper/-/skipper-0.8.5.tgz", "integrity": "sha512-tDkO6RxoRb0WEzlSnS8qCKmWvu4lB2SXrQilgcSusS1uNa0gc7f7lHDZYu5qz3ZqUdMJWGvBLdPYPmGvMJYNZg==", "dev": true, - "requires": { + "dependencies": { "async": "2.0.1", "body-parser": "1.18.2", "colors": "1.1.2", @@ -2976,83 +3576,87 @@ "string_decoder": "0.10.31", "uuid": "3.0.1" }, - "dependencies": { - "async": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", - "integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=", - "dev": true, - "requires": { - "lodash": "^4.8.0" - }, - "dependencies": { - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", - "dev": true - } - } - }, - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", - "dev": true - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "skipper-disk": { + "node_modules/skipper-disk": { "version": "0.5.11", "resolved": "https://registry.npmjs.org/skipper-disk/-/skipper-disk-0.5.11.tgz", "integrity": "sha512-uyTPr5im+dZPycIpyA+YgogpQgUXHn4a8vMc6xf4STKFypIzQ2/lwjIu9GLR5mTboeDebgQQWQFSFmZuaxtuvA==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "debug": "3.1.0", "fs-extra": "0.30.0" } }, - "sort-route-addresses": { + "node_modules/skipper/node_modules/async": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", + "integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=", + "dev": true, + "dependencies": { + "lodash": "^4.8.0" + } + }, + "node_modules/skipper/node_modules/async/node_modules/lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, + "node_modules/skipper/node_modules/colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/skipper/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/sort-route-addresses": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/sort-route-addresses/-/sort-route-addresses-0.0.1.tgz", "integrity": "sha1-I6h9KDETsS7h/ttM9DryErtW2rs=", "dev": true, - "requires": { - "lodash": "^3.10.1" - }, "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } + "lodash": "^3.10.1" } }, - "sprintf": { + "node_modules/sort-route-addresses/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "node_modules/sprintf": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz", "integrity": "sha1-j4PjmpMXwaUCy324BQ5Rxnn27c8=", - "dev": true + "deprecated": "The sprintf package is deprecated in favor of sprintf-js.", + "dev": true, + "engines": { + "node": ">=0.2.4" + } }, - "sprintf-js": { + "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, - "sshpk": { + "node_modules/sshpk": { "version": "1.15.2", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.15.2.tgz", "integrity": "sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA==", - "requires": { + "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", @@ -3062,91 +3666,131 @@ "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" } }, - "stack-trace": { + "node_modules/stack-trace": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", - "dev": true + "dev": true, + "engines": { + "node": "*" + } }, - "statuses": { + "node_modules/statuses": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "stealthy-require": { + "node_modules/stealthy-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "engines": { + "node": ">=0.10.0" + } }, - "streamifier": { + "node_modules/streamifier": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/streamifier/-/streamifier-0.1.1.tgz", "integrity": "sha1-l+mNj6TRBdYqJpHR3AfoINuN/E8=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", "dev": true }, - "string-width": { + "node_modules/string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, - "requires": { + "dependencies": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "engines": { + "node": ">=4" } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true + "node_modules/string-width/node_modules/ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } }, - "strip-ansi": { + "node_modules/strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "strip-eof": { + "node_modules/strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "strip-json-comments": { + "node_modules/strip-json-comments": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz", "integrity": "sha1-Fkxk43Coo8wAyeAbU55WmCPw7lQ=", - "dev": true + "dev": true, + "bin": { + "strip-json-comments": "cli.js" + }, + "engines": { + "node": ">=0.8.0" + } }, - "superagent": { + "node_modules/superagent": { "version": "3.8.3", "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz", "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", + "deprecated": "Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .", "dev": true, - "requires": { + "dependencies": { "component-emitter": "^1.2.0", "cookiejar": "^2.1.0", "debug": "^3.1.0", @@ -3157,133 +3801,175 @@ "mime": "^1.4.1", "qs": "^6.5.1", "readable-stream": "^2.3.5" + }, + "engines": { + "node": ">= 4.0" } }, - "supertest": { + "node_modules/supertest": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/supertest/-/supertest-4.0.2.tgz", "integrity": "sha512-1BAbvrOZsGA3YTCWqbmh14L0YEq0EGICX/nBnfkfVJn7SrxQV1I3pMYjSzG9y/7ZU2V9dWqyqk2POwxlb09duQ==", "dev": true, - "requires": { + "dependencies": { "methods": "^1.1.2", "superagent": "^3.8.3" + }, + "engines": { + "node": ">=6.0.0" } }, - "supports-color": { + "node_modules/supports-color": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz", "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", "dev": true, - "requires": { + "dependencies": { "has-flag": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "switchback": { + "node_modules/switchback": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/switchback/-/switchback-2.0.0.tgz", "integrity": "sha1-KifZAzPe8wWnUh3MHjL2qOOtcgU=", "dev": true, - "requires": { - "lodash": "~2.4.1" - }, "dependencies": { - "lodash": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", - "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", - "dev": true - } + "lodash": "~2.4.1" } }, - "tough-cookie": { + "node_modules/switchback/node_modules/lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", + "dev": true, + "engines": [ + "node", + "rhino" + ] + }, + "node_modules/tough-cookie": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { + "dependencies": { "psl": "^1.1.28", "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" } }, - "tslib": { + "node_modules/tslib": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" }, - "tsscmp": { + "node_modules/tsscmp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.6.x" + } }, - "tunnel-agent": { + "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { + "dependencies": { "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" } }, - "tweetnacl": { + "node_modules/tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" }, - "type-is": { + "node_modules/type-is": { "version": "1.6.16", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", "dev": true, - "requires": { + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.18" + }, + "engines": { + "node": ">= 0.6" } }, - "typescript": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz", - "integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==", - "dev": true + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } }, - "uid-safe": { + "node_modules/uid-safe": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", "dev": true, - "requires": { + "dependencies": { "random-bytes": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "underscore": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.2.tgz", - "integrity": "sha512-D39qtimx0c1fI3ya1Lnhk3E9nONswSKhnffBI0gME9C99fYOkNi04xs8K6pePLhvl1frbDemkaBQ5ikWllR2HQ==" + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "uri-js": { + "node_modules/uri-js": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "requires": { + "dependencies": { "punycode": "^2.1.0" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", "dev": true }, - "utile": { + "node_modules/utile": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz", "integrity": "sha1-kwyI6ZCY1iIINMNWy9mncFItkNc=", "dev": true, - "requires": { + "dependencies": { "async": "~0.2.9", "deep-equal": "*", "i": "0.3.x", @@ -3291,61 +3977,81 @@ "ncp": "0.4.x", "rimraf": "2.x.x" }, - "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", - "dev": true - }, - "ncp": { - "version": "0.4.2", - "resolved": "http://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", - "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=", - "dev": true - } + "engines": { + "node": ">= 0.6.4" + } + }, + "node_modules/utile/node_modules/async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", + "dev": true + }, + "node_modules/utile/node_modules/ncp": { + "version": "0.4.2", + "resolved": "http://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", + "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=", + "dev": true, + "bin": { + "ncp": "bin/ncp" } }, - "utils-merge": { + "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, - "uuid": { + "node_modules/uuid": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz", "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=", - "dev": true + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } }, - "validator": { + "node_modules/validator": { "version": "5.7.0", "resolved": "https://registry.npmjs.org/validator/-/validator-5.7.0.tgz", "integrity": "sha1-eoelgUa2laxIYHEUHAxJ1n2gXlw=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "vary": { + "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "verror": { + "node_modules/verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { + "engines": [ + "node >=0.6.0" + ], + "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, - "whelk": { + "node_modules/whelk": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/whelk/-/whelk-6.0.0.tgz", "integrity": "sha512-qNAuQ3af4oe9mzgYUmCKyxJKzfrx+JE2xN7QxrdNPBkpyFEw2rdABLofHxOl2OHgLEEAQTq2fqbpDQVQHvIg7g==", "dev": true, - "requires": { + "dependencies": { "@sailshq/lodash": "^3.10.2", "chalk": "1.1.3", "commander": "2.8.1", @@ -3353,74 +4059,87 @@ "machine": "^15.0.0-5", "rttc": "^10.0.0-0", "yargs": "3.4.5" + } + }, + "node_modules/whelk/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whelk/node_modules/commander": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", + "dev": true, "dependencies": { - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "commander": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", - "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", - "dev": true, - "requires": { - "graceful-readlink": ">= 1.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } + "graceful-readlink": ">= 1.0.0" + }, + "engines": { + "node": ">= 0.6.x" } }, - "which": { + "node_modules/whelk/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", "dev": true, - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "which-module": { + "node_modules/which-module": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", "dev": true }, - "wide-align": { + "node_modules/wide-align": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", "dev": true, - "requires": { + "dependencies": { "string-width": "^1.0.2 || 2" } }, - "window-size": { + "node_modules/window-size": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8.0" + } }, - "winston": { + "node_modules/winston": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", "dev": true, - "requires": { + "dependencies": { "async": "0.2.x", "colors": "0.6.x", "cycle": "1.0.x", @@ -3429,180 +4148,205 @@ "pkginfo": "0.3.x", "stack-trace": "0.0.x" }, - "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", - "dev": true - }, - "pkginfo": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz", - "integrity": "sha1-Wyn2qB9wcXFC4J52W76rl7T4HiE=", - "dev": true - } + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/winston/node_modules/async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", + "dev": true + }, + "node_modules/winston/node_modules/pkginfo": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz", + "integrity": "sha1-Wyn2qB9wcXFC4J52W76rl7T4HiE=", + "dev": true, + "engines": { + "node": ">= 0.4.0" } }, - "wordwrap": { + "node_modules/wordwrap": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, - "wrap-ansi": { + "node_modules/wrap-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "dev": true, - "requires": { + "dependencies": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, "dependencies": { - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - } + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, - "xml2js": { + "node_modules/xml2js": { "version": "0.4.23", "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "requires": { + "dependencies": { "sax": ">=0.6.0", "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" } }, - "xmlbuilder": { + "node_modules/xmlbuilder": { "version": "11.0.1", "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "engines": { + "node": ">=4.0" + } }, - "y18n": { + "node_modules/y18n": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", "dev": true }, - "yallist": { + "node_modules/yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", "dev": true }, - "yargs": { + "node_modules/yargs": { "version": "3.4.5", "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.4.5.tgz", "integrity": "sha1-s5IXO3iSeS9nKWpgE8LXbRUxXrE=", "dev": true, - "requires": { + "dependencies": { "camelcase": "^1.0.2", "decamelize": "^1.0.0", "window-size": "0.1.0", "wordwrap": "0.0.2" } }, - "yargs-parser": { + "node_modules/yargs-parser": { "version": "13.0.0", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz", "integrity": "sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - } } }, - "yargs-unparser": { + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-unparser": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz", "integrity": "sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw==", "dev": true, - "requires": { + "dependencies": { "flat": "^4.1.0", "lodash": "^4.17.11", "yargs": "^12.0.5" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-unparser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-unparser/node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/yargs-unparser/node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "node_modules/yargs-unparser/node_modules/yargs": { + "version": "12.0.5", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "dev": true, "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - } - }, - "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } + "cliui": "^4.0.0", + "decamelize": "^1.2.0", + "find-up": "^3.0.0", + "get-caller-file": "^1.0.1", + "os-locale": "^3.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^11.1.1" + } + }, + "node_modules/yargs-unparser/node_modules/yargs-parser": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } } } diff --git a/package.json b/package.json index 43585ce..814ea15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sails-hook-redbox-labarchives", - "version": "1.0.2", + "version": "1.1.0", "description": "A Sails Hook for LabArchives", "main": "index.js", "sails": { @@ -25,14 +25,15 @@ "author": "Moises Sacal", "license": "GPL-3.0", "devDependencies": { - "@types/node": "^10.12.18", "@types/lodash": "^4.14.134", + "@types/node": "^20.10.3", "mocha": "^6.1.4", "sails": "^1.0.2", "supertest": "^4.0.2", - "typescript": "^2.9.2" + "typescript": "^5.3.3" }, "dependencies": { + "@researchdatabox/redbox-core-types": "^1.4.2", "@uts-eresearch/provision-labarchives": "^1.1.5", "lodash": "^4.17.15", "ncp": "^2.0.0", diff --git a/tsconfig.json b/tsconfig.json index 8722927..cb4598e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,44 +1,24 @@ { - "compilerOptions": { - "target": "es6", - "module": "commonjs", - "moduleResolution": "node", - "isolatedModules": false, - "jsx": "react", - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "declaration": false, - "noImplicitAny": false, - "noImplicitUseStrict": false, - "removeComments": true, - "noLib": false, - "preserveConstEnums": true, - "suppressImplicitAnyIndexErrors": true, - "sourceMap": false, - "outDir": "./", - "rootDir": "./typescript" - }, - "exclude": [ - "node_modules/**", - "typings/browser/**", - "typings/browser.d.ts", - "test/integration/**/*.ts" - ], - "include": [ - "typescript/**/*.ts", - "api/**/*.ts", - "core/**/*.ts", - "assets/angular/**/*.ts" - ], - "compileOnSave": true, - "buildOnSave": false, - "atom": { - "rewriteTsconfig": false - }, - "typeAcquisition": { + "extends": "@tsconfig/node18/tsconfig.json", + "compilerOptions": { + "outDir": "./", + "rootDir": "./typescript", + "strict": false, + "inlineSourceMap": true + }, + "exclude": [ + "node_modules/**", + "typings/browser/**", + "typings/browser.d.ts", + "test/integration/**/*.ts", + "angular/**" + ], "include": [ - "lodash" - ] - } + "typescript/**/*.ts", + ], + "compileOnSave": true, + "buildOnSave": false, + "atom": { + "rewriteTsconfig": false + } } - diff --git a/typescript/api/controllers/LabarchivesController.ts b/typescript/api/controllers/LabarchivesController.ts index 4478943..94c47d8 100644 --- a/typescript/api/controllers/LabarchivesController.ts +++ b/typescript/api/controllers/LabarchivesController.ts @@ -9,7 +9,7 @@ declare var BrandingService, WorkspaceService, LabarchivesService; /** * Package that contains all Controllers. */ -import controller = require('../core/CoreController'); +import { Controllers as controllers} from '@researchdatabox/redbox-core-types'; import {Config} from '../Config'; import {UserInfo} from "../UserInfo"; @@ -19,7 +19,7 @@ export module Controllers { * Omero related features.... * */ - export class LabarchivesController extends controller.Controllers.Core.Controller { + export class LabarchivesController extends controllers.Core.Controller { protected _exportedMethods: any = [ 'info', @@ -30,7 +30,7 @@ export module Controllers { 'list', 'createNotebook' ]; - _config: any; + protected config: Config; diff --git a/typescript/api/services/LabarchivesService.ts b/typescript/api/services/LabarchivesService.ts index 388caf1..3c4ae24 100644 --- a/typescript/api/services/LabarchivesService.ts +++ b/typescript/api/services/LabarchivesService.ts @@ -4,14 +4,15 @@ import * as la from '@uts-eresearch/provision-labarchives'; import {Config} from '../Config'; -import services = require('../core/CoreService'); +import { Services as services } from '@researchdatabox/redbox-core-types'; + declare var sails: Sails; declare var WorkspaceService, _; export module Services { - export class LabarchivesService extends services.Services.Core.Service { + export class LabarchivesService extends services.Core.Service { protected config: Config; protected _exportedMethods: any = [ diff --git a/yarn.lock b/yarn.lock index 9e1239b..150911c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,43 +2,58 @@ # yarn lockfile v1 -"@sailshq/lodash@^3.10.2", "@sailshq/lodash@^3.10.3": - version "3.10.4" - resolved "https://registry.yarnpkg.com/@sailshq/lodash/-/lodash-3.10.4.tgz#2299648a81a67f4c6ee222c6cf8e261bd9c3fa50" - integrity sha512-YXJqp9gdHcZKAmBY/WnwFpPtNQp2huD/ME2YMurH2YHJvxrVzYsmpKw/pb7yINArRpp8E++fwbQd3ajYXGA45Q== +"@researchdatabox/redbox-core-types@^1.4.2": + version "1.4.2" + resolved "https://registry.npmjs.org/@researchdatabox/redbox-core-types/-/redbox-core-types-1.4.2.tgz" + integrity sha512-npuaYjnbS2Ed8khDCGYJBiXnu6U3Vkd40b2/KArKCB2XD1xGwtp93ZpncueMVrbgPAUk8IuEEWtdmEGCK+4NKQ== + dependencies: + "@tsconfig/node18" "^18.2.0" + +"@sailshq/lodash@^3.10.2": + version "3.10.3" + resolved "https://registry.npmjs.org/@sailshq/lodash/-/lodash-3.10.3.tgz" + integrity sha512-XTF5BtsTSiSpTnfqrCGS5Q8FvSHWCywA0oRxFAZo8E1a8k1MMFUvk3VlRk3q/SusEYwy7gvVdyt9vvNlTa2VuA== + +"@tsconfig/node18@^18.2.0": + version "18.2.2" + resolved "https://registry.npmjs.org/@tsconfig/node18/-/node18-18.2.2.tgz" + integrity sha512-d6McJeGsuoRlwWZmVIeE8CUA27lu6jLjvv1JzqmpsytOYYbVi1tHZEnwCNVOXnj4pyLvneZlFlpXUK+X9wBWyw== "@types/lodash@^4.14.134": - version "4.14.149" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.149.tgz#1342d63d948c6062838fbf961012f74d4e638440" - integrity sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ== + version "4.14.134" + resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.134.tgz" + integrity sha512-2/O0khFUCFeDlbi7sZ7ZFRCcT812fAeOLm7Ev4KbwASkZ575TDrDcY7YyaoHdTOzKcNbfiwLYZqPmoC4wadrsw== -"@types/node@^10.12.18": - version "10.17.13" - resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.13.tgz#ccebcdb990bd6139cd16e84c39dc2fb1023ca90c" - integrity sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg== +"@types/node@^20.10.3": + version "20.10.8" + resolved "https://registry.npmjs.org/@types/node/-/node-20.10.8.tgz" + integrity sha512-f8nQs3cLxbAFc00vEU59yf9UyGUftkPaLGfvbVOIDdx2i1b8epBqj2aNGyP19fiyXWvlmZ7qC1XLjAzw/OKIeA== + dependencies: + undici-types "~5.26.4" -"@uts-eresearch/provision-labarchives@1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@uts-eresearch/provision-labarchives/-/provision-labarchives-1.0.3.tgz#ce5225f96a28e2dba46cae77a46e6dcc6235cb6c" - integrity sha512-wJtf1dGluDgFwpObCD2QcO0cP7AUMRt0kf9U7t5glmARmmXodszegokxSdWwZETh3TkGVB4oYKTRhHAkKka48Q== +"@uts-eresearch/provision-labarchives@^1.1.5": + version "1.1.6" + resolved "https://registry.npmjs.org/@uts-eresearch/provision-labarchives/-/provision-labarchives-1.1.6.tgz" + integrity sha512-SvI8casUwKtL6zvOULDcEfZv2mzdfzdoz1W6MyLsqJa9vyah8jCOHxyGFVyh+4fbLl7cizl4vVu7UwGGWsB1rQ== dependencies: - axios "^0.19.0" + axios "^0.21.1" common-tags "^1.4.0" - underscore "^1.8.3" + lodash "^4.17.21" + underscore "^1.12.1" xml2js "^0.4.19" accepts@~1.3.4: - version "1.3.7" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + version "1.3.5" + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz" + integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= dependencies: - mime-types "~2.1.24" - negotiator "0.6.2" + mime-types "~2.1.18" + negotiator "0.6.1" ajv@^6.5.5: - version "6.10.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" - integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== + version "6.5.5" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz" + integrity sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg== dependencies: fast-deep-equal "^2.0.1" fast-json-stable-stringify "^2.0.0" @@ -46,141 +61,145 @@ ajv@^6.5.5: uri-js "^4.2.2" anchor@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/anchor/-/anchor-1.4.0.tgz#6ab2b8a5d9ebf2939c45ce57ed8fef80aecd99b0" - integrity sha512-xEu0UWxNa3p5v3MmXN9id5tsMSiniCyzWamf/R3KRkJieSRdXdAWu0Z+tXIpDZbbVLWZSMnD1VEguuYX2s9xag== + version "1.3.0" + resolved "https://registry.npmjs.org/anchor/-/anchor-1.3.0.tgz" + integrity sha512-mA+EfMr/WVT69u1HisKqQED7+LmTxpb0Lm9Lo/qTT/uf7AOFA3qYYb/ZPiMi3aQqWn2ji4fC6UQuRIP0XBV9ZA== dependencies: "@sailshq/lodash" "^3.10.2" validator "5.7.0" ansi-colors@3.2.3: version "3.2.3" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz" integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== ansi-regex@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ansi-regex@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz" integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= ansi-regex@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz" integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== ansi-styles@^2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= -ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: +ansi-styles@^3.1.0: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= array-flatten@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz" integrity sha1-Qmu52oQJDBg42BLIFQryCoMx4pY= asn1@~0.2.3: version "0.2.4" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz" integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== dependencies: safer-buffer "~2.1.0" -assert-plus@1.0.0, assert-plus@^1.0.0: +assert-plus@^1.0.0, assert-plus@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= -async@0.2.x, async@~0.2.9: +async@~0.2.9: version "0.2.10" - resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" + resolved "https://registry.npmjs.org/async/-/async-0.2.10.tgz" + integrity sha1-trvgsGdLnXGXCMo43owjfLUmw9E= + +async@0.2.x: + version "0.2.10" + resolved "https://registry.npmjs.org/async/-/async-0.2.10.tgz" integrity sha1-trvgsGdLnXGXCMo43owjfLUmw9E= async@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/async/-/async-2.0.1.tgz#b709cc0280a9c36f09f4536be823c838a9049e25" + resolved "https://registry.npmjs.org/async/-/async-2.0.1.tgz" integrity sha1-twnMAoCpw28J9FNr6CPIOKkEniU= dependencies: lodash "^4.8.0" async@2.5.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" + resolved "https://registry.npmjs.org/async/-/async-2.5.0.tgz" integrity sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw== dependencies: lodash "^4.14.0" asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= aws-sign2@~0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz" integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz#24390e6ad61386b0a747265754d2a17219de862c" - integrity sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A== + version "1.8.0" + resolved "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz" + integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== -axios@^0.19.0: - version "0.19.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" - integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ== +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== dependencies: - follow-redirects "1.5.10" - is-buffer "^2.0.2" + follow-redirects "^1.14.0" balanced-match@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= bcrypt-pbkdf@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz" integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= dependencies: tweetnacl "^0.14.3" +bluebird@^3.5.0: + version "3.5.5" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz" + integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== + bluebird@3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.2.1.tgz#3cecf3504904c30ce3e79c170877e893a11910fd" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.2.1.tgz" integrity sha1-POzzUEkEwwzj55wXCHfok6EZEP0= -bluebird@^3.5.0: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - body-parser@1.18.2: version "1.18.2" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz" integrity sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ= dependencies: bytes "3.0.0" @@ -196,7 +215,7 @@ body-parser@1.18.2: brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -204,42 +223,60 @@ brace-expansion@^1.1.7: browser-stdout@1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== bytes@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= camelcase@^1.0.2: version "1.2.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk= camelcase@^5.0.0: version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -captains-log@^2.0.0, captains-log@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/captains-log/-/captains-log-2.0.3.tgz#4fa10b4f389a62299872826fc6736704e7483469" - integrity sha512-hKlNLw/4Qz1vPDhAbn3pRexi8fzY7d3SwX/BtI2lMG09UqK1W1mf2pYFslau3ZPWxdcwBBcsLLi9ngs+xhqD2Q== +captains-log@^1.0.1: + version "1.0.3" + resolved "https://registry.npmjs.org/captains-log/-/captains-log-1.0.3.tgz" + integrity sha512-zEdafsQYvRCxvcU18iNvBnG7DWG2GqcgiIbNEGBb27+wXijJOgZUUQE6FEjsxTffhxegNkD2YNI00NkfpoNMTg== + dependencies: + "@sailshq/lodash" "^3.10.2" + chalk "1.1.3" + rc "1.0.1" + +captains-log@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/captains-log/-/captains-log-2.0.0.tgz" + integrity sha512-ICNwMIjnPvEm9tVoZ1mxFtuN3t9hCFjVOXj5AgeYBrnqErgx0zd4JqueEv6LgRQzSssYe4Tj//S3W86G68pbmg== dependencies: "@sailshq/lodash" "^3.10.2" chalk "1.1.3" - rc "1.2.8" + rc "1.0.1" semver "5.4.1" caseless@~0.12.0: version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= +chalk@^2.0.1, chalk@2.3.0: + version "2.3.0" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz" + integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q== + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + chalk@1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= dependencies: ansi-styles "^2.2.1" @@ -248,99 +285,86 @@ chalk@1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" - integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q== - dependencies: - ansi-styles "^3.1.0" - escape-string-regexp "^1.0.5" - supports-color "^4.0.0" - -chalk@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== +cliui@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz" + integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" + string-width "^2.1.1" + strip-ansi "^4.0.0" + wrap-ansi "^2.0.0" -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + version "1.9.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz" + integrity sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ== dependencies: - color-name "1.1.3" + color-name "^1.1.1" -color-name@1.1.3: +color-name@^1.1.1: version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= -colors@*: - version "1.4.0" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - -colors@0.6.x: +colors@*, colors@0.6.x: version "0.6.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" + resolved "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz" integrity sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w= -combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== +colors@1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz" + integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM= + +combined-stream@~1.0.6, combined-stream@1.0.6: + version "1.0.6" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz" + integrity sha1-cj599ugBrFYTETp+RFqbactjKBg= dependencies: delayed-stream "~1.0.0" commander@2.11.0: version "2.11.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" + resolved "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz" integrity sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ== commander@2.8.1: version "2.8.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" + resolved "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz" integrity sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ= dependencies: graceful-readlink ">= 1.0.0" common-js-file-extensions@1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/common-js-file-extensions/-/common-js-file-extensions-1.0.2.tgz#1ecf1387001156da680f58149a8be9beb804bf1e" + resolved "https://registry.npmjs.org/common-js-file-extensions/-/common-js-file-extensions-1.0.2.tgz" integrity sha1-Hs8ThwARVtpoD1gUmovpvrgEvx4= common-tags@^1.4.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" - integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== + version "1.8.2" + resolved "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== component-emitter@^1.2.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== compressible@~2.0.11: - version "2.0.17" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" - integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== + version "2.0.13" + resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz" + integrity sha1-DRAgq5JLL9tNYnmHXH1tq6a6p6k= dependencies: - mime-db ">= 1.40.0 < 2" + mime-db ">= 1.33.0 < 2" compression@1.7.1: version "1.7.1" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.1.tgz#eff2603efc2e22cf86f35d2eb93589f9875373db" + resolved "https://registry.npmjs.org/compression/-/compression-1.7.1.tgz" integrity sha1-7/JgPvwuIs+G810uuTWJ+YdTc9s= dependencies: accepts "~1.3.4" @@ -353,12 +377,12 @@ compression@1.7.1: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= connect@3.6.5: version "3.6.5" - resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.5.tgz#fb8dde7ba0763877d0ec9df9dac0b4b40e72c7da" + resolved "https://registry.npmjs.org/connect/-/connect-3.6.5.tgz" integrity sha1-+43ee6B2OHfQ7J352sC0tA5yx9o= dependencies: debug "2.6.9" @@ -368,17 +392,22 @@ connect@3.6.5: content-disposition@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz" integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= content-type@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== +convert-to-ecmascript-compatible-varname@0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/convert-to-ecmascript-compatible-varname/-/convert-to-ecmascript-compatible-varname-0.1.4.tgz" + integrity sha1-Sf9G6WwdNWqR1Lg+X/4BM8PIrBQ= + cookie-parser@1.4.3: version "1.4.3" - resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.3.tgz#0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5" + resolved "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz" integrity sha1-D+MfoZ0AC5X0qt8fU/3CuKIDuqU= dependencies: cookie "0.3.1" @@ -386,32 +415,43 @@ cookie-parser@1.4.3: cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= cookie@0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz" integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= cookiejar@^2.1.0: version "2.1.2" - resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c" + resolved "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz" integrity sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA== -core-util-is@1.0.2, core-util-is@~1.0.0: +core-util-is@~1.0.0, core-util-is@1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= crc@3.4.4: version "3.4.4" - resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" + resolved "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz" integrity sha1-naHpgOO9RPxck79as9ozeNheRms= +cross-spawn@^6.0.0: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + cross-spawn@4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz" integrity sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE= dependencies: lru-cache "^4.0.1" @@ -419,7 +459,7 @@ cross-spawn@4.0.2: csrf@~3.0.3: version "3.0.6" - resolved "https://registry.yarnpkg.com/csrf/-/csrf-3.0.6.tgz#b61120ddceeafc91e76ed5313bb5c0b2667b710a" + resolved "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz" integrity sha1-thEg3c7q/JHnbtUxO7XAsmZ7cQo= dependencies: rndm "1.2.0" @@ -428,7 +468,7 @@ csrf@~3.0.3: csurf@1.9.0: version "1.9.0" - resolved "https://registry.yarnpkg.com/csurf/-/csurf-1.9.0.tgz#49d2c6925ffcec7b7de559597c153fa533364133" + resolved "https://registry.npmjs.org/csurf/-/csurf-1.9.0.tgz" integrity sha1-SdLGkl/87Ht95VlZfBU/pTM2QTM= dependencies: cookie "0.3.1" @@ -438,105 +478,102 @@ csurf@1.9.0: cycle@1.0.x: version "1.0.3" - resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" + resolved "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz" integrity sha1-IegLK+hYD5i0aPN5QwZisEbDStI= dashdash@^1.12.0: version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz" integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= dependencies: assert-plus "^1.0.0" -debug@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== +debug@^3.1.0, debug@3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== dependencies: ms "2.0.0" -debug@3.1.0, debug@=3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== +debug@2.6.9: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@3.2.6, debug@^3.1.0: +debug@3.2.6: version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== dependencies: ms "^2.1.1" decamelize@^1.0.0, decamelize@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= deep-equal@*: - version "2.0.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.0.1.tgz#fc12bbd6850e93212f21344748682ccc5a8813cf" - integrity sha512-7Et6r6XfNW61CPPCIYfm1YPGSmh6+CliYeL4km7GWJcpX5LTAflGF8drLLR+MZX+2P3NZfAfSduutBbSWqER4g== - dependencies: - es-abstract "^1.16.3" - es-get-iterator "^1.0.1" - is-arguments "^1.0.4" - is-date-object "^1.0.1" - is-regex "^1.0.4" - isarray "^2.0.5" - object-is "^1.0.1" - object-keys "^1.1.1" - regexp.prototype.flags "^1.2.0" - side-channel "^1.0.1" - which-boxed-primitive "^1.0.1" - which-collection "^1.0.0" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + version "1.0.1" + resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz" + integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= -define-properties@^1.1.2, define-properties@^1.1.3: +deep-extend@~0.2.5: + version "0.2.11" + resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz" + integrity sha1-eha6aXKRMjQFBhcElLyD9wdv4I8= + +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz" + integrity sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8= + +define-properties@^1.1.2: version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= -depd@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" - integrity sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k= - depd@~1.1.1, depd@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= +depd@1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz" + integrity sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k= + destroy@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz" integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= diff@3.5.0: version "3.5.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz" integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== +dot-access@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/dot-access/-/dot-access-1.0.0.tgz" + integrity sha1-o2LlolkGtVurSKQtEBU4cmBh+mg= + double-ended-queue@^2.1.0-0: version "2.1.0-0" - resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" + resolved "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz" integrity sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw= ecc-jsbn@~0.1.1: version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz" integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= dependencies: jsbn "~0.1.0" @@ -544,58 +581,47 @@ ecc-jsbn@~0.1.1: ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= ejs@2.5.7: version "2.5.7" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.7.tgz#cc872c168880ae3c7189762fd5ffc00896c9518a" + resolved "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz" integrity sha1-zIcsFoiArjxxiXYv1f/ACJbJUYo= emoji-regex@^7.0.1: version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== encodeurl@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= -es-abstract@^1.16.3, es-abstract@^1.17.0-next.1: - version "1.17.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1" - integrity sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug== +end-of-stream@^1.1.0: + version "1.4.1" + resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz" + integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== dependencies: - es-to-primitive "^1.2.1" + once "^1.4.0" + +es-abstract@^1.5.1: + version "1.13.0" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz" + integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== + dependencies: + es-to-primitive "^1.2.0" function-bind "^1.1.1" has "^1.0.3" - has-symbols "^1.0.1" - is-callable "^1.1.5" - is-regex "^1.0.5" - object-inspect "^1.7.0" - object-keys "^1.1.1" - object.assign "^4.1.0" - string.prototype.trimleft "^2.1.1" - string.prototype.trimright "^2.1.1" - -es-get-iterator@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.0.2.tgz#bc99065aa8c98ce52bc86ab282dedbba4120e0b3" - integrity sha512-ZHb4fuNK3HKHEOvDGyHPKf5cSWh/OvAMskeM/+21NMnTuvqFvz8uHatolu+7Kf6b6oK9C+3Uo1T37pSGPWv0MA== - dependencies: - es-abstract "^1.17.0-next.1" - has-symbols "^1.0.1" - is-arguments "^1.0.4" - is-map "^2.0.0" - is-set "^2.0.0" - is-string "^1.0.4" - isarray "^2.0.5" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + is-callable "^1.1.4" + is-regex "^1.0.4" + object-keys "^1.0.12" + +es-to-primitive@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz" + integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== dependencies: is-callable "^1.1.4" is-date-object "^1.0.1" @@ -603,27 +629,40 @@ es-to-primitive@^1.2.1: escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= -escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5, escape-string-regexp@1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= esprima@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== etag@~1.8.1: version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + express-session@1.15.6: version "1.15.6" - resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.15.6.tgz#47b4160c88f42ab70fe8a508e31cbff76757ab0a" + resolved "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz" integrity sha512-r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA== dependencies: cookie "0.3.1" @@ -638,7 +677,7 @@ express-session@1.15.6: express@4.16.2: version "4.16.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" + resolved "https://registry.npmjs.org/express/-/express-4.16.2.tgz" integrity sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w= dependencies: accepts "~1.3.4" @@ -672,46 +711,46 @@ express@4.16.2: utils-merge "1.0.1" vary "~1.1.2" -extend@^3.0.0, extend@~3.0.2: +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extend@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== -extsprintf@1.3.0: +extsprintf@^1.2.0, extsprintf@1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= - eyes@0.1.x: version "0.1.8" - resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz" integrity sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A= fast-deep-equal@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz" integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + version "2.0.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= fd-slicer@~1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" + resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz" integrity sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU= dependencies: pend "~1.2.0" finalhandler@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.6.tgz#007aea33d1a4d3e42017f624848ad58d212f814f" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.6.tgz" integrity sha1-AHrqM9Gk0+QgF/YkhIrVjSEvgU8= dependencies: debug "2.6.9" @@ -724,7 +763,7 @@ finalhandler@1.0.6: finalhandler@1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz" integrity sha1-zgtoVbRYU+eRsvzGgARtiCU91/U= dependencies: debug "2.6.9" @@ -735,75 +774,64 @@ finalhandler@1.1.0: statuses "~1.3.1" unpipe "~1.0.0" -find-up@3.0.0, find-up@^3.0.0: +find-up@^3.0.0, find-up@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: locate-path "^3.0.0" flat@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" + resolved "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz" integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== dependencies: is-buffer "~2.0.3" -flaverr@^1.0.0, flaverr@^1.10.0, flaverr@^1.5.1, flaverr@^1.7.0, flaverr@^1.9.2: - version "1.10.0" - resolved "https://registry.yarnpkg.com/flaverr/-/flaverr-1.10.0.tgz#99240b430d0d52a3720efd0e70bef31a04357f9f" - integrity sha512-POaguCzNjWKEKsBkks4YGgNv1LVUqTX4MTudca5ArQAxtBrPswQLAW8la4Hbo0EZy9tpU3a9WwsKdAACqZnE/Q== +flaverr@^1.0.0, flaverr@^1.1.1, flaverr@^1.5.1, flaverr@^1.7.0, flaverr@^1.9.0: + version "1.9.2" + resolved "https://registry.npmjs.org/flaverr/-/flaverr-1.9.2.tgz" + integrity sha512-14CoGOGUhFkhzDCgGdpFFJE9PrdMPhGmhuS39WxxgTpTKVzfWW3DAVfolUiHwYpaROz7UFrJuaSJtsxhem+i9g== dependencies: "@sailshq/lodash" "^3.10.2" -follow-redirects@1.5.10: - version "1.5.10" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" - integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== - dependencies: - debug "=3.1.0" +follow-redirects@^1.14.0: + version "1.15.4" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz" + integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw== forever-agent@~0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= -form-data@^2.3.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4" - integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== +form-data@^2.3.1, form-data@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz" + integrity sha1-SXBJi+YEwgwAXU9cI67NIda0kJk= dependencies: asynckit "^0.4.0" - combined-stream "^1.0.6" + combined-stream "1.0.6" mime-types "^2.1.12" formidable@^1.2.0: version "1.2.1" - resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.1.tgz#70fb7ca0290ee6ff961090415f4b3df3d2082659" + resolved "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz" integrity sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg== forwarded@~0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz" integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= fresh@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= fs-extra@0.30.0: version "0.30.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz" integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A= dependencies: graceful-fs "^4.1.2" @@ -814,29 +842,41 @@ fs-extra@0.30.0: fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + get-caller-file@^2.0.1: version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + getpass@^0.1.1: version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz" integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= dependencies: assert-plus "^1.0.0" -glob@7.1.2: +glob@^7.0.5, glob@7.1.2: version "7.1.2" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz" integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== dependencies: fs.realpath "^1.0.0" @@ -848,7 +888,7 @@ glob@7.1.2: glob@7.1.3: version "7.1.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz" integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== dependencies: fs.realpath "^1.0.0" @@ -858,41 +898,29 @@ glob@7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.1.3: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: - version "4.2.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" - integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== + version "4.1.11" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz" + integrity sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg= "graceful-readlink@>= 1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" + resolved "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU= growl@1.10.5: version "1.10.5" - resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz" integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== har-schema@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz" integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= har-validator@~5.1.0: version "5.1.3" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz" integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== dependencies: ajv "^6.5.5" @@ -900,51 +928,41 @@ har-validator@~5.1.0: has-ansi@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= dependencies: ansi-regex "^2.0.0" has-flag@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz" integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= -has-symbols@^1.0.0, has-symbols@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz" + integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= -has@^1.0.3: +has@^1.0.1, has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" he@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -http-errors@1.6.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" - integrity sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY= - dependencies: - depd "1.1.1" - inherits "2.0.3" - setprototypeof "1.0.3" - statuses ">= 1.3.1 < 2" - http-errors@~1.5.0: version "1.5.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz" integrity sha1-eIwNLB3iyBuebowBhDtrl+uSB1A= dependencies: inherits "2.0.3" @@ -953,7 +971,7 @@ http-errors@~1.5.0: http-errors@~1.6.2: version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= dependencies: depd "~1.1.2" @@ -961,36 +979,52 @@ http-errors@~1.6.2: setprototypeof "1.1.0" statuses ">= 1.4.0 < 2" +http-errors@1.6.2: + version "1.6.2" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz" + integrity sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY= + dependencies: + depd "1.1.1" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + http-signature@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= dependencies: assert-plus "^1.0.0" jsprim "^1.2.2" sshpk "^1.7.0" -i18n-2@0.7.3: - version "0.7.3" - resolved "https://registry.yarnpkg.com/i18n-2/-/i18n-2-0.7.3.tgz#c0dfd7793c7ae2c0d6ea00552dc6ee8651154d25" - integrity sha512-NiC0dd+VAVGq/hWsK19XCTwfx7Xr0KPtldQ11/9DHY8Ic4++bbgRhjCvRD1C/K09V7UZpwgVhQuzPPom9XVrOQ== - dependencies: - debug "^3.1.0" - sprintf-js "^1.1.1" - i@0.3.x: version "0.3.6" - resolved "https://registry.yarnpkg.com/i/-/i-0.3.6.tgz#d96c92732076f072711b6b10fd7d4f65ad8ee23d" + resolved "https://registry.npmjs.org/i/-/i-0.3.6.tgz" integrity sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0= +i18n-2@0.6.3: + version "0.6.3" + resolved "https://registry.npmjs.org/i18n-2/-/i18n-2-0.6.3.tgz" + integrity sha1-V6xhhePqR8/+mTzXpcFLQN82Szk= + dependencies: + sprintf "^0.1.5" + iconv-lite@0.4.19: version "0.4.19" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz" integrity sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ== +include-all@^1.0.5: + version "1.0.8" + resolved "https://registry.npmjs.org/include-all/-/include-all-1.0.8.tgz" + integrity sha1-6LuEsFcniiLPlEMZA32XAMGKQ3k= + dependencies: + lodash "3.10.1" + include-all@^4.0.0: version "4.0.3" - resolved "https://registry.yarnpkg.com/include-all/-/include-all-4.0.3.tgz#65f06e8f11894b1a7b5ec1fc97e6b3392f7cfa75" + resolved "https://registry.npmjs.org/include-all/-/include-all-4.0.3.tgz" integrity sha1-ZfBujxGJSxp7XsH8l+azOS98+nU= dependencies: "@sailshq/lodash" "^3.10.2" @@ -998,149 +1032,106 @@ include-all@^4.0.0: inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" wrappy "1" -inherits@2, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.3: +inherits@~2.0.3, inherits@2, inherits@2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= ini@~1.3.0: version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== -ipaddr.js@1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" - integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== - -is-arguments@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" - integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== - -is-bigint@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.0.tgz#73da8c33208d00f130e9b5e15d23eac9215601c4" - integrity sha512-t5mGUXC/xRheCK431ylNiSkGGpBp8bHENBcENTkDT6ppwPzEVxNGZRvgvmOEfbWkFhA7D2GEuE2mmQTr78sl2g== +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== -is-boolean-object@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e" - integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ== +ipaddr.js@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz" + integrity sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs= -is-buffer@^2.0.2, is-buffer@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" - integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== +is-buffer@~2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz" + integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== -is-callable@^1.1.4, is-callable@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" - integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== +is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz" + integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== is-date-object@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" - integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== + version "1.0.1" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz" + integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" is-fullwidth-code-point@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= -is-map@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.1.tgz#520dafc4307bb8ebc33b813de5ce7c9400d644a1" - integrity sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw== - -is-number-object@^1.0.3: +is-regex@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" - integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== - -is-regex@^1.0.4, is-regex@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" - integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz" + integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= dependencies: - has "^1.0.3" - -is-set@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" - integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== + has "^1.0.1" -is-string@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" - integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= is-symbol@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== + version "1.0.2" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz" + integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== dependencies: - has-symbols "^1.0.1" + has-symbols "^1.0.0" is-typedarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-weakmap@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" - integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== - -is-weakset@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz#e9a0af88dbd751589f5e50d80f4c98b780884f83" - integrity sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw== - -is-wsl@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= isarray@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= -isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= -isstream@0.1.x, isstream@~0.1.2: +isstream@~0.1.2, isstream@0.1.x: version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= js-yaml@3.13.1: version "3.13.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz" integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== dependencies: argparse "^1.0.7" @@ -1148,34 +1139,34 @@ js-yaml@3.13.1: jsbn@~0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema@0.2.3: version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz" integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= json-stringify-safe@~5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= jsonfile@^2.1.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz" integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= optionalDependencies: graceful-fs "^4.1.6" jsprim@^1.2.2: version "1.4.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz" integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= dependencies: assert-plus "1.0.0" @@ -1185,172 +1176,300 @@ jsprim@^1.2.2: klaw@^1.0.0: version "1.3.1" - resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz" integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= optionalDependencies: graceful-fs "^4.1.9" +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + locate-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: p-locate "^3.0.0" path-exists "^3.0.0" +lodash.iserror@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/lodash.iserror/-/lodash.iserror-3.1.1.tgz" + integrity sha1-KXuaBfq2cUvCRE18wZ0dfES17Ow= + +lodash.isfunction@3.0.8: + version "3.0.8" + resolved "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.8.tgz" + integrity sha1-TbcJ/IG8So/XEnpFilNGxc3OLGs= + +lodash.isobject@3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz" + integrity sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0= + +lodash.isregexp@3.0.5: + version "3.0.5" + resolved "https://registry.npmjs.org/lodash.isregexp/-/lodash.isregexp-3.0.5.tgz" + integrity sha1-4PWWJC8voiioQAhrbIrYLktx/S0= + +lodash.isstring@4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz" + integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= + +lodash.isundefined@3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz" + integrity sha1-I+89lTVWUgOmbO/VuDD4SJEa+0g= + +lodash@^3.10.1: + version "3.10.1" + resolved "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" + integrity sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y= + lodash@^4.14.0, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.8.0: version "4.17.15" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lodash@~2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz" + integrity sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4= + +lodash@3.10.1: + version "3.10.1" + resolved "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" + integrity sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y= + +lodash@3.8.0: + version "3.8.0" + resolved "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz" + integrity sha1-N265i9zZOCqTZcM8TLglDeEyW5E= + log-symbols@2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz" integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== dependencies: chalk "^2.0.1" lru-cache@^4.0.1: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + version "4.1.3" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz" + integrity sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA== dependencies: pseudomap "^1.0.2" yallist "^2.1.2" -machine-as-action@^10.3.0-0: - version "10.3.0" - resolved "https://registry.yarnpkg.com/machine-as-action/-/machine-as-action-10.3.0.tgz#53fe71d0ffdd39732e1ddf7dfb7d1dda139c4cdf" - integrity sha512-4DN6/e5L7dTCeOmK6VErxcqS1mfvU1vl9FAvqZuR/j+xHQoJUhwLgkW3CJXyPesL9+rvGWR5eBsv4o4s/DtxXQ== +machine-as-action@^10.0.0-0: + version "10.1.1" + resolved "https://registry.npmjs.org/machine-as-action/-/machine-as-action-10.1.1.tgz" + integrity sha512-ay8kkZ3YVRSI96OPezta/KcSomcqy5AZ1rmewIEvtGlDIh8PMaelnu6Kx6VcKfRbyj1xd57NQeuFHSpgawYTzg== dependencies: "@sailshq/lodash" "^3.10.2" flaverr "^1.5.1" - machine "^15.2.2" + machine "^15.0.0-19" rttc "^10.0.0-4" streamifier "0.1.1" -machine@^15.0.0-23, machine@^15.2.2: - version "15.2.2" - resolved "https://registry.yarnpkg.com/machine/-/machine-15.2.2.tgz#58e0cc119ffad32b2e70087bb6c23bfb8686452d" - integrity sha512-gXA/U4bjMyQd2QPw8i+AxzXEDkQBImQVE2P7mmTmXPcfszT+NJc5Me0I1Tn6Fj8zsO5EsmsFxD8Xdia751ik/w== +machine@^13.0.0-11: + version "13.0.0-24" + resolved "https://registry.npmjs.org/machine/-/machine-13.0.0-24.tgz" + integrity sha512-M4jMQbHlAgPklsGdCxP6udDgeOEABlYxwSV0oybcgt4bZ5hz0CLIIpJUtBNtpDNe29K9u6qFHQrGAAIkEiNa7w== + dependencies: + "@sailshq/lodash" "^3.10.2" + convert-to-ecmascript-compatible-varname "0.1.4" + debug "3.1.0" + include-all "^1.0.5" + rttc "^9.8.1" + switchback "^2.0.1" + +machine@^15.0.0-19, machine@^15.0.0-21, machine@^15.0.0-5: + version "15.0.0" + resolved "https://registry.npmjs.org/machine/-/machine-15.0.0.tgz" + integrity sha512-DZx0vaY3jErgOe/5PXyPly56YacKhReiOu/T1mm2huCl4kTaMYvLxLqee9s+5x78nltF6YfcynK0GMXXZBP8OQ== dependencies: "@sailshq/lodash" "^3.10.2" anchor "^1.2.0" flaverr "^1.7.0" - parley "^3.8.0" + parley "^3.1.0" rttc "^10.0.0-3" -machinepack-process@^4.0.0, machinepack-process@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/machinepack-process/-/machinepack-process-4.0.1.tgz#c0e36ed4770854c9e87bb6349517dcd26a1ada6f" - integrity sha512-/5dqpWVhNjRC78v4cOKMH2I74u3hbM4pVha0SEh427eddWLSDt41txECZh+HLPPD3h/r35UU0cKszIFxqZYJlA== +machine@~12.1.0: + version "12.1.1" + resolved "https://registry.npmjs.org/machine/-/machine-12.1.1.tgz" + integrity sha512-fohf/zxGNvZL69JfbZI/rf660cLnC2tU3tSz8BHGrl+5c7C/82Zypy2fpT2FKPh1q56zfAaCqyI5hSROqBF90g== dependencies: - "@sailshq/lodash" "^3.10.2" - machine "^15.0.0-23" - opn "5.3.0" + convert-to-ecmascript-compatible-varname "0.1.4" + debug "3.1.0" + lodash "3.10.1" + object-hash "0.3.0" + rttc "~9.3.0" + switchback "2.0.0" -machinepack-redis@^2.0.2: - version "2.0.5" - resolved "https://registry.yarnpkg.com/machinepack-redis/-/machinepack-redis-2.0.5.tgz#91756475103adf6dee1ffbbc861b23def64258a3" - integrity sha512-K+5j93jaeFKKhtGc0VDVaW/42luxbVnN/XueLfXdJhFam+dMm+06iNzVC0xexZwx+MRfnpWiMOT2TncC+Vi07g== +machinepack-json@~2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/machinepack-json/-/machinepack-json-2.0.1.tgz" + integrity sha1-uZGrXIjYxR6dgafe87U4gpVmzEA= + dependencies: + lodash.iserror "3.1.1" + lodash.isfunction "3.0.8" + lodash.isregexp "3.0.5" + machine "~12.1.0" + +machinepack-process@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/machinepack-process/-/machinepack-process-2.0.2.tgz" + integrity sha1-SMaZT+n8YBXBNcszJKb614486zk= + dependencies: + lodash.isfunction "3.0.8" + lodash.isobject "3.0.2" + lodash.isstring "4.0.1" + lodash.isundefined "3.0.1" + machine "~12.1.0" + machinepack-json "~2.0.0" + open "0.0.5" + +machinepack-redis@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/machinepack-redis/-/machinepack-redis-1.3.0.tgz" + integrity sha1-eXMRUKJs8rCwCw63V3/yaOW/dbg= dependencies: "@sailshq/lodash" "^3.10.2" async "2.0.1" - flaverr "^1.9.2" - machine "^15.2.2" - redis "2.8.0" + flaverr "^1.1.1" + machine "^13.0.0-11" + redis "2.6.3" + +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" media-typer@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= -merge-defaults@0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/merge-defaults/-/merge-defaults-0.2.2.tgz#68b9da04fef804674a0d63df1c469378c343d506" - integrity sha512-rKkxPFgGDZfmen0IN8BKRsGEbFU3PdO0RhR1GjOk+BLJF7+LAIhs5bUG3s26FkbB5bfIn9il25KkntRGdqHQ3A== +mem@^4.0.0: + version "4.3.0" + resolved "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== dependencies: - "@sailshq/lodash" "^3.10.2" + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" + +merge-defaults@0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/merge-defaults/-/merge-defaults-0.2.1.tgz" + integrity sha1-3UIkjrlrtqUVIXJDIccv+Vg93oA= + dependencies: + lodash "~2.4.1" merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= -merge-dictionaries@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/merge-dictionaries/-/merge-dictionaries-1.0.0.tgz#7896ee1ab1a1550d3287a0311b7db7804b691931" - integrity sha1-eJbuGrGhVQ0yh6AxG323gEtpGTE= - dependencies: - "@sailshq/lodash" "^3.10.2" - merge-dictionaries@^0.0.3: version "0.0.3" - resolved "https://registry.yarnpkg.com/merge-dictionaries/-/merge-dictionaries-0.0.3.tgz#c4de4d58dbb25e4c2823aa30cb8e1539069eb757" + resolved "https://registry.npmjs.org/merge-dictionaries/-/merge-dictionaries-0.0.3.tgz" integrity sha1-xN5NWNuyXkwoI6owy44VOQaet1c= dependencies: "@sailshq/lodash" "^3.10.2" +merge-dictionaries@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/merge-dictionaries/-/merge-dictionaries-1.0.0.tgz" + integrity sha1-eJbuGrGhVQ0yh6AxG323gEtpGTE= + dependencies: + "@sailshq/lodash" "^3.10.2" + methods@^1.1.1, methods@^1.1.2, methods@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= -mime-db@1.43.0, "mime-db@>= 1.40.0 < 2": - version "1.43.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" - integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ== +"mime-db@>= 1.33.0 < 2", mime-db@~1.33.0: + version "1.33.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz" + integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== -mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.26" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" - integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ== +mime-db@~1.37.0: + version "1.37.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz" + integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg== + +mime-types@^2.1.12, mime-types@~2.1.18: + version "2.1.18" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz" + integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== + dependencies: + mime-db "~1.33.0" + +mime-types@~2.1.19: + version "2.1.21" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz" + integrity sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg== dependencies: - mime-db "1.43.0" + mime-db "~1.37.0" -mime@1.4.1: +mime@^1.4.1, mime@1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" + resolved "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz" integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ== -mime@^1.4.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== +mimic-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimatch@3.0.4, minimatch@^3.0.4: +minimatch@^3.0.4, minimatch@3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" -minimist@0.0.10: - version "0.0.10" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= +minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= -minimist@0.0.8: +minimist@~0.0.7, minimist@0.0.8: version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= -minimist@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= +minimist@0.0.10: + version "0.0.10" + resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= mkdirp@0.5.1, mkdirp@0.x.x: version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz" integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= dependencies: minimist "0.0.8" mocha@^6.1.4: - version "6.2.2" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-6.2.2.tgz#5d8987e28940caf8957a7d7664b910dc5b2fea20" - integrity sha512-FgDS9Re79yU1xz5d+C4rv1G7QagNGHZ+iXF81hO8zY35YZZcLEsJVfFolfsqKFWunATEvNzMK0r/CwWd/szO9A== + version "6.1.4" + resolved "https://registry.npmjs.org/mocha/-/mocha-6.1.4.tgz" + integrity sha512-PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg== dependencies: ansi-colors "3.2.3" browser-stdout "1.3.1" @@ -1372,83 +1491,90 @@ mocha@^6.1.4: supports-color "6.0.0" which "1.3.1" wide-align "1.1.3" - yargs "13.3.0" - yargs-parser "13.1.1" - yargs-unparser "1.6.0" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + yargs "13.2.2" + yargs-parser "13.0.0" + yargs-unparser "1.5.0" -ms@2.1.1: +ms@^2.1.1, ms@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -ms@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= multiparty@4.1.3: version "4.1.3" - resolved "https://registry.yarnpkg.com/multiparty/-/multiparty-4.1.3.tgz#3c43c7fcb1896e17460436a9dd0b6ef1668e4f94" + resolved "https://registry.npmjs.org/multiparty/-/multiparty-4.1.3.tgz" integrity sha1-PEPH/LGJbhdGBDap3Qtu8WaOT5Q= dependencies: fd-slicer "~1.0.1" mute-stream@~0.0.4: - version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + version "0.0.7" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz" + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= + +ncp@^2.0.0: + version "2.0.0" + resolved "http://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz" + integrity sha1-GVoh1sRuNh0vsSgbo4uR6d9727M= ncp@0.4.x: version "0.4.2" - resolved "https://registry.yarnpkg.com/ncp/-/ncp-0.4.2.tgz#abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574" + resolved "http://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz" integrity sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ= -ncp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" - integrity sha1-GVoh1sRuNh0vsSgbo4uR6d9727M= +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz" + integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= -negotiator@0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== node-environment-flags@1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.5.tgz#fa930275f5bf5dae188d6192b24b4c8bbac3d76a" + resolved "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz" integrity sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== dependencies: object.getownpropertydescriptors "^2.0.3" semver "^5.7.0" +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + oauth-sign@~0.9.0: version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -object-inspect@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== - -object-is@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4" - integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ== +object-hash@0.3.0: + version "0.3.0" + resolved "https://registry.npmjs.org/object-hash/-/object-hash-0.3.0.tgz" + integrity sha1-VIII5Ds2pE5NowutbFasU7iF50Q= -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: +object-keys@^1.0.11, object-keys@^1.0.12: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object.assign@4.1.0, object.assign@^4.1.0: +object.assign@4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz" integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== dependencies: define-properties "^1.1.2" @@ -1457,142 +1583,164 @@ object.assign@4.1.0, object.assign@^4.1.0: object-keys "^1.0.11" object.getownpropertydescriptors@^2.0.3: - version "2.1.0" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" - integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== + version "2.0.3" + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz" + integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + define-properties "^1.1.2" + es-abstract "^1.5.1" on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= dependencies: ee-first "1.1.1" on-headers@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + version "1.0.1" + resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz" + integrity sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c= -once@^1.3.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= dependencies: wrappy "1" -opn@5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" - integrity sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g== +open@0.0.5: + version "0.0.5" + resolved "https://registry.npmjs.org/open/-/open-0.0.5.tgz" + integrity sha1-QsPhjslUZra/DcQvOilFw/DK2Pw= + +os-locale@^3.0.0, os-locale@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== dependencies: - is-wsl "^1.1.0" + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== p-limit@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" - integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== + version "2.2.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz" + integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== dependencies: p-try "^2.0.0" p-locate@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== dependencies: p-limit "^2.0.0" p-try@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== parasails@^0.7.1: - version "0.7.11" - resolved "https://registry.yarnpkg.com/parasails/-/parasails-0.7.11.tgz#87ee29f8e73ac6d8b5e8ee88cadf41d2ce7cd05f" - integrity sha512-KCy+uA3iZeSOXFnOsaeke98/xRkd4dm2C6PkMb6bKIbp4rpc26ytIvTwTRLOvUeVxkBzMhAStooS9baTWoJ8Zw== + version "0.7.4" + resolved "https://registry.npmjs.org/parasails/-/parasails-0.7.4.tgz" + integrity sha512-2Mc8lx/68xrBVa7RoMUNAliqaK8m8fyaEhFAPTtsNbT9BqdixtIjlDGaeqrX082xQ+bmvSxZdw4UJG8f8+G21w== -parley@^3.3.4, parley@^3.8.0: - version "3.8.3" - resolved "https://registry.yarnpkg.com/parley/-/parley-3.8.3.tgz#a7f95ea4b4943d8198101e78629024b878f9b00d" - integrity sha512-9fSqT4J0jRNh+F/5EAqZvUSq232xjFXZJ3rXgKUXbIUUZ0ZPj6VjW83mI5UpVP8PMGHF3I8xycmvNjs9nQ3O8g== +parley@^3.1.0, parley@^3.3.4: + version "3.4.2" + resolved "https://registry.npmjs.org/parley/-/parley-3.4.2.tgz" + integrity sha512-I7g4YZ+hQFXvKhmQLjZB4L4cMQ6af/nO36+T8TabtVNkNQ6e5K7pL0ivbGfHkHuTLBHxpaDvYmZWHy9Ob28J0A== dependencies: "@sailshq/lodash" "^3.10.2" bluebird "3.2.1" flaverr "^1.5.1" -parseurl@1.3.2: +parseurl@~1.3.2, parseurl@1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz" integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M= -parseurl@~1.3.2: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= path-to-regexp@1.5.3: version "1.5.3" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.5.3.tgz#7221ddd42483538bddf9fead942a79ff3164f57a" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.5.3.tgz" integrity sha1-ciHd1CSDU4vd+f6tlCp5/zFk9Xo= dependencies: isarray "0.0.1" pend@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz" integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= performance-now@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= pkginfo@0.3.x: version "0.3.1" - resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.3.1.tgz#5b29f6a81f70717142e09e765bbeab97b4f81e21" + resolved "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz" integrity sha1-Wyn2qB9wcXFC4J52W76rl7T4HiE= pkginfo@0.x.x: version "0.4.1" - resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" + resolved "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz" integrity sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8= pluralize@1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" + resolved "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz" integrity sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU= process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== prompt@0.2.14: version "0.2.14" - resolved "https://registry.yarnpkg.com/prompt/-/prompt-0.2.14.tgz#57754f64f543fd7b0845707c818ece618f05ffdc" + resolved "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz" integrity sha1-V3VPZPVD/XsIRXB8gY7OYY8F/9w= dependencies: pkginfo "0.x.x" @@ -1602,61 +1750,64 @@ prompt@0.2.14: winston "0.8.x" proxy-addr@~2.0.2: - version "2.0.5" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" - integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== + version "2.0.3" + resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz" + integrity sha512-jQTChiCJteusULxjBp8+jftSQE5Obdl3k4cnmLA6WXtK6XFuWRnvVL7aCiBqaLPM8c4ph0S4tKna8XvmIwEnXQ== dependencies: forwarded "~0.1.2" - ipaddr.js "1.9.0" + ipaddr.js "1.6.0" pseudomap@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= psl@^1.1.24, psl@^1.1.28: - version "1.7.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c" - integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ== + version "1.1.29" + resolved "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz" + integrity sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ== + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" punycode@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= punycode@^2.1.0, punycode@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -qs@6.5.1: +qs@^6.5.1, qs@6.5.1: version "6.5.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" + resolved "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz" integrity sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A== -qs@^6.5.1: - version "6.9.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.1.tgz#20082c65cb78223635ab1a9eaca8875a29bf8ec9" - integrity sha512-Cxm7/SS/y/Z3MHWSxXb8lIFqgqBowP5JMlTUFyJN88y0SGQhVmZnqFK/PeuMX9LzUyWsqqhNxIyg0jlzq946yA== - qs@~6.5.2: version "6.5.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz" integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== random-bytes@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" + resolved "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz" integrity sha1-T2ih3Arli9P7lYSMMDJNt11kNgs= range-parser@~1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + version "1.2.0" + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz" + integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= raw-body@2.3.2: version "2.3.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz" integrity sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k= dependencies: bytes "3.0.0" @@ -1664,27 +1815,37 @@ raw-body@2.3.2: iconv-lite "0.4.19" unpipe "1.0.0" -rc@1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== +rc@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/rc/-/rc-1.0.1.tgz" + integrity sha1-+RnCXoBMsKpg9v2S2Sn8hrRQE+g= dependencies: - deep-extend "^0.6.0" + deep-extend "~0.2.5" + ini "~1.3.0" + minimist "~0.0.7" + strip-json-comments "0.1.x" + +rc@1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz" + integrity sha1-2M6ctX6NZNnHut2YdsfDTL48cHc= + dependencies: + deep-extend "~0.4.0" ini "~1.3.0" minimist "^1.2.0" strip-json-comments "~2.0.1" read@1.0.7, read@1.0.x: version "1.0.7" - resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" + resolved "https://registry.npmjs.org/read/-/read-1.0.7.tgz" integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= dependencies: mute-stream "~0.0.4" readable-stream@^2.3.5: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + version "2.3.6" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz" + integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -1695,60 +1856,52 @@ readable-stream@^2.3.5: util-deprecate "~1.0.1" redis-commands@^1.2.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.5.0.tgz#80d2e20698fe688f227127ff9e5164a7dd17e785" - integrity sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg== + version "1.3.5" + resolved "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.5.tgz" + integrity sha512-foGF8u6MXGFF++1TZVC6icGXuMYPftKXt1FBT2vrfU9ZATNtZJ8duRC5d1lEfE8hyVe3jhelHGB91oB7I6qLsA== -redis-parser@^2.6.0: +redis-parser@^2.0.0: version "2.6.0" - resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" + resolved "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz" integrity sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs= -redis@2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" - integrity sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A== +redis@2.6.3: + version "2.6.3" + resolved "https://registry.npmjs.org/redis/-/redis-2.6.3.tgz" + integrity sha1-hDBbklU8ah8Jx8R8MLEazn27etQ= dependencies: double-ended-queue "^2.1.0-0" redis-commands "^1.2.0" - redis-parser "^2.6.0" - -regexp.prototype.flags@^1.2.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" - integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + redis-parser "^2.0.0" reportback@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/reportback/-/reportback-2.0.2.tgz#8957ff5f6b1675e0284c1a14001a24463c0f9900" - integrity sha512-EOF6vRKfXjI7ydRoOdXXeRTK1zgWq7mep8/32patt0FOnBap32eTSw6yCea/o0025PHmVB8crx5OxzZJ+/P34g== + version "2.0.1" + resolved "https://registry.npmjs.org/reportback/-/reportback-2.0.1.tgz" + integrity sha1-PyJVrlkEpQn8AV1CWq+iNviTpRY= dependencies: - captains-log "^2.0.2" + captains-log "^1.0.1" switchback "^2.0.1" -request-promise-core@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" - integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== +request-promise-core@1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz" + integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== dependencies: - lodash "^4.17.15" + lodash "^4.17.11" request-promise@^4.2.4: - version "4.2.5" - resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.5.tgz#186222c59ae512f3497dfe4d75a9c8461bd0053c" - integrity sha512-ZgnepCykFdmpq86fKGwqntyTiUrHycALuGggpyCZwMvGaZWgxW6yagT0FHkgo5LzYvOaCNvxYwWYIjevSH1EDg== + version "4.2.4" + resolved "https://registry.npmjs.org/request-promise/-/request-promise-4.2.4.tgz" + integrity sha512-8wgMrvE546PzbR5WbYxUQogUnUDfM0S7QIFZMID+J73vdFARkFy+HElj4T+MWYhpXwlLp0EQ8Zoj8xUA0he4Vg== dependencies: bluebird "^3.5.0" - request-promise-core "1.1.3" + request-promise-core "1.1.2" stealthy-require "^1.1.1" tough-cookie "^2.3.3" -request@^2.88.0: +request@^2.34, request@^2.88.0: version "2.88.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + resolved "https://registry.npmjs.org/request/-/request-2.88.0.tgz" integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== dependencies: aws-sign2 "~0.7.0" @@ -1774,34 +1927,39 @@ request@^2.88.0: require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + require-main-filename@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== revalidator@0.1.x: version "0.1.8" - resolved "https://registry.yarnpkg.com/revalidator/-/revalidator-0.1.8.tgz#fece61bfa0c1b52a206bd6b18198184bdd523a3b" + resolved "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz" integrity sha1-/s5hv6DBtSoga9axgZgYS91SOjs= -rimraf@2.x.x, rimraf@^2.2.8: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== +rimraf@^2.2.8, rimraf@2.x.x: + version "2.6.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz" + integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== dependencies: - glob "^7.1.3" + glob "^7.0.5" rndm@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/rndm/-/rndm-1.2.0.tgz#f33fe9cfb52bbfd520aa18323bc65db110a1b76c" + resolved "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz" integrity sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w= router@1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/router/-/router-1.3.2.tgz#bfaa16888a5283d5ee40d999da7a9fa15296a60c" + resolved "https://registry.npmjs.org/router/-/router-1.3.2.tgz" integrity sha1-v6oWiIpSg9XuQNmZ2nqfoVKWpgw= dependencies: array-flatten "2.1.1" @@ -1813,78 +1971,87 @@ router@1.3.2: utils-merge "1.0.1" rttc@^10.0.0-0, rttc@^10.0.0-3, rttc@^10.0.0-4: - version "10.0.1" - resolved "https://registry.yarnpkg.com/rttc/-/rttc-10.0.1.tgz#18f3d97845528d5f99a9b5aafeb831af3bdbac36" - integrity sha512-wBsGNVaZ8K1qG0n5jxQ7dnOpvpewyQHGIjbMFYx8D16+51MM+FwkZwDPgH4GtnaTSzrNvrJriXFyvDi7OTZQ0A== + version "10.0.0-4" + resolved "https://registry.npmjs.org/rttc/-/rttc-10.0.0-4.tgz" + integrity sha512-HroJ9z+RVipbPCeFdglopiVM18w9BM5PFqXivM6ZceNQEphjpDGZ154srk1JhviNacrmFqhdzDbGQZsB13g6JA== dependencies: "@sailshq/lodash" "^3.10.2" +rttc@^9.8.1: + version "9.8.2" + resolved "https://registry.npmjs.org/rttc/-/rttc-9.8.2.tgz" + integrity sha1-IzfSHUE/SjT/+IF3+V6uft+9Jr8= + dependencies: + lodash "3.10.1" + +rttc@~9.3.0: + version "9.3.4" + resolved "https://registry.npmjs.org/rttc/-/rttc-9.3.4.tgz" + integrity sha1-vABXU7c80WrFANkURta5kyBhctc= + dependencies: + lodash "3.8.0" + rxjs-compat@6.5.2: version "6.5.2" - resolved "https://registry.yarnpkg.com/rxjs-compat/-/rxjs-compat-6.5.2.tgz#e469070adf6260bdad195e9d4a39f444ae28b458" + resolved "https://registry.npmjs.org/rxjs-compat/-/rxjs-compat-6.5.2.tgz" integrity sha512-TRMkTp4FgSxE2HtGvxmgRukh3JqdFM7ejAj1Ti/VdodbPGfWvZR5+KdLKRV9jVDFyu2SknM8RD+PR54KGnoLjg== rxjs@6.5.2: version "6.5.2" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz" integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== dependencies: tslib "^1.9.0" -safe-buffer@5.1.1: +safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1, safe-buffer@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz" integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== -safe-buffer@^5.0.1, safe-buffer@^5.1.2: - version "5.2.0" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sails-generate@^1.16.0-0: - version "1.16.13" - resolved "https://registry.yarnpkg.com/sails-generate/-/sails-generate-1.16.13.tgz#97def3a37c43394ab76a608175d4c6216165a264" - integrity sha512-RDeiNuARxwQPuAiYqIKsrZtd5S7GRq1HhErJY8artt/hqhatmph/+vTJgGHrTUxygr7hZR4JAUKiXxM/YNRRpw== +sails-generate@^1.15.19: + version "1.15.24" + resolved "https://registry.npmjs.org/sails-generate/-/sails-generate-1.15.24.tgz" + integrity sha512-177Y2SO6zqNLShHtIbDYVPRIGGA/fVqAMTOadbHjh86odSw/2cRcMjDq1IrHaAQ771a8lWbxvny+tP5HBnGuqg== dependencies: - "@sailshq/lodash" "^3.10.3" async "2.0.1" chalk "1.1.3" cross-spawn "4.0.2" flaverr "^1.0.0" fs-extra "0.30.0" - machinepack-process "^4.0.0" + lodash "3.10.1" + machinepack-process "^2.0.2" parasails "^0.7.1" read "1.0.7" reportback "^2.0.1" sails.io.js-dist "^1.0.0" -sails-stringfile@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/sails-stringfile/-/sails-stringfile-0.3.3.tgz#6264107745493f4c062e5e53b43c52b52f1b343c" - integrity sha512-m61lSEURCpKf2T7Df9lkG2eWBPGFKrhJZi8OF3TMQe7HGWyUpYdwKhV6rFsky1gY6g4ecvTZTAqwHXOE1AtaCA== +sails-stringfile@0.3.2: + version "0.3.2" + resolved "https://registry.npmjs.org/sails-stringfile/-/sails-stringfile-0.3.2.tgz" + integrity sha1-2k42Zqj5z9Ph80a/uBFqMD4cML0= dependencies: - "@sailshq/lodash" "^3.10.2" colors "*" + lodash "~2.4.1" sails.io.js-dist@^1.0.0: version "1.2.1" - resolved "https://registry.yarnpkg.com/sails.io.js-dist/-/sails.io.js-dist-1.2.1.tgz#37b6cee741c45c9b7fa812108fb061e5334c248f" + resolved "https://registry.npmjs.org/sails.io.js-dist/-/sails.io.js-dist-1.2.1.tgz" integrity sha512-fBMdntawlqd5N/1xL9Vu6l+J5zvy86jLUf0nFDal5McUeZzUy7PpNqq+Vx/F9KgItAyFJ7RoO3YltO9dD0Q5OQ== sails@^1.0.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/sails/-/sails-1.2.3.tgz#222718c112e078f806c2f886aeeb082d1f6e0511" - integrity sha512-S40uoH/DzGDmm40OJL/TNLONTPxQcuzBEuceuflNXlGLl07POc8z15Bt8cnsfh7Cr6zbXBTQhIYl3ioZNJEisA== + version "1.0.2" + resolved "https://registry.npmjs.org/sails/-/sails-1.0.2.tgz" + integrity sha512-tcMERTduNcO1WAWgkQxp5hZEBLBxdNgS3Kf5LEe1PzgEORKLYJrj+KXdjadcYuyuzydBsWmlv76oF2Y97P4RoQ== dependencies: "@sailshq/lodash" "^3.10.2" async "2.5.0" @@ -1901,59 +2068,64 @@ sails@^1.0.2: ejs "2.5.7" express "4.16.2" express-session "1.15.6" - flaverr "^1.10.0" + flaverr "^1.9.0" glob "7.1.2" - i18n-2 "0.7.3" + i18n-2 "0.6.3" include-all "^4.0.0" - machine "^15.2.2" - machine-as-action "^10.3.0-0" - machinepack-process "^4.0.1" - machinepack-redis "^2.0.2" - merge-defaults "0.2.2" - merge-dictionaries "1.0.0" + machine "^15.0.0-21" + machine-as-action "^10.0.0-0" + machinepack-process "^2.0.2" + machinepack-redis "^1.1.1" + merge-defaults "0.2.1" + merge-dictionaries "^1.0.0" minimist "0.0.10" parley "^3.3.4" parseurl "1.3.2" path-to-regexp "1.5.3" pluralize "1.2.1" prompt "0.2.14" - rc "1.2.8" + rc "1.2.2" router "1.3.2" rttc "^10.0.0-0" - sails-generate "^1.16.0-0" - sails-stringfile "^0.3.3" + sails-generate "^1.15.19" + sails-stringfile "0.3.2" semver "4.3.6" serve-favicon "2.4.5" serve-static "1.13.1" - skipper "^0.9.0-0" - sort-route-addresses "^0.0.3" + skipper "~0.8.0" + sort-route-addresses "^0.0.1" uid-safe "2.1.5" vary "1.1.2" - whelk "^6.0.1" + whelk "^6.0.0" sax@>=0.6.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + version "1.3.0" + resolved "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz" + integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== + +semver@^5.5.0: + version "5.7.0" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz" + integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + +semver@^5.7.0: + version "5.7.0" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz" + integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== semver@4.3.6: version "4.3.6" - resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" + resolved "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" integrity sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto= semver@5.4.1: version "5.4.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" + resolved "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz" integrity sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg== -semver@^5.7.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - send@0.16.1: version "0.16.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" + resolved "https://registry.npmjs.org/send/-/send-0.16.1.tgz" integrity sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A== dependencies: debug "2.6.9" @@ -1972,7 +2144,7 @@ send@0.16.1: serve-favicon@2.4.5: version "2.4.5" - resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.4.5.tgz#49d9a46863153a9240691c893d2b0e7d85d6d436" + resolved "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz" integrity sha512-s7F8h2NrslMkG50KxvlGdj+ApSwaLex0vexuJ9iFf3GLTIp1ph/l1qZvRe9T9TJEYZgmq72ZwJ2VYiAEtChknw== dependencies: etag "~1.8.1" @@ -1983,7 +2155,7 @@ serve-favicon@2.4.5: serve-static@1.13.1: version "1.13.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz" integrity sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ== dependencies: encodeurl "~1.0.1" @@ -1993,77 +2165,88 @@ serve-static@1.13.1: set-blocking@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= setprototypeof@1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz" integrity sha1-gaVSFB7BBLiOic44MQOtXGZWTQg= setprototypeof@1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz" integrity sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ= setprototypeof@1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== -side-channel@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" - integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= dependencies: - es-abstract "^1.17.0-next.1" - object-inspect "^1.7.0" + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +signal-exit@^3.0.0: + version "3.0.2" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= skipper-disk@~0.5.6: - version "0.5.12" - resolved "https://registry.yarnpkg.com/skipper-disk/-/skipper-disk-0.5.12.tgz#a57f59547bc00cc9c8a394ba33e9c0a7b2e15b96" - integrity sha512-yyLOWT1WKY2h9NaUuG77XyhMti6vltRqp3ofN2ZTYoG3/V/SRLH1CjtZQ2Az6oqgMrfN8SZ83k3ptaOvB31YmQ== + version "0.5.11" + resolved "https://registry.npmjs.org/skipper-disk/-/skipper-disk-0.5.11.tgz" + integrity sha512-uyTPr5im+dZPycIpyA+YgogpQgUXHn4a8vMc6xf4STKFypIzQ2/lwjIu9GLR5mTboeDebgQQWQFSFmZuaxtuvA== dependencies: "@sailshq/lodash" "^3.10.2" debug "3.1.0" fs-extra "0.30.0" -skipper@^0.9.0-0: - version "0.9.0-4" - resolved "https://registry.yarnpkg.com/skipper/-/skipper-0.9.0-4.tgz#4e30140201ee8688c843576403e8810b785e5577" - integrity sha512-7q4pC2mkaVC/YphYn7bFzlcsPTdr/h6qZqtX1rtO5gkPmmBO3+z/7D7BgpLSG3C6Ji/PXm4Wk2GwXyXWIXwZ2w== +skipper@~0.8.0: + version "0.8.5" + resolved "https://registry.npmjs.org/skipper/-/skipper-0.8.5.tgz" + integrity sha512-tDkO6RxoRb0WEzlSnS8qCKmWvu4lB2SXrQilgcSusS1uNa0gc7f7lHDZYu5qz3ZqUdMJWGvBLdPYPmGvMJYNZg== dependencies: - "@sailshq/lodash" "^3.10.3" async "2.0.1" body-parser "1.18.2" + colors "1.1.2" debug "3.1.0" + dot-access "1.0.0" + lodash "3.10.1" multiparty "4.1.3" semver "4.3.6" skipper-disk "~0.5.6" string_decoder "0.10.31" uuid "3.0.1" -sort-route-addresses@^0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/sort-route-addresses/-/sort-route-addresses-0.0.3.tgz#6e821f5bb8e7e195f5713f82b8b24674d004ea97" - integrity sha512-FK9GJty+MN4X5ml665lcgJe5y0zjF2wgnNVWS1yVnPFuCODCtMJx8B1rFN5NRwDaCbDGjc45OKkusqrx2GFL4g== +sort-route-addresses@^0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/sort-route-addresses/-/sort-route-addresses-0.0.1.tgz" + integrity sha1-I6h9KDETsS7h/ttM9DryErtW2rs= dependencies: - "@sailshq/lodash" "^3.10.2" - -sprintf-js@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" - integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== + lodash "^3.10.1" sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= +sprintf@^0.1.5: + version "0.1.5" + resolved "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz" + integrity sha1-j4PjmpMXwaUCy324BQ5Rxnn27c8= + sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + version "1.15.2" + resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.15.2.tgz" + integrity sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA== dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -2077,103 +2260,111 @@ sshpk@^1.7.0: stack-trace@0.0.x: version "0.0.10" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz" integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= -"statuses@>= 1.3.1 < 2", "statuses@>= 1.4.0 < 2": - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= - -statuses@~1.3.1: +"statuses@>= 1.3.1 < 2", statuses@~1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + resolved "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz" integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= +"statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + stealthy-require@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz" integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= streamifier@0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/streamifier/-/streamifier-0.1.1.tgz#97e98d8fa4d105d62a2691d1dc07e820db8dfc4f" + resolved "https://registry.npmjs.org/streamifier/-/streamifier-0.1.1.tgz" integrity sha1-l+mNj6TRBdYqJpHR3AfoINuN/E8= -"string-width@^1.0.2 || 2": +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +string_decoder@0.10.31: + version "0.10.31" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== dependencies: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string-width@^3.0.0, string-width@^3.1.0: +string-width@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== dependencies: emoji-regex "^7.0.1" is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string.prototype.trimleft@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" - integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== - dependencies: - define-properties "^1.1.3" - function-bind "^1.1.1" - -string.prototype.trimright@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" - integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== - dependencies: - define-properties "^1.1.3" - function-bind "^1.1.1" - -string_decoder@0.10.31: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0: +strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= dependencies: ansi-regex "^2.0.0" strip-ansi@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= dependencies: ansi-regex "^3.0.0" -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: +strip-ansi@^5.1.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: ansi-regex "^4.1.0" -strip-json-comments@2.0.1, strip-json-comments@~2.0.1: +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +strip-json-comments@0.1.x: + version "0.1.3" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz" + integrity sha1-Fkxk43Coo8wAyeAbU55WmCPw7lQ= + +strip-json-comments@2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= superagent@^3.8.3: version "3.8.3" - resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.3.tgz#460ea0dbdb7d5b11bc4f78deba565f86a178e128" + resolved "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz" integrity sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA== dependencies: component-emitter "^1.2.0" @@ -2189,48 +2380,48 @@ superagent@^3.8.3: supertest@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/supertest/-/supertest-4.0.2.tgz#c2234dbdd6dc79b6f15b99c8d6577b90e4ce3f36" + resolved "https://registry.npmjs.org/supertest/-/supertest-4.0.2.tgz" integrity sha512-1BAbvrOZsGA3YTCWqbmh14L0YEq0EGICX/nBnfkfVJn7SrxQV1I3pMYjSzG9y/7ZU2V9dWqyqk2POwxlb09duQ== dependencies: methods "^1.1.2" superagent "^3.8.3" -supports-color@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" - integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== - dependencies: - has-flag "^3.0.0" - supports-color@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= supports-color@^4.0.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" - integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s= + version "4.4.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz" + integrity sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ== dependencies: has-flag "^2.0.0" -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== +supports-color@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz" + integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== dependencies: has-flag "^3.0.0" switchback@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/switchback/-/switchback-2.0.5.tgz#2f50c91118f659c42e03c0f2bdb094f868c45336" - integrity sha512-w9gnsTxR5geOKt45QUryhDP9KTLcOAqje9usR2VQ2ng8DfhaF+mkIcArxioMP/p6Z/ecKE58i2/B0DDlMJK1jw== + version "2.0.2" + resolved "https://registry.npmjs.org/switchback/-/switchback-2.0.2.tgz" + integrity sha1-ls8ODTY7VZ0Lt/8htip6qRDsYHk= + dependencies: + lodash "3.10.1" + +switchback@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/switchback/-/switchback-2.0.0.tgz" + integrity sha1-KifZAzPe8wWnUh3MHjL2qOOtcgU= dependencies: - "@sailshq/lodash" "^3.10.3" + lodash "~2.4.1" tough-cookie@^2.3.3: version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== dependencies: psl "^1.1.28" @@ -2238,7 +2429,7 @@ tough-cookie@^2.3.3: tough-cookie@~2.4.3: version "2.4.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz" integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== dependencies: psl "^1.1.24" @@ -2246,78 +2437,83 @@ tough-cookie@~2.4.3: tslib@^1.9.0: version "1.10.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz" integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== tsscmp@1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" + resolved "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz" integrity sha1-fcSjOvcVgatDN9qR2FylQn69mpc= tunnel-agent@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz" integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= dependencies: safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= type-is@~1.6.15: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + version "1.6.16" + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz" + integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q== dependencies: media-typer "0.3.0" - mime-types "~2.1.24" + mime-types "~2.1.18" -typescript@^2.9.2: - version "2.9.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" - integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== +typescript@^5.3.3: + version "5.3.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz" + integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== + +uid-safe@~2.1.5, uid-safe@2.1.5: + version "2.1.5" + resolved "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz" + integrity sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA== + dependencies: + random-bytes "~1.0.0" uid-safe@2.1.4: version "2.1.4" - resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" + resolved "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz" integrity sha1-Otbzg2jG1MjHXsF2I/t5qh0HHYE= dependencies: random-bytes "~1.0.0" -uid-safe@2.1.5, uid-safe@~2.1.5: - version "2.1.5" - resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a" - integrity sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA== - dependencies: - random-bytes "~1.0.0" +underscore@^1.12.1: + version "1.13.6" + resolved "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz" + integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== -underscore@^1.8.3: - version "1.9.1" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" - integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -unpipe@1.0.0, unpipe@~1.0.0: +unpipe@~1.0.0, unpipe@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= uri-js@^4.2.2: version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz" integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== dependencies: punycode "^2.1.0" util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= utile@0.2.x: version "0.2.1" - resolved "https://registry.yarnpkg.com/utile/-/utile-0.2.1.tgz#930c88e99098d6220834c356cbd9a770522d90d7" + resolved "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz" integrity sha1-kwyI6ZCY1iIINMNWy9mncFItkNc= dependencies: async "~0.2.9" @@ -2329,99 +2525,85 @@ utile@0.2.x: utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= +uuid@^3.3.2: + version "3.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz" + integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== + uuid@3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" + resolved "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz" integrity sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE= -uuid@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" - integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== - validator@5.7.0: version "5.7.0" - resolved "https://registry.yarnpkg.com/validator/-/validator-5.7.0.tgz#7a87a58146b695ac486071141c0c49d67da05e5c" + resolved "https://registry.npmjs.org/validator/-/validator-5.7.0.tgz" integrity sha1-eoelgUa2laxIYHEUHAxJ1n2gXlw= -vary@1.1.2, vary@~1.1.2: +vary@~1.1.2, vary@1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= verror@1.10.0: version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz" integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= dependencies: assert-plus "^1.0.0" core-util-is "1.0.2" extsprintf "^1.2.0" -whelk@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/whelk/-/whelk-6.0.1.tgz#96955aa2d26672a78346c894568148b557dce998" - integrity sha512-C6jGmpclsvSYm3rNhCkrdIdGhL9Oh6A9jnSmTN4lfEbH+ENQvjP9qZ5UV9WWolfoumpIzTBVupk1qiVeLL7yYQ== +whelk@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/whelk/-/whelk-6.0.0.tgz" + integrity sha512-qNAuQ3af4oe9mzgYUmCKyxJKzfrx+JE2xN7QxrdNPBkpyFEw2rdABLofHxOl2OHgLEEAQTq2fqbpDQVQHvIg7g== dependencies: "@sailshq/lodash" "^3.10.2" chalk "1.1.3" commander "2.8.1" flaverr "^1.7.0" - machine "^15.2.2" + machine "^15.0.0-5" rttc "^10.0.0-0" yargs "3.4.5" -which-boxed-primitive@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.1.tgz#cbe8f838ebe91ba2471bb69e9edbda67ab5a5ec1" - integrity sha512-7BT4TwISdDGBgaemWU0N0OU7FeAEJ9Oo2P1PHRm/FCWoEi2VLWC9b6xvxAA3C/NMpxg3HXVgi0sMmGbNUbNepQ== - dependencies: - is-bigint "^1.0.0" - is-boolean-object "^1.0.0" - is-number-object "^1.0.3" - is-string "^1.0.4" - is-symbol "^1.0.2" - -which-collection@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.0.tgz#303d38022473f4b7048b529b45f6c842d8814269" - integrity sha512-mG4RtFHE+17N2AxRNvBQ488oBjrhaOaI/G+soUaRJwdyDbu5zmqoAKPYBlY7Zd+QTwpfvInRLKo40feo2si1yA== - dependencies: - is-map "^2.0.0" - is-set "^2.0.0" - is-weakmap "^2.0.0" - is-weakset "^2.0.0" - which-module@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= -which@1.3.1, which@^1.2.9: +which@^1.2.9: + version "1.3.0" + resolved "https://registry.npmjs.org/which/-/which-1.3.0.tgz" + integrity sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg== + dependencies: + isexe "^2.0.0" + +which@1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" wide-align@1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz" integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== dependencies: string-width "^1.0.2 || 2" window-size@0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz" integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= winston@0.8.x: version "0.8.3" - resolved "https://registry.yarnpkg.com/winston/-/winston-0.8.3.tgz#64b6abf4cd01adcaefd5009393b1d8e8bec19db0" + resolved "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz" integrity sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA= dependencies: async "0.2.x" @@ -2434,26 +2616,25 @@ winston@0.8.x: wordwrap@0.0.2: version "0.0.2" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= xml2js@^0.4.19: version "0.4.23" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" + resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz" integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== dependencies: sax ">=0.6.0" @@ -2461,55 +2642,82 @@ xml2js@^0.4.19: xmlbuilder@~11.0.0: version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz" integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== -y18n@^4.0.0: +"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz" integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== yallist@^2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz" integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= -yargs-parser@13.1.1, yargs-parser@^13.1.1: - version "13.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" - integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== +yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz" + integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-unparser@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f" - integrity sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== +yargs-parser@^13.0.0, yargs-parser@13.0.0: + version "13.0.0" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz" + integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-unparser@1.5.0: + version "1.5.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz" + integrity sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw== dependencies: flat "^4.1.0" - lodash "^4.17.15" - yargs "^13.3.0" + lodash "^4.17.11" + yargs "^12.0.5" + +yargs@^12.0.5: + version "12.0.5" + resolved "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz" + integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== + dependencies: + cliui "^4.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^1.0.1" + os-locale "^3.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^11.1.1" -yargs@13.3.0, yargs@^13.3.0: - version "13.3.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" - integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== +yargs@13.2.2: + version "13.2.2" + resolved "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz" + integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== dependencies: - cliui "^5.0.0" + cliui "^4.0.0" find-up "^3.0.0" get-caller-file "^2.0.1" + os-locale "^3.1.0" require-directory "^2.1.1" require-main-filename "^2.0.0" set-blocking "^2.0.0" string-width "^3.0.0" which-module "^2.0.0" y18n "^4.0.0" - yargs-parser "^13.1.1" + yargs-parser "^13.0.0" yargs@3.4.5: version "3.4.5" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.4.5.tgz#b392173b7892792f67296a6013c2d76d15315eb1" + resolved "https://registry.npmjs.org/yargs/-/yargs-3.4.5.tgz" integrity sha1-s5IXO3iSeS9nKWpgE8LXbRUxXrE= dependencies: camelcase "^1.0.2" From be03b21c21cb7345b04cd6feeeedcffad0725ede Mon Sep 17 00:00:00 2001 From: andrewbrazzatti Date: Fri, 12 Jan 2024 09:10:52 +1030 Subject: [PATCH 03/10] Update the Angular app to use latest core version and build it in CircleCI (#1) * Initial commit where the angular project has been updated to more closely match the latest redbox-portal core version. * Updated gitignore to prevent commiting files we shouldn't * Added branch build configuration * Added workflow config * Fixed job name * Added lines to install nvm to allow node version switching as required for the legacy angular app * Added nvm path commands * Fixed syntax error * Added install nvm script * Another attempt at installing NVM * Atttempt to explicitly configure nvm when the command runs * Added nvm path setting to angular build command * Added working build commands to publish job --- .circleci/config.yml | 45 +- .circleci/installNvm.sh | 3 + angular/.angular-cli.json | 63 + .../styles.bundle.css => assets/.gitkeep} | 0 .../default/images/leaflet/layers-2x.png | Bin 0 -> 1259 bytes .../default/default/images/leaflet/layers.png | Bin 0 -> 696 bytes .../default/images/leaflet/marker-icon-2x.png | Bin 0 -> 2464 bytes .../default/images/leaflet/marker-icon.png | Bin 0 -> 1466 bytes .../default/images/leaflet/marker-shadow.png | Bin 0 -> 618 bytes .../dist => }/assets/images/la.png | Bin .../assets/images/labarchives-help-login.png | Bin angular/assets/img/d.png | Bin 0 -> 3025 bytes angular/assets/vocab_widget_v2.css | 110 + angular/labarchives/.angular-cli.json | 8 +- angular/labarchives/.gitignore | 44 + angular/labarchives/.nvmrc | 1 + angular/labarchives/Makefile | 63 + angular/labarchives/README.md | 5 +- angular/labarchives/buildAngularProd.sh | 3 - angular/labarchives/dist/3rdpartylicenses.txt | 1564 --- angular/labarchives/dist/favicon.ico | Bin 5430 -> 0 bytes angular/labarchives/dist/index.html | 1 - angular/labarchives/dist/inline.bundle.js | 1 - angular/labarchives/dist/main.bundle.js | 1 - angular/labarchives/dist/polyfills.bundle.js | 1 - angular/labarchives/dist/scripts.bundle.js | 1 - angular/labarchives/e2e/app.e2e-spec.ts | 8 +- angular/labarchives/e2e/app.po.ts | 2 +- angular/labarchives/karma.conf.js | 2 +- angular/labarchives/package-lock.json | 8997 +++++++++-------- angular/labarchives/package.json | 106 +- angular/labarchives/shared/.gitkeep | 1 + .../labarchives-create.component.ts | 2 +- .../components/labarchives-link.component.ts | 2 +- .../src/app/labarchives-form.component.ts | 2 +- angular/labarchives/src/app/shared | 2 +- angular/labarchives/src/assets/images/la.png | Bin 23304 -> 0 bytes .../assets/images/labarchives-help-login.png | Bin 16638 -> 0 bytes angular/labarchives/src/assets/img/d.png | Bin 0 -> 3025 bytes .../src/assets/vocab_widget_v2.css | 110 + angular/labarchives/src/index.html | 4 +- angular/labarchives/src/main.ts | 3 +- angular/labarchives/src/polyfills.ts | 36 +- angular/labarchives/src/styles.css | 1 - angular/labarchives/src/styles.scss | 18 + angular/labarchives/src/test.ts | 14 +- angular/labarchives/src/tsconfig.spec.json | 1 + angular/labarchives/tsconfig.json | 20 +- angular/labarchives/tslint.json | 13 +- angular/labarchives/yarn.lock | 6565 ------------ 50 files changed, 5348 insertions(+), 12475 deletions(-) create mode 100644 .circleci/installNvm.sh create mode 100644 angular/.angular-cli.json rename angular/{labarchives/dist/styles.bundle.css => assets/.gitkeep} (100%) create mode 100644 angular/assets/default/default/images/leaflet/layers-2x.png create mode 100644 angular/assets/default/default/images/leaflet/layers.png create mode 100644 angular/assets/default/default/images/leaflet/marker-icon-2x.png create mode 100644 angular/assets/default/default/images/leaflet/marker-icon.png create mode 100644 angular/assets/default/default/images/leaflet/marker-shadow.png rename angular/{labarchives/dist => }/assets/images/la.png (100%) rename angular/{labarchives/dist => }/assets/images/labarchives-help-login.png (100%) create mode 100644 angular/assets/img/d.png create mode 100644 angular/assets/vocab_widget_v2.css create mode 100644 angular/labarchives/.gitignore create mode 100644 angular/labarchives/.nvmrc create mode 100644 angular/labarchives/Makefile delete mode 100755 angular/labarchives/buildAngularProd.sh delete mode 100644 angular/labarchives/dist/3rdpartylicenses.txt delete mode 100644 angular/labarchives/dist/favicon.ico delete mode 100644 angular/labarchives/dist/index.html delete mode 100644 angular/labarchives/dist/inline.bundle.js delete mode 100644 angular/labarchives/dist/main.bundle.js delete mode 100644 angular/labarchives/dist/polyfills.bundle.js delete mode 100644 angular/labarchives/dist/scripts.bundle.js create mode 100644 angular/labarchives/shared/.gitkeep delete mode 100644 angular/labarchives/src/assets/images/la.png delete mode 100644 angular/labarchives/src/assets/images/labarchives-help-login.png create mode 100644 angular/labarchives/src/assets/img/d.png create mode 100644 angular/labarchives/src/assets/vocab_widget_v2.css delete mode 100644 angular/labarchives/src/styles.css create mode 100644 angular/labarchives/src/styles.scss delete mode 100644 angular/labarchives/yarn.lock diff --git a/.circleci/config.yml b/.circleci/config.yml index 4351fb0..8ef8da0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,15 @@ jobs: working_directory: ~/repo steps: - checkout - - run: npm install && node_modules/.bin/tsc + - run: + command: | + set +e + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash + export NVM_DIR="$HOME/.nvm" + [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" + - run: export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm install && npm install && node_modules/.bin/tsc + - run: git clone https://github.com/redbox-mint/redbox-portal.git /tmp/rbportal && cp -Rf /tmp/rbportal/angular-legacy/shared/* angular/labarchives/shared/ + - run: export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && cd angular/labarchives && nvm install && npm install && node_modules/.bin/ng build --app=labarchives # run tests! # - run: npm test # # store test results @@ -23,6 +31,32 @@ jobs: - run: name: Publish package command: npm publish --access public + build_only: + docker: + - image: cimg/node:20.9.0 + working_directory: ~/repo + steps: + - checkout + - run: + command: | + set +e + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash + export NVM_DIR="$HOME/.nvm" + [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" + - run: export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm install && npm install && node_modules/.bin/tsc + - run: git clone https://github.com/redbox-mint/redbox-portal.git /tmp/rbportal && cp -Rf /tmp/rbportal/angular-legacy/shared/* angular/labarchives/shared/ + - run: export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && cd angular/labarchives && nvm install && npm install && node_modules/.bin/ng build --app=labarchives + # run tests! + # - run: npm test + # # store test results + # - store_test_results: + # path: test_results + + # store code coverage + # - persist_to_workspace: + # root: ~/repo + # paths: . + workflows: publish: @@ -33,7 +67,14 @@ workflows: only: /^v.*/ branches: ignore: /.*/ - + build: + jobs: + - build_only: + filters: + tags: + ignore: /.*/ + branches: + only: /.*/ # jobs: # build: # docker: diff --git a/.circleci/installNvm.sh b/.circleci/installNvm.sh new file mode 100644 index 0000000..2de9dec --- /dev/null +++ b/.circleci/installNvm.sh @@ -0,0 +1,3 @@ +#! /bin/bash +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm \ No newline at end of file diff --git a/angular/.angular-cli.json b/angular/.angular-cli.json new file mode 100644 index 0000000..39ae035 --- /dev/null +++ b/angular/.angular-cli.json @@ -0,0 +1,63 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "project": { + "name": "angular" + }, + "apps": [ + { + "name": "dmp", + "root": "src", + "outDir": "dist/", + "assets": [ + "assets", + "favicon.ico" + ], + "index": "index.html", + "main": "main.ts", + "polyfills": "polyfills.ts", + "test": "test.ts", + "tsconfig": "tsconfig.app.json", + "testTsconfig": "tsconfig.spec.json", + "prefix": "app", + "styles": [ + "styles.scss" + ], + "scripts": [ + ], + "environmentSource": "environments/environment.ts", + "environments": { + "dev": "environments/environment.ts", + "prod": "environments/environment.prod.ts" + } + } + + ], + "e2e": { + "protractor": { + "config": "./protractor.conf.js" + } + }, + "lint": [ + { + "project": "src/tsconfig.app.json", + "exclude": "**/node_modules/**" + }, + { + "project": "src/tsconfig.spec.json", + "exclude": "**/node_modules/**" + }, + { + "project": "e2e/tsconfig.e2e.json", + "exclude": "**/node_modules/**" + } + ], + "test": { + "karma": { + "config": "./karma.conf.js" + } + }, + "defaults": { + "styleExt": "css", + "component": {} + } +} diff --git a/angular/labarchives/dist/styles.bundle.css b/angular/assets/.gitkeep similarity index 100% rename from angular/labarchives/dist/styles.bundle.css rename to angular/assets/.gitkeep diff --git a/angular/assets/default/default/images/leaflet/layers-2x.png b/angular/assets/default/default/images/leaflet/layers-2x.png new file mode 100644 index 0000000000000000000000000000000000000000..200c333dca9652ac4cba004d609e5af4eee168c1 GIT binary patch literal 1259 zcmVFhCYNy;#0irRPomHqW|G1C*;4?@4#E?jH>?v@U%cy?3dQAc-DchXVErpOh~ z-jbon+tNbnl6hoEb;)TVk+%hTDDi_G%i3*RZ&15!$Fjr^f;Ke&A@|?=`2&+{zr+3a z{D*=t(`AXyS%X7N z%a#RZw6vD^t_rnM`L4E>m=U&R!A-&}nZIi$BOPvkhrCuUe@BN~-lRD)f44;J%TwgE zcze8u!PQ_NR7?o(NylLXVTfDO zxs5=@|GsYEsNo4M#nT%N!UE(?dnS)t2+{ELYAFp*3=iF=|EQnTp`#vlSXuGVraYo? z+RCzXo6h3qA8{KG?S4nE(lM+;Eb4nT3XV;7gcAxUi5m)`k5tv}cPy()8ZR3TLW3I- zAS^}cq-IJvL7a4RgR!yk@~RT%$lA7{L5ES*hyx)M4(yxI$Ub(4f)K|^v1>zvwQY!_ zIrWw8q9GS^!Dp~}+?mbnB6jDF8mVlbQ!jFKDY;w=7;XO{9bq7>LXGK24WA`;rL)_Z z)&j}pbV(;6gY;VMhbxgvn`X;6x}VUEE-7 z%)7j-%t8S=ZL3yc)HbXDAqJZvBTPoiW_A-+a8m3_Z?v{DN7Tnr#O_VUMT0UBt$;p` zDh6JbGHN8JJ*JN%y2%msb97@_S>9!%Egwk;?PEkU9ntz&3uR}%Fj5d$JHQbQb3}a{ zSzFT^#n=VInPpcAS}CNxj?_ zVscANk5Cfz(51EI1pz};AWWb|kgbYNb4wCEGUn3+eMUMV?1-{=I4TlmLJMot@rd07 zZuo2hk1ccu{YmGkcYdWAVdk{Z4Nm?^cTD&}jGm+Q1SYIXMwmG*oO*83&#>l%nbR`G zhh=lZ%xIb7kU3#;TBbfECrnC9P=-XpL|TG2BoZdj61*XiFbW8?1Z_wp%#;>${SUIy V$8qr;L*)Pf002ovPDHLkV1hYLS~36t literal 0 HcmV?d00001 diff --git a/angular/assets/default/default/images/leaflet/layers.png b/angular/assets/default/default/images/leaflet/layers.png new file mode 100644 index 0000000000000000000000000000000000000000..1a72e5784b2b456eac5d7670738db80697af3377 GIT binary patch literal 696 zcmV;p0!RIcP)*@&l2<6p=!C&s@#ZL+%BQvF&b?w6S%wp=I>1QHj7AP5C)IWy#b znXXB;g;j=$a-tW89K%FbDceHVq&unY*Wx3L#=EGWH=rjqnp|4c_Ulec!ql3#G-5ZF zVlbBA@XP=)C8U&+Lrc)S4O5%1$&{(;7R^K(CSnvSr$v;+B$8q&7Bf|h$#PARo1^%M zf1H^nG-EiXVXr07OH(*8R)xa|FD;lXUlg_-%)~ZGsL2cX0NXaAzN2q%jqLRR6ruVk8`Jb7n#{`T;o@`F= z#3YcynIR^s83UNF3D!f5m#Mg)NJ24&Qfrqb&_z=yF;=B)#9Iq7u-@^O!(mW{D;qvr zPc)gVb%aowtS8m@ElL4A9G>w#ffQ~q{i&_i)*6f^)Sz|C?C>zb4Uo?H<-&Hz@a?J; z$ml@zGygWofb9$ZBj6aLjpLhsT2AzjOu=-*u_gSCUYnU^5s62$4H-fe}gSR(=wKRaTHh!@*b)YV6mo|a4Fn6Rgc&Rpk zvn_X|3VY?v=>nJ{slE^V1GaGWk}m@aIWGIpghbfPh8m@aIWEo_%AZI>==moIFVE^L=C zZJ91?mo03UEp3-BY?wBGur6$uD{Yr9Y?m%SHF8Fk1pc(Nva%QJ+{FLkalfypz3&M|||Fn`7|g3c~4(nXHKFmRnwn$J#_$xE8i z|Ns9!kC;(oC1qQk>LMp3_a2(odYyMT@>voX=UI)k>1cJdn;gjmJ-|6v4nb1Oryh)eQMwHP(i@!36%vGJyFK(JTj?Vb{{C=jx&)@1l zlFmnw%0`&bqruifkkHKC=vbiAM3&E`#Mv>2%tw;VK8?_|&E89cs{a1}$J*!f_xd-C z&F%B|oxRgPlh0F!txkxrQjNA`m9~?&&|jw4W0<`_iNHsX$VQXVK!B}Xkh4>av|f_8 zLY2?t?ejE=%(TnfV5iqOjm?d;&qI~ZGl|SzU77a)002XDQchC<95+*MjE@82?VLm= z3xf6%Vd@99z|q|-ua5l3kJxvZwan-8K1cPiwQAtlcNX~ZqLeoMB+a;7)WA|O#HOB% zg6SX;754xD1{Fy}K~#8Ntklac&zTpadXZ& zC*_=T&g7hfbI$R?v%9?sknIb97gJOJ=`-8YyS3ndqN+Jm+x33!p&Hc@@L$w))s2@N ztv~i}Emc?DykgwFWwma($8+~b>l?tqj$dh13R^nMZnva9 zn0Vflzv2Dvp`oVQw{Guby~i`JGbyBGTEC{y>yzCkg>K&CIeQ$u;lyQ+M{O~gEJ^)Z zrF3p)^>|uT;57}WY&IRwyOQ=dq%Az}_t=_hKowP!Z79q0;@Zu(SWEJJcHY+5T6I({ zw)wj*SNi4wrd+POUfZe4gF77vW?j zoFS}|r2n&$U9Y!S4VEOyN}OpZZi|?cr1VcE_tHsDQgp-ga(SwkBrkCm{|*-yb=}ZW zvcYvLvfA90TPn|!-TuYJV<6`}+RJeRgP3EA=qQcF9k0*#*{f&I_pjam%I6Dd#YE|G zqB!R}tW-K!wV1w+4JcFA_s6~=@9F&j8`u$-ifLN3vK;`lvaA-`jRn_}(8|)!3?-}I zvFi{H;@A$gEZYh?%|Qr_y#*UkOPjwiRCsJQ>mb6h5yGIk6C5_XA=8T?IBfm_?+P0; zhhUs)-(0R*H<&Kku(1>#cGtOpk&Z&kQcw&SJv-4VY<+;=8hYnoX zfNJMCa9)^5Z0;2dCUk;x-%#yS!I~Jr3pNuI!g_tHz!$hKwt1GL~sFvx)3u4TA zv>CLGdQtoZ7Du7ctJRfTqY;FPxs1G{ZJ?73D5J@OO{6BHcPbk{_mjg&p2QFeke%QI zlAJ-kvjuwy1<5D-6>su68A+i998aSZNnQX)+Q}6(GK-C%8G-!1bOJBONU{gT%IOOE z;Yk24YC@^lFW77>r6x7eS1Omc;8=GUp#&zLQ&L{ zv8$hGC`wp~$9pR>f%-_Ps3>YhzP(+vC(E*zr1CVO8ChN^MI-VGMX7+|(r!SGZ9gd5 zzO9sQd>sm|f1|X&oh=8lOzd6+ITvo zCXInR?>RZ#>Hb*PO=7dI!dZ(wY4O}ZGv zdfQFio7+0~PN*RFCZGM6@9-o~y*@?;k00NvOsw54t1^tt{*ATMs^2j}4Wp=4t3RH* z_+8b`F-{E=0sOgM<;VHTo!Ij3u zmmI`2?K7g(GOcGA)@h?$SW&pwHdtj1n57PLI8&6RHhx4R%Q7b z^JEqR)@06V!pbS*@D_ZyRMo_LlT}r{#sXOx4kM-V<_V{!5SSuM^SIVCA37|nY7LWQ zZA#B1h4l`6asz=Lvax_#GMRX|NF>=$=p{Qn0i@ExX1jGhy@B8a*_uR+ODEbVi8ObL zezG?azy>E~S~dl43&8<$(2H}P&*tuBdESUP83KQ?8B z?K(!uS>H1wlWQz;qOfB`T#TZ=EoSp~vZ5XtCvwm1h*Ex6mzTsn_y@_=xREIslV-%- zpdWkEzMjeNOGWrSM32gpBt27*O29NdhGzuDgYxcf`Jjjqw@B;Vmdb@fxdhCRi`Kg> zmUTr$=&@#i!%F4Q6mb&4QKfR^95KJ!<6~fqx-f^66AV!|ywG{6D^Vay-3b99>XOe# e-I|>x8~*?ZhF3snGbtJX0000cOl4 literal 0 HcmV?d00001 diff --git a/angular/assets/default/default/images/leaflet/marker-icon.png b/angular/assets/default/default/images/leaflet/marker-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..950edf24677ded147df13b26f91baa2b0fa70513 GIT binary patch literal 1466 zcmV;r1x5OaP)P001cn1^@s6z>|W`000GnNklGNuHDcIX17Zdjl&3`L?0sTjIws<{((Dh&g-s0<@jYQyl?D*X^?%13;ml^gy> ziMrY_^1WI=(g@LMizu=zCoA>C`6|QEq1eV92k*7m>G65*&@&6)aC&e}G zI)pf-Za|N`DT&Cn1J|o`19mumxW~hiKiKyc-P`S@q)rdTo84@QI@;0yXrG%9uhI>A zG5QHb6s4=<6xy{1 z@NMxEkryp{LS44%z$3lP^cX!9+2-;CTt3wM4(k*#C{aiIiLuB>jJj;KPhPzIC00bL zU3a#;aJld94lCW=`4&aAy8M7PY=HQ>O%$YEP4c4UY#CRxfgbE~(|uiI=YS8q;O9y6 zmIkXzR`}p7ti|PrM3a}WMnR=3NVnWdAAR>b9X@)DKL6=YsvmH%?I24wdq?Gh54_;# z$?_LvgjEdspdQlft#4CQ z`2Zyvy?*)N1Ftw|{_hakhG9WjS?Az@I@+IZ8JbWewR!XUK4&6346+d#~gsE0SY(LX8&JfY>Aj)RxGy96nwhs2rv zzW6pTnMpFkDSkT*a*6Dx|u@ds6ISVn0@^RmIsKZ5Y;bazbc;tTSq(kg(=481ODrPyNB6n z-$+U}(w$m6U6H$w17Bw+wDaFIe~GvNMYvnw31MpY0eQKT9l>SU``8k7w4)z!GZKMI z#_cEKq7k~i%nlK@6c-K?+R;B#5$?T#YpKD`t_4bAs^#E+@5QW$@OX3*`;(#{U^d-vY)&xEE>n5lYl&T?Amke9$Lam@{1K@O ze*LXqlKQHiv=gx+V^Cbb2?z@ISBQ*3amF;9UJ3SBg(N|710TLamQmYZ&Qjn2LuO<* zCZlB4n%@pc&7NNnY1}x+NWpHlq`OJEo|`aYN9<`RBUB+79g;>dgb6YlfN#kGL?lO_ z!6~M^7sOnbsUkKk<@Ysie&`G>ruxH&Mgy&8;i=A zB9OO!xR{AyODw>DS-q5YM{0ExFEAzt zm>RdS+ssW(-8|?xr0(?$vBVB*%(xDLtq3Hf0I5yFm<_g=W2`QWAax{1rWVH=I!VrP zs(rTFX@W#t$hXNvbgX`gK&^w_YD;CQ!B@e0QbLIWaKAXQe2-kkloo;{iF#6}z!4=W zi$giRj1{ zt;2w`VSCF#WE&*ev7jpsC=6175@(~nTE2;7M-L((0bH@yG}-TB$R~WXd?tA$s3|%y zA`9$sA(>F%J3ioz<-LJl*^o1|w84l>HBR`>3l9c8$5Xr@xCiIQ7{x$fMCzOk_-M=% z+{a_Q#;42`#KfUte@$NT77uaTz?b-fBe)1s5XE$yA79fm?KqM^VgLXD07*qoM6N<$ Ef<_J(9smFU literal 0 HcmV?d00001 diff --git a/angular/labarchives/dist/assets/images/la.png b/angular/assets/images/la.png similarity index 100% rename from angular/labarchives/dist/assets/images/la.png rename to angular/assets/images/la.png diff --git a/angular/labarchives/dist/assets/images/labarchives-help-login.png b/angular/assets/images/labarchives-help-login.png similarity index 100% rename from angular/labarchives/dist/assets/images/labarchives-help-login.png rename to angular/assets/images/labarchives-help-login.png diff --git a/angular/assets/img/d.png b/angular/assets/img/d.png new file mode 100644 index 0000000000000000000000000000000000000000..438654aab87d49390a5cbdb91007ba2030e12dfb GIT binary patch literal 3025 zcmV;?3oi7DP)4Tx07wm;mUmPX*B8g%%xo{TU6vwc>AklFq%OTkl_mFQv@x1^BM1TV}0C2duqR=S6Xn?LjUp6xrb&~O43j*Nv zEr418u3H3zGns$s|L;SQD-ufpfWpxLJ03rmi*g~#S@{x?OrJ!Vo{}kJ7$ajbnjp%m zGEV!%=70KpVow?KvV}a4moSaFCQKV= zXBIPnpP$8-NG!rR+)R#`$7JVZi#Wn10DSspSrkx`)s~4C+0n+?(b2-z5-tDd^^cpM zz5W?wz5V3zGUCskL5!X++LzcbT23thtSPiMTfS&1I{|204}j|3FPi>70OSh+Xzlyz zdl<5LNtZ}OE>>3g`T3RtKG#xK(9i3CI(+v0d-&=+OWAp!Ysd8Ar*foO5~i%E+?=c& zshF87;&Ay)i~kOm zCIB-Z!^JGdti+UJsxgN!t(Y#%b<8kk67vyD#cE*9urAm@Y#cTXn~yERR$}Y1E!Yd# zo7hq8Ya9;8z!~A3Z~?e@Tn26#t`xT$*Ni)h>&K1Yrto;Y8r}@=h7ZGY@Dh9xekcA2 z{tSKqKZ<`tAQQ9+wgf*y0zpVvOQ<9qCY&Y=5XJ~ILHOG0j2XwBQ%7jM`P2tv~{#P+6CGu9Y;5!2hua>CG_v;z4S?CC1rc%807-x z8s$^ULkxsr$OvR)G0GUn7`GVjR5Vq*RQM{JRGL%DRgX~5SKp(4L49HleU9rK?wsN|$L8GCfHh1tA~lw29MI^|n9|hJ z^w$(=?$kW5IibbS^3=-Es?a*EHLgw5cGnhYS7@Kne#%s4dNH$@Rm?8tq>hG8fR0pW zzfP~tjINRHeBHIW&AJctNO~;2RJ{tlPQ6KeZT(RF<@$~KcMXUJEQ54|9R}S7(}qTd zv4$HA+YFx=sTu_uEj4O1x^GN1_Ap*-Tx)#81ZToB$u!w*a?KPrbudjgtugI0gUuYx z1ZKO<`pvQC&gMe%TJu2*iiMX&o<*a@uqDGX#B!}=o8@yWeX9hktybMuAFUm%v#jf^ z@7XBX1lg>$>9G0T*3_13TVs2}j%w#;x5}>F?uEUXJ>Pzh{cQ)DL#V?BhfaqNj!uqZ z$0o;dCw-@6r(I5iEIKQkRm!^LjCJ;QUgdn!`K^nii^S!a%Wtk0u9>cfU7yS~n#-SC zH+RHM*Nx-0-)+d9>7MMq&wa>4$AjZh>+#4_&y(j_?>XjW;+5fb#Ot}YwYS*2#e16V z!d}5X>x20C`xN{1`YQR(_pSDQ=%?$K=GW*q>F?mb%>QfvHXt})YrtTjW*|4PA#gIt zDQHDdS1=_wD!4lMQHW`XIHV&K4h;(37J7f4!93x-wlEMD7`83!LAX));_x3Ma1r4V zH4%>^Z6cRPc1O{olA;bry^i*dE{nc5-*~=serJq)Okzw!%yg_zYWi`#ol25V;v^kU#wN!mA5MPH z3FFjqrcwe^cBM>m+1wr6XFN|{1#g`1#xLiOrMjh-r#?w@OWT$Wgg6&&5F%x&L(6hXP*!%2{VOVIa)adIsGCtQITk9vCHD^izmgw;`&@D zcVTY3gpU49^+=7S>!rha?s+wNZ}MaEj~6Hw2n%|am@e70WNfM5(r=exmT{MLF4tMU zX8G_6uNC`OLMu~NcCOM}Rk&(&wg2ivYe;J{*Zj2BdTsgISLt?eJQu}$~QLORDCnMIdyYynPb_W zEx0YhEw{FMY&}%2SiZD;WLxOA)(U1tamB0cN!u@1+E?z~LE0hRF;o>&)xJ}I=a!xC ztJAA*)_B)6@6y<{Y1i~_-tK`to_m`1YVIxB`);3L-|hYW`&(-bYby`n4&)tpTo+T< z{VnU;hI;k-lKKw^g$IWYMIP#EaB65ctZ}%k5pI+=jvq-pa_u{x@7kLzn)Wv{noEv? zqtc^Kzfb=D*0JDYoyS?nn|?6(VOI;SrMMMpUD7()mfkkh9^c-7BIrbChiga6kCs0k zJgIZC=9KcOveTr~g{NoFEIl)IR&;jaT-v#j&ZN$J=i|=b=!)p-y%2oi(nY_E=exbS z&s=i5bn>#xz3Ke>~2=f&N;yEFGz-^boBexUH6@}b7V+Mi8+ZXR+R zIyLMw-18{v(Y+Dw$g^K^e|bMz_?Y^*a!h-y;fd{&ljDBl*PbqTI{HlXY-Xb9SH)j< zJvV;-!*8Cy^-RW1j=m7TnEk!2+~03w|pj+SLQNU{2_x(0M;fiAM%yv#c+rRrwpI>P;^ zJ7d(m%z}lVcq5^=6C1;HhkNrX7K}O&UC8~~On~LKmV@udgq1ActNGAD@3@b>;KjOR zf#sI(_3{AY-LKwZM1uckBnUppYitWvi-S%qSq;OVK~E_!@N$gigGYNu&%8Xqd-oS7 z3`EoRIRWp4nFX^tsZTobQT{D2?}Vvei8VjnuZ}W`=PE|cyC^+TJX||Xn5SrOJ{E^r TCtbBT00000NkvXXu0mjfg8tEF literal 0 HcmV?d00001 diff --git a/angular/assets/vocab_widget_v2.css b/angular/assets/vocab_widget_v2.css new file mode 100644 index 0000000..ed04f38 --- /dev/null +++ b/angular/assets/vocab_widget_v2.css @@ -0,0 +1,110 @@ +/** + * Note: this plugin uses a derivative work from http://www.jstree.com/, + * specifically the image sprite `../img/d.png` + */ + ul.vocab_list { + z-index: 2000; + width: 575px; + max-height: 300px; + overflow-y: auto; + overflow-x: hidden; + list-style-type: none; + border: 1px solid #CFCFCF; + margin: 0px; + padding: 2px; +} + +ul.vocab_list li { + /* line-height: 2;*/ + padding: .2em .8em .2em .4em; + font-size: 0.8em; + margin-bottom: 1em; +} + + +ul.vocab_list li[role="vocab_error"], ul.vocab_list li.error { + background-color: #FFAAAA; + margin-bottom: 0px; +} + +ul.vocab_list div.error { padding:0.5em } + +ul.vocab_list li[role="vocab_item"]:hover { + /* background-color: #CFCFCF !important; */ + cursor: pointer; +} + +ul.vocab_list li span[role="label"] { + font-weight: bold; + float:left; + width:80%; +} + +ul.vocab_list li span[role="definition"] { + float:right; +} + +ul.vocab_list li span[role="about"] { + font-style: italic; + display:block; + clear:both; +} + + +ul.vocab_list.rifcs li span[role="label"] { + font-weight: bold; + float:left; + width:20%; +} + +ul.vocab_tree, ul.vocab_tree ul { list-style:none;margin:0px;padding:0px;width:100%;} +ul.vocab_tree ul { padding-left:1em} +ul.vocab_tree li { cursor: pointer; clear:both;} +ul.vocab_tree li > ins { cursor: pointer; height: 16px; width: 16px; position: relative; display: block; float:left; padding-right:0.2em; background-repeat: no-repeat;} +ul.vocab_tree li.tree_closed > ins { background-image: url("./img/d.png"); background-position: -54px 0px;} +ul.vocab_tree li.tree_open > ins { background-image: url("./img/d.png"); background-position: -72px 0px;} +ul.vocab_tree li.tree_leaf > ins { background-image: url("./img/d.png"); background-position: -37px 0px;} +ul.vocab_tree li.tree_empty > ins { cursor: default} +ul.vocab_tree li.tree_empty { color: #999; } +/** + * Demonstration styles (not required for normal operation) + */ + +/* Commented out because of leakage to all forms! + If you need to fix this later, change the selectors + so that they apply only to a specific class. +div.formarea +{ + width: 500px; + padding:30px; + border: 1px solid #999; +} + +form +{ + font-size:12px; +} + +div.formfields +{ + padding:20px; + font-size:10px; +} + +dl dt { + font-weight:bold; +} + +dl dd { + margin-left:0px; + margin-bottom:10px; +} + +fieldset legend { font-size: 14px; font-weight: bold; } + +.note { color: #999; background-color: #333; padding:0.5em; display:none; } + +.note pre { color: #ccc; } + +.note-toggle { background-color: orange; border-color: orange; border-radius: 5px; font-weight: bold; } +*/ \ No newline at end of file diff --git a/angular/labarchives/.angular-cli.json b/angular/labarchives/.angular-cli.json index d8c0878..59ae5cf 100644 --- a/angular/labarchives/.angular-cli.json +++ b/angular/labarchives/.angular-cli.json @@ -1,13 +1,13 @@ { "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "project": { - "name": "labarchives" + "name": "angular" }, "apps": [ { "name": "labarchives", "root": "src", - "outDir": "dist", + "outDir": "dist/", "assets": [ "assets", "favicon.ico" @@ -20,10 +20,9 @@ "testTsconfig": "tsconfig.spec.json", "prefix": "app", "styles": [ - "styles.css" + "styles.scss" ], "scripts": [ - "../node_modules/jquery/dist/jquery.min.js" ], "environmentSource": "environments/environment.ts", "environments": { @@ -31,6 +30,7 @@ "prod": "environments/environment.prod.ts" } } + ], "e2e": { "protractor": { diff --git a/angular/labarchives/.gitignore b/angular/labarchives/.gitignore new file mode 100644 index 0000000..62ad928 --- /dev/null +++ b/angular/labarchives/.gitignore @@ -0,0 +1,44 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. + +# compiled output +dist/* +/tmp +/out-tsc +shared/* + +# dependencies +/node_modules + +# IDEs and editors +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# misc +/.sass-cache +/connect.lock +/coverage +/libpeerconnection.log +npm-debug.log +testem.log +/typings +yarn-error.log + +# e2e +/e2e/*.js +/e2e/*.map + +# System Files +.DS_Store +Thumbs.db diff --git a/angular/labarchives/.nvmrc b/angular/labarchives/.nvmrc new file mode 100644 index 0000000..f040e49 --- /dev/null +++ b/angular/labarchives/.nvmrc @@ -0,0 +1 @@ +14.19.0 \ No newline at end of file diff --git a/angular/labarchives/Makefile b/angular/labarchives/Makefile new file mode 100644 index 0000000..0e2f399 --- /dev/null +++ b/angular/labarchives/Makefile @@ -0,0 +1,63 @@ +help: + @echo "_______BUILD ANGULAR FRONTEND______\n" + @echo "To build all apps run make make build-frontend" + +build-frontend: + @echo "Building record_search" + node_modules/.bin/ng build -a=2 --extract-css true + @echo "Building transfer_owner" + node_modules/.bin/ng build -a=3 --extract-css true + @echo "Building report" + node_modules/.bin/ng build -a=4 --extract-css true + @echo "Building manageRoles" + node_modules/.bin/ng build -a=5 --extract-css true + @echo "Building manageUsers" + node_modules/.bin/ng build -a=6 --extract-css true + @echo "Building export" + node_modules/.bin/ng build -a=7 --extract-css true + @echo "Building userProfile" + node_modules/.bin/ng build -a=8 --extract-css true + @echo "Building dmp" + node_modules/.bin/ng build -a=9 --extract-css true + @echo "Building workspace_list" + node_modules/.bin/ng build -a=10 --extract-css true + +build-frontend-prod: + @echo "Building record_search" + node_modules/.bin/ng build -a=2 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building transfer_owner" + node_modules/.bin/ng build -a=3 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building report" + node_modules/.bin/ng build -a=4 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building manageRoles" + node_modules/.bin/ng build -a=5 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building manageUsers" + node_modules/.bin/ng build -a=6 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building export" + node_modules/.bin/ng build -a=7 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building userProfile" + node_modules/.bin/ng build -a=8 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building dmp" + node_modules/.bin/ng build -a=9 --prod --build-optimizer --output-hashing=none --extract-css true + @echo "Building workspace_list" + node_modules/.bin/ng build -a=10 --prod --build-optimizer --output-hashing=none --extract-css true + +build-frontend-prod-sourcemaps: + @echo "Building record_search" + node_modules/.bin/ng build -a=2 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building transfer_owner" + node_modules/.bin/ng build -a=3 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building report" + node_modules/.bin/ng build -a=4 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building manageRoles" + node_modules/.bin/ng build -a=5 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building manageUsers" + node_modules/.bin/ng build -a=6 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building export" + node_modules/.bin/ng build -a=7 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building userProfile" + node_modules/.bin/ng build -a=8 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building dmp" + node_modules/.bin/ng build -a=9 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true + @echo "Building workspace_list" + node_modules/.bin/ng build -a=10 --prod --build-optimizer --output-hashing=none --sourcemaps=true --extract-css true diff --git a/angular/labarchives/README.md b/angular/labarchives/README.md index 87e8951..f3de810 100644 --- a/angular/labarchives/README.md +++ b/angular/labarchives/README.md @@ -1,6 +1,6 @@ -# Labarchives +# Angular -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.4. +This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.2.7. ## Development server @@ -21,6 +21,7 @@ Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github. ## Running end-to-end tests 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`. ## Further help diff --git a/angular/labarchives/buildAngularProd.sh b/angular/labarchives/buildAngularProd.sh deleted file mode 100755 index ee8301e..0000000 --- a/angular/labarchives/buildAngularProd.sh +++ /dev/null @@ -1,3 +0,0 @@ -#! /bin/sh -git clone "https://github.com/redbox-mint/redbox-portal.git" -node_modules/.bin/ng build --prod --build-optimizer --output-hashing=none diff --git a/angular/labarchives/dist/3rdpartylicenses.txt b/angular/labarchives/dist/3rdpartylicenses.txt deleted file mode 100644 index 648f6f1..0000000 --- a/angular/labarchives/dist/3rdpartylicenses.txt +++ /dev/null @@ -1,1564 +0,0 @@ -moment@2.22.2 -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. - -cache-loader@1.2.5 -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. - -@angular-devkit/build-optimizer@0.3.2 -MIT -The MIT License - -Copyright (c) 2017 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. - -lodash@4.17.11 -MIT -Copyright JS Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -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. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. - -uppy@0.23.3 -MIT -The MIT License (MIT) - -Copyright (c) 2018 Transloadit - -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. - -prismjs@1.15.0 -MIT -MIT LICENSE - -Copyright (c) 2012 Lea Verou - -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. - -backo2@1.0.2 -MIT -MIT - -ts-smart-logger@0.0.4 -MIT -MIT - -engine.io-parser@2.1.3 -MIT -(The MIT License) - -Copyright (c) 2016 Guillermo Rauch (@rauchg) - -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. - -socket.io-parser@3.1.3 -MIT -(The MIT License) - -Copyright (c) 2014 Guillermo Rauch - -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. - -i18next-xhr-backend@0.5.3 -MIT -The MIT License (MIT) - -Copyright (c) 2015 i18next - -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@3.11.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. - -engine.io-client@3.1.6 -MIT -(The MIT License) - -Copyright (c) 2014-2015 Automattic - -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. - -has-binary2@1.0.3 -MIT -The MIT License (MIT) - -Copyright (c) 2014 Kevin Roark - -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. - -flatten@1.0.2 -MIT -The MIT License (MIT) - -Copyright (c) 2016 Joshua Holbrook - -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. - -blob@0.0.5 -MIT -MIT License - -Copyright (C) 2014 Rase- - -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. - -i18next@2.5.1 -MIT -The MIT License (MIT) - -Copyright (c) 2015 i18next - -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. - -preact@8.3.1 -MIT -The MIT License (MIT) - -Copyright (c) 2015-present Jason Miller - -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. - -ngx-i18next@1.1.8 -MIT -MIT - -yeast@0.1.2 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the 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. - -socket.io-client@2.0.4 -MIT -The MIT License (MIT) - -Copyright (c) 2014 Guillermo Rauch - - -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. - -get-form-data@2.0.0 -MIT -The MIT License (MIT) - -Copyright (c) 2016, Jonny Buchanan - -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. - -tus-js-client@1.5.2 -MIT -The MIT License (MIT) - -Copyright (c) 2015 tus - Resumable File Uploads - -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-es6@1.0.0 -MIT -MIT - -marked@0.3.19 -MIT -# License information - -## Contribution License Agreement - -If you contribute code to this project, you are implicitly allowing your code -to be distributed under the MIT license. You are also implicitly verifying that -all code is your original work. `` - -## Marked - -Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) - -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. - -## Markdown - -Copyright © 2004, John Gruber -http://daringfireball.net/ -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage. - -base64-js@1.3.0 -MIT -The MIT License (MIT) - -Copyright (c) 2014 - -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. - -ms@2.0.0 -MIT -The MIT License (MIT) - -Copyright (c) 2016 Zeit, 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. - -buffer@4.9.1 -MIT -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh, 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. - -debug@2.6.9 -MIT -(The MIT License) - -Copyright (c) 2014 TJ Holowaychuk - -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. - -leaflet-draw@1.0.2 -MIT -MIT - -run-parallel@1.1.9 -MIT -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh - -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. - -classnames@2.2.6 -MIT -The MIT License (MIT) - -Copyright (c) 2017 Jed Watson - -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. - -mime-match@1.0.2 -ISC -ISC - -cuid@2.1.4 -MIT -cuid is covered by The MIT License: - -Copyright (c) 2012 Eric Elliott - -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. - -namespace-emitter@2.0.1 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Seth Vincent - -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 -contributorS 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. - -lodash.throttle@4.1.1 -MIT -Copyright jQuery Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -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. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. - -querystringify@2.1.0 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the 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. - -arraybuffer.slice@0.0.7 -MIT -Copyright (C) 2013 Rase- - -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. - -process@0.11.10 -MIT -(The MIT License) - -Copyright (c) 2013 Roman Shtylman - -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. - -extend@3.0.2 -MIT -The MIT License (MIT) - -Copyright (c) 2014 Stefan Thomas - -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. - -@angular/core@5.2.11 -MIT -MIT - -after@0.8.2 -MIT -Copyright (c) 2011 Raynos. - -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. - -has-cors@1.1.0 -MIT -MIT - -to-array@0.1.4 -MIT -Copyright (c) 2012 Raynos. - -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. - -url-parse@1.4.4 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the 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. - -parseuri@0.0.5 -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gal Koren - -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. - -parseqs@0.0.5 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Gal Koren - -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. - -es6-promise@4.2.5 -MIT -Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and 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. - -base64-arraybuffer@0.1.5 -MIT -MIT - -requires-port@1.0.0 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the 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. - -angular-tree-component@7.2.0 -MIT -The MIT License (MIT) - -Copyright (c) 2016 500Tech LTD - -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. - -leaflet@1.3.1 -BSD-2-Clause -Copyright (c) 2010-2017, Vladimir Agafonkin -Copyright (c) 2010-2011, CloudMade -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are -permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of - conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list - of conditions and the following disclaimer in the documentation and/or other materials - provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -component-emitter@1.2.1 -MIT -(The MIT License) - -Copyright (c) 2014 Component 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. - -whatwg-fetch@2.0.3 -MIT -Copyright (c) 2014-2016 GitHub, 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. - -isarray@1.0.0 -MIT -MIT - -ieee754@1.1.12 -BSD-3-Clause -Copyright (c) 2008, Fair Oaks Labs, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -drag-drop@2.13.2 -MIT -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh - -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. - -@angular/platform-browser@5.2.11 -MIT -MIT - -@angular/forms@5.2.11 -MIT -MIT - -@angular/common@5.2.11 -MIT -MIT - -@angular/http@5.2.11 -MIT -MIT - -@types/lodash@4.14.112 -MIT -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - 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-completer@1.6.3 -MIT -MIT License - -Copyright (c) 2017 Ofer Herman - -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. - -@types/leaflet@1.2.6 -MIT -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - 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 - -mobx-angular@2.1.1 -MIT -The MIT License (MIT) - -Copyright (c) 2016 500Tech LTD - -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. - -lodash-es@4.17.8 -MIT -Copyright JS Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -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. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. - -@types/jquery@3.3.4 -MIT -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - 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 - -angular2-markdown@1.6.0 -MIT -MIT - -ng2-datetime@1.4.0 -MIT -The MIT License (MIT) - -Copyright (c) 2016 Nikola Kalinov - -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. - -@asymmetrik/ngx-leaflet@2.5.3 -MIT -The MIT License (MIT) - -Copyright (c) 2007-2017 Asymmetrik Ltd, a Maryland Corporation - -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. - -@asymmetrik/ngx-leaflet-draw@2.6.1 -MIT -The MIT License (MIT) - -Copyright (c) 2007-2017 Asymmetrik Ltd, a Maryland Corporation - -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. - -@angular/platform-browser-dynamic@5.2.11 -MIT -MIT - -mobx@3.6.2 -MIT -The MIT License (MIT) - -Copyright (c) 2015 Michel Weststrate - -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. - -prettier-bytes@1.0.4 -ISC -Copyright (c) 2016, Dan Flettre - -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -wildcard@1.1.2 -MIT -MIT - -core-js@2.4.1 -MIT -Copyright (c) 2014-2016 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.14 -MIT -The MIT License - -Copyright (c) 2016 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. \ No newline at end of file diff --git a/angular/labarchives/dist/favicon.ico b/angular/labarchives/dist/favicon.ico deleted file mode 100644 index 8081c7ceaf2be08bf59010158c586170d9d2d517..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5430 zcmc(je{54#6vvCoAI3i*G5%$U7!sA3wtMZ$fH6V9C`=eXGJb@R1%(I_{vnZtpD{6n z5Pl{DmxzBDbrB>}`90e12m8T*36WoeDLA&SD_hw{H^wM!cl_RWcVA!I+x87ee975; z@4kD^=bYPn&pmG@(+JZ`rqQEKxW<}RzhW}I!|ulN=fmjVi@x{p$cC`)5$a!)X&U+blKNvN5tg=uLvuLnuqRM;Yc*swiexsoh#XPNu{9F#c`G zQLe{yWA(Y6(;>y|-efAy11k<09(@Oo1B2@0`PtZSkqK&${ zgEY}`W@t{%?9u5rF?}Y7OL{338l*JY#P!%MVQY@oqnItpZ}?s z!r?*kwuR{A@jg2Chlf0^{q*>8n5Ir~YWf*wmsh7B5&EpHfd5@xVaj&gqsdui^spyL zB|kUoblGoO7G(MuKTfa9?pGH0@QP^b#!lM1yHWLh*2iq#`C1TdrnO-d#?Oh@XV2HK zKA{`eo{--^K&MW66Lgsktfvn#cCAc*(}qsfhrvOjMGLE?`dHVipu1J3Kgr%g?cNa8 z)pkmC8DGH~fG+dlrp(5^-QBeEvkOvv#q7MBVLtm2oD^$lJZx--_=K&Ttd=-krx(Bb zcEoKJda@S!%%@`P-##$>*u%T*mh+QjV@)Qa=Mk1?#zLk+M4tIt%}wagT{5J%!tXAE;r{@=bb%nNVxvI+C+$t?!VJ@0d@HIyMJTI{vEw0Ul ze(ha!e&qANbTL1ZneNl45t=#Ot??C0MHjjgY8%*mGisN|S6%g3;Hlx#fMNcL<87MW zZ>6moo1YD?P!fJ#Jb(4)_cc50X5n0KoDYfdPoL^iV`k&o{LPyaoqMqk92wVM#_O0l z09$(A-D+gVIlq4TA&{1T@BsUH`Bm=r#l$Z51J-U&F32+hfUP-iLo=jg7Xmy+WLq6_tWv&`wDlz#`&)Jp~iQf zZP)tu>}pIIJKuw+$&t}GQuqMd%Z>0?t%&BM&Wo^4P^Y z)c6h^f2R>X8*}q|bblAF?@;%?2>$y+cMQbN{X$)^R>vtNq_5AB|0N5U*d^T?X9{xQnJYeU{ zoZL#obI;~Pp95f1`%X3D$Mh*4^?O?IT~7HqlWguezmg?Ybq|7>qQ(@pPHbE9V?f|( z+0xo!#m@Np9PljsyxBY-UA*{U*la#8Wz2sO|48_-5t8%_!n?S$zlGe+NA%?vmxjS- zHE5O3ZarU=X}$7>;Okp(UWXJxI%G_J-@IH;%5#Rt$(WUX?6*Ux!IRd$dLP6+SmPn= z8zjm4jGjN772R{FGkXwcNv8GBcZI#@Y2m{RNF_w8(Z%^A*!bS*!}s6sh*NnURytky humW;*g7R+&|Ledvc-Labarchives \ No newline at end of file diff --git a/angular/labarchives/dist/inline.bundle.js b/angular/labarchives/dist/inline.bundle.js deleted file mode 100644 index 1e8af07..0000000 --- a/angular/labarchives/dist/inline.bundle.js +++ /dev/null @@ -1 +0,0 @@ -!function(r){var n=window.webpackJsonp;window.webpackJsonp=function(e,u,c){for(var f,i,p,a=0,l=[];a12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"rati":e<12?"sokalli":e<16?"donparam":e<20?"sanje":"rati"}})}(n("PJh5"))},"+3/4":function(e,t,n){"use strict";n.d(t,"a",function(){return r});var i=n("TToO"),r=function(e){function t(t){e.call(this),this.scheduler=t}return Object(i.__extends)(t,e),t.create=function(e){return new t(e)},t.dispatch=function(e){e.subscriber.complete()},t.prototype._subscribe=function(e){var n=this.scheduler;if(n)return n.schedule(t.dispatch,0,{subscriber:e});e.complete()},t}(n("YaPU").a)},"+3eL":function(e,t,n){"use strict";var i,r=n("WhVc");function o(){try{return i.apply(this,arguments)}catch(e){return r.errorObject.e=e,r.errorObject}}t.tryCatch=function(e){return i=e,o}},"+4ur":function(e,t,n){"use strict";var i=n("LxNc");t._catch=function(e){return i.catchError(e)(this)}},"+66z":function(e,t){var n=Object.prototype.toString;e.exports=function(e){return n.call(e)}},"+7/x":function(e,t,n){!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"},n={"\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 n[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,n){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}})}(n("PJh5"))},"+7iS":function(e,t,n){"use strict";var i=n("dw63");t.findIndex=function(e,t){return function(n){return n.lift(new i.FindValueOperator(e,n,!0,t))}}},"+CnV":function(e,t,n){"use strict";n.d(t,"a",function(){return i});var i=function(e){var t,i=n("AMGY").a.Symbol;return"function"==typeof i?i.observable?t=i.observable:(t=i("observable"),i.observable=t):t="@@observable",t}()},"+EXD":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("CURp"),l=n("wAkD");t.DeferObservable=function(e){function t(t){e.call(this),this.observableFactory=t}return i(t,e),t.create=function(e){return new t(e)},t.prototype._subscribe=function(e){return new s(e,this.observableFactory)},t}(r.Observable);var s=function(e){function t(t,n){e.call(this,t),this.factory=n,this.tryDefer()}return i(t,e),t.prototype.tryDefer=function(){try{this._callFactory()}catch(e){this._error(e)}},t.prototype._callFactory=function(){var e=this.factory();e&&this.add(o.subscribeToResult(this,e))},t}(l.OuterSubscriber)},"+I/r":function(e,t,n){"use strict";var i=n("TLKQ");t.onErrorResumeNext=i.onErrorResumeNextStatic},"+Ior":function(e,t,n){var i=Object.assign||function(e){for(var t=1;t0&&(l(),o=setTimeout(r,e))},done:l}},t.prototype.createFormDataUpload=function(e,t){var n=new FormData;return(Array.isArray(t.metaFields)?t.metaFields:Object.keys(e.meta)).forEach(function(t){n.append(t,e.meta[t])}),n.append(t.fieldName,e.data),n},t.prototype.createBareUpload=function(e,t){return e.data},t.prototype.upload=function(e,t,n){var i=this,o=this.getOptions(e);return this.uppy.log("uploading "+t+" of "+n),new r(function(t,n){var r=o.formData?i.createFormDataUpload(e,o):i.createBareUpload(e,o),s=i.createProgressTimeout(o.timeout,function(t){a.abort(),i.uppy.emit("upload-error",e,t),n(t)}),a=new XMLHttpRequest,u=l();a.upload.addEventListener("loadstart",function(e){i.uppy.log("[XHRUpload] "+u+" started"),s.progress()}),a.upload.addEventListener("progress",function(t){i.uppy.log("[XHRUpload] "+u+" progress: "+t.loaded+" / "+t.total),s.progress(),t.lengthComputable&&i.uppy.emit("upload-progress",e,{uploader:i,bytesUploaded:t.loaded,bytesTotal:t.total})}),a.addEventListener("load",function(r){if(i.uppy.log("[XHRUpload] "+u+" finished"),s.done(),r.target.status>=200&&r.target.status<300){var l=o.getResponseData(a.responseText,a),c=l[o.responseUrlFieldName];return i.uppy.setFileState(e.id,{response:{status:r.target.status,body:l,uploadURL:c}}),i.uppy.emit("upload-success",e,l,c),c&&i.uppy.log("Download "+e.name+" from "+e.uploadURL),t(e)}var d=o.getResponseData(a.responseText,a),p=f(a,o.getResponseError(a.responseText,a));return i.uppy.setFileState(e.id,{response:{status:r.target.status,body:d}}),i.uppy.emit("upload-error",e,p),n(p)}),a.addEventListener("error",function(t){i.uppy.log("[XHRUpload] "+u+" errored"),s.done();var r=f(a,o.getResponseError(a.responseText,a));return i.uppy.emit("upload-error",e,r),n(r)}),a.open(o.method.toUpperCase(),o.endpoint,!0),Object.keys(o.headers).forEach(function(e){a.setRequestHeader(e,o.headers[e])}),a.send(r),i.uppy.on("file-removed",function(t){t.id===e.id&&(s.done(),a.abort())}),i.uppy.on("upload-cancel",function(t){t===e.id&&(s.done(),a.abort())}),i.uppy.on("cancel-all",function(){a.abort()})})},t.prototype.uploadRemote=function(e,t,n){var o=this,l=this.getOptions(e);return new r(function(t,n){var r={};(Array.isArray(l.metaFields)?l.metaFields:Object.keys(e.meta)).forEach(function(t){r[t]=e.meta[t]}),fetch(e.remote.url,{method:"post",credentials:"include",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(i({},e.remote.body,{endpoint:l.endpoint,size:e.data.size,fieldname:l.fieldName,metadata:r,headers:l.headers}))}).then(function(i){if(i.status<200&&i.status>300)return n(i.statusText);i.json().then(function(i){var r=i.token,s=d(e.remote.host),u=new a({target:s+"/api/"+r});u.on("progress",function(t){return c(o,t,e)}),u.on("success",function(n){var i=l.getResponseData(n.response.responseText,n.response);return o.uppy.emit("upload-success",e,i,i[l.responseUrlFieldName]),u.close(),t()}),u.on("error",function(t){var i=t.response,r=i?l.getResponseError(i.responseText,i):new Error(t.error);o.uppy.emit("upload-error",e,r),n(new Error(t.error))})})})})},t.prototype.uploadBundle=function(e){var t=this;return new r(function(n,i){var r=t.opts.endpoint,o=t.opts.method,l=new FormData;e.forEach(function(e,n){var i=t.getOptions(e);l.append(i.fieldName,e.data)});var s=new XMLHttpRequest,a=t.createProgressTimeout(t.opts.timeout,function(e){s.abort(),u(e),i(e)}),u=function(n){e.forEach(function(e){t.uppy.emit("upload-error",e,n)})};s.upload.addEventListener("loadstart",function(e){t.uppy.log("[XHRUpload] started uploading bundle"),a.progress()}),s.upload.addEventListener("progress",function(n){a.progress(),n.lengthComputable&&e.forEach(function(e){t.uppy.emit("upload-progress",e,{uploader:t,bytesUploaded:n.loaded,bytesTotal:n.total})})}),s.addEventListener("load",function(r){if(a.done(),r.target.status>=200&&r.target.status<300){var o=t.opts.getResponseData(s.responseText,s);return e.forEach(function(e){t.uppy.emit("upload-success",e,o)}),n()}var l=t.opts.getResponseError(s.responseText,s)||new Error("Upload error");return l.request=s,u(l),i(l)}),s.addEventListener("error",function(e){a.done();var n=t.opts.getResponseError(s.responseText,s)||new Error("Upload error");return u(n),i(n)}),t.uppy.on("cancel-all",function(){s.abort()}),s.open(o.toUpperCase(),r,!0),Object.keys(t.opts.headers).forEach(function(e){s.setRequestHeader(e,t.opts.headers[e])}),s.send(l),e.forEach(function(e){t.uppy.emit("upload-started",e)})})},t.prototype.uploadFiles=function(e){var t=this,n=e.map(function(n,i){var o=parseInt(i,10)+1,l=e.length;return n.error?function(){return r.reject(new Error(n.error))}:n.isRemote?(t.uppy.emit("upload-started",n),t.uploadRemote.bind(t,n,o,l)):(t.uppy.emit("upload-started",n),t.upload.bind(t,n,o,l))}).map(function(e){return t.limitUploads(e)()});return p(n)},t.prototype.handleUpload=function(e){var t=this;if(0===e.length)return this.uppy.log("[XHRUpload] No files to upload!"),r.resolve();this.uppy.log("[XHRUpload] Uploading...");var n=e.map(function(e){return t.uppy.getFile(e)});return this.opts.bundle?this.uploadBundle(n):this.uploadFiles(n).then(function(){return null})},t.prototype.install=function(){this.uppy.addUploader(this.handleUpload)},t.prototype.uninstall=function(){this.uppy.removeUploader(this.handleUpload)},t}(o)},"+KN+":function(e,t,n){"use strict";var i=n("rCTf"),r=n("O/+v");i.Observable.prototype.bufferCount=r.bufferCount},"+Q++":function(e,t){Prism.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d+.*$/m],deleted:/^[-<].*$/m,inserted:/^[+>].*$/m,diff:{pattern:/^!(?!!).+$/m,alias:"important"}}},"+X65":function(e,t,n){var i=n("O4Lo"),r=n("yCNF");e.exports=function(e,t,n){var o=!0,l=!0;if("function"!=typeof e)throw new TypeError("Expected a function");return r(n)&&(o="leading"in n?!!n.leading:o,l="trailing"in n?!!n.trailing:l),i(e,t,{leading:o,maxWait:t,trailing:l})}},"+Y2e":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("mmVS"),l=n("rCTf"),s=n("B00U"),a=n("VOfZ"),u=n("MQMf"),c=n("+3eL"),d=n("WhVc"),p=n("KLoZ");t.WebSocketSubject=function(e){function t(t,n){if(t instanceof l.Observable)e.call(this,n,t);else{if(e.call(this),this.WebSocketCtor=a.root.WebSocket,this._output=new r.Subject,"string"==typeof t?this.url=t:p.assign(this,t),!this.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new u.ReplaySubject}}return i(t,e),t.prototype.resultSelector=function(e){return JSON.parse(e.data)},t.create=function(e){return new t(e)},t.prototype.lift=function(e){var n=new t(this,this.destination);return n.operator=e,n},t.prototype._resetState=function(){this.socket=null,this.source||(this.destination=new u.ReplaySubject),this._output=new r.Subject},t.prototype.multiplex=function(e,t,n){var i=this;return new l.Observable(function(r){var o=c.tryCatch(e)();o===d.errorObject?r.error(d.errorObject.e):i.next(o);var l=i.subscribe(function(e){var t=c.tryCatch(n)(e);t===d.errorObject?r.error(d.errorObject.e):t&&r.next(e)},function(e){return r.error(e)},function(){return r.complete()});return function(){var e=c.tryCatch(t)();e===d.errorObject?r.error(d.errorObject.e):i.next(e),l.unsubscribe()}})},t.prototype._connectSocket=function(){var e=this,t=this.WebSocketCtor,n=this._output,i=null;try{i=this.protocol?new t(this.url,this.protocol):new t(this.url),this.socket=i,this.binaryType&&(this.socket.binaryType=this.binaryType)}catch(e){return void n.error(e)}var r=new s.Subscription(function(){e.socket=null,i&&1===i.readyState&&i.close()});i.onopen=function(t){var l=e.openObserver;l&&l.next(t);var s=e.destination;e.destination=o.Subscriber.create(function(e){return 1===i.readyState&&i.send(e)},function(t){var r=e.closingObserver;r&&r.next(void 0),t&&t.code?i.close(t.code,t.reason):n.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),e._resetState()},function(){var t=e.closingObserver;t&&t.next(void 0),i.close(),e._resetState()}),s&&s instanceof u.ReplaySubject&&r.add(s.subscribe(e.destination))},i.onerror=function(t){e._resetState(),n.error(t)},i.onclose=function(t){e._resetState();var i=e.closeObserver;i&&i.next(t),t.wasClean?n.complete():n.error(t)},i.onmessage=function(t){var i=c.tryCatch(e.resultSelector)(t);i===d.errorObject?n.error(d.errorObject.e):n.next(i)}},t.prototype._subscribe=function(e){var t=this,n=this.source;if(n)return n.subscribe(e);this.socket||this._connectSocket();var i=new s.Subscription;return i.add(this._output.subscribe(e)),i.add(function(){var e=t.socket;0===t._output.observers.length&&(e&&1===e.readyState&&e.close(),t._resetState())}),i},t.prototype.unsubscribe=function(){var t=this.source,n=this.socket;n&&1===n.readyState&&(n.close(),this._resetState()),e.prototype.unsubscribe.call(this),t||(this.destination=new u.ReplaySubject)},t}(r.AnonymousSubject)},"+Zxz":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.defaultIfEmpty=function(e){return void 0===e&&(e=null),function(t){return t.lift(new o(e))}};var o=function(){function e(e){this.defaultValue=e}return e.prototype.call=function(e,t){return t.subscribe(new l(e,this.defaultValue))},e}(),l=function(e){function t(t,n){e.call(this,t),this.defaultValue=n,this.isEmpty=!0}return i(t,e),t.prototype._next=function(e){this.isEmpty=!1,this.destination.next(e)},t.prototype._complete=function(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()},t}(r.Subscriber)},"+ayw":function(e,t,n){"use strict";var i=n("sTFn");t.share=function(){return i.share()(this)}},"+gg+":function(e,t,n){var i=n("TQ3y");e.exports=i["__core-js_shared__"]},"+lzb":function(e,t){function n(e){this.ms=(e=e||{}).min||100,this.max=e.max||1e4,this.factor=e.factor||2,this.jitter=e.jitter>0&&e.jitter<=1?e.jitter:0,this.attempts=0}e.exports=n,n.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=0==(1&Math.floor(10*t))?e-n:e+n}return 0|Math.min(e,this.max)},n.prototype.reset=function(){this.attempts=0},n.prototype.setMin=function(e){this.ms=e},n.prototype.setMax=function(e){this.max=e},n.prototype.setJitter=function(e){this.jitter=e}},"+p4S":function(e,t,n){(function(t){var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r=Object.assign||function(e){for(var t=1;ti)throw new Error(""+this.i18n("youCanOnlyUploadX",{smart_count:i}));if(r&&!(r.filter(function(t){return!!e.type&&h(e.type,t)}).length>0)){var o=r.join(", ");throw new Error(this.i18n("youCanOnlyUploadFileTypes")+" "+o)}if(n&&e.data.size>n)throw new Error(this.i18n("exceedsSize")+" "+p(n))},e.prototype.addFile=function(e){var t=this;return l.resolve().then(function(){return t.opts.onBeforeFileAdded(e,t.getState().files)}).then(function(){return s.getFileType(e)}).then(function(n){var i,o=r({},t.getState().files);i=e.name?e.name:"image"===n.split("/")[0]?n.split("/")[0]+"."+n.split("/")[1]:"noname";var l=s.getFileNameAndExtension(i).extension,a=e.isRemote||!1,u=s.generateFileID(e),c={source:e.source||"",id:u,name:i,extension:l||"",meta:r({},t.getState().meta,{name:i,type:n}),type:n,data:e.data,progress:{percentage:0,bytesUploaded:0,bytesTotal:e.data.size||0,uploadComplete:!1,uploadStarted:!1},size:e.data.size||0,isRemote:a,remote:e.remote||"",preview:e.preview};t._checkRestrictions(c),o[u]=c,t.setState({files:o}),t.emit("file-added",c),t.log("Added file: "+i+", "+u+", mime type: "+n),t.opts.autoProceed&&!t.scheduledAutoProceed&&(t.scheduledAutoProceed=setTimeout(function(){t.scheduledAutoProceed=null,t.upload().catch(function(e){console.error(e.stack||e.message||e)})},4))}).catch(function(e){var n="object"===("undefined"==typeof e?"undefined":i(e))?e.message:e;return t.log(n),t.info(n,"error",5e3),l.reject("object"===("undefined"==typeof e?"undefined":i(e))?e:new Error(e))})},e.prototype.removeFile=function(e){var t=this,n=this.state,i=n.currentUploads,o=r({},n.files),l=o[e];delete o[e];var a=r({},i),u=[];Object.keys(a).forEach(function(t){var n=i[t].fileIDs.filter(function(t){return t!==e});0!==n.length?a[t]=r({},i[t],{fileIDs:n}):u.push(t)}),this.setState({currentUploads:a,files:o}),u.forEach(function(e){t._removeUpload(e)}),this._calculateTotalProgress(),this.emit("file-removed",l),this.log("File removed: "+l.id),l.preview&&s.isObjectURL(l.preview)&&URL.revokeObjectURL(l.preview),this.log("Removed file: "+e)},e.prototype.pauseResume=function(e){var t=r({},this.getState().files);if(!t[e].uploadComplete){var n=!t[e].isPaused,i=r({},t[e],{isPaused:n});return t[e]=i,this.setState({files:t}),this.emit("upload-pause",e,n),n}},e.prototype.pauseAll=function(){var e=r({},this.getState().files);Object.keys(e).filter(function(t){return!e[t].progress.uploadComplete&&e[t].progress.uploadStarted}).forEach(function(t){var n=r({},e[t],{isPaused:!0});e[t]=n}),this.setState({files:e}),this.emit("pause-all")},e.prototype.resumeAll=function(){var e=r({},this.getState().files);Object.keys(e).filter(function(t){return!e[t].progress.uploadComplete&&e[t].progress.uploadStarted}).forEach(function(t){var n=r({},e[t],{isPaused:!1,error:null});e[t]=n}),this.setState({files:e}),this.emit("resume-all")},e.prototype.retryAll=function(){var e=r({},this.getState().files),t=Object.keys(e).filter(function(t){return e[t].error});t.forEach(function(t){var n=r({},e[t],{isPaused:!1,error:null});e[t]=n}),this.setState({files:e,error:null}),this.emit("retry-all",t);var n=this._createUpload(t);return this._runUpload(n)},e.prototype.cancelAll=function(){var e=this;this.emit("cancel-all");var t=this.getState();Object.keys(t.currentUploads).forEach(function(t){e._removeUpload(t)}),this.setState({files:{},totalProgress:0})},e.prototype.retryUpload=function(e){var t=r({},this.getState().files),n=r({},t[e],{error:null,isPaused:!1});t[e]=n,this.setState({files:t}),this.emit("upload-retry",e);var i=this._createUpload([e]);return this._runUpload(i)},e.prototype.reset=function(){this.cancelAll()},e.prototype._calculateProgress=function(e,t){this.getFile(e.id)?(this.setFileState(e.id,{progress:r({},this.getFile(e.id).progress,{bytesUploaded:t.bytesUploaded,bytesTotal:t.bytesTotal,percentage:Math.floor((t.bytesUploaded/t.bytesTotal*100).toFixed(2))})}),this._calculateTotalProgress()):this.log("Not setting progress for a file that has been removed: "+e.id)},e.prototype._calculateTotalProgress=function(){var e=r({},this.getState().files),t=Object.keys(e).filter(function(t){return e[t].progress.uploadStarted}),n=100*t.length,i=0;t.forEach(function(t){i+=e[t].progress.percentage});var o=0===n?0:Math.floor((100*i/n).toFixed(2));this.setState({totalProgress:o})},e.prototype.actions=function(){var e=this;this.on("error",function(t){e.setState({error:t.message})}),this.on("upload-error",function(t,n){e.setFileState(t.id,{error:n.message}),e.setState({error:n.message});var r="Failed to upload "+t.name;"object"===("undefined"==typeof n?"undefined":i(n))&&n.message&&(r={message:r,details:n.message}),e.info(r,"error",5e3)}),this.on("upload",function(){e.setState({error:null})}),this.on("upload-started",function(t,n){e.getFile(t.id)?e.setFileState(t.id,{progress:r({},e.getFile(t.id),{uploadStarted:Date.now(),uploadComplete:!1,percentage:0,bytesUploaded:0,bytesTotal:t.size})}):e.log("Not setting progress for a file that has been removed: "+t.id)});var t=d(this._calculateProgress,100,{leading:!0,trailing:!0});this.on("upload-progress",t),this.on("upload-success",function(t,n,i){e.setFileState(t.id,{progress:r({},e.getFile(t.id).progress,{uploadComplete:!0,percentage:100}),uploadURL:i,isPaused:!1}),e._calculateTotalProgress()}),this.on("preprocess-progress",function(t,n){e.getFile(t.id)?e.setFileState(t.id,{progress:r({},e.getFile(t.id).progress,{preprocess:n})}):e.log("Not setting progress for a file that has been removed: "+t.id)}),this.on("preprocess-complete",function(t){if(e.getFile(t.id)){var n=r({},e.getState().files);n[t.id]=r({},n[t.id],{progress:r({},n[t.id].progress)}),delete n[t.id].progress.preprocess,e.setState({files:n})}else e.log("Not setting progress for a file that has been removed: "+t.id)}),this.on("postprocess-progress",function(t,n){e.getFile(t.id)?e.setFileState(t.id,{progress:r({},e.getState().files[t.id].progress,{postprocess:n})}):e.log("Not setting progress for a file that has been removed: "+t.id)}),this.on("postprocess-complete",function(t){if(e.getFile(t.id)){var n=r({},e.getState().files);n[t.id]=r({},n[t.id],{progress:r({},n[t.id].progress)}),delete n[t.id].progress.postprocess,e.setState({files:n})}else e.log("Not setting progress for a file that has been removed: "+t.id)}),this.on("restored",function(){e._calculateTotalProgress()}),"undefined"!=typeof window&&(window.addEventListener("online",function(){return e.updateOnlineStatus()}),window.addEventListener("offline",function(){return e.updateOnlineStatus()}),setTimeout(function(){return e.updateOnlineStatus()},3e3))},e.prototype.updateOnlineStatus=function(){"undefined"==typeof window.navigator.onLine||window.navigator.onLine?(this.emit("is-online"),this.wasOffline&&(this.emit("back-online"),this.info("Connected!","success",3e3),this.wasOffline=!1)):(this.emit("is-offline"),this.info("No internet connection","error",0),this.wasOffline=!0)},e.prototype.getID=function(){return this.opts.id},e.prototype.use=function(e,t){if("function"!=typeof e){var n="Expected a plugin class, but got "+(null===e?"null":"undefined"==typeof e?"undefined":i(e))+". Please verify that the plugin was imported and spelled correctly.";throw new TypeError(n)}var r=new e(this,t),o=r.id;if(this.plugins[r.type]=this.plugins[r.type]||[],!o)throw new Error("Your plugin must have an id");if(!r.type)throw new Error("Your plugin must have a type");var l=this.getPlugin(o);if(l)throw new Error("Already found a plugin named '"+l.id+"'.\n Tried to use: '"+o+"'.\n Uppy is currently limited to running one of every plugin.\n Share your use case with us over at\n https://github.com/transloadit/uppy/issues/\n if you want us to reconsider.");return this.plugins[r.type].push(r),r.install(),this},e.prototype.getPlugin=function(e){var t=!1;return this.iteratePlugins(function(n){if(n.id===e)return t=n,!1}),t},e.prototype.iteratePlugins=function(e){var t=this;Object.keys(this.plugins).forEach(function(n){t.plugins[n].forEach(e)})},e.prototype.removePlugin=function(e){var t=this.plugins[e.type];e.uninstall&&e.uninstall();var n=t.indexOf(e);-1!==n&&t.splice(n,1)},e.prototype.close=function(){this.reset(),this._storeUnsubscribe(),this.iteratePlugins(function(e){e.uninstall()})},e.prototype.info=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"info",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:3e3,r="object"===("undefined"==typeof e?"undefined":i(e));this.setState({info:{isHidden:!1,type:t,message:r?e.message:e,details:r?e.details:null}}),this.emit("info-visible"),window.clearTimeout(this.infoTimeoutID),this.infoTimeoutID=0!==n?setTimeout(this.hideInfo,n):void 0},e.prototype.hideInfo=function(){var e=r({},this.getState().info,{isHidden:!0});this.setState({info:e}),this.emit("info-hidden")},e.prototype.log=function(e,n){if(this.opts.debug){var i="[Uppy] ["+s.getTimeStamp()+"] "+e;t.uppyLog=t.uppyLog+"\nDEBUG LOG: "+e,"error"!==n?"warning"!==n?e===""+e?console.log(i):(i="[Uppy] ["+s.getTimeStamp()+"]",console.log(i),console.dir(e)):console.warn(i):console.error(i)}},e.prototype.run=function(){return this.log("Core is run, initializing actions..."),this.actions(),this},e.prototype.restore=function(e){return this.log('Core: attempting to restore upload "'+e+'"'),this.getState().currentUploads[e]?this._runUpload(e):(this._removeUpload(e),l.reject(new Error("Nonexistent upload")))},e.prototype._createUpload=function(e){var t,n=c();return this.emit("upload",{id:n,fileIDs:e}),this.setState({currentUploads:r({},this.getState().currentUploads,(t={},t[n]={fileIDs:e,step:0,result:{}},t))}),n},e.prototype._getUpload=function(e){return this.getState().currentUploads[e]},e.prototype.addResultData=function(e,t){var n;if(this._getUpload(e)){var i=this.getState().currentUploads,o=r({},i[e],{result:r({},i[e].result,t)});this.setState({currentUploads:r({},i,(n={},n[e]=o,n))})}else this.log("Not setting result for an upload that has been removed: "+e)},e.prototype._removeUpload=function(e){var t=r({},this.getState().currentUploads);delete t[e],this.setState({currentUploads:t})},e.prototype._runUpload=function(e){var t=this,n=this.getState().currentUploads[e],i=n.fileIDs,o=n.step,s=[].concat(this.preProcessors,this.uploaders,this.postProcessors),a=l.resolve();return s.forEach(function(n,l){l10&&e<20}function r(e){return t[e].split("_")}function o(e,t,o,l){var s=e+" ";return 1===e?s+n(0,t,o[0],l):t?s+(i(e)?r(o)[1]:r(o)[0]):l?s+r(o)[1]:s+(i(e)?r(o)[1]:r(o)[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,n,i){return t?"kelios sekund\u0117s":i?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},ss:o,m:n,mm:o,h:n,hh:o,d:n,dd:o,M:n,MM:o,y:n,yy:o},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})}(n("PJh5"))},"/8te":function(e,t,n){"use strict";var i=n("Gb0N");t.range=i.RangeObservable.create},"/GnY":function(e,t,n){var i=n("HT7L"),r=n("W529"),o=Object.prototype.hasOwnProperty;e.exports=function(e){if(!i(e))return r(e);var t=[];for(var n in Object(e))o.call(e,n)&&"constructor"!=n&&t.push(n);return t}},"/I3N":function(e,t){e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},"/J7H":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("+3eL"),l=n("SKH6"),s=n("WhVc"),a=n("B00U"),u=Object.prototype.toString;t.FromEventObservable=function(e){function t(t,n,i,r){e.call(this),this.sourceObj=t,this.eventName=n,this.selector=i,this.options=r}return i(t,e),t.create=function(e,n,i,r){return l.isFunction(i)&&(r=i,i=void 0),new t(e,n,r,i)},t.setupSubscription=function(e,n,i,r,o){var l;if(function(e){return!!e&&"[object NodeList]"===u.call(e)}(e)||function(e){return!!e&&"[object HTMLCollection]"===u.call(e)}(e))for(var s=0,c=e.length;s=10?e:e+12:"\u0938\u093e\u0901\u091d"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},"/nPl":function(e,t,n){"use strict";var i=n("ijov");t.combineAll=function(e){return function(t){return t.lift(new i.CombineLatestOperator(e))}}},"/nXB":function(e,t,n){"use strict";var i=n("YaPU"),r=n("Veqx"),o=n("1Q68"),l=n("Qnch");function s(e){return e}t.a=function(){for(var e=[],t=0;t1&&"number"==typeof e[e.length-1]&&(n=e.pop())):"number"==typeof u&&(n=e.pop()),null===a&&1===e.length&&e[0]instanceof i.a?e[0]:function(e){return void 0===e&&(e=Number.POSITIVE_INFINITY),Object(l.a)(s,null,e)}(n)(new r.a(e,a))}},"/rMs":function(e,t,n){"use strict";var i=n("rCTf"),r=n("8MUz");i.Observable.prototype.concat=r.concat},0:function(e,t,n){e.exports=n("x35b")},"00YY":function(e,t,n){"use strict";t.identity=function(e){return e}},"037f":function(e,t,n){var i=n("1oyr"),r=n("p0bc"),o=n("wSKX");e.exports=r?function(e,t){return r(e,"toString",{configurable:!0,enumerable:!1,value:i(t),writable:!0})}:o},"07LQ":function(e,t,n){var i=Object.assign||function(e){for(var t=1;tthis.opts.maxFileSize?r.reject(new Error("File is too big to store.")):this.getSize().then(function(e){return e>t.opts.maxTotalSize?r.reject(new Error("No space left")):t.ready}).then(function(n){return h(n.transaction([u],"readwrite").objectStore(u).add({id:t.key(e.id),fileID:e.id,store:t.name,expires:Date.now()+t.opts.expires,data:e.data}))})},e.prototype.delete=function(e){var t=this;return this.ready.then(function(n){return h(n.transaction([u],"readwrite").objectStore(u).delete(t.key(e)))})},e.cleanup=function(){return p(a).then(function(e){var t=e.transaction([u],"readwrite").objectStore(u).index("expires").openCursor(IDBKeyRange.upperBound(Date.now()));return new r(function(n,i){t.onsuccess=function(t){var i=t.target.result;if(i){var r=i.value;console.log("[IndexedDBStore] Deleting record",r.fileID,"of size",o(r.data.size),"- expired on",new Date(r.expires)),i.delete(),i.continue()}else n(e)},t.onerror=i})}).then(function(e){e.close()})},e}();m.isSupported=s,e.exports=m},"09LQ":function(e,t,n){"use strict";var i=n("ady2");t._finally=function(e){return i.finalize(e)(this)}},"09Qt":function(e,t,n){var i=n("uIr7"),r=n("vi0E"),o=n("l9Lx"),l=n("C0hh"),s=Object.getOwnPropertySymbols;e.exports=s?function(e){for(var t=[];e;)i(t,o(e)),e=r(e);return t}:l},"0DSl":function(e,t,n){var i=n("YkxI"),r=n("zBOP");e.exports=function(e){return i(function(t,n){var i=-1,o=n.length,l=o>1?n[o-1]:void 0,s=o>2?n[2]:void 0;for(l=e.length>3&&"function"==typeof l?(o--,l):void 0,s&&r(n[0],n[1],s)&&(l=o<3?void 0:l,o=1),t=Object(t);++i=r.LoggerLevelEnum.ERROR_LEVEL&&(console.error=t.CONSOLE_ERROR_FN),this.config.logLevel>=r.LoggerLevelEnum.WARN_LEVEL&&(console.warn=t.CONSOLE_WARN_FN),this.config.logLevel>=r.LoggerLevelEnum.NOTICE_LEVEL&&(console.log=t.CONSOLE_NOTICE_FN),this.config.logLevel>=r.LoggerLevelEnum.INFO_LEVEL&&(console.info=t.CONSOLE_INFO_FN),this.config.logLevel>=r.LoggerLevelEnum.DEBUG_LEVEL&&(console.debug=t.CONSOLE_DEBUG_FN||t.CONSOLE_INFO_FN)},e.config={logLevel:r.LoggerLevelEnum.DEBUG_LEVEL},e}();t.LoggerFactory=l,"undefined"!=typeof window&&(window.$$LoggerFactory=l)},"0qMM":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("+3eL"),o=n("WhVc"),l=n("wAkD"),s=n("CURp");t.expand=function(e,t,n){return void 0===t&&(t=Number.POSITIVE_INFINITY),void 0===n&&(n=void 0),t=(t||0)<1?Number.POSITIVE_INFINITY:t,function(i){return i.lift(new a(e,t,n))}};var a=function(){function e(e,t,n){this.project=e,this.concurrent=t,this.scheduler=n}return e.prototype.call=function(e,t){return t.subscribe(new u(e,this.project,this.concurrent,this.scheduler))},e}();t.ExpandOperator=a;var u=function(e){function t(t,n,i,r){e.call(this,t),this.project=n,this.concurrent=i,this.scheduler=r,this.index=0,this.active=0,this.hasCompleted=!1,i0&&this._next(t.shift()),this.hasCompleted&&0===this.active&&this.destination.complete()},t}(l.OuterSubscriber);t.ExpandSubscriber=u},"0uX4":function(e,t,n){var i=n("NkRn"),r=i?i.prototype:void 0,o=r?r.valueOf:void 0;e.exports=function(e){return o?Object(o.call(e)):{}}},1:function(e,t){},"10Gq":function(e,t,n){"use strict";var i=n("rCTf"),r=n("Cx8F");i.Observable.prototype.retryWhen=r.retryWhen},"13YQ":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.exhaustMap=function(e,t){return function(n){return n.lift(new l(e,t))}};var l=function(){function e(e,t){this.project=e,this.resultSelector=t}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.project,this.resultSelector))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.project=n,this.resultSelector=i,this.hasSubscription=!1,this.hasCompleted=!1,this.index=0}return i(t,e),t.prototype._next=function(e){this.hasSubscription||this.tryNext(e)},t.prototype.tryNext=function(e){var t=this.index++,n=this.destination;try{var i=this.project(e,t);this.hasSubscription=!0,this.add(o.subscribeToResult(this,i,e,t))}catch(e){n.error(e)}},t.prototype._complete=function(){this.hasCompleted=!0,this.hasSubscription||this.destination.complete()},t.prototype.notifyNext=function(e,t,n,i,r){var o=this.destination;this.resultSelector?this.trySelectResult(e,t,n,i):o.next(t)},t.prototype.trySelectResult=function(e,t,n,i){var r=this.resultSelector,o=this.destination;try{var l=r(e,t,n,i);o.next(l)}catch(e){o.error(e)}},t.prototype.notifyError=function(e){this.destination.error(e)},t.prototype.notifyComplete=function(e){this.remove(e),this.hasSubscription=!1,this.hasCompleted&&this.destination.complete()},t}(r.OuterSubscriber)},"16m9":function(e,t,n){"use strict";var i=n("rCTf"),r=n("Yuqe");i.Observable.prototype.concatMapTo=r.concatMapTo},"16tV":function(e,t,n){var i=n("tO4o"),r=n("ktak");e.exports=function(e){for(var t=r(e),n=t.length;n--;){var o=t[n],l=e[o];t[n]=[o,l,i(l)]}return t}},"17on":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("CGGv"),l=n("mmVS"),s=n("P3oE"),a=n("fWbP");t.windowTime=function(e){var t=o.async,n=null,i=Number.POSITIVE_INFINITY;return a.isScheduler(arguments[3])&&(t=arguments[3]),a.isScheduler(arguments[2])?t=arguments[2]:s.isNumeric(arguments[2])&&(i=arguments[2]),a.isScheduler(arguments[1])?t=arguments[1]:s.isNumeric(arguments[1])&&(n=arguments[1]),function(r){return r.lift(new u(e,n,i,t))}};var u=function(){function e(e,t,n,i){this.windowTimeSpan=e,this.windowCreationInterval=t,this.maxWindowSize=n,this.scheduler=i}return e.prototype.call=function(e,t){return t.subscribe(new d(e,this.windowTimeSpan,this.windowCreationInterval,this.maxWindowSize,this.scheduler))},e}(),c=function(e){function t(){e.apply(this,arguments),this._numberOfNextedValues=0}return i(t,e),t.prototype.next=function(t){this._numberOfNextedValues++,e.prototype.next.call(this,t)},Object.defineProperty(t.prototype,"numberOfNextedValues",{get:function(){return this._numberOfNextedValues},enumerable:!0,configurable:!0}),t}(r.Subject),d=function(e){function t(t,n,i,r,o){e.call(this,t),this.destination=t,this.windowTimeSpan=n,this.windowCreationInterval=i,this.maxWindowSize=r,this.scheduler=o,this.windows=[];var l=this.openWindow();if(null!==i&&i>=0){var s={windowTimeSpan:n,windowCreationInterval:i,subscriber:this,scheduler:o};this.add(o.schedule(f,n,{subscriber:this,window:l,context:null})),this.add(o.schedule(h,i,s))}else this.add(o.schedule(p,n,{subscriber:this,window:l,windowTimeSpan:n}))}return i(t,e),t.prototype._next=function(e){for(var t=this.windows,n=t.length,i=0;i=this.maxWindowSize&&this.closeWindow(r))}},t.prototype._error=function(e){for(var t=this.windows;t.length>0;)t.shift().error(e);this.destination.error(e)},t.prototype._complete=function(){for(var e=this.windows;e.length>0;){var t=e.shift();t.closed||t.complete()}this.destination.complete()},t.prototype.openWindow=function(){var e=new c;return this.windows.push(e),this.destination.next(e),e},t.prototype.closeWindow=function(e){e.complete();var t=this.windows;t.splice(t.indexOf(e),1)},t}(l.Subscriber);function p(e){var t=e.subscriber,n=e.windowTimeSpan,i=e.window;i&&t.closeWindow(i),e.window=t.openWindow(),this.schedule(e,n)}function h(e){var t=e.windowTimeSpan,n=e.subscriber,i=e.scheduler,r=e.windowCreationInterval,o=n.openWindow(),l={action:this,subscription:null};l.subscription=i.schedule(f,t,{subscriber:n,window:o,context:l}),this.add(l.subscription),this.schedule(e,r)}function f(e){var t=e.subscriber,n=e.window,i=e.context;i&&i.action&&i.subscription&&i.action.remove(i.subscription),t.closeWindow(n)}},"1APj":function(e,t,n){"use strict";var i=n("rCTf"),r=n("lgiQ");i.Observable.of=r.of},"1Axw":function(e,t,n){"use strict";var i=n("BkLI");t.delayWhen=function(e,t){return i.delayWhen(e,t)(this)}},"1C79":function(e,t,n){var i=n("uIr7"),r=n("Qp3N");e.exports=function e(t,n,o,l,s){var a=-1,u=t.length;for(o||(o=r),s||(s=[]);++a0&&o(c)?n>1?e(c,n-1,o,l,s):i(s,c):l||(s[s.length]=c)}return s}},"1Cj3":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("9Avi");t.AsapScheduler=function(e){function t(){e.apply(this,arguments)}return i(t,e),t.prototype.flush=function(e){this.active=!0,this.scheduled=void 0;var t,n=this.actions,i=-1,r=n.length;e=e||n.shift();do{if(t=e.execute(e.state,e.delay))break}while(++i1&&"number"==typeof e[e.length-1]&&(n=e.pop())):"number"==typeof a&&(n=e.pop()),null===s&&1===e.length&&e[0]instanceof i.Observable?e[0]:l.mergeAll(n)(new r.ArrayObservable(e,s))}},"1NVl":function(e,t,n){"use strict";var i=n("rCTf"),r=n("83T1");i.Observable.prototype.every=r.every},"1Nls":function(e,t,n){"use strict";var i=n("rCTf"),r=n("gIFM");i.Observable.ajax=r.ajax},"1Q68":function(e,t,n){"use strict";t.a=function(e){return e&&"function"==typeof e.schedule}},"1QDk":function(e,t,n){var i=n("tv3T"),r=n("09Qt");e.exports=function(e,t){return i(e,r(e),t)}},"1VLl":function(e,t,n){"use strict";var i=n("rCTf"),r=n("+I/r");i.Observable.onErrorResumeNext=r.onErrorResumeNext},"1Yb9":function(e,t,n){var i=n("mgnk"),r=n("UnEC"),o=Object.prototype,l=o.hasOwnProperty,s=o.propertyIsEnumerable,a=i(function(){return arguments}())?i:function(e){return r(e)&&l.call(e,"callee")&&!s.call(e,"callee")};e.exports=a},"1ZrL":function(e,t,n){"use strict";var i=n("rCTf"),r=n("lU4I");i.Observable.concat=r.concat},"1hN3":function(e,t,n){"use strict";var i=n("xx+E");t.bufferWhen=function(e){return i.bufferWhen(e)(this)}},"1k2o":function(e,t,n){"use strict";var i=n("rCTf"),r=n("33Pm");i.Observable.bindCallback=r.bindCallback},"1kxm":function(e,t,n){"use strict";t.FastMap=function(){function e(){this.values={}}return e.prototype.delete=function(e){return this.values[e]=null,!0},e.prototype.set=function(e,t){return this.values[e]=t,this},e.prototype.get=function(e){return this.values[e]},e.prototype.forEach=function(e,t){var n=this.values;for(var i in n)n.hasOwnProperty(i)&&null!==n[i]&&e.call(t,n[i],i)},e.prototype.clear=function(){this.values={}},e}()},"1oyr":function(e,t){e.exports=function(e){return function(){return e}}},"1r8+":function(e,t,n){"use strict";t.isArrayLike=function(e){return e&&"number"==typeof e.length}},"1vRr":function(e,t){!function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete e.languages.sass.atrule;var t=/\$[-\w]+|#\{\$[-\w]+\}/,n=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:t,operator:n}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:t,operator:n,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,delete e.languages.sass.selector,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism)},"1wLk":function(e,t,n){"use strict";var i=n("TfWX"),r=n("6BaH");t.publishBehavior=function(e){return function(t){return r.multicast(new i.BehaviorSubject(e))(t)}}},"1xPc":function(e,t,n){var i=Object.assign||function(e){for(var t=1;t400})},t.prototype.discoverProviderPlugins=function(){var e=this;this.uppy.iteratePlugins(function(t){t&&!t.target&&t.opts&&t.opts.target===e.constructor&&e.addTarget(t)})},t.prototype.install=function(){var e=this;this.setPluginState({isHidden:!0,showFileCard:!1,activePanel:!1,metaFields:this.opts.metaFields,targets:[]});var t=this.opts.target;t&&this.mount(t,this),(this.opts.plugins||[]).forEach(function(t){var n=e.uppy.getPlugin(t);n&&n.mount(e,n)}),this.opts.disableStatusBar||this.uppy.use(a,{target:this,hideUploadButton:this.opts.hideUploadButton,hideAfterFinish:this.opts.hideProgressAfterFinish,locale:this.opts.locale}),this.opts.disableInformer||this.uppy.use(u,{target:this}),this.opts.disableThumbnailGenerator||this.uppy.use(c,{thumbnailWidth:this.opts.thumbnailWidth}),this.discoverProviderPlugins(),this.initEvents()},t.prototype.uninstall=function(){var e=this;if(!this.opts.disableInformer){var t=this.uppy.getPlugin("Informer");t&&this.uppy.removePlugin(t)}if(!this.opts.disableStatusBar){var n=this.uppy.getPlugin("StatusBar");n&&this.uppy.removePlugin(n)}if(!this.opts.disableThumbnailGenerator){var i=this.uppy.getPlugin("ThumbnailGenerator");i&&this.uppy.removePlugin(i)}(this.opts.plugins||[]).forEach(function(t){var n=e.uppy.getPlugin(t);n&&n.unmount()}),this.unmount(),this.removeEvents()},t}(r)},"215F":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.takeWhile=function(e){return function(t){return t.lift(new o(e))}};var o=function(){function e(e){this.predicate=e}return e.prototype.call=function(e,t){return t.subscribe(new l(e,this.predicate))},e}(),l=function(e){function t(t,n){e.call(this,t),this.predicate=n,this.index=0}return i(t,e),t.prototype._next=function(e){var t,n=this.destination;try{t=this.predicate(e,this.index++)}catch(e){return void n.error(e)}this.nextOrComplete(e,t)},t.prototype.nextOrComplete=function(e,t){var n=this.destination;Boolean(t)?n.next(e):n.complete()},t}(r.Subscriber)},"22B7":function(e,t){e.exports=function(e,t){return e===t||e!=e&&t!=t}},2395:function(e,t,n){"use strict";var i=n("rCTf"),r=n("9TuE");i.Observable.prototype.isEmpty=r.isEmpty},"248v":function(e,t,n){var i=n("8UTl"),r=i.h,o=i.Component,l=n("HBvK"),s=n("qT2I");function a(e,t){return-1!==e.indexOf(t)}var u=function(e){function t(){return function(e,n){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.componentDidMount=function(){this.props.onFocus(),this.btnContainer.firstChild.focus()},t.prototype.componentWillUnmount=function(){this.props.onStop()},t.prototype.render=function(){var e=this,t=this.props.supportsRecording&&(a(this.props.modes,"video-only")||a(this.props.modes,"audio-only")||a(this.props.modes,"video-audio")),n=a(this.props.modes,"picture");return r("div",{class:"uppy uppy-Webcam-container"},r("div",{class:"uppy-Webcam-videoContainer"},r("video",{class:"uppy-Webcam-video "+(this.props.mirror?"uppy-Webcam-video--mirrored":""),autoplay:!0,muted:!0,playsinline:!0,srcObject:this.props.src||""})),r("div",{class:"uppy-Webcam-buttonContainer",ref:function(t){e.btnContainer=t}},n?l(this.props):null," ",t?s(this.props):null))},t}(o);e.exports=u},"2AEF":function(e,t,n){"use strict";var i=n("13YQ");t.exhaustMap=function(e,t){return i.exhaustMap(e,t)(this)}},"2ER/":function(e,t,n){"use strict";t.MapPolyfill=function(){function e(){this.size=0,this._values=[],this._keys=[]}return e.prototype.get=function(e){var t=this._keys.indexOf(e);return-1===t?void 0:this._values[t]},e.prototype.set=function(e,t){var n=this._keys.indexOf(e);return-1===n?(this._keys.push(e),this._values.push(t),this.size++):this._values[n]=t,this},e.prototype.delete=function(e){var t=this._keys.indexOf(e);return-1!==t&&(this._values.splice(t,1),this._keys.splice(t,1),this.size--,!0)},e.prototype.clear=function(){this._keys.length=0,this._values.length=0,this.size=0},e.prototype.forEach=function(e,t){for(var n=0;n-1}},"2JaL":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.buffer=function(e){return function(t){return t.lift(new l(e))}};var l=function(){function e(e){this.closingNotifier=e}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.closingNotifier))},e}(),s=function(e){function t(t,n){e.call(this,t),this.buffer=[],this.add(o.subscribeToResult(this,n))}return i(t,e),t.prototype._next=function(e){this.buffer.push(e)},t.prototype.notifyNext=function(e,t,n,i,r){var o=this.buffer;this.buffer=[],this.destination.next(o)},t}(r.OuterSubscriber)},"2N6f":function(e,t,n){var i=n("rCVp"),r=n("Q2wK"),o=n("WHce");e.exports=function(e){return o(r(e,void 0,i),e+"")}},"2X2u":function(e,t){e.exports=function(e,t){for(var n=-1,i=null==e?0:e.length;++n0;){var i=n.shift();i.subscription.unsubscribe(),i.buffer=null,i.subscription=null}this.contexts=null,e.prototype._error.call(this,t)},t.prototype._complete=function(){for(var t=this.contexts;t.length>0;){var n=t.shift();this.destination.next(n.buffer),n.subscription.unsubscribe(),n.buffer=null,n.subscription=null}this.contexts=null,e.prototype._complete.call(this)},t.prototype.notifyNext=function(e,t,n,i,r){e?this.closeBuffer(e):this.openBuffer(t)},t.prototype.notifyComplete=function(e){this.closeBuffer(e.context)},t.prototype.openBuffer=function(e){try{var t=this.closingSelector.call(this,e);t&&this.trySubscribe(t)}catch(e){this._error(e)}},t.prototype.closeBuffer=function(e){var t=this.contexts;if(t&&e){var n=e.subscription;this.destination.next(e.buffer),t.splice(t.indexOf(e),1),this.remove(n),n.unsubscribe()}},t.prototype.trySubscribe=function(e){var t=this.contexts,n=new r.Subscription,i={buffer:[],subscription:n};t.push(i);var l=o.subscribeToResult(this,e,i);!l||l.closed?this.closeBuffer(i):(l.context=i,this.add(l),n.add(l))},t}(l.OuterSubscriber)},"33Pm":function(e,t,n){"use strict";var i=n("0EZR");t.bindCallback=i.BoundCallbackObservable.create},"3CJN":function(e,t,n){!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,n){return e<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[M\xf4re om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("PJh5"))},"3Did":function(e,t,n){var i=n("uCi2");e.exports=function(e){return function(t){return i(t,e)}}},"3FeR":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n3&&n&&n(u.responseText,u)},u.send(i)}catch(s){window.console&&console.log(s)}}var s=function(){function e(t){var n=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];!function(t,n){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this),this.init(t,n),this.type="backend"}return i(e,[{key:"init",value:function(e){var t=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];this.services=e,this.options=o.defaults(t,this.options||{},{loadPath:"/locales/{{lng}}/{{ns}}.json",addPath:"locales/add/{{lng}}/{{ns}}",allowMultiLoading:!1,parse:JSON.parse,crossDomain:!1,ajax:l})}},{key:"readMulti",value:function(e,t,n){var i=this.services.interpolator.interpolate(this.options.loadPath,{lng:e.join("+"),ns:t.join("+")});this.loadUrl(i,n)}},{key:"read",value:function(e,t,n){var i=this.services.interpolator.interpolate(this.options.loadPath,{lng:e,ns:t});this.loadUrl(i,n)}},{key:"loadUrl",value:function(e,t){var n=this;this.options.ajax(e,this.options,function(i,r){var o=r.status.toString();if(0===o.indexOf("5"))return t("failed loading "+e,!0);if(0===o.indexOf("4"))return t("failed loading "+e,!1);var l=void 0,s=void 0;try{l=n.options.parse(i)}catch(t){s="failed parsing "+e+" to json"}if(s)return t(s,!1);t(null,l)})}},{key:"create",value:function(e,t,n,i){var r=this;"string"==typeof e&&(e=[e]);var o={};o[n]=i||"",e.forEach(function(e){var n=r.services.interpolator.interpolate(r.options.addPath,{lng:e,ns:t});r.options.ajax(n,r.options,function(e,t){},o)})}}]),e}();s.type="backend",t.default=s},"3IRH":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}},"3K28":function(e,t,n){!function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|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,i){return e?/-MMM-/.test(i)?n[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:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"\xe9\xe9n minuut",mm:"%d minuten",h:"\xe9\xe9n uur",hh:"%d uur",d:"\xe9\xe9n dag",dd:"%d dagen",M:"\xe9\xe9n maand",MM:"%d maanden",y:"\xe9\xe9n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("PJh5"))},"3LKG":function(e,t,n){!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}})}(n("PJh5"))},"3MVc":function(e,t,n){!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"},n={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},i=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"]},o=function(e){return function(t,n,o,l){var s=i(t),a=r[e][i(t)];return 2===s&&(a=a[n?0:1]),a.replace(/%d/i,t)}},l=["\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:l,monthsShort:l,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,n){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:o("s"),ss:o("s"),m:o("m"),mm:o("m"),h:o("h"),hh:o("h"),d:o("d"),dd:o("d"),M:o("M"),MM:o("M"),y:o("y"),yy:o("y")},preparse:function(e){return e.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(e){return n[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}})}(n("PJh5"))},"3eju":function(e,t,n){"use strict";var i=n("+Y2e");t.webSocket=i.WebSocketSubject.create},"3hfc":function(e,t,n){!function(e){"use strict";function t(e,t,n){var i,r;return"m"===n?t?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443":"h"===n?t?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443":e+" "+(i=+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?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d",hh:t?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d",dd:"\u0434\u0437\u0435\u043d\u044c_\u0434\u043d\u0456_\u0434\u0437\u0451\u043d",MM:"\u043c\u0435\u0441\u044f\u0446_\u043c\u0435\u0441\u044f\u0446\u044b_\u043c\u0435\u0441\u044f\u0446\u0430\u045e",yy:"\u0433\u043e\u0434_\u0433\u0430\u0434\u044b_\u0433\u0430\u0434\u043e\u045e"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}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:/\[ ?[\u0423\u0443\u045e] ?(?:\u043c\u0456\u043d\u0443\u043b\u0443\u044e|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0443\u044e)? ?\] ?dddd/},weekdaysShort:"\u043d\u0434_\u043f\u043d_\u0430\u0442_\u0441\u0440_\u0447\u0446_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0430\u0442_\u0441\u0440_\u0447\u0446_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., HH:mm",LLLL:"dddd, D MMMM YYYY \u0433., HH:mm"},calendar:{sameDay:"[\u0421\u0451\u043d\u043d\u044f \u045e] LT",nextDay:"[\u0417\u0430\u045e\u0442\u0440\u0430 \u045e] LT",lastDay:"[\u0423\u0447\u043e\u0440\u0430 \u045e] LT",nextWeek:function(){return"[\u0423] dddd [\u045e] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u0443\u044e] dddd [\u045e] LT";case 1:case 2:case 4:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u044b] dddd [\u045e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u0440\u0430\u0437 %s",past:"%s \u0442\u0430\u043c\u0443",s:"\u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456 \u0441\u0435\u043a\u0443\u043d\u0434",m: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,n){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}})}(n("PJh5"))},"48bo":function(e,t,n){"use strict";var i=n("rCTf"),r=n("Y3yw");i.Observable.prototype.race=r.race},"4Ie8":function(e,t,n){"use strict";var i=n("rCTf"),r=n("52Ty");i.Observable.prototype.publish=r.publish},"4k0j":function(e,t){Prism.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(?:;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^{}\s][^{};]*?(?=\s*\{)/,string:{pattern:/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/\B!important\b/i,function:/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.languages.css,Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/()[\s\S]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css",greedy:!0}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag))},"4ukJ":function(e,t,n){"use strict";var i=n("6Gc1");t.Logger=i.Logger;var r=n("0oq/");t.LoggerFactory=r.LoggerFactory;var o=n("wwcT");t.LoggerLevelEnum=o.LoggerLevelEnum},"5+9/":function(e,t,n){var i=n("ZOjo"),r=n("gVZZ"),o=n("ElvI"),l=n("QamB"),s=n("9rXv"),a=n("ARv7")("engine.io-client:polling");e.exports=c;var u=null!=new(n("P2cu"))({xdomain:!1}).responseType;function c(e){u&&!(e&&e.forceBase64)||(this.supportsBinary=!1),i.call(this,e)}l(c,i),c.prototype.name="polling",c.prototype.doOpen=function(){this.poll()},c.prototype.pause=function(e){var t=this;function n(){a("paused"),t.readyState="paused",e()}if(this.readyState="pausing",this.polling||!this.writable){var i=0;this.polling&&(a("we are currently polling - waiting to pause"),i++,this.once("pollComplete",function(){a("pre-pause polling complete"),--i||n()})),this.writable||(a("we are currently writing - waiting to pause"),i++,this.once("drain",function(){a("pre-pause writing complete"),--i||n()}))}else n()},c.prototype.poll=function(){a("polling"),this.polling=!0,this.doPoll(),this.emit("poll")},c.prototype.onData=function(e){var t=this;a("polling got data %s",e),o.decodePayload(e,this.socket.binaryType,function(e,n,i){if("opening"===t.readyState&&t.onOpen(),"close"===e.type)return t.onClose(),!1;t.onPacket(e)}),"closed"!==this.readyState&&(this.polling=!1,this.emit("pollComplete"),"open"===this.readyState?this.poll():a('ignoring poll - transport state "%s"',this.readyState))},c.prototype.doClose=function(){var e=this;function t(){a("writing close packet"),e.write([{type:"close"}])}"open"===this.readyState?(a("transport open - closing"),t()):(a("transport not open - deferring close"),this.once("open",t))},c.prototype.write=function(e){var t=this;this.writable=!1;var n=function(){t.writable=!0,t.emit("drain")};o.encodePayload(e,this.supportsBinary,function(e){t.doWrite(e,n)})},c.prototype.uri=function(){var e=this.query||{},t=this.secure?"https":"http",n="";return!1!==this.timestampRequests&&(e[this.timestampParam]=s()),this.supportsBinary||e.sid||(e.b64=1),e=r.encode(e),this.port&&("https"===t&&443!==Number(this.port)||"http"===t&&80!==Number(this.port))&&(n=":"+this.port),e.length&&(e="?"+e),t+"://"+(-1!==this.hostname.indexOf(":")?"["+this.hostname+"]":this.hostname)+n+this.path+e}},"5+KW":function(e,t,n){(function(t){var i=n("w9ur"),r=Object.prototype.toString,o="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===r.call(Blob),l="function"==typeof File||"undefined"!=typeof File&&"[object FileConstructor]"===r.call(File);e.exports=function e(n){if(!n||"object"!=typeof n)return!1;if(i(n)){for(var r=0,s=n.length;r=11?e:e+12:"\u0431\u0435\u0433\u043e\u04b3"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},"5Zxu":function(e,t,n){var i=n("sBat");e.exports=function(e){var t=i(e),n=t%1;return t==t?n?t-n:t:0}},"5c/I":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("B00U");t.AsyncSubject=function(e){function t(){e.apply(this,arguments),this.value=null,this.hasNext=!1,this.hasCompleted=!1}return i(t,e),t.prototype._subscribe=function(t){return this.hasError?(t.error(this.thrownError),o.Subscription.EMPTY):this.hasCompleted&&this.hasNext?(t.next(this.value),t.complete(),o.Subscription.EMPTY):e.prototype._subscribe.call(this,t)},t.prototype.next=function(e){this.hasCompleted||(this.value=e,this.hasNext=!0)},t.prototype.error=function(t){this.hasCompleted||e.prototype.error.call(this,t)},t.prototype.complete=function(){this.hasCompleted=!0,this.hasNext&&e.prototype.next.call(this,this.value),e.prototype.complete.call(this)},t}(r.Subject)},"5et3":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("8Z8y"),l=n("jBEF");t.take=function(e){return function(t){return 0===e?new l.EmptyObservable:t.lift(new s(e))}};var s=function(){function e(e){if(this.total=e,this.total<0)throw new o.ArgumentOutOfRangeError}return e.prototype.call=function(e,t){return t.subscribe(new a(e,this.total))},e}(),a=function(e){function t(t,n){e.call(this,t),this.total=n,this.count=0}return i(t,e),t.prototype._next=function(e){var t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))},t}(r.Subscriber)},"5hDm":function(e,t,n){var i=n("8UTl"),r=i.h;e.exports=function(e){function t(n){!function(e,n){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this);var i=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return i.handleKeyPress=i.handleKeyPress.bind(i),i}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.componentDidMount=function(){this.input.focus()},t.prototype.handleKeyPress=function(e){if(13===e.keyCode)return e.stopPropagation(),void e.preventDefault();this.props.filterQuery(e)},t.prototype.render=function(){var e=this;return r("div",{style:{display:"flex",width:"100%"}},r("input",{class:"uppy-ProviderBrowser-searchInput",type:"text",placeholder:"Search",onkeyup:this.handleKeyPress,onkeydown:this.handleKeyPress,onkeypress:this.handleKeyPress,value:this.props.filterInput,ref:function(t){e.input=t}}),r("button",{class:"uppy-ProviderBrowser-searchClose",type:"button",onclick:this.props.toggleSearch},r("svg",{class:"UppyIcon",viewBox:"0 0 19 19"},r("path",{d:"M17.318 17.232L9.94 9.854 9.586 9.5l-.354.354-7.378 7.378h.707l-.62-.62v.706L9.318 9.94l.354-.354-.354-.354L1.94 1.854v.707l.62-.62h-.706l7.378 7.378.354.354.354-.354 7.378-7.378h-.707l.622.62v-.706L9.854 9.232l-.354.354.354.354 7.378 7.378.708-.707-7.38-7.378v.708l7.38-7.38.353-.353-.353-.353-.622-.622-.353-.353-.354.352-7.378 7.38h.708L2.56 1.23 2.208.88l-.353.353-.622.62-.353.355.352.353 7.38 7.38v-.708l-7.38 7.38-.353.353.352.353.622.622.353.353.354-.353 7.38-7.38h-.708l7.38 7.38z"}))))},t}(i.Component)},"5j66":function(e,t,n){!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"},n={"\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,n){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 n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})}(n("PJh5"))},"5nj5":function(e,t,n){"use strict";var i=n("LhE+");t._if=i.IfObservable.create},"5pRa":function(e,t,n){"use strict";var i=n("CGGv"),r=n("tyXZ");t.timestamp=function(e){return void 0===e&&(e=i.async),r.timestamp(e)(this)}},"5u+w":function(e,t,n){var i=n("8UTl").h;e.exports={folder:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",style:"width:16px;margin-right:3px",viewBox:"0 0 276.157 276.157"},i("path",{d:"M273.08 101.378c-3.3-4.65-8.86-7.32-15.254-7.32h-24.34V67.59c0-10.2-8.3-18.5-18.5-18.5h-85.322c-3.63 0-9.295-2.875-11.436-5.805l-6.386-8.735c-4.982-6.814-15.104-11.954-23.546-11.954H58.73c-9.292 0-18.638 6.608-21.737 15.372l-2.033 5.752c-.958 2.71-4.72 5.37-7.596 5.37H18.5C8.3 49.09 0 57.39 0 67.59v167.07c0 .886.16 1.73.443 2.52.152 3.306 1.18 6.424 3.053 9.064 3.3 4.652 8.86 7.32 15.255 7.32h188.487c11.395 0 23.27-8.425 27.035-19.18l40.677-116.188c2.11-6.035 1.43-12.164-1.87-16.816zM18.5 64.088h8.864c9.295 0 18.64-6.607 21.738-15.37l2.032-5.75c.96-2.712 4.722-5.373 7.597-5.373h29.565c3.63 0 9.295 2.876 11.437 5.806l6.386 8.735c4.982 6.815 15.104 11.954 23.546 11.954h85.322c1.898 0 3.5 1.602 3.5 3.5v26.47H69.34c-11.395 0-23.27 8.423-27.035 19.178L15 191.23V67.59c0-1.898 1.603-3.5 3.5-3.5zm242.29 49.15l-40.676 116.188c-1.674 4.78-7.812 9.135-12.877 9.135H18.75c-1.447 0-2.576-.372-3.02-.997-.442-.625-.422-1.814.057-3.18l40.677-116.19c1.674-4.78 7.812-9.134 12.877-9.134h188.487c1.448 0 2.577.372 3.02.997.443.625.423 1.814-.056 3.18z"}))},file:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"11",height:"14.5",viewBox:"0 0 44 58"},i("path",{d:"M27.437.517a1 1 0 0 0-.094.03H4.25C2.037.548.217 2.368.217 4.58v48.405c0 2.212 1.82 4.03 4.03 4.03H39.03c2.21 0 4.03-1.818 4.03-4.03V15.61a1 1 0 0 0-.03-.28 1 1 0 0 0 0-.093 1 1 0 0 0-.03-.032 1 1 0 0 0 0-.03 1 1 0 0 0-.032-.063 1 1 0 0 0-.03-.063 1 1 0 0 0-.032 0 1 1 0 0 0-.03-.063 1 1 0 0 0-.032-.03 1 1 0 0 0-.03-.063 1 1 0 0 0-.063-.062l-14.593-14a1 1 0 0 0-.062-.062A1 1 0 0 0 28 .708a1 1 0 0 0-.374-.157 1 1 0 0 0-.156 0 1 1 0 0 0-.03-.03l-.003-.003zM4.25 2.547h22.218v9.97c0 2.21 1.82 4.03 4.03 4.03h10.564v36.438a2.02 2.02 0 0 1-2.032 2.032H4.25c-1.13 0-2.032-.9-2.032-2.032V4.58c0-1.13.902-2.032 2.03-2.032zm24.218 1.345l10.375 9.937.75.718H30.5c-1.13 0-2.032-.9-2.032-2.03V3.89z"}))}}},"5vPg":function(e,t,n){!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"},n={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};function i(e,t,n,i){var r="";if(t)switch(n){case"s":r="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926";break;case"ss":r="%d \u0938\u0947\u0915\u0902\u0926";break;case"m":r="\u090f\u0915 \u092e\u093f\u0928\u093f\u091f";break;case"mm":r="%d \u092e\u093f\u0928\u093f\u091f\u0947";break;case"h":r="\u090f\u0915 \u0924\u093e\u0938";break;case"hh":r="%d \u0924\u093e\u0938";break;case"d":r="\u090f\u0915 \u0926\u093f\u0935\u0938";break;case"dd":r="%d \u0926\u093f\u0935\u0938";break;case"M":r="\u090f\u0915 \u092e\u0939\u093f\u0928\u093e";break;case"MM":r="%d \u092e\u0939\u093f\u0928\u0947";break;case"y":r="\u090f\u0915 \u0935\u0930\u094d\u0937";break;case"yy":r="%d \u0935\u0930\u094d\u0937\u0947"}else switch(n){case"s":r="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"ss":r="%d \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"m":r="\u090f\u0915\u093e \u092e\u093f\u0928\u093f\u091f\u093e";break;case"mm":r="%d \u092e\u093f\u0928\u093f\u091f\u093e\u0902";break;case"h":r="\u090f\u0915\u093e \u0924\u093e\u0938\u093e";break;case"hh":r="%d \u0924\u093e\u0938\u093e\u0902";break;case"d":r="\u090f\u0915\u093e \u0926\u093f\u0935\u0938\u093e";break;case"dd":r="%d \u0926\u093f\u0935\u0938\u093e\u0902";break;case"M":r="\u090f\u0915\u093e \u092e\u0939\u093f\u0928\u094d\u092f\u093e";break;case"MM":r="%d \u092e\u0939\u093f\u0928\u094d\u092f\u093e\u0902";break;case"y":r="\u090f\u0915\u093e \u0935\u0930\u094d\u0937\u093e";break;case"yy":r="%d \u0935\u0930\u094d\u0937\u093e\u0902"}return r.replace(/%d/i,e)}e.defineLocale("mr",{months:"\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940_\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940_\u092e\u093e\u0930\u094d\u091a_\u090f\u092a\u094d\u0930\u093f\u0932_\u092e\u0947_\u091c\u0942\u0928_\u091c\u0941\u0932\u0948_\u0911\u0917\u0938\u094d\u091f_\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930_\u0911\u0915\u094d\u091f\u094b\u092c\u0930_\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930_\u0921\u093f\u0938\u0947\u0902\u092c\u0930".split("_"),monthsShort:"\u091c\u093e\u0928\u0947._\u092b\u0947\u092c\u094d\u0930\u0941._\u092e\u093e\u0930\u094d\u091a._\u090f\u092a\u094d\u0930\u093f._\u092e\u0947._\u091c\u0942\u0928._\u091c\u0941\u0932\u0948._\u0911\u0917._\u0938\u092a\u094d\u091f\u0947\u0902._\u0911\u0915\u094d\u091f\u094b._\u0928\u094b\u0935\u094d\u0939\u0947\u0902._\u0921\u093f\u0938\u0947\u0902.".split("_"),monthsParseExact:!0,weekdays:"\u0930\u0935\u093f\u0935\u093e\u0930_\u0938\u094b\u092e\u0935\u093e\u0930_\u092e\u0902\u0917\u0933\u0935\u093e\u0930_\u092c\u0941\u0927\u0935\u093e\u0930_\u0917\u0941\u0930\u0942\u0935\u093e\u0930_\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930_\u0936\u0928\u093f\u0935\u093e\u0930".split("_"),weekdaysShort:"\u0930\u0935\u093f_\u0938\u094b\u092e_\u092e\u0902\u0917\u0933_\u092c\u0941\u0927_\u0917\u0941\u0930\u0942_\u0936\u0941\u0915\u094d\u0930_\u0936\u0928\u093f".split("_"),weekdaysMin:"\u0930_\u0938\u094b_\u092e\u0902_\u092c\u0941_\u0917\u0941_\u0936\u0941_\u0936".split("_"),longDateFormat:{LT:"A h:mm \u0935\u093e\u091c\u0924\u093e",LTS:"A h:mm:ss \u0935\u093e\u091c\u0924\u093e",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e",LLLL:"dddd, D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0909\u0926\u094d\u092f\u093e] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u093e\u0932] LT",lastWeek:"[\u092e\u093e\u0917\u0940\u0932] dddd, LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u0927\u094d\u092f\u0947",past:"%s\u092a\u0942\u0930\u094d\u0935\u0940",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/\u0930\u093e\u0924\u094d\u0930\u0940|\u0938\u0915\u093e\u0933\u0940|\u0926\u0941\u092a\u093e\u0930\u0940|\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),"\u0930\u093e\u0924\u094d\u0930\u0940"===t?e<4?e:e+12:"\u0938\u0915\u093e\u0933\u0940"===t?e:"\u0926\u0941\u092a\u093e\u0930\u0940"===t?e>=10?e:e+12:"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},"67ZB":function(e,t,n){var i=n("OkQ7");e.exports=function(){function e(t){var n=this;!function(t,n){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this),this.queued=[],this.isOpen=!1,this.socket=new WebSocket(t.target),this.emitter=i(),this.socket.onopen=function(e){for(n.isOpen=!0;n.queued.length>0&&n.isOpen;){var t=n.queued[0];n.send(t.action,t.payload),n.queued=n.queued.slice(1)}},this.socket.onclose=function(e){n.isOpen=!1},this._handleMessage=this._handleMessage.bind(this),this.socket.onmessage=this._handleMessage,this.close=this.close.bind(this),this.emit=this.emit.bind(this),this.on=this.on.bind(this),this.once=this.once.bind(this),this.send=this.send.bind(this)}return e.prototype.close=function(){return this.socket.close()},e.prototype.send=function(e,t){this.isOpen?this.socket.send(JSON.stringify({action:e,payload:t})):this.queued.push({action:e,payload:t})},e.prototype.on=function(e,t){console.log(e),this.emitter.on(e,t)},e.prototype.emit=function(e,t){console.log(e),this.emitter.emit(e,t)},e.prototype.once=function(e,t){this.emitter.once(e,t)},e.prototype._handleMessage=function(e){try{var t=JSON.parse(e.data);console.log(t),this.emit(t.action,t.payload)}catch(e){console.log(e)}},e}()},"69uX":function(e,t,n){"use strict";var i=n("Lndg");t.distinct=function(e,t){return i.distinct(e,t)(this)}},"6BaH":function(e,t,n){"use strict";var i=n("sIYO");t.multicast=function(e,t){return function(n){var o;if(o="function"==typeof e?e:function(){return e},"function"==typeof t)return n.lift(new r(o,t));var l=Object.create(n,i.connectableObservableDescriptor);return l.source=n,l.subjectFactory=o,l}};var r=function(){function e(e,t){this.subjectFactory=e,this.selector=t}return e.prototype.call=function(e,t){var n=this.selector,i=this.subjectFactory(),r=n(i).subscribe(e);return r.add(t.subscribe(i)),r},e}();t.MulticastOperator=r},"6Gc1":function(e,t,n){"use strict";var i,r=n("wwcT"),o=n("93wD"),l=((i={})[r.LoggerLevelEnum.DEBUG_LEVEL]="debug",i[r.LoggerLevelEnum.INFO_LEVEL]="info",i[r.LoggerLevelEnum.NOTICE_LEVEL]="log",i[r.LoggerLevelEnum.WARN_LEVEL]="warn",i[r.LoggerLevelEnum.ERROR_LEVEL]="error",i);t.Logger=function(){function e(e){this.loggerConfig=e}return e.prototype.setLoggedClass=function(e){return this.loggedClass=e,this},e.prototype.debug=function(){for(var e=[],t=0;t=r.LoggerLevelEnum.DEBUG_LEVEL},e.prototype.isInfoEnabled=function(){return this.loggerConfig.logLevel>=r.LoggerLevelEnum.INFO_LEVEL},e.prototype.isLogEnabled=function(){return this.loggerConfig.logLevel>=r.LoggerLevelEnum.INFO_LEVEL},e.prototype.isWarnEnabled=function(){return this.loggerConfig.logLevel>=r.LoggerLevelEnum.WARN_LEVEL},e.prototype.isErrorEnabled=function(){return this.loggerConfig.logLevel>=r.LoggerLevelEnum.ERROR_LEVEL},e.prototype.write=function(e,t){for(var n=[],i=2;ithis.loggerConfig.logLevel)){var r=this.getLoggedClassName();if(!o.Utils.isPresent(r)||!o.Utils.isPresent(t)||new RegExp(t).test(r)){var s=console[l[e]];n.forEach(function(e){if(o.Utils.isArray(e))if(e.length&&o.Utils.isFunction(e[0])){var t=e[0]({write:function(){for(var e=[],t=0;t=100?100:null])},week:{dow:1,doy:7}})}(n("PJh5"))},"6gFN":function(e,t,n){"use strict";var i=n("rCTf"),r=n("9oiU");i.Observable.prototype.mapTo=r.mapTo},"6hPP":function(e,t,n){"use strict";var i=n("rCTf"),r=n("t2Bb");i.Observable.prototype.sampleTime=r.sampleTime},"6mly":function(e,t){var n="undefined"!=typeof n?n:"undefined"!=typeof WebKitBlobBuilder?WebKitBlobBuilder:"undefined"!=typeof MSBlobBuilder?MSBlobBuilder:"undefined"!=typeof MozBlobBuilder&&MozBlobBuilder,i=function(){try{return 2===new Blob(["hi"]).size}catch(e){return!1}}(),r=i&&function(){try{return 2===new Blob([new Uint8Array([1,2])]).size}catch(e){return!1}}(),o=n&&n.prototype.append&&n.prototype.getBlob;function l(e){return e.map(function(e){if(e.buffer instanceof ArrayBuffer){var t=e.buffer;if(e.byteLength!==t.byteLength){var n=new Uint8Array(e.byteLength);n.set(new Uint8Array(t,e.byteOffset,e.byteLength)),t=n.buffer}return t}return e})}function s(e,t){t=t||{};var i=new n;return l(e).forEach(function(e){i.append(e)}),t.type?i.getBlob(t.type):i.getBlob()}function a(e,t){return new Blob(l(e),t||{})}"undefined"!=typeof Blob&&(s.prototype=Blob.prototype,a.prototype=Blob.prototype),e.exports=i?r?Blob:a:o?s:void 0},"6s76":function(e,t,n){"use strict";var i=n("rCTf"),r=n("cJSH");i.Observable.prototype.groupBy=r.groupBy},"77/N":function(e,t,n){"use strict";var i=n("rCTf"),r=n("l19J");i.Observable.prototype.takeLast=r.takeLast},"79nZ":function(e,t,n){var i=n("R3sX"),r=n("8UTl").h,o=i(function(e){return r("span",null,e.totalProgress||0,"%\u30fb",e.complete," / ",e.inProgress,"\u30fb",e.totalUploadedSize," / ",e.totalSize,"\u30fb\u2191 ",e.totalSpeed,"/s\u30fb",e.totalETA)},500,{leading:!0,trailing:!0});e.exports=function(e){var t=function(e,t){if(e.isAllErrored)return"error";if(e.isAllComplete)return"complete";for(var n="waiting",i=Object.keys(t),r=0;r0||"complete"===t&&e.hideAfterFinish},r("div",{class:"uppy-StatusBar-progress\n "+(i?"is-"+i:""),style:{width:("number"==typeof n?n:100)+"%"},role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n}),o,r("div",{class:"uppy-StatusBar-actions"},e.newFiles&&!e.hideUploadButton?r(l,e):null,e.error?r(s,e):null))};var l=function(e){return r("button",{type:"button",class:"uppy-StatusBar-actionBtn uppy-StatusBar-actionBtn--upload","aria-label":e.i18n("uploadXFiles",{smart_count:e.newFiles}),onclick:e.startUpload},e.i18n(e.inProgress?"uploadXNewFiles":"uploadXFiles",{smart_count:e.newFiles}))},s=function(e){return r("button",{type:"button",class:"uppy-StatusBar-actionBtn uppy-StatusBar-actionBtn--retry","aria-label":e.i18n("retryUpload"),onclick:e.retryAll},e.i18n("retry"))},a=function(e){var t=Math.round(100*e.value);return r("div",{class:"uppy-StatusBar-content"},"determinate"===e.mode?t+"%\u30fb":"",e.message)},u=function(e){var t=e.i18n;return r("div",{class:"uppy-StatusBar-content"},e.isUploadStarted&&!e.isAllComplete?e.isAllPaused?r("div",{title:"Paused"},r(p,e)," ",t("paused"),"\u30fb",e.totalProgress,"%"):r("div",{title:"Uploading"},r(p,e)," ",t("uploading")," ",r(o,e)):null)},c=function(e){var t=e.totalProgress,n=e.i18n;return r("div",{class:"uppy-StatusBar-content",role:"status"},r("span",{title:"Complete"},r("svg",{"aria-hidden":"true",class:"uppy-StatusBar-statusIndicator UppyIcon",width:"18",height:"17",viewBox:"0 0 23 17"},r("path",{d:"M8.944 17L0 7.865l2.555-2.61 6.39 6.525L20.41 0 23 2.645z"})),n("uploadComplete"),"\u30fb",t,"%"))},d=function(e){var t=e.error,n=e.i18n;return r("div",{class:"uppy-StatusBar-content",role:"alert"},r("strong",null,n("uploadFailed"),".")," ",r("span",null,n("pleasePressRetry")),r("span",{class:"uppy-StatusBar-details","aria-label":t,"data-microtip-position":"top","data-microtip-size":"large",role:"tooltip"},"?"))},p=function(e){var t=e.resumableUploads,n=e.isAllPaused,i=(0,e.i18n)(t?n?"resumeUpload":"pauseUpload":"cancelUpload");return r("button",{title:i,class:"uppy-StatusBar-statusIndicator",type:"button",onclick:function(){return function(e){if(!e.isAllComplete)return e.resumableUploads?e.isAllPaused?e.resumeAll():e.pauseAll():e.cancelAll()}(e)}},t?n?r("svg",{"aria-hidden":"true",class:"UppyIcon",width:"15",height:"17",viewBox:"0 0 11 13"},r("path",{d:"M1.26 12.534a.67.67 0 0 1-.674.012.67.67 0 0 1-.336-.583v-11C.25.724.38.5.586.382a.658.658 0 0 1 .673.012l9.165 5.5a.66.66 0 0 1 .325.57.66.66 0 0 1-.325.573l-9.166 5.5z"})):r("svg",{"aria-hidden":"true",class:"UppyIcon",width:"16",height:"17",viewBox:"0 0 12 13"},r("path",{d:"M4.888.81v11.38c0 .446-.324.81-.722.81H2.722C2.324 13 2 12.636 2 12.19V.81c0-.446.324-.81.722-.81h1.444c.398 0 .722.364.722.81zM9.888.81v11.38c0 .446-.324.81-.722.81H7.722C7.324 13 7 12.636 7 12.19V.81c0-.446.324-.81.722-.81h1.444c.398 0 .722.364.722.81z"})):r("svg",{"aria-hidden":"true",class:"UppyIcon",width:"16px",height:"16px",viewBox:"0 0 19 19"},r("path",{d:"M17.318 17.232L9.94 9.854 9.586 9.5l-.354.354-7.378 7.378h.707l-.62-.62v.706L9.318 9.94l.354-.354-.354-.354L1.94 1.854v.707l.62-.62h-.706l7.378 7.378.354.354.354-.354 7.378-7.378h-.707l.622.62v-.706L9.854 9.232l-.354.354.354.354 7.378 7.378.708-.707-7.38-7.378v.708l7.38-7.38.353-.353-.353-.353-.622-.622-.353-.353-.354.352-7.378 7.38h.708L2.56 1.23 2.208.88l-.353.353-.622.62-.353.355.352.353 7.38 7.38v-.708l-7.38 7.38-.353.353.352.353.622.622.353.353.354-.353 7.38-7.38h-.708l7.38 7.38z"})))}},"7FaQ":function(e,t,n){"use strict";var i=n("rCTf"),r=n("Llwz");i.Observable.prototype.window=r.window},"7Gky":function(e,t,n){"use strict";t.not=function(e,t){function n(){return!n.pred.apply(n.thisArg,arguments)}return n.pred=e,n.thisArg=t,n}},"7LV+":function(e,t,n){!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("_"),n="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\u015bnia_pa\u017adziernika_listopada_grudnia".split("_");function i(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function r(e,t,n){var r=e+" ";switch(n){case"ss":return r+(i(e)?"sekundy":"sekund");case"m":return t?"minuta":"minut\u0119";case"mm":return r+(i(e)?"minuty":"minut");case"h":return t?"godzina":"godzin\u0119";case"hh":return r+(i(e)?"godziny":"godzin");case"MM":return r+(i(e)?"miesi\u0105ce":"miesi\u0119cy");case"yy":return r+(i(e)?"lata":"lat")}}e.defineLocale("pl",{months:function(e,i){return e?""===i?"("+n[e.month()]+"|"+t[e.month()]+")":/D MMMM/.test(i)?n[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}})}(n("PJh5"))},"7MHZ":function(e,t,n){!function(e){"use strict";var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[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:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_mi\xe9rcoles_jueves_viernes_s\xe1bado".split("_"),weekdaysShort:"dom._lun._mar._mi\xe9._jue._vie._s\xe1b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_s\xe1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[ma\xf1ana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un d\xeda",dd:"%d d\xedas",M:"un mes",MM:"%d meses",y:"un a\xf1o",yy:"%d a\xf1os"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}(n("PJh5"))},"7MSh":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("+3eL"),l=n("WhVc");t.distinctUntilChanged=function(e,t){return function(n){return n.lift(new s(e,t))}};var s=function(){function e(e,t){this.compare=e,this.keySelector=t}return e.prototype.call=function(e,t){return t.subscribe(new a(e,this.compare,this.keySelector))},e}(),a=function(e){function t(t,n,i){e.call(this,t),this.keySelector=i,this.hasKey=!1,"function"==typeof n&&(this.compare=n)}return i(t,e),t.prototype.compare=function(e,t){return e===t},t.prototype._next=function(e){var t=e;if(this.keySelector&&(t=o.tryCatch(this.keySelector)(e))===l.errorObject)return this.destination.error(l.errorObject.e);var n=!1;if(this.hasKey){if((n=o.tryCatch(this.compare)(this.key,t))===l.errorObject)return this.destination.error(l.errorObject.e)}else this.hasKey=!0;!1===Boolean(n)&&(this.key=t,this.destination.next(e))},t}(r.Subscriber)},"7OnE":function(e,t,n){!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"},n={"\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,n){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 n[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}})}(n("PJh5"))},"7Q8x":function(e,t,n){!function(e){"use strict";e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?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}})}(n("PJh5"))},"7YkW":function(e,t,n){var i=n("YeCl"),r=n("Cskv"),o=n("aQOO");function l(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new i;++t-1&&this.options.ns.splice(t,1)},t.prototype.getResource=function(e,t,n){var i=(arguments.length<=3||void 0===arguments[3]?{}:arguments[3]).keySeparator||this.options.keySeparator;void 0===i&&(i=".");var r=[e,t];return n&&"string"!=typeof n&&(r=r.concat(n)),n&&"string"==typeof n&&(r=r.concat(i?n.split(i):n)),e.indexOf(".")>-1&&(r=e.split(".")),l.getPath(this.data,r)},t.prototype.addResource=function(e,t,n,i){var r=arguments.length<=4||void 0===arguments[4]?{silent:!1}:arguments[4],o=this.options.keySeparator;void 0===o&&(o=".");var s=[e,t];n&&(s=s.concat(o?n.split(o):n)),e.indexOf(".")>-1&&(i=t,t=(s=e.split("."))[1]),this.addNamespaces(t),l.setPath(this.data,s,i),r.silent||this.emit("added",e,t,n,i)},t.prototype.addResources=function(e,t,n){for(var i in n)"string"==typeof n[i]&&this.addResource(e,t,i,n[i],{silent:!0});this.emit("added",e,t,n)},t.prototype.addResourceBundle=function(e,t,n,i,o){var s=[e,t];e.indexOf(".")>-1&&(i=n,n=t,t=(s=e.split("."))[1]),this.addNamespaces(t);var a=l.getPath(this.data,s)||{};i?l.deepExtend(a,n,o):a=r({},a,n),l.setPath(this.data,s,a),this.emit("added",e,t,n)},t.prototype.removeResourceBundle=function(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)},t.prototype.hasResourceBundle=function(e,t){return void 0!==this.getResource(e,t)},t.prototype.getResourceBundle=function(e,t){return t||(t=this.options.defaultNS),"v1"===this.options.compatibilityAPI?r({},this.getResource(e,t)):this.getResource(e,t)},t.prototype.toJSON=function(){return this.data},t}(o.default);t.default=s},"7rB9":function(e,t,n){"use strict";var i=n("t2qv");t.forkJoin=i.ForkJoinObservable.create},"8++/":function(e,t){e.exports=function(e){return e!=e}},"8/gC":function(e,t,n){"use strict";var i=n("SoJr");t.zip=i.zipStatic},"83T1":function(e,t,n){"use strict";var i=n("fI0c");t.every=function(e,t){return i.every(e,t)(this)}},"86tT":function(e,t,n){var i=n("gHOb"),r=n("UnEC");e.exports=function(e){return r(e)&&"[object Map]"==i(e)}},8729:function(e,t,n){function i(e){var n;function i(){if(i.enabled){var e=i,r=+new Date;e.diff=r-(n||r),e.prev=n,e.curr=r,n=r;for(var o=new Array(arguments.length),l=0;l0&&void 0!==arguments[0]?arguments[0]:location.href;return fetch(this.hostname+"/"+this.id+"/logout?redirect="+e,{method:"get",credentials:"include",headers:{Accept:"application/json","Content-Type":"application/json"}})},r(e,[{key:"hostname",get:function(){var e=this.opts.host;return(this.uppy.state.uppyServer||{})[e]||e}}]),e}()},"8FDs":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("+3eL"),l=n("WhVc"),s=n("wAkD"),a=n("CURp");t.windowWhen=function(e){return function(t){return t.lift(new u(e))}};var u=function(){function e(e){this.closingSelector=e}return e.prototype.call=function(e,t){return t.subscribe(new c(e,this.closingSelector))},e}(),c=function(e){function t(t,n){e.call(this,t),this.destination=t,this.closingSelector=n,this.openWindow()}return i(t,e),t.prototype.notifyNext=function(e,t,n,i,r){this.openWindow(r)},t.prototype.notifyError=function(e,t){this._error(e)},t.prototype.notifyComplete=function(e){this.openWindow(e)},t.prototype._next=function(e){this.window.next(e)},t.prototype._error=function(e){this.window.error(e),this.destination.error(e),this.unsubscribeClosingNotification()},t.prototype._complete=function(){this.window.complete(),this.destination.complete(),this.unsubscribeClosingNotification()},t.prototype.unsubscribeClosingNotification=function(){this.closingNotification&&this.closingNotification.unsubscribe()},t.prototype.openWindow=function(e){void 0===e&&(e=null),e&&(this.remove(e),e.unsubscribe());var t=this.window;t&&t.complete();var n=this.window=new r.Subject;this.destination.next(n);var i=o.tryCatch(this.closingSelector)();if(i===l.errorObject){var s=l.errorObject.e;this.destination.error(s),this.window.error(s)}else this.add(this.closingNotification=a.subscribeToResult(this,i))},t}(s.OuterSubscriber)},"8GmM":function(e,t,n){"use strict";var i=n("rCTf");t.Notification=function(){function e(e,t,n){this.kind=e,this.value=t,this.error=n,this.hasValue="N"===e}return e.prototype.observe=function(e){switch(this.kind){case"N":return e.next&&e.next(this.value);case"E":return e.error&&e.error(this.error);case"C":return e.complete&&e.complete()}},e.prototype.do=function(e,t,n){switch(this.kind){case"N":return e&&e(this.value);case"E":return t&&t(this.error);case"C":return n&&n()}},e.prototype.accept=function(e,t,n){return e&&"function"==typeof e.next?this.observe(e):this.do(e,t,n)},e.prototype.toObservable=function(){switch(this.kind){case"N":return i.Observable.of(this.value);case"E":return i.Observable.throw(this.error);case"C":return i.Observable.empty()}throw new Error("unexpected notification kind value")},e.createNext=function(t){return"undefined"!=typeof t?new e("N",t):e.undefinedValueNotification},e.createError=function(t){return new e("E",void 0,t)},e.createComplete=function(){return e.completeNotification},e.completeNotification=new e("C"),e.undefinedValueNotification=new e("N",void 0),e}()},"8MUz":function(e,t,n){"use strict";var i=n("mK7q"),r=n("lU4I");t.concatStatic=r.concat,t.concat=function(){for(var e=[],t=0;t2;)o.push(arguments[u]);for(t&&null!=t.children&&(o.length||o.push(t.children),delete t.children);o.length;)if((s=o.pop())&&void 0!==s.pop)for(u=s.length;u--;)o.push(s[u]);else"boolean"==typeof s&&(s=null),(a="function"!=typeof e)&&(null==s?s="":"number"==typeof s?s=String(s):"string"!=typeof s&&(a=!1)),a&&n?c[c.length-1]+=s:c===l?c=[s]:c.push(s),n=a;var d=new i;return d.nodeName=e,d.children=c,d.attributes=null==t?void 0:t,d.key=null==t?void 0:t.key,void 0!==r.vnode&&r.vnode(d),d}function a(e,t){for(var n in t)e[n]=t[n];return e}var u="function"==typeof Promise?Promise.resolve().then.bind(Promise.resolve()):setTimeout;function c(e,t){return s(e.nodeName,a(a({},e.attributes),t),arguments.length>2?[].slice.call(arguments,2):e.children)}var d=/acit|ex(?:s|g|n|p|$)|rph|ows|mnc|ntw|ine[ch]|zoo|^ord/i,p=[];function h(e){!e._dirty&&(e._dirty=!0)&&1==p.push(e)&&(r.debounceRendering||u)(f)}function f(){var e,t=p;for(p=[];e=t.pop();)e._dirty&&P(e)}function m(e,t){return e.normalizedNodeName===t||e.nodeName.toLowerCase()===t.toLowerCase()}function g(e){var t=a({},e.attributes);t.children=e.children;var n=e.nodeName.defaultProps;if(void 0!==n)for(var i in n)void 0===t[i]&&(t[i]=n[i]);return t}function v(e){var t=e.parentNode;t&&t.removeChild(e)}function y(e,t,n,i,r){if("className"===t&&(t="class"),"key"===t);else if("ref"===t)n&&n(null),i&&i(e);else if("class"!==t||r)if("style"===t){if(i&&"string"!=typeof i&&"string"!=typeof n||(e.style.cssText=i||""),i&&"object"==typeof i){if("string"!=typeof n)for(var o in n)o in i||(e.style[o]="");for(var o in i)e.style[o]="number"==typeof i[o]&&!1===d.test(o)?i[o]+"px":i[o]}}else if("dangerouslySetInnerHTML"===t)i&&(e.innerHTML=i.__html||"");else if("o"==t[0]&&"n"==t[1]){var l=t!==(t=t.replace(/Capture$/,""));t=t.toLowerCase().substring(2),i?n||e.addEventListener(t,_,l):e.removeEventListener(t,_,l),(e._listeners||(e._listeners={}))[t]=i}else if("list"!==t&&"type"!==t&&!r&&t in e){try{e[t]=null==i?"":i}catch(e){}null!=i&&!1!==i||"spellcheck"==t||e.removeAttribute(t)}else{var s=r&&t!==(t=t.replace(/^xlink:?/,""));null==i||!1===i?s?e.removeAttributeNS("http://www.w3.org/1999/xlink",t.toLowerCase()):e.removeAttribute(t):"function"!=typeof i&&(s?e.setAttributeNS("http://www.w3.org/1999/xlink",t.toLowerCase(),i):e.setAttribute(t,i))}else e.className=i||""}function _(e){return this._listeners[e.type](r.event&&r.event(e)||e)}var b=[],w=0,x=!1,M=!1;function T(){for(var e;e=b.pop();)r.afterMount&&r.afterMount(e),e.componentDidMount&&e.componentDidMount()}function L(e,t,n,i,r,o){w++||(x=null!=r&&void 0!==r.ownerSVGElement,M=null!=e&&!("__preactattr_"in e));var l=function e(t,n,i,r,o){var l=t,s=x;if(null!=n&&"boolean"!=typeof n||(n=""),"string"==typeof n||"number"==typeof n)return t&&void 0!==t.splitText&&t.parentNode&&(!t._component||o)?t.nodeValue!=n&&(t.nodeValue=n):(l=document.createTextNode(n),t&&(t.parentNode&&t.parentNode.replaceChild(l,t),k(t,!0))),l.__preactattr_=!0,l;var a,u,c=n.nodeName;if("function"==typeof c)return function(e,t,n,i){for(var r=e&&e._component,o=r,l=e,s=r&&e._componentConstructor===t.nodeName,a=s,u=g(t);r&&!a&&(r=r._parentComponent);)a=r.constructor===t.nodeName;return r&&a&&(!i||r._component)?(D(r,u,3,n,i),e=r.base):(o&&!s&&(I(o),e=l=null),r=E(t.nodeName,u,n),e&&!r.nextBase&&(r.nextBase=e,l=null),D(r,u,1,n,i),e=r.base,l&&e!==l&&(l._component=null,k(l,!1))),e}(t,n,i,r);if(x="svg"===c||"foreignObject"!==c&&x,c=String(c),(!t||!m(t,c))&&(a=c,(u=x?document.createElementNS("http://www.w3.org/2000/svg",a):document.createElement(a)).normalizedNodeName=a,l=u,t)){for(;t.firstChild;)l.appendChild(t.firstChild);t.parentNode&&t.parentNode.replaceChild(l,t),k(t,!0)}var d=l.firstChild,p=l.__preactattr_,h=n.children;if(null==p){p=l.__preactattr_={};for(var f=l.attributes,_=f.length;_--;)p[f[_].name]=f[_].value}return!M&&h&&1===h.length&&"string"==typeof h[0]&&null!=d&&void 0!==d.splitText&&null==d.nextSibling?d.nodeValue!=h[0]&&(d.nodeValue=h[0]):(h&&h.length||null!=d)&&function(t,n,i,r,o){var l,s,a,u,c,d,p,h,f=t.childNodes,g=[],y={},_=0,b=0,w=f.length,x=0,M=n?n.length:0;if(0!==w)for(var T=0;T>?>?=?|==?|&[&=]?|\|[|=]?|\*=?|\/=?|%=?|\^=?|[?:~])/m,lookbehind:!0}}),Prism.languages.insertBefore("java","function",{annotation:{alias:"punctuation",pattern:/(^|[^.])@\w+/,lookbehind:!0}}),Prism.languages.insertBefore("java","class-name",{generics:{pattern:/<\s*\w+(?:\.\w+)?(?:\s*,\s*\w+(?:\.\w+)?)*>/i,alias:"function",inside:{keyword:Prism.languages.java.keyword,punctuation:/[<>(),.:]/}}})},"8gK5":function(e,t){e.exports=function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}},"8hgl":function(e,t,n){"use strict";var i=n("7MSh");t.distinctUntilChanged=function(e,t){return i.distinctUntilChanged(e,t)(this)}},"8oH5":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n("WT6e"),r=n("4ukJ"),o=n("L0g0"),l=n("Mk9J"),s=n("wC3Y"),a=n("OcWW");t.TranslateI18Next=function(){function e(e){this.translateI18NextLanguagesSupport=e,this.mapping={}}return e.prototype.init=function(t){var n=this,i=(t=t||{}).fallbackLng||"en",r=o.LanguageDetectorAdapter.toBrowserLanguageDetector(t.browserLanguageDetector?t.browserLanguageDetector:{detect:function(){return n.translateI18NextLanguagesSupport.getSupportedLanguage(t.supportedLanguages)}});e.logger.debug(function(e){e.write("[$TranslateI18Next] The fallback language is",i,". The current language has been detected as",(new r).detect(),'. The default language detector is looking at <@Inject(LOCALE_ID) locale: OpaqueToken> where ','. You should provide your current locale for all services using <@NgModule({providers: [{provide: LOCALE_ID, useValue: "en-AU"}]})>','. See also "supportedLanguages" optional parameter when is called')}),this.mapping=t.mapping||this.mapping;var l=(t.defaultUse||[a,r]).concat(t.use||[]);return this.i18nextPromise=new Promise(function(n,r){l.forEach(function(e){s.use(e)}),s.init(Object.assign({},t,{fallbackLng:i,nsSeparator:!1,keySeparator:!1}),function(t){t?(e.logger.error(t),r(t)):(e.logger.debug("[$TranslateI18Next] The translations has been loaded for the current language",s.language),n(null))})})},e.prototype.translate=function(e,t){return e&&(e=this.mapping[e]||e),(t=t||{}).interpolation=t.interpolation||{},t.interpolation.prefix="{",t.interpolation.suffix="}",s.t(e,t)},e.prototype.changeLanguage=function(e,t){s.changeLanguage(e,t)},e.logger=r.LoggerFactory.makeLogger(l.TranslateI18NextLanguagesSupport),e.decorators=[{type:i.Injectable}],e}()},"8szd":function(e,t,n){"use strict";var i=n("rCTf"),r=n("RyDc");i.Observable.prototype.skipUntil=r.skipUntil},"8v14":function(e,t,n){!function(e){"use strict";function t(e,t,n,i){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[n][0]:r[n][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}})}(n("PJh5"))},"93wD":function(e,t,n){"use strict";t.Utils=function(){function e(){}return e.isPresent=function(e){return void 0!==e&&null!==e},e.isString=function(e){return"string"==typeof e},e.isFunction=function(e){return"function"==typeof e},e.isArray=function(e){return Array.isArray(e)},e}()},"94IA":function(e,t,n){"use strict";var i=n("rCTf"),r=n("aec7");i.Observable.prototype.delay=r.delay},"94sX":function(e,t,n){var i=n("dCZQ");e.exports=function(){this.__data__=i?i(null):{},this.size=0}},"9Avi":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("cPwE");t.AsyncScheduler=function(e){function t(){e.apply(this,arguments),this.actions=[],this.active=!1,this.scheduled=void 0}return i(t,e),t.prototype.flush=function(e){var t=this.actions;if(this.active)t.push(e);else{var n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}},t}(r.Scheduler)},"9JPB":function(e,t,n){"use strict";var i=n("VOfZ"),r=n("2ER/");t.Map=i.root.Map||r.MapPolyfill},"9PGs":function(e,t,n){"use strict";var i=n("piny");t.toArray=function(){return i.toArray()(this)}},"9TuE":function(e,t,n){"use strict";var i=n("ZFQj");t.isEmpty=function(){return i.isEmpty()(this)}},"9UkZ":function(e,t,n){var i=n("aCM0"),r=n("vi0E"),o=n("UnEC"),l=Function.prototype,s=Object.prototype,a=l.toString,u=s.hasOwnProperty,c=a.call(Object);e.exports=function(e){if(!o(e)||"[object Object]"!=i(e))return!1;var t=r(e);if(null===t)return!0;var n=u.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&a.call(n)==c}},"9WjZ":function(e,t,n){"use strict";var i=n("rCTf"),r=n("+vPe");i.Observable.never=r.never},"9Xb6":function(e,t,n){var i=Object.assign||function(e){for(var t=1;t1)this.connection=null;else{var n=this.connection,i=e._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}else this.connection=null},t}(r.Subscriber)},"9eyw":function(e,t,n){"use strict";var i=n("YOd+");function r(e){return e?1===e.length?e[0]:function(t){return e.reduce(function(e,t){return t(e)},t)}:i.noop}t.pipe=function(){for(var e=[],t=0;t0);return t}function c(){var e=u(+new Date);return e!==i?(s=0,i=e):e+"."+u(s++)}for(;a0&&t.length>0;){var i=e.shift(),r=t.shift(),s=!1;n?(s=o.tryCatch(n)(i,r))===l.errorObject&&this.destination.error(l.errorObject.e):s=i===r,s||this.emit(!1)}},t.prototype.emit=function(e){var t=this.destination;t.next(e),t.complete()},t.prototype.nextB=function(e){this._oneComplete&&0===this._a.length?this.emit(!1):(this._b.push(e),this.checkValues())},t}(r.Subscriber);t.SequenceEqualSubscriber=a;var u=function(e){function t(t,n){e.call(this,t),this.parent=n}return i(t,e),t.prototype._next=function(e){this.parent.nextB(e)},t.prototype._error=function(e){this.parent.error(e)},t.prototype._complete=function(){this.parent._complete()},t}(r.Subscriber)},A7JX:function(e,t,n){"use strict";var i=n("ijov");t.combineLatest=function(){for(var e=[],t=0;t0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},t}(o.OuterSubscriber);t.MergeMapSubscriber=s},AQOC:function(e,t,n){"use strict";var i=n("qiws");t.distinctUntilKeyChanged=function(e,t){return i.distinctUntilKeyChanged(e,t)(this)}},ARv7:function(e,t,n){(function(i){function r(){var e;try{e=t.storage.debug}catch(e){}return!e&&"undefined"!=typeof i&&"env"in i&&(e=i.env.DEBUG),e}(t=e.exports=n("8729")).log=function(){return"object"==typeof console&&console.log&&Function.prototype.apply.call(console.log,console,arguments)},t.formatArgs=function(e){var n=this.useColors;if(e[0]=(n?"%c":"")+this.namespace+(n?" %c":" ")+e[0]+(n?"%c ":" ")+"+"+t.humanize(this.diff),n){var i="color: "+this.color;e.splice(1,0,i,"color: inherit");var r=0,o=0;e[0].replace(/%[a-zA-Z%]/g,function(e){"%%"!==e&&"%c"===e&&(o=++r)}),e.splice(o,0,i)}},t.save=function(e){try{null==e?t.storage.removeItem("debug"):t.storage.debug=e}catch(e){}},t.load=r,t.useColors=function(){return!("undefined"==typeof window||!window.process||"renderer"!==window.process.type)||("undefined"==typeof navigator||!navigator.userAgent||!navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&("undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:function(){try{return window.localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}},t.enable(r())}).call(t,n("W2nU"))},ASN6:function(e,t,n){"use strict";var i=n("TLKQ");t.onErrorResumeNext=function(){for(var e=[],t=0;t10&&n<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}})}(n("PJh5"))},Abu5:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("+3eL"),l=n("WhVc"),s=n("wAkD"),a=n("CURp");t.repeatWhen=function(e){return function(t){return t.lift(new u(e))}};var u=function(){function e(e){this.notifier=e}return e.prototype.call=function(e,t){return t.subscribe(new c(e,this.notifier,t))},e}(),c=function(e){function t(t,n,i){e.call(this,t),this.notifier=n,this.source=i,this.sourceIsBeingSubscribedTo=!0}return i(t,e),t.prototype.notifyNext=function(e,t,n,i,r){this.sourceIsBeingSubscribedTo=!0,this.source.subscribe(this)},t.prototype.notifyComplete=function(t){if(!1===this.sourceIsBeingSubscribedTo)return e.prototype.complete.call(this)},t.prototype.complete=function(){if(this.sourceIsBeingSubscribedTo=!1,!this.isStopped){if(this.retries||this.subscribeToRetries(),!this.retriesSubscription||this.retriesSubscription.closed)return e.prototype.complete.call(this);this._unsubscribeAndRecycle(),this.notifications.next()}},t.prototype._unsubscribe=function(){var e=this.notifications,t=this.retriesSubscription;e&&(e.unsubscribe(),this.notifications=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null},t.prototype._unsubscribeAndRecycle=function(){var t=this.notifications,n=this.retries,i=this.retriesSubscription;return this.notifications=null,this.retries=null,this.retriesSubscription=null,e.prototype._unsubscribeAndRecycle.call(this),this.notifications=t,this.retries=n,this.retriesSubscription=i,this},t.prototype.subscribeToRetries=function(){this.notifications=new r.Subject;var t=o.tryCatch(this.notifier)(this.notifications);if(t===l.errorObject)return e.prototype.complete.call(this);this.retries=t,this.retriesSubscription=a.subscribeToResult(this,t)},t}(s.OuterSubscriber)},"Ai/T":function(e,t){var n=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return n.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},Am8Y:function(e,t,n){"use strict";var i=n("sAZ4"),r=n("00YY");t.switchAll=function(){return i.switchMap(r.identity)}},AoDM:function(e,t,n){!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"})}(n("PJh5"))},B00U:function(e,t,n){"use strict";var i=n("Xajo"),r=n("ICpg"),o=n("SKH6"),l=n("+3eL"),s=n("WhVc"),a=n("GIjk");function u(e){return e.reduce(function(e,t){return e.concat(t instanceof a.UnsubscriptionError?t.errors:t)},[])}t.Subscription=function(){function e(e){this.closed=!1,this._parent=null,this._parents=null,this._subscriptions=null,e&&(this._unsubscribe=e)}var t;return e.prototype.unsubscribe=function(){var e,t=!1;if(!this.closed){var n=this._parent,c=this._parents,d=this._unsubscribe,p=this._subscriptions;this.closed=!0,this._parent=null,this._parents=null,this._subscriptions=null;for(var h=-1,f=c?c.length:0;n;)n.remove(this),n=++h1&&void 0!==arguments[1]?arguments[1]:{trim:!1};if(!e)throw new Error("A form is required by getFormData, was given form="+e);for(var n={},i=void 0,o=[],l={},s=0,a=e.elements.length;s2&&void 0!==arguments[2]?arguments[2]:{trim:!1};if(!e)throw new Error("A form is required by getFieldData, was given form="+e);if(!t&&"[object String]"!==a.call(t))throw new Error("A field name is required by getFieldData, was given fieldName="+t);var r=e.elements[t];if(!r||r.disabled)return null;if(!i[a.call(r)])return d(r,n.trim);for(var o=[],l=!0,s=0,u=r.length;s0?o:null}function d(e,t){var n=null,i=e.type;if("select-one"===i)return e.options.length&&(n=e.options[e.selectedIndex].value),n;if("select-multiple"===i){n=[];for(var r=0,a=e.options.length;r=11?e:e+12:"\u4e0b\u5348"===t||"\u665a\u4e0a"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929] LT",nextDay:"[\u660e\u5929] LT",nextWeek:"[\u4e0b]dddd LT",lastDay:"[\u6628\u5929] LT",lastWeek:"[\u4e0a]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u9031)/,ordinal:function(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"}})}(n("PJh5"))},Bfm1:function(e,t,n){var i=n("+p4S");e.exports=i},Bk7N:function(e,t,n){var i=n("wK4m"),r=n("fO9o").localIcon,o=n("8UTl"),l=o.h,s=function(e){function t(n){!function(e,n){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this);var i=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return i.handleClick=i.handleClick.bind(i),i}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.handleClick=function(e){this.input.click()},t.prototype.render=function(){var e=this,t=0===Object.keys(this.props.files).length;return 0!==this.props.acquirers.length?l("div",{class:"uppy-DashboardTabs"},l("ul",{class:"uppy-DashboardTabs-list",role:"tablist"},l("li",{class:"uppy-DashboardTab",role:"presentation"},l("button",{type:"button",class:"uppy-DashboardTab-btn",role:"tab",tabindex:"0",onclick:this.handleClick},r(),l("div",{class:"uppy-DashboardTab-name"},this.props.i18n("myDevice"))),l("input",{class:"uppy-Dashboard-input",hidden:"true","aria-hidden":"true",tabindex:"-1",type:"file",name:"files[]",multiple:"true",onchange:this.props.handleInputChange,value:"",ref:function(t){e.input=t}})),this.props.acquirers.map(function(t){return l("li",{class:"uppy-DashboardTab",role:"presentation"},l("button",{class:"uppy-DashboardTab-btn",type:"button",role:"tab",tabindex:"0","aria-controls":"uppy-DashboardContent-panel--"+t.id,"aria-selected":e.props.activePanel.id===t.id,onclick:function(){return e.props.showPanel(t.id)}},t.icon(),l("h5",{class:"uppy-DashboardTab-name"},t.name)))}))):l("div",{class:"uppy-DashboardTabs","aria-hidden":t},l("div",{class:"uppy-DashboardTabs-title"},l(i,{acquirers:this.props.acquirers,handleInputChange:this.props.handleInputChange,i18n:this.props.i18n})))},t}(o.Component);e.exports=s},BkLI:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("rCTf"),l=n("wAkD"),s=n("CURp");t.delayWhen=function(e,t){return t?function(n){return new c(n,t).lift(new a(e))}:function(t){return t.lift(new a(e))}};var a=function(){function e(e){this.delayDurationSelector=e}return e.prototype.call=function(e,t){return t.subscribe(new u(e,this.delayDurationSelector))},e}(),u=function(e){function t(t,n){e.call(this,t),this.delayDurationSelector=n,this.completed=!1,this.delayNotifierSubscriptions=[],this.values=[]}return i(t,e),t.prototype.notifyNext=function(e,t,n,i,r){this.destination.next(e),this.removeSubscription(r),this.tryComplete()},t.prototype.notifyError=function(e,t){this._error(e)},t.prototype.notifyComplete=function(e){var t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()},t.prototype._next=function(e){try{var t=this.delayDurationSelector(e);t&&this.tryDelay(t,e)}catch(e){this.destination.error(e)}},t.prototype._complete=function(){this.completed=!0,this.tryComplete()},t.prototype.removeSubscription=function(e){e.unsubscribe();var t=this.delayNotifierSubscriptions.indexOf(e),n=null;return-1!==t&&(n=this.values[t],this.delayNotifierSubscriptions.splice(t,1),this.values.splice(t,1)),n},t.prototype.tryDelay=function(e,t){var n=s.subscribeToResult(this,e,t);n&&!n.closed&&(this.add(n),this.delayNotifierSubscriptions.push(n)),this.values.push(t)},t.prototype.tryComplete=function(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()},t}(l.OuterSubscriber),c=function(e){function t(t,n){e.call(this),this.source=t,this.subscriptionDelay=n}return i(t,e),t.prototype._subscribe=function(e){this.subscriptionDelay.subscribe(new d(e,this.source))},t}(o.Observable),d=function(e){function t(t,n){e.call(this),this.parent=t,this.source=n,this.sourceSubscribed=!1}return i(t,e),t.prototype._next=function(e){this.subscribeToSource()},t.prototype._error=function(e){this.unsubscribe(),this.parent.error(e)},t.prototype._complete=function(){this.subscribeToSource()},t.prototype.subscribeToSource=function(){this.sourceSubscribed||(this.sourceSubscribed=!0,this.unsubscribe(),this.source.subscribe(this.parent))},t}(r.Subscriber)},Bp2f:function(e,t,n){!function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|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,i){return e?/-MMM-/.test(i)?n[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:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"\xe9\xe9n minuut",mm:"%d minuten",h:"\xe9\xe9n uur",hh:"%d uur",d:"\xe9\xe9n dag",dd:"%d dagen",M:"\xe9\xe9n maand",MM:"%d maanden",y:"\xe9\xe9n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("PJh5"))},"C/iu":function(e,t,n){"use strict";var i=n("Yh8Q"),r=n("RRVv"),o=n("jBEF"),l=n("lU4I"),s=n("fWbP");t.startWith=function(){for(var e=[],t=0;t1?new i.ArrayObservable(e,n):new o.EmptyObservable(n),t)}}},"C0+T":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("9Avi");t.QueueScheduler=function(e){function t(){e.apply(this,arguments)}return i(t,e),t}(r.AsyncScheduler)},C0hh:function(e,t){e.exports=function(){return[]}},C2y9:function(e,t){e.exports=function(e){for(var t=-1,n=null==e?0:e.length,i=0,r=[];++t11?n?"\u03bc\u03bc":"\u039c\u039c":n?"\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 n,i=this._calendarEl[e],r=t&&t.hours();return((n=i)instanceof Function||"[object Function]"===Object.prototype.toString.call(n))&&(i=i.apply(t)),i.replace("{}",r%12==1?"\u03c3\u03c4\u03b7":"\u03c3\u03c4\u03b9\u03c2")},relativeTime:{future:"\u03c3\u03b5 %s",past:"%s \u03c0\u03c1\u03b9\u03bd",s:"\u03bb\u03af\u03b3\u03b1 \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1",ss:"%d \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1",m:"\u03ad\u03bd\u03b1 \u03bb\u03b5\u03c0\u03c4\u03cc",mm:"%d \u03bb\u03b5\u03c0\u03c4\u03ac",h:"\u03bc\u03af\u03b1 \u03ce\u03c1\u03b1",hh:"%d \u03ce\u03c1\u03b5\u03c2",d:"\u03bc\u03af\u03b1 \u03bc\u03ad\u03c1\u03b1",dd:"%d \u03bc\u03ad\u03c1\u03b5\u03c2",M:"\u03ad\u03bd\u03b1\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2",MM:"%d \u03bc\u03ae\u03bd\u03b5\u03c2",y:"\u03ad\u03bd\u03b1\u03c2 \u03c7\u03c1\u03cc\u03bd\u03bf\u03c2",yy:"%d \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1"},dayOfMonthOrdinalParse:/\d{1,2}\u03b7/,ordinal:"%d\u03b7",week:{dow:1,doy:4}})}(n("PJh5"))},CGGv:function(e,t,n){"use strict";var i=n("cwzr"),r=n("9Avi");t.async=new r.AsyncScheduler(i.AsyncAction)},CHen:function(e,t,n){var i=n("uCi2"),r=n("HAGj"),o=n("bIjD");e.exports=function(e,t,n){for(var l=-1,s=t.length,a={};++l0&&!this.encoding){var e=this.packetBuffer.shift();this.packet(e)}},h.prototype.cleanup=function(){u("cleanup");for(var e=this.subs.length,t=0;t=this._reconnectionAttempts)u("reconnect failed"),this.backoff.reset(),this.emitAll("reconnect_failed"),this.reconnecting=!1;else{var t=this.backoff.duration();u("will wait %dms before reconnect attempt",t),this.reconnecting=!0;var n=setTimeout(function(){e.skipReconnect||(u("attempting reconnect"),e.emitAll("reconnect_attempt",e.backoff.attempts),e.emitAll("reconnecting",e.backoff.attempts),e.skipReconnect||e.open(function(t){t?(u("reconnect attempt error"),e.reconnecting=!1,e.reconnect(),e.emitAll("reconnect_error",t.data)):(u("reconnect success"),e.onreconnect())}))},t);this.subs.push({destroy:function(){clearTimeout(n)}})}},h.prototype.onreconnect=function(){var e=this.backoff.attempts;this.reconnecting=!1,this.backoff.reset(),this.updateSocketIds(),this.emitAll("reconnect",e)}},Cw9N:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.skipUntil=function(e){return function(t){return t.lift(new l(e))}};var l=function(){function e(e){this.notifier=e}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.notifier))},e}(),s=function(e){function t(t,n){e.call(this,t),this.hasValue=!1,this.isInnerStopped=!1,this.add(o.subscribeToResult(this,n))}return i(t,e),t.prototype._next=function(t){this.hasValue&&e.prototype._next.call(this,t)},t.prototype._complete=function(){this.isInnerStopped?e.prototype._complete.call(this):this.unsubscribe()},t.prototype.notifyNext=function(e,t,n,i,r){this.hasValue=!0},t.prototype.notifyComplete=function(){this.isInnerStopped=!0,this.isStopped&&e.prototype._complete.call(this)},t}(r.OuterSubscriber)},Cx8F:function(e,t,n){"use strict";var i=n("hQYy");t.retryWhen=function(e){return i.retryWhen(e)(this)}},D2Nv:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.tap=function(e,t,n){return function(i){return i.lift(new o(e,t,n))}};var o=function(){function e(e,t,n){this.nextOrObserver=e,this.error=t,this.complete=n}return e.prototype.call=function(e,t){return t.subscribe(new l(e,this.nextOrObserver,this.error,this.complete))},e}(),l=function(e){function t(t,n,i,o){e.call(this,t);var l=new r.Subscriber(n,i,o);l.syncErrorThrowable=!0,this.add(l),this.safeSubscriber=l}return i(t,e),t.prototype._next=function(e){var t=this.safeSubscriber;t.next(e),t.syncErrorThrown?this.destination.error(t.syncErrorValue):this.destination.next(e)},t.prototype._error=function(e){var t=this.safeSubscriber;t.error(e),this.destination.error(t.syncErrorThrown?t.syncErrorValue:e)},t.prototype._complete=function(){var e=this.safeSubscriber;e.complete(),e.syncErrorThrown?this.destination.error(e.syncErrorValue):this.destination.complete()},t}(r.Subscriber)},D77r:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("CGGv"),o=n("fuZx"),l=n("mmVS"),s=n("cmqr");t.timeout=function(e,t){void 0===t&&(t=r.async);var n=o.isDate(e),i=n?+e-t.now():Math.abs(e);return function(e){return e.lift(new a(i,n,t,new s.TimeoutError))}};var a=function(){function e(e,t,n,i){this.waitFor=e,this.absoluteTimeout=t,this.scheduler=n,this.errorInstance=i}return e.prototype.call=function(e,t){return t.subscribe(new u(e,this.absoluteTimeout,this.waitFor,this.scheduler,this.errorInstance))},e}(),u=function(e){function t(t,n,i,r,o){e.call(this,t),this.absoluteTimeout=n,this.waitFor=i,this.scheduler=r,this.errorInstance=o,this.action=null,this.scheduleTimeout()}return i(t,e),t.dispatchTimeout=function(e){e.error(e.errorInstance)},t.prototype.scheduleTimeout=function(){var e=this.action;e?this.action=e.schedule(this,this.waitFor):this.add(this.action=this.scheduler.schedule(t.dispatchTimeout,this.waitFor,this))},t.prototype._next=function(t){this.absoluteTimeout||this.scheduleTimeout(),e.prototype._next.call(this,t)},t.prototype._unsubscribe=function(){this.action=null,this.scheduler=null,this.errorInstance=null},t}(l.Subscriber)},DB2G:function(e,t,n){"use strict";var i=n("CGGv"),r=n("fWbP"),o=n("nSY4");t.bufferTime=function(e){var t=arguments.length,n=i.async;r.isScheduler(arguments[arguments.length-1])&&(n=arguments[arguments.length-1],t--);var l=null;t>=2&&(l=arguments[1]);var s=Number.POSITIVE_INFINITY;return t>=3&&(s=arguments[2]),o.bufferTime(e,l,s,n)(this)}},DOkx:function(e,t,n){!function(e){"use strict";function t(e,t,n,i){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[n][0]:r[n][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}})}(n("PJh5"))},DSXN:function(e,t,n){!function(e){"use strict";e.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"masiku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})}(n("PJh5"))},DZi2:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("F7Al");t.single=function(e){return function(t){return t.lift(new l(e,t))}};var l=function(){function e(e,t){this.predicate=e,this.source=t}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.predicate,this.source))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.predicate=n,this.source=i,this.seenValue=!1,this.index=0}return i(t,e),t.prototype.applySingleValue=function(e){this.seenValue?this.destination.error("Sequence contains more than one element"):(this.seenValue=!0,this.singleValue=e)},t.prototype._next=function(e){var t=this.index++;this.predicate?this.tryNext(e,t):this.applySingleValue(e)},t.prototype.tryNext=function(e,t){try{this.predicate(e,t,this.source)&&this.applySingleValue(e)}catch(e){this.destination.error(e)}},t.prototype._complete=function(){var e=this.destination;this.index>0?(e.next(this.seenValue?this.singleValue:void 0),e.complete()):e.error(new o.EmptyError)},t}(r.Subscriber)},Dc0G:function(e,t,n){(function(e){var i=n("blYT"),r="object"==typeof t&&t&&!t.nodeType&&t,o=r&&"object"==typeof e&&e&&!e.nodeType&&e,l=o&&o.exports===r&&i.process,s=function(){try{return o&&o.require&&o.require("util").types||l&&l.binding&&l.binding("util")}catch(e){}}();e.exports=s}).call(t,n("3IRH")(e))},Dc2k:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("VOfZ"),o=n("+3eL"),l=n("WhVc"),s=n("rCTf"),a=n("mmVS"),u=n("9omE");function c(e,t){return void 0===t&&(t=null),new v({method:"GET",url:e,headers:t})}function d(e,t,n){return new v({method:"POST",url:e,body:t,headers:n})}function p(e,t){return new v({method:"DELETE",url:e,headers:t})}function h(e,t,n){return new v({method:"PUT",url:e,body:t,headers:n})}function f(e,t,n){return new v({method:"PATCH",url:e,body:t,headers:n})}t.ajaxGet=c,t.ajaxPost=d,t.ajaxDelete=p,t.ajaxPut=h,t.ajaxPatch=f;var m=u.map(function(e,t){return e.response});function g(e,t){return m(new v({method:"GET",url:e,responseType:"json",headers:t}))}t.ajaxGetJSON=g;var v=function(e){function t(t){e.call(this);var n={async:!0,createXHR:function(){return this.crossDomain?(function(){if(r.root.XMLHttpRequest)return new r.root.XMLHttpRequest;if(r.root.XDomainRequest)return new r.root.XDomainRequest;throw new Error("CORS is not supported by your browser")}).call(this):function(){if(r.root.XMLHttpRequest)return new r.root.XMLHttpRequest;var e=void 0;try{for(var t=["Msxml2.XMLHTTP","Microsoft.XMLHTTP","Msxml2.XMLHTTP.4.0"],n=0;n<3;n++)try{if(new r.root.ActiveXObject(e=t[n]))break}catch(e){}return new r.root.ActiveXObject(e)}catch(e){throw new Error("XMLHttpRequest is not supported by your browser")}}()},crossDomain:!1,withCredentials:!1,headers:{},method:"GET",responseType:"json",timeout:0};if("string"==typeof t)n.url=t;else for(var i in t)t.hasOwnProperty(i)&&(n[i]=t[i]);this.request=n}var n;return i(t,e),t.prototype._subscribe=function(e){return new y(e,this.request)},t.create=((n=function(e){return new t(e)}).get=c,n.post=d,n.delete=p,n.put=h,n.patch=f,n.getJSON=g,n),t}(s.Observable);t.AjaxObservable=v;var y=function(e){function t(t,n){e.call(this,t),this.request=n,this.done=!1;var i=n.headers=n.headers||{};n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),"Content-Type"in i||r.root.FormData&&n.body instanceof r.root.FormData||"undefined"==typeof n.body||(i["Content-Type"]="application/x-www-form-urlencoded; charset=UTF-8"),n.body=this.serializeBody(n.body,n.headers["Content-Type"]),this.send()}return i(t,e),t.prototype.next=function(e){this.done=!0;var t=this.destination,n=new _(e,this.xhr,this.request);t.next(n)},t.prototype.send=function(){var e=this.request,t=this.request,n=t.user,i=t.method,r=t.url,s=t.async,a=t.password,u=t.headers,c=t.body,d=o.tryCatch(e.createXHR).call(e);if(d===l.errorObject)this.error(l.errorObject.e);else{if(this.xhr=d,this.setupEvents(d,e),(n?o.tryCatch(d.open).call(d,i,r,s,n,a):o.tryCatch(d.open).call(d,i,r,s))===l.errorObject)return this.error(l.errorObject.e),null;if(s&&(d.timeout=e.timeout,d.responseType=e.responseType),"withCredentials"in d&&(d.withCredentials=!!e.withCredentials),this.setHeaders(d,u),(c?o.tryCatch(d.send).call(d,c):o.tryCatch(d.send).call(d))===l.errorObject)return this.error(l.errorObject.e),null}return d},t.prototype.serializeBody=function(e,t){if(!e||"string"==typeof e)return e;if(r.root.FormData&&e instanceof r.root.FormData)return e;if(t){var n=t.indexOf(";");-1!==n&&(t=t.substring(0,n))}switch(t){case"application/x-www-form-urlencoded":return Object.keys(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&");case"application/json":return JSON.stringify(e);default:return e}},t.prototype.setHeaders=function(e,t){for(var n in t)t.hasOwnProperty(n)&&e.setRequestHeader(n,t[n])},t.prototype.setupEvents=function(e,t){var n,i,o=t.progressSubscriber;function l(e){var t=l.subscriber,n=l.progressSubscriber,i=l.request;n&&n.error(e),t.error(new x(this,i))}function s(e){var t=s.subscriber,n=s.progressSubscriber,i=s.request;if(4===this.readyState){var r=1223===this.status?204:this.status;0===r&&(r=("text"===this.responseType?this.response||this.responseText:this.response)?200:0),200<=r&&r<300?(n&&n.complete(),t.next(e),t.complete()):(n&&n.error(e),t.error(new b("ajax error "+r,this,i)))}}e.ontimeout=l,l.request=t,l.subscriber=this,l.progressSubscriber=o,e.upload&&"withCredentials"in e&&(o&&(n=function(e){n.progressSubscriber.next(e)},r.root.XDomainRequest?e.onprogress=n:e.upload.onprogress=n,n.progressSubscriber=o),e.onerror=i=function(e){var t=i.progressSubscriber,n=i.subscriber,r=i.request;t&&t.error(e),n.error(new b("ajax error",this,r))},i.request=t,i.subscriber=this,i.progressSubscriber=o),e.onreadystatechange=s,s.subscriber=this,s.progressSubscriber=o,s.request=t},t.prototype.unsubscribe=function(){var t=this.xhr;!this.done&&t&&4!==t.readyState&&"function"==typeof t.abort&&t.abort(),e.prototype.unsubscribe.call(this)},t}(a.Subscriber);t.AjaxSubscriber=y;var _=function(){return function(e,t,n){this.originalEvent=e,this.xhr=t,this.request=n,this.status=t.status,this.responseType=t.responseType||n.responseType,this.response=w(this.responseType,t)}}();t.AjaxResponse=_;var b=function(e){function t(t,n,i){e.call(this,t),this.message=t,this.xhr=n,this.request=i,this.status=n.status,this.responseType=n.responseType||i.responseType,this.response=w(this.responseType,n)}return i(t,e),t}(Error);function w(e,t){switch(e){case"json":return"response"in t?t.responseType?t.response:JSON.parse(t.response||t.responseText||"null"):JSON.parse(t.responseText||"null");case"xml":return t.responseXML;case"text":default:return"response"in t?t.response:t.responseText}}t.AjaxError=b;var x=function(e){function t(t,n){e.call(this,"ajax timeout",t,n)}return i(t,e),t}(b);t.AjaxTimeoutError=x},Dc7M:function(e,t,n){var i=n("Hxdr"),r=n("Fkvj"),o=n("Vi3P"),l=n("bIjD"),s=n("tv3T"),a=n("dYhQ"),u=n("2N6f"),c=n("xond"),d=u(function(e,t){var n={};if(null==e)return n;var u=!1;t=i(t,function(t){return t=l(t,e),u||(u=t.length>1),t}),s(e,c(e),n),u&&(n=r(n,7,a));for(var d=t.length;d--;)o(n,t[d]);return n});e.exports=d},Di9Q:function(e,t,n){"use strict";var i=n("rCTf"),r=n("DB2G");i.Observable.prototype.bufferTime=r.bufferTime},Dkzu:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf");t.ErrorObservable=function(e){function t(t,n){e.call(this),this.error=t,this.scheduler=n}return i(t,e),t.create=function(e,n){return new t(e,n)},t.dispatch=function(e){e.subscriber.error(e.error)},t.prototype._subscribe=function(e){var n=this.error,i=this.scheduler;if(e.syncErrorThrowable=!0,i)return i.schedule(t.dispatch,0,{error:n,subscriber:e});e.error(n)},t}(r.Observable)},DmT9:function(e,t,n){var i=n("V1mL"),r=n("Xz3Q"),o=n("Ctjl"),l=n("Fy0/")("socket.io-client");e.exports=t=a;var s=t.managers={};function a(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var n,r=i(e),a=r.source,u=r.id;return t.forceNew||t["force new connection"]||!1===t.multiplex||s[u]&&r.path in s[u].nsps?(l("ignoring socket cache for %s",a),n=o(a,t)):(s[u]||(l("new io instance for %s",a),s[u]=o(a,t)),n=s[u]),r.query&&!t.query&&(t.query=r.query),n.socket(r.path,t)}t.protocol=r.protocol,t.connect=a,t.Manager=n("Ctjl"),t.Socket=n("AYMf")},DuR2:function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},Dv2r:function(e,t,n){var i=n("pTUa");e.exports=function(e,t){var n=i(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this}},DxBg:function(e,t){e.exports=function(e){return e&&e.length?e[0]:void 0}},DzMp:function(e,t,n){"use strict";var i=n("+EXD");t.defer=i.DeferObservable.create},"E/WS":function(e,t,n){"use strict";var i=n("CGGv"),r=n("D77r");t.timeout=function(e,t){return void 0===t&&(t=i.async),r.timeout(e,t)(this)}},E30z:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n("WT6e");n("8oH5"),t.TranslatePipe=function(){function e(e){this.translateI18Next=e}return e.prototype.transform=function(e,t){return this.translateI18Next.translate(e,Array.isArray(t)&&t.length?t[0]:t)},e.decorators=[{type:i.Pipe,args:[{name:"translate",pure:!1}]}],e}()},E4Hj:function(e,t){e.exports=function(e){return this.__data__.get(e)}},E7Yq:function(e,t,n){"use strict";var i=n("rCTf"),r=n("TIy+");i.Observable.fromEvent=r.fromEvent},E8hY:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.debounce=function(e){return function(t){return t.lift(new l(e))}};var l=function(){function e(e){this.durationSelector=e}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.durationSelector))},e}(),s=function(e){function t(t,n){e.call(this,t),this.durationSelector=n,this.hasValue=!1,this.durationSubscription=null}return i(t,e),t.prototype._next=function(e){try{var t=this.durationSelector.call(this,e);t&&this._tryNext(e,t)}catch(e){this.destination.error(e)}},t.prototype._complete=function(){this.emitValue(),this.destination.complete()},t.prototype._tryNext=function(e,t){var n=this.durationSubscription;this.value=e,this.hasValue=!0,n&&(n.unsubscribe(),this.remove(n)),(n=o.subscribeToResult(this,t)).closed||this.add(this.durationSubscription=n)},t.prototype.notifyNext=function(e,t,n,i,r){this.emitValue()},t.prototype.notifyComplete=function(){this.emitValue()},t.prototype.emitValue=function(){if(this.hasValue){var t=this.value,n=this.durationSubscription;n&&(this.durationSubscription=null,n.unsubscribe(),this.remove(n)),this.value=null,this.hasValue=!1,e.prototype._next.call(this,t)}},t}(r.OuterSubscriber)},E9Gi:function(e,t,n){"use strict";var i=n("PJh5");Object.defineProperty(t,"__esModule",{value:!0}),t.default=i},EEr4:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("mmVS"),l=n("B00U"),s=n("IZVw"),a=n("ZJf8"),u=n("r8ZY"),c=function(e){function t(t){e.call(this,t),this.destination=t}return i(t,e),t}(o.Subscriber);t.SubjectSubscriber=c;var d=function(e){function t(){e.call(this),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}return i(t,e),t.prototype[u.rxSubscriber]=function(){return new c(this)},t.prototype.lift=function(e){var t=new p(this,this);return t.operator=e,t},t.prototype.next=function(e){if(this.closed)throw new s.ObjectUnsubscribedError;if(!this.isStopped)for(var t=this.observers,n=t.length,i=t.slice(),r=0;r ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,def:/^ {0,3}\[(label)\]: *\n? *]+)>?(?:(?: +\n? *| *\n *)(title))? *(?:\n+|$)/,table:m,lheading:/^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,paragraph:/^([^\n]+(?:\n?(?!hr|heading|lheading| {0,3}>|tag)[^\n]+)+)/,text:/^[^\n]+/};function i(e){this.tokens=[],this.tokens.links={},this.options=e||v.defaults,this.rules=n.normal,this.options.gfm&&(this.rules=this.options.tables?n.tables:n.gfm)}n._label=/(?:\\[\[\]]|[^\[\]])+/,n._title=/(?:"(?:\\"|[^"]|"[^"\n]*")*"|'\n?(?:[^'\n]+\n?)*'|\([^()]*\))/,n.def=d(n.def).replace("label",n._label).replace("title",n._title).getRegex(),n.bullet=/(?:[*+-]|\d+\.)/,n.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/,n.item=d(n.item,"gm").replace(/bull/g,n.bullet).getRegex(),n.list=d(n.list).replace(/bull/g,n.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+n.def.source+")").getRegex(),n._tag="(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b",n.html=d(n.html).replace("comment",//).replace("closed",/<(tag)[\s\S]+?<\/\1>/).replace("closing",/\s]*)*?\/?>/).replace(/tag/g,n._tag).getRegex(),n.paragraph=d(n.paragraph).replace("hr",n.hr).replace("heading",n.heading).replace("lheading",n.lheading).replace("tag","<"+n._tag).getRegex(),n.blockquote=d(n.blockquote).replace("paragraph",n.paragraph).getRegex(),n.normal=g({},n),n.gfm=g({},n.normal,{fences:/^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\n? *\1 *(?:\n+|$)/,paragraph:/^/,heading:/^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/}),n.gfm.paragraph=d(n.paragraph).replace("(?!","(?!"+n.gfm.fences.source.replace("\\1","\\2")+"|"+n.list.source.replace("\\1","\\3")+"|").getRegex(),n.tables=g({},n.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/}),i.rules=n,i.lex=function(e,t){return new i(t).lex(e)},i.prototype.lex=function(e){return e=e.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n"),this.token(e,!0)},i.prototype.token=function(e,t){var i,r,o,l,s,a,u,c,d,p,h;for(e=e.replace(/^ +$/gm,"");e;)if((o=this.rules.newline.exec(e))&&(e=e.substring(o[0].length),o[0].length>1&&this.tokens.push({type:"space"})),o=this.rules.code.exec(e))e=e.substring(o[0].length),o=o[0].replace(/^ {4}/gm,""),this.tokens.push({type:"code",text:this.options.pedantic?o:o.replace(/\n+$/,"")});else if(o=this.rules.fences.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"code",lang:o[2],text:o[3]||""});else if(o=this.rules.heading.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"heading",depth:o[1].length,text:o[2]});else if(t&&(o=this.rules.nptable.exec(e))){for(e=e.substring(o[0].length),a={type:"table",header:o[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:o[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:o[3].replace(/\n$/,"").split("\n")},c=0;c ?/gm,""),this.token(o,t),this.tokens.push({type:"blockquote_end"});else if(o=this.rules.list.exec(e)){for(e=e.substring(o[0].length),this.tokens.push({type:"list_start",ordered:h=(l=o[2]).length>1,start:h?+l:""}),i=!1,p=(o=o[0].match(this.rules.item)).length,c=0;c1&&s.length>1||(e=o.slice(c+1).join("\n")+e,c=p-1)),r=i||/\n\n(?!\s*$)/.test(a),c!==p-1&&(i="\n"===a.charAt(a.length-1),r||(r=i)),this.tokens.push({type:r?"loose_item_start":"list_item_start"}),this.token(a,!1),this.tokens.push({type:"list_item_end"});this.tokens.push({type:"list_end"})}else if(o=this.rules.html.exec(e))e=e.substring(o[0].length),this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:!this.options.sanitizer&&("pre"===o[1]||"script"===o[1]||"style"===o[1]),text:o[0]});else if(t&&(o=this.rules.def.exec(e)))e=e.substring(o[0].length),o[3]&&(o[3]=o[3].substring(1,o[3].length-1)),d=o[1].toLowerCase(),this.tokens.links[d]||(this.tokens.links[d]={href:o[2],title:o[3]});else if(t&&(o=this.rules.table.exec(e))){for(e=e.substring(o[0].length),a={type:"table",header:o[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:o[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:o[3].replace(/(?: *\| *)?\n$/,"").split("\n")},c=0;c])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:m,tag:/^|^<\/?[a-zA-Z0-9\-]+(?:"[^"]*"|'[^']*'|\s[^<'">\/\s]*)*?\/?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\[\]]*\]|\\[\[\]]|[^\[\]])*)\]/,strong:/^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^_([^\s_](?:[^_]|__)+?[^\s_])_\b|^\*((?:\*\*|[^*])+?)\*(?!\*)/,code:/^(`+)\s*([\s\S]*?[^`]?)\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:m,text:/^[\s\S]+?(?=[\\/g,">").replace(/"/g,""").replace(/'/g,"'")}function c(e){return e.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi,function(e,t){return"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""})}function d(e,t){return e=e.source,t=t||"",{replace:function(t,n){return n=(n=n.source||n).replace(/(^|[^\[])\^/g,"$1"),e=e.replace(t,n),this},getRegex:function(){return new RegExp(e,t)}}}function p(e,t){return h[" "+e]||(h[" "+e]=/^[^:]+:\/*[^/]*$/.test(e)?e+"/":e.replace(/[^/]*$/,"")),e=h[" "+e],"//"===t.slice(0,2)?e.replace(/:[\s\S]*/,":")+t:"/"===t.charAt(0)?e.replace(/(:\/*[^/]*)[\s\S]*/,"$1")+t:e+t}r._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,r._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,r.autolink=d(r.autolink).replace("scheme",r._scheme).replace("email",r._email).getRegex(),r._inside=/(?:\[[^\[\]]*\]|\\[\[\]]|[^\[\]]|\](?=[^\[]*\]))*/,r._href=/\s*?(?:\s+['"]([\s\S]*?)['"])?\s*/,r.link=d(r.link).replace("inside",r._inside).replace("href",r._href).getRegex(),r.reflink=d(r.reflink).replace("inside",r._inside).getRegex(),r.normal=g({},r),r.pedantic=g({},r.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/}),r.gfm=g({},r.normal,{escape:d(r.escape).replace("])","~|])").getRegex(),url:d(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("email",r._email).getRegex(),_backpedal:/(?:[^?!.,:;*_~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:d(r.text).replace("]|","~]|").replace("|","|https?://|ftp://|www\\.|[a-zA-Z0-9.!#$%&'*+/=?^_`{\\|}~-]+@|").getRegex()}),r.breaks=g({},r.gfm,{br:d(r.br).replace("{2,}","*").getRegex(),text:d(r.gfm.text).replace("{2,}","*").getRegex()}),o.rules=r,o.output=function(e,t,n){return new o(t,n).output(e)},o.prototype.output=function(e){for(var t,n,i,r,o="";e;)if(r=this.rules.escape.exec(e))e=e.substring(r[0].length),o+=r[1];else if(r=this.rules.autolink.exec(e))e=e.substring(r[0].length),i="@"===r[2]?"mailto:"+(n=u(this.mangle(r[1]))):n=u(r[1]),o+=this.renderer.link(i,null,n);else if(this.inLink||!(r=this.rules.url.exec(e))){if(r=this.rules.tag.exec(e))!this.inLink&&/^/i.test(r[0])&&(this.inLink=!1),e=e.substring(r[0].length),o+=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(r[0]):u(r[0]):r[0];else if(r=this.rules.link.exec(e))e=e.substring(r[0].length),this.inLink=!0,o+=this.outputLink(r,{href:r[2],title:r[3]}),this.inLink=!1;else if((r=this.rules.reflink.exec(e))||(r=this.rules.nolink.exec(e))){if(e=e.substring(r[0].length),t=(r[2]||r[1]).replace(/\s+/g," "),!(t=this.links[t.toLowerCase()])||!t.href){o+=r[0].charAt(0),e=r[0].substring(1)+e;continue}this.inLink=!0,o+=this.outputLink(r,t),this.inLink=!1}else if(r=this.rules.strong.exec(e))e=e.substring(r[0].length),o+=this.renderer.strong(this.output(r[2]||r[1]));else if(r=this.rules.em.exec(e))e=e.substring(r[0].length),o+=this.renderer.em(this.output(r[2]||r[1]));else if(r=this.rules.code.exec(e))e=e.substring(r[0].length),o+=this.renderer.codespan(u(r[2].trim(),!0));else if(r=this.rules.br.exec(e))e=e.substring(r[0].length),o+=this.renderer.br();else if(r=this.rules.del.exec(e))e=e.substring(r[0].length),o+=this.renderer.del(this.output(r[1]));else if(r=this.rules.text.exec(e))e=e.substring(r[0].length),o+=this.renderer.text(u(this.smartypants(r[0])));else if(e)throw new Error("Infinite loop on byte: "+e.charCodeAt(0))}else r[0]=this.rules._backpedal.exec(r[0])[0],e=e.substring(r[0].length),"@"===r[2]?i="mailto:"+(n=u(r[0])):(n=u(r[0]),i="www."===r[1]?"http://"+n:n),o+=this.renderer.link(i,null,n);return o},o.prototype.outputLink=function(e,t){var n=u(t.href),i=t.title?u(t.title):null;return"!"!==e[0].charAt(0)?this.renderer.link(n,i,this.output(e[1])):this.renderer.image(n,i,u(e[1]))},o.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/---/g,"\u2014").replace(/--/g,"\u2013").replace(/(^|[-\u2014/(\[{"\s])'/g,"$1\u2018").replace(/'/g,"\u2019").replace(/(^|[-\u2014/(\[{\u2018\s])"/g,"$1\u201c").replace(/"/g,"\u201d").replace(/\.{3}/g,"\u2026"):e},o.prototype.mangle=function(e){if(!this.options.mangle)return e;for(var t,n="",i=e.length,r=0;r.5&&(t="x"+t.toString(16)),n+="&#"+t+";";return n},l.prototype.code=function(e,t,n){if(this.options.highlight){var i=this.options.highlight(e,t);null!=i&&i!==e&&(n=!0,e=i)}return t?'
'+(n?e:u(e,!0))+"\n
\n":"
"+(n?e:u(e,!0))+"\n
"},l.prototype.blockquote=function(e){return"
\n"+e+"
\n"},l.prototype.html=function(e){return e},l.prototype.heading=function(e,t,n){return"'+e+"\n"},l.prototype.hr=function(){return this.options.xhtml?"
\n":"
\n"},l.prototype.list=function(e,t,n){var i=t?"ol":"ul";return"<"+i+(t&&1!==n?' start="'+n+'"':"")+">\n"+e+"\n"},l.prototype.listitem=function(e){return"
  • "+e+"
  • \n"},l.prototype.paragraph=function(e){return"

    "+e+"

    \n"},l.prototype.table=function(e,t){return"\n\n"+e+"\n\n"+t+"\n
    \n"},l.prototype.tablerow=function(e){return"\n"+e+"\n"},l.prototype.tablecell=function(e,t){var n=t.header?"th":"td";return(t.align?"<"+n+' style="text-align:'+t.align+'">':"<"+n+">")+e+"\n"},l.prototype.strong=function(e){return""+e+""},l.prototype.em=function(e){return""+e+""},l.prototype.codespan=function(e){return""+e+""},l.prototype.br=function(){return this.options.xhtml?"
    ":"
    "},l.prototype.del=function(e){return""+e+""},l.prototype.link=function(e,t,n){if(this.options.sanitize){try{var i=decodeURIComponent(c(e)).replace(/[^\w:]/g,"").toLowerCase()}catch(e){return n}if(0===i.indexOf("javascript:")||0===i.indexOf("vbscript:")||0===i.indexOf("data:"))return n}this.options.baseUrl&&!f.test(e)&&(e=p(this.options.baseUrl,e));var r='
    "+n+""},l.prototype.image=function(e,t,n){this.options.baseUrl&&!f.test(e)&&(e=p(this.options.baseUrl,e));var i=''+n+'":">")},l.prototype.text=function(e){return e},s.prototype.strong=s.prototype.em=s.prototype.codespan=s.prototype.del=s.prototype.text=function(e){return e},s.prototype.link=s.prototype.image=function(e,t,n){return""+n},s.prototype.br=function(){return""},a.parse=function(e,t){return new a(t).parse(e)},a.prototype.parse=function(e){this.inline=new o(e.links,this.options),this.inlineText=new o(e.links,g({},this.options,{renderer:new s})),this.tokens=e.reverse();for(var t="";this.next();)t+=this.tok();return t},a.prototype.next=function(){return this.token=this.tokens.pop()},a.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},a.prototype.parseText=function(){for(var e=this.token.text;"text"===this.peek().type;)e+="\n"+this.next().text;return this.inline.output(e)},a.prototype.tok=function(){switch(this.token.type){case"space":return"";case"hr":return this.renderer.hr();case"heading":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,c(this.inlineText.output(this.token.text)));case"code":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case"table":var e,t,n,i,r="",o="";for(n="",e=0;eAn error occurred:

    "+u(e.message+"",!0)+"
    ";throw e}}m.exec=m,v.options=v.setOptions=function(e){return g(v.defaults,e),v},v.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,sanitizer:null,mangle:!0,smartLists:!1,silent:!1,highlight:null,langPrefix:"lang-",smartypants:!1,headerPrefix:"",renderer:new l,xhtml:!1,baseUrl:null},v.Parser=a,v.parser=a.parse,v.Renderer=l,v.TextRenderer=s,v.Lexer=i,v.lexer=i.lex,v.InlineLexer=o,v.inlineLexer=o.output,v.parse=v,e.exports=v}(this||"undefined"!=typeof window&&window)}).call(t,n("DuR2"))},EGMK:function(e,t,n){"use strict";var i=n("rCTf"),r=n("kkb0");i.Observable.prototype.merge=r.merge},EHRO:function(e,t,n){var i=n("NkRn"),r=n("qwTf"),o=n("22B7"),l=n("FhcP"),s=n("WFiI"),a=n("octw"),u=i?i.prototype:void 0,c=u?u.valueOf:void 0;e.exports=function(e,t,n,i,u,d,p){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!d(new r(e),new r(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return o(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var h=s;case"[object Set]":if(h||(h=a),e.size!=t.size&&!(1&i))return!1;var f=p.get(e);if(f)return f==t;i|=2,p.set(e,t);var m=l(h(e),h(t),i,u,d,p);return p.delete(e),m;case"[object Symbol]":if(c)return c.call(e)==c.call(t)}return!1}},EKta:function(e,t,n){"use strict";t.byteLength=function(e){var t=u(e),n=t[1];return 3*(t[0]+n)/4-n},t.toByteArray=function(e){for(var t,n=u(e),i=n[0],l=n[1],s=new o(function(e,t,n){return 3*(t+n)/4-n}(0,i,l)),a=0,c=l>0?i-4:i,d=0;d>16&255,s[a++]=t>>8&255,s[a++]=255&t;return 2===l&&(t=r[e.charCodeAt(d)]<<2|r[e.charCodeAt(d+1)]>>4,s[a++]=255&t),1===l&&(t=r[e.charCodeAt(d)]<<10|r[e.charCodeAt(d+1)]<<4|r[e.charCodeAt(d+2)]>>2,s[a++]=t>>8&255,s[a++]=255&t),s},t.fromByteArray=function(e){for(var t,n=e.length,r=n%3,o=[],l=0,s=n-r;ls?s:l+16383));return 1===r?o.push(i[(t=e[n-1])>>2]+i[t<<4&63]+"=="):2===r&&o.push(i[(t=(e[n-2]<<8)+e[n-1])>>10]+i[t>>4&63]+i[t<<2&63]+"="),o.join("")};for(var i=[],r=[],o="undefined"!=typeof Uint8Array?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=l.length;s0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function c(e,t,n){for(var r,o=[],l=t;l>18&63]+i[r>>12&63]+i[r>>6&63]+i[63&r]);return o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},EN1B:function(e,t){},ENML:function(e,t,n){"use strict";var i=n("rCTf"),r=n("/8te");i.Observable.range=r.range},ETHv:function(e,t,n){!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"},n={"\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 n[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,n){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}})}(n("PJh5"))},EarI:function(e,t){var n=1e3,i=6e4,r=36e5,o=24*r;function l(e,t,n){if(!(e0)return function(e){if(!((e=String(e)).length>100)){var t=/^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(e);if(t){var l=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return 315576e5*l;case"days":case"day":case"d":return l*o;case"hours":case"hour":case"hrs":case"hr":case"h":return l*r;case"minutes":case"minute":case"mins":case"min":case"m":return l*i;case"seconds":case"second":case"secs":case"sec":case"s":return l*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return l;default:return}}}}(e);if("number"===a&&!1===isNaN(e))return t.long?l(s=e,o,"day")||l(s,r,"hour")||l(s,i,"minute")||l(s,n,"second")||s+" ms":function(e){return e>=o?Math.round(e/o)+"d":e>=r?Math.round(e/r)+"h":e>=i?Math.round(e/i)+"m":e>=n?Math.round(e/n)+"s":e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},ElvI:function(e,t,n){var i,r=n("2gBs"),o=n("5+KW"),l=n("Tff0"),s=n("YUmt"),a=n("eAwk");"undefined"!=typeof ArrayBuffer&&(i=n("kVGU"));var u="undefined"!=typeof navigator&&/Android/i.test(navigator.userAgent),c="undefined"!=typeof navigator&&/PhantomJS/i.test(navigator.userAgent),d=u||c;t.protocol=3;var p=t.packets={open:0,close:1,ping:2,pong:3,message:4,upgrade:5,noop:6},h=r(p),f={type:"error",data:"parser error"},m=n("6mly");function g(e,t,n){for(var i=new Array(e.length),r=s(e.length,n),o=function(e,n,r){t(n,function(t,n){i[e]=n,r(t,i)})},l=0;l1?{type:h[r],data:e.substring(1)}:{type:h[r]}:f}r=new Uint8Array(e)[0];var o=l(e,1);return m&&"blob"===n&&(o=new m([o])),{type:h[r],data:o}},t.decodeBase64Packet=function(e,t){var n=h[e.charAt(0)];if(!i)return{type:n,data:{base64:!0,data:e.substr(1)}};var r=i.decode(e.substr(1));return"blob"===t&&m&&(r=new m([r])),{type:n,data:r}},t.encodePayload=function(e,n,i){"function"==typeof n&&(i=n,n=null);var r=o(e);return n&&r?m&&!d?t.encodePayloadAsBlob(e,i):t.encodePayloadAsArrayBuffer(e,i):e.length?void g(e,function(e,i){t.encodePacket(e,!!r&&n,!1,function(e){i(null,function(e){return e.length+":"+e}(e))})},function(e,t){return i(t.join(""))}):i("0:")},t.decodePayload=function(e,n,i){if("string"!=typeof e)return t.decodePayloadAsBinary(e,n,i);var r;if("function"==typeof n&&(i=n,n=null),""===e)return i(f,0,1);for(var o,l,s="",a=0,u=e.length;a0;){for(var s=new Uint8Array(r),a=0===s[0],u="",c=1;255!==s[c];c++){if(u.length>310)return i(f,0,1);u+=s[c]}r=l(r,2+u.length),u=parseInt(u);var d=l(r,0,u);if(a)try{d=String.fromCharCode.apply(null,new Uint8Array(d))}catch(e){var p=new Uint8Array(d);for(d="",c=0;c=l())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+l().toString(16)+" bytes");return 0|e}function f(e,t){if(a.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return F(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return V(e).length;default:if(i)return F(e).length;t=(""+t).toLowerCase(),i=!0}}function m(e,t,n){var i=e[t];e[t]=e[n],e[n]=i}function g(e,t,n,i,r){if(0===e.length)return-1;if("string"==typeof n?(i=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=r?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(r)return-1;n=e.length-1}else if(n<0){if(!r)return-1;n=0}if("string"==typeof t&&(t=a.from(t,i)),a.isBuffer(t))return 0===t.length?-1:v(e,t,n,i,r);if("number"==typeof t)return t&=255,a.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):v(e,[t],n,i,r);throw new TypeError("val must be string, number or Buffer")}function v(e,t,n,i,r){var o,l=1,s=e.length,a=t.length;if(void 0!==i&&("ucs2"===(i=String(i).toLowerCase())||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(e.length<2||t.length<2)return-1;l=2,s/=2,a/=2,n/=2}function u(e,t){return 1===l?e[t]:e.readUInt16BE(t*l)}if(r){var c=-1;for(o=n;os&&(n=s-a),o=n;o>=0;o--){for(var d=!0,p=0;pr&&(i=r):i=r;var o=t.length;if(o%2!=0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var l=0;l>8,r.push(n%256),r.push(i);return r}(t,e.length-n),e,n,i)}function T(e,t,n){return i.fromByteArray(0===t&&n===e.length?e:e.slice(t,n))}function L(e,t,n){n=Math.min(e.length,n);for(var i=[],r=t;r239?4:u>223?3:u>191?2:1;if(r+d<=n)switch(d){case 1:u<128&&(c=u);break;case 2:128==(192&(o=e[r+1]))&&(a=(31&u)<<6|63&o)>127&&(c=a);break;case 3:l=e[r+2],128==(192&(o=e[r+1]))&&128==(192&l)&&(a=(15&u)<<12|(63&o)<<6|63&l)>2047&&(a<55296||a>57343)&&(c=a);break;case 4:l=e[r+2],s=e[r+3],128==(192&(o=e[r+1]))&&128==(192&l)&&128==(192&s)&&(a=(15&u)<<18|(63&o)<<12|(63&l)<<6|63&s)>65535&&a<1114112&&(c=a)}null===c?(c=65533,d=1):c>65535&&(i.push((c-=65536)>>>10&1023|55296),c=56320|1023&c),i.push(c),r+=d}return function(e){var t=e.length;if(t<=k)return String.fromCharCode.apply(String,e);for(var n="",i=0;ithis.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return E(this,t,n);case"utf8":case"utf-8":return L(this,t,n);case"ascii":return C(this,t,n);case"latin1":case"binary":return S(this,t,n);case"base64":return T(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,n);default:if(i)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),i=!0}}).apply(this,arguments)},a.prototype.equals=function(e){if(!a.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===a.compare(this,e)},a.prototype.inspect=function(){var e="",n=t.INSPECT_MAX_BYTES;return this.length>0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),""},a.prototype.compare=function(e,t,n,i,r){if(!a.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),t<0||n>e.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&t>=n)return 0;if(i>=r)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,i>>>=0,r>>>=0,this===e)return 0;for(var o=r-i,l=n-t,s=Math.min(o,l),u=this.slice(i,r),c=e.slice(t,n),d=0;dr)&&(n=r),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return y(this,e,t,n);case"utf8":case"utf-8":return _(this,e,t,n);case"ascii":return b(this,e,t,n);case"latin1":case"binary":return w(this,e,t,n);case"base64":return x(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return M(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},a.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var k=4096;function C(e,t,n){var i="";n=Math.min(e.length,n);for(var r=t;rr)&&(n=r);for(var o="",l=t;ln)throw new RangeError("Trying to access beyond buffer length")}function P(e,t,n,i,r,o){if(!a.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>r||te.length)throw new RangeError("Index out of range")}function I(e,t,n,i){t<0&&(t=65535+t+1);for(var r=0,o=Math.min(e.length-n,2);r>>8*(i?r:1-r)}function j(e,t,n,i){t<0&&(t=4294967295+t+1);for(var r=0,o=Math.min(e.length-n,4);r>>8*(i?r:3-r)&255}function R(e,t,n,i,r,o){if(n+i>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function A(e,t,n,i,o){return o||R(e,0,n,4),r.write(e,t,n,i,23,4),n+4}function Y(e,t,n,i,o){return o||R(e,0,n,8),r.write(e,t,n,i,52,8),n+8}a.prototype.slice=function(e,t){var n,i=this.length;if(e=~~e,t=void 0===t?i:~~t,e<0?(e+=i)<0&&(e=0):e>i&&(e=i),t<0?(t+=i)<0&&(t=0):t>i&&(t=i),t0&&(r*=256);)i+=this[e+--t]*r;return i},a.prototype.readUInt8=function(e,t){return t||D(e,1,this.length),this[e]},a.prototype.readUInt16LE=function(e,t){return t||D(e,2,this.length),this[e]|this[e+1]<<8},a.prototype.readUInt16BE=function(e,t){return t||D(e,2,this.length),this[e]<<8|this[e+1]},a.prototype.readUInt32LE=function(e,t){return t||D(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},a.prototype.readUInt32BE=function(e,t){return t||D(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},a.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var i=this[e],r=1,o=0;++o=(r*=128)&&(i-=Math.pow(2,8*t)),i},a.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var i=t,r=1,o=this[e+--i];i>0&&(r*=256);)o+=this[e+--i]*r;return o>=(r*=128)&&(o-=Math.pow(2,8*t)),o},a.prototype.readInt8=function(e,t){return t||D(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},a.prototype.readInt16LE=function(e,t){t||D(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},a.prototype.readInt16BE=function(e,t){t||D(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},a.prototype.readInt32LE=function(e,t){return t||D(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},a.prototype.readInt32BE=function(e,t){return t||D(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},a.prototype.readFloatLE=function(e,t){return t||D(e,4,this.length),r.read(this,e,!0,23,4)},a.prototype.readFloatBE=function(e,t){return t||D(e,4,this.length),r.read(this,e,!1,23,4)},a.prototype.readDoubleLE=function(e,t){return t||D(e,8,this.length),r.read(this,e,!0,52,8)},a.prototype.readDoubleBE=function(e,t){return t||D(e,8,this.length),r.read(this,e,!1,52,8)},a.prototype.writeUIntLE=function(e,t,n,i){e=+e,t|=0,n|=0,i||P(this,e,t,n,Math.pow(2,8*n)-1,0);var r=1,o=0;for(this[t]=255&e;++o=0&&(o*=256);)this[t+r]=e/o&255;return t+n},a.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,1,255,0),a.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},a.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,65535,0),a.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):I(this,e,t,!0),t+2},a.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,65535,0),a.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):I(this,e,t,!1),t+2},a.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,4294967295,0),a.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):j(this,e,t,!0),t+4},a.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,4294967295,0),a.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):j(this,e,t,!1),t+4},a.prototype.writeIntLE=function(e,t,n,i){if(e=+e,t|=0,!i){var r=Math.pow(2,8*n-1);P(this,e,t,n,r-1,-r)}var o=0,l=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+n},a.prototype.writeIntBE=function(e,t,n,i){if(e=+e,t|=0,!i){var r=Math.pow(2,8*n-1);P(this,e,t,n,r-1,-r)}var o=n-1,l=1,s=0;for(this[t+o]=255&e;--o>=0&&(l*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/l>>0)-s&255;return t+n},a.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,1,127,-128),a.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},a.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,32767,-32768),a.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):I(this,e,t,!0),t+2},a.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,32767,-32768),a.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):I(this,e,t,!1),t+2},a.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,2147483647,-2147483648),a.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):j(this,e,t,!0),t+4},a.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),a.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):j(this,e,t,!1),t+4},a.prototype.writeFloatLE=function(e,t,n){return A(this,e,t,!0,n)},a.prototype.writeFloatBE=function(e,t,n){return A(this,e,t,!1,n)},a.prototype.writeDoubleLE=function(e,t,n){return Y(this,e,t,!0,n)},a.prototype.writeDoubleBE=function(e,t,n){return Y(this,e,t,!1,n)},a.prototype.copy=function(e,t,n,i){if(n||(n=0),i||0===i||(i=this.length),t>=e.length&&(t=e.length),t||(t=0),i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-t=0;--r)e[r+t]=this[r+n];else if(o<1e3||!a.TYPED_ARRAY_SUPPORT)for(r=0;r>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o55295&&n<57344){if(!r){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(l+1===i){(t-=3)>-1&&o.push(239,191,189);continue}r=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(t-=3)>-1&&o.push(239,191,189);if(r=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function V(e){return i.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(N,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function H(e,t,n,i){for(var r=0;r=t.length||r>=e.length);++r)t[r+n]=e[r];return r}}).call(t,n("DuR2"))},"F+2e":function(e,t,n){!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"},n={"\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 n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})}(n("PJh5"))},F7Al:function(e,t,n){"use strict";var i=n("TToO").__extends,r=function(e){function t(){var t=e.call(this,"no elements in sequence");this.name=t.name="EmptyError",this.stack=t.stack,this.message=t.message}return i(t,e),t}(Error);t.EmptyError=r},F9Yt:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("CGGv");t.timeInterval=function(e){return void 0===e&&(e=o.async),function(t){return t.lift(new s(e))}};var l=function(e,t){this.value=e,this.interval=t};t.TimeInterval=l;var s=function(){function e(e){this.scheduler=e}return e.prototype.call=function(e,t){return t.subscribe(new a(e,this.scheduler))},e}(),a=function(e){function t(t,n){e.call(this,t),this.scheduler=n,this.lastTime=0,this.lastTime=n.now()}return i(t,e),t.prototype._next=function(e){var t=this.scheduler.now(),n=t-this.lastTime;this.lastTime=t,this.destination.next(new l(e,n))},t}(r.Subscriber)},FA5e:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("RRVv"),l=n("jBEF");t.ArrayLikeObservable=function(e){function t(t,n){e.call(this),this.arrayLike=t,this.scheduler=n,n||1!==t.length||(this._isScalar=!0,this.value=t[0])}return i(t,e),t.create=function(e,n){var i=e.length;return 0===i?new l.EmptyObservable:1===i?new o.ScalarObservable(e[0],n):new t(e,n)},t.dispatch=function(e){var t=e.arrayLike,n=e.index,i=e.subscriber;i.closed||(n>=e.length?i.complete():(i.next(t[n]),e.index=n+1,this.schedule(e)))},t.prototype._subscribe=function(e){var n=this.arrayLike,i=this.scheduler,r=n.length;if(i)return i.schedule(t.dispatch,0,{arrayLike:n,index:0,length:r,subscriber:e});for(var o=0;oc))return!1;var p=a.get(e);if(p&&a.get(t))return p==t;var h=-1,f=!0,m=2&n?new i:void 0;for(a.set(e,t),a.set(t,e);++h=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:function(){try{return window.localStorage}catch(e){}}(),t.colors=["lightseagreen","forestgreen","goldenrod","dodgerblue","darkorchid","crimson"],t.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}},t.enable(r())}).call(t,n("W2nU"))},"G++c":function(e,t,n){!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,n){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}})}(n("PJh5"))},G0Wc:function(e,t,n){var i=n("yCNF"),r=n("HT7L"),o=n("8gK5"),l=Object.prototype.hasOwnProperty;e.exports=function(e){if(!i(e))return o(e);var t=r(e),n=[];for(var s in e)("constructor"!=s||!t&&l.call(e,s))&&n.push(s);return n}},G2xm:function(e,t){e.exports=function(e){return this.__data__.has(e)}},G8ar:function(e,t,n){var i=n("cdq7"),r=n("8++/"),o=n("i6nN");e.exports=function(e,t,n){return t==t?o(e,t,n):i(e,r,n)}},GIjk:function(e,t,n){"use strict";var i=n("TToO").__extends,r=function(e){function t(t){e.call(this),this.errors=t;var n=Error.call(this,t?t.length+" errors occurred during unsubscription:\n "+t.map(function(e,t){return t+1+") "+e.toString()}).join("\n "):"");this.name=n.name="UnsubscriptionError",this.stack=n.stack,this.message=n.message}return i(t,e),t}(Error);t.UnsubscriptionError=r},GK6M:function(e,t,n){"use strict";t.a=function(e){return i=e,o};var i,r=n("fKB6");function o(){try{return i.apply(this,arguments)}catch(e){return r.a.e=e,r.a}}},GMVP:function(e,t){var n,i;n=window,i=document,L.drawVersion="1.0.2",L.Draw={},L.drawLocal={draw:{toolbar:{actions:{title:"Cancel drawing",text:"Cancel"},finish:{title:"Finish drawing",text:"Finish"},undo:{title:"Delete last point drawn",text:"Delete last point"},buttons:{polyline:"Draw a polyline",polygon:"Draw a polygon",rectangle:"Draw a rectangle",circle:"Draw a circle",marker:"Draw a marker",circlemarker:"Draw a circlemarker"}},handlers:{circle:{tooltip:{start:"Click and drag to draw circle."},radius:"Radius"},circlemarker:{tooltip:{start:"Click map to place circle marker."}},marker:{tooltip:{start:"Click map to place marker."}},polygon:{tooltip:{start:"Click to start drawing shape.",cont:"Click to continue drawing shape.",end:"Click first point to close this shape."}},polyline:{error:"Error: shape edges cannot cross!",tooltip:{start:"Click to start drawing line.",cont:"Click to continue drawing line.",end:"Click last point to finish line."}},rectangle:{tooltip:{start:"Click and drag to draw rectangle."}},simpleshape:{tooltip:{end:"Release mouse to finish drawing."}}}},edit:{toolbar:{actions:{save:{title:"Save changes",text:"Save"},cancel:{title:"Cancel editing, discards all changes",text:"Cancel"},clearAll:{title:"Clear all layers",text:"Clear All"}},buttons:{edit:"Edit layers",editDisabled:"No layers to edit",remove:"Delete layers",removeDisabled:"No layers to delete"}},handlers:{edit:{tooltip:{text:"Drag handles or markers to edit features.",subtext:"Click cancel to undo changes."}},remove:{tooltip:{text:"Click on a feature to remove."}}}}},L.Draw.Event={},L.Draw.Event.CREATED="draw:created",L.Draw.Event.EDITED="draw:edited",L.Draw.Event.DELETED="draw:deleted",L.Draw.Event.DRAWSTART="draw:drawstart",L.Draw.Event.DRAWSTOP="draw:drawstop",L.Draw.Event.DRAWVERTEX="draw:drawvertex",L.Draw.Event.EDITSTART="draw:editstart",L.Draw.Event.EDITMOVE="draw:editmove",L.Draw.Event.EDITRESIZE="draw:editresize",L.Draw.Event.EDITVERTEX="draw:editvertex",L.Draw.Event.EDITSTOP="draw:editstop",L.Draw.Event.DELETESTART="draw:deletestart",L.Draw.Event.DELETESTOP="draw:deletestop",L.Draw.Event.TOOLBAROPENED="draw:toolbaropened",L.Draw.Event.TOOLBARCLOSED="draw:toolbarclosed",L.Draw.Event.MARKERCONTEXT="draw:markercontext",L.Draw=L.Draw||{},L.Draw.Feature=L.Handler.extend({initialize:function(e,t){this._map=e,this._container=e._container,this._overlayPane=e._panes.overlayPane,this._popupPane=e._panes.popupPane,t&&t.shapeOptions&&(t.shapeOptions=L.Util.extend({},this.options.shapeOptions,t.shapeOptions)),L.setOptions(this,t);var n=L.version.split(".");1===parseInt(n[0],10)&&parseInt(n[1],10)>=2?L.Draw.Feature.include(L.Evented.prototype):L.Draw.Feature.include(L.Mixin.Events)},enable:function(){this._enabled||(L.Handler.prototype.enable.call(this),this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DRAWSTART,{layerType:this.type}))},disable:function(){this._enabled&&(L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DRAWSTOP,{layerType:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var e=this._map;e&&(L.DomUtil.disableTextSelection(),e.getContainer().focus(),this._tooltip=new L.Draw.Tooltip(this._map),L.DomEvent.on(this._container,"keyup",this._cancelDrawing,this))},removeHooks:function(){this._map&&(L.DomUtil.enableTextSelection(),this._tooltip.dispose(),this._tooltip=null,L.DomEvent.off(this._container,"keyup",this._cancelDrawing,this))},setOptions:function(e){L.setOptions(this,e)},_fireCreatedEvent:function(e){this._map.fire(L.Draw.Event.CREATED,{layer:e,layerType:this.type})},_cancelDrawing:function(e){27===e.keyCode&&(this._map.fire("draw:canceled",{layerType:this.type}),this.disable())}}),L.Draw.Polyline=L.Draw.Feature.extend({statics:{TYPE:"polyline"},Poly:L.Polyline,options:{allowIntersection:!0,repeatMode:!1,drawError:{color:"#b00b00",timeout:2500},icon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon"}),touchIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-touch-icon"}),guidelineDistance:20,maxGuideLineLength:4e3,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!1,clickable:!0},metric:!0,feet:!0,nautic:!1,showLength:!0,zIndexOffset:2e3,factor:1,maxPoints:0},initialize:function(e,t){L.Browser.touch&&(this.options.icon=this.options.touchIcon),this.options.drawError.message=L.drawLocal.draw.handlers.polyline.error,t&&t.drawError&&(t.drawError=L.Util.extend({},this.options.drawError,t.drawError)),this.type=L.Draw.Polyline.TYPE,L.Draw.Feature.prototype.initialize.call(this,e,t)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._markers=[],this._markerGroup=new L.LayerGroup,this._map.addLayer(this._markerGroup),this._poly=new L.Polyline([],this.options.shapeOptions),this._tooltip.updateContent(this._getTooltipText()),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("mouseout",this._onMouseOut,this).on("mousemove",this._onMouseMove,this).on("mousedown",this._onMouseDown,this).on("mouseup",this._onMouseUp,this).addTo(this._map),this._map.on("mouseup",this._onMouseUp,this).on("mousemove",this._onMouseMove,this).on("zoomlevelschange",this._onZoomEnd,this).on("touchstart",this._onTouch,this).on("zoomend",this._onZoomEnd,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._clearHideErrorTimeout(),this._cleanUpShape(),this._map.removeLayer(this._markerGroup),delete this._markerGroup,delete this._markers,this._map.removeLayer(this._poly),delete this._poly,this._mouseMarker.off("mousedown",this._onMouseDown,this).off("mouseout",this._onMouseOut,this).off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._clearGuides(),this._map.off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this).off("zoomlevelschange",this._onZoomEnd,this).off("zoomend",this._onZoomEnd,this).off("touchstart",this._onTouch,this).off("click",this._onTouch,this)},deleteLastVertex:function(){if(!(this._markers.length<=1)){var e=this._markers.pop(),t=this._poly,n=t.getLatLngs(),i=n.splice(-1,1)[0];this._poly.setLatLngs(n),this._markerGroup.removeLayer(e),t.getLatLngs().length<2&&this._map.removeLayer(t),this._vertexChanged(i,!1)}},addVertex:function(e){this._markers.length>=2&&!this.options.allowIntersection&&this._poly.newLatLngIntersects(e)?this._showErrorTooltip():(this._errorShown&&this._hideErrorTooltip(),this._markers.push(this._createMarker(e)),this._poly.addLatLng(e),2===this._poly.getLatLngs().length&&this._map.addLayer(this._poly),this._vertexChanged(e,!0))},completeShape:function(){this._markers.length<=1||(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable())},_finishShape:function(){var e=this._poly._defaultShape?this._poly._defaultShape():this._poly.getLatLngs(),t=this._poly.newLatLngIntersects(e[e.length-1]);!this.options.allowIntersection&&t||!this._shapeIsValid()?this._showErrorTooltip():(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable())},_shapeIsValid:function(){return!0},_onZoomEnd:function(){null!==this._markers&&this._updateGuide()},_onMouseMove:function(e){var t=this._map.mouseEventToLayerPoint(e.originalEvent),n=this._map.layerPointToLatLng(t);this._currentLatLng=n,this._updateTooltip(n),this._updateGuide(t),this._mouseMarker.setLatLng(n),L.DomEvent.preventDefault(e.originalEvent)},_vertexChanged:function(e,t){this._map.fire(L.Draw.Event.DRAWVERTEX,{layers:this._markerGroup}),this._updateFinishHandler(),this._updateRunningMeasure(e,t),this._clearGuides(),this._updateTooltip()},_onMouseDown:function(e){if(!this._clickHandled&&!this._touchHandled&&!this._disableMarkers){this._onMouseMove(e),this._clickHandled=!0,this._disableNewMarkers();var t=e.originalEvent;this._startPoint.call(this,t.clientX,t.clientY)}},_startPoint:function(e,t){this._mouseDownOrigin=L.point(e,t)},_onMouseUp:function(e){var t=e.originalEvent;this._endPoint.call(this,t.clientX,t.clientY,e),this._clickHandled=null},_endPoint:function(e,t,i){if(this._mouseDownOrigin){var r=L.point(e,t).distanceTo(this._mouseDownOrigin),o=this._calculateFinishDistance(i.latlng);this.options.maxPoints>1&&this.options.maxPoints==this._markers.length+1?(this.addVertex(i.latlng),this._finishShape()):o<10&&L.Browser.touch?this._finishShape():Math.abs(r)<9*(n.devicePixelRatio||1)&&this.addVertex(i.latlng),this._enableNewMarkers()}this._mouseDownOrigin=null},_onTouch:function(e){var t,n,i=e.originalEvent;!i.touches||!i.touches[0]||this._clickHandled||this._touchHandled||this._disableMarkers||(t=i.touches[0].clientX,n=i.touches[0].clientY,this._disableNewMarkers(),this._touchHandled=!0,this._startPoint.call(this,t,n),this._endPoint.call(this,t,n,e),this._touchHandled=null),this._clickHandled=null},_onMouseOut:function(){this._tooltip&&this._tooltip._onMouseOut.call(this._tooltip)},_calculateFinishDistance:function(e){var t;if(this._markers.length>0){var n;if(this.type===L.Draw.Polyline.TYPE)n=this._markers[this._markers.length-1];else{if(this.type!==L.Draw.Polygon.TYPE)return 1/0;n=this._markers[0]}var i=this._map.latLngToContainerPoint(n.getLatLng()),r=new L.Marker(e,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset}),o=this._map.latLngToContainerPoint(r.getLatLng());t=i.distanceTo(o)}else t=1/0;return t},_updateFinishHandler:function(){var e=this._markers.length;e>1&&this._markers[e-1].on("click",this._finishShape,this),e>2&&this._markers[e-2].off("click",this._finishShape,this)},_createMarker:function(e){var t=new L.Marker(e,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset});return this._markerGroup.addLayer(t),t},_updateGuide:function(e){var t=this._markers?this._markers.length:0;t>0&&(e=e||this._map.latLngToLayerPoint(this._currentLatLng),this._clearGuides(),this._drawGuide(this._map.latLngToLayerPoint(this._markers[t-1].getLatLng()),e))},_updateTooltip:function(e){var t=this._getTooltipText();e&&this._tooltip.updatePosition(e),this._errorShown||this._tooltip.updateContent(t)},_drawGuide:function(e,t){var n,i,r,o=Math.floor(Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))),l=this.options.maxGuideLineLength,s=o>l?o-l:this.options.guidelineDistance;for(this._guidesContainer||(this._guidesContainer=L.DomUtil.create("div","leaflet-draw-guides",this._overlayPane));s1&&this._markers[this._markers.length-1].off("click",this._finishShape,this)},_fireCreatedEvent:function(){var e=new this.Poly(this._poly.getLatLngs(),this.options.shapeOptions);L.Draw.Feature.prototype._fireCreatedEvent.call(this,e)}}),L.Draw.Polygon=L.Draw.Polyline.extend({statics:{TYPE:"polygon"},Poly:L.Polygon,options:{showArea:!1,showLength:!1,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},metric:!0,feet:!0,nautic:!1,precision:{}},initialize:function(e,t){L.Draw.Polyline.prototype.initialize.call(this,e,t),this.type=L.Draw.Polygon.TYPE},_updateFinishHandler:function(){var e=this._markers.length;1===e&&this._markers[0].on("click",this._finishShape,this),e>2&&(this._markers[e-1].on("dblclick",this._finishShape,this),e>3&&this._markers[e-2].off("dblclick",this._finishShape,this))},_getTooltipText:function(){var e,t;return 0===this._markers.length?e=L.drawLocal.draw.handlers.polygon.tooltip.start:this._markers.length<3?(e=L.drawLocal.draw.handlers.polygon.tooltip.cont,t=this._getMeasurementString()):(e=L.drawLocal.draw.handlers.polygon.tooltip.end,t=this._getMeasurementString()),{text:e,subtext:t}},_getMeasurementString:function(){var e=this._area,t="";return e||this.options.showLength?(this.options.showLength&&(t=L.Draw.Polyline.prototype._getMeasurementString.call(this)),e&&(t+="
    "+L.GeometryUtil.readableArea(e,this.options.metric,this.options.precision)),t):null},_shapeIsValid:function(){return this._markers.length>=3},_vertexChanged:function(e,t){var n;!this.options.allowIntersection&&this.options.showArea&&(n=this._poly.getLatLngs(),this._area=L.GeometryUtil.geodesicArea(n)),L.Draw.Polyline.prototype._vertexChanged.call(this,e,t)},_cleanUpShape:function(){var e=this._markers.length;e>0&&(this._markers[0].off("click",this._finishShape,this),e>2&&this._markers[e-1].off("dblclick",this._finishShape,this))}}),L.SimpleShape={},L.Draw.SimpleShape=L.Draw.Feature.extend({options:{repeatMode:!1},initialize:function(e,t){this._endLabelText=L.drawLocal.draw.handlers.simpleshape.tooltip.end,L.Draw.Feature.prototype.initialize.call(this,e,t)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._mapDraggable=this._map.dragging.enabled(),this._mapDraggable&&this._map.dragging.disable(),this._container.style.cursor="crosshair",this._tooltip.updateContent({text:this._initialLabelText}),this._map.on("mousedown",this._onMouseDown,this).on("mousemove",this._onMouseMove,this).on("touchstart",this._onMouseDown,this).on("touchmove",this._onMouseMove,this),i.addEventListener("touchstart",L.DomEvent.preventDefault,{passive:!1}))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._mapDraggable&&this._map.dragging.enable(),this._container.style.cursor="",this._map.off("mousedown",this._onMouseDown,this).off("mousemove",this._onMouseMove,this).off("touchstart",this._onMouseDown,this).off("touchmove",this._onMouseMove,this),L.DomEvent.off(i,"mouseup",this._onMouseUp,this),L.DomEvent.off(i,"touchend",this._onMouseUp,this),i.removeEventListener("touchstart",L.DomEvent.preventDefault),this._shape&&(this._map.removeLayer(this._shape),delete this._shape)),this._isDrawing=!1},_getTooltipText:function(){return{text:this._endLabelText}},_onMouseDown:function(e){this._isDrawing=!0,this._startLatLng=e.latlng,L.DomEvent.on(i,"mouseup",this._onMouseUp,this).on(i,"touchend",this._onMouseUp,this).preventDefault(e.originalEvent)},_onMouseMove:function(e){var t=e.latlng;this._tooltip.updatePosition(t),this._isDrawing&&(this._tooltip.updateContent(this._getTooltipText()),this._drawShape(t))},_onMouseUp:function(){this._shape&&this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()}}),L.Draw.Rectangle=L.Draw.SimpleShape.extend({statics:{TYPE:"rectangle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,showArea:!0,clickable:!0},metric:!0},initialize:function(e,t){this.type=L.Draw.Rectangle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.rectangle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,e,t)},disable:function(){this._enabled&&(this._isCurrentlyTwoClickDrawing=!1,L.Draw.SimpleShape.prototype.disable.call(this))},_onMouseUp:function(e){this._shape||this._isCurrentlyTwoClickDrawing?this._isCurrentlyTwoClickDrawing&&!function(e,t){for(;(e=e.parentElement)&&!e.classList.contains("leaflet-pane"););return e}(e.target)||L.Draw.SimpleShape.prototype._onMouseUp.call(this):this._isCurrentlyTwoClickDrawing=!0},_drawShape:function(e){this._shape?this._shape.setBounds(new L.LatLngBounds(this._startLatLng,e)):(this._shape=new L.Rectangle(new L.LatLngBounds(this._startLatLng,e),this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var e=new L.Rectangle(this._shape.getBounds(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,e)},_getTooltipText:function(){var e,t,n,i=L.Draw.SimpleShape.prototype._getTooltipText.call(this),r=this.options.showArea;return this._shape&&(e=this._shape._defaultShape?this._shape._defaultShape():this._shape.getLatLngs(),t=L.GeometryUtil.geodesicArea(e),n=r?L.GeometryUtil.readableArea(t,this.options.metric):""),{text:i.text,subtext:n}}}),L.Draw.Marker=L.Draw.Feature.extend({statics:{TYPE:"marker"},options:{icon:new L.Icon.Default,repeatMode:!1,zIndexOffset:2e3},initialize:function(e,t){this.type=L.Draw.Marker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.marker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,e,t)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._tooltip.updateContent({text:this._initialLabelText}),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("click",this._onClick,this).addTo(this._map),this._map.on("mousemove",this._onMouseMove,this),this._map.on("click",this._onTouch,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._map.off("click",this._onClick,this).off("click",this._onTouch,this),this._marker&&(this._marker.off("click",this._onClick,this),this._map.removeLayer(this._marker),delete this._marker),this._mouseMarker.off("click",this._onClick,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._map.off("mousemove",this._onMouseMove,this))},_onMouseMove:function(e){var t=e.latlng;this._tooltip.updatePosition(t),this._mouseMarker.setLatLng(t),this._marker?(t=this._mouseMarker.getLatLng(),this._marker.setLatLng(t)):(this._marker=this._createMarker(t),this._marker.on("click",this._onClick,this),this._map.on("click",this._onClick,this).addLayer(this._marker))},_createMarker:function(e){return new L.Marker(e,{icon:this.options.icon,zIndexOffset:this.options.zIndexOffset})},_onClick:function(){this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()},_onTouch:function(e){this._onMouseMove(e),this._onClick()},_fireCreatedEvent:function(){var e=new L.Marker.Touch(this._marker.getLatLng(),{icon:this.options.icon});L.Draw.Feature.prototype._fireCreatedEvent.call(this,e)}}),L.Draw.CircleMarker=L.Draw.Marker.extend({statics:{TYPE:"circlemarker"},options:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0,zIndexOffset:2e3},initialize:function(e,t){this.type=L.Draw.CircleMarker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circlemarker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,e,t)},_fireCreatedEvent:function(){var e=new L.CircleMarker(this._marker.getLatLng(),this.options);L.Draw.Feature.prototype._fireCreatedEvent.call(this,e)},_createMarker:function(e){return new L.CircleMarker(e,this.options)}}),L.Draw.Circle=L.Draw.SimpleShape.extend({statics:{TYPE:"circle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showRadius:!0,metric:!0,feet:!0,nautic:!1},initialize:function(e,t){this.type=L.Draw.Circle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,e,t)},_drawShape:function(e){if(L.GeometryUtil.isVersion07x())var t=this._startLatLng.distanceTo(e);else t=this._map.distance(this._startLatLng,e);this._shape?this._shape.setRadius(t):(this._shape=new L.Circle(this._startLatLng,t,this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var e=new L.Circle(this._startLatLng,this._shape.getRadius(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,e)},_onMouseMove:function(e){var t,n=e.latlng,i=this.options.showRadius,r=this.options.metric;if(this._tooltip.updatePosition(n),this._isDrawing){this._drawShape(n),t=this._shape.getRadius().toFixed(1);var o="";i&&(o=L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(t,r,this.options.feet,this.options.nautic)),this._tooltip.updateContent({text:this._endLabelText,subtext:o})}}}),L.Edit=L.Edit||{},L.Edit.Marker=L.Handler.extend({initialize:function(e,t){this._marker=e,L.setOptions(this,t)},addHooks:function(){var e=this._marker;e.dragging.enable(),e.on("dragend",this._onDragEnd,e),this._toggleMarkerHighlight()},removeHooks:function(){var e=this._marker;e.dragging.disable(),e.off("dragend",this._onDragEnd,e),this._toggleMarkerHighlight()},_onDragEnd:function(e){var t=e.target;t.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:t})},_toggleMarkerHighlight:function(){var e=this._marker._icon;e&&(e.style.display="none",L.DomUtil.hasClass(e,"leaflet-edit-marker-selected")?(L.DomUtil.removeClass(e,"leaflet-edit-marker-selected"),this._offsetMarker(e,-4)):(L.DomUtil.addClass(e,"leaflet-edit-marker-selected"),this._offsetMarker(e,4)),e.style.display="")},_offsetMarker:function(e,t){var n=parseInt(e.style.marginTop,10)-t,i=parseInt(e.style.marginLeft,10)-t;e.style.marginTop=n+"px",e.style.marginLeft=i+"px"}}),L.Marker.addInitHook(function(){L.Edit.Marker&&(this.editing=new L.Edit.Marker(this),this.options.editable&&this.editing.enable())}),L.Edit=L.Edit||{},L.Edit.Poly=L.Handler.extend({initialize:function(e){this.latlngs=[e._latlngs],e._holes&&(this.latlngs=this.latlngs.concat(e._holes)),this._poly=e,this._poly.on("revert-edited",this._updateLatLngs,this)},_defaultShape:function(){return L.Polyline._flat?L.Polyline._flat(this._poly._latlngs)?this._poly._latlngs:this._poly._latlngs[0]:this._poly._latlngs},_eachVertexHandler:function(e){for(var t=0;te&&(n._index+=t)})},_createMiddleMarker:function(e,t){var n,i,r,o=this._getMiddleLatLng(e,t),l=this._createMarker(o);l.setOpacity(.6),e._middleRight=t._middleLeft=l,i=function(){l.off("touchmove",i,this);var r=t._index;l._index=r,l.off("click",n,this).on("click",this._onMarkerClick,this),o.lat=l.getLatLng().lat,o.lng=l.getLatLng().lng,this._spliceLatLngs(r,0,o),this._markers.splice(r,0,l),l.setOpacity(1),this._updateIndexes(r,1),t._index++,this._updatePrevNext(e,l),this._updatePrevNext(l,t),this._poly.fire("editstart")},r=function(){l.off("dragstart",i,this),l.off("dragend",r,this),l.off("touchmove",i,this),this._createMiddleMarker(e,l),this._createMiddleMarker(l,t)},l.on("click",n=function(){i.call(this),r.call(this),this._fireEdit()},this).on("dragstart",i,this).on("dragend",r,this).on("touchmove",i,this),this._markerGroup.addLayer(l)},_updatePrevNext:function(e,t){e&&(e._next=t),t&&(t._prev=e)},_getMiddleLatLng:function(e,t){var n=this._poly._map,i=n.project(e.getLatLng()),r=n.project(t.getLatLng());return n.unproject(i._add(r)._divideBy(2))}}),L.Polyline.addInitHook(function(){this.editing||(L.Edit.Poly&&(this.editing=new L.Edit.Poly(this),this.options.editable&&this.editing.enable()),this.on("add",function(){this.editing&&this.editing.enabled()&&this.editing.addHooks()}),this.on("remove",function(){this.editing&&this.editing.enabled()&&this.editing.removeHooks()}))}),L.Edit=L.Edit||{},L.Edit.SimpleShape=L.Handler.extend({options:{moveIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move"}),resizeIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize"}),touchMoveIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move leaflet-touch-icon"}),touchResizeIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize leaflet-touch-icon"})},initialize:function(e,t){L.Browser.touch&&(this.options.moveIcon=this.options.touchMoveIcon,this.options.resizeIcon=this.options.touchResizeIcon),this._shape=e,L.Util.setOptions(this,t)},addHooks:function(){var e=this._shape;this._shape._map&&(this._map=this._shape._map,e.setStyle(e.options.editing),e._map&&(this._map=e._map,this._markerGroup||this._initMarkers(),this._map.addLayer(this._markerGroup)))},removeHooks:function(){var e=this._shape;if(e.setStyle(e.options.original),e._map){this._unbindMarker(this._moveMarker);for(var t=0,n=this._resizeMarkers.length;t"+L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(radius,!0,this.options.feet,this.options.nautic)}),this._shape.setRadius(radius),this._map.fire(L.Draw.Event.EDITRESIZE,{layer:this._shape})}}),L.Circle.addInitHook(function(){L.Edit.Circle&&(this.editing=new L.Edit.Circle(this),this.options.editable&&this.editing.enable()),this.on("add",function(){this.editing&&this.editing.enabled()&&this.editing.addHooks()}),this.on("remove",function(){this.editing&&this.editing.enabled()&&this.editing.removeHooks()})}),L.Map.mergeOptions({touchExtend:!0}),L.Map.TouchExtend=L.Handler.extend({initialize:function(e){this._map=e,this._container=e._container,this._pane=e._panes.overlayPane},addHooks:function(){L.DomEvent.on(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.on(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.on(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.on(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.on(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.on(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.on(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.on(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.on(this._container,"touchleave",this._onTouchLeave,this))},removeHooks:function(){L.DomEvent.off(this._container,"touchstart",this._onTouchStart),L.DomEvent.off(this._container,"touchend",this._onTouchEnd),L.DomEvent.off(this._container,"touchmove",this._onTouchMove),this._detectIE()?(L.DomEvent.off(this._container,"MSPointerDowm",this._onTouchStart),L.DomEvent.off(this._container,"MSPointerUp",this._onTouchEnd),L.DomEvent.off(this._container,"MSPointerMove",this._onTouchMove),L.DomEvent.off(this._container,"MSPointerCancel",this._onTouchCancel)):(L.DomEvent.off(this._container,"touchcancel",this._onTouchCancel),L.DomEvent.off(this._container,"touchleave",this._onTouchLeave))},_touchEvent:function(e,t){var n={};if(void 0!==e.touches){if(!e.touches.length)return;n=e.touches[0]}else{if("touch"!==e.pointerType)return;if(n=e,!this._filterClick(e))return}var i=this._map.mouseEventToContainerPoint(n),r=this._map.mouseEventToLayerPoint(n),o=this._map.layerPointToLatLng(r);this._map.fire(t,{latlng:o,layerPoint:r,containerPoint:i,pageX:n.pageX,pageY:n.pageY,originalEvent:e})},_filterClick:function(e){var t=e.timeStamp||e.originalEvent.timeStamp,n=L.DomEvent._lastClick&&t-L.DomEvent._lastClick;return n&&n>100&&n<500||e.target._simulatedClick&&!e._simulated?(L.DomEvent.stop(e),!1):(L.DomEvent._lastClick=t,!0)},_onTouchStart:function(e){this._map._loaded&&this._touchEvent(e,"touchstart")},_onTouchEnd:function(e){this._map._loaded&&this._touchEvent(e,"touchend")},_onTouchCancel:function(e){if(this._map._loaded){var t="touchcancel";this._detectIE()&&(t="pointercancel"),this._touchEvent(e,t)}},_onTouchLeave:function(e){this._map._loaded&&this._touchEvent(e,"touchleave")},_onTouchMove:function(e){this._map._loaded&&this._touchEvent(e,"touchmove")},_detectIE:function(){var e=n.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);if(e.indexOf("Trident/")>0){var i=e.indexOf("rv:");return parseInt(e.substring(i+3,e.indexOf(".",i)),10)}var r=e.indexOf("Edge/");return r>0&&parseInt(e.substring(r+5,e.indexOf(".",r)),10)}}),L.Map.addInitHook("addHandler","touchExtend",L.Map.TouchExtend),L.Marker.Touch=L.Marker.extend({_initInteraction:function(){return this.addInteractiveTarget?L.Marker.prototype._initInteraction.apply(this):this._initInteractionLegacy()},_initInteractionLegacy:function(){if(this.options.clickable){var e=this._icon,t=["dblclick","mousedown","mouseover","mouseout","contextmenu","touchstart","touchend","touchmove"];t.concat(this._detectIE?["MSPointerDown","MSPointerUp","MSPointerMove","MSPointerCancel"]:["touchcancel"]),L.DomUtil.addClass(e,"leaflet-clickable"),L.DomEvent.on(e,"click",this._onMouseClick,this),L.DomEvent.on(e,"keypress",this._onKeyPress,this);for(var n=0;n0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);if(e.indexOf("Trident/")>0){var i=e.indexOf("rv:");return parseInt(e.substring(i+3,e.indexOf(".",i)),10)}var r=e.indexOf("Edge/");return r>0&&parseInt(e.substring(r+5,e.indexOf(".",r)),10)}}),L.LatLngUtil={cloneLatLngs:function(e){for(var t=[],n=0,i=e.length;n2){for(var l=0;l1&&(n=n+l+s[1])}return n},readableArea:function(t,n,i){var r,o;return i=L.Util.extend({},e,i),n?(o=["ha","m"],type=typeof n,"string"===type?o=[n]:"boolean"!==type&&(o=n),r=t>=1e6&&-1!==o.indexOf("km")?L.GeometryUtil.formattedNumber(1e-6*t,i.km)+" km\xb2":t>=1e4&&-1!==o.indexOf("ha")?L.GeometryUtil.formattedNumber(1e-4*t,i.ha)+" ha":L.GeometryUtil.formattedNumber(t,i.m)+" m\xb2"):r=(t/=.836127)>=3097600?L.GeometryUtil.formattedNumber(t/3097600,i.mi)+" mi\xb2":t>=4840?L.GeometryUtil.formattedNumber(t/4840,i.ac)+" acres":L.GeometryUtil.formattedNumber(t,i.yd)+" yd\xb2",r},readableDistance:function(t,n,i,r,o){var l;switch(o=L.Util.extend({},e,o),n?"string"==typeof n?n:"metric":i?"feet":r?"nauticalMile":"yards"){case"metric":l=t>1e3?L.GeometryUtil.formattedNumber(t/1e3,o.km)+" km":L.GeometryUtil.formattedNumber(t,o.m)+" m";break;case"feet":t*=3.28083,l=L.GeometryUtil.formattedNumber(t,o.ft)+" ft";break;case"nauticalMile":t*=.53996,l=L.GeometryUtil.formattedNumber(t/1e3,o.nm)+" nm";break;case"yards":default:l=(t*=1.09361)>1760?L.GeometryUtil.formattedNumber(t/1760,o.mi)+" miles":L.GeometryUtil.formattedNumber(t,o.yd)+" yd"}return l},isVersion07x:function(){var e=L.version.split(".");return 0===parseInt(e[0],10)&&7===parseInt(e[1],10)}})}(),L.Util.extend(L.LineUtil,{segmentsIntersect:function(e,t,n,i){return this._checkCounterclockwise(e,n,i)!==this._checkCounterclockwise(t,n,i)&&this._checkCounterclockwise(e,t,n)!==this._checkCounterclockwise(e,t,i)},_checkCounterclockwise:function(e,t,n){return(n.y-e.y)*(t.x-e.x)>(t.y-e.y)*(n.x-e.x)}}),L.Polyline.include({intersects:function(){var e,t=this._getProjectedPoints(),n=t?t.length:0;if(this._tooFewPointsForIntersection())return!1;for(e=n-1;e>=3;e--)if(this._lineSegmentsIntersectsRange(t[e-1],t[e],e-2))return!0;return!1},newLatLngIntersects:function(e,t){return!!this._map&&this.newPointIntersects(this._map.latLngToLayerPoint(e),t)},newPointIntersects:function(e,t){var n=this._getProjectedPoints(),i=n?n.length:0,r=n?n[i-1]:null,o=i-2;return!this._tooFewPointsForIntersection(1)&&this._lineSegmentsIntersectsRange(r,e,o,t?1:0)},_tooFewPointsForIntersection:function(e){var t=this._getProjectedPoints(),n=t?t.length:0;return!t||(n+=e||0)<=3},_lineSegmentsIntersectsRange:function(e,t,n,i){var r=this._getProjectedPoints();i=i||0;for(var o=n;o>i;o--)if(L.LineUtil.segmentsIntersect(e,t,r[o-1],r[o]))return!0;return!1},_getProjectedPoints:function(){if(!this._defaultShape)return this._originalPoints;for(var e=[],t=this._defaultShape(),n=0;n=2?L.Toolbar.include(L.Evented.prototype):L.Toolbar.include(L.Mixin.Events)},enabled:function(){return null!==this._activeMode},disable:function(){this.enabled()&&this._activeMode.handler.disable()},addToolbar:function(e){var t,n=L.DomUtil.create("div","leaflet-draw-section"),i=0,r=this._toolbarClass||"",o=this.getModeHandlers(e);for(this._toolbarContainer=L.DomUtil.create("div","leaflet-draw-toolbar leaflet-bar"),this._map=e,t=0;t0&&this._singleLineLabel&&(L.DomUtil.removeClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!1):(L.DomUtil.addClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!0),this._container.innerHTML=(e.subtext.length>0?''+e.subtext+"
    ":"")+""+e.text+"",e.text||e.subtext?(this._visible=!0,this._container.style.visibility="inherit"):(this._visible=!1,this._container.style.visibility="hidden"),this):this},updatePosition:function(e){var t=this._map.latLngToLayerPoint(e),n=this._container;return this._container&&(this._visible&&(n.style.visibility="inherit"),L.DomUtil.setPosition(n,t)),this},showAsError:function(){return this._container&&L.DomUtil.addClass(this._container,"leaflet-error-draw-tooltip"),this},removeError:function(){return this._container&&L.DomUtil.removeClass(this._container,"leaflet-error-draw-tooltip"),this},_onMouseOut:function(){this._container&&(this._container.style.visibility="hidden")}}),L.DrawToolbar=L.Toolbar.extend({statics:{TYPE:"draw"},options:{polyline:{},polygon:{},rectangle:{},circle:{},marker:{},circlemarker:{}},initialize:function(e){for(var t in this.options)this.options.hasOwnProperty(t)&&e[t]&&(e[t]=L.extend({},this.options[t],e[t]));this._toolbarClass="leaflet-draw-draw",L.Toolbar.prototype.initialize.call(this,e)},getModeHandlers:function(e){return[{enabled:this.options.polyline,handler:new L.Draw.Polyline(e,this.options.polyline),title:L.drawLocal.draw.toolbar.buttons.polyline},{enabled:this.options.polygon,handler:new L.Draw.Polygon(e,this.options.polygon),title:L.drawLocal.draw.toolbar.buttons.polygon},{enabled:this.options.rectangle,handler:new L.Draw.Rectangle(e,this.options.rectangle),title:L.drawLocal.draw.toolbar.buttons.rectangle},{enabled:this.options.circle,handler:new L.Draw.Circle(e,this.options.circle),title:L.drawLocal.draw.toolbar.buttons.circle},{enabled:this.options.marker,handler:new L.Draw.Marker(e,this.options.marker),title:L.drawLocal.draw.toolbar.buttons.marker},{enabled:this.options.circlemarker,handler:new L.Draw.CircleMarker(e,this.options.circlemarker),title:L.drawLocal.draw.toolbar.buttons.circlemarker}]},getActions:function(e){return[{enabled:e.completeShape,title:L.drawLocal.draw.toolbar.finish.title,text:L.drawLocal.draw.toolbar.finish.text,callback:e.completeShape,context:e},{enabled:e.deleteLastVertex,title:L.drawLocal.draw.toolbar.undo.title,text:L.drawLocal.draw.toolbar.undo.text,callback:e.deleteLastVertex,context:e},{title:L.drawLocal.draw.toolbar.actions.title,text:L.drawLocal.draw.toolbar.actions.text,callback:this.disable,context:this}]},setOptions:function(e){for(var t in L.setOptions(this,e),this._modes)this._modes.hasOwnProperty(t)&&e.hasOwnProperty(t)&&this._modes[t].handler.setOptions(e[t])}}),L.EditToolbar=L.Toolbar.extend({statics:{TYPE:"edit"},options:{edit:{selectedPathOptions:{dashArray:"10, 10",fill:!0,fillColor:"#fe57a1",fillOpacity:.1,maintainColor:!1}},remove:{},poly:null,featureGroup:null},initialize:function(e){e.edit&&(void 0===e.edit.selectedPathOptions&&(e.edit.selectedPathOptions=this.options.edit.selectedPathOptions),e.edit.selectedPathOptions=L.extend({},this.options.edit.selectedPathOptions,e.edit.selectedPathOptions)),e.remove&&(e.remove=L.extend({},this.options.remove,e.remove)),e.poly&&(e.poly=L.extend({},this.options.poly,e.poly)),this._toolbarClass="leaflet-draw-edit",L.Toolbar.prototype.initialize.call(this,e),this._selectedFeatureCount=0},getModeHandlers:function(e){var t=this.options.featureGroup;return[{enabled:this.options.edit,handler:new L.EditToolbar.Edit(e,{featureGroup:t,selectedPathOptions:this.options.edit.selectedPathOptions,poly:this.options.poly}),title:L.drawLocal.edit.toolbar.buttons.edit},{enabled:this.options.remove,handler:new L.EditToolbar.Delete(e,{featureGroup:t}),title:L.drawLocal.edit.toolbar.buttons.remove}]},getActions:function(e){var t=[{title:L.drawLocal.edit.toolbar.actions.save.title,text:L.drawLocal.edit.toolbar.actions.save.text,callback:this._save,context:this},{title:L.drawLocal.edit.toolbar.actions.cancel.title,text:L.drawLocal.edit.toolbar.actions.cancel.text,callback:this.disable,context:this}];return e.removeAllLayers&&t.push({title:L.drawLocal.edit.toolbar.actions.clearAll.title,text:L.drawLocal.edit.toolbar.actions.clearAll.text,callback:this._clearAllLayers,context:this}),t},addToolbar:function(e){var t=L.Toolbar.prototype.addToolbar.call(this,e);return this._checkDisabled(),this.options.featureGroup.on("layeradd layerremove",this._checkDisabled,this),t},removeToolbar:function(){this.options.featureGroup.off("layeradd layerremove",this._checkDisabled,this),L.Toolbar.prototype.removeToolbar.call(this)},disable:function(){this.enabled()&&(this._activeMode.handler.revertLayers(),L.Toolbar.prototype.disable.call(this))},_save:function(){this._activeMode.handler.save(),this._activeMode&&this._activeMode.handler.disable()},_clearAllLayers:function(){this._activeMode.handler.removeAllLayers(),this._activeMode&&this._activeMode.handler.disable()},_checkDisabled:function(){var e,t=0!==this.options.featureGroup.getLayers().length;this.options.edit&&(e=this._modes[L.EditToolbar.Edit.TYPE].button,t?L.DomUtil.removeClass(e,"leaflet-disabled"):L.DomUtil.addClass(e,"leaflet-disabled"),e.setAttribute("title",t?L.drawLocal.edit.toolbar.buttons.edit:L.drawLocal.edit.toolbar.buttons.editDisabled)),this.options.remove&&(e=this._modes[L.EditToolbar.Delete.TYPE].button,t?L.DomUtil.removeClass(e,"leaflet-disabled"):L.DomUtil.addClass(e,"leaflet-disabled"),e.setAttribute("title",t?L.drawLocal.edit.toolbar.buttons.remove:L.drawLocal.edit.toolbar.buttons.removeDisabled))}}),L.EditToolbar.Edit=L.Handler.extend({statics:{TYPE:"edit"},initialize:function(e,t){if(L.Handler.prototype.initialize.call(this,e),L.setOptions(this,t),this._featureGroup=t.featureGroup,!(this._featureGroup instanceof L.FeatureGroup))throw new Error("options.featureGroup must be a L.FeatureGroup");this._uneditedLayerProps={},this.type=L.EditToolbar.Edit.TYPE;var n=L.version.split(".");1===parseInt(n[0],10)&&parseInt(n[1],10)>=2?L.EditToolbar.Edit.include(L.Evented.prototype):L.EditToolbar.Edit.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.EDITSTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._featureGroup.on("layeradd",this._enableLayerEdit,this).on("layerremove",this._disableLayerEdit,this))},disable:function(){this._enabled&&(this._featureGroup.off("layeradd",this._enableLayerEdit,this).off("layerremove",this._disableLayerEdit,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.EDITSTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var e=this._map;e&&(e.getContainer().focus(),this._featureGroup.eachLayer(this._enableLayerEdit,this),this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}),e._editTooltip=this._tooltip,this._updateTooltip(),this._map.on("mousemove",this._onMouseMove,this).on("touchmove",this._onMouseMove,this).on("MSPointerMove",this._onMouseMove,this).on(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},removeHooks:function(){this._map&&(this._featureGroup.eachLayer(this._disableLayerEdit,this),this._uneditedLayerProps={},this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this).off("touchmove",this._onMouseMove,this).off("MSPointerMove",this._onMouseMove,this).off(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},revertLayers:function(){this._featureGroup.eachLayer(function(e){this._revertLayer(e)},this)},save:function(){var e=new L.LayerGroup;this._featureGroup.eachLayer(function(t){t.edited&&(e.addLayer(t),t.edited=!1)}),this._map.fire(L.Draw.Event.EDITED,{layers:e})},_backupLayer:function(e){var t=L.Util.stamp(e);this._uneditedLayerProps[t]||(e instanceof L.Polyline||e instanceof L.Polygon||e instanceof L.Rectangle?this._uneditedLayerProps[t]={latlngs:L.LatLngUtil.cloneLatLngs(e.getLatLngs())}:e instanceof L.Circle?this._uneditedLayerProps[t]={latlng:L.LatLngUtil.cloneLatLng(e.getLatLng()),radius:e.getRadius()}:(e instanceof L.Marker||e instanceof L.CircleMarker)&&(this._uneditedLayerProps[t]={latlng:L.LatLngUtil.cloneLatLng(e.getLatLng())}))},_getTooltipText:function(){return{text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}},_updateTooltip:function(){this._tooltip.updateContent(this._getTooltipText())},_revertLayer:function(e){var t=L.Util.stamp(e);e.edited=!1,this._uneditedLayerProps.hasOwnProperty(t)&&(e instanceof L.Polyline||e instanceof L.Polygon||e instanceof L.Rectangle?e.setLatLngs(this._uneditedLayerProps[t].latlngs):e instanceof L.Circle?(e.setLatLng(this._uneditedLayerProps[t].latlng),e.setRadius(this._uneditedLayerProps[t].radius)):(e instanceof L.Marker||e instanceof L.CircleMarker)&&e.setLatLng(this._uneditedLayerProps[t].latlng),e.fire("revert-edited",{layer:e}))},_enableLayerEdit:function(e){var t,n,i=e.layer||e.target||e;this._backupLayer(i),this.options.poly&&(n=L.Util.extend({},this.options.poly),i.options.poly=n),this.options.selectedPathOptions&&((t=L.Util.extend({},this.options.selectedPathOptions)).maintainColor&&(t.color=i.options.color,t.fillColor=i.options.fillColor),i.options.original=L.extend({},i.options),i.options.editing=t),i instanceof L.Marker?(i.editing&&i.editing.enable(),i.dragging.enable(),i.on("dragend",this._onMarkerDragEnd).on("touchmove",this._onTouchMove,this).on("MSPointerMove",this._onTouchMove,this).on("touchend",this._onMarkerDragEnd,this).on("MSPointerUp",this._onMarkerDragEnd,this)):i.editing.enable()},_disableLayerEdit:function(e){var t=e.layer||e.target||e;t.edited=!1,t.editing&&t.editing.disable(),delete t.options.editing,delete t.options.original,this._selectedPathOptions&&(t instanceof L.Marker?this._toggleMarkerHighlight(t):(t.setStyle(t.options.previousOptions),delete t.options.previousOptions)),t instanceof L.Marker?(t.dragging.disable(),t.off("dragend",this._onMarkerDragEnd,this).off("touchmove",this._onTouchMove,this).off("MSPointerMove",this._onTouchMove,this).off("touchend",this._onMarkerDragEnd,this).off("MSPointerUp",this._onMarkerDragEnd,this)):t.editing.disable()},_onMouseMove:function(e){this._tooltip.updatePosition(e.latlng)},_onMarkerDragEnd:function(e){var t=e.target;t.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:t})},_onTouchMove:function(e){var t=this._map.mouseEventToLayerPoint(e.originalEvent.changedTouches[0]),n=this._map.layerPointToLatLng(t);e.target.setLatLng(n)},_hasAvailableLayers:function(){return 0!==this._featureGroup.getLayers().length}}),L.EditToolbar.Delete=L.Handler.extend({statics:{TYPE:"remove"},initialize:function(e,t){if(L.Handler.prototype.initialize.call(this,e),L.Util.setOptions(this,t),this._deletableLayers=this.options.featureGroup,!(this._deletableLayers instanceof L.FeatureGroup))throw new Error("options.featureGroup must be a L.FeatureGroup");this.type=L.EditToolbar.Delete.TYPE;var n=L.version.split(".");1===parseInt(n[0],10)&&parseInt(n[1],10)>=2?L.EditToolbar.Delete.include(L.Evented.prototype):L.EditToolbar.Delete.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DELETESTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._deletableLayers.on("layeradd",this._enableLayerDelete,this).on("layerremove",this._disableLayerDelete,this))},disable:function(){this._enabled&&(this._deletableLayers.off("layeradd",this._enableLayerDelete,this).off("layerremove",this._disableLayerDelete,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DELETESTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var e=this._map;e&&(e.getContainer().focus(),this._deletableLayers.eachLayer(this._enableLayerDelete,this),this._deletedLayers=new L.LayerGroup,this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.remove.tooltip.text}),this._map.on("mousemove",this._onMouseMove,this))},removeHooks:function(){this._map&&(this._deletableLayers.eachLayer(this._disableLayerDelete,this),this._deletedLayers=null,this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this))},revertLayers:function(){this._deletedLayers.eachLayer(function(e){this._deletableLayers.addLayer(e),e.fire("revert-deleted",{layer:e})},this)},save:function(){this._map.fire(L.Draw.Event.DELETED,{layers:this._deletedLayers})},removeAllLayers:function(){this._deletableLayers.eachLayer(function(e){this._removeLayer({layer:e})},this),this.save()},_enableLayerDelete:function(e){(e.layer||e.target||e).on("click",this._removeLayer,this)},_disableLayerDelete:function(e){var t=e.layer||e.target||e;t.off("click",this._removeLayer,this),this._deletedLayers.removeLayer(t)},_removeLayer:function(e){var t=e.layer||e.target||e;this._deletableLayers.removeLayer(t),this._deletedLayers.addLayer(t),t.fire("deleted")},_onMouseMove:function(e){this._tooltip.updatePosition(e.latlng)},_hasAvailableLayers:function(){return 0!==this._deletableLayers.getLayers().length}})},GR1s:function(e,t,n){"use strict";var i=n("N3AT");t.exhaust=function(){return i.exhaust()(this)}},GThk:function(e,t){Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;{}()]?(?:[^@;{}()]|&|#\{\$[-\w]+\})+(?=\s*\{(?:\}|\s|[^}]+[:{][^}]+))/m,inside:{parent:{pattern:/&/,alias:"important"},placeholder:/%[-\w]+/,variable:/\$[-\w]+|#\{\$[-\w]+\}/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.scss.property={pattern:/(?:[\w-]|\$[-\w]+|#\{\$[-\w]+\})+(?=\s*:)/i,inside:{variable:/\$[-\w]+|#\{\$[-\w]+\}/}},Prism.languages.insertBefore("scss","important",{variable:/\$[-\w]+|#\{\$[-\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-\w]+/,alias:"selector"},statement:{pattern:/\B!(?:default|optional)\b/i,alias:"keyword"},boolean:/\b(?:true|false)\b/,null:/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.languages.scss},GZqV:function(e,t,n){"use strict";var i=n("dw63");t.find=function(e,t){return i.find(e,t)(this)}},Gb0N:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf");t.RangeObservable=function(e){function t(t,n,i){e.call(this),this.start=t,this._count=n,this.scheduler=i}return i(t,e),t.create=function(e,n,i){return void 0===e&&(e=0),void 0===n&&(n=0),new t(e,n,i)},t.dispatch=function(e){var t=e.start,n=e.index,i=e.subscriber;n>=e.count?i.complete():(i.next(t),i.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))},t.prototype._subscribe=function(e){var n=0,i=this.start,r=this._count,o=this.scheduler;if(o)return o.schedule(t.dispatch,0,{index:n,count:r,start:i,subscriber:e});for(;;){if(n++>=r){e.complete();break}if(e.next(i++),e.closed)break}},t}(r.Observable)},GcOx:function(e,t,n){"use strict";var i=n("rCTf"),r=n("cjT5");i.Observable.prototype.debounce=r.debounce},GiG9:function(e,t){Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b(?:0[xX][\dA-Fa-f]+|0[bB][01]+|0[oO][0-7]+|NaN|Infinity)\b|(?:\b\d+\.?\d*|\B\.\d+)(?:[Ee][+-]?\d+)?/,function:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*\()/i,operator:/-[-=]?|\+[+=]?|!=?=?|<>?>?=?|=(?:==?|>)?|&[&=]?|\|[|=]?|\*\*?=?|\/=?|~|\^=?|%=?|\?|\.{3}/}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(\[[^\]\r\n]+]|\\.|[^/\\\[\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})\]]))/,lookbehind:!0,greedy:!0},"function-variable":{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=\s*(?:function\b|(?:\([^()]*\)|[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/i,alias:"function"},constant:/\b[A-Z][A-Z\d_]*\b/}),Prism.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${[^}]+}|[^\\`])*`/,greedy:!0,inside:{interpolation:{pattern:/\${[^}]+}/,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}}}),Prism.languages.javascript["template-string"].inside.interpolation.inside.rest=Prism.languages.javascript,Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/()[\s\S]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript",greedy:!0}}),Prism.languages.js=Prism.languages.javascript},GrS7:function(e,t,n){!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}})}(n("PJh5"))},Gvdl:function(e,t,n){"use strict";var i=n("EEr4");t.Subject=i.Subject,t.AnonymousSubject=i.AnonymousSubject;var r=n("rCTf");t.Observable=r.Observable,n("1k2o"),n("U85J"),n("XlOA"),n("1ZrL"),n("zO2v"),n("AGQa"),n("iJMh"),n("S35O"),n("E7Yq"),n("LHw1"),n("c3t5"),n("f1gJ"),n("iUY6"),n("SUuD"),n("fICK"),n("O8p4"),n("9WjZ"),n("1APj"),n("1VLl"),n("g0nL"),n("ENML"),n("vQ+N"),n("h0qH"),n("jdeX"),n("iod1"),n("1Nls"),n("lh/Z"),n("nsuO"),n("+KN+"),n("Di9Q"),n("jDQW"),n("Whbc"),n("6Yye"),n("k27J"),n("qp8k"),n("/rMs"),n("CMrU"),n("jvbR"),n("16m9"),n("/181"),n("zC23"),n("GcOx"),n("aV5h"),n("NJh0"),n("94IA"),n("FE8a"),n("qhgQ"),n("q3ik"),n("tYwL"),n("EnA3"),n("Yfq7"),n("SSeX"),n("sT3i"),n("Mvzr"),n("wUn1"),n("tDJK"),n("hs6U"),n("W1/H"),n("okk1"),n("6s76"),n("LppN"),n("2395"),n("qcjU"),n("CYDS"),n("JJSU"),n("KRCp"),n("1NVl"),n("+pb+"),n("6gFN"),n("Ye9U"),n("CToi"),n("EGMK"),n("JPC0"),n("HcJ8"),n("VfeM"),n("SGWz"),n("Rxv9"),n("j7ye"),n("p1Um"),n("rLWm"),n("iIfT"),n("adqA"),n("xOQQ"),n("4Ie8"),n("nDCe"),n("PvYY"),n("0TiQ"),n("48bo"),n("UNGF"),n("XZ4o"),n("y6Vm"),n("y3IE"),n("10Gq"),n("B2te"),n("6hPP"),n("zJQZ"),n("UFi/"),n("WQmy"),n("s616"),n("JQ6u"),n("9qUs"),n("WnEV"),n("8szd"),n("VaQ6"),n("/lY3"),n("oHQS"),n("UyzR"),n("uCY4"),n("tuHt"),n("hzF8"),n("77/N"),n("T3fU"),n("EoAl"),n("PMZt"),n("jF50"),n("XKof"),n("cDAr"),n("a0Ch"),n("voL5"),n("7axH"),n("eErF"),n("7FaQ"),n("q4U+"),n("PwiB"),n("xFXl"),n("gDzJ"),n("fiy1"),n("ixac"),n("tQRI");var o=n("B00U");t.Subscription=o.Subscription;var l=n("mmVS");t.Subscriber=l.Subscriber;var s=n("5c/I");t.AsyncSubject=s.AsyncSubject;var a=n("MQMf");t.ReplaySubject=a.ReplaySubject;var u=n("TfWX");t.BehaviorSubject=u.BehaviorSubject;var c=n("sIYO");t.ConnectableObservable=c.ConnectableObservable;var d=n("8GmM");t.Notification=d.Notification;var p=n("F7Al");t.EmptyError=p.EmptyError;var h=n("8Z8y");t.ArgumentOutOfRangeError=h.ArgumentOutOfRangeError;var f=n("IZVw");t.ObjectUnsubscribedError=f.ObjectUnsubscribedError;var m=n("cmqr");t.TimeoutError=m.TimeoutError;var g=n("GIjk");t.UnsubscriptionError=g.UnsubscriptionError;var v=n("sVus");t.TimeInterval=v.TimeInterval;var y=n("tyXZ");t.Timestamp=y.Timestamp;var _=n("u1gx");t.TestScheduler=_.TestScheduler;var b=n("q0UB");t.VirtualTimeScheduler=b.VirtualTimeScheduler;var w=n("Dc2k");t.AjaxResponse=w.AjaxResponse,t.AjaxError=w.AjaxError,t.AjaxTimeoutError=w.AjaxTimeoutError;var x=n("9eyw");t.pipe=x.pipe;var M=n("Uqs8"),T=n("CGGv"),L=n("RA5l"),k=n("HwIK"),C=n("r8ZY"),S=n("cdmN"),E=n("mbVC"),O=n("W+Sr");t.operators=O,t.Scheduler={asap:M.asap,queue:L.queue,animationFrame:k.animationFrame,async:T.async},t.Symbol={rxSubscriber:C.rxSubscriber,observable:E.observable,iterator:S.iterator}},HAGj:function(e,t,n){var i=n("i4ON"),r=n("bIjD"),o=n("ZGh9"),l=n("yCNF"),s=n("Ubhr");e.exports=function(e,t,n,a){if(!l(e))return e;for(var u=-1,c=(t=r(t,e)).length,d=c-1,p=e;null!=p&&++u-1&&(this.count=i-1),n.subscribe(this._unsubscribeAndRecycle())}},t}(r.Subscriber)},HwIK:function(e,t,n){"use strict";var i=n("gi2R"),r=n("ww7A");t.animationFrame=new r.AnimationFrameScheduler(i.AnimationFrameAction)},Hxdr:function(e,t){e.exports=function(e,t){for(var n=-1,i=null==e?0:e.length,r=Array(i);++n]?|>[=>]?|[&|^~]|\b(?:or|and|not)\b/,punctuation:/[{}[\];(),.:]/}},"Ilb/":function(e,t,n){var i=n("Kzd6");e.exports=function(e,t){var n=t?i(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}},Imsy:function(e,t,n){"use strict";var i=n("8FDs");t.windowWhen=function(e){return i.windowWhen(e)(this)}},InFw:function(e,t,n){var i=Object.assign||function(e){for(var t=1;t target element passed in options to operate, none was found","error")},t.prototype.uninstall=function(){this.form.removeEventListener("submit",this.handleFormSubmit),this.uppy.off("upload",this.handleUploadStart),this.uppy.off("complete",this.handleSuccess)},t}(r)},IsV2:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.defaultThrottleConfig={leading:!0,trailing:!1},t.throttle=function(e,n){return void 0===n&&(n=t.defaultThrottleConfig),function(t){return t.lift(new l(e,n.leading,n.trailing))}};var l=function(){function e(e,t,n){this.durationSelector=e,this.leading=t,this.trailing=n}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.durationSelector,this.leading,this.trailing))},e}(),s=function(e){function t(t,n,i,r){e.call(this,t),this.destination=t,this.durationSelector=n,this._leading=i,this._trailing=r,this._hasTrailingValue=!1}return i(t,e),t.prototype._next=function(e){if(this.throttled)this._trailing&&(this._hasTrailingValue=!0,this._trailingValue=e);else{var t=this.tryDurationSelector(e);t&&this.add(this.throttled=o.subscribeToResult(this,t)),this._leading&&(this.destination.next(e),this._trailing&&(this._hasTrailingValue=!0,this._trailingValue=e))}},t.prototype.tryDurationSelector=function(e){try{return this.durationSelector(e)}catch(e){return this.destination.error(e),null}},t.prototype._unsubscribe=function(){var e=this.throttled;this._trailingValue=null,this._hasTrailingValue=!1,e&&(this.remove(e),this.throttled=null,e.unsubscribe())},t.prototype._sendTrailing=function(){var e=this;e.throttled&&e._trailing&&e._hasTrailingValue&&(e.destination.next(e._trailingValue),this._trailingValue=null,this._hasTrailingValue=!1)},t.prototype.notifyNext=function(e,t,n,i,r){this._sendTrailing(),this._unsubscribe()},t.prototype.notifyComplete=function(){this._sendTrailing(),this._unsubscribe()},t}(r.OuterSubscriber)},Ivio:function(e,t,n){"use strict";var i,r=(i=n("x4eB"))&&i.__esModule?i:{default:i},o=n("v0ZI"),l=void 0;if("undefined"!=typeof window){var s=window,a=s.Blob;l=s.XMLHttpRequest&&a&&"function"==typeof a.prototype.slice}else l=!0;e.exports={Upload:r.default,isSupported:l,canStoreURLs:o.canStoreURLs,defaultOptions:r.default.defaultOptions}},J009:function(e,t,n){var i=n("aCM0"),r=n("UnEC");e.exports=function(e){return"number"==typeof e||r(e)&&"[object Number]"==i(e)}},J2yf:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.convertAPIOptions=function(e){return e.resStore&&(e.resources=e.resStore),e.ns&&e.ns.defaultNs?(e.defaultNS=e.ns.defaultNs,e.ns=e.ns.namespaces):e.defaultNS=e.ns||"translation",e.fallbackToDefaultNS&&e.defaultNS&&(e.fallbackNS=e.defaultNS),e.saveMissing=e.sendMissing,e.saveMissingTo=e.sendMissingTo||"current",e.returnNull=!e.fallbackOnNull,e.returnEmptyString=!e.fallbackOnEmpty,e.returnObjects=e.returnObjectTrees,e.joinArrays="\n",e.returnedObjectHandler=e.objectTreeKeyHandler,e.parseMissingKeyHandler=e.parseMissingKey,e.appendNamespaceToMissingKey=!0,e.nsSeparator=e.nsseparator,e.keySeparator=e.keyseparator,"sprintf"===e.shortcutFunction&&(e.overloadTranslationOptionHandler=function(e){for(var t=[],n=1;n=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},JyYQ:function(e,t,n){var i=n("d+aQ"),r=n("eKBv"),o=n("wSKX"),l=n("NGEn"),s=n("iL3P");e.exports=function(e){return"function"==typeof e?e:null==e?o:"object"==typeof e?l(e)?r(e[0],e[1]):i(e):s(e)}},JzlZ:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.skip=function(e){return function(t){return t.lift(new o(e))}};var o=function(){function e(e){this.total=e}return e.prototype.call=function(e,t){return t.subscribe(new l(e,this.total))},e}(),l=function(e){function t(t,n){e.call(this,t),this.total=n,this.count=0}return i(t,e),t.prototype._next=function(e){++this.count>this.total&&this.destination.next(e)},t}(r.Subscriber)},KHaY:function(e,t,n){"use strict";var i=n("SoJr");t.zipAll=function(e){return function(t){return t.lift(new i.ZipOperator(e))}}},KKz1:function(e,t,n){"use strict";var i=n("CGGv"),r=n("IsV2"),o=n("yK6r");t.throttleTime=function(e,t,n){return void 0===t&&(t=i.async),void 0===n&&(n=r.defaultThrottleConfig),o.throttleTime(e,t,n)(this)}},KLoZ:function(e,t,n){"use strict";var i=n("VOfZ");function r(e){for(var t=[],n=1;n300?n(t.statusText):t.json().then(function(t){return o.uppy.setFileState(e.id,{serverToken:t.token}),e=o.getFile(e.id)})}).then(function(e){return o.connectToServerSocket(e)}).then(function(){t()}).catch(function(e){n(new Error(e))})})},t.prototype.connectToServerSocket=function(e){var t=this;return new r(function(n,i){var r=e.serverToken,o=c(e.remote.host),l=new s({target:o+"/api/"+r});t.uploaderSockets[e.id]=l,t.uploaderEvents[e.id]=h(t.uppy),t.onFileRemove(e.id,function(){l.send("pause",{}),n("upload "+e.id+" was removed")}),t.onPause(e.id,function(e){l.send(e?"pause":"resume",{})}),t.onPauseAll(e.id,function(){return l.send("pause",{})}),t.onCancelAll(e.id,function(){return l.send("pause",{})}),t.onResumeAll(e.id,function(){e.error&&l.send("pause",{}),l.send("resume",{})}),t.onRetry(e.id,function(){l.send("pause",{}),l.send("resume",{})}),t.onRetryAll(e.id,function(){l.send("pause",{}),l.send("resume",{})}),e.isPaused&&l.send("pause",{}),l.on("progress",function(n){return u(t,n,e)}),l.on("error",function(n){t.uppy.emit("upload-error",e,new Error(n.error)),i(new Error(n.error))}),l.on("success",function(i){t.uppy.emit("upload-success",e,i,i.url),t.resetUploaderReferences(e.id),n()})})},t.prototype.getFile=function(e){return this.uppy.state.files[e]},t.prototype.updateFile=function(e){var t,n=i({},this.uppy.state.files,((t={})[e.id]=e,t));this.uppy.setState({files:n})},t.prototype.onReceiveUploadUrl=function(e,t){var n=this.getFile(e.id);if(n&&(!n.tus||n.tus.uploadUrl!==t)&&this.opts.resume){this.uppy.log("[Tus] Storing upload url");var r=i({},n,{tus:i({},n.tus,{uploadUrl:t})});this.updateFile(r)}},t.prototype.onFileRemove=function(e,t){this.uploaderEvents[e].on("file-removed",function(n){e===n.id&&t(n.id)})},t.prototype.onPause=function(e,t){this.uploaderEvents[e].on("upload-pause",function(n,i){e===n&&t(i)})},t.prototype.onRetry=function(e,t){this.uploaderEvents[e].on("upload-retry",function(n){e===n&&t()})},t.prototype.onRetryAll=function(e,t){var n=this;this.uploaderEvents[e].on("retry-all",function(i){n.uppy.getFile(e)&&t()})},t.prototype.onPauseAll=function(e,t){var n=this;this.uploaderEvents[e].on("pause-all",function(){n.uppy.getFile(e)&&t()})},t.prototype.onCancelAll=function(e,t){var n=this;this.uploaderEvents[e].on("cancel-all",function(){n.uppy.getFile(e)&&t()})},t.prototype.onResumeAll=function(e,t){var n=this;this.uploaderEvents[e].on("resume-all",function(){n.uppy.getFile(e)&&t()})},t.prototype.uploadFiles=function(e){var t=this,n=e.map(function(n,i){var o=parseInt(i,10)+1,l=e.length;return n.error?r.reject(new Error(n.error)):(t.uppy.log("uploading "+o+" of "+l),n.isRemote?t.uploadRemote(n,o,l):t.upload(n,o,l))});return d(n)},t.prototype.handleUpload=function(e){var t=this;if(0===e.length)return this.uppy.log("Tus: no files to upload!"),r.resolve();this.uppy.log("Tus is uploading...");var n=e.map(function(e){return t.uppy.getFile(e)});return this.uploadFiles(n).then(function(){return null})},t.prototype.addResumableUploadsCapabilityFlag=function(){var e=i({},this.uppy.getState().capabilities);e.resumableUploads=!0,this.uppy.setState({capabilities:e})},t.prototype.install=function(){this.addResumableUploadsCapabilityFlag(),this.uppy.addUploader(this.handleUpload),this.uppy.on("reset-progress",this.handleResetProgress),this.opts.autoRetry&&this.uppy.on("back-online",this.uppy.retryAll)},t.prototype.uninstall=function(){this.uppy.removeUploader(this.handleUpload),this.opts.autoRetry&&this.uppy.off("back-online",this.uppy.retryAll)},t}(o)},L0g0:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n("4ukJ"),r=function(){function e(){}return e.toBrowserLanguageDetector=function(t){var n=function(){function n(){e.logger.debug("[$LanguageDetectorAdapter][constructor] LanguageDetector wrapper has been instantiated")}return n.prototype.init=function(){},n.prototype.detect=function(){var n=t.detect();return e.logger.debug("[$LanguageDetectorAdapter][detect] Detect method returns the language as",n),n},n.prototype.cacheUserLanguage=function(){},n}();return n.type="languageDetector",n},e}();r.logger=i.LoggerFactory.makeLogger(r),t.LanguageDetectorAdapter=r},L2Hk:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("SKH6"),o=n("rCTf"),l=n("B00U");t.FromEventPatternObservable=function(e){function t(t,n,i){e.call(this),this.addHandler=t,this.removeHandler=n,this.selector=i}return i(t,e),t.create=function(e,n,i){return new t(e,n,i)},t.prototype._subscribe=function(e){var t=this,n=this.removeHandler,i=this.selector?function(){for(var n=[],i=0;i11?n?"\u0db4.\u0dc0.":"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4":n?"\u0db4\u0dd9.\u0dc0.":"\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4"}})}(n("PJh5"))},"LhE+":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("CURp"),l=n("wAkD");t.IfObservable=function(e){function t(t,n,i){e.call(this),this.condition=t,this.thenSource=n,this.elseSource=i}return i(t,e),t.create=function(e,n,i){return new t(e,n,i)},t.prototype._subscribe=function(e){return new s(e,this.condition,this.thenSource,this.elseSource)},t}(r.Observable);var s=function(e){function t(t,n,i,r){e.call(this,t),this.condition=n,this.thenSource=i,this.elseSource=r,this.tryIf()}return i(t,e),t.prototype.tryIf=function(){var e=this.condition,t=this.thenSource,n=this.elseSource;try{var i=e()?t:n;i?this.add(o.subscribeToResult(this,i)):this._complete()}catch(e){this._error(e)}},t}(l.OuterSubscriber)},LkuQ:function(e,t,n){var i=n("v9aJ");e.exports=function(e,t){var n;return i(e,function(e,i,r){return!(n=t(e,i,r))}),!!n}},Llwz:function(e,t,n){"use strict";var i=n("5LW/");t.window=function(e){return i.window(e)(this)}},Lndg:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp"),l=n("Ou9t");t.distinct=function(e,t){return function(n){return n.lift(new s(e,t))}};var s=function(){function e(e,t){this.keySelector=e,this.flushes=t}return e.prototype.call=function(e,t){return t.subscribe(new a(e,this.keySelector,this.flushes))},e}(),a=function(e){function t(t,n,i){e.call(this,t),this.keySelector=n,this.values=new l.Set,i&&this.add(o.subscribeToResult(this,i))}return i(t,e),t.prototype.notifyNext=function(e,t,n,i,r){this.values.clear()},t.prototype.notifyError=function(e,t){this._error(e)},t.prototype._next=function(e){this.keySelector?this._useKeySelector(e):this._finalizeNext(e,e)},t.prototype._useKeySelector=function(e){var t,n=this.destination;try{t=this.keySelector(e)}catch(e){return void n.error(e)}this._finalizeNext(t,e)},t.prototype._finalizeNext=function(e,t){var n=this.values;n.has(e)||(n.add(e),this.destination.next(t))},t}(r.OuterSubscriber);t.DistinctSubscriber=a},LppN:function(e,t,n){"use strict";var i=n("rCTf"),r=n("C4lF");i.Observable.prototype.ignoreElements=r.ignoreElements},Lrp7:function(e,t,n){var i=n("PD94"),r=n("MuA4"),o=n("JyYQ"),l=n("NGEn"),s=n("zBOP");e.exports=function(e,t,n){var a=l(e)?i:r;return n&&s(e,t,n)&&(t=void 0),a(e,o(t,3))}},LxNc:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.catchError=function(e){return function(t){var n=new l(e),i=t.lift(n);return n.caught=i}};var l=function(){function e(e){this.selector=e}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.selector,this.caught))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.selector=n,this.caught=i}return i(t,e),t.prototype.error=function(t){if(!this.isStopped){var n=void 0;try{n=this.selector(t,this.caught)}catch(t){return void e.prototype.error.call(this,t)}this._unsubscribeAndRecycle(),this.add(o.subscribeToResult(this,n))}},t}(r.OuterSubscriber)},M1c9:function(e,t){e.exports=function(e,t,n){var i=-1,r=e.length;t<0&&(t=-t>r?0:r+t),(n=n>r?r:n)<0&&(n+=r),r=t>n?0:n-t>>>0,t>>>=0;for(var o=Array(r);++i>>1,I=[["ary",w],["bind",f],["bindKey",m],["curry",v],["curryRight",y],["flip",M],["partial",_],["partialRight",b],["rearg",x]],j="[object Arguments]",R="[object Array]",A="[object AsyncFunction]",Y="[object Boolean]",N="[object Date]",F="[object DOMException]",V="[object Error]",H="[object Function]",U="[object GeneratorFunction]",B="[object Map]",z="[object Number]",W="[object Null]",q="[object Object]",G="[object Proxy]",Z="[object RegExp]",J="[object Set]",$="[object String]",K="[object Symbol]",Q="[object Undefined]",X="[object WeakMap]",ee="[object ArrayBuffer]",te="[object DataView]",ne="[object Float32Array]",ie="[object Float64Array]",re="[object Int8Array]",oe="[object Int16Array]",le="[object Int32Array]",se="[object Uint8Array]",ae="[object Uint8ClampedArray]",ue="[object Uint16Array]",ce="[object Uint32Array]",de=/\b__p \+= '';/g,pe=/\b(__p \+=) '' \+/g,he=/(__e\(.*?\)|\b__t\)) \+\n'';/g,fe=/&(?:amp|lt|gt|quot|#39);/g,me=/[&<>"']/g,ge=RegExp(fe.source),ve=RegExp(me.source),ye=/<%-([\s\S]+?)%>/g,_e=/<%([\s\S]+?)%>/g,be=/<%=([\s\S]+?)%>/g,we=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,xe=/^\w*$/,Me=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Te=/[\\^$.*+?()[\]{}|]/g,Le=RegExp(Te.source),ke=/^\s+|\s+$/g,Ce=/^\s+/,Se=/\s+$/,Ee=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Oe=/\{\n\/\* \[wrapped with (.+)\] \*/,De=/,? & /,Pe=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Ie=/\\(\\)?/g,je=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Re=/\w*$/,Ae=/^[-+]0x[0-9a-f]+$/i,Ye=/^0b[01]+$/i,Ne=/^\[object .+?Constructor\]$/,Fe=/^0o[0-7]+$/i,Ve=/^(?:0|[1-9]\d*)$/,He=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ue=/($^)/,Be=/['\n\r\u2028\u2029\\]/g,ze="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",We="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",qe="["+We+"]",Ge="["+ze+"]",Ze="\\d+",Je="[a-z\\xdf-\\xf6\\xf8-\\xff]",$e="[^\\ud800-\\udfff"+We+Ze+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",Ke="\\ud83c[\\udffb-\\udfff]",Qe="[^\\ud800-\\udfff]",Xe="(?:\\ud83c[\\udde6-\\uddff]){2}",et="[\\ud800-\\udbff][\\udc00-\\udfff]",tt="[A-Z\\xc0-\\xd6\\xd8-\\xde]",nt="(?:"+Je+"|"+$e+")",it="(?:"+tt+"|"+$e+")",rt="(?:"+Ge+"|"+Ke+")?",ot="[\\ufe0e\\ufe0f]?"+rt+"(?:\\u200d(?:"+[Qe,Xe,et].join("|")+")[\\ufe0e\\ufe0f]?"+rt+")*",lt="(?:"+["[\\u2700-\\u27bf]",Xe,et].join("|")+")"+ot,st="(?:"+[Qe+Ge+"?",Ge,Xe,et,"[\\ud800-\\udfff]"].join("|")+")",at=RegExp("['\u2019]","g"),ut=RegExp(Ge,"g"),ct=RegExp(Ke+"(?="+Ke+")|"+st+ot,"g"),dt=RegExp([tt+"?"+Je+"+(?:['\u2019](?:d|ll|m|re|s|t|ve))?(?="+[qe,tt,"$"].join("|")+")",it+"+(?:['\u2019](?:D|LL|M|RE|S|T|VE))?(?="+[qe,tt+nt,"$"].join("|")+")",tt+"?"+nt+"+(?:['\u2019](?:d|ll|m|re|s|t|ve))?",tt+"+(?:['\u2019](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Ze,lt].join("|"),"g"),pt=RegExp("[\\u200d\\ud800-\\udfff"+ze+"\\ufe0e\\ufe0f]"),ht=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,ft=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],mt=-1,gt={};gt[ne]=gt[ie]=gt[re]=gt[oe]=gt[le]=gt[se]=gt[ae]=gt[ue]=gt[ce]=!0,gt[j]=gt[R]=gt[ee]=gt[Y]=gt[te]=gt[N]=gt[V]=gt[H]=gt[B]=gt[z]=gt[q]=gt[Z]=gt[J]=gt[$]=gt[X]=!1;var vt={};vt[j]=vt[R]=vt[ee]=vt[te]=vt[Y]=vt[N]=vt[ne]=vt[ie]=vt[re]=vt[oe]=vt[le]=vt[B]=vt[z]=vt[q]=vt[Z]=vt[J]=vt[$]=vt[K]=vt[se]=vt[ae]=vt[ue]=vt[ce]=!0,vt[V]=vt[H]=vt[X]=!1;var yt={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},_t=parseFloat,bt=parseInt,wt="object"==typeof e&&e&&e.Object===Object&&e,xt="object"==typeof self&&self&&self.Object===Object&&self,Mt=wt||xt||Function("return this")(),Tt="object"==typeof t&&t&&!t.nodeType&&t,Lt=Tt&&"object"==typeof i&&i&&!i.nodeType&&i,kt=Lt&&Lt.exports===Tt,Ct=kt&&wt.process,St=function(){try{return Lt&&Lt.require&&Lt.require("util").types||Ct&&Ct.binding&&Ct.binding("util")}catch(e){}}(),Et=St&&St.isArrayBuffer,Ot=St&&St.isDate,Dt=St&&St.isMap,Pt=St&&St.isRegExp,It=St&&St.isSet,jt=St&&St.isTypedArray;function Rt(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function At(e,t,n,i){for(var r=-1,o=null==e?0:e.length;++r-1}function Ht(e,t,n){for(var i=-1,r=null==e?0:e.length;++i-1;);return n}function cn(e,t){for(var n=e.length;n--&&$t(t,e[n],0)>-1;);return n}var dn=tn({"\xc0":"A","\xc1":"A","\xc2":"A","\xc3":"A","\xc4":"A","\xc5":"A","\xe0":"a","\xe1":"a","\xe2":"a","\xe3":"a","\xe4":"a","\xe5":"a","\xc7":"C","\xe7":"c","\xd0":"D","\xf0":"d","\xc8":"E","\xc9":"E","\xca":"E","\xcb":"E","\xe8":"e","\xe9":"e","\xea":"e","\xeb":"e","\xcc":"I","\xcd":"I","\xce":"I","\xcf":"I","\xec":"i","\xed":"i","\xee":"i","\xef":"i","\xd1":"N","\xf1":"n","\xd2":"O","\xd3":"O","\xd4":"O","\xd5":"O","\xd6":"O","\xd8":"O","\xf2":"o","\xf3":"o","\xf4":"o","\xf5":"o","\xf6":"o","\xf8":"o","\xd9":"U","\xda":"U","\xdb":"U","\xdc":"U","\xf9":"u","\xfa":"u","\xfb":"u","\xfc":"u","\xdd":"Y","\xfd":"y","\xff":"y","\xc6":"Ae","\xe6":"ae","\xde":"Th","\xfe":"th","\xdf":"ss","\u0100":"A","\u0102":"A","\u0104":"A","\u0101":"a","\u0103":"a","\u0105":"a","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\u010e":"D","\u0110":"D","\u010f":"d","\u0111":"d","\u0112":"E","\u0114":"E","\u0116":"E","\u0118":"E","\u011a":"E","\u0113":"e","\u0115":"e","\u0117":"e","\u0119":"e","\u011b":"e","\u011c":"G","\u011e":"G","\u0120":"G","\u0122":"G","\u011d":"g","\u011f":"g","\u0121":"g","\u0123":"g","\u0124":"H","\u0126":"H","\u0125":"h","\u0127":"h","\u0128":"I","\u012a":"I","\u012c":"I","\u012e":"I","\u0130":"I","\u0129":"i","\u012b":"i","\u012d":"i","\u012f":"i","\u0131":"i","\u0134":"J","\u0135":"j","\u0136":"K","\u0137":"k","\u0138":"k","\u0139":"L","\u013b":"L","\u013d":"L","\u013f":"L","\u0141":"L","\u013a":"l","\u013c":"l","\u013e":"l","\u0140":"l","\u0142":"l","\u0143":"N","\u0145":"N","\u0147":"N","\u014a":"N","\u0144":"n","\u0146":"n","\u0148":"n","\u014b":"n","\u014c":"O","\u014e":"O","\u0150":"O","\u014d":"o","\u014f":"o","\u0151":"o","\u0154":"R","\u0156":"R","\u0158":"R","\u0155":"r","\u0157":"r","\u0159":"r","\u015a":"S","\u015c":"S","\u015e":"S","\u0160":"S","\u015b":"s","\u015d":"s","\u015f":"s","\u0161":"s","\u0162":"T","\u0164":"T","\u0166":"T","\u0163":"t","\u0165":"t","\u0167":"t","\u0168":"U","\u016a":"U","\u016c":"U","\u016e":"U","\u0170":"U","\u0172":"U","\u0169":"u","\u016b":"u","\u016d":"u","\u016f":"u","\u0171":"u","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017b":"Z","\u017d":"Z","\u017a":"z","\u017c":"z","\u017e":"z","\u0132":"IJ","\u0133":"ij","\u0152":"Oe","\u0153":"oe","\u0149":"'n","\u017f":"s"}),pn=tn({"&":"&","<":"<",">":">",'"':""","'":"'"});function hn(e){return"\\"+yt[e]}function fn(e){return pt.test(e)}function mn(e){var t=-1,n=Array(e.size);return e.forEach(function(e,i){n[++t]=[i,e]}),n}function gn(e,t){return function(n){return e(t(n))}}function vn(e,t){for(var n=-1,i=e.length,r=0,o=[];++n",""":'"',"'":"'"}),Mn=function e(t){var n,i=(t=null==t?Mt:Mn.defaults(Mt.Object(),t,Mn.pick(Mt,ft))).Array,r=t.Date,ze=t.Error,We=t.Function,qe=t.Math,Ge=t.Object,Ze=t.RegExp,Je=t.String,$e=t.TypeError,Ke=i.prototype,Qe=Ge.prototype,Xe=t["__core-js_shared__"],et=We.prototype.toString,tt=Qe.hasOwnProperty,nt=0,it=(n=/[^.]+$/.exec(Xe&&Xe.keys&&Xe.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",rt=Qe.toString,ot=et.call(Ge),lt=Mt._,st=Ze("^"+et.call(tt).replace(Te,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),ct=kt?t.Buffer:o,pt=t.Symbol,yt=t.Uint8Array,wt=ct?ct.allocUnsafe:o,xt=gn(Ge.getPrototypeOf,Ge),Tt=Ge.create,Lt=Qe.propertyIsEnumerable,Ct=Ke.splice,St=pt?pt.isConcatSpreadable:o,Gt=pt?pt.iterator:o,tn=pt?pt.toStringTag:o,Tn=function(){try{var e=Mo(Ge,"defineProperty");return e({},"",{}),e}catch(e){}}(),Ln=t.clearTimeout!==Mt.clearTimeout&&t.clearTimeout,kn=r&&r.now!==Mt.Date.now&&r.now,Cn=t.setTimeout!==Mt.setTimeout&&t.setTimeout,Sn=qe.ceil,En=qe.floor,On=Ge.getOwnPropertySymbols,Dn=ct?ct.isBuffer:o,Pn=t.isFinite,In=Ke.join,jn=gn(Ge.keys,Ge),Rn=qe.max,An=qe.min,Yn=r.now,Nn=t.parseInt,Fn=qe.random,Vn=Ke.reverse,Hn=Mo(t,"DataView"),Un=Mo(t,"Map"),Bn=Mo(t,"Promise"),zn=Mo(t,"Set"),Wn=Mo(t,"WeakMap"),qn=Mo(Ge,"create"),Gn=Wn&&new Wn,Zn={},Jn=Jo(Hn),$n=Jo(Un),Kn=Jo(Bn),Qn=Jo(zn),Xn=Jo(Wn),ei=pt?pt.prototype:o,ti=ei?ei.valueOf:o,ni=ei?ei.toString:o;function ii(e){if(ps(e)&&!ts(e)&&!(e instanceof si)){if(e instanceof li)return e;if(tt.call(e,"__wrapped__"))return $o(e)}return new li(e)}var ri=function(){function e(){}return function(t){if(!ds(t))return{};if(Tt)return Tt(t);e.prototype=t;var n=new e;return e.prototype=o,n}}();function oi(){}function li(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=o}function si(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=O,this.__views__=[]}function ai(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function Mi(e,t,n,i,r,l){var s,a=t&u,p=t&c,h=t&d;if(n&&(s=r?n(e,i,r,l):n(e)),s!==o)return s;if(!ds(e))return e;var f=ts(e);if(f){if(s=function(e){var t=e.length,n=new e.constructor(t);return t&&"string"==typeof e[0]&&tt.call(e,"index")&&(n.index=e.index,n.input=e.input),n}(e),!a)return Vr(e,s)}else{var m=ko(e),g=m==H||m==U;if(os(e))return jr(e,a);if(m==q||m==j||g&&!r){if(s=p||g?{}:So(e),!a)return p?function(e,t){return Hr(e,Lo(e),t)}(e,function(t,n){return t&&Hr(e,Bs(e),t)}(s)):function(e,t){return Hr(e,To(e),t)}(e,_i(s,e))}else{if(!vt[m])return r?e:{};s=function(e,t,n){var i,r,o=e.constructor;switch(t){case ee:return Rr(e);case Y:case N:return new o(+e);case te:return function(e,t){var n=t?Rr(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case ne:case ie:case re:case oe:case le:case se:case ae:case ue:case ce:return Ar(e,n);case B:return new o;case z:case $:return new o(e);case Z:return(r=new(i=e).constructor(i.source,Re.exec(i))).lastIndex=i.lastIndex,r;case J:return new o;case K:return ti?Ge(ti.call(e)):{}}}(e,m,a)}}l||(l=new pi);var v=l.get(e);if(v)return v;if(l.set(e,s),vs(e))return e.forEach(function(i){s.add(Mi(i,t,n,i,e,l))}),s;if(hs(e))return e.forEach(function(i,r){s.set(r,Mi(i,t,n,r,e,l))}),s;var y=f?o:(h?p?go:mo:p?Bs:Us)(e);return Yt(y||e,function(i,r){y&&(i=e[r=i]),gi(s,r,Mi(i,t,n,r,e,l))}),s}function Ti(e,t,n){var i=n.length;if(null==e)return!i;for(e=Ge(e);i--;){var r=n[i],l=e[r];if(l===o&&!(r in e)||!(0,t[r])(l))return!1}return!0}function Li(e,t,n){if("function"!=typeof e)throw new $e(s);return Uo(function(){e.apply(o,n)},t)}function ki(e,t,n,i){var r=-1,o=Vt,s=!0,a=e.length,u=[],c=t.length;if(!a)return u;n&&(t=Ut(t,ln(n))),i?(o=Ht,s=!1):t.length>=l&&(o=an,s=!1,t=new di(t));e:for(;++r-1},ui.prototype.set=function(e,t){var n=this.__data__,i=vi(n,e);return i<0?(++this.size,n.push([e,t])):n[i][1]=t,this},ci.prototype.clear=function(){this.size=0,this.__data__={hash:new ai,map:new(Un||ui),string:new ai}},ci.prototype.delete=function(e){var t=wo(this,e).delete(e);return this.size-=t?1:0,t},ci.prototype.get=function(e){return wo(this,e).get(e)},ci.prototype.has=function(e){return wo(this,e).has(e)},ci.prototype.set=function(e,t){var n=wo(this,e),i=n.size;return n.set(e,t),this.size+=n.size==i?0:1,this},di.prototype.add=di.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},di.prototype.has=function(e){return this.__data__.has(e)},pi.prototype.clear=function(){this.__data__=new ui,this.size=0},pi.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},pi.prototype.get=function(e){return this.__data__.get(e)},pi.prototype.has=function(e){return this.__data__.has(e)},pi.prototype.set=function(e,t){var n=this.__data__;if(n instanceof ui){var i=n.__data__;if(!Un||i.length0&&n(s)?t>1?Pi(s,t-1,n,i,r):Bt(r,s):i||(r[r.length]=s)}return r}var Ii=Wr(),ji=Wr(!0);function Ri(e,t){return e&&Ii(e,t,Us)}function Ai(e,t){return e&&ji(e,t,Us)}function Yi(e,t){return Ft(t,function(t){return as(e[t])})}function Ni(e,t){for(var n=0,i=(t=Or(t,e)).length;null!=e&&nt}function Ui(e,t){return null!=e&&tt.call(e,t)}function Bi(e,t){return null!=e&&t in Ge(e)}function zi(e,t,n){for(var r=n?Ht:Vt,l=e[0].length,s=e.length,a=s,u=i(s),c=1/0,d=[];a--;){var p=e[a];a&&t&&(p=Ut(p,ln(t))),c=An(p.length,c),u[a]=!n&&(t||l>=120&&p.length>=120)?new di(a&&p):o}p=e[0];var h=-1,f=u[0];e:for(;++h=s?a:a*("desc"==n[i]?-1:1)}return e.index-t.index}(e,t,n)});i--;)e[i]=e[i].value;return e}(Xi(e,function(e,n,r){return{criteria:Ut(t,function(t){return t(e)}),index:++i,value:e}}))}function or(e,t,n){for(var i=-1,r=t.length,o={};++i-1;)s!==e&&Ct.call(s,a,1),Ct.call(e,a,1);return e}function sr(e,t){for(var n=e?t.length:0,i=n-1;n--;){var r=t[n];if(n==i||r!==o){var o=r;Oo(r)?Ct.call(e,r,1):xr(e,r)}}return e}function ar(e,t){return e+En(Fn()*(t-e+1))}function ur(e,t){var n="";if(!e||t<1||t>C)return n;do{t%2&&(n+=e),(t=En(t/2))&&(e+=e)}while(t);return n}function cr(e,t){return Bo(No(e,t,fa),e+"")}function dr(e,t,n,i){if(!ds(e))return e;for(var r=-1,l=(t=Or(t,e)).length,s=l-1,a=e;null!=a&&++ro?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var l=i(o);++r>>1,l=e[o];null!==l&&!_s(l)&&(n?l<=t:l=l){var c=t?null:lo(e);if(c)return yn(c);s=!1,r=an,u=new di}else u=t?[]:a;e:for(;++i=i?e:fr(e,t,n)}var Ir=Ln||function(e){return Mt.clearTimeout(e)};function jr(e,t){if(t)return e.slice();var n=e.length,i=wt?wt(n):new e.constructor(n);return e.copy(i),i}function Rr(e){var t=new e.constructor(e.byteLength);return new yt(t).set(new yt(e)),t}function Ar(e,t){var n=t?Rr(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function Yr(e,t){if(e!==t){var n=e!==o,i=null===e,r=e==e,l=_s(e),s=t!==o,a=null===t,u=t==t,c=_s(t);if(!a&&!c&&!l&&e>t||l&&s&&u&&!a&&!c||i&&s&&u||!n&&u||!r)return 1;if(!i&&!l&&!c&&e1?n[r-1]:o,s=r>2?n[2]:o;for(l=e.length>3&&"function"==typeof l?(r--,l):o,s&&Do(n[0],n[1],s)&&(l=r<3?o:l,r=1),t=Ge(t);++i-1?r[l?t[s]:s]:o}}function $r(e){return fo(function(t){var n=t.length,i=n,r=li.prototype.thru;for(e&&t.reverse();i--;){var l=t[i];if("function"!=typeof l)throw new $e(s);if(r&&!a&&"wrapper"==yo(l))var a=new li([],!0)}for(i=a?i:n;++i1&&v.reverse(),p&&ca))return!1;var c=l.get(e);if(c&&l.get(t))return c==t;var d=-1,f=!0,m=n&h?new di:o;for(l.set(e,t),l.set(t,e);++d-1&&e%1==0&&e1?"& ":"")+t[i],t=t.join(n>2?", ":" "),e.replace(Ee,"{\n/* [wrapped with "+t+"] */\n")}(i,function(e,t){return Yt(I,function(n){var i="_."+n[0];t&n[1]&&!Vt(e,i)&&e.push(i)}),e.sort()}(function(e){var t=e.match(Oe);return t?t[1].split(De):[]}(i),n)))}function Wo(e){var t=0,n=0;return function(){var i=Yn(),r=L-(i-n);if(n=i,r>0){if(++t>=T)return arguments[0]}else t=0;return e.apply(o,arguments)}}function qo(e,t){var n=-1,i=e.length,r=i-1;for(t=t===o?i:t;++n1?e[t-1]:o;return gl(e,n="function"==typeof n?(e.pop(),n):o)});function Ml(e){var t=ii(e);return t.__chain__=!0,t}function Tl(e,t){return t(e)}var Ll=fo(function(e){var t=e.length,n=t?e[0]:0,i=this.__wrapped__,r=function(t){return wi(t,e)};return!(t>1||this.__actions__.length)&&i instanceof si&&Oo(n)?((i=i.slice(n,+n+(t?1:0))).__actions__.push({func:Tl,args:[r],thisArg:o}),new li(i,this.__chain__).thru(function(e){return t&&!e.length&&e.push(o),e})):this.thru(r)}),kl=Ur(function(e,t,n){tt.call(e,n)?++e[n]:bi(e,n,1)}),Cl=Jr(el),Sl=Jr(tl);function El(e,t){return(ts(e)?Yt:Ci)(e,bo(t,3))}function Ol(e,t){return(ts(e)?function(e,t){for(var n=null==e?0:e.length;n--&&!1!==t(e[n],n,e););return e}:Si)(e,bo(t,3))}var Dl=Ur(function(e,t,n){tt.call(e,n)?e[n].push(t):bi(e,n,[t])}),Pl=cr(function(e,t,n){var r=-1,o="function"==typeof t,l=is(e)?i(e.length):[];return Ci(e,function(e){l[++r]=o?Rt(t,e,n):Wi(e,t,n)}),l}),Il=Ur(function(e,t,n){bi(e,n,t)});function jl(e,t){return(ts(e)?Ut:Xi)(e,bo(t,3))}var Rl=Ur(function(e,t,n){e[n?0:1].push(t)},function(){return[[],[]]}),Al=cr(function(e,t){if(null==e)return[];var n=t.length;return n>1&&Do(e,t[0],t[1])?t=[]:n>2&&Do(t[0],t[1],t[2])&&(t=[t[0]]),rr(e,Pi(t,1),[])}),Yl=kn||function(){return Mt.Date.now()};function Nl(e,t,n){return t=n?o:t,ao(e,w,o,o,o,o,t=e&&null==t?e.length:t)}function Fl(e,t){var n;if("function"!=typeof t)throw new $e(s);return e=Ls(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=o),n}}var Vl=cr(function(e,t,n){var i=f;if(n.length){var r=vn(n,_o(Vl));i|=_}return ao(e,i,t,n,r)}),Hl=cr(function(e,t,n){var i=f|m;if(n.length){var r=vn(n,_o(Hl));i|=_}return ao(t,i,e,n,r)});function Ul(e,t,n){var i,r,l,a,u,c,d=0,p=!1,h=!1,f=!0;if("function"!=typeof e)throw new $e(s);function m(t){var n=i,l=r;return i=r=o,d=t,a=e.apply(l,n)}function g(e){var n=e-c;return c===o||n>=t||n<0||h&&e-d>=l}function v(){var e=Yl();if(g(e))return y(e);u=Uo(v,function(e){var n=t-(e-c);return h?An(n,l-(e-d)):n}(e))}function y(e){return u=o,f&&i?m(e):(i=r=o,a)}function _(){var e=Yl(),n=g(e);if(i=arguments,r=this,c=e,n){if(u===o)return function(e){return d=e,u=Uo(v,t),p?m(e):a}(c);if(h)return u=Uo(v,t),m(c)}return u===o&&(u=Uo(v,t)),a}return t=Cs(t)||0,ds(n)&&(p=!!n.leading,l=(h="maxWait"in n)?Rn(Cs(n.maxWait)||0,t):l,f="trailing"in n?!!n.trailing:f),_.cancel=function(){u!==o&&Ir(u),d=0,i=c=r=u=o},_.flush=function(){return u===o?a:y(Yl())},_}var Bl=cr(function(e,t){return Li(e,1,t)}),zl=cr(function(e,t,n){return Li(e,Cs(t)||0,n)});function Wl(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new $e(s);var n=function(){var i=arguments,r=t?t.apply(this,i):i[0],o=n.cache;if(o.has(r))return o.get(r);var l=e.apply(this,i);return n.cache=o.set(r,l)||o,l};return n.cache=new(Wl.Cache||ci),n}function ql(e){if("function"!=typeof e)throw new $e(s);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Wl.Cache=ci;var Gl=Dr(function(e,t){var n=(t=1==t.length&&ts(t[0])?Ut(t[0],ln(bo())):Ut(Pi(t,1),ln(bo()))).length;return cr(function(i){for(var r=-1,o=An(i.length,n);++r=t}),es=qi(function(){return arguments}())?qi:function(e){return ps(e)&&tt.call(e,"callee")&&!Lt.call(e,"callee")},ts=i.isArray,ns=Et?ln(Et):function(e){return ps(e)&&Vi(e)==ee};function is(e){return null!=e&&cs(e.length)&&!as(e)}function rs(e){return ps(e)&&is(e)}var os=Dn||Ca,ls=Ot?ln(Ot):function(e){return ps(e)&&Vi(e)==N};function ss(e){if(!ps(e))return!1;var t=Vi(e);return t==V||t==F||"string"==typeof e.message&&"string"==typeof e.name&&!ms(e)}function as(e){if(!ds(e))return!1;var t=Vi(e);return t==H||t==U||t==A||t==G}function us(e){return"number"==typeof e&&e==Ls(e)}function cs(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=C}function ds(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function ps(e){return null!=e&&"object"==typeof e}var hs=Dt?ln(Dt):function(e){return ps(e)&&ko(e)==B};function fs(e){return"number"==typeof e||ps(e)&&Vi(e)==z}function ms(e){if(!ps(e)||Vi(e)!=q)return!1;var t=xt(e);if(null===t)return!0;var n=tt.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&et.call(n)==ot}var gs=Pt?ln(Pt):function(e){return ps(e)&&Vi(e)==Z},vs=It?ln(It):function(e){return ps(e)&&ko(e)==J};function ys(e){return"string"==typeof e||!ts(e)&&ps(e)&&Vi(e)==$}function _s(e){return"symbol"==typeof e||ps(e)&&Vi(e)==K}var bs=jt?ln(jt):function(e){return ps(e)&&cs(e.length)&&!!gt[Vi(e)]},ws=io(Qi),xs=io(function(e,t){return e<=t});function Ms(e){if(!e)return[];if(is(e))return ys(e)?wn(e):Vr(e);if(Gt&&e[Gt])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Gt]());var t=ko(e);return(t==B?mn:t==J?yn:Ks)(e)}function Ts(e){return e?(e=Cs(e))===k||e===-k?(e<0?-1:1)*S:e==e?e:0:0===e?e:0}function Ls(e){var t=Ts(e),n=t%1;return t==t?n?t-n:t:0}function ks(e){return e?xi(Ls(e),0,O):0}function Cs(e){if("number"==typeof e)return e;if(_s(e))return E;if(ds(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=ds(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(ke,"");var n=Ye.test(e);return n||Fe.test(e)?bt(e.slice(2),n?2:8):Ae.test(e)?E:+e}function Ss(e){return Hr(e,Bs(e))}function Es(e){return null==e?"":br(e)}var Os=Br(function(e,t){if(Ro(t)||is(t))Hr(t,Us(t),e);else for(var n in t)tt.call(t,n)&&gi(e,n,t[n])}),Ds=Br(function(e,t){Hr(t,Bs(t),e)}),Ps=Br(function(e,t,n,i){Hr(t,Bs(t),e,i)}),Is=Br(function(e,t,n,i){Hr(t,Us(t),e,i)}),js=fo(wi),Rs=cr(function(e,t){e=Ge(e);var n=-1,i=t.length,r=i>2?t[2]:o;for(r&&Do(t[0],t[1],r)&&(i=1);++n1),t}),Hr(e,go(e),n),i&&(n=Mi(n,u|c|d,po));for(var r=t.length;r--;)xr(n,t[r]);return n}),Gs=fo(function(e,t){return null==e?{}:function(e,t){return or(e,t,function(t,n){return Ns(e,n)})}(e,t)});function Zs(e,t){if(null==e)return{};var n=Ut(go(e),function(e){return[e]});return t=bo(t),or(e,n,function(e,n){return t(e,n[0])})}var Js=so(Us),$s=so(Bs);function Ks(e){return null==e?[]:sn(e,Us(e))}var Qs=Gr(function(e,t,n){return t=t.toLowerCase(),e+(n?Xs(t):t)});function Xs(e){return sa(Es(e).toLowerCase())}function ea(e){return(e=Es(e))&&e.replace(He,dn).replace(ut,"")}var ta=Gr(function(e,t,n){return e+(n?"-":"")+t.toLowerCase()}),na=Gr(function(e,t,n){return e+(n?" ":"")+t.toLowerCase()}),ia=qr("toLowerCase"),ra=Gr(function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}),oa=Gr(function(e,t,n){return e+(n?" ":"")+sa(t)}),la=Gr(function(e,t,n){return e+(n?" ":"")+t.toUpperCase()}),sa=qr("toUpperCase");function aa(e,t,n){return e=Es(e),(t=n?o:t)===o?function(e){return ht.test(e)}(e)?function(e){return e.match(dt)||[]}(e):function(e){return e.match(Pe)||[]}(e):e.match(t)||[]}var ua=cr(function(e,t){try{return Rt(e,o,t)}catch(e){return ss(e)?e:new ze(e)}}),ca=fo(function(e,t){return Yt(t,function(t){t=Zo(t),bi(e,t,Vl(e[t],e))}),e});function da(e){return function(){return e}}var pa=$r(),ha=$r(!0);function fa(e){return e}function ma(e){return $i("function"==typeof e?e:Mi(e,u))}var ga=cr(function(e,t){return function(n){return Wi(n,e,t)}}),va=cr(function(e,t){return function(n){return Wi(e,n,t)}});function ya(e,t,n){var i=Us(t),r=Yi(t,i);null!=n||ds(t)&&(r.length||!i.length)||(n=t,t=e,e=this,r=Yi(t,Us(t)));var o=!(ds(n)&&"chain"in n&&!n.chain),l=as(e);return Yt(r,function(n){var i=t[n];e[n]=i,l&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__);return(n.__actions__=Vr(this.__actions__)).push({func:i,args:arguments,thisArg:e}),n.__chain__=t,n}return i.apply(e,Bt([this.value()],arguments))})}),e}function _a(){}var ba=eo(Ut),wa=eo(Nt),xa=eo(qt);function Ma(e){return Po(e)?en(Zo(e)):function(e){return function(t){return Ni(t,e)}}(e)}var Ta=no(),La=no(!0);function ka(){return[]}function Ca(){return!1}var Sa,Ea=Xr(function(e,t){return e+t},0),Oa=oo("ceil"),Da=Xr(function(e,t){return e/t},1),Pa=oo("floor"),Ia=Xr(function(e,t){return e*t},1),ja=oo("round"),Ra=Xr(function(e,t){return e-t},0);return ii.after=function(e,t){if("function"!=typeof t)throw new $e(s);return e=Ls(e),function(){if(--e<1)return t.apply(this,arguments)}},ii.ary=Nl,ii.assign=Os,ii.assignIn=Ds,ii.assignInWith=Ps,ii.assignWith=Is,ii.at=js,ii.before=Fl,ii.bind=Vl,ii.bindAll=ca,ii.bindKey=Hl,ii.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return ts(e)?e:[e]},ii.chain=Ml,ii.chunk=function(e,t,n){t=(n?Do(e,t,n):t===o)?1:Rn(Ls(t),0);var r=null==e?0:e.length;if(!r||t<1)return[];for(var l=0,s=0,a=i(Sn(r/t));lr?0:r+n),(i=i===o||i>r?r:Ls(i))<0&&(i+=r),i=n>i?0:ks(i);n>>0)?(e=Es(e))&&("string"==typeof t||null!=t&&!gs(t))&&!(t=br(t))&&fn(e)?Pr(wn(e),0,n):e.split(t,n):[]},ii.spread=function(e,t){if("function"!=typeof e)throw new $e(s);return t=null==t?0:Rn(Ls(t),0),cr(function(n){var i=n[t],r=Pr(n,0,t);return i&&Bt(r,i),Rt(e,this,r)})},ii.tail=function(e){var t=null==e?0:e.length;return t?fr(e,1,t):[]},ii.take=function(e,t,n){return e&&e.length?fr(e,0,(t=n||t===o?1:Ls(t))<0?0:t):[]},ii.takeRight=function(e,t,n){var i=null==e?0:e.length;return i?fr(e,(t=i-(t=n||t===o?1:Ls(t)))<0?0:t,i):[]},ii.takeRightWhile=function(e,t){return e&&e.length?Tr(e,bo(t,3),!1,!0):[]},ii.takeWhile=function(e,t){return e&&e.length?Tr(e,bo(t,3)):[]},ii.tap=function(e,t){return t(e),e},ii.throttle=function(e,t,n){var i=!0,r=!0;if("function"!=typeof e)throw new $e(s);return ds(n)&&(i="leading"in n?!!n.leading:i,r="trailing"in n?!!n.trailing:r),Ul(e,t,{leading:i,maxWait:t,trailing:r})},ii.thru=Tl,ii.toArray=Ms,ii.toPairs=Js,ii.toPairsIn=$s,ii.toPath=function(e){return ts(e)?Ut(e,Zo):_s(e)?[e]:Vr(Go(Es(e)))},ii.toPlainObject=Ss,ii.transform=function(e,t,n){var i=ts(e),r=i||os(e)||bs(e);if(t=bo(t,4),null==n){var o=e&&e.constructor;n=r?i?new o:[]:ds(e)&&as(o)?ri(xt(e)):{}}return(r?Yt:Ri)(e,function(e,i,r){return t(n,e,i,r)}),n},ii.unary=function(e){return Nl(e,1)},ii.union=pl,ii.unionBy=hl,ii.unionWith=fl,ii.uniq=function(e){return e&&e.length?wr(e):[]},ii.uniqBy=function(e,t){return e&&e.length?wr(e,bo(t,2)):[]},ii.uniqWith=function(e,t){return t="function"==typeof t?t:o,e&&e.length?wr(e,o,t):[]},ii.unset=function(e,t){return null==e||xr(e,t)},ii.unzip=ml,ii.unzipWith=gl,ii.update=function(e,t,n){return null==e?e:Mr(e,t,Er(n))},ii.updateWith=function(e,t,n,i){return i="function"==typeof i?i:o,null==e?e:Mr(e,t,Er(n),i)},ii.values=Ks,ii.valuesIn=function(e){return null==e?[]:sn(e,Bs(e))},ii.without=vl,ii.words=aa,ii.wrap=function(e,t){return Zl(Er(t),e)},ii.xor=yl,ii.xorBy=_l,ii.xorWith=bl,ii.zip=wl,ii.zipObject=function(e,t){return Cr(e||[],t||[],gi)},ii.zipObjectDeep=function(e,t){return Cr(e||[],t||[],dr)},ii.zipWith=xl,ii.entries=Js,ii.entriesIn=$s,ii.extend=Ds,ii.extendWith=Ps,ya(ii,ii),ii.add=Ea,ii.attempt=ua,ii.camelCase=Qs,ii.capitalize=Xs,ii.ceil=Oa,ii.clamp=function(e,t,n){return n===o&&(n=t,t=o),n!==o&&(n=(n=Cs(n))==n?n:0),t!==o&&(t=(t=Cs(t))==t?t:0),xi(Cs(e),t,n)},ii.clone=function(e){return Mi(e,d)},ii.cloneDeep=function(e){return Mi(e,u|d)},ii.cloneDeepWith=function(e,t){return Mi(e,u|d,t="function"==typeof t?t:o)},ii.cloneWith=function(e,t){return Mi(e,d,t="function"==typeof t?t:o)},ii.conformsTo=function(e,t){return null==t||Ti(e,t,Us(t))},ii.deburr=ea,ii.defaultTo=function(e,t){return null==e||e!=e?t:e},ii.divide=Da,ii.endsWith=function(e,t,n){e=Es(e),t=br(t);var i=e.length,r=n=n===o?i:xi(Ls(n),0,i);return(n-=t.length)>=0&&e.slice(n,r)==t},ii.eq=Kl,ii.escape=function(e){return(e=Es(e))&&ve.test(e)?e.replace(me,pn):e},ii.escapeRegExp=function(e){return(e=Es(e))&&Le.test(e)?e.replace(Te,"\\$&"):e},ii.every=function(e,t,n){var i=ts(e)?Nt:Ei;return n&&Do(e,t,n)&&(t=o),i(e,bo(t,3))},ii.find=Cl,ii.findIndex=el,ii.findKey=function(e,t){return Zt(e,bo(t,3),Ri)},ii.findLast=Sl,ii.findLastIndex=tl,ii.findLastKey=function(e,t){return Zt(e,bo(t,3),Ai)},ii.floor=Pa,ii.forEach=El,ii.forEachRight=Ol,ii.forIn=function(e,t){return null==e?e:Ii(e,bo(t,3),Bs)},ii.forInRight=function(e,t){return null==e?e:ji(e,bo(t,3),Bs)},ii.forOwn=function(e,t){return e&&Ri(e,bo(t,3))},ii.forOwnRight=function(e,t){return e&&Ai(e,bo(t,3))},ii.get=Ys,ii.gt=Ql,ii.gte=Xl,ii.has=function(e,t){return null!=e&&Co(e,t,Ui)},ii.hasIn=Ns,ii.head=il,ii.identity=fa,ii.includes=function(e,t,n,i){e=is(e)?e:Ks(e),n=n&&!i?Ls(n):0;var r=e.length;return n<0&&(n=Rn(r+n,0)),ys(e)?n<=r&&e.indexOf(t,n)>-1:!!r&&$t(e,t,n)>-1},ii.indexOf=function(e,t,n){var i=null==e?0:e.length;if(!i)return-1;var r=null==n?0:Ls(n);return r<0&&(r=Rn(i+r,0)),$t(e,t,r)},ii.inRange=function(e,t,n){return t=Ts(t),n===o?(n=t,t=0):n=Ts(n),function(e,t,n){return e>=An(t,n)&&e=-C&&e<=C},ii.isSet=vs,ii.isString=ys,ii.isSymbol=_s,ii.isTypedArray=bs,ii.isUndefined=function(e){return e===o},ii.isWeakMap=function(e){return ps(e)&&ko(e)==X},ii.isWeakSet=function(e){return ps(e)&&"[object WeakSet]"==Vi(e)},ii.join=function(e,t){return null==e?"":In.call(e,t)},ii.kebabCase=ta,ii.last=sl,ii.lastIndexOf=function(e,t,n){var i=null==e?0:e.length;if(!i)return-1;var r=i;return n!==o&&(r=(r=Ls(n))<0?Rn(i+r,0):An(r,i-1)),t==t?function(e,t,n){for(var i=n+1;i--;)if(e[i]===t)return i;return i}(e,t,r):Jt(e,Qt,r,!0)},ii.lowerCase=na,ii.lowerFirst=ia,ii.lt=ws,ii.lte=xs,ii.max=function(e){return e&&e.length?Oi(e,fa,Hi):o},ii.maxBy=function(e,t){return e&&e.length?Oi(e,bo(t,2),Hi):o},ii.mean=function(e){return Xt(e,fa)},ii.meanBy=function(e,t){return Xt(e,bo(t,2))},ii.min=function(e){return e&&e.length?Oi(e,fa,Qi):o},ii.minBy=function(e,t){return e&&e.length?Oi(e,bo(t,2),Qi):o},ii.stubArray=ka,ii.stubFalse=Ca,ii.stubObject=function(){return{}},ii.stubString=function(){return""},ii.stubTrue=function(){return!0},ii.multiply=Ia,ii.nth=function(e,t){return e&&e.length?ir(e,Ls(t)):o},ii.noConflict=function(){return Mt._===this&&(Mt._=lt),this},ii.noop=_a,ii.now=Yl,ii.pad=function(e,t,n){e=Es(e);var i=(t=Ls(t))?bn(e):0;if(!t||i>=t)return e;var r=(t-i)/2;return to(En(r),n)+e+to(Sn(r),n)},ii.padEnd=function(e,t,n){e=Es(e);var i=(t=Ls(t))?bn(e):0;return t&&it){var i=e;e=t,t=i}if(n||e%1||t%1){var r=Fn();return An(e+r*(t-e+_t("1e-"+((r+"").length-1))),t)}return ar(e,t)},ii.reduce=function(e,t,n){var i=ts(e)?zt:nn,r=arguments.length<3;return i(e,bo(t,4),n,r,Ci)},ii.reduceRight=function(e,t,n){var i=ts(e)?Wt:nn,r=arguments.length<3;return i(e,bo(t,4),n,r,Si)},ii.repeat=function(e,t,n){return t=(n?Do(e,t,n):t===o)?1:Ls(t),ur(Es(e),t)},ii.replace=function(){var e=arguments,t=Es(e[0]);return e.length<3?t:t.replace(e[1],e[2])},ii.result=function(e,t,n){var i=-1,r=(t=Or(t,e)).length;for(r||(r=1,e=o);++iC)return[];var n=O,i=An(e,O);t=bo(t),e-=O;for(var r=on(i,t);++n=l)return e;var a=n-bn(i);if(a<1)return i;var u=s?Pr(s,0,a).join(""):e.slice(0,a);if(r===o)return u+i;if(s&&(a+=u.length-a),gs(r)){if(e.slice(a).search(r)){var c,d=u;for(r.global||(r=Ze(r.source,Es(Re.exec(r))+"g")),r.lastIndex=0;c=r.exec(d);)var p=c.index;u=u.slice(0,p===o?a:p)}}else if(e.indexOf(br(r),a)!=a){var h=u.lastIndexOf(r);h>-1&&(u=u.slice(0,h))}return u+i},ii.unescape=function(e){return(e=Es(e))&&ge.test(e)?e.replace(fe,xn):e},ii.uniqueId=function(e){var t=++nt;return Es(e)+t},ii.upperCase=la,ii.upperFirst=sa,ii.each=El,ii.eachRight=Ol,ii.first=il,ya(ii,(Sa={},Ri(ii,function(e,t){tt.call(ii.prototype,t)||(Sa[t]=e)}),Sa),{chain:!1}),ii.VERSION="4.17.11",Yt(["bind","bindKey","curry","curryRight","partial","partialRight"],function(e){ii[e].placeholder=ii}),Yt(["drop","take"],function(e,t){si.prototype[e]=function(n){n=n===o?1:Rn(Ls(n),0);var i=this.__filtered__&&!t?new si(this):this.clone();return i.__filtered__?i.__takeCount__=An(n,i.__takeCount__):i.__views__.push({size:An(n,O),type:e+(i.__dir__<0?"Right":"")}),i},si.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}}),Yt(["filter","map","takeWhile"],function(e,t){var n=t+1,i=1==n||3==n;si.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:bo(e,3),type:n}),t.__filtered__=t.__filtered__||i,t}}),Yt(["head","last"],function(e,t){var n="take"+(t?"Right":"");si.prototype[e]=function(){return this[n](1).value()[0]}}),Yt(["initial","tail"],function(e,t){var n="drop"+(t?"":"Right");si.prototype[e]=function(){return this.__filtered__?new si(this):this[n](1)}}),si.prototype.compact=function(){return this.filter(fa)},si.prototype.find=function(e){return this.filter(e).head()},si.prototype.findLast=function(e){return this.reverse().find(e)},si.prototype.invokeMap=cr(function(e,t){return"function"==typeof e?new si(this):this.map(function(n){return Wi(n,e,t)})}),si.prototype.reject=function(e){return this.filter(ql(bo(e)))},si.prototype.slice=function(e,t){e=Ls(e);var n=this;return n.__filtered__&&(e>0||t<0)?new si(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),t!==o&&(n=(t=Ls(t))<0?n.dropRight(-t):n.take(t-e)),n)},si.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},si.prototype.toArray=function(){return this.take(O)},Ri(si.prototype,function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),i=/^(?:head|last)$/.test(t),r=ii[i?"take"+("last"==t?"Right":""):t],l=i||/^find/.test(t);r&&(ii.prototype[t]=function(){var t=this.__wrapped__,s=i?[1]:arguments,a=t instanceof si,u=s[0],c=a||ts(t),d=function(e){var t=r.apply(ii,Bt([e],s));return i&&p?t[0]:t};c&&n&&"function"==typeof u&&1!=u.length&&(a=c=!1);var p=this.__chain__,h=l&&!p,f=a&&!this.__actions__.length;if(!l&&c){t=f?t:new si(this);var m=e.apply(t,s);return m.__actions__.push({func:Tl,args:[d],thisArg:o}),new li(m,p)}return h&&f?e.apply(this,s):(m=this.thru(d),h?i?m.value()[0]:m.value():m)})}),Yt(["pop","push","shift","sort","splice","unshift"],function(e){var t=Ke[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",i=/^(?:pop|shift)$/.test(e);ii.prototype[e]=function(){var e=arguments;if(i&&!this.__chain__){var r=this.value();return t.apply(ts(r)?r:[],e)}return this[n](function(n){return t.apply(ts(n)?n:[],e)})}}),Ri(si.prototype,function(e,t){var n=ii[t];if(n){var i=n.name+"";(Zn[i]||(Zn[i]=[])).push({name:t,func:n})}}),Zn[Kr(o,m).name]=[{name:"wrapper",func:o}],si.prototype.clone=function(){var e=new si(this.__wrapped__);return e.__actions__=Vr(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Vr(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Vr(this.__views__),e},si.prototype.reverse=function(){if(this.__filtered__){var e=new si(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},si.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=ts(e),i=t<0,r=n?e.length:0,o=function(e,t,n){for(var i=-1,r=n.length;++i=this.__values__.length;return{done:e,value:e?o:this.__values__[this.__index__++]}},ii.prototype.plant=function(e){for(var t,n=this;n instanceof oi;){var i=$o(n);i.__index__=0,i.__values__=o,t?r.__wrapped__=i:t=i;var r=i;n=n.__wrapped__}return r.__wrapped__=e,t},ii.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof si){var t=e;return this.__actions__.length&&(t=new si(this)),(t=t.reverse()).__actions__.push({func:Tl,args:[dl],thisArg:o}),new li(t,this.__chain__)}return this.thru(dl)},ii.prototype.toJSON=ii.prototype.valueOf=ii.prototype.value=function(){return Lr(this.__wrapped__,this.__actions__)},ii.prototype.first=ii.prototype.head,Gt&&(ii.prototype[Gt]=function(){return this}),ii}();Mt._=Mn,(r=(function(){return Mn}).call(t,n,t,i))===o||(i.exports=r)}).call(this)}).call(t,n("DuR2"),n("3IRH")(e))},M5jZ:function(e,t,n){"use strict";var i=n("JzlZ");t.skip=function(e){return i.skip(e)(this)}},M6Wl:function(e,t,n){var i=n("rpnb"),r=n("ktak");e.exports=function(e,t){return e&&i(e,t,r)}},"MEr+":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("CGGv");t.debounceTime=function(e,t){return void 0===t&&(t=o.async),function(n){return n.lift(new l(e,t))}};var l=function(){function e(e,t){this.dueTime=e,this.scheduler=t}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.dueTime,this.scheduler))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.dueTime=n,this.scheduler=i,this.debouncedSubscription=null,this.lastValue=null,this.hasValue=!1}return i(t,e),t.prototype._next=function(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(a,this.dueTime,this))},t.prototype._complete=function(){this.debouncedNext(),this.destination.complete()},t.prototype.debouncedNext=function(){this.clearDebounce(),this.hasValue&&(this.destination.next(this.lastValue),this.lastValue=null,this.hasValue=!1)},t.prototype.clearDebounce=function(){var e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)},t}(r.Subscriber);function a(e){e.debouncedNext()}},MMop:function(e,t){e.exports=function(e,t){if("__proto__"!=t)return e[t]}},MQMf:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("RA5l"),l=n("B00U"),s=n("ODby"),a=n("IZVw"),u=n("ZJf8");t.ReplaySubject=function(e){function t(t,n,i){void 0===t&&(t=Number.POSITIVE_INFINITY),void 0===n&&(n=Number.POSITIVE_INFINITY),e.call(this),this.scheduler=i,this._events=[],this._bufferSize=t<1?1:t,this._windowTime=n<1?1:n}return i(t,e),t.prototype.next=function(t){var n=this._getNow();this._events.push(new c(n,t)),this._trimBufferThenGetEvents(),e.prototype.next.call(this,t)},t.prototype._subscribe=function(e){var t,n=this._trimBufferThenGetEvents(),i=this.scheduler;if(this.closed)throw new a.ObjectUnsubscribedError;this.hasError?t=l.Subscription.EMPTY:this.isStopped?t=l.Subscription.EMPTY:(this.observers.push(e),t=new u.SubjectSubscription(this,e)),i&&e.add(e=new s.ObserveOnSubscriber(e,i));for(var r=n.length,o=0;ot&&(o=Math.max(o,r-t)),o>0&&i.splice(0,o),i},t}(r.Subject);var c=function(e,t){this.time=e,this.value=t}},Mk9J:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n("WT6e"),r=n("4ukJ");t.TranslateI18NextLanguagesSupport=function(){function e(e){this.locale=e}return e.prototype.getSupportedLanguage=function(t){var n=this,i=this.locale;if(this.isLangSupported(i,t))return i;e.logger.debug("[$SupportedLanguageHelper][getSupportedLanguage]: The language '"+i+"' is not supported, therefore we try to select as close as possible");var r=i;return i.toLowerCase().split("-").reverse().forEach(function(i){n.isLangSupported(i,t)&&(e.logger.debug("[$SupportedLanguageHelper][getSupportedLanguage]: We have found closely supported language '"+i+"'"),r=i)}),r},e.prototype.isLangSupported=function(e,t){return!Array.isArray(t)||Array.isArray(t)&&t.indexOf(e)>-1},e.logger=r.LoggerFactory.makeLogger(e),e.decorators=[{type:i.Injectable}],e}()},MkoU:function(e,t,n){var i=n("z3uG"),r=/[\/\+\.]/;e.exports=function(e,t){function n(t){var n=i(t,e,r);return n&&n.length>=2}return t?n(t.split(";")[0]):n}},MoMe:function(e,t,n){var i=n("FCuZ"),r=n("l9Lx"),o=n("ktak");e.exports=function(e){return i(e,o,r)}},Mqdq:function(e,t,n){"use strict";var i=n("2yqU");t.bufferToggle=function(e,t){return i.bufferToggle(e,t)(this)}},MuA4:function(e,t,n){var i=n("v9aJ");e.exports=function(e,t){var n=!0;return i(e,function(e,i,r){return n=!!t(e,i,r)}),n}},Mvzr:function(e,t,n){"use strict";var i=n("rCTf"),r=n("+w3m");i.Observable.prototype.elementAt=r.elementAt},"N/Bz":function(e,t,n){"use strict";var i=n("MQMf");t.shareReplay=function(e,t,n){return function(r){return r.lift(function(e,t,n){var r,o,l=0,s=!1,a=!1;return function(u){l++,r&&!s||(s=!1,r=new i.ReplaySubject(e,t,n),o=u.subscribe({next:function(e){r.next(e)},error:function(e){s=!0,r.error(e)},complete:function(){a=!0,r.complete()}}));var c=r.subscribe(this);return function(){l--,c.unsubscribe(),o&&0===l&&a&&o.unsubscribe()}}}(e,t,n))}}},N3AT:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.exhaust=function(){return function(e){return e.lift(new l)}};var l=function(){function e(){}return e.prototype.call=function(e,t){return t.subscribe(new s(e))},e}(),s=function(e){function t(t){e.call(this,t),this.hasCompleted=!1,this.hasSubscription=!1}return i(t,e),t.prototype._next=function(e){this.hasSubscription||(this.hasSubscription=!0,this.add(o.subscribeToResult(this,e)))},t.prototype._complete=function(){this.hasCompleted=!0,this.hasSubscription||this.destination.complete()},t.prototype.notifyComplete=function(e){this.remove(e),this.hasSubscription=!1,this.hasCompleted&&this.destination.complete()},t}(r.OuterSubscriber)},N3vo:function(e,t,n){!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}})}(n("PJh5"))},N4j0:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var i=function(e){return e&&"number"==typeof e.length}},N5tI:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaults=function(e){return r.call(o.call(arguments,1),function(t){if(t)for(var n in t)void 0===e[n]&&(e[n]=t[n])}),e},t.extend=function(e){return r.call(o.call(arguments,1),function(t){if(t)for(var n in t)e[n]=t[n]}),e};var i=[],r=i.forEach,o=i.slice},NFIW:function(e,t,n){var i=n("iLZL"),r=n("Qk5j"),o=0,l=4,s=36,a=Math.pow(s,l);function u(){return r((Math.random()*a<<0).toString(s),l)}function c(){return o=o=7&&t<=10},d.fingerprint=i,e.exports=d},NGEn:function(e,t){var n=Array.isArray;e.exports=n},NJh0:function(e,t,n){"use strict";var i=n("rCTf"),r=n("RJ4+");i.Observable.prototype.defaultIfEmpty=r.defaultIfEmpty},NcZU:function(e,t,n){var i="undefined"==typeof Promise?n("hKoQ").Promise:Promise;e.exports=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};!function(t,n){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this),this.opts=t}return e.prototype.createAssembly=function(e){var t=e.params,n=e.fields,i=e.signature,r=e.expectedFiles,o=new FormData;return o.append("params","string"==typeof t?t:JSON.stringify(t)),i&&o.append("signature",i),Object.keys(n).forEach(function(e){o.append(e,n[e])}),o.append("num_expected_upload_files",r),fetch(this.opts.service+"/assemblies",{method:"post",body:o}).then(function(e){return e.json()}).then(function(e){if(e.error){var t=new Error(e.message);throw t.code=e.error,t.status=e,t}return e})},e.prototype.reserveFile=function(e,t){var n=encodeURIComponent(t.size);return fetch(e.assembly_ssl_url+"/reserve_file?size="+n,{method:"post"}).then(function(e){return e.json()})},e.prototype.addFile=function(e,t){if(!t.uploadURL)return i.reject(new Error("File does not have an `uploadURL`."));var n=encodeURIComponent(t.size),r=encodeURIComponent(t.uploadURL),o=encodeURIComponent(t.name);return fetch(e.assembly_ssl_url+"/add_file?size="+n+"&filename="+o+"&fieldname=file&s3Url="+r,{method:"post"}).then(function(e){return e.json()})},e.prototype.getAssemblyStatus=function(e){return fetch(e).then(function(e){return e.json()})},e}()},Nd3h:function(e,t,n){!function(e){"use strict";e.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_a\u016dgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_a\u016dg_sep_okt_nov_dec".split("_"),weekdays:"diman\u0109o_lundo_mardo_merkredo_\u0135a\u016ddo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_\u0135a\u016d_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_\u0135a_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D[-a de] MMMM, YYYY",LLL:"D[-a de] MMMM, YYYY HH:mm",LLLL:"dddd, [la] D[-a de] MMMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(e){return"p"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodia\u016d je] LT",nextDay:"[Morga\u016d je] LT",nextWeek:"dddd [je] LT",lastDay:"[Hiera\u016d je] LT",lastWeek:"[pasinta] dddd [je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"anta\u016d %s",s:"sekundoj",ss:"%d sekundoj",m:"minuto",mm:"%d minutoj",h:"horo",hh:"%d horoj",d:"tago",dd:"%d tagoj",M:"monato",MM:"%d monatoj",y:"jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})}(n("PJh5"))},NedO:function(e,t,n){var i=n("8UTl").h;e.exports=function(e){return i("div",{class:"uppy-Provider-loading"},i("span",null,"Loading..."))}},NgUg:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf");function o(e){var t=e.index,n=e.subscriber;if(t!==e.length){var i=e.keys[t];n.next([i,e.obj[i]]),e.index=t+1,this.schedule(e)}else n.complete()}t.PairsObservable=function(e){function t(t,n){e.call(this),this.obj=t,this.scheduler=n,this.keys=Object.keys(t)}return i(t,e),t.create=function(e,n){return new t(e,n)},t.prototype._subscribe=function(e){var t=this.keys,n=this.scheduler,i=t.length;if(n)return n.schedule(o,0,{obj:this.obj,keys:t,length:i,index:0,subscriber:e});for(var r=0;r=10?e:e+12:"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},NqZt:function(e,t){e.exports=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}},Nzt2:function(e,t,n){!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,n){return e<5?"\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8":e<10?"\u05d1\u05d1\u05d5\u05e7\u05e8":e<12?n?'\u05dc\u05e4\u05e0\u05d4"\u05e6':"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":e<18?n?'\u05d0\u05d7\u05d4"\u05e6':"\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":"\u05d1\u05e2\u05e8\u05d1"}})}(n("PJh5"))},"O/+v":function(e,t,n){"use strict";var i=n("lYi/");t.bufferCount=function(e,t){return void 0===t&&(t=null),i.bufferCount(e,t)(this)}},O1jc:function(e,t,n){var i=n("nw3t"),r=n("22B7");e.exports=function(e,t,n){(void 0===n||r(e[t],n))&&(void 0!==n||t in e)||i(e,t,n)}},O4Lo:function(e,t,n){var i=n("yCNF"),r=n("RVHk"),o=n("kxzG"),l=Math.max,s=Math.min;e.exports=function(e,t,n){var a,u,c,d,p,h,f=0,m=!1,g=!1,v=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function y(t){var n=a,i=u;return a=u=void 0,f=t,d=e.apply(i,n)}function _(e){var n=e-h;return void 0===h||n>=t||n<0||g&&e-f>=c}function b(){var e=r();if(_(e))return w(e);p=setTimeout(b,function(e){var n=t-(e-h);return g?s(n,c-(e-f)):n}(e))}function w(e){return p=void 0,v&&a?y(e):(a=u=void 0,d)}function x(){var e=r(),n=_(e);if(a=arguments,u=this,h=e,n){if(void 0===p)return function(e){return f=e,p=setTimeout(b,t),m?y(e):d}(h);if(g)return p=setTimeout(b,t),y(h)}return void 0===p&&(p=setTimeout(b,t)),d}return t=o(t)||0,i(n)&&(m=!!n.leading,c=(g="maxWait"in n)?l(o(n.maxWait)||0,t):c,v="trailing"in n?!!n.trailing:v),x.cancel=function(){void 0!==p&&clearTimeout(p),f=0,a=h=u=p=void 0},x.flush=function(){return void 0===p?d:w(r())},x}},O8p4:function(e,t,n){"use strict";var i=n("rCTf"),r=n("XKuz");i.Observable.race=r.race},O94n:function(e,t,n){var i=Object.assign||function(e){for(var t=1;te.length)return;if(!(w instanceof a)){if(m&&_!=t.length-1){if(p.lastIndex=b,!(C=p.exec(e)))break;for(var x=C.index+(f?C[1].length:0),M=C.index+C[0].length,T=_,L=b,k=t.length;T=(L+=t[T].length)&&(++_,b=L);if(t[_]instanceof a)continue;S=T-_,w=e.slice(b,L),C.index-=b}else{p.lastIndex=0;var C=p.exec(w),S=1}if(C){f&&(g=C[1]?C[1].length:0),M=(x=C.index+g)+(C=C[0].slice(g)).length;var E=w.slice(0,x),O=w.slice(M),D=[_,S];E&&(++_,b+=E.length,D.push(E));var P=new a(u,h?i.tokenize(C,h):C,v,C,m);if(D.push(P),O&&D.push(O),Array.prototype.splice.apply(t,D),1!=S&&i.matchGrammar(e,t,n,_,b,!0,u),l)break}else if(l)break}}}}},tokenize:function(e,t,n){var r=[e],o=t.rest;if(o){for(var l in o)t[l]=o[l];delete t.rest}return i.matchGrammar(e,r,t,0,0,!1),r},hooks:{all:{},add:function(e,t){var n=i.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=i.hooks.all[e];if(n&&n.length)for(var r,o=0;r=n[o++];)r(t)}}},r=i.Token=function(e,t,n,i,r){this.type=e,this.content=t,this.alias=n,this.length=0|(i||"").length,this.greedy=!!r};if(r.stringify=function(e,t,n){if("string"==typeof e)return e;if("Array"===i.util.type(e))return e.map(function(n){return r.stringify(n,t,e)}).join("");var o={type:e.type,content:r.stringify(e.content,t,n),tag:"span",classes:["token",e.type],attributes:{},language:t,parent:n};if(e.alias){var l="Array"===i.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(o.classes,l)}i.hooks.run("wrap",o);var s=Object.keys(o.attributes).map(function(e){return e+'="'+(o.attributes[e]||"").replace(/"/g,""")+'"'}).join(" ");return"<"+o.tag+' class="'+o.classes.join(" ")+'"'+(s?" "+s:"")+">"+o.content+""},!n.document)return n.addEventListener?(i.disableWorkerMessageHandler||n.addEventListener("message",function(e){var t=JSON.parse(e.data),r=t.language,o=t.immediateClose;n.postMessage(i.highlight(t.code,i.languages[r],r)),o&&n.close()},!1),n.Prism):n.Prism;var o=document.currentScript||[].slice.call(document.getElementsByTagName("script")).pop();return o&&(i.filename=o.src,i.manual||o.hasAttribute("data-manual")||("loading"!==document.readyState?window.requestAnimationFrame?window.requestAnimationFrame(i.highlightAll):window.setTimeout(i.highlightAll,16):document.addEventListener("DOMContentLoaded",i.highlightAll))),n.Prism}();"undefined"!=typeof e&&e.exports&&(e.exports=i),"undefined"!=typeof t&&(t.Prism=i),i.languages.markup={comment://,prolog:/<\?[\s\S]+?\?>/,doctype://i,cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+))?)*\s*\/?>/i,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+)/i,inside:{punctuation:[/^=/,{pattern:/(^|[^\\])["']/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},i.languages.markup.tag.inside["attr-value"].inside.entity=i.languages.markup.entity,i.hooks.add("wrap",function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))}),i.languages.xml=i.languages.markup,i.languages.html=i.languages.markup,i.languages.mathml=i.languages.markup,i.languages.svg=i.languages.markup,i.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(?:;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^{}\s][^{};]*?(?=\s*\{)/,string:{pattern:/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/\B!important\b/i,function:/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},i.languages.css.atrule.inside.rest=i.languages.css,i.languages.markup&&(i.languages.insertBefore("markup","tag",{style:{pattern:/()[\s\S]*?(?=<\/style>)/i,lookbehind:!0,inside:i.languages.css,alias:"language-css",greedy:!0}}),i.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:i.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:i.languages.css}},alias:"language-css"}},i.languages.markup.tag)),i.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(?:true|false)\b/,function:/[a-z0-9_]+(?=\()/i,number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/},i.languages.javascript=i.languages.extend("clike",{keyword:/\b(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b(?:0[xX][\dA-Fa-f]+|0[bB][01]+|0[oO][0-7]+|NaN|Infinity)\b|(?:\b\d+\.?\d*|\B\.\d+)(?:[Ee][+-]?\d+)?/,function:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*\()/i,operator:/-[-=]?|\+[+=]?|!=?=?|<>?>?=?|=(?:==?|>)?|&[&=]?|\|[|=]?|\*\*?=?|\/=?|~|\^=?|%=?|\?|\.{3}/}),i.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(\[[^\]\r\n]+]|\\.|[^/\\\[\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})\]]))/,lookbehind:!0,greedy:!0},"function-variable":{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=\s*(?:function\b|(?:\([^()]*\)|[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/i,alias:"function"},constant:/\b[A-Z][A-Z\d_]*\b/}),i.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${[^}]+}|[^\\`])*`/,greedy:!0,inside:{interpolation:{pattern:/\${[^}]+}/,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}}}),i.languages.javascript["template-string"].inside.interpolation.inside.rest=i.languages.javascript,i.languages.markup&&i.languages.insertBefore("markup","tag",{script:{pattern:/()[\s\S]*?(?=<\/script>)/i,lookbehind:!0,inside:i.languages.javascript,alias:"language-javascript",greedy:!0}}),i.languages.js=i.languages.javascript,"undefined"!=typeof self&&self.Prism&&self.document&&document.querySelector&&(self.Prism.fileHighlight=function(){var e={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"};Array.prototype.slice.call(document.querySelectorAll("pre[data-src]")).forEach(function(t){for(var n,r=t.getAttribute("data-src"),o=t,l=/\blang(?:uage)?-([\w-]+)\b/i;o&&!l.test(o.className);)o=o.parentNode;if(o&&(n=(t.className.match(l)||[,""])[1]),!n){var s=(r.match(/\.(\w+)$/)||[,""])[1];n=e[s]||s}var a=document.createElement("code");a.className="language-"+n,t.textContent="",a.textContent="Loading\u2026",t.appendChild(a);var u=new XMLHttpRequest;u.open("GET",r,!0),u.onreadystatechange=function(){4==u.readyState&&(u.status<400&&u.responseText?(a.textContent=u.responseText,i.highlightElement(a)):a.textContent=u.status>=400?"\u2716 Error "+u.status+" while fetching file: "+u.statusText:"\u2716 Error: File does not exist or is empty")},u.send(null)}),i.plugins.toolbar&&i.plugins.toolbar.registerButton("download-file",function(e){var t=e.element.parentNode;if(t&&/pre/i.test(t.nodeName)&&t.hasAttribute("data-src")&&t.hasAttribute("data-download-link")){var n=t.getAttribute("data-src"),i=document.createElement("a");return i.textContent=t.getAttribute("data-download-link-label")||"Download",i.setAttribute("download",""),i.href=n,i}})},document.addEventListener("DOMContentLoaded",self.Prism.fileHighlight))}).call(t,n("DuR2"))},OLzJ:function(e,t,n){"use strict";var i=n("VOfZ"),r=function(e){e.requestAnimationFrame?(this.cancelAnimationFrame=e.cancelAnimationFrame.bind(e),this.requestAnimationFrame=e.requestAnimationFrame.bind(e)):e.mozRequestAnimationFrame?(this.cancelAnimationFrame=e.mozCancelAnimationFrame.bind(e),this.requestAnimationFrame=e.mozRequestAnimationFrame.bind(e)):e.webkitRequestAnimationFrame?(this.cancelAnimationFrame=e.webkitCancelAnimationFrame.bind(e),this.requestAnimationFrame=e.webkitRequestAnimationFrame.bind(e)):e.msRequestAnimationFrame?(this.cancelAnimationFrame=e.msCancelAnimationFrame.bind(e),this.requestAnimationFrame=e.msRequestAnimationFrame.bind(e)):e.oRequestAnimationFrame?(this.cancelAnimationFrame=e.oCancelAnimationFrame.bind(e),this.requestAnimationFrame=e.oRequestAnimationFrame.bind(e)):(this.cancelAnimationFrame=e.clearTimeout.bind(e),this.requestAnimationFrame=function(t){return e.setTimeout(t,1e3/60)})};t.RequestAnimationFrameDefinition=r,t.AnimationFrame=new r(i.root)},ORgI:function(e,t,n){!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,n){return e<12?"\u5348\u524d":"\u5348\u5f8c"},calendar:{sameDay:"[\u4eca\u65e5] LT",nextDay:"[\u660e\u65e5] LT",nextWeek:function(e){return e.week()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}})}(n("PJh5"))},OUMt:function(e,t,n){!function(e){"use strict";var t="janu\xe1r_febru\xe1r_marec_apr\xedl_m\xe1j_j\xfan_j\xfal_august_september_okt\xf3ber_november_december".split("_"),n="jan_feb_mar_apr_m\xe1j_j\xfan_j\xfal_aug_sep_okt_nov_dec".split("_");function i(e){return e>1&&e<5}function r(e,t,n,r){var o=e+" ";switch(n){case"s":return t||r?"p\xe1r sek\xfand":"p\xe1r sekundami";case"ss":return t||r?o+(i(e)?"sekundy":"sek\xfand"):o+"sekundami";case"m":return t?"min\xfata":r?"min\xfatu":"min\xfatou";case"mm":return t||r?o+(i(e)?"min\xfaty":"min\xfat"):o+"min\xfatami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?o+(i(e)?"hodiny":"hod\xedn"):o+"hodinami";case"d":return t||r?"de\u0148":"d\u0148om";case"dd":return t||r?o+(i(e)?"dni":"dn\xed"):o+"d\u0148ami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?o+(i(e)?"mesiace":"mesiacov"):o+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?o+(i(e)?"roky":"rokov"):o+"rokmi"}}e.defineLocale("sk",{months:t,monthsShort:n,weekdays:"nede\u013ea_pondelok_utorok_streda_\u0161tvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_\u0161t_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_\u0161t_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nede\u013eu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo \u0161tvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[v\u010dera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minul\xfa nede\u013eu o] LT";case 1:case 2:return"[minul\xfd] dddd [o] LT";case 3:return"[minul\xfa stredu o] LT";case 4:case 5:return"[minul\xfd] dddd [o] LT";case 6:return"[minul\xfa sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},OVPi:function(e,t,n){!function(e){"use strict";e.defineLocale("fo",{months:"januar_februar_mars_apr\xedl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_m\xe1nadagur_t\xfdsdagur_mikudagur_h\xf3sdagur_fr\xedggjadagur_leygardagur".split("_"),weekdaysShort:"sun_m\xe1n_t\xfds_mik_h\xf3s_fr\xed_ley".split("_"),weekdaysMin:"su_m\xe1_t\xfd_mi_h\xf3_fr_le".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:"[\xcd dag kl.] LT",nextDay:"[\xcd morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[\xcd gj\xe1r kl.] LT",lastWeek:"[s\xed\xf0stu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s s\xed\xf0ani",s:"f\xe1 sekund",ss:"%d sekundir",m:"ein minutt",mm:"%d minuttir",h:"ein t\xedmi",hh:"%d t\xedmar",d:"ein dagur",dd:"%d dagar",M:"ein m\xe1na\xf0i",MM:"%d m\xe1na\xf0ir",y:"eitt \xe1r",yy:"%d \xe1r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},OVmG:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var i=n("TToO"),r=n("/iUD"),o=n("VwZZ"),l=n("t7NR"),s=n("tLDX"),a=function(e){function t(t,n,i){switch(e.call(this),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=l.a;break;case 1:if(!t){this.destination=l.a;break}if("object"==typeof t){if(c(t)){var r=t[s.a]();this.syncErrorThrowable=r.syncErrorThrowable,this.destination=r,r.add(this)}else this.syncErrorThrowable=!0,this.destination=new u(this,t);break}default:this.syncErrorThrowable=!0,this.destination=new u(this,t,n,i)}}return Object(i.__extends)(t,e),t.prototype[s.a]=function(){return this},t.create=function(e,n,i){var r=new t(e,n,i);return r.syncErrorThrowable=!1,r},t.prototype.next=function(e){this.isStopped||this._next(e)},t.prototype.error=function(e){this.isStopped||(this.isStopped=!0,this._error(e))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this))},t.prototype._next=function(e){this.destination.next(e)},t.prototype._error=function(e){this.destination.error(e),this.unsubscribe()},t.prototype._complete=function(){this.destination.complete(),this.unsubscribe()},t.prototype._unsubscribeAndRecycle=function(){var e=this._parent,t=this._parents;return this._parent=null,this._parents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parent=e,this._parents=t,this},t}(o.a),u=function(e){function t(t,n,i,o){var s;e.call(this),this._parentSubscriber=t;var a=this;Object(r.a)(n)?s=n:n&&(s=n.next,i=n.error,o=n.complete,n!==l.a&&(a=Object.create(n),Object(r.a)(a.unsubscribe)&&this.add(a.unsubscribe.bind(a)),a.unsubscribe=this.unsubscribe.bind(this))),this._context=a,this._next=s,this._error=i,this._complete=o}return Object(i.__extends)(t,e),t.prototype.next=function(e){if(!this.isStopped&&this._next){var t=this._parentSubscriber;t.syncErrorThrowable?this.__tryOrSetError(t,this._next,e)&&this.unsubscribe():this.__tryOrUnsub(this._next,e)}},t.prototype.error=function(e){if(!this.isStopped){var t=this._parentSubscriber;if(this._error)t.syncErrorThrowable?(this.__tryOrSetError(t,this._error,e),this.unsubscribe()):(this.__tryOrUnsub(this._error,e),this.unsubscribe());else{if(!t.syncErrorThrowable)throw this.unsubscribe(),e;t.syncErrorValue=e,t.syncErrorThrown=!0,this.unsubscribe()}}},t.prototype.complete=function(){var e=this;if(!this.isStopped){var t=this._parentSubscriber;if(this._complete){var n=function(){return e._complete.call(e._context)};t.syncErrorThrowable?(this.__tryOrSetError(t,n),this.unsubscribe()):(this.__tryOrUnsub(n),this.unsubscribe())}else this.unsubscribe()}},t.prototype.__tryOrUnsub=function(e,t){try{e.call(this._context,t)}catch(e){throw this.unsubscribe(),e}},t.prototype.__tryOrSetError=function(e,t,n){try{t.call(this._context,n)}catch(t){return e.syncErrorValue=t,e.syncErrorThrown=!0,!0}return!1},t.prototype._unsubscribe=function(){var e=this._parentSubscriber;this._context=null,this._parentSubscriber=null,e.unsubscribe()},t}(a);function c(e){return e instanceof a||"syncErrorThrowable"in e&&e[s.a]}},"Oa+j":function(e,t,n){"use strict";var i=n("L97J");t.dematerialize=function(){return i.dematerialize()(this)}},OcWW:function(e,t,n){e.exports=n("3FeR").default},OkQ7:function(e,t){e.exports=function(){var e={},t=e._fns={};return e.emit=function(e,n,i,r,o,l,s){var a=function(e){for(var n=t[e]?t[e]:[],i=e.indexOf(":"),r=-1===i?[e]:[e.substring(0,i),e.substring(i+1)],o=Object.keys(t),l=0,s=o.length;l=0}},PD94:function(e,t){e.exports=function(e,t){for(var n=-1,i=null==e?0:e.length;++n>>0,i=0;i0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,t-i.length)).toString().substr(1)+i}var V=/(\[[^\[]*\])|(\\)?([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,H=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,U={},B={};function z(e,t,n,i){var r=i;"string"==typeof i&&(r=function(){return this[i]()}),e&&(B[e]=r),t&&(B[t[0]]=function(){return F(r.apply(this,arguments),t[1],t[2])}),n&&(B[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),e)})}function W(e,t){return e.isValid()?(t=q(t,e.localeData()),U[t]=U[t]||function(e){var t,n,i,r=e.match(V);for(t=0,n=r.length;t=0&&H.test(e);)e=e.replace(H,i),H.lastIndex=0,n-=1;return e}var G=/\d/,Z=/\d\d/,J=/\d{3}/,$=/\d{4}/,K=/[+-]?\d{6}/,Q=/\d\d?/,X=/\d\d\d\d?/,ee=/\d\d\d\d\d\d?/,te=/\d{1,3}/,ne=/\d{1,4}/,ie=/[+-]?\d{1,6}/,re=/\d+/,oe=/[+-]?\d+/,le=/Z|[+-]\d\d:?\d\d/gi,se=/Z|[+-]\d\d(?::?\d\d)?/gi,ae=/[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,ue={};function ce(e,t,n){ue[e]=O(t)?t:function(e,i){return e&&n?n:t}}function de(e,t){return d(ue,e)?ue[e](t._strict,t._locale):new RegExp(pe(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,i,r){return t||n||i||r})))}function pe(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var he={};function fe(e,t){var n,i=t;for("string"==typeof e&&(e=[e]),a(t)&&(i=function(e,n){n[t]=M(e)}),n=0;n68?1900:2e3)};var Se,Ee=Oe("FullYear",!0);function Oe(e,t){return function(n){return null!=n?(Pe(this,e,n),r.updateOffset(this,t),this):De(this,e)}}function De(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function Pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&Ce(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Ie(n,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function Ie(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?Ce(e)?29:28:31-n%7%2}Se=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,n){var i=7+t-n;return-(7+Ue(e,0,i).getUTCDay()-t)%7+i-1}function ze(e,t,n,i,r){var o,l,s=1+7*(t-1)+(7+n-i)%7+Be(e,i,r);return s<=0?l=ke(o=e-1)+s:s>ke(e)?(o=e+1,l=s-ke(e)):(o=e,l=s),{year:o,dayOfYear:l}}function We(e,t,n){var i,r,o=Be(e.year(),t,n),l=Math.floor((e.dayOfYear()-o-1)/7)+1;return l<1?i=l+qe(r=e.year()-1,t,n):l>qe(e.year(),t,n)?(i=l-qe(e.year(),t,n),r=e.year()+1):(r=e.year(),i=l),{week:i,year:r}}function qe(e,t,n){var i=Be(e,t,n),r=Be(e+1,t,n);return(ke(e)-i+r)/7}z("w",["ww",2],"wo","week"),z("W",["WW",2],"Wo","isoWeek"),j("week","w"),j("isoWeek","W"),N("week",5),N("isoWeek",5),ce("w",Q),ce("ww",Q,Z),ce("W",Q),ce("WW",Q,Z),me(["w","ww","W","WW"],function(e,t,n,i){t[i.substr(0,1)]=M(e)}),z("d",0,"do","day"),z("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),z("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),z("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),z("e",0,0,"weekday"),z("E",0,0,"isoWeekday"),j("day","d"),j("weekday","e"),j("isoWeekday","E"),N("day",11),N("weekday",11),N("isoWeekday",11),ce("d",Q),ce("e",Q),ce("E",Q),ce("dd",function(e,t){return t.weekdaysMinRegex(e)}),ce("ddd",function(e,t){return t.weekdaysShortRegex(e)}),ce("dddd",function(e,t){return t.weekdaysRegex(e)}),me(["dd","ddd","dddd"],function(e,t,n,i){var r=n._locale.weekdaysParse(e,i,n._strict);null!=r?t.d=r:f(n).invalidWeekday=e}),me(["d","e","E"],function(e,t,n,i){t[i]=M(e)});var Ge="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Ze="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Je="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),$e=ae,Ke=ae,Qe=ae;function Xe(){function e(e,t){return t.length-e.length}var t,n,i,r,o,l=[],s=[],a=[],u=[];for(t=0;t<7;t++)n=h([2e3,1]).day(t),i=this.weekdaysMin(n,""),r=this.weekdaysShort(n,""),o=this.weekdays(n,""),l.push(i),s.push(r),a.push(o),u.push(i),u.push(r),u.push(o);for(l.sort(e),s.sort(e),a.sort(e),u.sort(e),t=0;t<7;t++)s[t]=pe(s[t]),a[t]=pe(a[t]),u[t]=pe(u[t]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+l.join("|")+")","i")}function et(){return this.hours()%12||12}function tt(e,t){z(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function nt(e,t){return t._meridiemParse}z("H",["HH",2],0,"hour"),z("h",["hh",2],0,et),z("k",["kk",2],0,function(){return this.hours()||24}),z("hmm",0,0,function(){return""+et.apply(this)+F(this.minutes(),2)}),z("hmmss",0,0,function(){return""+et.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)}),z("Hmm",0,0,function(){return""+this.hours()+F(this.minutes(),2)}),z("Hmmss",0,0,function(){return""+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)}),tt("a",!0),tt("A",!1),j("hour","h"),N("hour",13),ce("a",nt),ce("A",nt),ce("H",Q),ce("h",Q),ce("k",Q),ce("HH",Q,Z),ce("hh",Q,Z),ce("kk",Q,Z),ce("hmm",X),ce("hmmss",ee),ce("Hmm",X),ce("Hmmss",ee),fe(["H","HH"],be),fe(["k","kk"],function(e,t,n){var i=M(e);t[be]=24===i?0:i}),fe(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),fe(["h","hh"],function(e,t,n){t[be]=M(e),f(n).bigHour=!0}),fe("hmm",function(e,t,n){var i=e.length-2;t[be]=M(e.substr(0,i)),t[we]=M(e.substr(i)),f(n).bigHour=!0}),fe("hmmss",function(e,t,n){var i=e.length-4,r=e.length-2;t[be]=M(e.substr(0,i)),t[we]=M(e.substr(i,2)),t[xe]=M(e.substr(r)),f(n).bigHour=!0}),fe("Hmm",function(e,t,n){var i=e.length-2;t[be]=M(e.substr(0,i)),t[we]=M(e.substr(i))}),fe("Hmmss",function(e,t,n){var i=e.length-4,r=e.length-2;t[be]=M(e.substr(0,i)),t[we]=M(e.substr(i,2)),t[xe]=M(e.substr(r))});var it,rt=Oe("Hours",!0),ot={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:Re,monthsShort:Ae,week:{dow:0,doy:6},weekdays:Ge,weekdaysMin:Je,weekdaysShort:Ze,meridiemParse:/[ap]\.?m?\.?/i},lt={},st={};function at(e){return e?e.toLowerCase().replace("_","-"):e}function ut(t){var i=null;if(!lt[t]&&"undefined"!=typeof e&&e&&e.exports)try{i=it._abbr,n("uslO")("./"+t),ct(i)}catch(e){}return lt[t]}function ct(e,t){var n;return e&&((n=s(t)?pt(e):dt(e,t))?it=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),it._abbr}function dt(e,t){if(null!==t){var n,i=ot;if(t.abbr=e,null!=lt[e])E("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=lt[e]._config;else if(null!=t.parentLocale)if(null!=lt[t.parentLocale])i=lt[t.parentLocale]._config;else{if(null==(n=ut(t.parentLocale)))return st[t.parentLocale]||(st[t.parentLocale]=[]),st[t.parentLocale].push({name:e,config:t}),null;i=n._config}return lt[e]=new P(D(i,t)),st[e]&&st[e].forEach(function(e){dt(e.name,e.config)}),ct(e),lt[e]}return delete lt[e],null}function pt(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return it;if(!o(e)){if(t=ut(e))return t;e=[e]}return function(e){for(var t,n,i,r,o=0;o0;){if(i=ut(r.slice(0,t).join("-")))return i;if(n&&n.length>=t&&T(r,n,!0)>=t-1)break;t--}o++}return it}(e)}function ht(e){var t,n=e._a;return n&&-2===f(e).overflow&&(t=n[ye]<0||n[ye]>11?ye:n[_e]<1||n[_e]>Ie(n[ve],n[ye])?_e:n[be]<0||n[be]>24||24===n[be]&&(0!==n[we]||0!==n[xe]||0!==n[Me])?be:n[we]<0||n[we]>59?we:n[xe]<0||n[xe]>59?xe:n[Me]<0||n[Me]>999?Me:-1,f(e)._overflowDayOfYear&&(t_e)&&(t=_e),f(e)._overflowWeeks&&-1===t&&(t=Te),f(e)._overflowWeekday&&-1===t&&(t=Le),f(e).overflow=t),e}function ft(e,t,n){return null!=e?e:null!=t?t:n}function mt(e){var t,n,i,o,l,s=[];if(!e._d){for(i=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[_e]&&null==e._a[ye]&&function(e){var t,n,i,r,o,l,s,a;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)o=1,l=4,n=ft(t.GG,e._a[ve],We(Et(),1,4).year),i=ft(t.W,1),((r=ft(t.E,1))<1||r>7)&&(a=!0);else{o=e._locale._week.dow,l=e._locale._week.doy;var u=We(Et(),o,l);n=ft(t.gg,e._a[ve],u.year),i=ft(t.w,u.week),null!=t.d?((r=t.d)<0||r>6)&&(a=!0):null!=t.e?(r=t.e+o,(t.e<0||t.e>6)&&(a=!0)):r=o}i<1||i>qe(n,o,l)?f(e)._overflowWeeks=!0:null!=a?f(e)._overflowWeekday=!0:(s=ze(n,i,r,o,l),e._a[ve]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(l=ft(e._a[ve],i[ve]),(e._dayOfYear>ke(l)||0===e._dayOfYear)&&(f(e)._overflowDayOfYear=!0),n=Ue(l,0,e._dayOfYear),e._a[ye]=n.getUTCMonth(),e._a[_e]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=i[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[be]&&0===e._a[we]&&0===e._a[xe]&&0===e._a[Me]&&(e._nextDay=!0,e._a[be]=0),e._d=(e._useUTC?Ue:function(e,t,n,i,r,o,l){var s=new Date(e,t,n,i,r,o,l);return e<100&&e>=0&&isFinite(s.getFullYear())&&s.setFullYear(e),s}).apply(null,s),o=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[be]=24),e._w&&"undefined"!=typeof e._w.d&&e._w.d!==o&&(f(e).weekdayMismatch=!0)}}var gt=/^\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)?)?$/,vt=/^\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)?/,_t=[["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}/]],bt=[["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/]],wt=/^\/?Date\((\-?\d+)/i;function xt(e){var t,n,i,r,o,l,s=e._i,a=gt.exec(s)||vt.exec(s);if(a){for(f(e).iso=!0,t=0,n=_t.length;t0&&f(e).unusedInput.push(l),s=s.slice(s.indexOf(n)+n.length),u+=n.length),B[o]?(n?f(e).empty=!1:f(e).unusedTokens.push(o),ge(o,n,e)):e._strict&&!n&&f(e).unusedTokens.push(o);f(e).charsLeftOver=a-u,s.length>0&&f(e).unusedInput.push(s),e._a[be]<=12&&!0===f(e).bigHour&&e._a[be]>0&&(f(e).bigHour=void 0),f(e).parsedDateParts=e._a.slice(0),f(e).meridiem=e._meridiem,e._a[be]=(c=e._locale,d=e._a[be],null==(p=e._meridiem)?d:null!=c.meridiemHour?c.meridiemHour(d,p):null!=c.isPM?((h=c.isPM(p))&&d<12&&(d+=12),h||12!==d||(d=0),d):d),mt(e),ht(e)}else Lt(e);else xt(e);var c,d,p,h}function Ct(e){var t=e._i,n=e._f;return e._locale=e._locale||pt(e._l),null===t||void 0===n&&""===t?g({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),w(t)?new b(ht(t)):(u(t)?e._d=t:o(n)?function(e){var t,n,i,r,o;if(0===e._f.length)return f(e).invalidFormat=!0,void(e._d=new Date(NaN));for(r=0;rthis?this:e:g()});function Pt(e,t){var n,i;if(1===t.length&&o(t[0])&&(t=t[0]),!t.length)return Et();for(n=t[0],i=1;i(o=qe(e,i,r))&&(t=o),(function(e,t,n,i,r){var o=ze(e,t,n,i,r),l=Ue(o.year,0,o.dayOfYear);return this.year(l.getUTCFullYear()),this.month(l.getUTCMonth()),this.date(l.getUTCDate()),this}).call(this,e,t,n,i,r))}z(0,["gg",2],0,function(){return this.weekYear()%100}),z(0,["GG",2],0,function(){return this.isoWeekYear()%100}),nn("gggg","weekYear"),nn("ggggg","weekYear"),nn("GGGG","isoWeekYear"),nn("GGGGG","isoWeekYear"),j("weekYear","gg"),j("isoWeekYear","GG"),N("weekYear",1),N("isoWeekYear",1),ce("G",oe),ce("g",oe),ce("GG",Q,Z),ce("gg",Q,Z),ce("GGGG",ne,$),ce("gggg",ne,$),ce("GGGGG",ie,K),ce("ggggg",ie,K),me(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,i){t[i.substr(0,2)]=M(e)}),me(["gg","GG"],function(e,t,n,i){t[i]=r.parseTwoDigitYear(e)}),z("Q",0,"Qo","quarter"),j("quarter","Q"),N("quarter",7),ce("Q",G),fe("Q",function(e,t){t[ye]=3*(M(e)-1)}),z("D",["DD",2],"Do","date"),j("date","D"),N("date",9),ce("D",Q),ce("DD",Q,Z),ce("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),fe(["D","DD"],_e),fe("Do",function(e,t){t[_e]=M(e.match(Q)[0])});var on=Oe("Date",!0);z("DDD",["DDDD",3],"DDDo","dayOfYear"),j("dayOfYear","DDD"),N("dayOfYear",4),ce("DDD",te),ce("DDDD",J),fe(["DDD","DDDD"],function(e,t,n){n._dayOfYear=M(e)}),z("m",["mm",2],0,"minute"),j("minute","m"),N("minute",14),ce("m",Q),ce("mm",Q,Z),fe(["m","mm"],we);var ln=Oe("Minutes",!1);z("s",["ss",2],0,"second"),j("second","s"),N("second",15),ce("s",Q),ce("ss",Q,Z),fe(["s","ss"],xe);var sn,an=Oe("Seconds",!1);for(z("S",0,0,function(){return~~(this.millisecond()/100)}),z(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),z(0,["SSS",3],0,"millisecond"),z(0,["SSSS",4],0,function(){return 10*this.millisecond()}),z(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),z(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),z(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),z(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),z(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),j("millisecond","ms"),N("millisecond",16),ce("S",te,G),ce("SS",te,Z),ce("SSS",te,J),sn="SSSS";sn.length<=9;sn+="S")ce(sn,re);function un(e,t){t[Me]=M(1e3*("0."+e))}for(sn="S";sn.length<=9;sn+="S")fe(sn,un);var cn=Oe("Milliseconds",!1);z("z",0,0,"zoneAbbr"),z("zz",0,0,"zoneName");var dn=b.prototype;function pn(e){return e}dn.add=$t,dn.calendar=function(e,t){var n=e||Et(),i=Vt(n,this).startOf("day"),o=r.calendarFormat(this,i)||"sameElse",l=t&&(O(t[o])?t[o].call(this,n):t[o]);return this.format(l||this.localeData().calendar(o,this,Et(n)))},dn.clone=function(){return new b(this)},dn.diff=function(e,t,n){var i,r,o;if(!this.isValid())return NaN;if(!(i=Vt(e,this)).isValid())return NaN;switch(r=6e4*(i.utcOffset()-this.utcOffset()),t=R(t)){case"year":o=Qt(this,i)/12;break;case"month":o=Qt(this,i);break;case"quarter":o=Qt(this,i)/3;break;case"second":o=(this-i)/1e3;break;case"minute":o=(this-i)/6e4;break;case"hour":o=(this-i)/36e5;break;case"day":o=(this-i-r)/864e5;break;case"week":o=(this-i-r)/6048e5;break;default:o=this-i}return n?o:x(o)},dn.endOf=function(e){return void 0===(e=R(e))||"millisecond"===e?this:("date"===e&&(e="day"),this.startOf(e).add(1,"isoWeek"===e?"week":e).subtract(1,"ms"))},dn.format=function(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=W(this,e);return this.localeData().postformat(t)},dn.from=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||Et(e).isValid())?Wt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.fromNow=function(e){return this.from(Et(),e)},dn.to=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||Et(e).isValid())?Wt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.toNow=function(e){return this.to(Et(),e)},dn.get=function(e){return O(this[e=R(e)])?this[e]():this},dn.invalidAt=function(){return f(this).overflow},dn.isAfter=function(e,t){var n=w(e)?e:Et(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=R(s(t)?"millisecond":t))?this.valueOf()>n.valueOf():n.valueOf()9999?W(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",W(n,"Z")):W(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},dn.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 n="["+e+'("]',i=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY";return this.format(n+i+"-MM-DD[T]HH:mm:ss.SSS"+t+'[")]')},dn.toJSON=function(){return this.isValid()?this.toISOString():null},dn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},dn.unix=function(){return Math.floor(this.valueOf()/1e3)},dn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},dn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},dn.year=Ee,dn.isLeapYear=function(){return Ce(this.year())},dn.weekYear=function(e){return rn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},dn.isoWeekYear=function(e){return rn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},dn.quarter=dn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},dn.month=Ne,dn.daysInMonth=function(){return Ie(this.year(),this.month())},dn.week=dn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},dn.isoWeek=dn.isoWeeks=function(e){var t=We(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},dn.weeksInYear=function(){var e=this.localeData()._week;return qe(this.year(),e.dow,e.doy)},dn.isoWeeksInYear=function(){return qe(this.year(),1,4)},dn.date=on,dn.day=dn.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},dn.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")},dn.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},dn.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")},dn.hour=dn.hours=rt,dn.minute=dn.minutes=ln,dn.second=dn.seconds=an,dn.millisecond=dn.milliseconds=cn,dn.utcOffset=function(e,t,n){var i,o=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=Ft(se,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=Ht(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,"m"),o!==e&&(!t||this._changeInProgress?Jt(this,Wt(e-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,r.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?o:Ht(this)},dn.utc=function(e){return this.utcOffset(0,e)},dn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Ht(this),"m")),this},dn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=Ft(le,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},dn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Et(e).utcOffset():0,(this.utcOffset()-e)%60==0)},dn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},dn.isLocal=function(){return!!this.isValid()&&!this._isUTC},dn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},dn.isUtc=Ut,dn.isUTC=Ut,dn.zoneAbbr=function(){return this._isUTC?"UTC":""},dn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},dn.dates=k("dates accessor is deprecated. Use date instead.",on),dn.months=k("months accessor is deprecated. Use month instead",Ne),dn.years=k("years accessor is deprecated. Use year instead",Ee),dn.zone=k("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()}),dn.isDSTShifted=k("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Ct(e))._a){var t=e._isUTC?h(e._a):Et(e._a);this._isDSTShifted=this.isValid()&&T(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var hn=P.prototype;function fn(e,t,n,i){var r=pt(),o=h().set(i,t);return r[n](o,e)}function mn(e,t,n){if(a(e)&&(t=e,e=void 0),e=e||"",null!=t)return fn(e,t,n,"month");var i,r=[];for(i=0;i<12;i++)r[i]=fn(e,i,n,"month");return r}function gn(e,t,n,i){"boolean"==typeof e?(a(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,a(t)&&(n=t,t=void 0),t=t||"");var r,o=pt(),l=e?o._week.dow:0;if(null!=n)return fn(t,(n+l)%7,i,"day");var s=[];for(r=0;r<7;r++)s[r]=fn(t,(r+l)%7,i,"day");return s}hn.calendar=function(e,t,n){var i=this._calendar[e]||this._calendar.sameElse;return O(i)?i.call(t,n):i},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace("%d",e)},hn.preparse=pn,hn.postformat=pn,hn.relativeTime=function(e,t,n,i){var r=this._relativeTime[n];return O(r)?r(e,t,n,i):r.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return O(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)O(t=e[n])?this[n]=t:this["_"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},hn.months=function(e,t){return e?o(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||je).test(t)?"format":"standalone"][e.month()]:o(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?o(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[je.test(t)?"format":"standalone"][e.month()]:o(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var i,r,o;if(this._monthsParseExact)return(function(e,t,n){var i,r,o,l=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],i=0;i<12;++i)o=h([2e3,i]),this._shortMonthsParse[i]=this.monthsShort(o,"").toLocaleLowerCase(),this._longMonthsParse[i]=this.months(o,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(r=Se.call(this._shortMonthsParse,l))?r:null:-1!==(r=Se.call(this._longMonthsParse,l))?r:null:"MMM"===t?-1!==(r=Se.call(this._shortMonthsParse,l))?r:-1!==(r=Se.call(this._longMonthsParse,l))?r:null:-1!==(r=Se.call(this._longMonthsParse,l))?r:-1!==(r=Se.call(this._shortMonthsParse,l))?r:null}).call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(r=h([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[i]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),n||this._monthsParse[i]||(o="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[i]=new RegExp(o.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[i].test(e))return i;if(n&&"MMM"===t&&this._shortMonthsParse[i].test(e))return i;if(!n&&this._monthsParse[i].test(e))return i}},hn.monthsRegex=function(e){return this._monthsParseExact?(d(this,"_monthsRegex")||He.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=Ve),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(d(this,"_monthsRegex")||He.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=Fe),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return We(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){return e?o(this._weekdays)?this._weekdays[e.day()]:this._weekdays[this._weekdays.isFormat.test(t)?"format":"standalone"][e.day()]:o(this._weekdays)?this._weekdays:this._weekdays.standalone},hn.weekdaysMin=function(e){return e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var i,r,o;if(this._weekdaysParseExact)return(function(e,t,n){var i,r,o,l=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)o=h([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(r=Se.call(this._weekdaysParse,l))?r:null:"ddd"===t?-1!==(r=Se.call(this._shortWeekdaysParse,l))?r:null:-1!==(r=Se.call(this._minWeekdaysParse,l))?r:null:"dddd"===t?-1!==(r=Se.call(this._weekdaysParse,l))?r:-1!==(r=Se.call(this._shortWeekdaysParse,l))?r:-1!==(r=Se.call(this._minWeekdaysParse,l))?r:null:"ddd"===t?-1!==(r=Se.call(this._shortWeekdaysParse,l))?r:-1!==(r=Se.call(this._weekdaysParse,l))?r:-1!==(r=Se.call(this._minWeekdaysParse,l))?r:null:-1!==(r=Se.call(this._minWeekdaysParse,l))?r:-1!==(r=Se.call(this._weekdaysParse,l))?r:-1!==(r=Se.call(this._shortWeekdaysParse,l))?r:null}).call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(r=h([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[i]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[i]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[i]||(o="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[i]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[i].test(e))return i;if(n&&"ddd"===t&&this._shortWeekdaysParse[i].test(e))return i;if(n&&"dd"===t&&this._minWeekdaysParse[i].test(e))return i;if(!n&&this._weekdaysParse[i].test(e))return i}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=$e),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ke),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},ct("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===M(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=k("moment.lang is deprecated. Use moment.locale instead.",ct),r.langData=k("moment.langData is deprecated. Use moment.localeData instead.",pt);var vn=Math.abs;function yn(e,t,n,i){var r=Wt(t,n);return e._milliseconds+=i*r._milliseconds,e._days+=i*r._days,e._months+=i*r._months,e._bubble()}function _n(e){return e<0?Math.floor(e):Math.ceil(e)}function bn(e){return 4800*e/146097}function wn(e){return 146097*e/4800}function xn(e){return function(){return this.as(e)}}var Mn=xn("ms"),Tn=xn("s"),Ln=xn("m"),kn=xn("h"),Cn=xn("d"),Sn=xn("w"),En=xn("M"),On=xn("y");function Dn(e){return function(){return this.isValid()?this._data[e]:NaN}}var Pn=Dn("milliseconds"),In=Dn("seconds"),jn=Dn("minutes"),Rn=Dn("hours"),An=Dn("days"),Yn=Dn("months"),Nn=Dn("years"),Fn=Math.round,Vn={ss:44,s:45,m:45,h:22,d:26,M:11},Hn=Math.abs;function Un(e){return(e>0)-(e<0)||+e}function Bn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Hn(this._milliseconds)/1e3,i=Hn(this._days),r=Hn(this._months);t=x((e=x(n/60))/60),n%=60,e%=60;var o=x(r/12),l=r%=12,s=i,a=t,u=e,c=n?n.toFixed(3).replace(/\.?0+$/,""):"",d=this.asSeconds();if(!d)return"P0D";var p=d<0?"-":"",h=Un(this._months)!==Un(d)?"-":"",f=Un(this._days)!==Un(d)?"-":"",m=Un(this._milliseconds)!==Un(d)?"-":"";return p+"P"+(o?h+o+"Y":"")+(l?h+l+"M":"")+(s?f+s+"D":"")+(a||u||c?"T":"")+(a?m+a+"H":"")+(u?m+u+"M":"")+(c?m+c+"S":"")}var zn=jt.prototype;return zn.isValid=function(){return this._isValid},zn.abs=function(){var e=this._data;return this._milliseconds=vn(this._milliseconds),this._days=vn(this._days),this._months=vn(this._months),e.milliseconds=vn(e.milliseconds),e.seconds=vn(e.seconds),e.minutes=vn(e.minutes),e.hours=vn(e.hours),e.months=vn(e.months),e.years=vn(e.years),this},zn.add=function(e,t){return yn(this,e,t,1)},zn.subtract=function(e,t){return yn(this,e,t,-1)},zn.as=function(e){if(!this.isValid())return NaN;var t,n,i=this._milliseconds;if("month"===(e=R(e))||"year"===e)return n=this._months+bn(t=this._days+i/864e5),"month"===e?n:n/12;switch(t=this._days+Math.round(wn(this._months)),e){case"week":return t/7+i/6048e5;case"day":return t+i/864e5;case"hour":return 24*t+i/36e5;case"minute":return 1440*t+i/6e4;case"second":return 86400*t+i/1e3;case"millisecond":return Math.floor(864e5*t)+i;default:throw new Error("Unknown unit "+e)}},zn.asMilliseconds=Mn,zn.asSeconds=Tn,zn.asMinutes=Ln,zn.asHours=kn,zn.asDays=Cn,zn.asWeeks=Sn,zn.asMonths=En,zn.asYears=On,zn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*M(this._months/12):NaN},zn._bubble=function(){var e,t,n,i,r,o=this._milliseconds,l=this._days,s=this._months,a=this._data;return o>=0&&l>=0&&s>=0||o<=0&&l<=0&&s<=0||(o+=864e5*_n(wn(s)+l),l=0,s=0),a.milliseconds=o%1e3,e=x(o/1e3),a.seconds=e%60,t=x(e/60),a.minutes=t%60,n=x(t/60),a.hours=n%24,s+=r=x(bn(l+=x(n/24))),l-=_n(wn(r)),i=x(s/12),s%=12,a.days=l,a.months=s,a.years=i,this},zn.clone=function(){return Wt(this)},zn.get=function(e){return e=R(e),this.isValid()?this[e+"s"]():NaN},zn.milliseconds=Pn,zn.seconds=In,zn.minutes=jn,zn.hours=Rn,zn.days=An,zn.weeks=function(){return x(this.days()/7)},zn.months=Yn,zn.years=Nn,zn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var i=Wt(e).abs(),r=Fn(i.as("s")),o=Fn(i.as("m")),l=Fn(i.as("h")),s=Fn(i.as("d")),a=Fn(i.as("M")),u=Fn(i.as("y")),c=r<=Vn.ss&&["s",r]||r0,c[4]=n,(function(e,t,n,i,r){return r.relativeTime(t||1,!!n,e,i)}).apply(null,c)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},zn.toISOString=Bn,zn.toString=Bn,zn.toJSON=Bn,zn.locale=Xt,zn.localeData=tn,zn.toIsoString=k("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Bn),zn.lang=en,z("X",0,0,"unix"),z("x",0,0,"valueOf"),ce("x",oe),ce("X",/[+-]?\d+(\.\d{1,3})?/),fe("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))}),fe("x",function(e,t,n){n._d=new Date(M(e))}),r.version="2.22.2",t=Et,r.fn=dn,r.min=function(){return Pt("isBefore",[].slice.call(arguments,0))},r.max=function(){return Pt("isAfter",[].slice.call(arguments,0))},r.now=function(){return Date.now?Date.now():+new Date},r.utc=h,r.unix=function(e){return Et(1e3*e)},r.months=function(e,t){return mn(e,t,"months")},r.isDate=u,r.locale=ct,r.invalid=g,r.duration=Wt,r.isMoment=w,r.weekdays=function(e,t,n){return gn(e,t,n,"weekdays")},r.parseZone=function(){return Et.apply(null,arguments).parseZone()},r.localeData=pt,r.isDuration=Rt,r.monthsShort=function(e,t){return mn(e,t,"monthsShort")},r.weekdaysMin=function(e,t,n){return gn(e,t,n,"weekdaysMin")},r.defineLocale=dt,r.updateLocale=function(e,t){if(null!=t){var n,i,r=ot;null!=(i=ut(e))&&(r=i._config),(n=new P(t=D(r,t))).parentLocale=lt[e],lt[e]=n,ct(e)}else null!=lt[e]&&(null!=lt[e].parentLocale?lt[e]=lt[e].parentLocale:null!=lt[e]&&delete lt[e]);return lt[e]},r.locales=function(){return C(lt)},r.weekdaysShort=function(e,t,n){return gn(e,t,n,"weekdaysShort")},r.normalizeUnits=R,r.relativeTimeRounding=function(e){return void 0===e?Fn:"function"==typeof e&&(Fn=e,!0)},r.relativeTimeThreshold=function(e,t){return void 0!==Vn[e]&&(void 0===t?Vn[e]:(Vn[e]=t,"s"===e&&(Vn.ss=t-1),!0))},r.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},r.prototype=dn,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(t,n("3IRH")(e))},PKvP:function(e,t,n){"use strict";var i=n("JkZN");t.from=i.FromObservable.create},PMZt:function(e,t,n){"use strict";var i=n("rCTf"),r=n("u/VN");i.Observable.prototype.throttle=r.throttle},PN3d:function(e,t,n){"use strict";var i=n("1wLk");t.publishBehavior=function(e){return i.publishBehavior(e)(this)}},POFt:function(e,t,n){"use strict";var i=n("5et3");t.take=function(e){return i.take(e)(this)}},POb3:function(e,t,n){var i=n("ICSD")(n("TQ3y"),"Map");e.exports=i},PYDO:function(e,t,n){"use strict";var i=n("7Gky"),r=n("dI0l");t.partition=function(e,t){return function(n){return[r.filter(e,t)(n),r.filter(i.not(e,t))(n)]}}},PgfN:function(e,t,n){var i=n("NFIW"),r=n("8UTl").h;e.exports=function(e){var t=i(),n=function(e){13===e.keyCode&&(e.stopPropagation(),e.preventDefault())};return r("li",{class:"uppy-ProviderBrowserItem"+(e.isChecked?" uppy-ProviderBrowserItem--selected":"")},r("div",{class:"uppy-ProviderBrowserItem-checkbox"},r("input",{type:"checkbox",role:"option",tabindex:"0","aria-label":"Select "+e.title,id:t,checked:e.isChecked,disabled:e.isDisabled,onchange:e.handleCheckboxClick,onkeyup:n,onkeydown:n,onkeypress:n}),r("label",{for:t})),r("button",{type:"button",class:"uppy-ProviderBrowserItem-inner","aria-label":"Select "+e.title,tabindex:"0",onclick:function(t){if(t.preventDefault(),"folder"===e.type)return e.handleClick(t);e.handleCheckboxClick(t)}},e.getItemIcon()," ",e.title))}},PqYH:function(e,t){e.exports=function(e,t){for(var n=-1,i=null==e?0:e.length;++n0?e.prototype.schedule.call(this,t,n):(this.delay=n,this.state=t,this.scheduler.flush(this),this)},t.prototype.execute=function(t,n){return n>0||this.closed?e.prototype.execute.call(this,t,n):this._execute(t,n)},t.prototype.requestAsyncId=function(t,n,i){return void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0?e.prototype.requestAsyncId.call(this,t,n,i):t.flush(this)},t}(r.AsyncAction)},PvYY:function(e,t,n){"use strict";var i=n("rCTf"),r=n("0gHg");i.Observable.prototype.publishReplay=r.publishReplay},PwiB:function(e,t,n){"use strict";var i=n("rCTf"),r=n("sKQ8");i.Observable.prototype.windowTime=r.windowTime},Q0je:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("YOd+");t.NeverObservable=function(e){function t(){e.call(this)}return i(t,e),t.create=function(){return new t},t.prototype._subscribe=function(e){o.noop()},t}(r.Observable)},Q2wK:function(e,t,n){var i=n("8AZL"),r=Math.max;e.exports=function(e,t,n){return t=r(void 0===t?e.length-1:t,0),function(){for(var o=arguments,l=-1,s=r(o.length-t,0),a=Array(s);++l0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},t}(o.a)},Qp3N:function(e,t,n){var i=n("NkRn"),r=n("1Yb9"),o=n("NGEn"),l=i?i.isConcatSpreadable:void 0;e.exports=function(e){return o(e)||r(e)||!!(l&&e&&e[l])}},QqRK:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.InnerSubscriber=function(e){function t(t,n,i){e.call(this),this.parent=t,this.outerValue=n,this.outerIndex=i,this.index=0}return i(t,e),t.prototype._next=function(e){this.parent.notifyNext(this.outerValue,e,this.outerIndex,this.index++,this)},t.prototype._error=function(e){this.parent.notifyError(e,this),this.unsubscribe()},t.prototype._complete=function(){this.parent.notifyComplete(this),this.unsubscribe()},t}(r.Subscriber)},Qt4r:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("fWbP"),l=function(e){return e};t.GenerateObservable=function(e){function t(t,n,i,r,o){e.call(this),this.initialState=t,this.condition=n,this.iterate=i,this.resultSelector=r,this.scheduler=o}return i(t,e),t.create=function(e,n,i,r,s){return 1==arguments.length?new t(e.initialState,e.condition,e.iterate,e.resultSelector||l,e.scheduler):void 0===r||o.isScheduler(r)?new t(e,n,i,l,r):new t(e,n,i,r,s)},t.prototype._subscribe=function(e){var n=this.initialState;if(this.scheduler)return this.scheduler.schedule(t.dispatch,0,{subscriber:e,iterate:this.iterate,condition:this.condition,resultSelector:this.resultSelector,state:n});for(var i=this.condition,r=this.resultSelector,o=this.iterate;;){if(i){var l=void 0;try{l=i(n)}catch(t){return void e.error(t)}if(!l){e.complete();break}}var s=void 0;try{s=r(n)}catch(t){return void e.error(t)}if(e.next(s),e.closed)break;try{n=o(n)}catch(t){return void e.error(t)}}},t.dispatch=function(e){var t=e.subscriber,n=e.condition;if(!t.closed){if(e.needIterate)try{e.state=e.iterate(e.state)}catch(e){return void t.error(e)}else e.needIterate=!0;if(n){var i=void 0;try{i=n(e.state)}catch(e){return void t.error(e)}if(!i)return void t.complete();if(t.closed)return}var r;try{r=e.resultSelector(e.state)}catch(e){return void t.error(e)}if(!t.closed&&(t.next(r),!t.closed))return this.schedule(e)}},t}(r.Observable)},R3sX:function(e,t,n){(function(t){var n=NaN,i="[object Symbol]",r=/^\s+|\s+$/g,o=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,s=/^0o[0-7]+$/i,a=parseInt,u="object"==typeof t&&t&&t.Object===Object&&t,c="object"==typeof self&&self&&self.Object===Object&&self,d=u||c||Function("return this")(),p=Object.prototype.toString,h=Math.max,f=Math.min,m=function(){return d.Date.now()};function g(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function v(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&p.call(e)==i}(e))return n;if(g(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=g(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(r,"");var u=l.test(e);return u||s.test(e)?a(e.slice(2),u?2:8):o.test(e)?n:+e}e.exports=function(e,t,n){var i=!0,r=!0;if("function"!=typeof e)throw new TypeError("Expected a function");return g(n)&&(i="leading"in n?!!n.leading:i,r="trailing"in n?!!n.trailing:r),function(e,t,n){var i,r,o,l,s,a,u=0,c=!1,d=!1,p=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function y(t){var n=i,o=r;return i=r=void 0,u=t,l=e.apply(o,n)}function _(e){var n=e-a;return void 0===a||n>=t||n<0||d&&e-u>=o}function b(){var e=m();if(_(e))return w(e);s=setTimeout(b,function(e){var n=t-(e-a);return d?f(n,o-(e-u)):n}(e))}function w(e){return s=void 0,p&&i?y(e):(i=r=void 0,l)}function x(){var e=m(),n=_(e);if(i=arguments,r=this,a=e,n){if(void 0===s)return function(e){return u=e,s=setTimeout(b,t),c?y(e):l}(a);if(d)return s=setTimeout(b,t),y(a)}return void 0===s&&(s=setTimeout(b,t)),l}return t=v(t)||0,g(n)&&(c=!!n.leading,o=(d="maxWait"in n)?h(v(n.maxWait)||0,t):o,p="trailing"in n?!!n.trailing:p),x.cancel=function(){void 0!==s&&clearTimeout(s),u=0,i=a=r=s=void 0},x.flush=function(){return void 0===s?l:w(m())},x}(e,t,{leading:i,maxWait:t,trailing:r})}}).call(t,n("DuR2"))},RA5l:function(e,t,n){"use strict";var i=n("PutI"),r=n("C0+T");t.queue=new r.QueueScheduler(i.QueueAction)},RGrk:function(e,t,n){var i=n("dCZQ"),r=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return i?void 0!==t[e]:r.call(t,e)}},"RJ4+":function(e,t,n){"use strict";var i=n("+Zxz");t.defaultIfEmpty=function(e){return void 0===e&&(e=null),i.defaultIfEmpty(e)(this)}},RRVv:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf");t.ScalarObservable=function(e){function t(t,n){e.call(this),this.value=t,this.scheduler=n,this._isScalar=!0,n&&(this._isScalar=!1)}return i(t,e),t.create=function(e,n){return new t(e,n)},t.dispatch=function(e){var t=e.value,n=e.subscriber;e.done?n.complete():(n.next(t),n.closed||(e.done=!0,this.schedule(e)))},t.prototype._subscribe=function(e){var n=this.value,i=this.scheduler;if(i)return i.schedule(t.dispatch,0,{done:!1,value:n,subscriber:e});e.next(n),e.closed||e.complete()},t}(r.Observable)},RSMh:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("CURp"),l=n("wAkD");t.UsingObservable=function(e){function t(t,n){e.call(this),this.resourceFactory=t,this.observableFactory=n}return i(t,e),t.create=function(e,n){return new t(e,n)},t.prototype._subscribe=function(e){var t,n=this.resourceFactory,i=this.observableFactory;try{return t=n(),new s(e,t,i)}catch(t){e.error(t)}},t}(r.Observable);var s=function(e){function t(t,n,i){e.call(this,t),this.resource=n,this.observableFactory=i,t.add(n),this.tryUse()}return i(t,e),t.prototype.tryUse=function(){try{var e=this.observableFactory.call(this,this.resource);e&&this.add(o.subscribeToResult(this,e))}catch(e){this._error(e)}},t}(l.OuterSubscriber)},RU1a:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.takeUntil=function(e){return function(t){return t.lift(new l(e))}};var l=function(){function e(e){this.notifier=e}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.notifier))},e}(),s=function(e){function t(t,n){e.call(this,t),this.notifier=n,this.add(o.subscribeToResult(this,n))}return i(t,e),t.prototype.notifyNext=function(e,t,n,i,r){this.complete()},t.prototype.notifyComplete=function(){},t}(r.OuterSubscriber)},RVHk:function(e,t,n){var i=n("TQ3y");e.exports=function(){return i.Date.now()}},RYQg:function(e,t,n){"use strict";var i=n("SoJr");t.zipProto=function(){for(var e=[],t=0;t1)this.connection=null;else{var n=this.connection,i=e._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}else this.connection=null},t}(l.a),d=function(e){function t(t,n){e.call(this),this.source=t,this.subjectFactory=n,this._refCount=0,this._isComplete=!1}return Object(i.__extends)(t,e),t.prototype._subscribe=function(e){return this.getSubject().subscribe(e)},t.prototype.getSubject=function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject},t.prototype.connect=function(){var e=this._connection;return e||(this._isComplete=!1,(e=this._connection=new s.a).add(this.source.subscribe(new h(this.getSubject(),this))),e.closed?(this._connection=null,e=s.a.EMPTY):this._connection=e),e},t.prototype.refCount=function(){return a()(this)},t}(o.a).prototype,p={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:d._subscribe},_isComplete:{value:d._isComplete,writable:!0},getSubject:{value:d.getSubject},connect:{value:d.connect},refCount:{value:d.refCount}},h=function(e){function t(t,n){e.call(this,t),this.connectable=n}return Object(i.__extends)(t,e),t.prototype._error=function(t){this._unsubscribe(),e.prototype._error.call(this,t)},t.prototype._complete=function(){this.connectable._isComplete=!0,this._unsubscribe(),e.prototype._complete.call(this)},t.prototype._unsubscribe=function(){var e=this.connectable;if(e){this.connectable=null;var t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}},t}(r.b);function f(){return new r.a}t.a=function(){return this,a()((e=f,function(t){var n;n="function"==typeof e?e:function(){return e};var i=Object.create(t,p);return i.source=t,i.subjectFactory=n,i})(this));var e}},RfZv:function(e,t,n){var i=n("SOZo"),r=n("IGcM");e.exports=function(e,t){return null!=e&&r(e,t,i)}},Rgi1:function(e,t,n){"use strict";var i=n("itCf");t.skipLast=function(e){return i.skipLast(e)(this)}},Rh28:function(e,t){e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},RnJI:function(e,t,n){!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}})}(n("PJh5"))},Rxv9:function(e,t,n){"use strict";var i=n("rCTf"),r=n("FT6u");i.Observable.prototype.min=r.min},RyDc:function(e,t,n){"use strict";var i=n("Cw9N");t.skipUntil=function(e){return i.skipUntil(e)(this)}},S1l0:function(e,t,n){var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r=Object.assign||function(e){for(var t=1;t"),i=t.responseText.indexOf("");return-1!==n&&-1!==i?t.responseText.slice(n+e.length+2,i):""}),{location:n("Location"),bucket:n("Bucket"),key:n("Key"),etag:n("ETag")}},getResponseError:function(e,t){if(c(t)){var n=t.responseXML.querySelector("Error > Message");return new Error(n.textContent)}}})},t.prototype.uninstall=function(){var e=this.uppy.getPlugin("XHRUpload");this.uppy.removePlugin(e),this.uppy.removePreProcessor(this.prepareUpload)},t}(l)},SSeX:function(e,t,n){"use strict";var i=n("rCTf"),r=n("2AEF");i.Observable.prototype.exhaustMap=r.exhaustMap},SUuD:function(e,t,n){"use strict";var i=n("rCTf"),r=n("rpzr");i.Observable.interval=r.interval},Sjoy:function(e,t,n){!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}})}(n("PJh5"))},SkeF:function(e,t,n){"use strict";var i=Object.prototype.hasOwnProperty;function r(e){return decodeURIComponent(e.replace(/\+/g," "))}t.stringify=function(e,t){t=t||"";var n,r,o=[];for(r in"string"!=typeof t&&(t="?"),e)i.call(e,r)&&((n=e[r])||null!==n&&void 0!==n&&!isNaN(n)||(n=""),o.push(encodeURIComponent(r)+"="+encodeURIComponent(n)));return o.length?t+o.join("&"):""},t.parse=function(e){for(var t,n=/([^=?&]+)=?([^&]*)/g,i={};t=n.exec(e);){var o=r(t[1]),l=r(t[2]);o in i||(i[o]=l)}return i}},SoJr:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("Yh8Q"),o=n("Xajo"),l=n("mmVS"),s=n("wAkD"),a=n("CURp"),u=n("cdmN");function c(){for(var e=[],t=0;tthis.index},e.prototype.hasCompleted=function(){return this.array.length===this.index},e}(),m=function(e){function t(t,n,i){e.call(this,t),this.parent=n,this.observable=i,this.stillUnsubscribed=!0,this.buffer=[],this.isComplete=!1}return i(t,e),t.prototype[u.iterator]=function(){return this},t.prototype.next=function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}},t.prototype.hasValue=function(){return this.buffer.length>0},t.prototype.hasCompleted=function(){return 0===this.buffer.length&&this.isComplete},t.prototype.notifyComplete=function(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()},t.prototype.notifyNext=function(e,t,n,i,r){this.buffer.push(t),this.parent.checkIterators()},t.prototype.subscribe=function(e,t){return a.subscribeToResult(this,this.observable,this,t)},t}(s.OuterSubscriber)},SudU:function(e,t,n){"use strict";var i=n("niWE");t.subscribeOn=function(e,t){return void 0===t&&(t=0),i.subscribeOn(e,t)(this)}},"T/bE":function(e,t,n){var i=n("94sX"),r=n("ue/d"),o=n("eVIm"),l=n("RGrk"),s=n("Z2pD");function a(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t0?e.prototype.requestAsyncId.call(this,t,n,i):(t.actions.push(this),t.scheduled||(t.scheduled=r.Immediate.setImmediate(t.flush.bind(t,null))))},t.prototype.recycleAsyncId=function(t,n,i){if(void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0)return e.prototype.recycleAsyncId.call(this,t,n,i);0===t.actions.length&&(r.Immediate.clearImmediate(n),t.scheduled=void 0)},t}(o.AsyncAction)},TLKQ:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("JkZN"),o=n("Xajo"),l=n("wAkD"),s=n("CURp");t.onErrorResumeNext=function(){for(var e=[],t=0;t\\]|\\[\s\S])*>/,greedy:!0},{pattern:/("|`)(?:(?!\1)[^\\]|\\[\s\S])*\1/,greedy:!0},{pattern:/'(?:[^'\\\r\n]|\\.)*'/,greedy:!0}],regex:[{pattern:/\b(?:m|qr)\s*([^a-zA-Z0-9\s{(\[<])(?:(?!\1)[^\\]|\\[\s\S])*\1[msixpodualngc]*/,greedy:!0},{pattern:/\b(?:m|qr)\s+([a-zA-Z0-9])(?:(?!\1)[^\\]|\\[\s\S])*\1[msixpodualngc]*/,greedy:!0},{pattern:/\b(?:m|qr)\s*\((?:[^()\\]|\\[\s\S])*\)[msixpodualngc]*/,greedy:!0},{pattern:/\b(?:m|qr)\s*\{(?:[^{}\\]|\\[\s\S])*\}[msixpodualngc]*/,greedy:!0},{pattern:/\b(?:m|qr)\s*\[(?:[^[\]\\]|\\[\s\S])*\][msixpodualngc]*/,greedy:!0},{pattern:/\b(?:m|qr)\s*<(?:[^<>\\]|\\[\s\S])*>[msixpodualngc]*/,greedy:!0},{pattern:/(^|[^-]\b)(?:s|tr|y)\s*([^a-zA-Z0-9\s{(\[<])(?:(?!\2)[^\\]|\\[\s\S])*\2(?:(?!\2)[^\\]|\\[\s\S])*\2[msixpodualngcer]*/,lookbehind:!0,greedy:!0},{pattern:/(^|[^-]\b)(?:s|tr|y)\s+([a-zA-Z0-9])(?:(?!\2)[^\\]|\\[\s\S])*\2(?:(?!\2)[^\\]|\\[\s\S])*\2[msixpodualngcer]*/,lookbehind:!0,greedy:!0},{pattern:/(^|[^-]\b)(?:s|tr|y)\s*\((?:[^()\\]|\\[\s\S])*\)\s*\((?:[^()\\]|\\[\s\S])*\)[msixpodualngcer]*/,lookbehind:!0,greedy:!0},{pattern:/(^|[^-]\b)(?:s|tr|y)\s*\{(?:[^{}\\]|\\[\s\S])*\}\s*\{(?:[^{}\\]|\\[\s\S])*\}[msixpodualngcer]*/,lookbehind:!0,greedy:!0},{pattern:/(^|[^-]\b)(?:s|tr|y)\s*\[(?:[^[\]\\]|\\[\s\S])*\]\s*\[(?:[^[\]\\]|\\[\s\S])*\][msixpodualngcer]*/,lookbehind:!0,greedy:!0},{pattern:/(^|[^-]\b)(?:s|tr|y)\s*<(?:[^<>\\]|\\[\s\S])*>\s*<(?:[^<>\\]|\\[\s\S])*>[msixpodualngcer]*/,lookbehind:!0,greedy:!0},{pattern:/\/(?:[^\/\\\r\n]|\\.)*\/[msixpodualngc]*(?=\s*(?:$|[\r\n,.;})&|\-+*~<>!?^]|(lt|gt|le|ge|eq|ne|cmp|not|and|or|xor|x)\b))/,greedy:!0}],variable:[/[&*$@%]\{\^[A-Z]+\}/,/[&*$@%]\^[A-Z_]/,/[&*$@%]#?(?=\{)/,/[&*$@%]#?(?:(?:::)*'?(?!\d)[\w$]+)+(?:::)*/i,/[&*$@%]\d+/,/(?!%=)[$@%][!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~]/],filehandle:{pattern:/<(?![<=])\S*>|\b_\b/,alias:"symbol"},vstring:{pattern:/v\d+(?:\.\d+)*|\d+(?:\.\d+){2,}/,alias:"string"},function:{pattern:/sub [a-z0-9_]+/i,inside:{keyword:/sub/}},keyword:/\b(?:any|break|continue|default|delete|die|do|else|elsif|eval|for|foreach|given|goto|if|last|local|my|next|our|package|print|redo|require|say|state|sub|switch|undef|unless|until|use|when|while)\b/,number:/\b(?:0x[\dA-Fa-f](?:_?[\dA-Fa-f])*|0b[01](?:_?[01])*|(?:\d(?:_?\d)*)?\.?\d(?:_?\d)*(?:[Ee][+-]?\d+)?)\b/,operator:/-[rwxoRWXOezsfdlpSbctugkTBMAC]\b|\+[+=]?|-[-=>]?|\*\*?=?|\/\/?=?|=[=~>]?|~[~=]?|\|\|?=?|&&?=?|<(?:=>?|<=?)?|>>?=?|![~=]?|[%^]=?|\.(?:=|\.\.?)?|[\\?]|\bx(?:=|\b)|\b(?:lt|gt|le|ge|eq|ne|cmp|not|and|or|xor)\b/,punctuation:/[{}[\];(),:]/}},TToO:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.__extends=function(e,t){function n(){this.constructor=e}i(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)},n.d(t,"__assign",function(){return r}),t.__rest=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r=0;s--)(r=e[s])&&(l=(o<3?r(l):o>3?r(t,n,l):r(t,n))||l);return o>3&&l&&Object.defineProperty(t,n,l),l},t.__param=function(e,t){return function(n,i){t(n,i,e)}},t.__metadata=function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},t.__awaiter=function(e,t,n,i){return new(n||(n=Promise))(function(r,o){function l(e){try{a(i.next(e))}catch(e){o(e)}}function s(e){try{a(i.throw(e))}catch(e){o(e)}}function a(e){e.done?r(e.value):new n(function(t){t(e.value)}).then(l,s)}a((i=i.apply(e,t||[])).next())})},t.__generator=function(e,t){var n,i,r,o,l={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(o){return function(s){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;l;)try{if(n=1,i&&(r=2&o[0]?i.return:o[0]?i.throw||((r=i.return)&&r.call(i),0):i.next)&&!(r=r.call(i,o[1])).done)return r;switch(i=0,r&&(o=[2&o[0],r.value]),o[0]){case 0:case 1:r=o;break;case 4:return l.label++,{value:o[1],done:!1};case 5:l.label++,i=o[1],o=[0];continue;case 7:o=l.ops.pop(),l.trys.pop();continue;default:if(!(r=(r=l.trys).length>0&&r[r.length-1])&&(6===o[0]||2===o[0])){l=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]1||a(e,t)})})}function a(e,t){try{(n=r[e](t)).value instanceof s?Promise.resolve(n.value.v).then(u,c):d(o[0][2],n)}catch(e){d(o[0][3],e)}var n}function u(e){a("next",e)}function c(e){a("throw",e)}function d(e,t){e(t),o.shift(),o.length&&a(o[0][0],o[0][1])}},t.__asyncDelegator=function(e){var t,n;return t={},i("next"),i("throw",function(e){throw e}),i("return"),t[Symbol.iterator]=function(){return this},t;function i(i,r){t[i]=e[i]?function(t){return(n=!n)?{value:s(e[i](t)),done:"return"===i}:r?r(t):t}:r}},t.__asyncValues=function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,n=e[Symbol.asyncIterator];return n?n.call(e):(e="function"==typeof o?o(e):e[Symbol.iterator](),t={},i("next"),i("throw"),i("return"),t[Symbol.asyncIterator]=function(){return this},t);function i(n){t[n]=e[n]&&function(t){return new Promise(function(i,r){!function(e,t,n,i){Promise.resolve(i).then(function(t){e({value:t,done:n})},t)}(i,r,(t=e[n](t)).done,t.value)})}}},t.__makeTemplateObject=function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e},t.__importStar=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t},t.__importDefault=function(e){return e&&e.__esModule?e:{default:e}};var i=function(e,t){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},r=function(){return(r=Object.assign||function(e){for(var t,n=1,i=arguments.length;n=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}function l(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var i,r,o=n.call(e),l=[];try{for(;(void 0===t||t-- >0)&&!(i=o.next()).done;)l.push(i.value)}catch(e){r={error:e}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return l}function s(e){return this instanceof s?(this.v=e,this):new s(e)}},TfWX:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("IZVw");t.BehaviorSubject=function(e){function t(t){e.call(this),this._value=t}return i(t,e),Object.defineProperty(t.prototype,"value",{get:function(){return this.getValue()},enumerable:!0,configurable:!0}),t.prototype._subscribe=function(t){var n=e.prototype._subscribe.call(this,t);return n&&!n.closed&&t.next(this._value),n},t.prototype.getValue=function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new o.ObjectUnsubscribedError;return this._value},t.prototype.next=function(t){e.prototype.next.call(this,this._value=t)},t}(r.Subject)},Tff0:function(e,t){e.exports=function(e,t,n){var i=e.byteLength;if(t=t||0,n=n||i,e.slice)return e.slice(t,n);if(t<0&&(t+=i),n<0&&(n+=i),n>i&&(n=i),t>=i||t>=n||0===i)return new ArrayBuffer(0);for(var r=new Uint8Array(e),o=new Uint8Array(n-t),l=t,s=0;l=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5":i<900?"\u0633\u06d5\u06be\u06d5\u0631":i<1130?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646":i<1230?"\u0686\u06c8\u0634":i<1800?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646":"\u0643\u06d5\u0686"},calendar:{sameDay:"[\u0628\u06c8\u06af\u06c8\u0646 \u0633\u0627\u0626\u06d5\u062a] LT",nextDay:"[\u0626\u06d5\u062a\u06d5 \u0633\u0627\u0626\u06d5\u062a] LT",nextWeek:"[\u0643\u06d0\u0644\u06d5\u0631\u0643\u0649] dddd [\u0633\u0627\u0626\u06d5\u062a] LT",lastDay:"[\u062a\u06c6\u0646\u06c8\u06af\u06c8\u0646] LT",lastWeek:"[\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649] dddd [\u0633\u0627\u0626\u06d5\u062a] LT",sameElse:"L"},relativeTime:{future:"%s \u0643\u06d0\u064a\u0649\u0646",past:"%s \u0628\u06c7\u0631\u06c7\u0646",s:"\u0646\u06d5\u0686\u0686\u06d5 \u0633\u06d0\u0643\u0648\u0646\u062a",ss:"%d \u0633\u06d0\u0643\u0648\u0646\u062a",m:"\u0628\u0649\u0631 \u0645\u0649\u0646\u06c7\u062a",mm:"%d \u0645\u0649\u0646\u06c7\u062a",h:"\u0628\u0649\u0631 \u0633\u0627\u0626\u06d5\u062a",hh:"%d \u0633\u0627\u0626\u06d5\u062a",d:"\u0628\u0649\u0631 \u0643\u06c8\u0646",dd:"%d \u0643\u06c8\u0646",M:"\u0628\u0649\u0631 \u0626\u0627\u064a",MM:"%d \u0626\u0627\u064a",y:"\u0628\u0649\u0631 \u064a\u0649\u0644",yy:"%d \u064a\u0649\u0644"},dayOfMonthOrdinalParse:/\d{1,2}(-\u0643\u06c8\u0646\u0649|-\u0626\u0627\u064a|-\u06be\u06d5\u067e\u062a\u06d5)/,ordinal:function(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}})}(n("PJh5"))},Tqun:function(e,t,n){!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")}})}(n("PJh5"))},TuMz:function(e,t,n){var i=n("8UTl").h,r=n("HMXC");e.exports=function(e){return i("ul",{class:"uppy-Provider-breadcrumbs"},e.directories.map(function(t,n){return r({getFolder:function(){return e.getFolder(t.id)},title:0===n?e.title:t.title})}))}},U15Z:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("VOfZ"),o=n("rCTf"),l=n("cdmN");t.IteratorObservable=function(e){function t(t,n){if(e.call(this),this.scheduler=n,null==t)throw new Error("iterator cannot be null.");this.iterator=function(e){var t=e[l.iterator];if(!t&&"string"==typeof e)return new s(e);if(!t&&void 0!==e.length)return new a(e);if(!t)throw new TypeError("object is not iterable");return e[l.iterator]()}(t)}return i(t,e),t.create=function(e,n){return new t(e,n)},t.dispatch=function(e){var t=e.index,n=e.iterator,i=e.subscriber;if(e.hasError)i.error(e.error);else{var r=n.next();r.done?i.complete():(i.next(r.value),e.index=t+1,i.closed?"function"==typeof n.return&&n.return():this.schedule(e))}},t.prototype._subscribe=function(e){var n=this.iterator,i=this.scheduler;if(i)return i.schedule(t.dispatch,0,{index:0,iterator:n,subscriber:e});for(;;){var r=n.next();if(r.done){e.complete();break}if(e.next(r.value),e.closed){"function"==typeof n.return&&n.return();break}}},t}(o.Observable);var s=function(){function e(e,t,n){void 0===t&&(t=0),void 0===n&&(n=e.length),this.str=e,this.idx=t,this.len=n}return e.prototype[l.iterator]=function(){return this},e.prototype.next=function(){return this.idxu?u:o:o}()),this.arr=e,this.idx=t,this.len=n}return e.prototype[l.iterator]=function(){return this},e.prototype.next=function(){return this.idx=2&&(n=!0),function(i){return i.lift(new o(e,t,n))}};var o=function(){function e(e,t,n){void 0===n&&(n=!1),this.accumulator=e,this.seed=t,this.hasSeed=n}return e.prototype.call=function(e,t){return t.subscribe(new l(e,this.accumulator,this.seed,this.hasSeed))},e}(),l=function(e){function t(t,n,i,r){e.call(this,t),this.accumulator=n,this._seed=i,this.hasSeed=r,this.index=0}return i(t,e),Object.defineProperty(t.prototype,"seed",{get:function(){return this._seed},set:function(e){this.hasSeed=!0,this._seed=e},enumerable:!0,configurable:!0}),t.prototype._next=function(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)},t.prototype._tryNext=function(e){var t,n=this.index++;try{t=this.accumulator(this.seed,e,n)}catch(e){this.destination.error(e)}this.seed=t,this.destination.next(t)},t}(r.Subscriber)},UZ14:function(e,t,n){(function(t){e.exports=function(e){return t.Buffer&&t.Buffer.isBuffer(e)||t.ArrayBuffer&&(e instanceof ArrayBuffer||ArrayBuffer.isView(e))}}).call(t,n("DuR2"))},Ubhr:function(e,t,n){var i=n("6MiT");e.exports=function(e){if("string"==typeof e||i(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},UfSK:function(e,t){var n=Object.prototype.hasOwnProperty;e.exports=function(e){var t=e.length,i=new e.constructor(t);return t&&"string"==typeof e[0]&&n.call(e,"index")&&(i.index=e.index,i.input=e.input),i}},UiQ2:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n("8oH5");t.TranslateI18Next=i.TranslateI18Next;var r=n("E30z");t.TranslatePipe=r.TranslatePipe;var o=n("ci15");t.TranslateI18NextModule=o.TranslateI18NextModule},Ulcl:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i,r=(i=n("OkdJ"))&&i.__esModule?i:{default:i},o=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","tg","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","es_ar","et","eu","fi","fo","fur","fy","gl","gu","ha","he","hi","hu","hy","ia","it","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt","pt_br","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","id","ja","jbo","ka","kk","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21}],l={1:function(e){return Number(e>1)},2:function(e){return Number(1!=e)},3:function(e){return 0},4:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},5:function(e){return Number(0===e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5)},6:function(e){return Number(1==e?0:e>=2&&e<=4?1:2)},7:function(e){return Number(1==e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},8:function(e){return Number(1==e?0:2==e?1:8!=e&&11!=e?2:3)},9:function(e){return Number(e>=2)},10:function(e){return Number(1==e?0:2==e?1:e<7?2:e<11?3:4)},11:function(e){return Number(1==e||11==e?0:2==e||12==e?1:e>2&&e<20?2:3)},12:function(e){return Number(e%10!=1||e%100==11)},13:function(e){return Number(0!==e)},14:function(e){return Number(1==e?0:2==e?1:3==e?2:3)},15:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2)},16:function(e){return Number(e%10==1&&e%100!=11?0:0!==e?1:2)},17:function(e){return Number(1==e||e%10==1?0:1)},18:function(e){return Number(0==e?0:1==e?1:2)},19:function(e){return Number(1==e?0:0===e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3)},20:function(e){return Number(1==e?0:0===e||e%100>0&&e%100<20?1:2)},21:function(e){return Number(e%100==1?1:e%100==2?2:e%100==3||e%100==4?3:0)}},s=function(){function e(t){var n,i=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];!function(t,n){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this),this.languageUtils=t,this.options=i,this.logger=r.default.create("pluralResolver"),this.rules=(n={},o.forEach(function(e){e.lngs.forEach(function(t){return n[t]={numbers:e.nr,plurals:l[e.fc]}})}),n)}return e.prototype.addRule=function(e,t){this.rules[e]=t},e.prototype.getRule=function(e){return this.rules[this.languageUtils.getLanguagePartFromCode(e)]},e.prototype.needsPlural=function(e){var t=this.getRule(e);return!(t&&t.numbers.length<=1)},e.prototype.getSuffix=function(e,t){var n=this.getRule(e);if(n){if(1===n.numbers.length)return"";var i=n.plurals(n.noAbs?t:Math.abs(t)),r=n.numbers[i];if(2===n.numbers.length&&1===n.numbers[0]&&(2===r?r="plural":1===r&&(r="")),"v1"===this.options.compatibilityJSON){if(1===r)return"";if("number"==typeof r)return"_plural_"+r.toString()}return this.options.prepend&&r.toString()?this.options.prepend+r.toString():r.toString()}return this.logger.warn("no plural rule found for: "+e),""},e}();t.default=s},UmTU:function(e,t,n){"use strict";var i=n("fWbP"),r=n("Xajo"),o=n("Yh8Q"),l=n("ijov");t.combineLatest=function(){for(var e=[],t=0;t0)for(var n=this.count>=this.total?this.total:this.count,i=this.ring,r=0;r1?new t(e,i):1===r?new o.a(e[0],i):new l.a(i)},t.dispatch=function(e){var t=e.array,n=e.index,i=e.subscriber;n>=e.count?i.complete():(i.next(t[n]),i.closed||(e.index=n+1,this.schedule(e)))},t.prototype._subscribe=function(e){var n=this.array,i=n.length,r=this.scheduler;if(r)return r.schedule(t.dispatch,0,{array:n,index:0,count:i,subscriber:e});for(var o=0;o=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:"[\u4e0b]ddddLT",lastDay:"[\u6628\u5929]LT",lastWeek:"[\u4e0a]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u5468)/,ordinal:function(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}})}(n("PJh5"))},"W+Sr":function(e,t,n){"use strict";var i=n("aQps");t.audit=i.audit;var r=n("YPa8");t.auditTime=r.auditTime;var o=n("2JaL");t.buffer=o.buffer;var l=n("lYi/");t.bufferCount=l.bufferCount;var s=n("nSY4");t.bufferTime=s.bufferTime;var a=n("2yqU");t.bufferToggle=a.bufferToggle;var u=n("xx+E");t.bufferWhen=u.bufferWhen;var c=n("LxNc");t.catchError=c.catchError;var d=n("/nPl");t.combineAll=d.combineAll;var p=n("ijov");t.combineLatest=p.combineLatest;var h=n("mK7q");t.concat=h.concat;var f=n("oZkx");t.concatAll=f.concatAll;var m=n("oBYf");t.concatMap=m.concatMap;var g=n("7ZL4");t.concatMapTo=g.concatMapTo;var v=n("x+Qm");t.count=v.count;var y=n("E8hY");t.debounce=y.debounce;var _=n("MEr+");t.debounceTime=_.debounceTime;var b=n("+Zxz");t.defaultIfEmpty=b.defaultIfEmpty;var w=n("b8PX");t.delay=w.delay;var x=n("BkLI");t.delayWhen=x.delayWhen;var M=n("L97J");t.dematerialize=M.dematerialize;var T=n("Lndg");t.distinct=T.distinct;var L=n("7MSh");t.distinctUntilChanged=L.distinctUntilChanged;var k=n("qiws");t.distinctUntilKeyChanged=k.distinctUntilKeyChanged;var C=n("gzKz");t.elementAt=C.elementAt;var S=n("fI0c");t.every=S.every;var E=n("N3AT");t.exhaust=E.exhaust;var O=n("13YQ");t.exhaustMap=O.exhaustMap;var D=n("0qMM");t.expand=D.expand;var P=n("dI0l");t.filter=P.filter;var I=n("ady2");t.finalize=I.finalize;var j=n("dw63");t.find=j.find;var R=n("+7iS");t.findIndex=R.findIndex;var A=n("c8IX");t.first=A.first;var Y=n("aQ5C");t.groupBy=Y.groupBy;var N=n("ygD2");t.ignoreElements=N.ignoreElements;var F=n("ZFQj");t.isEmpty=F.isEmpty;var V=n("p/p0");t.last=V.last;var H=n("9omE");t.map=H.map;var U=n("6X/k");t.mapTo=U.mapTo;var B=n("Y0+V");t.materialize=B.materialize;var z=n("mrwz");t.max=z.max;var W=n("FDBB");t.merge=W.merge;var q=n("rKQy");t.mergeAll=q.mergeAll;var G=n("ANGw");t.mergeMap=G.mergeMap;var Z=n("ANGw");t.flatMap=Z.mergeMap;var J=n("fyNK");t.mergeMapTo=J.mergeMapTo;var $=n("jtuv");t.mergeScan=$.mergeScan;var K=n("Z0M+");t.min=K.min;var Q=n("6BaH");t.multicast=Q.multicast;var X=n("ODby");t.observeOn=X.observeOn;var ee=n("TLKQ");t.onErrorResumeNext=ee.onErrorResumeNext;var te=n("Uqr9");t.pairwise=te.pairwise;var ne=n("PYDO");t.partition=ne.partition;var ie=n("y4xv");t.pluck=ie.pluck;var re=n("i9tv");t.publish=re.publish;var oe=n("1wLk");t.publishBehavior=oe.publishBehavior;var le=n("tGXy");t.publishLast=le.publishLast;var se=n("BV2O");t.publishReplay=se.publishReplay;var ae=n("qIte");t.race=ae.race;var ue=n("dt7L");t.reduce=ue.reduce;var ce=n("xazO");t.repeat=ce.repeat;var de=n("Abu5");t.repeatWhen=de.repeatWhen;var pe=n("HrNe");t.retry=pe.retry;var he=n("hQYy");t.retryWhen=he.retryWhen;var fe=n("9dR0");t.refCount=fe.refCount;var me=n("ZzDa");t.sample=me.sample;var ge=n("Lb3r");t.sampleTime=ge.sampleTime;var ve=n("UYy0");t.scan=ve.scan;var ye=n("A3ES");t.sequenceEqual=ye.sequenceEqual;var _e=n("sTFn");t.share=_e.share;var be=n("N/Bz");t.shareReplay=be.shareReplay;var we=n("DZi2");t.single=we.single;var xe=n("JzlZ");t.skip=xe.skip;var Me=n("itCf");t.skipLast=Me.skipLast;var Te=n("Cw9N");t.skipUntil=Te.skipUntil;var Le=n("prqh");t.skipWhile=Le.skipWhile;var ke=n("C/iu");t.startWith=ke.startWith;var Ce=n("Am8Y");t.switchAll=Ce.switchAll;var Se=n("sAZ4");t.switchMap=Se.switchMap;var Ee=n("/Sq5");t.switchMapTo=Ee.switchMapTo;var Oe=n("5et3");t.take=Oe.take;var De=n("UwVZ");t.takeLast=De.takeLast;var Pe=n("RU1a");t.takeUntil=Pe.takeUntil;var Ie=n("215F");t.takeWhile=Ie.takeWhile;var je=n("D2Nv");t.tap=je.tap;var Re=n("IsV2");t.throttle=Re.throttle;var Ae=n("yK6r");t.throttleTime=Ae.throttleTime;var Ye=n("F9Yt");t.timeInterval=Ye.timeInterval;var Ne=n("D77r");t.timeout=Ne.timeout;var Fe=n("Wx6B");t.timeoutWith=Fe.timeoutWith;var Ve=n("tyXZ");t.timestamp=Ve.timestamp;var He=n("piny");t.toArray=He.toArray;var Ue=n("5LW/");t.window=Ue.window;var Be=n("xHsH");t.windowCount=Be.windowCount;var ze=n("17on");t.windowTime=ze.windowTime;var We=n("ashs");t.windowToggle=We.windowToggle;var qe=n("8FDs");t.windowWhen=qe.windowWhen;var Ge=n("offc");t.withLatestFrom=Ge.withLatestFrom;var Ze=n("SoJr");t.zip=Ze.zip;var Je=n("KHaY");t.zipAll=Je.zipAll},"W/R7":function(e,t,n){var i=Object.assign||function(e){for(var t=1;t1)for(var n=1;n ");else if("object"==typeof t){var r=[];for(var o in t)if(t.hasOwnProperty(o)){var l=t[o];r.push(o+":"+("string"==typeof l?JSON.stringify(l):ee(l)))}i="{"+r.join(", ")+"}"}return"StaticInjectorError"+(n?"("+n+")":"")+"["+i+"]: "+e.replace(me,"\n ")}function be(e,t){return new Error(_e(e,t))}var we="ngDebugContext",xe="ngOriginalError",Me="ngErrorLogger";function Te(e){return e[we]}function Le(e){return e[xe]}function ke(e){for(var t=[],n=1;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 ee(e.token)}).join(" -> ")+")":""}function Ee(e,t,n,i){var r=[t],o=n(r),l=i?function(e,t){var n=o+" caused by: "+(t instanceof Error?t.message:t),i=Error(n);return i[xe]=t,i}(0,i):Error(o);return l.addKey=Oe,l.keys=r,l.injectors=[e],l.constructResolvingMessage=n,l[xe]=i,l}function Oe(e,t){this.injectors.push(e),this.keys.push(t),this.message=this.constructResolvingMessage(this.keys)}function De(e,t){for(var n=[],i=0,r=t.length;i=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 Ee(this,e.key,function(e){return"Cannot instantiate cyclic dependency!"+Se(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)e._bootstrapComponents.forEach(function(e){return t.bootstrap(e)});else{if(!e.instance.ngDoBootstrap)throw new Error("The module "+ee(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(i.__assign)({},e,t)}var mn=function(){function e(e,t,n,i,s,a){var u=this;this._zone=e,this._console=t,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=s,this._initStatus=a,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=ln(),this._zone.onMicrotaskEmpty.subscribe({next:function(){u._zone.run(function(){u.tick()})}});var c=new r.a(function(e){u._stable=u._zone.isStable&&!u._zone.hasPendingMacrotasks&&!u._zone.hasPendingMicrotasks,u._zone.runOutsideAngular(function(){e.next(u._stable),e.complete()})}),d=new r.a(function(e){var t;u._zone.runOutsideAngular(function(){t=u._zone.onStable.subscribe(function(){Bt.assertNotInAngularZone(),Q(function(){u._stable||u._zone.hasPendingMacrotasks||u._zone.hasPendingMicrotasks||(u._stable=!0,e.next(!0))})})});var n=u._zone.onUnstable.subscribe(function(){Bt.assertInAngularZone(),u._stable&&(u._stable=!1,u._zone.runOutsideAngular(function(){e.next(!1)}))});return function(){t.unsubscribe(),n.unsubscribe()}});this.isStable=Object(o.a)(c,l.a.call(d))}return e.prototype.bootstrap=function(e,t){var n,i=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");n=e instanceof bt?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var r=n instanceof St?null:this._injector.get(Et),o=n.create(se.NULL,[],t||n.selector,r);o.onDestroy(function(){i._unloadComponent(o)});var l=o.injector.get($t,null);return l&&o.injector.get(Kt).registerApplication(o.location.nativeElement,l),this._loadComponent(o),ln()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),o},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,Ft(n)}},e.prototype.attachView=function(e){var t=e;this._views.push(t),t.attachToAppRef(this)},e.prototype.detachView=function(e){var t=e;gn(this._views,t),t.detachFromAppRef()},e.prototype._loadComponent=function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(dt,[]).concat(this._bootstrapListeners).forEach(function(t){return t(e)})},e.prototype._unloadComponent=function(e){this.detachView(e.hostView),gn(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=Nt("ApplicationRef#tick()"),e}();function gn(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var vn=function(e,t,n,i,r,o){this.id=e,this.templateUrl=t,this.slotCount=n,this.encapsulation=i,this.styles=r,this.animations=o},yn=function(){},_n=function(){},bn=function(){},wn=function(){},xn=function(){var e={Important:1,DashCase:2};return e[e.Important]="Important",e[e.DashCase]="DashCase",e}(),Mn=function(){},Tn=function(e){this.nativeElement=e},Ln=function(){},kn=new Map;function Cn(e,t){var n=kn.get(e);if(n)throw new Error("Duplicate module registered for "+e+" - "+n.moduleType.name+" vs "+t.moduleType.name);kn.set(e,t)}function Sn(e){var t=kn.get(e);if(!t)throw new Error("No module with ID "+e+" loaded");return t}var En=function(){function e(){this.dirty=!0,this._results=[],this.changes=new Ut,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[K()]=function(){return this._results[K()]()},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 i=Array.isArray(n)?e(n):n;return t.concat(i)},[])}(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}(),On=function(){},Dn={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},Pn=function(){function e(e,t){this._compiler=e,this._config=t||Dn}return e.prototype.load=function(e){return this._compiler instanceof gt?this.loadFactory(e):this.loadAndCompile(e)},e.prototype.loadAndCompile=function(e){var t=this,i=e.split("#"),r=i[0],o=i[1];return void 0===o&&(o="default"),n("Jnfr")(r).then(function(e){return e[o]}).then(function(e){return In(e,r,o)}).then(function(e){return t._compiler.compileModuleAsync(e)})},e.prototype.loadFactory=function(e){var t=e.split("#"),i=t[0],r=t[1],o="NgFactory";return void 0===r&&(r="default",o=""),n("Jnfr")(this._config.factoryPathPrefix+i+this._config.factoryPathSuffix).then(function(e){return e[r+o]}).then(function(e){return In(e,i,r)})},e}();function In(e,t,n){if(!e)throw new Error("Cannot find '"+n+"' in '"+t+"'");return e}var jn=function(){},Rn=function(){},An=function(){},Yn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i.__extends)(t,e),t}(An),Nn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i.__extends)(t,e),t}(Yn),Fn=function(){function e(e,t,n){this._debugContext=n,this.nativeNode=e,t&&t instanceof Vn?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}(),Vn=function(e){function t(t,n,i){var r=e.call(this,t,n,i)||this;return r.properties={},r.attributes={},r.classes={},r.styles={},r.childNodes=[],r.nativeElement=t,r}return Object(i.__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,i=this,r=this.childNodes.indexOf(e);-1!==r&&((n=this.childNodes).splice.apply(n,[r+1,0].concat(t)),t.forEach(function(e){e.parent&&e.parent.removeChild(e),e.parent=i}))},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 Un(this,e,t),t},t.prototype.queryAllNodes=function(e){var t=[];return Bn(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}(Fn);function Hn(e){return e.map(function(e){return e.nativeElement})}function Un(e,t,n){e.childNodes.forEach(function(e){e instanceof Vn&&(t(e)&&n.push(e),Un(e,t,n))})}function Bn(e,t,n){e instanceof Vn&&e.childNodes.forEach(function(e){t(e)&&n.push(e),e instanceof Vn&&Bn(e,t,n)})}var zn=new Map;function Wn(e){return zn.get(e)||null}function qn(e){zn.set(e.nativeNode,e)}function Gn(e,t){var n=$n(e),i=$n(t);return n&&i?function(e,t,n){for(var i=e[K()](),r=t[K()]();;){var o=i.next(),l=r.next();if(o.done&&l.done)return!0;if(o.done||l.done)return!1;if(!n(o.value,l.value))return!1}}(e,t,Gn):!(n||!e||"object"!=typeof e&&"function"!=typeof e||i||!t||"object"!=typeof t&&"function"!=typeof t)||X(e,t)}var Zn=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}(),Jn=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 $n(e){return!!Kn(e)&&(Array.isArray(e)||!(e instanceof Map)&&K()in e)}function Kn(e){return null!==e&&("function"==typeof e||"object"==typeof e)}var Qn=function(){function e(){}return e.prototype.supports=function(e){return $n(e)},e.prototype.create=function(e){return new ei(e)},e}(),Xn=function(e,t){return t},ei=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||Xn}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,i=0,r=null;t||n;){var o=!n||t&&t.currentIndex=n.length)&&(t=n.length-1),t<0)return null;var i=n[t];return i.viewContainerParent=null,Fr(n,t),Pi.dirtyParentQueries(i),Yr(i),i}function Ar(e,t,n){var i=t?Xi(t,t.def.lastRenderRootNode):e.renderElement;ur(n,2,n.renderer.parentNode(i),n.renderer.nextSibling(i),void 0)}function Yr(e){ur(e,3,null,null,void 0)}function Nr(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function Fr(e,t){t>=e.length-1?e.pop():e.splice(t,1)}var Vr=new Object;function Hr(e,t,n,i,r,o){return new Br(e,t,n,i,r,o)}function Ur(e){return e.viewDefFactory}var Br=function(e){function t(t,n,i,r,o,l){var s=e.call(this)||this;return s.selector=t,s.componentType=n,s._inputs=r,s._outputs=o,s.ngContentSelectors=l,s.viewDefFactory=i,s}return Object(i.__extends)(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){var e=[],t=this._inputs;for(var n in t)e.push({propName:n,templateName:t[n]});return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){var e=[];for(var t in this._outputs)e.push({propName:t,templateName:this._outputs[t]});return e},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,i){if(!i)throw new Error("ngModule should be provided");var r=ar(this.viewDefFactory),o=r.nodes[0].element.componentProvider.nodeIndex,l=Pi.createRootView(e,t||[],n,r,i,Vr),s=Si(l,o).instance;return n&&l.renderer.setAttribute(Ci(l,0).renderElement,"ng-version",F.full),new zr(l,new Zr(l),s)},t}(bt),zr=function(e){function t(t,n,i){var r=e.call(this)||this;return r._view=t,r._viewRef=n,r._component=i,r._elDef=r._view.def.nodes[0],r.hostView=n,r.changeDetectorRef=n,r.instance=i,r}return Object(i.__extends)(t,e),Object.defineProperty(t.prototype,"location",{get:function(){return new Tn(Ci(this._view,this._elDef.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new Qr(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this._viewRef.destroy()},t.prototype.onDestroy=function(e){this._viewRef.onDestroy(e)},t}(_t);function Wr(e,t,n){return new qr(e,t,n)}var qr=function(){function e(e,t,n){this._view=e,this._elDef=t,this._data=n,this._embeddedViews=[]}return Object.defineProperty(e.prototype,"element",{get:function(){return new Tn(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new Qr(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parentInjector",{get:function(){for(var e=this._view,t=this._elDef.parent;!t&&e;)t=Qi(e),e=e.parent;return e?new Qr(e,t):new Qr(this._view,null)},enumerable:!0,configurable:!0}),e.prototype.clear=function(){for(var e=this._embeddedViews.length-1;e>=0;e--){var t=Rr(this._data,e);Pi.destroyView(t)}},e.prototype.get=function(e){var t=this._embeddedViews[e];if(t){var n=new Zr(t);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(e.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),e.prototype.createEmbeddedView=function(e,t,n){var i=e.createEmbeddedView(t||{});return this.insert(i,n),i},e.prototype.createComponent=function(e,t,n,i,r){var o=n||this.parentInjector;r||e instanceof St||(r=o.get(Et));var l=e.create(o,i,void 0,r);return this.insert(l.hostView,t),l},e.prototype.insert=function(e,t){if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n,i,r,o,l=e;return r=l._view,o=(n=this._data).viewContainer._embeddedViews,null!==(i=t)&&void 0!==i||(i=o.length),r.viewContainerParent=this._view,Nr(o,i,r),function(e,t){var n=Ki(t);if(n&&n!==e&&!(16&t.state)){t.state|=16;var i=n.template._projectedViews;i||(i=n.template._projectedViews=[]),i.push(t),function(e,n){if(!(4&n.flags)){t.parent.def.nodeFlags|=4,n.flags|=4;for(var i=n.parent;i;)i.childFlags|=4,i=i.parent}}(0,t.parentNodeDef)}}(n,r),Pi.dirtyParentQueries(r),Ar(n,i>0?o[i-1]:null,r),l.attachToViewContainerRef(this),e},e.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n,i,r,o,l,s=this._embeddedViews.indexOf(e._view);return r=t,l=(o=(n=this._data).viewContainer._embeddedViews)[i=s],Fr(o,i),null==r&&(r=o.length),Nr(o,r,l),Pi.dirtyParentQueries(l),Yr(l),Ar(n,r>0?o[r-1]:null,l),e},e.prototype.indexOf=function(e){return this._embeddedViews.indexOf(e._view)},e.prototype.remove=function(e){var t=Rr(this._data,e);t&&Pi.destroyView(t)},e.prototype.detach=function(e){var t=Rr(this._data,e);return t?new Zr(t):null},e}();function Gr(e){return new Zr(e)}var Zr=function(){function e(e){this._view=e,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){return ur(this._view,0,void 0,void 0,e=[]),e;var e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 0!=(128&this._view.state)},enumerable:!0,configurable:!0}),e.prototype.markForCheck=function(){Zi(this._view)},e.prototype.detach=function(){this._view.state&=-5},e.prototype.detectChanges=function(){var e=this._view.root.rendererFactory;e.begin&&e.begin();try{Pi.checkAndUpdateView(this._view)}finally{e.end&&e.end()}},e.prototype.checkNoChanges=function(){Pi.checkNoChangesView(this._view)},e.prototype.reattach=function(){this._view.state|=4},e.prototype.onDestroy=function(e){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(e)},e.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),Pi.destroyView(this._view)},e.prototype.detachFromAppRef=function(){this._appRef=null,Yr(this._view),Pi.dirtyParentQueries(this._view)},e.prototype.attachToAppRef=function(e){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=e},e.prototype.attachToViewContainerRef=function(e){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=e},e}();function Jr(e,t){return new $r(e,t)}var $r=function(e){function t(t,n){var i=e.call(this)||this;return i._parentView=t,i._def=n,i}return Object(i.__extends)(t,e),t.prototype.createEmbeddedView=function(e){return new Zr(Pi.createEmbeddedView(this._parentView,this._def,this._def.element.template,e))},Object.defineProperty(t.prototype,"elementRef",{get:function(){return new Tn(Ci(this._parentView,this._def.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),t}(jn);function Kr(e,t){return new Qr(e,t)}var Qr=function(){function e(e,t){this.view=e,this.elDef=t}return e.prototype.get=function(e,t){return void 0===t&&(t=se.THROW_IF_NOT_FOUND),Pi.resolveDep(this.view,this.elDef,!!this.elDef&&0!=(33554432&this.elDef.flags),{flags:0,token:e,tokenKey:Ni(e)},t)},e}();function Xr(e,t){var n=e.def.nodes[t];if(1&n.flags){var i=Ci(e,n.nodeIndex);return n.element.template?i.template:i.renderElement}if(2&n.flags)return ki(e,n.nodeIndex).renderText;if(20240&n.flags)return Si(e,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+t)}function eo(e){return new to(e.renderer)}var to=function(){function e(e){this.delegate=e}return e.prototype.selectRootElement=function(e){return this.delegate.selectRootElement(e)},e.prototype.createElement=function(e,t){var n=mr(t),i=this.delegate.createElement(n[1],n[0]);return e&&this.delegate.appendChild(e,i),i},e.prototype.createViewRoot=function(e){return e},e.prototype.createTemplateAnchor=function(e){var t=this.delegate.createComment("");return e&&this.delegate.appendChild(e,t),t},e.prototype.createText=function(e,t){var n=this.delegate.createText(t);return e&&this.delegate.appendChild(e,n),n},e.prototype.projectNodes=function(e,t){for(var n=0;n0,t.provider.value,t.provider.deps);if(t.outputs.length)for(var i=0;i0,i=t.provider;switch(201347067&t.flags){case 512:return wo(e,t.parent,n,i.value,i.deps);case 1024:return function(e,t,n,i,r){var o=r.length;switch(o){case 0:return i();case 1:return i(Mo(e,t,n,r[0]));case 2:return i(Mo(e,t,n,r[0]),Mo(e,t,n,r[1]));case 3:return i(Mo(e,t,n,r[0]),Mo(e,t,n,r[1]),Mo(e,t,n,r[2]));default:for(var l=Array(o),s=0;s0)u=m,zo(m)||(c=m);else for(;u&&f===u.nodeIndex+u.childCount;){var y=u.parent;y&&(y.childFlags|=u.childFlags,y.childMatchedQueries|=u.childMatchedQueries),c=(u=y)&&zo(u)?u.renderParent:u}}return{factory:null,nodeFlags:l,rootNodeFlags:s,nodeMatchedQueries:a,flags:e,nodes:t,updateDirectives:n||Ai,updateRenderer:i||Ai,handleEvent:function(e,n,i,r){return t[n].element.handleEvent(e,i,r)},bindingCount:r,outputCount:o,lastRenderRootNode:h}}function zo(e){return 0!=(1&e.flags)&&null===e.element.name}function Wo(e,t,n){var i=t.element&&t.element.template;if(i){if(!i.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(i.lastRenderRootNode&&16777216&i.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+t.nodeIndex+"!")}if(20224&t.flags&&0==(1&(e?e.flags:0)))throw new Error("Illegal State: StaticProvider/Directive nodes need to be children of elements or anchors, at index "+t.nodeIndex+"!");if(t.query){if(67108864&t.flags&&(!e||0==(16384&e.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+t.nodeIndex+"!");if(134217728&t.flags&&e)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+t.nodeIndex+"!")}if(t.childCount){var r=e?e.nodeIndex+e.childCount:n-1;if(t.nodeIndex<=r&&t.nodeIndex+t.childCount>r)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+t.nodeIndex+"!")}}function qo(e,t,n,i){var r=Jo(e.root,e.renderer,e,t,n);return $o(r,e.component,i),Ko(r),r}function Go(e,t,n){var i=Jo(e,e.renderer,null,null,t);return $o(i,n,n),Ko(i),i}function Zo(e,t,n,i){var r,o=t.element.componentRendererType;return r=o?e.root.rendererFactory.createRenderer(i,o):e.root.renderer,Jo(e.root,r,e,t.element.componentProvider,n)}function Jo(e,t,n,i,r){var o=new Array(r.nodes.length),l=r.outputCount?new Array(r.outputCount):null;return{def:r,parent:n,viewContainerParent:null,parentNodeDef:i,context:null,component:null,nodes:o,state:13,root:e,renderer:t,oldValues:new Array(r.bindingCount),disposables:l,initIndex:-1}}function $o(e,t,n){e.component=t,e.context=n}function Ko(e){var t;tr(e)&&(t=Ci(e.parent,e.parentNodeDef.parent.nodeIndex).renderElement);for(var n=e.def,i=e.nodes,r=0;r0&&Cr(e,t,0,n)&&(h=!0),p>1&&Cr(e,t,1,i)&&(h=!0),p>2&&Cr(e,t,2,r)&&(h=!0),p>3&&Cr(e,t,3,o)&&(h=!0),p>4&&Cr(e,t,4,l)&&(h=!0),p>5&&Cr(e,t,5,s)&&(h=!0),p>6&&Cr(e,t,6,a)&&(h=!0),p>7&&Cr(e,t,7,u)&&(h=!0),p>8&&Cr(e,t,8,c)&&(h=!0),p>9&&Cr(e,t,9,d)&&(h=!0),h}(e,t,n,i,r,o,l,s,a,u,c,d);case 2:return function(e,t,n,i,r,o,l,s,a,u,c,d){var p=!1,h=t.bindings,f=h.length;if(f>0&&qi(e,t,0,n)&&(p=!0),f>1&&qi(e,t,1,i)&&(p=!0),f>2&&qi(e,t,2,r)&&(p=!0),f>3&&qi(e,t,3,o)&&(p=!0),f>4&&qi(e,t,4,l)&&(p=!0),f>5&&qi(e,t,5,s)&&(p=!0),f>6&&qi(e,t,6,a)&&(p=!0),f>7&&qi(e,t,7,u)&&(p=!0),f>8&&qi(e,t,8,c)&&(p=!0),f>9&&qi(e,t,9,d)&&(p=!0),p){var m=t.text.prefix;f>0&&(m+=Uo(n,h[0])),f>1&&(m+=Uo(i,h[1])),f>2&&(m+=Uo(r,h[2])),f>3&&(m+=Uo(o,h[3])),f>4&&(m+=Uo(l,h[4])),f>5&&(m+=Uo(s,h[5])),f>6&&(m+=Uo(a,h[6])),f>7&&(m+=Uo(u,h[7])),f>8&&(m+=Uo(c,h[8])),f>9&&(m+=Uo(d,h[9]));var g=ki(e,t.nodeIndex).renderText;e.renderer.setValue(g,m)}return p}(e,t,n,i,r,o,l,s,a,u,c,d);case 16384:return function(e,t,n,i,r,o,l,s,a,u,c,d){var p=Si(e,t.nodeIndex),h=p.instance,f=!1,m=void 0,g=t.bindings.length;return g>0&&Wi(e,t,0,n)&&(f=!0,m=Lo(e,p,t,0,n,m)),g>1&&Wi(e,t,1,i)&&(f=!0,m=Lo(e,p,t,1,i,m)),g>2&&Wi(e,t,2,r)&&(f=!0,m=Lo(e,p,t,2,r,m)),g>3&&Wi(e,t,3,o)&&(f=!0,m=Lo(e,p,t,3,o,m)),g>4&&Wi(e,t,4,l)&&(f=!0,m=Lo(e,p,t,4,l,m)),g>5&&Wi(e,t,5,s)&&(f=!0,m=Lo(e,p,t,5,s,m)),g>6&&Wi(e,t,6,a)&&(f=!0,m=Lo(e,p,t,6,a,m)),g>7&&Wi(e,t,7,u)&&(f=!0,m=Lo(e,p,t,7,u,m)),g>8&&Wi(e,t,8,c)&&(f=!0,m=Lo(e,p,t,8,c,m)),g>9&&Wi(e,t,9,d)&&(f=!0,m=Lo(e,p,t,9,d,m)),m&&h.ngOnChanges(m),65536&t.flags&&Li(e,256,t.nodeIndex)&&h.ngOnInit(),262144&t.flags&&h.ngDoCheck(),f}(e,t,n,i,r,o,l,s,a,u,c,d);case 32:case 64:case 128:return function(e,t,n,i,r,o,l,s,a,u,c,d){var p=t.bindings,h=!1,f=p.length;if(f>0&&qi(e,t,0,n)&&(h=!0),f>1&&qi(e,t,1,i)&&(h=!0),f>2&&qi(e,t,2,r)&&(h=!0),f>3&&qi(e,t,3,o)&&(h=!0),f>4&&qi(e,t,4,l)&&(h=!0),f>5&&qi(e,t,5,s)&&(h=!0),f>6&&qi(e,t,6,a)&&(h=!0),f>7&&qi(e,t,7,u)&&(h=!0),f>8&&qi(e,t,8,c)&&(h=!0),f>9&&qi(e,t,9,d)&&(h=!0),h){var m=Ei(e,t.nodeIndex),g=void 0;switch(201347067&t.flags){case 32:g=new Array(p.length),f>0&&(g[0]=n),f>1&&(g[1]=i),f>2&&(g[2]=r),f>3&&(g[3]=o),f>4&&(g[4]=l),f>5&&(g[5]=s),f>6&&(g[6]=a),f>7&&(g[7]=u),f>8&&(g[8]=c),f>9&&(g[9]=d);break;case 64:g={},f>0&&(g[p[0].name]=n),f>1&&(g[p[1].name]=i),f>2&&(g[p[2].name]=r),f>3&&(g[p[3].name]=o),f>4&&(g[p[4].name]=l),f>5&&(g[p[5].name]=s),f>6&&(g[p[6].name]=a),f>7&&(g[p[7].name]=u),f>8&&(g[p[8].name]=c),f>9&&(g[p[9].name]=d);break;case 128:var v=n;switch(f){case 1:g=v.transform(n);break;case 2:g=v.transform(i);break;case 3:g=v.transform(i,r);break;case 4:g=v.transform(i,r,o);break;case 5:g=v.transform(i,r,o,l);break;case 6:g=v.transform(i,r,o,l,s);break;case 7:g=v.transform(i,r,o,l,s,a);break;case 8:g=v.transform(i,r,o,l,s,a,u);break;case 9:g=v.transform(i,r,o,l,s,a,u,c);break;case 10:g=v.transform(i,r,o,l,s,a,u,c,d)}}m.value=g}return h}(e,t,n,i,r,o,l,s,a,u,c,d);default:throw"unreachable"}}(e,t,i,r,o,l,s,a,u,c,d,p):function(e,t,n){switch(201347067&t.flags){case 1:return function(e,t,n){for(var i=!1,r=0;r0&&Gi(e,t,0,n),p>1&&Gi(e,t,1,i),p>2&&Gi(e,t,2,r),p>3&&Gi(e,t,3,o),p>4&&Gi(e,t,4,l),p>5&&Gi(e,t,5,s),p>6&&Gi(e,t,6,a),p>7&&Gi(e,t,7,u),p>8&&Gi(e,t,8,c),p>9&&Gi(e,t,9,d)}(e,t,i,r,o,l,s,a,u,c,d,p):function(e,t,n){for(var i=0;i0&&cs(n[t-1],i.next),n.splice(t,1),function(e){for(var t=e;t;){var n=null;if(t.views&&t.views.length?n=t.views[0].data:t.child?n=t.child:t.next&&(ps(t),n=t.next),null==n){for(;t&&!t.next;)ps(t),t=ds(t,e);ps(t||e),n=t&&t.next}t=n}}(i.data),as(e,i,!1),e.query&&e.query.removeView(e,i,t),i}function cs(e,t){e.next=t,e.data.next=t?t.data:null}function ds(e,t){var n;return(n=e.node)&&2==(3&n.flags)?n.parent.data:e.parent===t?null:e.parent}function ps(e){if(e.cleanup){for(var t=e.cleanup,n=0;n=_s.length?_s[e]=null:s.staticData=_s[e],ys?(ws=null,vs.view!==bs&&2!=(3&vs.flags)||(ngDevMode&&ns(vs.child,null,"previousNode.child"),vs.child=s)):vs&&(ngDevMode&&ns(vs.next,null,"previousNode.next"),vs.next=s)),vs=s,ys=!0,s}function Is(e,t,n,i){var r,o;if(null==t){var l=Ms[e];o=l&&l.native}else{ngDevMode&&ns(bs.bindingStartIndex,null,"bindingStartIndex");var s="string"!=typeof t,a=s?t.tag:t;if(null===a)throw"for now name is required";o=ms.createElement(a);var u=null;if(s){var c=js(t.template);u=Ks(Ds(-1,gs.createRenderer(o,t.rendererType),c))}null==(r=Ps(e,3,o,u)).staticData&&(ngDevMode&&na(e-1),r.staticData=_s[e]=Fs(a,n||null,null,i||null)),n&&function(e,t){ngDevMode&&ns(t.length%2,0,"attrs.length % 2");for(var n=ms.setAttribute,i=0;i>12,r=i,o=i+((4092&e)>>2);r=_s.length&&(_s[e]=n,i)){ngDevMode&&is(vs.staticData,"previousOrParentNode.staticData");var l=vs.staticData;(l.localNames||(l.localNames=[])).push(i,e)}var s=n.diPublic;s&&s(n);var a=vs.staticData;a&&a.attrs&&function(e,t,i){var r=((4092&vs.flags)>>2)-1,o=i.initialInputs;(void 0===o||r>=o.length)&&(o=function(e,t,n){var i=n.initialInputs||(n.initialInputs=[]);i[e]=null;for(var r=n.attrs,o=0;o=n.length||null==n[e])&&(n[e]=[]),n[e]}(e,t));Es(l,Ps(null,2,null,l)),n.nextIndex++}return!o}function Js(){ys=!1;var e=vs=bs.node,t=vs.parent;ngDevMode&&ls(e,2),ngDevMode&&ls(t,0);var n=t.data,i=n.nextIndex<=n.views.length?n.views[n.nextIndex-1]:null;(null==i||i.data.id!==e.data.id)&&(function(e,t,n){var i=e.data,r=i.views;n>0&&cs(r[n-1],t),n=r.length&&r.push(t),i.nextIndex<=n&&i.nextIndex++,null!==e.data.renderParent&&as(e,t,!0,function(t,n,i){var r=n.views;return t+1")}function ia(e,t){void 0===t&&(t={});var n,i=t.rendererFactory||Cs,r=e.ngComponentDef,o=As(i,t.host||r.tag),l=Es(Ds(-1,i.createRenderer(o,r.rendererType),[]),null);try{ys=!1,vs=null,Ps(0,3,o,Ds(-1,ms,js(r.template))),n=Bs(1,r.n(),r)}finally{Os(l)}return t.features&&t.features.forEach(function(e){return e(n,r)}),ra(n),n}function ra(e){ngDevMode&&is(e,"component");var t=e[Ss];ngDevMode&&!t&&Rs("Not a directive instance",e),ngDevMode&&is(t.data,"hostNode.data"),function(e,n,i,r){var o=Es(n,t);try{gs.begin&&gs.begin(),i.constructor.ngComponentDef.r(1,0)}finally{gs.end&&gs.end(),n.creationMode=!1,Os(o)}}(0,t.view,e)}function oa(e){var t={type:e.type,diPublic:null,n:e.factory,tag:e.tag||null,template:e.template||null,r:e.refresh||function(t,n){$s(t,n,e.template)},h:e.hostBindings||sa,inputs:aa(e.inputs),outputs:aa(e.outputs),methods:aa(e.methods),rendererType:zi(e.rendererType)||null},n=e.features;return n&&n.forEach(function(e){return e(t)}),t}var la={};function sa(){}function aa(e){if(null==e)return la;var t={};for(var n in e)t[e[n]]=n;return t}function ua(e,t){return{type:7,name:e,definitions:t,options:{}}}function ca(e,t){return void 0===t&&(t=null),{type:4,styles:t,timings:e}}function da(e,t){return void 0===t&&(t=null),{type:3,steps:e,options:t}}function pa(e,t){return void 0===t&&(t=null),{type:2,steps:e,options:t}}function ha(e){return{type:6,styles:e,offset:null}}function fa(e,t,n){return{type:0,name:e,styles:t,options:n}}function ma(e){return{type:5,steps:e}}function ga(e,t,n){return void 0===n&&(n=null),{type:1,expr:e,animation:t,options:n}}var va="*";function ya(e,t){return ua(e,t)}function _a(e,t){return ca(e,t)}function ba(e){return da(e)}function wa(e){return pa(e)}function xa(e){return ha(e)}function Ma(e,t){return fa(e,t)}function Ta(e){return ma(e)}function La(e,t){return ga(e,t)}}).call(t,n("DuR2"))},WTUZ:function(e,t,n){"use strict";var i=n("aQps");t.audit=function(e){return i.audit(e)(this)}},WhVc:function(e,t,n){"use strict";t.errorObject={e:{}}},Whbc:function(e,t,n){"use strict";var i=n("rCTf"),r=n("1hN3");i.Observable.prototype.bufferWhen=r.bufferWhen},WnEV:function(e,t,n){"use strict";var i=n("rCTf"),r=n("Rgi1");i.Observable.prototype.skipLast=r.skipLast},Wx6B:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("CGGv"),o=n("fuZx"),l=n("wAkD"),s=n("CURp");t.timeoutWith=function(e,t,n){return void 0===n&&(n=r.async),function(i){var r=o.isDate(e),l=r?+e-n.now():Math.abs(e);return i.lift(new a(l,r,t,n))}};var a=function(){function e(e,t,n,i){this.waitFor=e,this.absoluteTimeout=t,this.withObservable=n,this.scheduler=i}return e.prototype.call=function(e,t){return t.subscribe(new u(e,this.absoluteTimeout,this.waitFor,this.withObservable,this.scheduler))},e}(),u=function(e){function t(t,n,i,r,o){e.call(this,t),this.absoluteTimeout=n,this.waitFor=i,this.withObservable=r,this.scheduler=o,this.action=null,this.scheduleTimeout()}return i(t,e),t.dispatchTimeout=function(e){var t=e.withObservable;e._unsubscribeAndRecycle(),e.add(s.subscribeToResult(e,t))},t.prototype.scheduleTimeout=function(){var e=this.action;e?this.action=e.schedule(this,this.waitFor):this.add(this.action=this.scheduler.schedule(t.dispatchTimeout,this.waitFor,this))},t.prototype._next=function(t){this.absoluteTimeout||this.scheduleTimeout(),e.prototype._next.call(this,t)},t.prototype._unsubscribe=function(){this.action=null,this.scheduler=null,this.withObservable=null},t}(l.OuterSubscriber)},WxI4:function(e,t){e.exports=function(){this.__data__=[],this.size=0}},WxOs:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("+3eL"),l=n("WhVc"),s=n("5c/I");function a(e){var t=this,n=e.source,i=e.subscriber,r=e.context,a=n.callbackFunc,d=n.args,p=n.scheduler,h=n.subject;if(!h){h=n.subject=new s.AsyncSubject;var f=function e(){for(var n=[],i=0;i0&&(this.extraHeaders=n.extraHeaders),n.localAddress&&(this.localAddress=n.localAddress)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingIntervalTimer=null,this.pingTimeoutTimer=null,this.open()}e.exports=c,c.priorWebsocketSuccess=!1,r(c.prototype),c.protocol=s.protocol,c.Socket=c,c.Transport=n("ZOjo"),c.transports=n("Y+et"),c.parser=n("ElvI"),c.prototype.createTransport=function(e){o('creating transport "%s"',e);var t=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}(this.query);t.EIO=s.protocol,t.transport=e;var n=this.transportOptions[e]||{};return this.id&&(t.sid=this.id),new i[e]({query:t,socket:this,agent:n.agent||this.agent,hostname:n.hostname||this.hostname,port:n.port||this.port,secure:n.secure||this.secure,path:n.path||this.path,forceJSONP:n.forceJSONP||this.forceJSONP,jsonp:n.jsonp||this.jsonp,forceBase64:n.forceBase64||this.forceBase64,enablesXDR:n.enablesXDR||this.enablesXDR,timestampRequests:n.timestampRequests||this.timestampRequests,timestampParam:n.timestampParam||this.timestampParam,policyPort:n.policyPort||this.policyPort,pfx:n.pfx||this.pfx,key:n.key||this.key,passphrase:n.passphrase||this.passphrase,cert:n.cert||this.cert,ca:n.ca||this.ca,ciphers:n.ciphers||this.ciphers,rejectUnauthorized:n.rejectUnauthorized||this.rejectUnauthorized,perMessageDeflate:n.perMessageDeflate||this.perMessageDeflate,extraHeaders:n.extraHeaders||this.extraHeaders,forceNode:n.forceNode||this.forceNode,localAddress:n.localAddress||this.localAddress,requestTimeout:n.requestTimeout||this.requestTimeout,protocols:n.protocols||void 0})},c.prototype.open=function(){var e;if(this.rememberUpgrade&&c.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))e="websocket";else{if(0===this.transports.length){var t=this;return void setTimeout(function(){t.emit("error","No transports available")},0)}e=this.transports[0]}this.readyState="opening";try{e=this.createTransport(e)}catch(e){return this.transports.shift(),void this.open()}e.open(),this.setTransport(e)},c.prototype.setTransport=function(e){o("setting transport %s",e.name);var t=this;this.transport&&(o("clearing existing transport %s",this.transport.name),this.transport.removeAllListeners()),this.transport=e,e.on("drain",function(){t.onDrain()}).on("packet",function(e){t.onPacket(e)}).on("error",function(e){t.onError(e)}).on("close",function(){t.onClose("transport close")})},c.prototype.probe=function(e){o('probing transport "%s"',e);var t=this.createTransport(e,{probe:1}),n=!1,i=this;function r(){i.onlyBinaryUpgrades&&(n=n||!this.supportsBinary&&i.transport.supportsBinary),n||(o('probe transport "%s" opened',e),t.send([{type:"ping",data:"probe"}]),t.once("packet",function(r){if(!n)if("pong"===r.type&&"probe"===r.data){if(o('probe transport "%s" pong',e),i.upgrading=!0,i.emit("upgrading",t),!t)return;c.priorWebsocketSuccess="websocket"===t.name,o('pausing current transport "%s"',i.transport.name),i.transport.pause(function(){n||"closed"!==i.readyState&&(o("changing transport and sending upgrade packet"),p(),i.setTransport(t),t.send([{type:"upgrade"}]),i.emit("upgrade",t),t=null,i.upgrading=!1,i.flush())})}else{o('probe transport "%s" failed',e);var l=new Error("probe error");l.transport=t.name,i.emit("upgradeError",l)}}))}function l(){n||(n=!0,p(),t.close(),t=null)}function s(n){var r=new Error("probe error: "+n);r.transport=t.name,l(),o('probe transport "%s" failed because of error: %s',e,n),i.emit("upgradeError",r)}function a(){s("transport closed")}function u(){s("socket closed")}function d(e){t&&e.name!==t.name&&(o('"%s" works - aborting "%s"',e.name,t.name),l())}function p(){t.removeListener("open",r),t.removeListener("error",s),t.removeListener("close",a),i.removeListener("close",u),i.removeListener("upgrading",d)}c.priorWebsocketSuccess=!1,t.once("open",r),t.once("error",s),t.once("close",a),this.once("close",u),this.once("upgrading",d),t.open()},c.prototype.onOpen=function(){if(o("socket open"),this.readyState="open",c.priorWebsocketSuccess="websocket"===this.transport.name,this.emit("open"),this.flush(),"open"===this.readyState&&this.upgrade&&this.transport.pause){o("starting upgrade probes");for(var e=0,t=this.upgrades.length;e1?new t(e,i):1===r?new o.ScalarObservable(e[0],i):new l.EmptyObservable(i)},t.dispatch=function(e){var t=e.array,n=e.index,i=e.subscriber;n>=e.count?i.complete():(i.next(t[n]),i.closed||(e.index=n+1,this.schedule(e)))},t.prototype._subscribe=function(e){var n=this.array,i=n.length,r=this.scheduler;if(r)return r.schedule(t.dispatch,0,{array:n,index:0,count:i,subscriber:e});for(var o=0;o')}catch(e){(i=document.createElement("iframe")).name=n.iframeId,i.src="javascript:0"}i.id=n.iframeId,n.form.appendChild(i),n.iframe=i}this.form.action=this.uri(),c(),e=e.replace(s,"\\\n"),this.area.value=e.replace(l,"\\n");try{this.form.submit()}catch(e){}this.iframe.attachEvent?this.iframe.onreadystatechange=function(){"complete"===n.iframe.readyState&&u()}:this.iframe.onload=u}}).call(t,n("DuR2"))},ZFGz:function(e,t,n){!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}})}(n("PJh5"))},ZFQj:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.isEmpty=function(){return function(e){return e.lift(new o)}};var o=function(){function e(){}return e.prototype.call=function(e,t){return t.subscribe(new l(e))},e}(),l=function(e){function t(t){e.call(this,t)}return i(t,e),t.prototype.notifyComplete=function(e){var t=this.destination;t.next(e),t.complete()},t.prototype._next=function(e){this.notifyComplete(!1)},t.prototype._complete=function(){this.notifyComplete(!0)},t}(r.Subscriber)},ZGh9:function(e,t){var n=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var i=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==i||"symbol"!=i&&n.test(e))&&e>-1&&e%1==0&&e=11?e:e+12:"\u4e0b\u5348"===t||"\u665a\u4e0a"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?"\u51cc\u6668":i<900?"\u65e9\u4e0a":i<1130?"\u4e0a\u5348":i<1230?"\u4e2d\u5348":i<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:"[\u4e0b]ddddLT",lastDay:"[\u6628\u5929]LT",lastWeek:"[\u4e0a]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u9031)/,ordinal:function(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"}})}(n("PJh5"))},ZVNe:function(e,t){!function(e){e.languages.php=e.languages.extend("clike",{keyword:/\b(?:and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0}}),e.languages.insertBefore("php","string",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),e.languages.insertBefore("php","keyword",{delimiter:{pattern:/\?>|<\?(?:php|=)?/i,alias:"important"},variable:/\$+(?:\w+\b|(?={))/i,package:{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),e.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),e.languages.insertBefore("php","string",{"nowdoc-string":{pattern:/<<<'([^']+)'(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\1;/,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},"heredoc-string":{pattern:/<<<(?:"([^"]+)"(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\1;|([a-z_]\w*)(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\2;)/i,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:null}},"single-quoted-string":{pattern:/'(?:\\[\s\S]|[^\\'])*'/,greedy:!0,alias:"string"},"double-quoted-string":{pattern:/"(?:\\[\s\S]|[^\\"])*"/,greedy:!0,alias:"string",inside:{interpolation:null}}}),delete e.languages.php.string;var t={pattern:/{\$(?:{(?:{[^{}]+}|[^{}]+)}|[^{}])+}|(^|[^\\{])\$+(?:\w+(?:\[.+?]|->\w+)*)/,lookbehind:!0,inside:{rest:e.languages.php}};e.languages.php["heredoc-string"].inside.interpolation=t,e.languages.php["double-quoted-string"].inside.interpolation=t,e.hooks.add("before-tokenize",function(t){/(?:<\?php|<\?)/gi.test(t.code)&&e.languages["markup-templating"].buildPlaceholders(t,"php",/(?:<\?php|<\?)[\s\S]*?(?:\?>|$)/gi)}),e.hooks.add("after-tokenize",function(t){e.languages["markup-templating"].tokenizePlaceholders(t,"php")})}(Prism)},Zaen:function(e,t,n){var i=n("8UTl").h;e.exports=function(e){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"100",height:"77",viewBox:"0 0 100 77"},i("path",{d:"M50 32c-7.168 0-13 5.832-13 13s5.832 13 13 13 13-5.832 13-13-5.832-13-13-13z"}),i("path",{d:"M87 13H72c0-7.18-5.82-13-13-13H41c-7.18 0-13 5.82-13 13H13C5.82 13 0 18.82 0 26v38c0 7.18 5.82 13 13 13h74c7.18 0 13-5.82 13-13V26c0-7.18-5.82-13-13-13zM50 68c-12.683 0-23-10.318-23-23s10.317-23 23-23 23 10.318 23 23-10.317 23-23 23z"}))}},Zk5a:function(e,t){var n=Date.now;e.exports=function(e){var t=0,i=0;return function(){var r=n(),o=16-(r-i);if(i=r,o>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}},ZoSI:function(e,t,n){!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}})}(n("PJh5"))},ZvZx:function(e,t,n){"use strict";var i=n("mrwz");t.max=function(e){return i.max(e)(this)}},ZzDa:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.sample=function(e){return function(t){return t.lift(new l(e))}};var l=function(){function e(e){this.notifier=e}return e.prototype.call=function(e,t){var n=new s(e),i=t.subscribe(n);return i.add(o.subscribeToResult(n,this.notifier)),i},e}(),s=function(e){function t(){e.apply(this,arguments),this.hasValue=!1}return i(t,e),t.prototype._next=function(e){this.value=e,this.hasValue=!0},t.prototype.notifyNext=function(e,t,n,i,r){this.emitValue()},t.prototype.notifyComplete=function(){this.emitValue()},t.prototype.emitValue=function(){this.hasValue&&(this.hasValue=!1,this.destination.next(this.value))},t}(r.OuterSubscriber)},a0Ch:function(e,t,n){"use strict";var i=n("rCTf"),r=n("8DDp");i.Observable.prototype.timeoutWith=r.timeoutWith},a7mE:function(e,t){e.exports=function(){return"function"==typeof MediaRecorder&&!!MediaRecorder.prototype&&"function"==typeof MediaRecorder.prototype.start}},aCM0:function(e,t,n){var i=n("NkRn"),r=n("uLhX"),o=n("+66z"),l=i?i.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":l&&l in Object(e)?r(e):o(e)}},aIOA:function(e,t){Prism.languages.csharp=Prism.languages.extend("clike",{keyword:/\b(?:abstract|add|alias|as|ascending|async|await|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|descending|do|double|dynamic|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|from|get|global|goto|group|if|implicit|in|int|interface|internal|into|is|join|let|lock|long|namespace|new|null|object|operator|orderby|out|override|params|partial|private|protected|public|readonly|ref|remove|return|sbyte|sealed|select|set|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|value|var|virtual|void|volatile|where|while|yield)\b/,string:[{pattern:/@("|')(?:\1\1|\\[\s\S]|(?!\1)[^\\])*\1/,greedy:!0},{pattern:/("|')(?:\\.|(?!\1)[^\\\r\n])*?\1/,greedy:!0}],"class-name":[{pattern:/\b[A-Z]\w*(?:\.\w+)*\b(?=\s+\w+)/,inside:{punctuation:/\./}},{pattern:/(\[)[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}},{pattern:/(\b(?:class|interface)\s+[A-Z]\w*(?:\.\w+)*\s*:\s*)[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}},{pattern:/((?:\b(?:class|interface|new)\s+)|(?:catch\s+\())[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}}],number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)f?/i}),Prism.languages.insertBefore("csharp","class-name",{"generic-method":{pattern:/\w+\s*<[^>\r\n]+?>\s*(?=\()/,inside:{function:/^\w+/,"class-name":{pattern:/\b[A-Z]\w*(?:\.\w+)*\b/,inside:{punctuation:/\./}},keyword:Prism.languages.csharp.keyword,punctuation:/[<>(),.:]/}},preprocessor:{pattern:/(^\s*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(\s*#)\b(?:define|elif|else|endif|endregion|error|if|line|pragma|region|undef|warning)\b/,lookbehind:!0,alias:"keyword"}}}}),Prism.languages.dotnet=Prism.languages.csharp},aM0x:function(e,t,n){!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"},n={"\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 n[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,n){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}})}(n("PJh5"))},aQ5C:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("B00U"),l=n("rCTf"),s=n("EEr4"),a=n("9JPB"),u=n("1kxm");t.groupBy=function(e,t,n,i){return function(r){return r.lift(new c(e,t,n,i))}};var c=function(){function e(e,t,n,i){this.keySelector=e,this.elementSelector=t,this.durationSelector=n,this.subjectSelector=i}return e.prototype.call=function(e,t){return t.subscribe(new d(e,this.keySelector,this.elementSelector,this.durationSelector,this.subjectSelector))},e}(),d=function(e){function t(t,n,i,r,o){e.call(this,t),this.keySelector=n,this.elementSelector=i,this.durationSelector=r,this.subjectSelector=o,this.groups=null,this.attemptedToUnsubscribe=!1,this.count=0}return i(t,e),t.prototype._next=function(e){var t;try{t=this.keySelector(e)}catch(e){return void this.error(e)}this._group(e,t)},t.prototype._group=function(e,t){var n=this.groups;n||(n=this.groups="string"==typeof t?new u.FastMap:new a.Map);var i,r=n.get(t);if(this.elementSelector)try{i=this.elementSelector(e)}catch(e){this.error(e)}else i=e;if(!r){r=this.subjectSelector?this.subjectSelector():new s.Subject,n.set(t,r);var o=new h(t,r,this);if(this.destination.next(o),this.durationSelector){var l=void 0;try{l=this.durationSelector(new h(t,r))}catch(e){return void this.error(e)}this.add(l.subscribe(new p(t,r,this)))}}r.closed||r.next(i)},t.prototype._error=function(e){var t=this.groups;t&&(t.forEach(function(t,n){t.error(e)}),t.clear()),this.destination.error(e)},t.prototype._complete=function(){var e=this.groups;e&&(e.forEach(function(e,t){e.complete()}),e.clear()),this.destination.complete()},t.prototype.removeGroup=function(e){this.groups.delete(e)},t.prototype.unsubscribe=function(){this.closed||(this.attemptedToUnsubscribe=!0,0===this.count&&e.prototype.unsubscribe.call(this))},t}(r.Subscriber),p=function(e){function t(t,n,i){e.call(this,n),this.key=t,this.group=n,this.parent=i}return i(t,e),t.prototype._next=function(e){this.complete()},t.prototype._unsubscribe=function(){var e=this.parent,t=this.key;this.key=this.parent=null,e&&e.removeGroup(t)},t}(r.Subscriber),h=function(e){function t(t,n,i){e.call(this),this.key=t,this.groupSubject=n,this.refCountSubscription=i}return i(t,e),t.prototype._subscribe=function(e){var t=new o.Subscription,n=this.refCountSubscription,i=this.groupSubject;return n&&!n.closed&&t.add(new f(n)),t.add(i.subscribe(e)),t},t}(l.Observable);t.GroupedObservable=h;var f=function(e){function t(t){e.call(this),this.parent=t,t.count++}return i(t,e),t.prototype.unsubscribe=function(){var t=this.parent;t.closed||this.closed||(e.prototype.unsubscribe.call(this),t.count-=1,0===t.count&&t.attemptedToUnsubscribe&&t.unsubscribe())},t}(o.Subscription)},aQOO:function(e,t){e.exports=function(e){return this.__data__.has(e)}},aQl7:function(e,t,n){"use strict";t.isPromise=function(e){return e&&"function"!=typeof e.subscribe&&"function"==typeof e.then}},aQps:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("+3eL"),o=n("WhVc"),l=n("wAkD"),s=n("CURp");t.audit=function(e){return function(t){return t.lift(new a(e))}};var a=function(){function e(e){this.durationSelector=e}return e.prototype.call=function(e,t){return t.subscribe(new u(e,this.durationSelector))},e}(),u=function(e){function t(t,n){e.call(this,t),this.durationSelector=n,this.hasValue=!1}return i(t,e),t.prototype._next=function(e){if(this.value=e,this.hasValue=!0,!this.throttled){var t=r.tryCatch(this.durationSelector)(e);if(t===o.errorObject)this.destination.error(o.errorObject.e);else{var n=s.subscribeToResult(this,t);n.closed?this.clearThrottle():this.add(this.throttled=n)}}},t.prototype.clearThrottle=function(){var e=this.value,t=this.hasValue,n=this.throttled;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),t&&(this.value=null,this.hasValue=!1,this.destination.next(e))},t.prototype.notifyNext=function(e,t,n,i){this.clearThrottle()},t.prototype.notifyComplete=function(){this.clearThrottle()},t}(l.OuterSubscriber)},aV5h:function(e,t,n){"use strict";var i=n("rCTf"),r=n("driz");i.Observable.prototype.debounceTime=r.debounceTime},ack3:function(e,t,n){"use strict";var i=n("dI0l");t.filter=function(e,t){return i.filter(e,t)(this)}},adqA:function(e,t,n){"use strict";var i=n("rCTf"),r=n("tn1n");i.Observable.prototype.partition=r.partition},ady2:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("B00U");t.finalize=function(e){return function(t){return t.lift(new l(e))}};var l=function(){function e(e){this.callback=e}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.callback))},e}(),s=function(e){function t(t,n){e.call(this,t),this.add(new o.Subscription(n))}return i(t,e),t}(r.Subscriber)},aec7:function(e,t,n){"use strict";var i=n("CGGv"),r=n("b8PX");t.delay=function(e,t){return void 0===t&&(t=i.async),r.delay(e,t)(this)}},agim:function(e,t,n){var i=n("pTUa");e.exports=function(e){return i(this,e).has(e)}},am10:function(e,t,n){var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r="undefined"==typeof Promise?n("hKoQ").Promise:Promise,o=n("R3sX"),l=n("yGV+");function s(e){return{hours:Math.floor(e/3600)%24,minutes:Math.floor(e/60)%60,seconds:Math.floor(e%60)}}function a(e){return 2!==e.length?0+e:e}function u(e){return new r(function(t,n){var i=new FileReader;i.addEventListener("load",function(e){t(e.target.result)}),i.addEventListener("error",function(e){console.error("FileReader error"+e),n(e)}),i.readAsArrayBuffer(e)})}var c={"video/ogg":"ogv","audio/ogg":"ogg","video/webm":"webm","audio/webm":"webm","video/mp4":"mp4","audio/mp3":"mp3"};function d(e){var t=/(?:\.([^.]+))?$/.exec(e)[1];return{name:e.replace("."+t,""),extension:t}}function p(e,t,n){return e.toBlob?new r(function(i){e.toBlob(i,t,n)}):r.resolve().then(function(){return h(e.toDataURL(t,n),{})})}function h(e,t,n){var i=e.split(",")[1],r=t.mimeType||e.split(",")[0].split(":")[1].split(";")[0];null==r&&(r="plain/text");for(var o=atob(i),l=[],s=0;s1?t-1:0),i=1;it?e.substr(0,t/2)+"..."+e.substr(e.length-t/4,e.length):e},getFileTypeExtension:function(e){return c[e]||null},getFileType:function(e){var t={md:"text/markdown",markdown:"text/markdown",mp4:"video/mp4",mp3:"audio/mp3",svg:"image/svg+xml",jpg:"image/jpeg",png:"image/png",gif:"image/gif",yaml:"text/yaml",yml:"text/yaml"},n=e.name?d(e.name).extension:null;return e.isRemote?r.resolve(e.type?e.type:t[n]):u(e.data.slice(0,4100)).then(function(i){var r=l(i);return r&&r.mime?r.mime:e.type?e.type:n&&t[n]?t[n]:null}).catch(function(){return null})},getArrayBuffer:u,isPreviewSupported:function(e){if(!e)return!1;var t=e.split("/")[1];return!!/^(jpeg|gif|png|svg|svg\+xml|bmp)$/.test(t)},isObjectURL:function(e){return 0===e.indexOf("blob:")},createThumbnail:function(e,t){var n=URL.createObjectURL(e.data);return new r(function(e,t){var i=new Image;i.src=n,i.onload=function(){URL.revokeObjectURL(n),e(i)},i.onerror=function(){URL.revokeObjectURL(n),t(new Error("Could not create thumbnail"))}}).then(function(e){var n,i=(n=e,Math.round(t/(n.width/n.height)));return p(function(e,t,n){var i=e.width,r=e.height;if(n0?t:null}if("object"===("undefined"==typeof e?"undefined":i(e))&&g(e))return[e]},getSocketHost:function(e){var t=/^(?:https?:\/\/|\/\/)?(?:[^@\n]+@)?(?:www\.)?([^\n]+)/.exec(e)[1];return("https:"===location.protocol?"wss":"ws")+"://"+t},emitSocketProgress:v,settle:function(e){var t=[],n=[];function i(e){t.push(e)}function o(e){n.push(e)}return r.all(e.map(function(e){return e.then(i,o)})).then(function(){return{successful:t,failed:n}})},limitPromises:function(e){var t=0,n=[];return function(o){return function(){for(var l=arguments.length,s=Array(l),a=0;a=e?new r(function(e,t){n.push(function(){u().then(e,t)})}):u()}};function i(){t--;var e=n.shift();e&&e()}}}},aqvp:function(e,t,n){!function(e){"use strict";function t(e,t,n){var i=e+" ";switch(n){case"ss":return i+(1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi");case"m":return t?"jedna minuta":"jedne minute";case"mm":return i+(1===e?"minuta":2===e||3===e||4===e?"minute":"minuta");case"h":return t?"jedan sat":"jednog sata";case"hh":return i+(1===e?"sat":2===e||3===e||4===e?"sata":"sati");case"dd":return i+(1===e?"dan":"dana");case"MM":return i+(1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci");case"yy":return i+(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}})}(n("PJh5"))},ashs:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("B00U"),l=n("+3eL"),s=n("WhVc"),a=n("wAkD"),u=n("CURp");t.windowToggle=function(e,t){return function(n){return n.lift(new c(e,t))}};var c=function(){function e(e,t){this.openings=e,this.closingSelector=t}return e.prototype.call=function(e,t){return t.subscribe(new d(e,this.openings,this.closingSelector))},e}(),d=function(e){function t(t,n,i){e.call(this,t),this.openings=n,this.closingSelector=i,this.contexts=[],this.add(this.openSubscription=u.subscribeToResult(this,n,n))}return i(t,e),t.prototype._next=function(e){var t=this.contexts;if(t)for(var n=t.length,i=0;i0&&n[0].time-i.now()<=0;)n.shift().notification.observe(r);if(n.length>0){var o=Math.max(0,n[0].time-i.now());this.schedule(e,o)}else this.unsubscribe(),t.active=!1},t.prototype._schedule=function(e){this.active=!0,this.add(e.schedule(t.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))},t.prototype.scheduleNotification=function(e){if(!0!==this.errored){var t=this.scheduler,n=new c(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}},t.prototype._next=function(e){this.scheduleNotification(s.Notification.createNext(e))},t.prototype._error=function(e){this.errored=!0,this.queue=[],this.destination.error(e)},t.prototype._complete=function(){this.scheduleNotification(s.Notification.createComplete())},t}(l.Subscriber),c=function(e,t){this.time=e,this.notification=t}},bBiI:function(e,t,n){"use strict";var i=n("c8IX");t.first=function(e,t,n){return i.first(e,t,n)(this)}},bE1M:function(e,t,n){"use strict";var i=n("oBYf");t.concatMap=function(e,t){return i.concatMap(e,t)(this)}},bGc4:function(e,t,n){var i=n("gGqR"),r=n("Rh28");e.exports=function(e){return null!=e&&r(e.length)&&!i(e)}},bIbi:function(e,t,n){var i=n("ICSD")(n("TQ3y"),"WeakMap");e.exports=i},bIjD:function(e,t,n){var i=n("NGEn"),r=n("hIPy"),o=n("UnLw"),l=n("ZT2e");e.exports=function(e,t){return i(e)?e:r(e,t)?[e]:o(l(e))}},bJWQ:function(e,t,n){var i=n("duB3"),r=n("KmWZ"),o=n("NqZt"),l=n("E4Hj"),s=n("G2xm"),a=n("zpVT");function u(e){var t=this.__data__=new i(e);this.size=t.size}u.prototype.clear=r,u.prototype.delete=o,u.prototype.get=l,u.prototype.has=s,u.prototype.set=a,e.exports=u},bKul:function(e,t){try{e.exports="undefined"!=typeof XMLHttpRequest&&"withCredentials"in new XMLHttpRequest}catch(t){e.exports=!1}},bO0Y:function(e,t,n){var i=n("ICSD")(n("TQ3y"),"Promise");e.exports=i},bOuo:function(e,t,n){var i=n("PgfN"),r=n("8UTl").h;e.exports=function(e){return r("div",{class:"uppy-ProviderBrowser-body"},r("ul",{class:"uppy-ProviderBrowser-list",onscroll:e.handleScroll,role:"listbox","aria-label":"List of files from "+e.title},e.folders.map(function(t){var n=!1,r=e.isChecked(t);return r&&(n=r.loading),i({title:e.getItemName(t),type:"folder",getItemIcon:function(){return e.getItemIcon(t)},handleClick:function(){return e.handleFolderClick(t)},isDisabled:n,isChecked:r,handleCheckboxClick:function(n){return e.toggleCheckbox(n,t)},columns:e.columns})}),e.files.map(function(t){return i({title:e.getItemName(t),type:"file",getItemIcon:function(){return e.getItemIcon(t)},handleClick:function(){return e.handleFileClick(t)},isDisabled:!1,isChecked:e.isChecked(t),handleCheckboxClick:function(n){return e.toggleCheckbox(n,t)},columns:e.columns})})))}},bXQP:function(e,t,n){!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")}}})}(n("PJh5"))},"bZY+":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("P3oE"),o=n("rCTf"),l=n("CGGv");t.IntervalObservable=function(e){function t(t,n){void 0===t&&(t=0),void 0===n&&(n=l.async),e.call(this),this.period=t,this.scheduler=n,(!r.isNumeric(t)||t<0)&&(this.period=0),n&&"function"==typeof n.schedule||(this.scheduler=l.async)}return i(t,e),t.create=function(e,n){return void 0===e&&(e=0),void 0===n&&(n=l.async),new t(e,n)},t.dispatch=function(e){var t=e.subscriber,n=e.period;t.next(e.index),t.closed||(e.index+=1,this.schedule(e,n))},t.prototype._subscribe=function(e){var n=this.period;e.add(this.scheduler.schedule(t.dispatch,n,{index:0,subscriber:e,period:n}))},t}(o.Observable)},bhBy:function(e,t,n){var i=Object.assign||function(e){for(var t=1;t0,v=100===e.totalProgress&&r.length===Object.keys(t).length&&0===a.length,y=g&&o.length===n.length,_=0===s.length&&!v&&!y&&n.length>0,b=this.uppy.getState().capabilities.resumableUploads||!1;return l({error:e.error,totalProgress:e.totalProgress,totalSize:f,totalUploadedSize:m,uploadStartedFiles:n,isAllComplete:v,isAllPaused:_,isAllErrored:y,isUploadStarted:g,i18n:this.i18n,pauseAll:this.uppy.pauseAll,resumeAll:this.uppy.resumeAll,retryAll:this.uppy.retryAll,cancelAll:this.uppy.cancelAll,startUpload:this.startUpload,complete:r.length,newFiles:i.length,inProgress:n.length,totalSpeed:p,totalETA:h,files:e.files,resumableUploads:b,hideUploadButton:this.opts.hideUploadButton,hideAfterFinish:this.opts.hideAfterFinish})},t.prototype.install=function(){var e=this.opts.target;e&&this.mount(e,this)},t.prototype.uninstall=function(){this.unmount()},t}(r)},blYT:function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(t,n("DuR2"))},bqFq:function(e,t){e.exports=function(e,t){for(var n=[],i=(t=t||0)||0;i=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var r=t.words[i];return 1===i.length?n?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}})}(n("PJh5"))},c3t5:function(e,t,n){"use strict";var i=n("rCTf"),r=n("ioK+");i.Observable.fromPromise=r.fromPromise},c8IX:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("F7Al");t.first=function(e,t,n){return function(i){return i.lift(new l(e,t,n,i))}};var l=function(){function e(e,t,n,i){this.predicate=e,this.resultSelector=t,this.defaultValue=n,this.source=i}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.predicate,this.resultSelector,this.defaultValue,this.source))},e}(),s=function(e){function t(t,n,i,r,o){e.call(this,t),this.predicate=n,this.resultSelector=i,this.defaultValue=r,this.source=o,this.index=0,this.hasCompleted=!1,this._emitted=!1}return i(t,e),t.prototype._next=function(e){var t=this.index++;this.predicate?this._tryPredicate(e,t):this._emit(e,t)},t.prototype._tryPredicate=function(e,t){var n;try{n=this.predicate(e,t,this.source)}catch(e){return void this.destination.error(e)}n&&this._emit(e,t)},t.prototype._emit=function(e,t){this.resultSelector?this._tryResultSelector(e,t):this._emitFinal(e)},t.prototype._tryResultSelector=function(e,t){var n;try{n=this.resultSelector(e,t)}catch(e){return void this.destination.error(e)}this._emitFinal(n)},t.prototype._emitFinal=function(e){var t=this.destination;this._emitted||(this._emitted=!0,t.next(e),t.complete(),this.hasCompleted=!0)},t.prototype._complete=function(){var e=this.destination;this.hasCompleted||"undefined"==typeof this.defaultValue?this.hasCompleted||e.error(new o.EmptyError):(e.next(this.defaultValue),e.complete())},t}(r.Subscriber)},cDAr:function(e,t,n){"use strict";var i=n("rCTf"),r=n("E/WS");i.Observable.prototype.timeout=r.timeout},cJSH:function(e,t,n){"use strict";var i=n("aQ5C");t.GroupedObservable=i.GroupedObservable,t.groupBy=function(e,t,n,r){return i.groupBy(e,t,n,r)(this)}},cPwE:function(e,t,n){"use strict";t.Scheduler=function(){function e(t,n){void 0===n&&(n=e.now),this.SchedulerAction=t,this.now=n}return e.prototype.schedule=function(e,t,n){return void 0===t&&(t=0),new this.SchedulerAction(this,e).schedule(n,t)},e.now=Date.now?Date.now:function(){return+new Date},e}()},cQXm:function(e,t,n){"use strict";t.a=function(e){return e&&"function"!=typeof e.subscribe&&"function"==typeof e.then}},cbuX:function(e,t,n){"use strict";var i=n("rKQy");t.mergeAll=function(e){return void 0===e&&(e=Number.POSITIVE_INFINITY),i.mergeAll(e)(this)}},cdmN:function(e,t,n){"use strict";var i=n("VOfZ");function r(e){var t=e.Symbol;if("function"==typeof t)return t.iterator||(t.iterator=t("iterator polyfill")),t.iterator;var n=e.Set;if(n&&"function"==typeof(new n)["@@iterator"])return"@@iterator";var i=e.Map;if(i)for(var r=Object.getOwnPropertyNames(i.prototype),o=0;o=2?function(n){return l.pipe(i.scan(e,t),r.takeLast(1),o.defaultIfEmpty(t))(n)}:function(t){return l.pipe(i.scan(function(t,n,i){return e(t,n,i+1)}),r.takeLast(1))(t)}}},duB3:function(e,t,n){var i=n("WxI4"),r=n("dFpP"),o=n("JBvZ"),l=n("2Hvv"),s=n("deUO");function a(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t-1?t[1].toLowerCase():t[0])},e.prototype.formatLanguageCode=function(e){if("string"==typeof e&&e.indexOf("-")>-1){var t=["hans","hant","latn","cyrl","cans","mong","arab"],n=e.split("-");return this.options.lowerCaseLng?n=n.map(function(e){return e.toLowerCase()}):2===n.length?(n[0]=n[0].toLowerCase(),n[1]=n[1].toUpperCase(),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=o(n[1].toLowerCase()))):3===n.length&&(n[0]=n[0].toLowerCase(),2===n[1].length&&(n[1]=n[1].toUpperCase()),"sgn"!==n[0]&&2===n[2].length&&(n[2]=n[2].toUpperCase()),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=o(n[1].toLowerCase())),t.indexOf(n[2].toLowerCase())>-1&&(n[2]=o(n[2].toLowerCase()))),n.join("-")}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e},e.prototype.isWhitelisted=function(e){return"languageOnly"===this.options.load&&(e=this.getLanguagePartFromCode(e)),!this.whitelist||!this.whitelist.length||this.whitelist.indexOf(e)>-1},e.prototype.toResolveHierarchy=function(e,t){var n=this;"string"==typeof(t=t||this.options.fallbackLng||[])&&(t=[t]);var i=[],r=function(e){n.isWhitelisted(e)?i.push(e):n.logger.warn("rejecting non-whitelisted language code: "+e)};return"string"==typeof e&&e.indexOf("-")>-1?("languageOnly"!==this.options.load&&r(this.formatLanguageCode(e)),"currentOnly"!==this.options.load&&r(this.getLanguagePartFromCode(e))):"string"==typeof e&&r(this.formatLanguageCode(e)),t.forEach(function(e){i.indexOf(e)<0&&r(n.formatLanguageCode(e))}),i},e}();t.default=l},eAwk:function(e,t){var n,i,r,o=String.fromCharCode;function l(e){for(var t,n,i=[],r=0,o=e.length;r=55296&&t<=56319&&r=55296&&e<=57343){if(t)throw Error("Lone surrogate U+"+e.toString(16).toUpperCase()+" is not a scalar value");return!1}return!0}function a(e,t){return o(e>>t&63|128)}function u(e,t){if(0==(4294967168&e))return o(e);var n="";return 0==(4294965248&e)?n=o(e>>6&31|192):0==(4294901760&e)?(s(e,t)||(e=65533),n=o(e>>12&15|224),n+=a(e,6)):0==(4292870144&e)&&(n=o(e>>18&7|240),n+=a(e,12),n+=a(e,6)),n+o(63&e|128)}function c(){if(r>=i)throw Error("Invalid byte index");var e=255&n[r];if(r++,128==(192&e))return 63&e;throw Error("Invalid continuation byte")}function d(e){var t,o;if(r>i)throw Error("Invalid byte index");if(r==i)return!1;if(t=255&n[r],r++,0==(128&t))return t;if(192==(224&t)){if((o=(31&t)<<6|c())>=128)return o;throw Error("Invalid continuation byte")}if(224==(240&t)){if((o=(15&t)<<12|c()<<6|c())>=2048)return s(o,e)?o:65533;throw Error("Invalid continuation byte")}if(240==(248&t)&&(o=(7&t)<<18|c()<<12|c()<<6|c())>=65536&&o<=1114111)return o;throw Error("Invalid UTF-8 detected")}e.exports={version:"2.1.2",encode:function(e,t){for(var n=!1!==(t=t||{}).strict,i=l(e),r=i.length,o=-1,s="";++o65535&&(r+=o((t-=65536)>>>10&1023|55296),t=56320|1023&t),r+=o(t);return r}(u)}}},"eBB/":function(e,t,n){!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,n){return e<12?"\uc624\uc804":"\uc624\ud6c4"}})}(n("PJh5"))},eErF:function(e,t){},eFps:function(e,t,n){var i,r=n("+gg+"),o=(i=/[^.]+$/.exec(r&&r.keys&&r.keys.IE_PROTO||""))?"Symbol(src)_1."+i:"";e.exports=function(e){return!!o&&o in e}},"eG8/":function(e,t){e.exports=function(e){return function(t){return null==t?void 0:t[e]}}},eHwN:function(e,t,n){!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 saniy\u0259",ss:"%d saniy\u0259",m:"bir d\u0259qiq\u0259",mm:"%d d\u0259qiq\u0259",h:"bir saat",hh:"%d saat",d:"bir g\xfcn",dd:"%d g\xfcn",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gec\u0259|s\u0259h\u0259r|g\xfcnd\xfcz|ax\u015fam/,isPM:function(e){return/^(g\xfcnd\xfcz|ax\u015fam)$/.test(e)},meridiem:function(e,t,n){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 n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n("PJh5"))},eHwr:function(e,t,n){var i=n("JyYQ"),r=n("bGc4"),o=n("ktak");e.exports=function(e){return function(t,n,l){var s=Object(t);if(!r(t)){var a=i(n,3);t=o(t),n=function(e){return a(s[e],e,s)}}var u=e(t,n,l);return u>-1?s[a?t[u]:u]:void 0}}},eKBv:function(e,t,n){var i=n("YDHx"),r=n("Q7hp"),o=n("RfZv"),l=n("hIPy"),s=n("tO4o"),a=n("sJvV"),u=n("Ubhr");e.exports=function(e,t){return l(e)&&s(t)?a(u(e),t):function(n){var l=r(n,e);return void 0===l&&l===t?o(n,e):i(t,l,3)}}},eP4g:function(e,t,n){var i=n("gHOb"),r=n("UnEC");e.exports=function(e){return r(e)&&"[object Set]"==i(e)}},eUga:function(e,t,n){var i=Object.assign||function(e){for(var t=1;t=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var r=t.words[i];return 1===i.length?n?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}})}(n("PJh5"))},f931:function(e,t){e.exports=function(e,t){return function(n){return e(t(n))}}},fI0c:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.every=function(e,t){return function(n){return n.lift(new o(e,t,n))}};var o=function(){function e(e,t,n){this.predicate=e,this.thisArg=t,this.source=n}return e.prototype.call=function(e,t){return t.subscribe(new l(e,this.predicate,this.thisArg,this.source))},e}(),l=function(e){function t(t,n,i,r){e.call(this,t),this.predicate=n,this.thisArg=i,this.source=r,this.index=0,this.thisArg=i||this}return i(t,e),t.prototype.notifyComplete=function(e){this.destination.next(e),this.destination.complete()},t.prototype._next=function(e){var t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(e){return void this.destination.error(e)}t||this.notifyComplete(!1)},t.prototype._complete=function(){this.notifyComplete(!0)},t}(r.Subscriber)},fICK:function(e,t,n){"use strict";var i=n("rCTf"),r=n("1KT0");i.Observable.merge=r.merge},fKB6:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var i={e:{}}},fMqj:function(e,t,n){var i=n("zGZ6");e.exports=function(e){var t=i(e,function(e){return 500===n.size&&n.clear(),e}),n=t.cache;return t}},fO1r:function(e,t,n){"use strict";t.SubscriptionLog=function(){return function(e,t){void 0===t&&(t=Number.POSITIVE_INFINITY),this.subscribedFrame=e,this.unsubscribedFrame=t}}()},fO9o:function(e,t,n){var i=n("8UTl").h;e.exports={defaultTabIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"30",height:"30",viewBox:"0 0 30 30"},i("path",{d:"M15 30c8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15C6.716 0 0 6.716 0 15c0 8.284 6.716 15 15 15zm4.258-12.676v6.846h-8.426v-6.846H5.204l9.82-12.364 9.82 12.364H19.26z"}))},iconCopy:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"51",height:"51",viewBox:"0 0 51 51"},i("path",{d:"M17.21 45.765a5.394 5.394 0 0 1-7.62 0l-4.12-4.122a5.393 5.393 0 0 1 0-7.618l6.774-6.775-2.404-2.404-6.775 6.776c-3.424 3.427-3.424 9 0 12.426l4.12 4.123a8.766 8.766 0 0 0 6.216 2.57c2.25 0 4.5-.858 6.214-2.57l13.55-13.552a8.72 8.72 0 0 0 2.575-6.213 8.73 8.73 0 0 0-2.575-6.213l-4.123-4.12-2.404 2.404 4.123 4.12a5.352 5.352 0 0 1 1.58 3.81c0 1.438-.562 2.79-1.58 3.808l-13.55 13.55z"}),i("path",{d:"M44.256 2.858A8.728 8.728 0 0 0 38.043.283h-.002a8.73 8.73 0 0 0-6.212 2.574l-13.55 13.55a8.725 8.725 0 0 0-2.575 6.214 8.73 8.73 0 0 0 2.574 6.216l4.12 4.12 2.405-2.403-4.12-4.12a5.357 5.357 0 0 1-1.58-3.812c0-1.437.562-2.79 1.58-3.808l13.55-13.55a5.348 5.348 0 0 1 3.81-1.58c1.44 0 2.792.562 3.81 1.58l4.12 4.12c2.1 2.1 2.1 5.518 0 7.617L39.2 23.775l2.404 2.404 6.775-6.777c3.426-3.427 3.426-9 0-12.426l-4.12-4.12z"}))},iconResume:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"25",height:"25",viewBox:"0 0 44 44"},i("polygon",{class:"play",transform:"translate(6, 5.5)",points:"13 21.6666667 13 11 21 16.3333333"}))},iconPause:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"25px",height:"25px",viewBox:"0 0 44 44"},i("g",{transform:"translate(18, 17)",class:"pause"},i("rect",{x:"0",y:"0",width:"2",height:"10",rx:"0"}),i("rect",{x:"6",y:"0",width:"2",height:"10",rx:"0"})))},iconRetry:function(){return i("svg",{class:"UppyIcon retry",width:"28",height:"31",viewBox:"0 0 16 19",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M16 11a8 8 0 1 1-8-8v2a6 6 0 1 0 6 6h2z"}),i("path",{d:"M7.9 3H10v2H7.9z"}),i("path",{d:"M8.536.5l3.535 3.536-1.414 1.414L7.12 1.914z"}),i("path",{d:"M10.657 2.621l1.414 1.415L8.536 7.57 7.12 6.157z"}))},iconEdit:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"28",height:"28",viewBox:"0 0 28 28"},i("path",{d:"M25.436 2.566a7.98 7.98 0 0 0-2.078-1.51C22.638.703 21.906.5 21.198.5a3 3 0 0 0-1.023.17 2.436 2.436 0 0 0-.893.562L2.292 18.217.5 27.5l9.28-1.796 16.99-16.99c.255-.254.444-.56.562-.888a3 3 0 0 0 .17-1.023c0-.708-.205-1.44-.555-2.16a8 8 0 0 0-1.51-2.077zM9.01 24.252l-4.313.834c0-.03.008-.06.012-.09.007-.944-.74-1.715-1.67-1.723-.04 0-.078.007-.118.01l.83-4.29L17.72 5.024l5.264 5.264L9.01 24.252zm16.84-16.96a.818.818 0 0 1-.194.31l-1.57 1.57-5.26-5.26 1.57-1.57a.82.82 0 0 1 .31-.194 1.45 1.45 0 0 1 .492-.074c.397 0 .917.126 1.468.397.55.27 1.13.678 1.656 1.21.53.53.94 1.11 1.208 1.655.272.55.397 1.07.393 1.468.004.193-.027.358-.074.488z"}))},localIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"27",height:"25",viewBox:"0 0 27 25"},i("path",{d:"M5.586 9.288a.313.313 0 0 0 .282.176h4.84v3.922c0 1.514 1.25 2.24 2.792 2.24 1.54 0 2.79-.726 2.79-2.24V9.464h4.84c.122 0 .23-.068.284-.176a.304.304 0 0 0-.046-.324L13.735.106a.316.316 0 0 0-.472 0l-7.63 8.857a.302.302 0 0 0-.047.325z"}),i("path",{d:"M24.3 5.093c-.218-.76-.54-1.187-1.208-1.187h-4.856l1.018 1.18h3.948l2.043 11.038h-7.193v2.728H9.114v-2.725h-7.36l2.66-11.04h3.33l1.018-1.18H3.907c-.668 0-1.06.46-1.21 1.186L0 16.456v7.062C0 24.338.676 25 1.51 25h23.98c.833 0 1.51-.663 1.51-1.482v-7.062L24.3 5.093z"}))},closeIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"14px",height:"14px",viewBox:"0 0 19 19"},i("path",{d:"M17.318 17.232L9.94 9.854 9.586 9.5l-.354.354-7.378 7.378h.707l-.62-.62v.706L9.318 9.94l.354-.354-.354-.354L1.94 1.854v.707l.62-.62h-.706l7.378 7.378.354.354.354-.354 7.378-7.378h-.707l.622.62v-.706L9.854 9.232l-.354.354.354.354 7.378 7.378.708-.707-7.38-7.378v.708l7.38-7.38.353-.353-.353-.353-.622-.622-.353-.353-.354.352-7.378 7.38h.708L2.56 1.23 2.208.88l-.353.353-.622.62-.353.355.352.353 7.38 7.38v-.708l-7.38 7.38-.353.353.352.353.622.622.353.353.354-.353 7.38-7.38h-.708l7.38 7.38z"}))},pluginIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"16px",height:"16px",viewBox:"0 0 32 30"},i("path",{d:"M6.6209894,11.1451162 C6.6823051,11.2751669 6.81374248,11.3572188 6.95463813,11.3572188 L12.6925482,11.3572188 L12.6925482,16.0630427 C12.6925482,17.880509 14.1726048,18.75 16.0000083,18.75 C17.8261072,18.75 19.3074684,17.8801847 19.3074684,16.0630427 L19.3074684,11.3572188 L25.0437478,11.3572188 C25.1875787,11.3572188 25.3164069,11.2751669 25.3790272,11.1451162 C25.4370814,11.0173358 25.4171865,10.8642587 25.3252129,10.7562615 L16.278212,0.127131837 C16.2093949,0.0463771751 16.1069846,0 15.9996822,0 C15.8910751,0 15.7886648,0.0463771751 15.718217,0.127131837 L6.6761083,10.7559371 C6.58250402,10.8642587 6.56293518,11.0173358 6.6209894,11.1451162 L6.6209894,11.1451162 Z"}),i("path",{d:"M28.8008722,6.11142645 C28.5417891,5.19831555 28.1583331,4.6875 27.3684848,4.6875 L21.6124454,4.6875 L22.8190234,6.10307874 L27.4986725,6.10307874 L29.9195817,19.3486449 L21.3943891,19.3502502 L21.3943891,22.622552 L10.8023461,22.622552 L10.8023461,19.3524977 L2.07815702,19.3534609 L5.22979699,6.10307874 L9.17871529,6.10307874 L10.3840011,4.6875 L4.6308691,4.6875 C3.83940559,4.6875 3.37421888,5.2390909 3.19815864,6.11142645 L0,19.7470874 L0,28.2212959 C0,29.2043992 0.801477937,30 1.78870751,30 L30.2096773,30 C31.198199,30 32,29.2043992 32,28.2212959 L32,19.7470874 L28.8008722,6.11142645 L28.8008722,6.11142645 Z"}))},checkIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon UppyIcon-check",width:"13px",height:"9px",viewBox:"0 0 13 9"},i("polygon",{points:"5 7.293 1.354 3.647 0.646 4.354 5 8.707 12.354 1.354 11.646 0.647"}))},iconAudio:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",viewBox:"0 0 55 55"},i("path",{d:"M52.66.25c-.216-.19-.5-.276-.79-.242l-31 4.01a1 1 0 0 0-.87.992V40.622C18.174 38.428 15.273 37 12 37c-5.514 0-10 4.037-10 9s4.486 9 10 9 10-4.037 10-9c0-.232-.02-.46-.04-.687.014-.065.04-.124.04-.192V16.12l29-3.753v18.257C49.174 28.428 46.273 27 43 27c-5.514 0-10 4.037-10 9s4.486 9 10 9c5.464 0 9.913-3.966 9.993-8.867 0-.013.007-.024.007-.037V1a.998.998 0 0 0-.34-.75zM12 53c-4.41 0-8-3.14-8-7s3.59-7 8-7 8 3.14 8 7-3.59 7-8 7zm31-10c-4.41 0-8-3.14-8-7s3.59-7 8-7 8 3.14 8 7-3.59 7-8 7zM22 14.1V5.89l29-3.753v8.21l-29 3.754z"}))},iconVideo:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",viewBox:"0 0 58 58"},i("path",{d:"M36.537 28.156l-11-7a1.005 1.005 0 0 0-1.02-.033C24.2 21.3 24 21.635 24 22v14a1 1 0 0 0 1.537.844l11-7a1.002 1.002 0 0 0 0-1.688zM26 34.18V23.82L34.137 29 26 34.18z"}),i("path",{d:"M57 6H1a1 1 0 0 0-1 1v44a1 1 0 0 0 1 1h56a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zM10 28H2v-9h8v9zm-8 2h8v9H2v-9zm10 10V8h34v42H12V40zm44-12h-8v-9h8v9zm-8 2h8v9h-8v-9zm8-22v9h-8V8h8zM2 8h8v9H2V8zm0 42v-9h8v9H2zm54 0h-8v-9h8v9z"}))},iconPDF:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",viewBox:"0 0 342 335"},i("path",{d:"M329.337 227.84c-2.1 1.3-8.1 2.1-11.9 2.1-12.4 0-27.6-5.7-49.1-14.9 8.3-.6 15.8-.9 22.6-.9 12.4 0 16 0 28.2 3.1 12.1 3 12.2 9.3 10.2 10.6zm-215.1 1.9c4.8-8.4 9.7-17.3 14.7-26.8 12.2-23.1 20-41.3 25.7-56.2 11.5 20.9 25.8 38.6 42.5 52.8 2.1 1.8 4.3 3.5 6.7 5.3-34.1 6.8-63.6 15-89.6 24.9zm39.8-218.9c6.8 0 10.7 17.06 11 33.16.3 16-3.4 27.2-8.1 35.6-3.9-12.4-5.7-31.8-5.7-44.5 0 0-.3-24.26 2.8-24.26zm-133.4 307.2c3.9-10.5 19.1-31.3 41.6-49.8 1.4-1.1 4.9-4.4 8.1-7.4-23.5 37.6-39.3 52.5-49.7 57.2zm315.2-112.3c-6.8-6.7-22-10.2-45-10.5-15.6-.2-34.3 1.2-54.1 3.9-8.8-5.1-17.9-10.6-25.1-17.3-19.2-18-35.2-42.9-45.2-70.3.6-2.6 1.2-4.8 1.7-7.1 0 0 10.8-61.5 7.9-82.3-.4-2.9-.6-3.7-1.4-5.9l-.9-2.5c-2.9-6.76-8.7-13.96-17.8-13.57l-5.3-.17h-.1c-10.1 0-18.4 5.17-20.5 12.84-6.6 24.3.2 60.5 12.5 107.4l-3.2 7.7c-8.8 21.4-19.8 43-29.5 62l-1.3 2.5c-10.2 20-19.5 37-27.9 51.4l-8.7 4.6c-.6.4-15.5 8.2-19 10.3-29.6 17.7-49.28 37.8-52.54 53.8-1.04 5-.26 11.5 5.01 14.6l8.4 4.2c3.63 1.8 7.53 2.7 11.43 2.7 21.1 0 45.6-26.2 79.3-85.1 39-12.7 83.4-23.3 122.3-29.1 29.6 16.7 66 28.3 89 28.3 4.1 0 7.6-.4 10.5-1.2 4.4-1.1 8.1-3.6 10.4-7.1 4.4-6.7 5.4-15.9 4.1-25.4-.3-2.8-2.6-6.3-5-8.7z"}))},iconFile:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"44",height:"58",viewBox:"0 0 44 58"},i("path",{d:"M27.437.517a1 1 0 0 0-.094.03H4.25C2.037.548.217 2.368.217 4.58v48.405c0 2.212 1.82 4.03 4.03 4.03H39.03c2.21 0 4.03-1.818 4.03-4.03V15.61a1 1 0 0 0-.03-.28 1 1 0 0 0 0-.093 1 1 0 0 0-.03-.032 1 1 0 0 0 0-.03 1 1 0 0 0-.032-.063 1 1 0 0 0-.03-.063 1 1 0 0 0-.032 0 1 1 0 0 0-.03-.063 1 1 0 0 0-.032-.03 1 1 0 0 0-.03-.063 1 1 0 0 0-.063-.062l-14.593-14a1 1 0 0 0-.062-.062A1 1 0 0 0 28 .708a1 1 0 0 0-.374-.157 1 1 0 0 0-.156 0 1 1 0 0 0-.03-.03l-.003-.003zM4.25 2.547h22.218v9.97c0 2.21 1.82 4.03 4.03 4.03h10.564v36.438a2.02 2.02 0 0 1-2.032 2.032H4.25c-1.13 0-2.032-.9-2.032-2.032V4.58c0-1.13.902-2.032 2.03-2.032zm24.218 1.345l10.375 9.937.75.718H30.5c-1.13 0-2.032-.9-2.032-2.03V3.89z"}))},iconText:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"62",height:"62",viewBox:"0 0 62 62",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M4.309 4.309h24.912v53.382h-6.525v3.559h16.608v-3.559h-6.525V4.309h24.912v10.676h3.559V.75H.75v14.235h3.559z","fill-rule":"nonzero",fill:"#000"}))},uploadIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"37",height:"33",viewBox:"0 0 37 33"},i("path",{d:"M29.107 24.5c4.07 0 7.393-3.355 7.393-7.442 0-3.994-3.105-7.307-7.012-7.502l.468.415C29.02 4.52 24.34.5 18.886.5c-4.348 0-8.27 2.522-10.138 6.506l.446-.288C4.394 6.782.5 10.758.5 15.608c0 4.924 3.906 8.892 8.76 8.892h4.872c.635 0 1.095-.467 1.095-1.104 0-.636-.46-1.103-1.095-1.103H9.26c-3.644 0-6.63-3.035-6.63-6.744 0-3.71 2.926-6.685 6.57-6.685h.964l.14-.28.177-.362c1.477-3.4 4.744-5.576 8.347-5.576 4.58 0 8.45 3.452 9.01 8.072l.06.536.05.446h1.101c2.87 0 5.204 2.37 5.204 5.295s-2.333 5.296-5.204 5.296h-6.062c-.634 0-1.094.467-1.094 1.103 0 .637.46 1.104 1.094 1.104h6.12z"}),i("path",{d:"M23.196 18.92l-4.828-5.258-.366-.4-.368.398-4.828 5.196a1.13 1.13 0 0 0 0 1.546c.428.46 1.11.46 1.537 0l3.45-3.71-.868-.34v15.03c0 .64.445 1.118 1.075 1.118.63 0 1.075-.48 1.075-1.12V16.35l-.867.34 3.45 3.712a1 1 0 0 0 .767.345 1 1 0 0 0 .77-.345c.416-.33.416-1.036 0-1.485v.003z"}))},dashboardBgIcon:function(){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"48",height:"69",viewBox:"0 0 48 69"},i("path",{d:"M.5 1.5h5zM10.5 1.5h5zM20.5 1.5h5zM30.504 1.5h5zM45.5 11.5v5zM45.5 21.5v5zM45.5 31.5v5zM45.5 41.502v5zM45.5 51.502v5zM45.5 61.5v5zM45.5 66.502h-4.998zM35.503 66.502h-5zM25.5 66.502h-5zM15.5 66.502h-5zM5.5 66.502h-5zM.5 66.502v-5zM.5 56.502v-5zM.5 46.503V41.5zM.5 36.5v-5zM.5 26.5v-5zM.5 16.5v-5zM.5 6.5V1.498zM44.807 11H36V2.195z"}))}}},fOB9:function(e,t){var n=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,i=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];e.exports=function(e){var t=e,r=e.indexOf("["),o=e.indexOf("]");-1!=r&&-1!=o&&(e=e.substring(0,r)+e.substring(r,o).replace(/:/g,";")+e.substring(o,e.length));for(var l=n.exec(e||""),s={},a=14;a--;)s[i[a]]=l[a]||"";return-1!=r&&-1!=o&&(s.source=t,s.host=s.host.substring(1,s.host.length-1).replace(/;/g,":"),s.authority=s.authority.replace("[","").replace("]","").replace(/;/g,":"),s.ipv6uri=!0),s}},fW1y:function(e,t,n){!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"],n=["\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:n,weekdaysShort:n,weekdaysMin:n,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,n){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}})}(n("PJh5"))},fWbP:function(e,t,n){"use strict";t.isScheduler=function(e){return e&&"function"==typeof e.schedule}},fXP7:function(e,t){Prism.languages.typescript=Prism.languages.extend("javascript",{keyword:/\b(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield|module|declare|constructor|namespace|abstract|require|type)\b/,builtin:/\b(?:string|Function|any|number|boolean|Array|symbol|console)\b/}),Prism.languages.ts=Prism.languages.typescript},fehh:function(e,t,n){var i=n("YAye"),r=n("Bk7N"),o=n("WynT"),l=n("HW6M"),s=n("am10").isTouchDevice,a=n("fO9o").closeIcon,u=n("8UTl").h;e.exports=function(e){var t=l("uppy","uppy-Dashboard",{"Uppy--isTouchDevice":s()},{"uppy-Dashboard--modal":!e.inline},{"uppy-Dashboard--wide":e.isWide});return u("div",{class:t,"aria-hidden":e.inline?"false":e.modal.isHidden,"aria-label":e.i18n(e.inline?"dashboardTitle":"dashboardWindowTitle"),onpaste:e.handlePaste},u("div",{class:"uppy-Dashboard-overlay",tabindex:"-1",onclick:e.handleClickOutside}),u("div",{class:"uppy-Dashboard-inner","aria-modal":!e.inline&&"true",role:!e.inline&&"dialog",style:{maxWidth:e.inline&&e.maxWidth?e.maxWidth:"",maxHeight:e.inline&&e.maxHeight?e.maxHeight:""}},u("button",{class:"uppy-Dashboard-close",type:"button","aria-label":e.i18n("closeModal"),title:e.i18n("closeModal"),onclick:e.closeModal},a()),u("div",{class:"uppy-Dashboard-innerWrap"},u(r,e),u(o,e),u("div",{class:"uppy-Dashboard-filesContainer"},u(i,e)),u("div",{class:"uppy-DashboardContent-panel",role:"tabpanel",id:e.activePanel&&"uppy-DashboardContent-panel--"+e.activePanel.id,"aria-hidden":e.activePanel?"false":"true"},e.activePanel&&function(e){return u("div",{style:{width:"100%",height:"100%"}},u("div",{class:"uppy-DashboardContent-bar"},u("div",{class:"uppy-DashboardContent-title"},e.i18n("importFrom")," ",e.activePanel?e.activePanel.name:null),u("button",{class:"uppy-DashboardContent-back",type:"button",onclick:e.hideAllPanels},e.i18n("done"))),e.getPlugin(e.activePanel.id).render(e.state))}(e)),u("div",{class:"uppy-Dashboard-progressindicators"},e.progressindicators.map(function(t){return e.getPlugin(t.id).render(e.state)})))))}},fiy1:function(e,t,n){"use strict";var i=n("rCTf"),r=n("u2wr");i.Observable.prototype.withLatestFrom=r.withLatestFrom},ftJA:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("Uqs8"),l=n("P3oE");t.SubscribeOnObservable=function(e){function t(t,n,i){void 0===n&&(n=0),void 0===i&&(i=o.asap),e.call(this),this.source=t,this.delayTime=n,this.scheduler=i,(!l.isNumeric(n)||n<0)&&(this.delayTime=0),i&&"function"==typeof i.schedule||(this.scheduler=o.asap)}return i(t,e),t.create=function(e,n,i){return void 0===n&&(n=0),void 0===i&&(i=o.asap),new t(e,n,i)},t.dispatch=function(e){return this.add(e.source.subscribe(e.subscriber))},t.prototype._subscribe=function(e){return this.scheduler.schedule(t.dispatch,this.delayTime,{source:this.source,subscriber:e})},t}(r.Observable)},fuZx:function(e,t,n){"use strict";t.isDate=function(e){return e instanceof Date&&!isNaN(+e)}},fyNK:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.mergeMapTo=function(e,t,n){return void 0===n&&(n=Number.POSITIVE_INFINITY),"number"==typeof t&&(n=t,t=null),function(i){return i.lift(new l(e,t,n))}};var l=function(){function e(e,t,n){void 0===n&&(n=Number.POSITIVE_INFINITY),this.ish=e,this.resultSelector=t,this.concurrent=n}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.ish,this.resultSelector,this.concurrent))},e}();t.MergeMapToOperator=l;var s=function(e){function t(t,n,i,r){void 0===r&&(r=Number.POSITIVE_INFINITY),e.call(this,t),this.ish=n,this.resultSelector=i,this.concurrent=r,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}return i(t,e),t.prototype._next=function(e){if(this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},t}(r.OuterSubscriber);t.MergeMapToSubscriber=s},g0nL:function(e,t,n){"use strict";var i=n("rCTf"),r=n("tefl");i.Observable.pairs=r.pairs},g28B:function(e,t,n){"use strict";t.applyMixins=function(e,t){for(var n=0,i=t.length;n=20?"ste":"de")},week:{dow:1,doy:4}})}(n("PJh5"))},gDzJ:function(e,t,n){"use strict";var i=n("rCTf"),r=n("Imsy");i.Observable.prototype.windowWhen=r.windowWhen},gEQe:function(e,t,n){!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"},n={"\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 n[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,n){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}})}(n("PJh5"))},gEU3:function(e,t,n){!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}})}(n("PJh5"))},gGqR:function(e,t,n){var i=n("aCM0"),r=n("yCNF");e.exports=function(e){if(!r(e))return!1;var t=i(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},gHOb:function(e,t,n){var i=n("d4US"),r=n("POb3"),o=n("bO0Y"),l=n("5N57"),s=n("bIbi"),a=n("aCM0"),u=n("Ai/T"),c=u(i),d=u(r),p=u(o),h=u(l),f=u(s),m=a;(i&&"[object DataView]"!=m(new i(new ArrayBuffer(1)))||r&&"[object Map]"!=m(new r)||o&&"[object Promise]"!=m(o.resolve())||l&&"[object Set]"!=m(new l)||s&&"[object WeakMap]"!=m(new s))&&(m=function(e){var t=a(e),n="[object Object]"==t?e.constructor:void 0,i=n?u(n):"";if(i)switch(i){case c:return"[object DataView]";case d:return"[object Map]";case p:return"[object Promise]";case h:return"[object Set]";case f:return"[object WeakMap]"}return t}),e.exports=m},gIFM:function(e,t,n){"use strict";var i=n("Dc2k");t.ajax=i.AjaxObservable.create},gJB0:function(e,t,n){var i=Object.assign||function(e){for(var t=1;t0?e.prototype.requestAsyncId.call(this,t,n,i):(t.actions.push(this),t.scheduled||(t.scheduled=o.AnimationFrame.requestAnimationFrame(t.flush.bind(t,null))))},t.prototype.recycleAsyncId=function(t,n,i){if(void 0===i&&(i=0),null!==i&&i>0||null===i&&this.delay>0)return e.prototype.recycleAsyncId.call(this,t,n,i);0===t.actions.length&&(o.AnimationFrame.cancelAnimationFrame(n),t.scheduled=void 0)},t}(r.AsyncAction)},gs2Y:function(e,t,n){var i=n("8AZL"),r=n("YkxI"),o=n("e5i8"),l=n("zMR/"),s=r(function(e){return e.push(void 0,o),i(l,void 0,e)});e.exports=s},gwcX:function(e,t){e.exports=function(){return!1}},gzKz:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("8Z8y");t.elementAt=function(e,t){return function(n){return n.lift(new l(e,t))}};var l=function(){function e(e,t){if(this.index=e,this.defaultValue=t,e<0)throw new o.ArgumentOutOfRangeError}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.index,this.defaultValue))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.index=n,this.defaultValue=i}return i(t,e),t.prototype._next=function(e){0==this.index--&&(this.destination.next(e),this.destination.complete())},t.prototype._complete=function(){var e=this.destination;this.index>=0&&("undefined"!=typeof this.defaultValue?e.next(this.defaultValue):e.error(new o.ArgumentOutOfRangeError)),e.complete()},t}(r.Subscriber)},h0qH:function(e,t,n){"use strict";var i=n("rCTf"),r=n("s3oX");i.Observable.throw=r._throw},hIPy:function(e,t,n){var i=n("NGEn"),r=n("6MiT"),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,l=/^\w*$/;e.exports=function(e,t){if(i(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!r(e))||l.test(e)||!o.test(e)||null!=t&&e in Object(t)}},hKoQ:function(e,t,n){(function(t,n){e.exports=function(){"use strict";function e(e){return"function"==typeof e}var i=Array.isArray?Array.isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e)},r=0,o=void 0,l=void 0,s=function(e,t){f[r]=e,f[r+1]=t,2===(r+=2)&&(l?l(m):b())},a="undefined"!=typeof window?window:void 0,u=a||{},c=u.MutationObserver||u.WebKitMutationObserver,d="undefined"==typeof self&&"undefined"!=typeof t&&"[object process]"==={}.toString.call(t),p="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel;function h(){var e=setTimeout;return function(){return e(m,1)}}var f=new Array(1e3);function m(){for(var e=0;e11?n?"d'o":"D'O":n?"d'a":"D'A"},calendar:{sameDay:"[oxhi \xe0] LT",nextDay:"[dem\xe0 \xe0] LT",nextWeek:"dddd [\xe0] LT",lastDay:"[ieiri \xe0] LT",lastWeek:"[s\xfcr el] dddd [lasteu \xe0] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s: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}})}(n("PJh5"))},iUY6:function(e,t,n){"use strict";var i=n("rCTf"),r=n("5nj5");i.Observable.if=r._if},igBR:function(e,t,n){var i=n("am10"),r=i.getETA,o=i.getSpeed,l=i.prettyETA,s=i.getFileNameAndExtension,a=i.truncateString,u=i.copyToClipboard,c=n("yaFn"),d=n("jzlz"),p=n("rqiN"),h=n("fO9o"),f=h.iconEdit,m=h.iconCopy,g=h.iconRetry,v=n("HW6M"),y=n("8UTl").h;e.exports=function(e){var t=e.file,n=e.acquirers,i=t.progress.preprocess||t.progress.postprocess,h=t.progress.uploadComplete&&!i&&!t.error,_=t.progress.uploadStarted||i,b=t.progress.uploadStarted&&!t.progress.uploadComplete||i,w=t.isPaused||!1,x=t.error||!1,M=s(t.meta.name).name,T=e.isWide?a(M,14):M,L=v("uppy-DashboardItem",{"is-inprogress":b},{"is-processing":i},{"is-complete":h},{"is-paused":w},{"is-error":x},{"is-resumable":e.resumableUploads});return y("li",{class:L,id:"uppy_"+t.id,title:t.meta.name},y("div",{class:"uppy-DashboardItem-preview"},y("div",{class:"uppy-DashboardItem-previewInnerWrap",style:{backgroundColor:p(t.type).color}},t.preview?y("img",{alt:t.name,src:t.preview}):y("div",{class:"uppy-DashboardItem-previewIconWrap"},y("span",{class:"uppy-DashboardItem-previewIcon",style:{color:p(t.type).color}},p(t.type).icon),y("svg",{class:"uppy-DashboardItem-previewIconBg",width:"72",height:"93",viewBox:"0 0 72 93"},y("g",null,y("path",{d:"M24.08 5h38.922A2.997 2.997 0 0 1 66 8.003v74.994A2.997 2.997 0 0 1 63.004 86H8.996A2.998 2.998 0 0 1 6 83.01V22.234L24.08 5z",fill:"#FFF"}),y("path",{d:"M24 5L6 22.248h15.007A2.995 2.995 0 0 0 24 19.244V5z",fill:"#E4E4E4"}))))),y("div",{class:"uppy-DashboardItem-progress"},h?y("div",{class:"uppy-DashboardItem-progressIndicator"},d({progress:t.progress.percentage,fileID:t.id})):y("button",{class:"uppy-DashboardItem-progressIndicator",type:"button",title:h?"upload complete":e.resumableUploads?t.isPaused?"resume upload":"pause upload":x?"retry upload":"cancel upload",onclick:function(n){h||(x?e.retryUpload(t.id):e.resumableUploads?e.pauseUpload(t.id):e.cancelUpload(t.id))}},x?g():d({progress:t.progress.percentage,fileID:t.id})),e.showProgressDetails&&y("div",{class:"uppy-DashboardItem-progressInfo",title:e.i18n("fileProgress"),"aria-label":e.i18n("fileProgress")},!t.isPaused&&!h&&y("span",null,l(r(t.progress))," \u30fb \u2191 ",c(o(t.progress)),"/s")))),y("div",{class:"uppy-DashboardItem-info"},y("h4",{class:"uppy-DashboardItem-name",title:M},t.uploadURL?y("a",{href:t.uploadURL,target:"_blank"},t.extension?T+"."+t.extension:T):t.extension?T+"."+t.extension:T),y("div",{class:"uppy-DashboardItem-status"},t.data.size&&y("div",{class:"uppy-DashboardItem-statusSize"},c(t.data.size)),t.source&&y("div",{class:"uppy-DashboardItem-sourceIcon"},n.map(function(n){if(n.id===t.source)return y("span",{title:e.i18n("fileSource")+": "+n.name},n.icon())}))),!_&&y("button",{class:"uppy-DashboardItem-edit",type:"button","aria-label":e.i18n("editFile"),title:e.i18n("editFile"),onclick:function(n){return e.showFileCard(t.id)}},f()),t.uploadURL&&y("button",{class:"uppy-DashboardItem-copyLink",type:"button","aria-label":e.i18n("copyLink"),title:e.i18n("copyLink"),onclick:function(){u(t.uploadURL,e.i18n("copyLinkToClipboardFallback")).then(function(){e.log("Link copied to clipboard."),e.info(e.i18n("copyLinkToClipboardSuccess"),"info",3e3)}).catch(e.log)}},m())),y("div",{class:"uppy-DashboardItem-action"},!h&&y("button",{class:"uppy-DashboardItem-remove",type:"button","aria-label":e.i18n("removeFile"),title:e.i18n("removeFile"),onclick:function(){return e.removeFile(t.id)}},y("svg",{"aria-hidden":"true",class:"UppyIcon",width:"60",height:"60",viewBox:"0 0 60 60",xmlns:"http://www.w3.org/2000/svg"},y("path",{stroke:"#FFF","stroke-width":"1","fill-rule":"nonzero","vector-effect":"non-scaling-stroke",d:"M30 1C14 1 1 14 1 30s13 29 29 29 29-13 29-29S46 1 30 1z"}),y("path",{fill:"#FFF","vector-effect":"non-scaling-stroke",d:"M42 39.667L39.667 42 30 32.333 20.333 42 18 39.667 27.667 30 18 20.333 20.333 18 30 27.667 39.667 18 42 20.333 32.333 30z"})))))}},ijov:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("Yh8Q"),o=n("Xajo"),l=n("wAkD"),s=n("CURp"),a={};t.combineLatest=function(){for(var e=[],t=0;t-1&&n.observers[e].splice(i,1)}else delete n.observers[e]})},e.prototype.emit=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i=100?100:null])},week:{dow:1,doy:7}})}(n("PJh5"))},j7ye:function(e,t,n){"use strict";var i=n("rCTf"),r=n("emOw");i.Observable.prototype.multicast=r.multicast},j8cJ:function(e,t,n){!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}})}(n("PJh5"))},jBEF:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf");t.EmptyObservable=function(e){function t(t){e.call(this),this.scheduler=t}return i(t,e),t.create=function(e){return new t(e)},t.dispatch=function(e){e.subscriber.complete()},t.prototype._subscribe=function(e){var n=this.scheduler;if(n)return n.schedule(t.dispatch,0,{subscriber:e});e.complete()},t}(r.Observable)},jD7S:function(e,t,n){var i=n("tv3T"),r=n("ktak");e.exports=function(e,t){return e&&i(t,r(t),e)}},jDQW:function(e,t,n){"use strict";var i=n("rCTf"),r=n("Mqdq");i.Observable.prototype.bufferToggle=r.bufferToggle},jF50:function(e,t,n){"use strict";var i=n("rCTf"),r=n("KKz1");i.Observable.prototype.throttleTime=r.throttleTime},jMi8:function(e,t,n){var i=n("O1jc"),r=n("mKB/"),o=n("Ilb/"),l=n("hrPF"),s=n("WQFf"),a=n("1Yb9"),u=n("NGEn"),c=n("Fp5l"),d=n("ggOT"),p=n("gGqR"),h=n("yCNF"),f=n("9UkZ"),m=n("YsVG"),g=n("MMop"),v=n("TlPD");e.exports=function(e,t,n,y,_,b,w){var x=g(e,n),M=g(t,n),T=w.get(M);if(T)i(e,n,T);else{var L=b?b(x,M,n+"",e,t,w):void 0,k=void 0===L;if(k){var C=u(M),S=!C&&d(M),E=!C&&!S&&m(M);L=M,C||S||E?u(x)?L=x:c(x)?L=l(x):S?(k=!1,L=r(M,!0)):E?(k=!1,L=o(M,!0)):L=[]:f(M)||a(M)?(L=x,a(x)?L=v(x):h(x)&&!p(x)||(L=s(M))):k=!1}k&&(w.set(M,L),_(L,M,y,b,w),w.delete(M)),i(e,n,L)}}},jdTm:function(e,t,n){"use strict";var i=n("jnJ8");t.timer=i.TimerObservable.create},jdeX:function(e,t,n){"use strict";var i=n("rCTf"),r=n("jdTm");i.Observable.timer=r.timer},jnJ8:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("P3oE"),o=n("rCTf"),l=n("CGGv"),s=n("fWbP"),a=n("fuZx");t.TimerObservable=function(e){function t(t,n,i){void 0===t&&(t=0),e.call(this),this.period=-1,this.dueTime=0,r.isNumeric(n)?this.period=Number(n)<1?1:Number(n):s.isScheduler(n)&&(i=n),s.isScheduler(i)||(i=l.async),this.scheduler=i,this.dueTime=a.isDate(t)?+t-this.scheduler.now():t}return i(t,e),t.create=function(e,n,i){return void 0===e&&(e=0),new t(e,n,i)},t.dispatch=function(e){var t=e.index,n=e.period,i=e.subscriber;if(i.next(t),!i.closed){if(-1===n)return i.complete();e.index=t+1,this.schedule(e,n)}},t.prototype._subscribe=function(e){return this.scheduler.schedule(t.dispatch,this.dueTime,{index:0,period:this.period,subscriber:e})},t}(o.Observable)},jtuv:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("+3eL"),o=n("WhVc"),l=n("CURp"),s=n("wAkD");t.mergeScan=function(e,t,n){return void 0===n&&(n=Number.POSITIVE_INFINITY),function(i){return i.lift(new a(e,t,n))}};var a=function(){function e(e,t,n){this.accumulator=e,this.seed=t,this.concurrent=n}return e.prototype.call=function(e,t){return t.subscribe(new u(e,this.accumulator,this.seed,this.concurrent))},e}();t.MergeScanOperator=a;var u=function(e){function t(t,n,i,r){e.call(this,t),this.accumulator=n,this.acc=i,this.concurrent=r,this.hasValue=!1,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}return i(t,e),t.prototype._next=function(e){if(this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&(!1===this.hasValue&&this.destination.next(this.acc),this.destination.complete())},t}(s.OuterSubscriber);t.MergeScanSubscriber=u},jvbR:function(e,t,n){"use strict";var i=n("rCTf"),r=n("bE1M");i.Observable.prototype.concatMap=r.concatMap},jxEH:function(e,t,n){!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 n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function i(e,i,r){return e+" "+n(t[r],e,i)}function r(e,i,r){return n(t[r],e,i)}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:i,m:r,mm:i,h:r,hh:i,d:r,dd:i,M:r,MM:i,y:r,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},jzlz:function(e,t,n){var i=n("8UTl").h,r=2*Math.PI*15;e.exports=function(e){return i("svg",{width:"70",height:"70",viewBox:"0 0 36 36",class:"UppyIcon UppyIcon-progressCircle"},i("g",{class:"progress-group"},i("circle",{r:"15",cx:"18",cy:"18","stroke-width":"2",fill:"none",class:"bg"}),i("circle",{r:"15",cx:"18",cy:"18",transform:"rotate(-90, 18, 18)","stroke-width":"2",fill:"none",class:"progress","stroke-dasharray":r,"stroke-dashoffset":r-r/100*e.progress})),i("polygon",{transform:"translate(3, 3)",points:"12 20 12 10 20 15",class:"play"}),i("g",{transform:"translate(14.5, 13)",class:"pause"},i("rect",{x:"0",y:"0",width:"2",height:"10",rx:"0"}),i("rect",{x:"5",y:"0",width:"2",height:"10",rx:"0"})),i("polygon",{transform:"translate(2, 3)",points:"14 22.5 7 15.2457065 8.99985857 13.1732815 14 18.3547104 22.9729883 9 25 11.1005634",class:"check"}),i("polygon",{class:"cancel",transform:"translate(2, 2)",points:"19.8856516 11.0625 16 14.9481516 12.1019737 11.0625 11.0625 12.1143484 14.9481516 16 11.0625 19.8980263 12.1019737 20.9375 16 17.0518484 19.8856516 20.9375 20.9375 19.8980263 17.0518484 16 20.9375 12"}))}},"k+5o":function(e,t,n){!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,n){switch(n){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'\u0131nc\u0131";var i=e%10;return e+(t[i]||t[e%100-i]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n("PJh5"))},k27J:function(e,t,n){"use strict";var i=n("rCTf"),r=n("X2ud");i.Observable.prototype.combineAll=r.combineAll},kVGU:function(e,t){!function(){"use strict";for(var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n=new Uint8Array(256),i=0;i>2],o+=e[(3&i[n])<<4|i[n+1]>>4],o+=e[(15&i[n+1])<<2|i[n+2]>>6],o+=e[63&i[n+2]];return r%3==2?o=o.substring(0,o.length-1)+"=":r%3==1&&(o=o.substring(0,o.length-2)+"=="),o},t.decode=function(e){var t,i,r,o,l,s=.75*e.length,a=e.length,u=0;"="===e[e.length-1]&&(s--,"="===e[e.length-2]&&s--);var c=new ArrayBuffer(s),d=new Uint8Array(c);for(t=0;t>4,d[u++]=(15&r)<<4|o>>2,d[u++]=(3&o)<<6|63&l;return c}}()},"kbi+":function(e,t,n){var i=n("eHwr")(n("KgVm"));e.exports=i},kcyo:function(e,t,n){"use strict";var i=n("VOfZ"),r=function(){function e(e){if(this.root=e,e.setImmediate&&"function"==typeof e.setImmediate)this.setImmediate=e.setImmediate.bind(e),this.clearImmediate=e.clearImmediate.bind(e);else{this.nextHandle=1,this.tasksByHandle={},this.currentlyRunningATask=!1,this.setImmediate=this.canUseProcessNextTick()?this.createProcessNextTickSetImmediate():this.canUsePostMessage()?this.createPostMessageSetImmediate():this.canUseMessageChannel()?this.createMessageChannelSetImmediate():this.canUseReadyStateChange()?this.createReadyStateChangeSetImmediate():this.createSetTimeoutSetImmediate();var t=function e(t){delete e.instance.tasksByHandle[t]};t.instance=this,this.clearImmediate=t}}return e.prototype.identify=function(e){return this.root.Object.prototype.toString.call(e)},e.prototype.canUseProcessNextTick=function(){return"[object process]"===this.identify(this.root.process)},e.prototype.canUseMessageChannel=function(){return Boolean(this.root.MessageChannel)},e.prototype.canUseReadyStateChange=function(){var e=this.root.document;return Boolean(e&&"onreadystatechange"in e.createElement("script"))},e.prototype.canUsePostMessage=function(){var e=this.root;if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}return!1},e.prototype.partiallyApplied=function(e){for(var t=[],n=1;n10&&n<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}})}(n("PJh5"))},lU4I:function(e,t,n){"use strict";var i=n("fWbP"),r=n("lgiQ"),o=n("PKvP"),l=n("oZkx");t.concat=function(){for(var e=[],t=0;t0&&this.destination.next(t),e.prototype._complete.call(this)},t}(r.Subscriber),s=function(e){function t(t,n,i){e.call(this,t),this.bufferSize=n,this.startBufferEvery=i,this.buffers=[],this.count=0}return i(t,e),t.prototype._next=function(e){var t=this.bufferSize,n=this.startBufferEvery,i=this.buffers,r=this.count;this.count++,r%n==0&&i.push([]);for(var o=i.length;o--;){var l=i[o];l.push(e),l.length===t&&(i.splice(o,1),this.destination.next(l))}},t.prototype._complete=function(){for(var t=this.buffers,n=this.destination;t.length>0;){var i=t.shift();i.length>0&&n.next(i)}e.prototype._complete.call(this)},t}(r.Subscriber)},lb6C:function(e,t){e.exports=function(e,t){for(var n=-1,i=null==e?0:e.length,r=0,o=[];++n0&&(o+=t[n]+"vatlh"),i>0&&(o+=(""!==o?" ":"")+t[i]+"maH"),r>0&&(o+=(""!==o?" ":"")+t[r]),""===o?"pagh":o}(e);switch(i){case"ss":return o+" lup";case"mm":return o+" tup";case"hh":return o+" rep";case"dd":return o+" jaj";case"MM":return o+" jar";case"yy":return o+" DIS"}}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:n,m:"wa\u2019 tup",mm:n,h:"wa\u2019 rep",hh:n,d:"wa\u2019 jaj",dd:n,M:"wa\u2019 jar",MM:n,y:"wa\u2019 DIS",yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},mGzp:function(e,t,n){var i=n("2X2u"),r=n("JyYQ"),o=n("LkuQ"),l=n("NGEn"),s=n("zBOP");e.exports=function(e,t,n){var a=l(e)?i:o;return n&&s(e,t,n)&&(t=void 0),a(e,r(t,3))}},mIRt:function(e,t,n){var i=n("TuMz"),r=n("5hDm"),o=n("bOuo"),l=n("8UTl").h;e.exports=function(e){var t=e.folders,n=e.files;return""!==e.filterInput&&(t=e.filterItems(e.folders),n=e.filterItems(e.files)),l("div",{class:"uppy uppy-ProviderBrowser uppy-ProviderBrowser-viewType--"+e.viewType},l("header",{class:"uppy-ProviderBrowser-header"},l("div",{class:"uppy-ProviderBrowser-search","aria-hidden":!e.isSearchVisible},e.isSearchVisible&&l(r,e)),l("div",{class:"uppy-ProviderBrowser-headerBar"},l("button",{type:"button",class:"uppy-ProviderBrowser-searchToggle",onclick:e.toggleSearch},l("svg",{class:"UppyIcon",viewBox:"0 0 100 100"},l("path",{d:"M87.533 80.03L62.942 55.439c3.324-4.587 5.312-10.207 5.312-16.295 0-.312-.043-.611-.092-.908.05-.301.093-.605.093-.922 0-15.36-12.497-27.857-27.857-27.857-.273 0-.536.043-.799.08-.265-.037-.526-.08-.799-.08-15.361 0-27.858 12.497-27.858 27.857 0 .312.042.611.092.909a5.466 5.466 0 0 0-.093.921c0 15.36 12.496 27.858 27.857 27.858.273 0 .535-.043.8-.081.263.038.524.081.798.081 5.208 0 10.071-1.464 14.245-3.963L79.582 87.98a5.603 5.603 0 0 0 3.976 1.647 5.621 5.621 0 0 0 3.975-9.597zM39.598 55.838c-.265-.038-.526-.081-.8-.081-9.16 0-16.612-7.452-16.612-16.612 0-.312-.042-.611-.092-.908.051-.301.093-.605.093-.922 0-9.16 7.453-16.612 16.613-16.612.272 0 .534-.042.799-.079.263.037.525.079.799.079 9.16 0 16.612 7.452 16.612 16.612 0 .312.043.611.092.909-.05.301-.094.604-.094.921 0 9.16-7.452 16.612-16.612 16.612-.274 0-.536.043-.798.081z"}))),i({getFolder:e.getFolder,directories:e.directories,title:e.title}),l("button",{type:"button",onclick:e.logout,class:"uppy-ProviderBrowser-userLogout"},"Log out"))),o({columns:[{name:"Name",key:"title"}],folders:t,files:n,activeRow:e.isActiveRow,sortByTitle:e.sortByTitle,sortByDate:e.sortByDate,handleFileClick:e.addFile,handleFolderClick:e.getNextFolder,isChecked:e.isChecked,toggleCheckbox:e.toggleCheckbox,getItemName:e.getItemName,getItemIcon:e.getItemIcon,handleScroll:e.handleScroll,title:e.title}),l("button",{class:"UppyButton--circular UppyButton--blue uppy-ProviderBrowser-doneBtn",type:"button","aria-label":"Done picking files",title:"Done picking files",onclick:e.done},l("svg",{"aria-hidden":"true",class:"UppyIcon",width:"13px",height:"9px",viewBox:"0 0 13 9"},l("polygon",{points:"5 7.293 1.354 3.647 0.646 4.354 5 8.707 12.354 1.354 11.646 0.647"}))))}},mK7q:function(e,t,n){"use strict";var i=n("lU4I"),r=n("lU4I");t.concatStatic=r.concat,t.concat=function(){for(var e=[],t=0;t0?t:n}:function(e,t){return e>t?e:t})}},mzAu:function(e,t){"undefined"!=typeof Element&&("function"!=typeof Element.prototype.matches&&(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.webkitMatchesSelector||function(e){for(var t=(this.document||this.ownerDocument).querySelectorAll(e),n=0;t[n]&&t[n]!==this;)++n;return Boolean(t[n])}),"function"!=typeof Element.prototype.closest&&(Element.prototype.closest=function(e){for(var t=this;t&&1===t.nodeType;){if(t.matches(e))return t;t=t.parentNode}return null}))},nDCe:function(e,t,n){"use strict";var i=n("rCTf"),r=n("PN3d");i.Observable.prototype.publishBehavior=r.publishBehavior},nE8X:function(e,t,n){!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,n){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}})}(n("PJh5"))},nLOz:function(e,t,n){!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}})}(n("PJh5"))},nLW9:function(e,t){Prism.languages.c=Prism.languages.extend("clike",{keyword:/\b(?:_Alignas|_Alignof|_Atomic|_Bool|_Complex|_Generic|_Imaginary|_Noreturn|_Static_assert|_Thread_local|asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while)\b/,operator:/-[>-]?|\+\+?|!=?|<>?=?|==?|&&?|\|\|?|[~^%?*\/]/,number:/(?:\b0x[\da-f]+|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?)[ful]*/i}),Prism.languages.insertBefore("c","string",{macro:{pattern:/(^\s*)#\s*[a-z]+(?:[^\r\n\\]|\\(?:\r\n|[\s\S]))*/im,lookbehind:!0,alias:"property",inside:{string:{pattern:/(#\s*include\s*)(?:<.+?>|("|')(?:\\?.)+?\2)/,lookbehind:!0},directive:{pattern:/(#\s*)\b(?:define|defined|elif|else|endif|error|ifdef|ifndef|if|import|include|line|pragma|undef|using)\b/,lookbehind:!0,alias:"keyword"}}},constant:/\b(?:__FILE__|__LINE__|__DATE__|__TIME__|__TIMESTAMP__|__func__|EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|stdin|stdout|stderr)\b/}),delete Prism.languages.c["class-name"],delete Prism.languages.c.boolean},nS2h:function(e,t,n){!function(e){"use strict";var t="nolla yksi kaksi kolme nelj\xe4 viisi kuusi seitsem\xe4n kahdeksan yhdeks\xe4n".split(" "),n=["nolla","yhden","kahden","kolmen","nelj\xe4n","viiden","kuuden",t[7],t[8],t[9]];function i(e,i,r,o){var l="";switch(r){case"s":return o?"muutaman sekunnin":"muutama sekunti";case"ss":return o?"sekunnin":"sekuntia";case"m":return o?"minuutin":"minuutti";case"mm":l=o?"minuutin":"minuuttia";break;case"h":return o?"tunnin":"tunti";case"hh":l=o?"tunnin":"tuntia";break;case"d":return o?"p\xe4iv\xe4n":"p\xe4iv\xe4";case"dd":l=o?"p\xe4iv\xe4n":"p\xe4iv\xe4\xe4";break;case"M":return o?"kuukauden":"kuukausi";case"MM":l=o?"kuukauden":"kuukautta";break;case"y":return o?"vuoden":"vuosi";case"yy":l=o?"vuoden":"vuotta"}return function(e,i){return e<10?i?n[e]:t[e]:e}(e,o)+" "+l}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:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},nSY4:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("CGGv"),o=n("mmVS"),l=n("fWbP");t.bufferTime=function(e){var t=arguments.length,n=r.async;l.isScheduler(arguments[arguments.length-1])&&(n=arguments[arguments.length-1],t--);var i=null;t>=2&&(i=arguments[1]);var o=Number.POSITIVE_INFINITY;return t>=3&&(o=arguments[2]),function(t){return t.lift(new s(e,i,o,n))}};var s=function(){function e(e,t,n,i){this.bufferTimeSpan=e,this.bufferCreationInterval=t,this.maxBufferSize=n,this.scheduler=i}return e.prototype.call=function(e,t){return t.subscribe(new a(e,this.bufferTimeSpan,this.bufferCreationInterval,this.maxBufferSize,this.scheduler))},e}(),a=function(e){function t(t,n,i,r,o){e.call(this,t),this.bufferTimeSpan=n,this.bufferCreationInterval=i,this.maxBufferSize=r,this.scheduler=o,this.contexts=[];var l=this.openContext();if(this.timespanOnly=null==i||i<0,this.timespanOnly)this.add(l.closeAction=o.schedule(u,n,{subscriber:this,context:l,bufferTimeSpan:n}));else{var s={bufferTimeSpan:n,bufferCreationInterval:i,subscriber:this,scheduler:o};this.add(l.closeAction=o.schedule(d,n,{subscriber:this,context:l})),this.add(o.schedule(c,i,s))}}return i(t,e),t.prototype._next=function(e){for(var t,n=this.contexts,i=n.length,r=0;r0;){var i=t.shift();n.next(i.buffer)}e.prototype._complete.call(this)},t.prototype._unsubscribe=function(){this.contexts=null},t.prototype.onBufferFull=function(e){this.closeContext(e);var t=e.closeAction;if(t.unsubscribe(),this.remove(t),!this.closed&&this.timespanOnly){e=this.openContext();var n=this.bufferTimeSpan;this.add(e.closeAction=this.scheduler.schedule(u,n,{subscriber:this,context:e,bufferTimeSpan:n}))}},t.prototype.openContext=function(){var e=new function(){this.buffer=[]};return this.contexts.push(e),e},t.prototype.closeContext=function(e){this.destination.next(e.buffer);var t=this.contexts;(t?t.indexOf(e):-1)>=0&&t.splice(t.indexOf(e),1)},t}(o.Subscriber);function u(e){var t=e.subscriber,n=e.context;n&&t.closeContext(n),t.closed||(e.context=t.openContext(),e.context.closeAction=this.schedule(e,e.bufferTimeSpan))}function c(e){var t=e.bufferCreationInterval,n=e.bufferTimeSpan,i=e.subscriber,r=e.scheduler,o=i.openContext();i.closed||(i.add(o.closeAction=r.schedule(d,n,{subscriber:i,context:o})),this.schedule(e,t))}function d(e){e.subscriber.closeContext(e.context)}},nUok:function(e,t,n){var i=n("Bfm1"),r=n("S1l0"),o=n("1xPc"),l=n("W/R7"),s=n("XJEk"),a=n("tDVH"),u=n("oPwp"),c=n("9Xb6"),d=n("878l"),p=n("pPqQ"),h=n("bhBy"),f=n("gJB0"),m=n("Fbew"),g=n("L/5v"),v=n("+Ior"),y=n("rPFv"),_=n("SREN"),b=n("InFw"),w=n("x4CE"),x=n("vevO"),M=n("eUga");e.exports={Core:i,Plugin:r,StatusBar:h,ProgressBar:f,Informer:m,DragDrop:l,GoogleDrive:a,Dropbox:u,Instagram:c,Url:d,FileInput:s,Tus:g,XHRUpload:v,Transloadit:y,AwsS3:_,Dashboard:o,Webcam:p,Form:b,ThumbnailGenerator:w,GoldenRetriever:x,ReduxDevTools:M}},nXuP:function(e,t,n){(function(t){var i=n("P2cu"),r=n("5+9/"),o=n("pnVU"),l=n("QamB"),s=n("ARv7")("engine.io-client:polling-xhr");function a(){}function u(e){if(r.call(this,e),this.requestTimeout=e.requestTimeout,this.extraHeaders=e.extraHeaders,t.location){var n="https:"===location.protocol,i=location.port;i||(i=n?443:80),this.xd=e.hostname!==t.location.hostname||i!==e.port,this.xs=e.secure!==n}}function c(e){this.method=e.method||"GET",this.uri=e.uri,this.xd=!!e.xd,this.xs=!!e.xs,this.async=!1!==e.async,this.data=void 0!==e.data?e.data:null,this.agent=e.agent,this.isBinary=e.isBinary,this.supportsBinary=e.supportsBinary,this.enablesXDR=e.enablesXDR,this.requestTimeout=e.requestTimeout,this.pfx=e.pfx,this.key=e.key,this.passphrase=e.passphrase,this.cert=e.cert,this.ca=e.ca,this.ciphers=e.ciphers,this.rejectUnauthorized=e.rejectUnauthorized,this.extraHeaders=e.extraHeaders,this.create()}function d(){for(var e in c.requests)c.requests.hasOwnProperty(e)&&c.requests[e].abort()}e.exports=u,e.exports.Request=c,l(u,r),u.prototype.supportsBinary=!0,u.prototype.request=function(e){return(e=e||{}).uri=this.uri(),e.xd=this.xd,e.xs=this.xs,e.agent=this.agent||!1,e.supportsBinary=this.supportsBinary,e.enablesXDR=this.enablesXDR,e.pfx=this.pfx,e.key=this.key,e.passphrase=this.passphrase,e.cert=this.cert,e.ca=this.ca,e.ciphers=this.ciphers,e.rejectUnauthorized=this.rejectUnauthorized,e.requestTimeout=this.requestTimeout,e.extraHeaders=this.extraHeaders,new c(e)},u.prototype.doWrite=function(e,t){var n=this.request({method:"POST",data:e,isBinary:"string"!=typeof e&&void 0!==e}),i=this;n.on("success",t),n.on("error",function(e){i.onError("xhr post error",e)}),this.sendXhr=n},u.prototype.doPoll=function(){s("xhr poll");var e=this.request(),t=this;e.on("data",function(e){t.onData(e)}),e.on("error",function(e){t.onError("xhr poll error",e)}),this.pollXhr=e},o(c.prototype),c.prototype.create=function(){var e={agent:this.agent,xdomain:this.xd,xscheme:this.xs,enablesXDR:this.enablesXDR};e.pfx=this.pfx,e.key=this.key,e.passphrase=this.passphrase,e.cert=this.cert,e.ca=this.ca,e.ciphers=this.ciphers,e.rejectUnauthorized=this.rejectUnauthorized;var n=this.xhr=new i(e),r=this;try{s("xhr open %s: %s",this.method,this.uri),n.open(this.method,this.uri,this.async);try{if(this.extraHeaders)for(var o in n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0),this.extraHeaders)this.extraHeaders.hasOwnProperty(o)&&n.setRequestHeader(o,this.extraHeaders[o])}catch(e){}if("POST"===this.method)try{n.setRequestHeader("Content-type",this.isBinary?"application/octet-stream":"text/plain;charset=UTF-8")}catch(e){}try{n.setRequestHeader("Accept","*/*")}catch(e){}"withCredentials"in n&&(n.withCredentials=!0),this.requestTimeout&&(n.timeout=this.requestTimeout),this.hasXDR()?(n.onload=function(){r.onLoad()},n.onerror=function(){r.onError(n.responseText)}):n.onreadystatechange=function(){if(2===n.readyState)try{var e=n.getResponseHeader("Content-Type");r.supportsBinary&&"application/octet-stream"===e&&(n.responseType="arraybuffer")}catch(e){}4===n.readyState&&(200===n.status||1223===n.status?r.onLoad():setTimeout(function(){r.onError(n.status)},0))},s("xhr data %s",this.data),n.send(this.data)}catch(e){return void setTimeout(function(){r.onError(e)},0)}t.document&&(this.index=c.requestsCount++,c.requests[this.index]=this)},c.prototype.onSuccess=function(){this.emit("success"),this.cleanup()},c.prototype.onData=function(e){this.emit("data",e),this.onSuccess()},c.prototype.onError=function(e){this.emit("error",e),this.cleanup(!0)},c.prototype.cleanup=function(e){if("undefined"!=typeof this.xhr&&null!==this.xhr){if(this.hasXDR()?this.xhr.onload=this.xhr.onerror=a:this.xhr.onreadystatechange=a,e)try{this.xhr.abort()}catch(e){}t.document&&delete c.requests[this.index],this.xhr=null}},c.prototype.onLoad=function(){var e;try{var t;try{t=this.xhr.getResponseHeader("Content-Type")}catch(e){}e="application/octet-stream"===t&&this.xhr.response||this.xhr.responseText}catch(e){this.onError(e)}null!=e&&this.onData(e)},c.prototype.hasXDR=function(){return"undefined"!=typeof t.XDomainRequest&&!this.xs&&this.enablesXDR},c.prototype.abort=function(){this.cleanup()},c.requestsCount=0,c.requests={},t.document&&(t.attachEvent?t.attachEvent("onunload",d):t.addEventListener&&t.addEventListener("beforeunload",d,!1))}).call(t,n("DuR2"))},ncuP:function(e,t){var n=Object.assign||function(e){for(var t=1;t0?Math.floor(e):Math.ceil(e)};function j(e,t,n){return e instanceof P?e:v(e)?new P(e[0],e[1]):void 0===e||null===e?e:"object"==typeof e&&"x"in e&&"y"in e?new P(e.x,e.y):new P(e,t,n)}function R(e,t){if(e)for(var n=t?[e,t]:e,i=0,r=n.length;i=this.min.x&&n.x<=this.max.x&&t.y>=this.min.y&&n.y<=this.max.y},intersects:function(e){e=A(e);var t=this.min,n=this.max,i=e.min,r=e.max;return r.x>=t.x&&i.x<=n.x&&r.y>=t.y&&i.y<=n.y},overlaps:function(e){e=A(e);var t=this.min,n=this.max,i=e.min,r=e.max;return r.x>t.x&&i.xt.y&&i.y=i.lat&&n.lat<=r.lat&&t.lng>=i.lng&&n.lng<=r.lng},intersects:function(e){e=N(e);var t=this._southWest,n=this._northEast,i=e.getSouthWest(),r=e.getNorthEast();return r.lat>=t.lat&&i.lat<=n.lat&&r.lng>=t.lng&&i.lng<=n.lng},overlaps:function(e){e=N(e);var t=this._southWest,n=this._northEast,i=e.getSouthWest(),r=e.getNorthEast();return r.lat>t.lat&&i.latt.lng&&i.lng1,ke=!!document.createElement("canvas").getContext,Ce=!(!document.createElementNS||!J("svg").createSVGRect),Se=!Ce&&function(){try{var e=document.createElement("div");e.innerHTML='';var t=e.firstChild;return t.style.behavior="url(#default#VML)",t&&"object"==typeof t.adj}catch(e){return!1}}();function Ee(e){return navigator.userAgent.toLowerCase().indexOf(e)>=0}var Oe=(Object.freeze||Object)({ie:Q,ielt9:X,edge:ee,webkit:te,android:ne,android23:ie,androidStock:oe,opera:le,chrome:se,gecko:ae,safari:ue,phantom:ce,opera12:de,win:pe,ie3d:he,webkit3d:fe,gecko3d:me,any3d:ge,mobile:ve,mobileWebkit:ye,mobileWebkit3d:_e,msPointer:be,pointer:we,touch:xe,mobileOpera:Me,mobileGecko:Te,retina:Le,canvas:ke,svg:Ce,vml:Se}),De=be?"MSPointerDown":"pointerdown",Pe=be?"MSPointerMove":"pointermove",Ie=be?"MSPointerUp":"pointerup",je=be?"MSPointerCancel":"pointercancel",Re=["INPUT","SELECT","OPTION"],Ae={},Ye=!1,Ne=0;function Fe(e){Ae[e.pointerId]=e,Ne++}function Ve(e){Ae[e.pointerId]&&(Ae[e.pointerId]=e)}function He(e){delete Ae[e.pointerId],Ne--}function Ue(e,t){for(var n in e.touches=[],Ae)e.touches.push(Ae[n]);e.changedTouches=[e],t(e)}var Be=be?"MSPointerDown":we?"pointerdown":"touchstart",ze=be?"MSPointerUp":we?"pointerup":"touchend",We="_leaflet_";function qe(e,t,n){var i,r,o=!1,l=250;function s(e){var t;if(we){if(!ee||"mouse"===e.pointerType)return;t=Ne}else t=e.touches.length;if(!(t>1)){var n=Date.now(),s=n-(i||n);r=e.touches?e.touches[0]:e,o=s>0&&s<=l,i=n}}function a(e){if(o&&!r.cancelBubble){if(we){if(!ee||"mouse"===e.pointerType)return;var n,l,s={};for(l in r)s[l]=(n=r[l])&&n.bind?n.bind(r):n;r=s}r.type="dblclick",t(r),i=null}}return e[We+Be+n]=s,e[We+ze+n]=a,e[We+"dblclick"+n]=t,e.addEventListener(Be,s,!1),e.addEventListener(ze,a,!1),e.addEventListener("dblclick",t,!1),this}function Ge(e,t){var n=e[We+ze+t],i=e[We+"dblclick"+t];return e.removeEventListener(Be,e[We+Be+t],!1),e.removeEventListener(ze,n,!1),ee||e.removeEventListener("dblclick",i,!1),this}function Ze(e,t,n,i){if("object"==typeof t)for(var r in t)Ke(e,r,t[r],n);else for(var o=0,l=(t=p(t)).length;o100&&i<500||e.target._simulatedClick&&!e._simulated?it(e):(st=n,t(e))}(e,a)}),e.addEventListener(t,s,!1)):"attachEvent"in e&&e.attachEvent("on"+t,s):qe(e,s,o),e[Je]=e[Je]||{},e[Je][o]=s}function Qe(e,t,n,i){var r=t+l(n)+(i?"_"+l(i):""),o=e[Je]&&e[Je][r];if(!o)return this;we&&0===t.indexOf("touch")?function(e,t,n){var i=e["_leaflet_"+t+n];"touchstart"===t?e.removeEventListener(De,i,!1):"touchmove"===t?e.removeEventListener(Pe,i,!1):"touchend"===t&&(e.removeEventListener(Ie,i,!1),e.removeEventListener(je,i,!1))}(e,t,r):!xe||"dblclick"!==t||!Ge||we&&se?"removeEventListener"in e?e.removeEventListener("mousewheel"===t?"onwheel"in e?"wheel":"mousewheel":"mouseenter"===t?"mouseover":"mouseleave"===t?"mouseout":t,o,!1):"detachEvent"in e&&e.detachEvent("on"+t,o):Ge(e,r),e[Je][r]=null}function Xe(e){return e.stopPropagation?e.stopPropagation():e.originalEvent?e.originalEvent._stopped=!0:e.cancelBubble=!0,ct(e),this}function et(e){return Ke(e,"mousewheel",Xe),this}function tt(e){return Ze(e,"mousedown touchstart dblclick",Xe),Ke(e,"click",ut),this}function nt(e){return e.preventDefault?e.preventDefault():e.returnValue=!1,this}function it(e){return nt(e),Xe(e),this}function rt(e,t){if(!t)return new P(e.clientX,e.clientY);var n=t.getBoundingClientRect();return new P(e.clientX/(n.width/t.offsetWidth||1)-n.left-t.clientLeft,e.clientY/(n.height/t.offsetHeight||1)-n.top-t.clientTop)}var ot=pe&&se?2*window.devicePixelRatio:ae?window.devicePixelRatio:1;function lt(e){return ee?e.wheelDeltaY/2:e.deltaY&&0===e.deltaMode?-e.deltaY/ot:e.deltaY&&1===e.deltaMode?20*-e.deltaY:e.deltaY&&2===e.deltaMode?60*-e.deltaY:e.deltaX||e.deltaZ?0:e.wheelDelta?(e.wheelDeltaY||e.wheelDelta)/2:e.detail&&Math.abs(e.detail)<32765?20*-e.detail:e.detail?e.detail/-32765*60:0}var st,at={};function ut(e){at[e.type]=!0}function ct(e){var t=at[e.type];return at[e.type]=!1,t}function dt(e,t){var n=t.relatedTarget;if(!n)return!0;try{for(;n&&n!==e;)n=n.parentNode}catch(e){return!1}return n!==e}var pt,ht,ft,mt,gt,vt=(Object.freeze||Object)({on:Ze,off:$e,stopPropagation:Xe,disableScrollPropagation:et,disableClickPropagation:tt,preventDefault:nt,stop:it,getMousePosition:rt,getWheelDelta:lt,fakeStop:ut,skipped:ct,isExternalTarget:dt,addListener:Ze,removeListener:$e}),yt=jt(["transform","WebkitTransform","OTransform","MozTransform","msTransform"]),_t=jt(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),bt="webkitTransition"===_t||"OTransition"===_t?_t+"End":"transitionend";function wt(e){return"string"==typeof e?document.getElementById(e):e}function xt(e,t){var n=e.style[t]||e.currentStyle&&e.currentStyle[t];if((!n||"auto"===n)&&document.defaultView){var i=document.defaultView.getComputedStyle(e,null);n=i?i[t]:null}return"auto"===n?null:n}function Mt(e,t,n){var i=document.createElement(e);return i.className=t||"",n&&n.appendChild(i),i}function Tt(e){var t=e.parentNode;t&&t.removeChild(e)}function Lt(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function kt(e){var t=e.parentNode;t.lastChild!==e&&t.appendChild(e)}function Ct(e){var t=e.parentNode;t.firstChild!==e&&t.insertBefore(e,t.firstChild)}function St(e,t){if(void 0!==e.classList)return e.classList.contains(t);var n=Pt(e);return n.length>0&&new RegExp("(^|\\s)"+t+"(\\s|$)").test(n)}function Et(e,t){if(void 0!==e.classList)for(var n=p(t),i=0,r=n.length;ithis.options.maxZoom)?this.setZoom(e):this},panInsideBounds:function(e,t){this._enforcingBounds=!0;var n=this.getCenter(),i=this._limitCenter(n,this._zoom,N(e));return n.equals(i)||this.panTo(i,t),this._enforcingBounds=!1,this},invalidateSize:function(e){if(!this._loaded)return this;e=n({animate:!1,pan:!0},!0===e?{animate:!0}:e);var t=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var i=this.getSize(),o=t.divideBy(2).round(),l=i.divideBy(2).round(),s=o.subtract(l);return s.x||s.y?(e.animate&&e.pan?this.panBy(s):(e.pan&&this._rawPanBy(s),this.fire("move"),e.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(r(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:t,newSize:i})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(e){if(e=this._locateOptions=n({timeout:1e4,watch:!1},e),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var t=r(this._handleGeolocationResponse,this),i=r(this._handleGeolocationError,this);return e.watch?this._locationWatchId=navigator.geolocation.watchPosition(t,i,e):navigator.geolocation.getCurrentPosition(t,i,e),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(e){var t=e.code,n=e.message||(1===t?"permission denied":2===t?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:t,message:"Geolocation error: "+n+"."})},_handleGeolocationResponse:function(e){var t=new F(e.coords.latitude,e.coords.longitude),n=t.toBounds(e.coords.accuracy),i=this._locateOptions;if(i.setView){var r=this.getBoundsZoom(n);this.setView(t,i.maxZoom?Math.min(r,i.maxZoom):r)}var o={latlng:t,bounds:n,timestamp:e.timestamp};for(var l in e.coords)"number"==typeof e.coords[l]&&(o[l]=e.coords[l]);this.fire("locationfound",o)},addHandler:function(e,t){if(!t)return this;var n=this[e]=new t(this);return this._handlers.push(n),this.options[e]&&n.enable(),this},remove:function(){if(this._initEvents(!0),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(e){this._container._leaflet_id=void 0,this._containerId=void 0}var e;for(e in void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),Tt(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this._loaded&&this.fire("unload"),this._layers)this._layers[e].remove();for(e in this._panes)Tt(this._panes[e]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(e,t){var n=Mt("div","leaflet-pane"+(e?" leaflet-"+e.replace("Pane","")+"-pane":""),t||this._mapPane);return e&&(this._panes[e]=n),n},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var e=this.getPixelBounds();return new Y(this.unproject(e.getBottomLeft()),this.unproject(e.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(e,t,n){e=N(e),n=j(n||[0,0]);var i=this.getZoom()||0,r=this.getMinZoom(),o=this.getMaxZoom(),l=e.getNorthWest(),s=e.getSouthEast(),a=this.getSize().subtract(n),u=A(this.project(s,i),this.project(l,i)).getSize(),c=ge?this.options.zoomSnap:1,d=a.x/u.x,p=a.y/u.y,h=t?Math.max(d,p):Math.min(d,p);return i=this.getScaleZoom(h,i),c&&(i=Math.round(i/(c/100))*(c/100),i=t?Math.ceil(i/c)*c:Math.floor(i/c)*c),Math.max(r,Math.min(o,i))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new P(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(e,t){var n=this._getTopLeftPoint(e,t);return new R(n,n.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(e){return this.options.crs.getProjectedBounds(void 0===e?this.getZoom():e)},getPane:function(e){return"string"==typeof e?this._panes[e]:e},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(e,t){var n=this.options.crs;return t=void 0===t?this._zoom:t,n.scale(e)/n.scale(t)},getScaleZoom:function(e,t){var n=this.options.crs,i=n.zoom(e*n.scale(t=void 0===t?this._zoom:t));return isNaN(i)?1/0:i},project:function(e,t){return t=void 0===t?this._zoom:t,this.options.crs.latLngToPoint(V(e),t)},unproject:function(e,t){return t=void 0===t?this._zoom:t,this.options.crs.pointToLatLng(j(e),t)},layerPointToLatLng:function(e){var t=j(e).add(this.getPixelOrigin());return this.unproject(t)},latLngToLayerPoint:function(e){return this.project(V(e))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(e){return this.options.crs.wrapLatLng(V(e))},wrapLatLngBounds:function(e){return this.options.crs.wrapLatLngBounds(N(e))},distance:function(e,t){return this.options.crs.distance(V(e),V(t))},containerPointToLayerPoint:function(e){return j(e).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(e){return j(e).add(this._getMapPanePos())},containerPointToLatLng:function(e){var t=this.containerPointToLayerPoint(j(e));return this.layerPointToLatLng(t)},latLngToContainerPoint:function(e){return this.layerPointToContainerPoint(this.latLngToLayerPoint(V(e)))},mouseEventToContainerPoint:function(e){return rt(e,this._container)},mouseEventToLayerPoint:function(e){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(e))},mouseEventToLatLng:function(e){return this.layerPointToLatLng(this.mouseEventToLayerPoint(e))},_initContainer:function(e){var t=this._container=wt(e);if(!t)throw new Error("Map container not found.");if(t._leaflet_id)throw new Error("Map container is already initialized.");Ze(t,"scroll",this._onScroll,this),this._containerId=l(t)},_initLayout:function(){var e=this._container;this._fadeAnimated=this.options.fadeAnimation&&ge,Et(e,"leaflet-container"+(xe?" leaflet-touch":"")+(Le?" leaflet-retina":"")+(X?" leaflet-oldie":"")+(ue?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var t=xt(e,"position");"absolute"!==t&&"relative"!==t&&"fixed"!==t&&(e.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var e=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),At(this._mapPane,new P(0,0)),this.createPane("tilePane"),this.createPane("shadowPane"),this.createPane("overlayPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(Et(e.markerPane,"leaflet-zoom-hide"),Et(e.shadowPane,"leaflet-zoom-hide"))},_resetView:function(e,t){At(this._mapPane,new P(0,0));var n=!this._loaded;this._loaded=!0,t=this._limitZoom(t),this.fire("viewprereset");var i=this._zoom!==t;this._moveStart(i,!1)._move(e,t)._moveEnd(i),this.fire("viewreset"),n&&this.fire("load")},_moveStart:function(e,t){return e&&this.fire("zoomstart"),t||this.fire("movestart"),this},_move:function(e,t,n){void 0===t&&(t=this._zoom);var i=this._zoom!==t;return this._zoom=t,this._lastCenter=e,this._pixelOrigin=this._getNewPixelOrigin(e),(i||n&&n.pinch)&&this.fire("zoom",n),this.fire("move",n)},_moveEnd:function(e){return e&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return C(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(e){At(this._mapPane,this._getMapPanePos().subtract(e))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(e){this._targets={},this._targets[l(this._container)]=this;var t=e?$e:Ze;t(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress",this._handleDOMEvent,this),this.options.trackResize&&t(window,"resize",this._onResize,this),ge&&this.options.transform3DLimit&&(e?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){C(this._resizeRequest),this._resizeRequest=k(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var e=this._getMapPanePos();Math.max(Math.abs(e.x),Math.abs(e.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(e,t){for(var n,i=[],r="mouseout"===t||"mouseover"===t,o=e.target||e.srcElement,s=!1;o;){if((n=this._targets[l(o)])&&("click"===t||"preclick"===t)&&!e._simulated&&this._draggableMoved(n)){s=!0;break}if(n&&n.listens(t,!0)){if(r&&!dt(o,e))break;if(i.push(n),r)break}if(o===this._container)break;o=o.parentNode}return i.length||s||r||!dt(o,e)||(i=[this]),i},_handleDOMEvent:function(e){if(this._loaded&&!ct(e)){var t=e.type;"mousedown"!==t&&"keypress"!==t||Ht(e.target||e.srcElement),this._fireDOMEvent(e,t)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(e,t,i){if("click"===e.type){var r=n({},e);r.type="preclick",this._fireDOMEvent(r,r.type,i)}if(!e._stopped&&(i=(i||[]).concat(this._findEventTargets(e,t))).length){var o=i[0];"contextmenu"===t&&o.listens(t,!0)&&nt(e);var l={originalEvent:e};if("keypress"!==e.type){var s=o.getLatLng&&(!o._radius||o._radius<=10);l.containerPoint=s?this.latLngToContainerPoint(o.getLatLng()):this.mouseEventToContainerPoint(e),l.layerPoint=this.containerPointToLayerPoint(l.containerPoint),l.latlng=s?o.getLatLng():this.layerPointToLatLng(l.layerPoint)}for(var a=0;a0?Math.round(e-t)/2:Math.max(0,Math.ceil(e))-Math.max(0,Math.floor(t))},_limitZoom:function(e){var t=this.getMinZoom(),n=this.getMaxZoom(),i=ge?this.options.zoomSnap:1;return i&&(e=Math.round(e/i)*i),Math.max(t,Math.min(n,e))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){Ot(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(e,t){var n=this._getCenterOffset(e)._trunc();return!(!0!==(t&&t.animate)&&!this.getSize().contains(n)||(this.panBy(n,t),0))},_createAnimProxy:function(){var e=this._proxy=Mt("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(e),this.on("zoomanim",function(e){var t=yt,n=this._proxy.style[t];Rt(this._proxy,this.project(e.center,e.zoom),this.getZoomScale(e.zoom,1)),n===this._proxy.style[t]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",function(){var e=this.getCenter(),t=this.getZoom();Rt(this._proxy,this.project(e,t),this.getZoomScale(t,1))},this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){Tt(this._proxy),delete this._proxy},_catchTransitionEnd:function(e){this._animatingZoom&&e.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(e,t,n){if(this._animatingZoom)return!0;if(n=n||{},!this._zoomAnimated||!1===n.animate||this._nothingToAnimate()||Math.abs(t-this._zoom)>this.options.zoomAnimationThreshold)return!1;var i=this.getZoomScale(t),r=this._getCenterOffset(e)._divideBy(1-1/i);return!(!0!==n.animate&&!this.getSize().contains(r)||(k(function(){this._moveStart(!0,!1)._animateZoom(e,t,!0)},this),0))},_animateZoom:function(e,t,n,i){this._mapPane&&(n&&(this._animatingZoom=!0,this._animateToCenter=e,this._animateToZoom=t,Et(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:e,zoom:t,noUpdate:i}),setTimeout(r(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&Ot(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom),k(function(){this._moveEnd(!0)},this))}}),qt=E.extend({options:{position:"topright"},initialize:function(e){h(this,e)},getPosition:function(){return this.options.position},setPosition:function(e){var t=this._map;return t&&t.removeControl(this),this.options.position=e,t&&t.addControl(this),this},getContainer:function(){return this._container},addTo:function(e){this.remove(),this._map=e;var t=this._container=this.onAdd(e),n=this.getPosition(),i=e._controlCorners[n];return Et(t,"leaflet-control"),-1!==n.indexOf("bottom")?i.insertBefore(t,i.firstChild):i.appendChild(t),this},remove:function(){return this._map?(Tt(this._container),this.onRemove&&this.onRemove(this._map),this._map=null,this):this},_refocusOnMap:function(e){this._map&&e&&e.screenX>0&&e.screenY>0&&this._map.getContainer().focus()}}),Gt=function(e){return new qt(e)};Wt.include({addControl:function(e){return e.addTo(this),this},removeControl:function(e){return e.remove(),this},_initControlPos:function(){var e=this._controlCorners={},t="leaflet-",n=this._controlContainer=Mt("div",t+"control-container",this._container);function i(i,r){e[i+r]=Mt("div",t+i+" "+t+r,n)}i("top","left"),i("top","right"),i("bottom","left"),i("bottom","right")},_clearControlPos:function(){for(var e in this._controlCorners)Tt(this._controlCorners[e]);Tt(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var Zt=qt.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(e,t,n,i){return n1)?"":"none"),this._separator.style.display=t&&e?"":"none",this},_onLayerChange:function(e){this._handlingClick||this._update();var t=this._getLayer(l(e.target)),n=t.overlay?"add"===e.type?"overlayadd":"overlayremove":"add"===e.type?"baselayerchange":null;n&&this._map.fire(n,t)},_createRadioElement:function(e,t){var n='",i=document.createElement("div");return i.innerHTML=n,i.firstChild},_addItem:function(e){var t,n=document.createElement("label"),i=this._map.hasLayer(e.layer);e.overlay?((t=document.createElement("input")).type="checkbox",t.className="leaflet-control-layers-selector",t.defaultChecked=i):t=this._createRadioElement("leaflet-base-layers",i),this._layerControlInputs.push(t),t.layerId=l(e.layer),Ze(t,"click",this._onInputClick,this);var r=document.createElement("span");r.innerHTML=" "+e.name;var o=document.createElement("div");return n.appendChild(o),o.appendChild(t),o.appendChild(r),(e.overlay?this._overlaysList:this._baseLayersList).appendChild(n),this._checkDisabledLayers(),n},_onInputClick:function(){var e,t,n=this._layerControlInputs,i=[],r=[];this._handlingClick=!0;for(var o=n.length-1;o>=0;o--)t=this._getLayer((e=n[o]).layerId).layer,e.checked?i.push(t):e.checked||r.push(t);for(o=0;o=0;r--)t=this._getLayer((e=n[r]).layerId).layer,e.disabled=void 0!==t.options.minZoom&&it.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expand:function(){return this.expand()},_collapse:function(){return this.collapse()}}),Jt=qt.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"−",zoomOutTitle:"Zoom out"},onAdd:function(e){var t="leaflet-control-zoom",n=Mt("div",t+" leaflet-bar"),i=this.options;return this._zoomInButton=this._createButton(i.zoomInText,i.zoomInTitle,t+"-in",n,this._zoomIn),this._zoomOutButton=this._createButton(i.zoomOutText,i.zoomOutTitle,t+"-out",n,this._zoomOut),this._updateDisabled(),e.on("zoomend zoomlevelschange",this._updateDisabled,this),n},onRemove:function(e){e.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(e){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(e.shiftKey?3:1))},_createButton:function(e,t,n,i,r){var o=Mt("a",n,i);return o.innerHTML=e,o.href="#",o.title=t,o.setAttribute("role","button"),o.setAttribute("aria-label",t),tt(o),Ze(o,"click",it),Ze(o,"click",r,this),Ze(o,"click",this._refocusOnMap,this),o},_updateDisabled:function(){var e=this._map,t="leaflet-disabled";Ot(this._zoomInButton,t),Ot(this._zoomOutButton,t),(this._disabled||e._zoom===e.getMinZoom())&&Et(this._zoomOutButton,t),(this._disabled||e._zoom===e.getMaxZoom())&&Et(this._zoomInButton,t)}});Wt.mergeOptions({zoomControl:!0}),Wt.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new Jt,this.addControl(this.zoomControl))});var $t=qt.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(e){var t=Mt("div","leaflet-control-scale"),n=this.options;return this._addScales(n,"leaflet-control-scale-line",t),e.on(n.updateWhenIdle?"moveend":"move",this._update,this),e.whenReady(this._update,this),t},onRemove:function(e){e.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(e,t,n){e.metric&&(this._mScale=Mt("div",t,n)),e.imperial&&(this._iScale=Mt("div",t,n))},_update:function(){var e=this._map,t=e.getSize().y/2,n=e.distance(e.containerPointToLatLng([0,t]),e.containerPointToLatLng([this.options.maxWidth,t]));this._updateScales(n)},_updateScales:function(e){this.options.metric&&e&&this._updateMetric(e),this.options.imperial&&e&&this._updateImperial(e)},_updateMetric:function(e){var t=this._getRoundNum(e);this._updateScale(this._mScale,t<1e3?t+" m":t/1e3+" km",t/e)},_updateImperial:function(e){var t,n,i,r=3.2808399*e;r>5280?(n=this._getRoundNum(t=r/5280),this._updateScale(this._iScale,n+" mi",n/t)):(i=this._getRoundNum(r),this._updateScale(this._iScale,i+" ft",i/r))},_updateScale:function(e,t,n){e.style.width=Math.round(this.options.maxWidth*n)+"px",e.innerHTML=t},_getRoundNum:function(e){var t=Math.pow(10,(Math.floor(e)+"").length-1),n=e/t;return t*(n>=10?10:n>=5?5:n>=3?3:n>=2?2:1)}}),Kt=qt.extend({options:{position:"bottomright",prefix:'Leaflet'},initialize:function(e){h(this,e),this._attributions={}},onAdd:function(e){for(var t in e.attributionControl=this,this._container=Mt("div","leaflet-control-attribution"),tt(this._container),e._layers)e._layers[t].getAttribution&&this.addAttribution(e._layers[t].getAttribution());return this._update(),this._container},setPrefix:function(e){return this.options.prefix=e,this._update(),this},addAttribution:function(e){return e?(this._attributions[e]||(this._attributions[e]=0),this._attributions[e]++,this._update(),this):this},removeAttribution:function(e){return e?(this._attributions[e]&&(this._attributions[e]--,this._update()),this):this},_update:function(){if(this._map){var e=[];for(var t in this._attributions)this._attributions[t]&&e.push(t);var n=[];this.options.prefix&&n.push(this.options.prefix),e.length&&n.push(e.join(", ")),this._container.innerHTML=n.join(" | ")}}});Wt.mergeOptions({attributionControl:!0}),Wt.addInitHook(function(){this.options.attributionControl&&(new Kt).addTo(this)}),qt.Layers=Zt,qt.Zoom=Jt,qt.Scale=$t,qt.Attribution=Kt,Gt.layers=function(e,t,n){return new Zt(e,t,n)},Gt.zoom=function(e){return new Jt(e)},Gt.scale=function(e){return new $t(e)},Gt.attribution=function(e){return new Kt(e)};var Qt=E.extend({initialize:function(e){this._map=e},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Qt.addTo=function(e,t){return e.addHandler(t,this),this};var Xt,en={Events:O},tn=xe?"touchstart mousedown":"mousedown",nn={mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},rn={mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"},on=D.extend({options:{clickTolerance:3},initialize:function(e,t,n,i){h(this,i),this._element=e,this._dragStartTarget=t||e,this._preventOutline=n},enable:function(){this._enabled||(Ze(this._dragStartTarget,tn,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(on._dragging===this&&this.finishDrag(),$e(this._dragStartTarget,tn,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(e){if(!e._simulated&&this._enabled&&(this._moved=!1,!St(this._element,"leaflet-zoom-anim")&&!(on._dragging||e.shiftKey||1!==e.which&&1!==e.button&&!e.touches||(on._dragging=this,this._preventOutline&&Ht(this._element),Ft(),pt(),this._moving)))){this.fire("down");var t=e.touches?e.touches[0]:e;this._startPoint=new P(t.clientX,t.clientY),Ze(document,rn[e.type],this._onMove,this),Ze(document,nn[e.type],this._onUp,this)}},_onMove:function(e){if(!e._simulated&&this._enabled)if(e.touches&&e.touches.length>1)this._moved=!0;else{var t=e.touches&&1===e.touches.length?e.touches[0]:e,n=new P(t.clientX,t.clientY).subtract(this._startPoint);(n.x||n.y)&&(Math.abs(n.x)+Math.abs(n.y)u&&(l=s,u=a);u>i&&(n[l]=1,e(t,n,i,r,l),e(t,n,i,l,o))}(e,i,t,0,n-1);var r,o=[];for(r=0;rt&&(n.push(e[i]),r=i);var l,s,a,u;return rt.max.x&&(n|=2),e.yt.max.y&&(n|=8),n}function dn(e,t,n,i){var r,o=t.x,l=t.y,s=n.x-o,a=n.y-l,u=s*s+a*a;return u>0&&((r=((e.x-o)*s+(e.y-l)*a)/u)>1?(o=n.x,l=n.y):r>0&&(o+=s*r,l+=a*r)),s=e.x-o,a=e.y-l,i?s*s+a*a:new P(o,l)}function pn(e){return!v(e[0])||"object"!=typeof e[0][0]&&"undefined"!=typeof e[0][0]}function hn(e){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),pn(e)}var fn=(Object.freeze||Object)({simplify:ln,pointToSegmentDistance:sn,closestPointOnSegment:function(e,t,n){return dn(e,t,n)},clipSegment:an,_getEdgeIntersection:un,_getBitCode:cn,_sqClosestPointOnSegment:dn,isFlat:pn,_flat:hn});function mn(e,t,n){var i,r,o,l,s,a,u,c,d,p=[1,4,2,8];for(r=0,u=e.length;r1e-7;a++)t=o*Math.sin(s),t=Math.pow((1-t)/(1+t),o/2),s+=u=Math.PI/2-2*Math.atan(l*t)-s;return new F(s*n,e.x*n/i)}},_n=(Object.freeze||Object)({LonLat:vn,Mercator:yn,SphericalMercator:z}),bn=n({},B,{code:"EPSG:3395",projection:yn,transformation:function(){var e=.5/(Math.PI*yn.R);return q(e,.5,-e,.5)}()}),wn=n({},B,{code:"EPSG:4326",projection:vn,transformation:q(1/180,1,-1/180,.5)}),xn=n({},U,{projection:vn,transformation:q(1,0,-1,0),scale:function(e){return Math.pow(2,e)},zoom:function(e){return Math.log(e)/Math.LN2},distance:function(e,t){var n=t.lng-e.lng,i=t.lat-e.lat;return Math.sqrt(n*n+i*i)},infinite:!0});U.Earth=B,U.EPSG3395=bn,U.EPSG3857=G,U.EPSG900913=Z,U.EPSG4326=wn,U.Simple=xn;var Mn=D.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(e){return e.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(e){return e&&e.removeLayer(this),this},getPane:function(e){return this._map.getPane(e?this.options[e]||e:this.options.pane)},addInteractiveTarget:function(e){return this._map._targets[l(e)]=this,this},removeInteractiveTarget:function(e){return delete this._map._targets[l(e)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(e){var t=e.target;if(t.hasLayer(this)){if(this._map=t,this._zoomAnimated=t._zoomAnimated,this.getEvents){var n=this.getEvents();t.on(n,this),this.once("remove",function(){t.off(n,this)},this)}this.onAdd(t),this.getAttribution&&t.attributionControl&&t.attributionControl.addAttribution(this.getAttribution()),this.fire("add"),t.fire("layeradd",{layer:this})}}});Wt.include({addLayer:function(e){if(!e._layerAdd)throw new Error("The provided object is not a Layer.");var t=l(e);return this._layers[t]?this:(this._layers[t]=e,e._mapToAdd=this,e.beforeAdd&&e.beforeAdd(this),this.whenReady(e._layerAdd,e),this)},removeLayer:function(e){var t=l(e);return this._layers[t]?(this._loaded&&e.onRemove(this),e.getAttribution&&this.attributionControl&&this.attributionControl.removeAttribution(e.getAttribution()),delete this._layers[t],this._loaded&&(this.fire("layerremove",{layer:e}),e.fire("remove")),e._map=e._mapToAdd=null,this):this},hasLayer:function(e){return!!e&&l(e)in this._layers},eachLayer:function(e,t){for(var n in this._layers)e.call(t,this._layers[n]);return this},_addLayers:function(e){for(var t=0,n=(e=e?v(e)?e:[e]:[]).length;tthis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()t)return this._map.layerPointToLatLng([o.x-(l=(i-t)/n)*(o.x-r.x),o.y-l*(o.y-r.y)])},getBounds:function(){return this._bounds},addLatLng:function(e,t){return t=t||this._defaultShape(),e=V(e),t.push(e),this._bounds.extend(e),this.redraw()},_setLatLngs:function(e){this._bounds=new Y,this._latlngs=this._convertLatLngs(e)},_defaultShape:function(){return pn(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(e){for(var t=[],n=pn(e),i=0,r=e.length;i=2&&t[0]instanceof F&&t[0].equals(t[n-1])&&t.pop(),t},_setLatLngs:function(e){In.prototype._setLatLngs.call(this,e),pn(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return pn(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var e=this._renderer._bounds,t=this.options.weight,n=new P(t,t);if(e=new R(e.min.subtract(n),e.max.add(n)),this._parts=[],this._pxBounds&&this._pxBounds.intersects(e))if(this.options.noClip)this._parts=this._rings;else for(var i,r=0,o=this._rings.length;re.y!=(i=t[l]).y>e.y&&e.x<(i.x-n.x)*(e.y-n.y)/(i.y-n.y)+n.x&&(u=!u);return u||In.prototype._containsPoint.call(this,e,!0)}}),Rn=Ln.extend({initialize:function(e,t){h(this,t),this._layers={},e&&this.addData(e)},addData:function(e){var t,n,i,r=v(e)?e:e.features;if(r){for(t=0,n=r.length;t0?i:[t.src]}else{v(this._url)||(this._url=[this._url]),t.autoplay=!!this.options.autoplay,t.loop=!!this.options.loop;for(var l=0;li?(t.height=i+"px",Et(e,"leaflet-popup-scrolled")):Ot(e,"leaflet-popup-scrolled"),this._containerWidth=this._container.offsetWidth},_animateZoom:function(e){var t=this._map._latLngToNewLayerPoint(this._latlng,e.zoom,e.center),n=this._getAnchor();At(this._container,t.add(n))},_adjustPan:function(){if(!(!this.options.autoPan||this._map._panAnim&&this._map._panAnim._inProgress)){var e=this._map,t=parseInt(xt(this._container,"marginBottom"),10)||0,n=this._container.offsetHeight+t,i=this._containerWidth,r=new P(this._containerLeft,-n-this._containerBottom);r._add(Yt(this._container));var o=e.layerPointToContainerPoint(r),l=j(this.options.autoPanPadding),s=j(this.options.autoPanPaddingTopLeft||l),a=j(this.options.autoPanPaddingBottomRight||l),u=e.getSize(),c=0,d=0;o.x+i+a.x>u.x&&(c=o.x+i-u.x+a.x),o.x-c-s.x<0&&(c=o.x-s.x),o.y+n+a.y>u.y&&(d=o.y+n-u.y+a.y),o.y-d-s.y<0&&(d=o.y-s.y),(c||d)&&e.fire("autopanstart").panBy([c,d])}},_onCloseButtonClick:function(e){this._close(),it(e)},_getAnchor:function(){return j(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}});Wt.mergeOptions({closePopupOnClick:!0}),Wt.include({openPopup:function(e,t,n){return e instanceof Jn||(e=new Jn(n).setContent(e)),t&&e.setLatLng(t),this.hasLayer(e)?this:(this._popup&&this._popup.options.autoClose&&this.closePopup(),this._popup=e,this.addLayer(e))},closePopup:function(e){return e&&e!==this._popup||(e=this._popup,this._popup=null),e&&this.removeLayer(e),this}}),Mn.include({bindPopup:function(e,t){return e instanceof Jn?(h(e,t),this._popup=e,e._source=this):(this._popup&&!t||(this._popup=new Jn(t,this)),this._popup.setContent(e)),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(e,t){if(e instanceof Mn||(t=e,e=this),e instanceof Ln)for(var n in this._layers){e=this._layers[n];break}return t||(t=e.getCenter?e.getCenter():e.getLatLng()),this._popup&&this._map&&(this._popup._source=e,this._popup.update(),this._map.openPopup(this._popup,t)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(e){return this._popup&&(this._popup._map?this.closePopup():this.openPopup(e)),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(e){return this._popup&&this._popup.setContent(e),this},getPopup:function(){return this._popup},_openPopup:function(e){var t=e.layer||e.target;this._popup&&this._map&&(it(e),t instanceof On?this.openPopup(e.layer||e.target,e.latlng):this._map.hasLayer(this._popup)&&this._popup._source===t?this.closePopup():this.openPopup(t,e.latlng))},_movePopup:function(e){this._popup.setLatLng(e.latlng)},_onKeyPress:function(e){13===e.originalEvent.keyCode&&this._openPopup(e)}});var $n=Zn.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,interactive:!1,opacity:.9},onAdd:function(e){Zn.prototype.onAdd.call(this,e),this.setOpacity(this.options.opacity),e.fire("tooltipopen",{tooltip:this}),this._source&&this._source.fire("tooltipopen",{tooltip:this},!0)},onRemove:function(e){Zn.prototype.onRemove.call(this,e),e.fire("tooltipclose",{tooltip:this}),this._source&&this._source.fire("tooltipclose",{tooltip:this},!0)},getEvents:function(){var e=Zn.prototype.getEvents.call(this);return xe&&!this.options.permanent&&(e.preclick=this._close),e},_close:function(){this._map&&this._map.closeTooltip(this)},_initLayout:function(){this._contentNode=this._container=Mt("div","leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(e){var t=this._map,n=this._container,i=t.latLngToContainerPoint(t.getCenter()),r=t.layerPointToContainerPoint(e),o=this.options.direction,l=n.offsetWidth,s=n.offsetHeight,a=j(this.options.offset),u=this._getAnchor();"top"===o?e=e.add(j(-l/2+a.x,-s+a.y+u.y,!0)):"bottom"===o?e=e.subtract(j(l/2-a.x,-a.y,!0)):"center"===o?e=e.subtract(j(l/2+a.x,s/2-u.y+a.y,!0)):"right"===o||"auto"===o&&r.xthis.options.maxZoom||ni&&this._retainParent(r,o,l,i))},_retainChildren:function(e,t,n,i){for(var r=2*e;r<2*e+2;r++)for(var o=2*t;o<2*t+2;o++){var l=new P(r,o);l.z=n+1;var s=this._tileCoordsToKey(l),a=this._tiles[s];a&&a.active?a.retain=!0:(a&&a.loaded&&(a.retain=!0),n+1this.options.maxZoom||void 0!==this.options.minZoom&&r1)this._setView(e,n);else{for(var d=r.min.y;d<=r.max.y;d++)for(var p=r.min.x;p<=r.max.x;p++){var h=new P(p,d);if(h.z=this._tileZoom,this._isValidTile(h)){var f=this._tiles[this._tileCoordsToKey(h)];f?f.current=!0:l.push(h)}}if(l.sort(function(e,t){return e.distanceTo(o)-t.distanceTo(o)}),0!==l.length){this._loading||(this._loading=!0,this.fire("loading"));var m=document.createDocumentFragment();for(p=0;pn.max.x)||!t.wrapLat&&(e.yn.max.y))return!1}if(!this.options.bounds)return!0;var i=this._tileCoordsToBounds(e);return N(this.options.bounds).overlaps(i)},_keyToBounds:function(e){return this._tileCoordsToBounds(this._keyToTileCoords(e))},_tileCoordsToNwSe:function(e){var t=this._map,n=this.getTileSize(),i=e.scaleBy(n),r=i.add(n);return[t.unproject(i,e.z),t.unproject(r,e.z)]},_tileCoordsToBounds:function(e){var t=this._tileCoordsToNwSe(e),n=new Y(t[0],t[1]);return this.options.noWrap||(n=this._map.wrapLatLngBounds(n)),n},_tileCoordsToKey:function(e){return e.x+":"+e.y+":"+e.z},_keyToTileCoords:function(e){var t=e.split(":"),n=new P(+t[0],+t[1]);return n.z=+t[2],n},_removeTile:function(e){var t=this._tiles[e];t&&(oe||t.el.setAttribute("src",_),Tt(t.el),delete this._tiles[e],this.fire("tileunload",{tile:t.el,coords:this._keyToTileCoords(e)}))},_initTile:function(e){Et(e,"leaflet-tile");var t=this.getTileSize();e.style.width=t.x+"px",e.style.height=t.y+"px",e.onselectstart=u,e.onmousemove=u,X&&this.options.opacity<1&&It(e,this.options.opacity),ne&&!ie&&(e.style.WebkitBackfaceVisibility="hidden")},_addTile:function(e,t){var n=this._getTilePos(e),i=this._tileCoordsToKey(e),o=this.createTile(this._wrapCoords(e),r(this._tileReady,this,e));this._initTile(o),this.createTile.length<2&&k(r(this._tileReady,this,e,null,o)),At(o,n),this._tiles[i]={el:o,coords:e,current:!0},t.appendChild(o),this.fire("tileloadstart",{tile:o,coords:e})},_tileReady:function(e,t,n){if(this._map){t&&this.fire("tileerror",{error:t,tile:n,coords:e});var i=this._tileCoordsToKey(e);(n=this._tiles[i])&&(n.loaded=+new Date,this._map._fadeAnimated?(It(n.el,0),C(this._fadeFrame),this._fadeFrame=k(this._updateOpacity,this)):(n.active=!0,this._pruneTiles()),t||(Et(n.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:n.el,coords:e})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),X||!this._map._fadeAnimated?k(this._pruneTiles,this):setTimeout(r(this._pruneTiles,this),250)))}},_getTilePos:function(e){return e.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(e){var t=new P(this._wrapX?a(e.x,this._wrapX):e.x,this._wrapY?a(e.y,this._wrapY):e.y);return t.z=e.z,t},_pxBoundsToTileRange:function(e){var t=this.getTileSize();return new R(e.min.unscaleBy(t).floor(),e.max.unscaleBy(t).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var e in this._tiles)if(!this._tiles[e].loaded)return!1;return!0}}),Xn=Qn.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1},initialize:function(e,t){this._url=e,(t=h(this,t)).detectRetina&&Le&&t.maxZoom>0&&(t.tileSize=Math.floor(t.tileSize/2),t.zoomReverse?(t.zoomOffset--,t.minZoom++):(t.zoomOffset++,t.maxZoom--),t.minZoom=Math.max(0,t.minZoom)),"string"==typeof t.subdomains&&(t.subdomains=t.subdomains.split("")),ne||this.on("tileunload",this._onTileRemove)},setUrl:function(e,t){return this._url=e,t||this.redraw(),this},createTile:function(e,t){var n=document.createElement("img");return Ze(n,"load",r(this._tileOnLoad,this,t,n)),Ze(n,"error",r(this._tileOnError,this,t,n)),this.options.crossOrigin&&(n.crossOrigin=""),n.alt="",n.setAttribute("role","presentation"),n.src=this.getTileUrl(e),n},getTileUrl:function(e){var t={r:Le?"@2x":"",s:this._getSubdomain(e),x:e.x,y:e.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var i=this._globalTileRange.max.y-e.y;this.options.tms&&(t.y=i),t["-y"]=i}return g(this._url,n(t,this.options))},_tileOnLoad:function(e,t){X?setTimeout(r(e,this,null,t),0):e(null,t)},_tileOnError:function(e,t,n){var i=this.options.errorTileUrl;i&&t.getAttribute("src")!==i&&(t.src=i),e(n,t)},_onTileRemove:function(e){e.tile.onload=null},_getZoomForUrl:function(){var e=this._tileZoom;return this.options.zoomReverse&&(e=this.options.maxZoom-e),e+this.options.zoomOffset},_getSubdomain:function(e){var t=Math.abs(e.x+e.y)%this.options.subdomains.length;return this.options.subdomains[t]},_abortLoading:function(){var e,t;for(e in this._tiles)this._tiles[e].coords.z!==this._tileZoom&&((t=this._tiles[e].el).onload=u,t.onerror=u,t.complete||(t.src=_,Tt(t),delete this._tiles[e]))}});function ei(e,t){return new Xn(e,t)}var ti=Xn.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(e,t){this._url=e;var i=n({},this.defaultWmsParams);for(var r in t)r in this.options||(i[r]=t[r]);var o=(t=h(this,t)).detectRetina&&Le?2:1,l=this.getTileSize();i.width=l.x*o,i.height=l.y*o,this.wmsParams=i},onAdd:function(e){this._crs=this.options.crs||e.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version),this.wmsParams[this._wmsVersion>=1.3?"crs":"srs"]=this._crs.code,Xn.prototype.onAdd.call(this,e)},getTileUrl:function(e){var t=this._tileCoordsToNwSe(e),n=this._crs,i=A(n.project(t[0]),n.project(t[1])),r=i.min,o=i.max,l=(this._wmsVersion>=1.3&&this._crs===wn?[r.y,r.x,o.y,o.x]:[r.x,r.y,o.x,o.y]).join(","),s=L.TileLayer.prototype.getTileUrl.call(this,e);return s+f(this.wmsParams,s,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+l},setParams:function(e,t){return n(this.wmsParams,e),t||this.redraw(),this}});Xn.WMS=ti,ei.wms=function(e,t){return new ti(e,t)};var ni=Mn.extend({options:{padding:.1,tolerance:0},initialize:function(e){h(this,e),l(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&Et(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var e={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(e.zoomanim=this._onAnimZoom),e},_onAnimZoom:function(e){this._updateTransform(e.center,e.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(e,t){var n=this._map.getZoomScale(t,this._zoom),i=Yt(this._container),r=this._map.getSize().multiplyBy(.5+this.options.padding),o=this._map.project(this._center,t),l=this._map.project(e,t).subtract(o),s=r.multiplyBy(-n).add(i).add(r).subtract(l);ge?Rt(this._container,s,n):At(this._container,s)},_reset:function(){for(var e in this._update(),this._updateTransform(this._center,this._zoom),this._layers)this._layers[e]._reset()},_onZoomEnd:function(){for(var e in this._layers)this._layers[e]._project()},_updatePaths:function(){for(var e in this._layers)this._layers[e]._update()},_update:function(){var e=this.options.padding,t=this._map.getSize(),n=this._map.containerPointToLayerPoint(t.multiplyBy(-e)).round();this._bounds=new R(n,n.add(t.multiplyBy(1+2*e)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),ii=ni.extend({getEvents:function(){var e=ni.prototype.getEvents.call(this);return e.viewprereset=this._onViewPreReset,e},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){ni.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var e=this._container=document.createElement("canvas");Ze(e,"mousemove",s(this._onMouseMove,32,this),this),Ze(e,"click dblclick mousedown mouseup contextmenu",this._onClick,this),Ze(e,"mouseout",this._handleMouseOut,this),this._ctx=e.getContext("2d")},_destroyContainer:function(){delete this._ctx,Tt(this._container),$e(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){for(var e in this._redrawBounds=null,this._layers)this._layers[e]._update();this._redraw()}},_update:function(){if(!this._map._animatingZoom||!this._bounds){this._drawnLayers={},ni.prototype._update.call(this);var e=this._bounds,t=this._container,n=e.getSize(),i=Le?2:1;At(t,e.min),t.width=i*n.x,t.height=i*n.y,t.style.width=n.x+"px",t.style.height=n.y+"px",Le&&this._ctx.scale(2,2),this._ctx.translate(-e.min.x,-e.min.y),this.fire("update")}},_reset:function(){ni.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(e){this._updateDashArray(e),this._layers[l(e)]=e;var t=e._order={layer:e,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=t),this._drawLast=t,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(e){this._requestRedraw(e)},_removePath:function(e){var t=e._order,n=t.next,i=t.prev;n?n.prev=i:this._drawLast=i,i?i.next=n:this._drawFirst=n,delete e._order,delete this._layers[L.stamp(e)],this._requestRedraw(e)},_updatePath:function(e){this._extendRedrawBounds(e),e._project(),e._update(),this._requestRedraw(e)},_updateStyle:function(e){this._updateDashArray(e),this._requestRedraw(e)},_updateDashArray:function(e){if(e.options.dashArray){var t,n=e.options.dashArray.split(","),i=[];for(t=0;t')}}catch(e){return function(e){return document.createElement("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}(),li={_initContainer:function(){this._container=Mt("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(ni.prototype._update.call(this),this.fire("update"))},_initPath:function(e){var t=e._container=oi("shape");Et(t,"leaflet-vml-shape "+(this.options.className||"")),t.coordsize="1 1",e._path=oi("path"),t.appendChild(e._path),this._updateStyle(e),this._layers[l(e)]=e},_addPath:function(e){var t=e._container;this._container.appendChild(t),e.options.interactive&&e.addInteractiveTarget(t)},_removePath:function(e){var t=e._container;Tt(t),e.removeInteractiveTarget(t),delete this._layers[l(e)]},_updateStyle:function(e){var t=e._stroke,n=e._fill,i=e.options,r=e._container;r.stroked=!!i.stroke,r.filled=!!i.fill,i.stroke?(t||(t=e._stroke=oi("stroke")),r.appendChild(t),t.weight=i.weight+"px",t.color=i.color,t.opacity=i.opacity,t.dashStyle=i.dashArray?v(i.dashArray)?i.dashArray.join(" "):i.dashArray.replace(/( *, *)/g," "):"",t.endcap=i.lineCap.replace("butt","flat"),t.joinstyle=i.lineJoin):t&&(r.removeChild(t),e._stroke=null),i.fill?(n||(n=e._fill=oi("fill")),r.appendChild(n),n.color=i.fillColor||i.color,n.opacity=i.fillOpacity):n&&(r.removeChild(n),e._fill=null)},_updateCircle:function(e){var t=e._point.round(),n=Math.round(e._radius),i=Math.round(e._radiusY||n);this._setPath(e,e._empty()?"M0 0":"AL "+t.x+","+t.y+" "+n+","+i+" 0,23592600")},_setPath:function(e,t){e._path.v=t},_bringToFront:function(e){kt(e._container)},_bringToBack:function(e){Ct(e._container)}},si=Se?oi:J,ai=ni.extend({getEvents:function(){var e=ni.prototype.getEvents.call(this);return e.zoomstart=this._onZoomStart,e},_initContainer:function(){this._container=si("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=si("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){Tt(this._container),$e(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_onZoomStart:function(){this._update()},_update:function(){if(!this._map._animatingZoom||!this._bounds){ni.prototype._update.call(this);var e=this._bounds,t=e.getSize(),n=this._container;this._svgSize&&this._svgSize.equals(t)||(this._svgSize=t,n.setAttribute("width",t.x),n.setAttribute("height",t.y)),At(n,e.min),n.setAttribute("viewBox",[e.min.x,e.min.y,t.x,t.y].join(" ")),this.fire("update")}},_initPath:function(e){var t=e._path=si("path");e.options.className&&Et(t,e.options.className),e.options.interactive&&Et(t,"leaflet-interactive"),this._updateStyle(e),this._layers[l(e)]=e},_addPath:function(e){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(e._path),e.addInteractiveTarget(e._path)},_removePath:function(e){Tt(e._path),e.removeInteractiveTarget(e._path),delete this._layers[l(e)]},_updatePath:function(e){e._project(),e._update()},_updateStyle:function(e){var t=e._path,n=e.options;t&&(n.stroke?(t.setAttribute("stroke",n.color),t.setAttribute("stroke-opacity",n.opacity),t.setAttribute("stroke-width",n.weight),t.setAttribute("stroke-linecap",n.lineCap),t.setAttribute("stroke-linejoin",n.lineJoin),n.dashArray?t.setAttribute("stroke-dasharray",n.dashArray):t.removeAttribute("stroke-dasharray"),n.dashOffset?t.setAttribute("stroke-dashoffset",n.dashOffset):t.removeAttribute("stroke-dashoffset")):t.setAttribute("stroke","none"),n.fill?(t.setAttribute("fill",n.fillColor||n.color),t.setAttribute("fill-opacity",n.fillOpacity),t.setAttribute("fill-rule",n.fillRule||"evenodd")):t.setAttribute("fill","none"))},_updatePoly:function(e,t){this._setPath(e,$(e._parts,t))},_updateCircle:function(e){var t=e._point,n=Math.max(Math.round(e._radius),1),i="a"+n+","+(Math.max(Math.round(e._radiusY),1)||n)+" 0 1,0 ",r=e._empty()?"M0 0":"M"+(t.x-n)+","+t.y+i+2*n+",0 "+i+2*-n+",0 ";this._setPath(e,r)},_setPath:function(e,t){e._path.setAttribute("d",t)},_bringToFront:function(e){kt(e._path)},_bringToBack:function(e){Ct(e._path)}});function ui(e){return Ce||Se?new ai(e):null}Se&&ai.include(li),Wt.include({getRenderer:function(e){var t=e.options.renderer||this._getPaneRenderer(e.options.pane)||this.options.renderer||this._renderer;return t||(t=this._renderer=this.options.preferCanvas&&ri()||ui()),this.hasLayer(t)||this.addLayer(t),t},_getPaneRenderer:function(e){if("overlayPane"===e||void 0===e)return!1;var t=this._paneRenderers[e];return void 0===t&&(t=ai&&ui({pane:e})||ii&&ri({pane:e}),this._paneRenderers[e]=t),t}});var ci=jn.extend({initialize:function(e,t){jn.prototype.initialize.call(this,this._boundsToLatLngs(e),t)},setBounds:function(e){return this.setLatLngs(this._boundsToLatLngs(e))},_boundsToLatLngs:function(e){return[(e=N(e)).getSouthWest(),e.getNorthWest(),e.getNorthEast(),e.getSouthEast()]}});ai.create=si,ai.pointsToPath=$,Rn.geometryToLayer=An,Rn.coordsToLatLng=Yn,Rn.coordsToLatLngs=Nn,Rn.latLngToCoords=Fn,Rn.latLngsToCoords=Vn,Rn.getFeature=Hn,Rn.asFeature=Un,Wt.mergeOptions({boxZoom:!0});var di=Qt.extend({initialize:function(e){this._map=e,this._container=e._container,this._pane=e._panes.overlayPane,this._resetStateTimeout=0,e.on("unload",this._destroy,this)},addHooks:function(){Ze(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){$e(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){Tt(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(e){if(!e.shiftKey||1!==e.which&&1!==e.button)return!1;this._clearDeferredResetState(),this._resetState(),pt(),Ft(),this._startPoint=this._map.mouseEventToContainerPoint(e),Ze(document,{contextmenu:it,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(e){this._moved||(this._moved=!0,this._box=Mt("div","leaflet-zoom-box",this._container),Et(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(e);var t=new R(this._point,this._startPoint),n=t.getSize();At(this._box,t.min),this._box.style.width=n.x+"px",this._box.style.height=n.y+"px"},_finish:function(){this._moved&&(Tt(this._box),Ot(this._container,"leaflet-crosshair")),ht(),Vt(),$e(document,{contextmenu:it,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(e){if((1===e.which||1===e.button)&&(this._finish(),this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(r(this._resetState,this),0);var t=new Y(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(t).fire("boxzoomend",{boxZoomBounds:t})}},_onKeyDown:function(e){27===e.keyCode&&this._finish()}});Wt.addInitHook("addHandler","boxZoom",di),Wt.mergeOptions({doubleClickZoom:!0});var pi=Qt.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(e){var t=this._map,n=t.getZoom(),i=t.options.zoomDelta,r=e.originalEvent.shiftKey?n-i:n+i;"center"===t.options.doubleClickZoom?t.setZoom(r):t.setZoomAround(e.containerPoint,r)}});Wt.addInitHook("addHandler","doubleClickZoom",pi),Wt.mergeOptions({dragging:!0,inertia:!ie,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var hi=Qt.extend({addHooks:function(){if(!this._draggable){var e=this._map;this._draggable=new on(e._mapPane,e._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),e.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),e.on("zoomend",this._onZoomEnd,this),e.whenReady(this._onZoomEnd,this))}Et(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){Ot(this._map._container,"leaflet-grab"),Ot(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var e=this._map;if(e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var t=N(this._map.options.maxBounds);this._offsetLimit=A(this._map.latLngToContainerPoint(t.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(t.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(e){if(this._map.options.inertia){var t=this._lastTime=+new Date,n=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(n),this._times.push(t),this._prunePositions(t)}this._map.fire("move",e).fire("drag",e)},_prunePositions:function(e){for(;this._positions.length>1&&e-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var e=this._map.getSize().divideBy(2),t=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=t.subtract(e).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(e,t){return e-(e-t)*this._viscosity},_onPreDragLimit:function(){if(this._viscosity&&this._offsetLimit){var e=this._draggable._newPos.subtract(this._draggable._startPos),t=this._offsetLimit;e.xt.max.x&&(e.x=this._viscousLimit(e.x,t.max.x)),e.y>t.max.y&&(e.y=this._viscousLimit(e.y,t.max.y)),this._draggable._newPos=this._draggable._startPos.add(e)}},_onPreDragWrap:function(){var e=this._worldWidth,t=Math.round(e/2),n=this._initialWorldOffset,i=this._draggable._newPos.x,r=(i-t+n)%e+t-n,o=(i+t+n)%e-t-n,l=Math.abs(r+n)0?r:-r))-t;this._delta=0,this._startTime=null,o&&("center"===e.options.scrollWheelZoom?e.setZoom(t+o):e.setZoomAround(this._lastMousePos,t+o))}});Wt.addInitHook("addHandler","scrollWheelZoom",mi),Wt.mergeOptions({tap:!0,tapTolerance:15});var gi=Qt.extend({addHooks:function(){Ze(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){$e(this._map._container,"touchstart",this._onDown,this)},_onDown:function(e){if(e.touches){if(nt(e),this._fireClick=!0,e.touches.length>1)return this._fireClick=!1,void clearTimeout(this._holdTimeout);var t=e.touches[0],n=t.target;this._startPos=this._newPos=new P(t.clientX,t.clientY),n.tagName&&"a"===n.tagName.toLowerCase()&&Et(n,"leaflet-active"),this._holdTimeout=setTimeout(r(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent("contextmenu",t))},this),1e3),this._simulateEvent("mousedown",t),Ze(document,{touchmove:this._onMove,touchend:this._onUp},this)}},_onUp:function(e){if(clearTimeout(this._holdTimeout),$e(document,{touchmove:this._onMove,touchend:this._onUp},this),this._fireClick&&e&&e.changedTouches){var t=e.changedTouches[0],n=t.target;n&&n.tagName&&"a"===n.tagName.toLowerCase()&&Ot(n,"leaflet-active"),this._simulateEvent("mouseup",t),this._isTapValid()&&this._simulateEvent("click",t)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(e){var t=e.touches[0];this._newPos=new P(t.clientX,t.clientY),this._simulateEvent("mousemove",t)},_simulateEvent:function(e,t){var n=document.createEvent("MouseEvents");n._simulated=!0,t.target._simulatedClick=!0,n.initMouseEvent(e,!0,!0,window,1,t.screenX,t.screenY,t.clientX,t.clientY,!1,!1,!1,!1,0,null),t.target.dispatchEvent(n)}});xe&&!we&&Wt.addInitHook("addHandler","tap",gi),Wt.mergeOptions({touchZoom:xe&&!ie,bounceAtZoomLimits:!0});var vi=Qt.extend({addHooks:function(){Et(this._map._container,"leaflet-touch-zoom"),Ze(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){Ot(this._map._container,"leaflet-touch-zoom"),$e(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(e){var t=this._map;if(e.touches&&2===e.touches.length&&!t._animatingZoom&&!this._zooming){var n=t.mouseEventToContainerPoint(e.touches[0]),i=t.mouseEventToContainerPoint(e.touches[1]);this._centerPoint=t.getSize()._divideBy(2),this._startLatLng=t.containerPointToLatLng(this._centerPoint),"center"!==t.options.touchZoom&&(this._pinchStartLatLng=t.containerPointToLatLng(n.add(i)._divideBy(2))),this._startDist=n.distanceTo(i),this._startZoom=t.getZoom(),this._moved=!1,this._zooming=!0,t._stop(),Ze(document,"touchmove",this._onTouchMove,this),Ze(document,"touchend",this._onTouchEnd,this),nt(e)}},_onTouchMove:function(e){if(e.touches&&2===e.touches.length&&this._zooming){var t=this._map,n=t.mouseEventToContainerPoint(e.touches[0]),i=t.mouseEventToContainerPoint(e.touches[1]),o=n.distanceTo(i)/this._startDist;if(this._zoom=t.getScaleZoom(o,this._startZoom),!t.options.bounceAtZoomLimits&&(this._zoomt.getMaxZoom()&&o>1)&&(this._zoom=t._limitZoom(this._zoom)),"center"===t.options.touchZoom){if(this._center=this._startLatLng,1===o)return}else{var l=n._add(i)._divideBy(2)._subtract(this._centerPoint);if(1===o&&0===l.x&&0===l.y)return;this._center=t.unproject(t.project(this._pinchStartLatLng,this._zoom).subtract(l),this._zoom)}this._moved||(t._moveStart(!0,!1),this._moved=!0),C(this._animRequest);var s=r(t._move,t,this._center,this._zoom,{pinch:!0,round:!1});this._animRequest=k(s,this,!0),nt(e)}},_onTouchEnd:function(){this._moved&&this._zooming?(this._zooming=!1,C(this._animRequest),$e(document,"touchmove",this._onTouchMove),$e(document,"touchend",this._onTouchEnd),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))):this._zooming=!1}});Wt.addInitHook("addHandler","touchZoom",vi),Wt.BoxZoom=di,Wt.DoubleClickZoom=pi,Wt.Drag=hi,Wt.Keyboard=fi,Wt.ScrollWheelZoom=mi,Wt.Tap=gi,Wt.TouchZoom=vi;var yi=window.L;window.L=e,Object.freeze=t,e.version="1.3.1",e.noConflict=function(){return window.L=yi,this},e.Control=qt,e.control=Gt,e.Browser=Oe,e.Evented=D,e.Mixin=en,e.Util=S,e.Class=E,e.Handler=Qt,e.extend=n,e.bind=r,e.stamp=l,e.setOptions=h,e.DomEvent=vt,e.DomUtil=Bt,e.PosAnimation=zt,e.Draggable=on,e.LineUtil=fn,e.PolyUtil=gn,e.Point=P,e.point=j,e.Bounds=R,e.bounds=A,e.Transformation=W,e.transformation=q,e.Projection=_n,e.LatLng=F,e.latLng=V,e.LatLngBounds=Y,e.latLngBounds=N,e.CRS=U,e.GeoJSON=Rn,e.geoJSON=zn,e.geoJson=Wn,e.Layer=Mn,e.LayerGroup=Tn,e.layerGroup=function(e,t){return new Tn(e,t)},e.FeatureGroup=Ln,e.featureGroup=function(e){return new Ln(e)},e.ImageOverlay=qn,e.imageOverlay=function(e,t,n){return new qn(e,t,n)},e.VideoOverlay=Gn,e.videoOverlay=function(e,t,n){return new Gn(e,t,n)},e.DivOverlay=Zn,e.Popup=Jn,e.popup=function(e,t){return new Jn(e,t)},e.Tooltip=$n,e.tooltip=function(e,t){return new $n(e,t)},e.Icon=kn,e.icon=function(e){return new kn(e)},e.DivIcon=Kn,e.divIcon=function(e){return new Kn(e)},e.Marker=En,e.marker=function(e,t){return new En(e,t)},e.TileLayer=Xn,e.tileLayer=ei,e.GridLayer=Qn,e.gridLayer=function(e){return new Qn(e)},e.SVG=ai,e.svg=ui,e.Renderer=ni,e.Canvas=ii,e.canvas=ri,e.Path=On,e.CircleMarker=Dn,e.circleMarker=function(e,t){return new Dn(e,t)},e.Circle=Pn,e.circle=function(e,t,n){return new Pn(e,t,n)},e.Polyline=In,e.polyline=function(e,t){return new In(e,t)},e.Polygon=jn,e.polygon=function(e,t){return new jn(e,t)},e.Rectangle=ci,e.rectangle=function(e,t){return new ci(e,t)},e.Map=Wt,e.map=function(e,t){return new Wt(e,t)}}(t)},nsuO:function(e,t,n){"use strict";var i=n("rCTf"),r=n("AZSN");i.Observable.prototype.buffer=r.buffer},ntHu:function(e,t,n){!function(e){"use strict";function t(e,t,n){var i,r;return"m"===n?t?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443":"h"===n?t?"\u0433\u043e\u0434\u0438\u043d\u0430":"\u0433\u043e\u0434\u0438\u043d\u0443":e+" "+(i=+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"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}function n(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 n={nominative:"\u043d\u0435\u0434\u0456\u043b\u044f_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a_\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a_\u0441\u0435\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u044f_\u0441\u0443\u0431\u043e\u0442\u0430".split("_"),accusative:"\u043d\u0435\u0434\u0456\u043b\u044e_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a_\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a_\u0441\u0435\u0440\u0435\u0434\u0443_\u0447\u0435\u0442\u0432\u0435\u0440_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u044e_\u0441\u0443\u0431\u043e\u0442\u0443".split("_"),genitive:"\u043d\u0435\u0434\u0456\u043b\u0456_\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043a\u0430_\u0432\u0456\u0432\u0442\u043e\u0440\u043a\u0430_\u0441\u0435\u0440\u0435\u0434\u0438_\u0447\u0435\u0442\u0432\u0435\u0440\u0433\u0430_\u043f\u2019\u044f\u0442\u043d\u0438\u0446\u0456_\u0441\u0443\u0431\u043e\u0442\u0438".split("_")};return e?n[/(\[[\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()]:n.nominative},weekdaysShort:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),weekdaysMin:"\u043d\u0434_\u043f\u043d_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043f\u0442_\u0441\u0431".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0440.",LLL:"D MMMM YYYY \u0440., HH:mm",LLLL:"dddd, D MMMM YYYY \u0440., HH:mm"},calendar:{sameDay:n("[\u0421\u044c\u043e\u0433\u043e\u0434\u043d\u0456 "),nextDay:n("[\u0417\u0430\u0432\u0442\u0440\u0430 "),lastDay:n("[\u0412\u0447\u043e\u0440\u0430 "),nextWeek:n("[\u0423] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n("[\u041c\u0438\u043d\u0443\u043b\u043e\u0457] dddd [").call(this);case 1:case 2:case 4:return n("[\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,n){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}})}(n("PJh5"))},nw3t:function(e,t,n){var i=n("p0bc");e.exports=function(e,t,n){"__proto__"==t&&i?i(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}},o0Nj:function(e,t,n){"use strict";function i(e,t,n){function i(e){return e&&e.indexOf("###")>-1?e.replace(/###/g,"."):e}for(var r="string"!=typeof t?[].concat(t):t.split(".");r.length>1;){if(!e)return{};var o=i(r.shift());!e[o]&&n&&(e[o]=new n),e=e[o]}return e?{obj:e,k:i(r.shift())}:{}}Object.defineProperty(t,"__esModule",{value:!0}),t.makeString=function(e){return null==e?"":""+e},t.copy=function(e,t,n){e.forEach(function(e){t[e]&&(n[e]=t[e])})},t.setPath=function(e,t,n){var r=i(e,t,Object);r.obj[r.k]=n},t.pushPath=function(e,t,n,r){var o=i(e,t,Object),l=o.obj,s=o.k;l[s]=l[s]||[],r&&(l[s]=l[s].concat(n)),r||l[s].push(n)},t.getPath=function(e,t){var n=i(e,t),r=n.obj;return r?r[n.k]:void 0},t.deepExtend=function e(t,n,i){for(var r in n)r in t?"string"==typeof t[r]||t[r]instanceof String||"string"==typeof n[r]||n[r]instanceof String?i&&(t[r]=n[r]):e(t[r],n[r],i):t[r]=n[r];return t},t.regexEscape=function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")},t.escape=function(e){return"string"==typeof e?e.replace(/[&<>"'\/]/g,function(e){return r[e]}):e};var r={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"}},o2mx:function(e,t,n){var i=n("NkRn"),r=n("Hxdr"),o=n("NGEn"),l=n("6MiT"),s=i?i.prototype:void 0,a=s?s.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(o(t))return r(t,e)+"";if(l(t))return a?a.call(t):"";var n=t+"";return"0"==n&&1/t==-1/0?"-0":n}},oBYf:function(e,t,n){"use strict";var i=n("ANGw");t.concatMap=function(e,t){return i.mergeMap(e,t,1)}},oCzW:function(e,t,n){!function(e){"use strict";e.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\u010bembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_\u0120un_Lul_Aww_Set_Ott_Nov_Di\u010b".split("_"),weekdays:"Il-\u0126add_It-Tnejn_It-Tlieta_L-Erbg\u0127a_Il-\u0126amis_Il-\u0120img\u0127a_Is-Sibt".split("_"),weekdaysShort:"\u0126ad_Tne_Tli_Erb_\u0126am_\u0120im_Sib".split("_"),weekdaysMin:"\u0126a_Tn_Tl_Er_\u0126a_\u0120i_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[G\u0127ada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-biera\u0127 fil-]LT",lastWeek:"dddd [li g\u0127adda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f\u2019 %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"sieg\u0127a",hh:"%d sieg\u0127at",d:"\u0121urnata",dd:"%d \u0121ranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}\xba/,ordinal:"%d\xba",week:{dow:1,doy:4}})}(n("PJh5"))},oFPI:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=Object.assign||function(e){for(var t=1;t-1){var r=e.split(n);i=r[0],e=r[1]}return"string"==typeof i&&(i=[i]),{key:e,namespaces:i}},t.prototype.translate=function(e){var t=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];if("object"!==("undefined"==typeof t?"undefined":r(t))?t=this.options.overloadTranslationOptionHandler(arguments):"v1"===this.options.compatibilityAPI&&(t=a.convertTOptions(t)),void 0===e||null===e||""===e)return"";"number"==typeof e&&(e=String(e)),"string"==typeof e&&(e=[e]);var n=t.lng||this.language;if(n&&"cimode"===n.toLowerCase())return e[e.length-1];var o=t.keySeparator||this.options.keySeparator||".",l=this.extractFromKey(e[e.length-1],t),s=l.key,u=l.namespaces,c=u[u.length-1],d=this.resolve(e,t),p=Object.prototype.toString.apply(d),h=void 0!==t.joinArrays?t.joinArrays:this.options.joinArrays;if(d&&"string"!=typeof d&&["[object Number]","[object Function]","[object RegExp]"].indexOf(p)<0&&(!h||"[object Array]"!==p)){if(!t.returnObjects&&!this.options.returnObjects)return this.logger.warn("accessing an object - but returnObjects options is not enabled!"),this.options.returnedObjectHandler?this.options.returnedObjectHandler(s,d,t):"key '"+s+" ("+this.language+")' returned an object instead of string.";var f="[object Array]"===p?[]:{};for(var m in d)f[m]=this.translate(""+s+o+m,i({joinArrays:!1,ns:u},t));d=f}else if(h&&"[object Array]"===p)(d=d.join(h))&&(d=this.extendTranslation(d,s,t));else{var g=!1,v=!1;if(this.isValidLookup(d)||void 0===t.defaultValue||(g=!0,d=t.defaultValue),this.isValidLookup(d)||(v=!0,d=s),(v||g)&&(this.logger.log("missingKey",n,c,s,d),this.options.saveMissing)){var y=[];if("fallback"===this.options.saveMissingTo&&this.options.fallbackLng&&this.options.fallbackLng[0])for(var _=0;_0){var l=o.indexOf(n);-1!==l&&o.splice(l,1)}},t.prototype.notifyComplete=function(){},t.prototype._next=function(e){if(0===this.toRespond.length){var t=[e].concat(this.values);this.project?this._tryProject(t):this.destination.next(t)}},t.prototype._tryProject=function(e){var t;try{t=this.project.apply(this,e)}catch(e){return void this.destination.error(e)}this.destination.next(t)},t}(r.OuterSubscriber)},okk1:function(e,t,n){"use strict";var i=n("rCTf"),r=n("bBiI");i.Observable.prototype.first=r.first},oo1B:function(e,t,n){!function(e){"use strict";e.defineLocale("ml",{months:"\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f_\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f_\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d_\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d_\u0d2e\u0d47\u0d2f\u0d4d_\u0d1c\u0d42\u0d7a_\u0d1c\u0d42\u0d32\u0d48_\u0d13\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d_\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c_\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d7c_\u0d28\u0d35\u0d02\u0d2c\u0d7c_\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c".split("_"),monthsShort:"\u0d1c\u0d28\u0d41._\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41._\u0d2e\u0d3e\u0d7c._\u0d0f\u0d2a\u0d4d\u0d30\u0d3f._\u0d2e\u0d47\u0d2f\u0d4d_\u0d1c\u0d42\u0d7a_\u0d1c\u0d42\u0d32\u0d48._\u0d13\u0d17._\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31._\u0d12\u0d15\u0d4d\u0d1f\u0d4b._\u0d28\u0d35\u0d02._\u0d21\u0d3f\u0d38\u0d02.".split("_"),monthsParseExact:!0,weekdays:"\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a_\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a_\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a_\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a_\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a_\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a_\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a".split("_"),weekdaysShort:"\u0d1e\u0d3e\u0d2f\u0d7c_\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d7e_\u0d1a\u0d4a\u0d35\u0d4d\u0d35_\u0d2c\u0d41\u0d27\u0d7b_\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02_\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f_\u0d36\u0d28\u0d3f".split("_"),weekdaysMin:"\u0d1e\u0d3e_\u0d24\u0d3f_\u0d1a\u0d4a_\u0d2c\u0d41_\u0d35\u0d4d\u0d2f\u0d3e_\u0d35\u0d46_\u0d36".split("_"),longDateFormat:{LT:"A h:mm -\u0d28\u0d41",LTS:"A h:mm:ss -\u0d28\u0d41",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -\u0d28\u0d41",LLLL:"dddd, D MMMM YYYY, A h:mm -\u0d28\u0d41"},calendar:{sameDay:"[\u0d07\u0d28\u0d4d\u0d28\u0d4d] LT",nextDay:"[\u0d28\u0d3e\u0d33\u0d46] LT",nextWeek:"dddd, LT",lastDay:"[\u0d07\u0d28\u0d4d\u0d28\u0d32\u0d46] LT",lastWeek:"[\u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d",past:"%s \u0d2e\u0d41\u0d7b\u0d2a\u0d4d",s:"\u0d05\u0d7d\u0d2a \u0d28\u0d3f\u0d2e\u0d3f\u0d37\u0d19\u0d4d\u0d19\u0d7e",ss:"%d \u0d38\u0d46\u0d15\u0d4d\u0d15\u0d7b\u0d21\u0d4d",m:"\u0d12\u0d30\u0d41 \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d",mm:"%d \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d",h:"\u0d12\u0d30\u0d41 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c",hh:"%d \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c",d:"\u0d12\u0d30\u0d41 \u0d26\u0d3f\u0d35\u0d38\u0d02",dd:"%d \u0d26\u0d3f\u0d35\u0d38\u0d02",M:"\u0d12\u0d30\u0d41 \u0d2e\u0d3e\u0d38\u0d02",MM:"%d \u0d2e\u0d3e\u0d38\u0d02",y:"\u0d12\u0d30\u0d41 \u0d35\u0d7c\u0d37\u0d02",yy:"%d \u0d35\u0d7c\u0d37\u0d02"},meridiemParse:/\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f|\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46|\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d|\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02|\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"===t&&e>=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,n){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"}})}(n("PJh5"))},ooba:function(e,t,n){!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,n){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}})}(n("PJh5"))},oqL2:function(e,t){e.exports=function(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}},"p/p0":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("F7Al");t.last=function(e,t,n){return function(i){return i.lift(new l(e,t,n,i))}};var l=function(){function e(e,t,n,i){this.predicate=e,this.resultSelector=t,this.defaultValue=n,this.source=i}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.predicate,this.resultSelector,this.defaultValue,this.source))},e}(),s=function(e){function t(t,n,i,r,o){e.call(this,t),this.predicate=n,this.resultSelector=i,this.defaultValue=r,this.source=o,this.hasValue=!1,this.index=0,"undefined"!=typeof r&&(this.lastValue=r,this.hasValue=!0)}return i(t,e),t.prototype._next=function(e){var t=this.index++;if(this.predicate)this._tryPredicate(e,t);else{if(this.resultSelector)return void this._tryResultSelector(e,t);this.lastValue=e,this.hasValue=!0}},t.prototype._tryPredicate=function(e,t){var n;try{n=this.predicate(e,t,this.source)}catch(e){return void this.destination.error(e)}if(n){if(this.resultSelector)return void this._tryResultSelector(e,t);this.lastValue=e,this.hasValue=!0}},t.prototype._tryResultSelector=function(e,t){var n;try{n=this.resultSelector(e,t)}catch(e){return void this.destination.error(e)}this.lastValue=n,this.hasValue=!0},t.prototype._complete=function(){var e=this.destination;this.hasValue?(e.next(this.lastValue),e.complete()):e.error(new o.EmptyError)},t}(r.Subscriber)},p0bc:function(e,t,n){var i=n("ICSD"),r=function(){try{var e=i(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=r},p1Um:function(e,t,n){"use strict";var i=n("rCTf"),r=n("Ji1B");i.Observable.prototype.observeOn=r.observeOn},"p5++":function(e,t,n){"use strict";var i=n("DZi2");t.single=function(e){return i.single(e)(this)}},pDpM:function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},pOI1:function(e,t,n){"use strict";t.escape=function(e){return[].map.call(e,function(e){return"+"===e||"-"===e||"&"===e||"|"===e||"!"===e||"("===e||")"===e||"{"===e||"}"===e||"["===e||"]"===e||"^"===e||'"'===e||"~"===e||"*"===e||"?"===e||":"===e||"\\"===e?"\\"+e:e}).join("")}},pPqQ:function(e,t,n){var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r=Object.assign||function(e){for(var t=1;t0?(e.uppy.info(i+"...","warning",800),i--):(clearInterval(r),e.uppy.info(e.i18n("smile"),"success",1500),setTimeout(function(){return t()},1500))},1e3)})},t.prototype.takeSnapshot=function(){var e=this;this.captureInProgress||(this.captureInProgress=!0,this.opts.onBeforeSnapshot().catch(function(t){var n="object"===("undefined"==typeof t?"undefined":i(t))?t.message:t;return e.uppy.info(n,"error",5e3),o.reject(new Error("onBeforeSnapshot: "+n))}).then(function(){return e.getImage()}).then(function(t){e.captureInProgress=!1;var n=e.uppy.getPlugin("Dashboard");return n&&n.hideAllPanels(),e.uppy.addFile(t).catch(function(){})},function(t){throw e.captureInProgress=!1,t}))},t.prototype.getImage=function(){var e=this,t=this.getVideoElement();if(!t)return o.reject(new Error("No video element found, likely due to the Webcam tab being closed."));var n="webcam-"+Date.now()+".jpg",i=t.videoWidth,r=t.videoHeight,l=document.createElement("canvas");return l.width=i,l.height=r,l.getContext("2d").drawImage(t,0,0),d(l,"image/jpeg").then(function(t){return{source:e.id,name:n,data:new File([t],n,{type:"image/jpeg"}),type:"image/jpeg"}})},t.prototype.getVideo=function(){var e=this.recordingChunks[0].type,t=c(e);if(!t)return o.reject(new Error('Could not retrieve recording: Unsupported media type "'+e+'"'));var n="webcam-"+Date.now()+"."+t,i=new Blob(this.recordingChunks,{type:e}),r={source:this.id,name:n,data:new File([i],n,{type:e}),type:e};return o.resolve(r)},t.prototype.focus=function(){var e=this;this.opts.countdown||setTimeout(function(){e.uppy.info(e.i18n("smile"),"success",1500)},1e3)},t.prototype.render=function(e){this.webcamActive||this.start();var t=this.getPluginState();return t.cameraReady?l(f,r({},t,{onSnapshot:this.takeSnapshot,onStartRecording:this.startRecording,onStopRecording:this.stopRecording,onFocus:this.focus,onStop:this.stop,modes:this.opts.modes,supportsRecording:p(),recording:t.isRecording,mirror:this.opts.mirror,src:this.stream})):m(t)},t.prototype.install=function(){this.setPluginState({cameraReady:!1});var e=this.opts.target;e&&this.mount(e,this)},t.prototype.uninstall=function(){this.stream&&this.stop(),this.unmount()},t}(s)},pQJ6:function(e,t,n){var i=n("bGc4");e.exports=function(e,t){return function(n,r){if(null==n)return n;if(!i(n))return e(n,r);for(var o=n.length,l=t?o:-1,s=Object(n);(t?l--:++l=10?e:e+12:"\u0a38\u0a3c\u0a3e\u0a2e"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},pgP5:function(e,t,n){"use strict";var i=n("dt7L");t.reduce=function(e,t){return arguments.length>=2?i.reduce(e,t)(this):i.reduce(e)(this)}},piny:function(e,t,n){"use strict";var i=n("dt7L");function r(e,t,n){return 0===n?[t]:(e.push(t),e)}t.toArray=function(){return i.reduce(r,[])}},pnVU:function(e,t,n){function i(e){if(e)return function(e){for(var t in i.prototype)e[t]=i.prototype[t];return e}(e)}e.exports=i,i.prototype.on=i.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},i.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},i.prototype.off=i.prototype.removeListener=i.prototype.removeAllListeners=i.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,i=this._callbacks["$"+e];if(!i)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var r=0;r-1:!!c&&i(e,t,n)>-1}},"q+cp":function(e,t,n){"use strict";var i=n("RU1a");t.takeUntil=function(e){return i.takeUntil(e)(this)}},"q+ny":function(e,t,n){"use strict";var i=n("0qMM");t.expand=function(e,t,n){return void 0===t&&(t=Number.POSITIVE_INFINITY),void 0===n&&(n=void 0),t=(t||0)<1?Number.POSITIVE_INFINITY:t,i.expand(e,t,n)(this)}},q0UB:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("cwzr"),o=n("9Avi");t.VirtualTimeScheduler=function(e){function t(t,n){var i=this;void 0===t&&(t=l),void 0===n&&(n=Number.POSITIVE_INFINITY),e.call(this,t,function(){return i.frame}),this.maxFrames=n,this.frame=0,this.index=-1}return i(t,e),t.prototype.flush=function(){for(var e,t,n=this.actions,i=this.maxFrames;(t=n.shift())&&(this.frame=t.delay)<=i&&!(e=t.execute(t.state,t.delay)););if(e){for(;t=n.shift();)t.unsubscribe();throw e}},t.frameTimeFactor=10,t}(o.AsyncScheduler);var l=function(e){function t(t,n,i){void 0===i&&(i=t.index+=1),e.call(this,t,n),this.scheduler=t,this.work=n,this.index=i,this.active=!0,this.index=t.index=i}return i(t,e),t.prototype.schedule=function(n,i){if(void 0===i&&(i=0),!this.id)return e.prototype.schedule.call(this,n,i);this.active=!1;var r=new t(this.scheduler,this.work);return this.add(r),r.schedule(n,i)},t.prototype.requestAsyncId=function(e,n,i){void 0===i&&(i=0),this.delay=e.frame+i;var r=e.actions;return r.push(this),r.sort(t.sortActions),!0},t.prototype.recycleAsyncId=function(e,t,n){void 0===n&&(n=0)},t.prototype._execute=function(t,n){if(!0===this.active)return e.prototype._execute.call(this,t,n)},t.sortActions=function(e,t){return e.delay===t.delay?e.index===t.index?0:e.index>t.index?1:-1:e.delay>t.delay?1:-1},t}(r.AsyncAction);t.VirtualAction=l},q3ik:function(e,t,n){"use strict";var i=n("rCTf"),r=n("8hgl");i.Observable.prototype.distinctUntilChanged=r.distinctUntilChanged},"q4U+":function(e,t,n){"use strict";var i=n("rCTf"),r=n("erNO");i.Observable.prototype.windowCount=r.windowCount},qIte:function(e,t,n){"use strict";var i=n("Xajo"),r=n("XKuz");t.race=function(){for(var e=[],t=0;t1&&void 0!==arguments[1]&&arguments[1],i={source:this.plugin.id,data:this.plugin.getItemData(e),name:this.plugin.getItemName(e)||this.plugin.getItemId(e),type:this.plugin.getMimeType(e),isRemote:!0,body:{fileId:this.plugin.getItemId(e)},remote:{host:this.plugin.opts.host,url:""+this.Provider.fileUrl(this.plugin.getItemRequestPath(e)),body:{fileId:this.plugin.getItemId(e)}}};s.getFileType(i).then(function(r){r&&s.isPreviewSupported(r)&&(i.preview=t.plugin.getItemThumbnailUrl(e)),t.plugin.uppy.log("Adding remote file"),t.plugin.uppy.addFile(i).catch(function(){}),n||t.donePicking()})},e.prototype.logout=function(){var e=this;this.Provider.logout(location.href).then(function(e){return e.json()}).then(function(t){t.ok&&e.plugin.setPluginState({authenticated:!1,files:[],folders:[],directories:[]})}).catch(this.handleError)},e.prototype.filterQuery=function(e){var t=this.plugin.getPluginState();this.plugin.setPluginState(i({},t,{filterInput:e.target.value}))},e.prototype.toggleSearch=function(e){var t=this.plugin.getPluginState();this.plugin.setPluginState({isSearchVisible:!t.isSearchVisible,filterInput:""})},e.prototype.filterItems=function(e){var t=this,n=this.plugin.getPluginState();return e.filter(function(e){return-1!==t.plugin.getItemName(e).toLowerCase().indexOf(n.filterInput.toLowerCase())})},e.prototype.sortByTitle=function(){var e=this,t=i({},this.plugin.getPluginState()),n=t.folders,r=t.sorting,o=t.files.sort(function(t,n){return"titleDescending"===r?e.plugin.getItemName(n).localeCompare(e.plugin.getItemName(t)):e.plugin.getItemName(t).localeCompare(e.plugin.getItemName(n))}),l=n.sort(function(t,n){return"titleDescending"===r?e.plugin.getItemName(n).localeCompare(e.plugin.getItemName(t)):e.plugin.getItemName(t).localeCompare(e.plugin.getItemName(n))});this.plugin.setPluginState(i({},t,{files:o,folders:l,sorting:"titleDescending"===r?"titleAscending":"titleDescending"}))},e.prototype.sortByDate=function(){var e=this,t=i({},this.plugin.getPluginState()),n=t.folders,r=t.sorting,o=t.files.sort(function(t,n){var i=new Date(e.plugin.getItemModifiedDate(t)),o=new Date(e.plugin.getItemModifiedDate(n));return"dateDescending"===r?i>o?-1:io?1:io?-1:io?1:io?-1:io?1:i=i.length)break;l=i[o++]}else{if((o=i.next()).done)break;l=o.value}var s=l;s in this.plugin.uppy.getState().files&&this.plugin.uppy.removeFile(s)}delete t[e],this.plugin.setPluginState({selectedFolders:t})}}},e.prototype.updateFolderState=function(e){var t=this.plugin.getPluginState().selectedFolders||{};for(var n in t){var i=t[n];if(!i.loading){var r=i.files.indexOf(e.id);r>-1&&i.files.splice(r,1),i.files.length||delete t[n]}}this.plugin.setPluginState({selectedFolders:t})},e.prototype.toggleCheckbox=function(e,t){e.stopPropagation(),e.preventDefault();var n=this.plugin.getPluginState(),i=n.filterInput,r=n.folders.concat(n.files);""!==i&&(r=this.filterItems(r));var o=[t];if(this.lastCheckbox&&e.shiftKey){var l=r.indexOf(this.lastCheckbox),s=r.indexOf(t);o=l=a.length)break;d=a[c++]}else{if((c=a.next()).done)break;d=c.value}var p=d,h=this.providerFileToId(p);this.plugin.isFolder(p)?this.removeFolder(h):h in this.plugin.uppy.getState().files&&this.plugin.uppy.removeFile(h)}}else{var f=o,m=Array.isArray(f),g=0;for(f=m?f:f[Symbol.iterator]();;){var v;if(m){if(g>=f.length)break;v=f[g++]}else{if((g=f.next()).done)break;v=g.value}var y=v;this.plugin.isFolder(y)?this.addFolder(y):this.addFile(y,!0)}}},e.prototype.providerFileToId=function(e){return s.generateFileID({data:this.plugin.getItemData(e),name:this.plugin.getItemName(e)||this.plugin.getItemId(e),type:this.plugin.getMimeType(e)})},e.prototype.handleDemoAuth=function(){var e=this.plugin.getPluginState();this.plugin.setPluginState({},e,{authenticated:!0})},e.prototype.handleAuth=function(){var e=this,t=Math.floor(999999*Math.random())+1,n=location.href+(location.search?"&":"?")+"id="+t,i=btoa(JSON.stringify({redirect:n})),r=this.Provider.authUrl()+"?state="+i,o=window.open(r,"_blank");!function t(){var i=void 0;try{i=o.location.href}catch(e){if(e instanceof DOMException||e instanceof TypeError)return setTimeout(t,100);throw e}i&&i.split("#")[0]===n?(o.close(),e._loaderWrapper(e.Provider.checkAuth(),e.plugin.onAuth,e.handleError)):setTimeout(t,100)}()},e.prototype.handleError=function(e){var t=this.plugin.uppy,n=t.i18n("uppyServerError");t.log(e.toString()),t.info({message:n,details:e.toString()},"error",5e3)},e.prototype.handleScroll=function(e){var t=this,n=e.target.scrollHeight-(e.target.scrollTop+e.target.offsetHeight),i=this.plugin.getNextPagePath?this.plugin.getNextPagePath():null;n<50&&i&&!this._isHandlingScroll&&(this.Provider.list(i).then(function(e){var n=t.plugin.getPluginState();t._updateFilesAndFolders(e,n.files,n.folders)}).catch(this.handleError).then(function(){t._isHandlingScroll=!1}),this._isHandlingScroll=!0)},e.prototype.donePicking=function(){var e=this.plugin.uppy.getPlugin("Dashboard");e&&e.hideAllPanels()},e.prototype._loaderWrapper=function(e,t,n){var i=this;e.then(t).catch(n).then(function(){return i.plugin.setPluginState({loading:!1})}),this.plugin.setPluginState({loading:!0})},e.prototype.render=function(e){var t=this.plugin.getPluginState(),n=t.authenticated,s=t.checkAuthInProgress;if(t.loading)return l();if(!n)return a(r,{pluginName:this.plugin.title,demo:this.plugin.opts.demo,checkAuth:this.checkAuth,handleAuth:this.handleAuth,handleDemoAuth:this.handleDemoAuth,checkAuthInProgress:s});var u=i({},this.plugin.getPluginState(),{getNextFolder:this.getNextFolder,getFolder:this.getFolder,addFile:this.addFile,filterItems:this.filterItems,filterQuery:this.filterQuery,toggleSearch:this.toggleSearch,sortByTitle:this.sortByTitle,sortByDate:this.sortByDate,logout:this.logout,demo:this.plugin.opts.demo,isActiveRow:this.isActiveRow,isChecked:this.isChecked,toggleCheckbox:this.toggleCheckbox,getItemName:this.plugin.getItemName,getItemIcon:this.plugin.getItemIcon,handleScroll:this.handleScroll,done:this.donePicking,title:this.plugin.title,viewType:this.opts.viewType});return o(u)},e}()},r8ZY:function(e,t,n){"use strict";var i=n("VOfZ").root.Symbol;t.rxSubscriber="function"==typeof i&&"function"==typeof i.for?i.for("rxSubscriber"):"@@rxSubscriber",t.$$rxSubscriber=t.rxSubscriber},rCTf:function(e,t,n){"use strict";var i=n("VOfZ"),r=n("lHsB"),o=n("mbVC"),l=n("9eyw");t.Observable=function(){function e(e){this._isScalar=!1,e&&(this._subscribe=e)}return e.prototype.lift=function(t){var n=new e;return n.source=this,n.operator=t,n},e.prototype.subscribe=function(e,t,n){var i=this.operator,o=r.toSubscriber(e,t,n);if(i?i.call(o,this.source):o.add(this.source||!o.syncErrorThrowable?this._subscribe(o):this._trySubscribe(o)),o.syncErrorThrowable&&(o.syncErrorThrowable=!1,o.syncErrorThrown))throw o.syncErrorValue;return o},e.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.syncErrorThrown=!0,e.syncErrorValue=t,e.error(t)}},e.prototype.forEach=function(e,t){var n=this;if(t||(i.root.Rx&&i.root.Rx.config&&i.root.Rx.config.Promise?t=i.root.Rx.config.Promise:i.root.Promise&&(t=i.root.Promise)),!t)throw new Error("no Promise impl found");return new t(function(t,i){var r;r=n.subscribe(function(t){if(r)try{e(t)}catch(e){i(e),r.unsubscribe()}else e(t)},i,t)})},e.prototype._subscribe=function(e){return this.source.subscribe(e)},e.prototype[o.observable]=function(){return this},e.prototype.pipe=function(){for(var e=[],t=0;t0)u=this.getAssemblyOptions(e).then(function(e){return o.dedupeAssemblyOptions(e)});else{if(!this.opts.alwaysRunAssembly)return r.resolve();u=r.resolve(this.opts.getAssemblyOptions(null,this.opts)).then(function(t){return o.validateParams(t.params),[{fileIDs:e,options:t}]})}return u.then(function(e){return r.all(e.map(l))})},t.prototype.afterUpload=function(e,t){var n=this;e=e.filter(function(e){return!e.error});var o=this.getPluginState();if(this.restored)return this.restored.then(function(i){var r=n.afterUpload(e,t);return i(),r});var l=o.uploadsAssemblies[t];if(!this.shouldWait()){l.forEach(function(e){n.sockets[e].close()});var s=l.map(function(e){return n.getAssembly(e)});return this.uppy.addResultData(t,{transloadit:s}),r.resolve()}if(0===l.length)return this.uppy.addResultData(t,{transloadit:[]}),r.resolve();var a=0;return new r(function(i,r){e.forEach(function(e){var t=n.uppy.getFile(e);n.uppy.emit("postprocess-progress",t,{mode:"indeterminate",message:n.i18n("encoding")})});var o=function(e){-1!==l.indexOf(e.assembly_id)?(n.uppy.log("[Transloadit] afterUpload(): Got Assembly finish "+e.assembly_id),n.getAssemblyFiles(e.assembly_id).forEach(function(e){n.uppy.emit("postprocess-complete",e)}),c()):n.uppy.log("[Transloadit] afterUpload(): Ignoring finished Assembly "+e.assembly_id)},s=function(e,t){-1!==l.indexOf(e.assembly_id)?(n.uppy.log("[Transloadit] afterUpload(): Got Assembly error "+e.assembly_id),n.uppy.log(t),n.getAssemblyFiles(e.assembly_id).forEach(function(e){n.uppy.emit("upload-error",e,t),n.uppy.emit("postprocess-complete",e)}),c()):n.uppy.log("[Transloadit] afterUpload(): Ignoring errored Assembly "+e.assembly_id)},u=function(e,t,n){-1!==l.indexOf(e.assembly_id)&&s(e,n)},c=function(){if((a+=1)===l.length){d();var e=l.map(function(e){return n.getAssembly(e)});n.uppy.addResultData(t,{transloadit:e}),i()}},d=function(){n.uppy.off("transloadit:complete",o),n.uppy.off("transloadit:assembly-error",s),n.uppy.off("transloadit:import-error",u)};n.uppy.on("transloadit:complete",o),n.uppy.on("transloadit:assembly-error",s),n.uppy.on("transloadit:import-error",u)}).then(function(e){var r=n.getPluginState(),o=i({},r.uploadsAssemblies);return delete o[t],n.setPluginState({uploadsAssemblies:o}),e})},t.prototype.install=function(){this.uppy.addPreProcessor(this.prepareUpload),this.uppy.addPostProcessor(this.afterUpload),this.opts.importFromUploadURLs?this.uppy.on("upload-success",this.onFileUploadURLAvailable):this.uppy.use(s,{resume:!1,metaFields:["assembly_url","filename","fieldname"]}),this.uppy.on("restore:get-data",this.getPersistentData),this.uppy.on("restored",this.onRestored),this.setPluginState({assemblies:{},uploadsAssemblies:{},files:{},results:[]})},t.prototype.uninstall=function(){this.uppy.removePreProcessor(this.prepareUpload),this.uppy.removePostProcessor(this.afterUpload),this.opts.importFromUploadURLs&&this.uppy.off("upload-success",this.onFileUploadURLAvailable)},t.prototype.getAssembly=function(e){return this.getPluginState().assemblies[e]},t.prototype.getAssemblyFiles=function(e){var t=this;return Object.keys(this.uppy.state.files).map(function(e){return t.uppy.getFile(e)}).filter(function(t){return t&&t.transloadit&&t.transloadit.assembly===e})},t}(l)},rplX:function(e,t){!function(e){"use strict";if(!e.fetch){var t={searchParams:"URLSearchParams"in e,iterable:"Symbol"in e&&"iterator"in Symbol,blob:"FileReader"in e&&"Blob"in e&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in e,arrayBuffer:"ArrayBuffer"in e};if(t.arrayBuffer)var n=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],i=function(e){return e&&DataView.prototype.isPrototypeOf(e)},r=ArrayBuffer.isView||function(e){return e&&n.indexOf(Object.prototype.toString.call(e))>-1};c.prototype.append=function(e,t){e=s(e),t=a(t);var n=this.map[e];this.map[e]=n?n+","+t:t},c.prototype.delete=function(e){delete this.map[s(e)]},c.prototype.get=function(e){return e=s(e),this.has(e)?this.map[e]:null},c.prototype.has=function(e){return this.map.hasOwnProperty(s(e))},c.prototype.set=function(e,t){this.map[s(e)]=a(t)},c.prototype.forEach=function(e,t){for(var n in this.map)this.map.hasOwnProperty(n)&&e.call(t,this.map[n],n,this)},c.prototype.keys=function(){var e=[];return this.forEach(function(t,n){e.push(n)}),u(e)},c.prototype.values=function(){var e=[];return this.forEach(function(t){e.push(t)}),u(e)},c.prototype.entries=function(){var e=[];return this.forEach(function(t,n){e.push([n,t])}),u(e)},t.iterable&&(c.prototype[Symbol.iterator]=c.prototype.entries);var o=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];g.prototype.clone=function(){return new g(this,{body:this._bodyInit})},m.call(g.prototype),m.call(y.prototype),y.prototype.clone=function(){return new y(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new c(this.headers),url:this.url})},y.error=function(){var e=new y(null,{status:0,statusText:""});return e.type="error",e};var l=[301,302,303,307,308];y.redirect=function(e,t){if(-1===l.indexOf(t))throw new RangeError("Invalid status code");return new y(null,{status:t,headers:{location:e}})},e.Headers=c,e.Request=g,e.Response=y,e.fetch=function(e,n){return new Promise(function(i,r){var o=new g(e,n),l=new XMLHttpRequest;l.onload=function(){var e,t,n={status:l.status,statusText:l.statusText,headers:(e=l.getAllResponseHeaders()||"",t=new c,e.split(/\r?\n/).forEach(function(e){var n=e.split(":"),i=n.shift().trim();if(i){var r=n.join(":").trim();t.append(i,r)}}),t)};n.url="responseURL"in l?l.responseURL:n.headers.get("X-Request-URL"),i(new y("response"in l?l.response:l.responseText,n))},l.onerror=function(){r(new TypeError("Network request failed"))},l.ontimeout=function(){r(new TypeError("Network request failed"))},l.open(o.method,o.url,!0),"include"===o.credentials&&(l.withCredentials=!0),"responseType"in l&&t.blob&&(l.responseType="blob"),o.headers.forEach(function(e,t){l.setRequestHeader(t,e)}),l.send("undefined"==typeof o._bodyInit?null:o._bodyInit)})},e.fetch.polyfill=!0}function s(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function a(e){return"string"!=typeof e&&(e=String(e)),e}function u(e){var n={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return t.iterable&&(n[Symbol.iterator]=function(){return n}),n}function c(e){this.map={},e instanceof c?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function d(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function p(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function h(e){var t=new FileReader,n=p(t);return t.readAsArrayBuffer(e),n}function f(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function m(){return this.bodyUsed=!1,this._initBody=function(e){if(this._bodyInit=e,e)if("string"==typeof e)this._bodyText=e;else if(t.blob&&Blob.prototype.isPrototypeOf(e))this._bodyBlob=e;else if(t.formData&&FormData.prototype.isPrototypeOf(e))this._bodyFormData=e;else if(t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e))this._bodyText=e.toString();else if(t.arrayBuffer&&t.blob&&i(e))this._bodyArrayBuffer=f(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!t.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(e)&&!r(e))throw new Error("unsupported BodyInit type");this._bodyArrayBuffer=f(e)}else this._bodyText="";this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},t.blob&&(this.blob=function(){var e=d(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?d(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(h)}),this.text=function(){var e,t,n,i=d(this);if(i)return i;if(this._bodyBlob)return e=this._bodyBlob,n=p(t=new FileReader),t.readAsText(e),n;if(this._bodyArrayBuffer)return Promise.resolve(function(e){for(var t=new Uint8Array(e),n=new Array(t.length),i=0;i-1?i:n),this.mode=t.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&r)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(r)}function v(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var n=e.split("="),i=n.shift().replace(/\+/g," "),r=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(i),decodeURIComponent(r))}}),t}function y(e,t){t||(t={}),this.type="default",this.status="status"in t?t.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new c(t.headers),this.url=t.url||"",this._initBody(e)}}("undefined"!=typeof self?self:this)},rpnb:function(e,t,n){var i=n("tHks")();e.exports=i},rpzr:function(e,t,n){"use strict";var i=n("bZY+");t.interval=i.IntervalObservable.create},rqiN:function(e,t,n){var i=n("fO9o"),r=i.iconText,o=i.iconAudio,l=i.iconVideo,s=i.iconPDF;e.exports=function(e){var t={color:"#cbcbcb",icon:""};if(!e)return t;var n=e.split("/")[0],i=e.split("/")[1];return"text"===n?{color:"#cbcbcb",icon:r()}:"audio"===n?{color:"#1abc9c",icon:o()}:"video"===n?{color:"#2980b9",icon:l()}:"application"===n&&"pdf"===i?{color:"#e74c3c",icon:s()}:"image"===n?{color:"#f2f2f2",icon:""}:t}},rtsW:function(e,t,n){!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"},n={"\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 n[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,n){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}})}(n("PJh5"))},rvzg:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=Object.assign||function(e){for(var t=1;t=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:function(){try{return window.localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}},t.enable(r())}).call(t,n("W2nU"))},sAZ4:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("wAkD"),o=n("CURp");t.switchMap=function(e,t){return function(n){return n.lift(new l(e,t))}};var l=function(){function e(e,t){this.project=e,this.resultSelector=t}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.project,this.resultSelector))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.project=n,this.resultSelector=i,this.index=0}return i(t,e),t.prototype._next=function(e){var t,n=this.index++;try{t=this.project(e,n)}catch(e){return void this.destination.error(e)}this._innerSub(t,e,n)},t.prototype._innerSub=function(e,t,n){var i=this.innerSubscription;i&&i.unsubscribe(),this.add(this.innerSubscription=o.subscribeToResult(this,e,t,n))},t.prototype._complete=function(){var t=this.innerSubscription;t&&!t.closed||e.prototype._complete.call(this)},t.prototype._unsubscribe=function(){this.innerSubscription=null},t.prototype.notifyComplete=function(t){this.remove(t),this.innerSubscription=null,this.isStopped&&e.prototype._complete.call(this)},t.prototype.notifyNext=function(e,t,n,i,r){this.resultSelector?this._tryNotifyNext(e,t,n,i):this.destination.next(t)},t.prototype._tryNotifyNext=function(e,t,n,i){var r;try{r=this.resultSelector(e,t,n,i)}catch(e){return void this.destination.error(e)}this.destination.next(r)},t}(r.OuterSubscriber)},sBat:function(e,t,n){var i=n("kxzG");e.exports=function(e){return e?(e=i(e))===1/0||e===-1/0?1.7976931348623157e308*(e<0?-1:1):e==e?e:0:0===e?e:0}},sIYO:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("EEr4"),o=n("rCTf"),l=(n("mmVS"),n("B00U")),s=n("9dR0"),a=function(e){function t(t,n){e.call(this),this.source=t,this.subjectFactory=n,this._refCount=0,this._isComplete=!1}return i(t,e),t.prototype._subscribe=function(e){return this.getSubject().subscribe(e)},t.prototype.getSubject=function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject},t.prototype.connect=function(){var e=this._connection;return e||(this._isComplete=!1,(e=this._connection=new l.Subscription).add(this.source.subscribe(new c(this.getSubject(),this))),e.closed?(this._connection=null,e=l.Subscription.EMPTY):this._connection=e),e},t.prototype.refCount=function(){return s.refCount()(this)},t}(o.Observable);t.ConnectableObservable=a;var u=a.prototype;t.connectableObservableDescriptor={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:u._subscribe},_isComplete:{value:u._isComplete,writable:!0},getSubject:{value:u.getSubject},connect:{value:u.connect},refCount:{value:u.refCount}};var c=function(e){function t(t,n){e.call(this,t),this.connectable=n}return i(t,e),t.prototype._error=function(t){this._unsubscribe(),e.prototype._error.call(this,t)},t.prototype._complete=function(){this.connectable._isComplete=!0,this._unsubscribe(),e.prototype._complete.call(this)},t.prototype._unsubscribe=function(){var e=this.connectable;if(e){this.connectable=null;var t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}},t}(r.SubjectSubscriber)},sJvV:function(e,t){e.exports=function(e,t){return function(n){return null!=n&&n[e]===t&&(void 0!==t||e in Object(n))}}},sKQ8:function(e,t,n){"use strict";var i=n("CGGv"),r=n("P3oE"),o=n("fWbP"),l=n("17on");t.windowTime=function(e){var t=i.async,n=null,s=Number.POSITIVE_INFINITY;return o.isScheduler(arguments[3])&&(t=arguments[3]),o.isScheduler(arguments[2])?t=arguments[2]:r.isNumeric(arguments[2])&&(s=arguments[2]),o.isScheduler(arguments[1])?t=arguments[1]:r.isNumeric(arguments[1])&&(n=arguments[1]),l.windowTime(e,n,s,t)(this)}},sOR5:function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},sT3i:function(e,t,n){"use strict";var i=n("rCTf"),r=n("q+ny");i.Observable.prototype.expand=r.expand},sTFn:function(e,t,n){"use strict";var i=n("6BaH"),r=n("9dR0"),o=n("EEr4");function l(){return new o.Subject}t.share=function(){return function(e){return r.refCount()(i.multicast(l)(e))}}},sVus:function(e,t,n){"use strict";var i=n("CGGv"),r=n("F9Yt");t.TimeInterval=r.TimeInterval,t.timeInterval=function(e){return void 0===e&&(e=i.async),r.timeInterval(e)(this)}},sake:function(e,t,n){"use strict";var i=n("prqh");t.skipWhile=function(e){return i.skipWhile(e)(this)}},"sb+e":function(e,t,n){"use strict";t.letProto=function(e){return e(this)}},sqLM:function(e,t,n){!function(e){"use strict";e.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n("PJh5"))},sr3B:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol?"symbol":typeof e},r=Object.assign||function(e){for(var t=1;t1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r=0?"rtl":"ltr"},t.prototype.createInstance=function(){return new t(arguments.length<=0||void 0===arguments[0]?{}:arguments[0],arguments[1])},t.prototype.cloneInstance=function(){var e=this,n=arguments[1],i=new t(r({},arguments.length<=0||void 0===arguments[0]?{}:arguments[0],this.options,{isClone:!0}),n);return["store","translator","services","language"].forEach(function(t){i[t]=e[t]}),i},t}(l.default);t.default=new y},ssxj:function(e,t,n){!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("_"),n="led_\xfano_b\u0159e_dub_kv\u011b_\u010dvn_\u010dvc_srp_z\xe1\u0159_\u0159\xedj_lis_pro".split("_");function i(e){return e>1&&e<5&&1!=~~(e/10)}function r(e,t,n,r){var o=e+" ";switch(n){case"s":return t||r?"p\xe1r sekund":"p\xe1r sekundami";case"ss":return t||r?o+(i(e)?"sekundy":"sekund"):o+"sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?o+(i(e)?"minuty":"minut"):o+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?o+(i(e)?"hodiny":"hodin"):o+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?o+(i(e)?"dny":"dn\xed"):o+"dny";case"M":return t||r?"m\u011bs\xedc":"m\u011bs\xedcem";case"MM":return t||r?o+(i(e)?"m\u011bs\xedce":"m\u011bs\xedc\u016f"):o+"m\u011bs\xedci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?o+(i(e)?"roky":"let"):o+"lety"}}e.defineLocale("cs",{months:t,monthsShort:n,monthsParse:function(e,t){var n,i=[];for(n=0;n<12;n++)i[n]=new RegExp("^"+e[n]+"$|^"+t[n]+"$","i");return i}(t,n),shortMonthsParse:function(e){var t,n=[];for(t=0;t<12;t++)n[t]=new RegExp("^"+e[t]+"$","i");return n}(n),longMonthsParse:function(e){var t,n=[];for(t=0;t<12;t++)n[t]=new RegExp("^"+e[t]+"$","i");return n}(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}})}(n("PJh5"))},svD2:function(e,t,n){!function(e){"use strict";var t={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var r=t.words[i];return 1===i.length?n?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}})}(n("PJh5"))},t2Bb:function(e,t,n){"use strict";var i=n("CGGv"),r=n("Lb3r");t.sampleTime=function(e,t){return void 0===t&&(t=i.async),r.sampleTime(e,t)(this)}},t2qv:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("rCTf"),o=n("jBEF"),l=n("Xajo"),s=n("CURp"),a=n("wAkD");t.ForkJoinObservable=function(e){function t(t,n){e.call(this),this.sources=t,this.resultSelector=n}return i(t,e),t.create=function(){for(var e=[],n=0;n=2?i.scan(e,t)(this):i.scan(e)(this)}},tefl:function(e,t,n){"use strict";var i=n("NgUg");t.pairs=i.PairsObservable.create},tkWw:function(e,t,n){!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}})}(n("PJh5"))},tn1n:function(e,t,n){"use strict";var i=n("PYDO");t.partition=function(e,t){return i.partition(e,t)(this)}},tuHt:function(e,t,n){"use strict";var i=n("rCTf"),r=n("SDFq");i.Observable.prototype.switchMapTo=r.switchMapTo},tv3T:function(e,t,n){var i=n("i4ON"),r=n("nw3t");e.exports=function(e,t,n,o){var l=!n;n||(n={});for(var s=-1,a=t.length;++s0;)t.shift().setup();e.prototype.flush.call(this);for(var n=this.flushTests.filter(function(e){return e.ready});n.length>0;){var i=n.shift();this.assertDeepEqual(i.actual,i.expected)}},t.parseMarblesAsSubscriptions=function(e){if("string"!=typeof e)return new a.SubscriptionLog(Number.POSITIVE_INFINITY);for(var t=e.length,n=-1,i=Number.POSITIVE_INFINITY,r=Number.POSITIVE_INFINITY,o=0;o-1?n:l;break;case"!":if(r!==Number.POSITIVE_INFINITY)throw new Error("found a second subscription point '^' in a subscription marble diagram. There can only be one.");r=n>-1?n:l;break;default:throw new Error("there can only be '^' and '!' markers in a subscription marble diagram. Found instead '"+s+"'.")}}return r<0?new a.SubscriptionLog(i):new a.SubscriptionLog(i,r)},t.parseMarbles=function(e,t,n,i){if(void 0===i&&(i=!1),-1!==e.indexOf("!"))throw new Error('conventional marble diagrams cannot have the unsubscription marker "!"');for(var r=e.length,s=[],a=e.indexOf("^"),u=-1===a?0:a*-this.frameTimeFactor,c="object"!=typeof t?function(e){return e}:function(e){return i&&t[e]instanceof l.ColdObservable?t[e].messages:t[e]},d=-1,p=0;p-1?d:h,notification:f})}return s},t}(u.VirtualTimeScheduler)},u2wr:function(e,t,n){"use strict";var i=n("offc");t.withLatestFrom=function(){for(var e=[],t=0;t>1,c=-7,d=n?r-1:0,p=n?-1:1,h=e[t+d];for(d+=p,o=h&(1<<-c)-1,h>>=-c,c+=s;c>0;o=256*o+e[t+d],d+=p,c-=8);for(l=o&(1<<-c)-1,o>>=-c,c+=i;c>0;l=256*l+e[t+d],d+=p,c-=8);if(0===o)o=1-u;else{if(o===a)return l?NaN:1/0*(h?-1:1);l+=Math.pow(2,i),o-=u}return(h?-1:1)*l*Math.pow(2,o-i)},t.write=function(e,t,n,i,r,o){var l,s,a,u=8*o-r-1,c=(1<>1,p=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,h=i?0:o-1,f=i?1:-1,m=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,l=c):(l=Math.floor(Math.log(t)/Math.LN2),t*(a=Math.pow(2,-l))<1&&(l--,a*=2),(t+=l+d>=1?p/a:p*Math.pow(2,1-d))*a>=2&&(l++,a/=2),l+d>=c?(s=0,l=c):l+d>=1?(s=(t*a-1)*Math.pow(2,r),l+=d):(s=t*Math.pow(2,d-1)*Math.pow(2,r),l=0));r>=8;e[n+h]=255&s,h+=f,s/=256,r-=8);for(l=l<0;e[n+h]=255&l,h+=f,l/=256,u-=8);e[n+h-f]|=128*m}},ulq9:function(e,t,n){!function(e){"use strict";function t(e,t,n){var i,r;return"m"===n?t?"\u043c\u0438\u043d\u0443\u0442\u0430":"\u043c\u0438\u043d\u0443\u0442\u0443":e+" "+(i=+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"}[n].split("_"),i%10==1&&i%100!=11?r[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?r[1]:r[2])}var n=[/^\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:n,longMonthsParse:n,shortMonthsParse:n,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,n){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}})}(n("PJh5"))},upln:function(e,t,n){!function(e){"use strict";function t(e){return e%100==11||e%10!=1}function n(e,n,i,r){var o=e+" ";switch(i){case"s":return n||r?"nokkrar sek\xfandur":"nokkrum sek\xfandum";case"ss":return t(e)?o+(n||r?"sek\xfandur":"sek\xfandum"):o+"sek\xfanda";case"m":return n?"m\xedn\xfata":"m\xedn\xfatu";case"mm":return t(e)?o+(n||r?"m\xedn\xfatur":"m\xedn\xfatum"):n?o+"m\xedn\xfata":o+"m\xedn\xfatu";case"hh":return t(e)?o+(n||r?"klukkustundir":"klukkustundum"):o+"klukkustund";case"d":return n?"dagur":r?"dag":"degi";case"dd":return t(e)?n?o+"dagar":o+(r?"daga":"d\xf6gum"):n?o+"dagur":o+(r?"dag":"degi");case"M":return n?"m\xe1nu\xf0ur":r?"m\xe1nu\xf0":"m\xe1nu\xf0i";case"MM":return t(e)?n?o+"m\xe1nu\xf0ir":o+(r?"m\xe1nu\xf0i":"m\xe1nu\xf0um"):n?o+"m\xe1nu\xf0ur":o+(r?"m\xe1nu\xf0":"m\xe1nu\xf0i");case"y":return n||r?"\xe1r":"\xe1ri";case"yy":return t(e)?o+(n||r?"\xe1r":"\xe1rum"):o+(n||r?"\xe1r":"\xe1ri")}}e.defineLocale("is",{months:"jan\xfaar_febr\xfaar_mars_apr\xedl_ma\xed_j\xfan\xed_j\xfal\xed_\xe1g\xfast_september_okt\xf3ber_n\xf3vember_desember".split("_"),monthsShort:"jan_feb_mar_apr_ma\xed_j\xfan_j\xfal_\xe1g\xfa_sep_okt_n\xf3v_des".split("_"),weekdays:"sunnudagur_m\xe1nudagur_\xferi\xf0judagur_mi\xf0vikudagur_fimmtudagur_f\xf6studagur_laugardagur".split("_"),weekdaysShort:"sun_m\xe1n_\xferi_mi\xf0_fim_f\xf6s_lau".split("_"),weekdaysMin:"Su_M\xe1_\xder_Mi_Fi_F\xf6_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[\xed dag kl.] LT",nextDay:"[\xe1 morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[\xed g\xe6r kl.] LT",lastWeek:"[s\xed\xf0asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s s\xed\xf0an",s:n,ss:n,m:n,mm:n,h:"klukkustund",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},uslO:function(e,t,n){var i={"./af":"3CJN","./af.js":"3CJN","./ar":"3MVc","./ar-dz":"tkWw","./ar-dz.js":"tkWw","./ar-kw":"j8cJ","./ar-kw.js":"j8cJ","./ar-ly":"wPpW","./ar-ly.js":"wPpW","./ar-ma":"dURR","./ar-ma.js":"dURR","./ar-sa":"7OnE","./ar-sa.js":"7OnE","./ar-tn":"BEem","./ar-tn.js":"BEem","./ar.js":"3MVc","./az":"eHwN","./az.js":"eHwN","./be":"3hfc","./be.js":"3hfc","./bg":"lOED","./bg.js":"lOED","./bm":"hng5","./bm.js":"hng5","./bn":"aM0x","./bn.js":"aM0x","./bo":"w2Hs","./bo.js":"w2Hs","./br":"OSsP","./br.js":"OSsP","./bs":"aqvp","./bs.js":"aqvp","./ca":"wIgY","./ca.js":"wIgY","./cs":"ssxj","./cs.js":"ssxj","./cv":"N3vo","./cv.js":"N3vo","./cy":"ZFGz","./cy.js":"ZFGz","./da":"YBA/","./da.js":"YBA/","./de":"DOkx","./de-at":"8v14","./de-at.js":"8v14","./de-ch":"Frex","./de-ch.js":"Frex","./de.js":"DOkx","./dv":"rIuo","./dv.js":"rIuo","./el":"CFqe","./el.js":"CFqe","./en-au":"Sjoy","./en-au.js":"Sjoy","./en-ca":"Tqun","./en-ca.js":"Tqun","./en-gb":"hPuz","./en-gb.js":"hPuz","./en-ie":"ALEw","./en-ie.js":"ALEw","./en-il":"QZk1","./en-il.js":"QZk1","./en-nz":"dyB6","./en-nz.js":"dyB6","./eo":"Nd3h","./eo.js":"Nd3h","./es":"LT9G","./es-do":"7MHZ","./es-do.js":"7MHZ","./es-us":"INcR","./es-us.js":"INcR","./es.js":"LT9G","./et":"XlWM","./et.js":"XlWM","./eu":"sqLM","./eu.js":"sqLM","./fa":"2pmY","./fa.js":"2pmY","./fi":"nS2h","./fi.js":"nS2h","./fo":"OVPi","./fo.js":"OVPi","./fr":"tzHd","./fr-ca":"bXQP","./fr-ca.js":"bXQP","./fr-ch":"VK9h","./fr-ch.js":"VK9h","./fr.js":"tzHd","./fy":"g7KF","./fy.js":"g7KF","./gd":"nLOz","./gd.js":"nLOz","./gl":"FuaP","./gl.js":"FuaP","./gom-latn":"+27R","./gom-latn.js":"+27R","./gu":"rtsW","./gu.js":"rtsW","./he":"Nzt2","./he.js":"Nzt2","./hi":"ETHv","./hi.js":"ETHv","./hr":"V4qH","./hr.js":"V4qH","./hu":"xne+","./hu.js":"xne+","./hy-am":"GrS7","./hy-am.js":"GrS7","./id":"yRTJ","./id.js":"yRTJ","./is":"upln","./is.js":"upln","./it":"FKXc","./it.js":"FKXc","./ja":"ORgI","./ja.js":"ORgI","./jv":"JwiF","./jv.js":"JwiF","./ka":"RnJI","./ka.js":"RnJI","./kk":"j+vx","./kk.js":"j+vx","./km":"5j66","./km.js":"5j66","./kn":"gEQe","./kn.js":"gEQe","./ko":"eBB/","./ko.js":"eBB/","./ky":"6cf8","./ky.js":"6cf8","./lb":"z3hR","./lb.js":"z3hR","./lo":"nE8X","./lo.js":"nE8X","./lt":"/6P1","./lt.js":"/6P1","./lv":"jxEH","./lv.js":"jxEH","./me":"svD2","./me.js":"svD2","./mi":"gEU3","./mi.js":"gEU3","./mk":"Ab7C","./mk.js":"Ab7C","./ml":"oo1B","./ml.js":"oo1B","./mn":"CqHt","./mn.js":"CqHt","./mr":"5vPg","./mr.js":"5vPg","./ms":"ooba","./ms-my":"G++c","./ms-my.js":"G++c","./ms.js":"ooba","./mt":"oCzW","./mt.js":"oCzW","./my":"F+2e","./my.js":"F+2e","./nb":"FlzV","./nb.js":"FlzV","./ne":"/mhn","./ne.js":"/mhn","./nl":"3K28","./nl-be":"Bp2f","./nl-be.js":"Bp2f","./nl.js":"3K28","./nn":"C7av","./nn.js":"C7av","./pa-in":"pfs9","./pa-in.js":"pfs9","./pl":"7LV+","./pl.js":"7LV+","./pt":"ZoSI","./pt-br":"AoDM","./pt-br.js":"AoDM","./pt.js":"ZoSI","./ro":"wT5f","./ro.js":"wT5f","./ru":"ulq9","./ru.js":"ulq9","./sd":"fW1y","./sd.js":"fW1y","./se":"5Omq","./se.js":"5Omq","./si":"Lgqo","./si.js":"Lgqo","./sk":"OUMt","./sk.js":"OUMt","./sl":"2s1U","./sl.js":"2s1U","./sq":"V0td","./sq.js":"V0td","./sr":"f4W3","./sr-cyrl":"c1x4","./sr-cyrl.js":"c1x4","./sr.js":"f4W3","./ss":"7Q8x","./ss.js":"7Q8x","./sv":"Fpqq","./sv.js":"Fpqq","./sw":"DSXN","./sw.js":"DSXN","./ta":"+7/x","./ta.js":"+7/x","./te":"Nlnz","./te.js":"Nlnz","./tet":"gUgh","./tet.js":"gUgh","./tg":"5SNd","./tg.js":"5SNd","./th":"XzD+","./th.js":"XzD+","./tl-ph":"3LKG","./tl-ph.js":"3LKG","./tlh":"m7yE","./tlh.js":"m7yE","./tr":"k+5o","./tr.js":"k+5o","./tzl":"iNtv","./tzl.js":"iNtv","./tzm":"FRPF","./tzm-latn":"krPU","./tzm-latn.js":"krPU","./tzm.js":"FRPF","./ug-cn":"To0v","./ug-cn.js":"To0v","./uk":"ntHu","./uk.js":"ntHu","./ur":"uSe8","./ur.js":"uSe8","./uz":"XU1s","./uz-latn":"/bsm","./uz-latn.js":"/bsm","./uz.js":"XU1s","./vi":"0X8Q","./vi.js":"0X8Q","./x-pseudo":"e/KL","./x-pseudo.js":"e/KL","./yo":"YXlc","./yo.js":"YXlc","./zh-cn":"Vz2w","./zh-cn.js":"Vz2w","./zh-hk":"ZUyn","./zh-hk.js":"ZUyn","./zh-tw":"BbgG","./zh-tw.js":"BbgG"};function r(e){return n(o(e))}function o(e){var t=i[e];if(!(t+1))throw new Error("Cannot find module '"+e+"'.");return t}r.keys=function(){return Object.keys(i)},r.resolve=o,e.exports=r,r.id="uslO"},uzHm:function(e,t,n){var i=n("8UTl").h;e.exports=function(e){return i("svg",{"aria-hidden":"true",class:"UppyIcon",width:"100",height:"100",viewBox:"0 0 100 100"},i("rect",{x:"15",y:"15",width:"70",height:"70"}))}},v0Eu:function(e,t,n){e.exports=function(e,t){if("string"==typeof e){var n=e;if(!(e=window.document.querySelector(e)))throw new Error('"'+n+'" does not match any HTML elements')}if(!e)throw new Error('"'+e+'" is not a valid HTML element');var s;return"function"==typeof t&&(t={onDrop:t}),e.addEventListener("dragenter",a,!1),e.addEventListener("dragover",u,!1),e.addEventListener("dragleave",c,!1),e.addEventListener("drop",d,!1),function(){p(),e.removeEventListener("dragenter",a,!1),e.removeEventListener("dragover",u,!1),e.removeEventListener("dragleave",c,!1),e.removeEventListener("drop",d,!1)};function a(e){return t.onDragEnter&&t.onDragEnter(e),e.stopPropagation(),e.preventDefault(),!1}function u(n){if(n.stopPropagation(),n.preventDefault(),n.dataTransfer.items){var i=l(n.dataTransfer.items),r=i.filter(function(e){return"file"===e.kind}),o=i.filter(function(e){return"string"===e.kind});if(0===r.length&&!t.onDropText)return;if(0===o.length&&!t.onDrop)return;if(0===r.length&&0===o.length)return}return e.classList.add("drag"),clearTimeout(s),t.onDragOver&&t.onDragOver(n),n.dataTransfer.dropEffect="copy",!1}function c(e){return e.stopPropagation(),e.preventDefault(),t.onDragLeave&&t.onDragLeave(e),clearTimeout(s),s=setTimeout(p,50),!1}function d(e){e.stopPropagation(),e.preventDefault(),t.onDragLeave&&t.onDragLeave(e),clearTimeout(s),p();var n={x:e.clientX,y:e.clientY},a=e.dataTransfer.getData("text");if(a&&t.onDropText&&t.onDropText(a,n),e.dataTransfer.items){var u=l(e.dataTransfer.items).filter(function(e){return"file"===e.kind});if(0===u.length)return;r(u.map(function(e){return function(t){!function(e,t){var n=[];if(e.isFile)e.file(function(n){n.fullPath=e.fullPath,t(null,n)},function(e){t(e)});else if(e.isDirectory){var i=e.createReader();!function e(){i.readEntries(function(i){i.length>0?(n=n.concat(l(i)),e()):r(n.map(function(e){return function(t){!function(e,t){var n=[];if(e.isFile)e.file(function(n){n.fullPath=e.fullPath,t(null,n)},function(e){t(e)});else if(e.isDirectory){var i=e.createReader();!function e(){i.readEntries(function(i){i.length>0?(n=n.concat(l(i)),e()):r(n.map(function(e){return function(t){!function(e,t){var n=[];if(e.isFile)e.file(function(n){n.fullPath=e.fullPath,t(null,n)},function(e){t(e)});else if(e.isDirectory){var i=e.createReader();!function e(){i.readEntries(function(i){i.length>0?(n=n.concat(l(i)),e()):r(n.map(function(e){return function(t){o(e,t)}}),t)})}()}}(e,t)}}),t)})}()}}(e,t)}}),t)})}()}}(e.webkitGetAsEntry(),t)}}),function(e,r){if(e)throw e;t.onDrop&&t.onDrop(i(r),n)})}else{var c=l(e.dataTransfer.files);if(0===c.length)return;c.forEach(function(e){e.fullPath="/"+e.name}),t.onDrop&&t.onDrop(c,n)}return!1}function p(){e.classList.remove("drag")}};var i=n("6YxY"),r=n("HPjn");function o(e,t){var n=[];if(e.isFile){e.file(function(n){n.fullPath=e.fullPath;t(null,n)},function(e){t(e)})}else if(e.isDirectory){var i=e.createReader();s()}function s(){i.readEntries(function(e){if(e.length>0){n=n.concat(l(e));s()}else{a()}})}function a(){r(n.map(function(e){return function(t){o(e,t)}}),t)}}function l(e){return Array.prototype.slice.call(e||[],0)}},v0ZI:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.setItem=function(e,t){if(i)return localStorage.setItem(e,t)},t.getItem=function(e){if(i)return localStorage.getItem(e)},t.removeItem=function(e){if(i)return localStorage.removeItem(e)};var i=!1;try{i="localStorage"in window;var r="tusSupport";localStorage.setItem(r,localStorage.getItem(r))}catch(e){if(e.code!==e.SECURITY_ERR&&e.code!==e.QUOTA_EXCEEDED_ERR)throw e;i=!1}t.canStoreURLs=i},v8Dt:function(e,t,n){var i=n("pTUa");e.exports=function(e){return i(this,e).get(e)}},v9aJ:function(e,t,n){var i=n("M6Wl"),r=n("pQJ6")(i);e.exports=r},"vQ+N":function(e,t,n){"use strict";var i=n("rCTf"),r=n("mQmC");i.Observable.using=r.using},vevO:function(e,t,n){var i=Object.assign||function(e){for(var t=1;t0)return e.uppy.log("[GoldenRetriever] Successfully recovered "+n+" blobs from IndexedDB!"),e.uppy.info("Successfully recovered "+n+" files","success",3e3),e.onBlobsLoaded(t);e.uppy.log("[GoldenRetriever] No blobs found in IndexedDB")}).catch(function(t){e.uppy.log("[GoldenRetriever] Failed to recover blobs from IndexedDB","warning"),e.uppy.log(t)})},t.prototype.onBlobsLoaded=function(e){var t=this,n=[],r=i({},this.uppy.state.files);Object.keys(e).forEach(function(o){var l=t.uppy.getFile(o);if(l){var s=i({},l,{data:e[o],isRestored:!0});r[o]=s,t.uppy.generatePreview(s)}else n.push(o)}),this.uppy.setState({files:r}),this.uppy.emit("restored",this.savedPluginData),n.length&&this.deleteBlobs(n).then(function(){t.uppy.log("[GoldenRetriever] Cleaned up "+n.length+" old files")}).catch(function(e){t.uppy.log("[GoldenRetriever] Could not clean up "+n.length+" old files","warning"),t.uppy.log(e)})},t.prototype.deleteBlobs=function(e){var t=this,n=[];return e.forEach(function(e){t.ServiceWorkerStore&&n.push(t.ServiceWorkerStore.delete(e)),t.IndexedDBStore&&n.push(t.IndexedDBStore.delete(e))}),r.all(n)},t.prototype.install=function(){var e=this;this.loadFilesStateFromLocalStorage(),Object.keys(this.uppy.state.files).length>0?this.ServiceWorkerStore?(this.uppy.log("[GoldenRetriever] Attempting to load files from Service Worker..."),this.loadFileBlobsFromServiceWorker()):(this.uppy.log("[GoldenRetriever] Attempting to load files from Indexed DB..."),this.loadFileBlobsFromIndexedDB()):(this.uppy.log("[GoldenRetriever] No files need to be loaded, only restoring processing state..."),this.onBlobsLoaded([])),this.uppy.on("file-added",function(t){t.isRemote||(e.ServiceWorkerStore&&e.ServiceWorkerStore.put(t).catch(function(t){e.uppy.log("[GoldenRetriever] Could not store file","warning"),e.uppy.log(t)}),e.IndexedDBStore.put(t).catch(function(t){e.uppy.log("[GoldenRetriever] Could not store file","warning"),e.uppy.log(t)}))}),this.uppy.on("file-removed",function(t){e.ServiceWorkerStore&&e.ServiceWorkerStore.delete(t.id).catch(function(t){e.uppy.log("[GoldenRetriever] Failed to remove file","warning"),e.uppy.log(t)}),e.IndexedDBStore.delete(t.id).catch(function(t){e.uppy.log("[GoldenRetriever] Failed to remove file","warning"),e.uppy.log(t)})}),this.uppy.on("complete",function(t){var n=t.successful,i=n.map(function(e){return e.id});e.deleteBlobs(i).then(function(){e.uppy.log("[GoldenRetriever] Removed "+n.length+" files that finished uploading")}).catch(function(t){e.uppy.log("[GoldenRetriever] Could not remove "+n.length+" files that finished uploading","warning"),e.uppy.log(t)})}),this.uppy.on("state-update",this.saveFilesStateToLocalStorage),this.uppy.on("restored",function(){var t=e.uppy.getState().currentUploads;t&&Object.keys(t).forEach(function(n){e.uppy.restore(n,t[n])})})},t}(o)},vi0E:function(e,t,n){var i=n("f931")(Object.getPrototypeOf,Object);e.exports=i},vmzn:function(e,t,n){var i;function r(e){function n(){if(n.enabled){var e=n,r=+new Date;e.diff=r-(i||r),e.prev=i,e.curr=r,i=r;for(var o=new Array(arguments.length),l=0;l=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,n){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}})}(n("PJh5"))},w9Mt:function(e,t,n){var i=n("ZD0O"),r=n("2N6f")(function(e,t){return null==e?{}:i(e,t)});e.exports=r},w9ur:function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},wAkD:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS");t.OuterSubscriber=function(e){function t(){e.apply(this,arguments)}return i(t,e),t.prototype.notifyNext=function(e,t,n,i,r){this.destination.next(t)},t.prototype.notifyError=function(e,t){this.destination.error(e)},t.prototype.notifyComplete=function(e){this.destination.complete()},t}(r.Subscriber)},wC3Y:function(e,t,n){e.exports=n("qzUR").default},wIgY:function(e,t,n){!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 n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"\xe8";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}})}(n("PJh5"))},wK4m:function(e,t,n){var i=n("8UTl"),r=i.h,o=function(e){function t(n){!function(e,n){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this);var i=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return i.handleClick=i.handleClick.bind(i),i}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.handleClick=function(e){this.input.click()},t.prototype.render=function(){var e=this;return r("span",null,this.props.i18n(0===this.props.acquirers.length?"dropPaste":"dropPasteImport")," ",r("button",{type:"button",class:"uppy-Dashboard-browse",onclick:this.handleClick},this.props.i18n("browse")),r("input",{class:"uppy-Dashboard-input",hidden:"true","aria-hidden":"true",tabindex:"-1",type:"file",name:"files[]",multiple:"true",onchange:this.props.handleInputChange,value:"",ref:function(t){e.input=t}}))},t}(i.Component);e.exports=o},wPpW:function(e,t,n){!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"},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},i={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"],h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645","\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627","%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645","\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},r=function(e){return function(t,r,o,l){var s=n(t),a=i[e][n(t)];return 2===s&&(a=a[r?0:1]),a.replace(/%d/i,t)}},o=["\u064a\u0646\u0627\u064a\u0631","\u0641\u0628\u0631\u0627\u064a\u0631","\u0645\u0627\u0631\u0633","\u0623\u0628\u0631\u064a\u0644","\u0645\u0627\u064a\u0648","\u064a\u0648\u0646\u064a\u0648","\u064a\u0648\u0644\u064a\u0648","\u0623\u063a\u0633\u0637\u0633","\u0633\u0628\u062a\u0645\u0628\u0631","\u0623\u0643\u062a\u0648\u0628\u0631","\u0646\u0648\u0641\u0645\u0628\u0631","\u062f\u064a\u0633\u0645\u0628\u0631"];e.defineLocale("ar-ly",{months:o,monthsShort:o,weekdays:"\u0627\u0644\u0623\u062d\u062f_\u0627\u0644\u0625\u062b\u0646\u064a\u0646_\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062e\u0645\u064a\u0633_\u0627\u0644\u062c\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062a".split("_"),weekdaysShort:"\u0623\u062d\u062f_\u0625\u062b\u0646\u064a\u0646_\u062b\u0644\u0627\u062b\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062e\u0645\u064a\u0633_\u062c\u0645\u0639\u0629_\u0633\u0628\u062a".split("_"),weekdaysMin:"\u062d_\u0646_\u062b_\u0631_\u062e_\u062c_\u0633".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(e){return"\u0645"===e},meridiem:function(e,t,n){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}})}(n("PJh5"))},wSKX:function(e,t){e.exports=function(e){return e}},wT5f:function(e,t,n){!function(e){"use strict";function t(e,t,n){var i=" ";return(e%100>=20||e>=100&&e%100==0)&&(i=" de "),e+i+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"}[n]}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}})}(n("PJh5"))},wUn1:function(e,t,n){"use strict";var i=n("rCTf"),r=n("ack3");i.Observable.prototype.filter=r.filter},ww7A:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("9Avi");t.AnimationFrameScheduler=function(e){function t(){e.apply(this,arguments)}return i(t,e),t.prototype.flush=function(e){this.active=!0,this.scheduled=void 0;var t,n=this.actions,i=-1,r=n.length;e=e||n.shift();do{if(t=e.execute(e.state,e.delay))break}while(++i-1&&(l=l.replace(".","")),(i=l.search(/e/i))>0?(n<0&&(n=i),n+=+l.slice(i+1),l=l.substring(0,i)):n<0&&(n=l.length),i=0;"0"===l.charAt(i);i++);if(i===(o=l.length))t=[0],n=1;else{for(o--;"0"===l.charAt(o);)o--;for(n-=i,t=[],r=0;i<=o;i++,r++)t[r]=+l.charAt(i)}return n>22&&(t=t.splice(0,21),s=n-1,n=1),{digits:t,exponent:s,integerLen:n}}(o);n===f.Percent&&(d=function(e){if(0===e.digits[0])return e;var t=e.digits.length-e.integerLen;return e.exponent?e.exponent+=2:(0===t?e.digits.push(0,0):1===t&&e.digits.push(0),e.integerLen+=2),e}(d));var p=a.minInt,h=a.minFrac,m=a.maxFrac;if(i){var _=i.match(A);if(null===_)return l.error=i+" is not a valid digit info",l;var b=_[1],w=_[3],x=_[5];null!=b&&(p=Y(b)),null!=w&&(h=Y(w)),null!=x?m=Y(x):null!=w&&h>m&&(m=h)}!function(e,t,n){if(t>n)throw new Error("The minimum number of digits after fraction ("+t+") is higher than the maximum ("+n+").");var i=e.digits,r=i.length-e.integerLen,o=Math.min(Math.max(t,r),n),l=o+e.integerLen,s=i[l];if(l>0){i.splice(Math.max(e.integerLen,l));for(var a=l;a=5)if(l-1<0){for(var c=0;c>l;c--)i.unshift(0),e.integerLen++;i.unshift(1),e.integerLen++}else i[l-1]++;for(;r=p?i.pop():d=!1),t>=10?1:0},0);h&&(i.unshift(h),e.integerLen++)}(d,h,m);var M=d.digits,T=d.integerLen,L=d.exponent,k=[];for(c=M.every(function(e){return!e});T0?k=M.splice(T,M.length):(k=M,M=[0]);var C=[];for(M.length>=a.lgSize&&C.unshift(M.splice(-a.lgSize,M.length).join(""));M.length>a.gSize;)C.unshift(M.splice(-a.gSize,M.length).join(""));M.length&&C.unshift(M.join("")),u=C.join(v(t,r?g.CurrencyGroup:g.Group)),k.length&&(u+=v(t,r?g.CurrencyDecimal:g.Decimal)+k.join("")),L&&(u+=v(t,g.Exponential)+"+"+L)}else u=v(t,g.Infinity);return u=o<0&&!c?a.negPre+u+a.negSuf:a.posPre+u+a.posSuf,n===f.Currency&&null!==r?(l.str=u.replace("\xa4",r).replace("\xa4",""),l):n===f.Percent?(l.str=u.replace(new RegExp("%","g"),v(t,g.PercentSign)),l):(l.str=u,l)}(t,i=i||this._locale,f.Percent,n),o=r.str,l=r.error;if(l)throw R(e,l);return o},e}(),V=function(){},H=new i.InjectionToken("DocumentToken"),U=n("YaPU"),B=null;function z(){return B}var W,q={class:"className",innerHtml:"innerHTML",readonly:"readOnly",tabindex:"tabIndex"},G={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},Z={A:"1",B:"2",C:"3",D:"4",E:"5",F:"6",G:"7",H:"8",I:"9",J:"*",K:"+",M:"-",N:".",O:"/","`":"0","\x90":"NumLock"};i["\u0275global"].Node&&(W=i["\u0275global"].Node.prototype.contains||function(e){return!!(16&this.compareDocumentPosition(e))});var J,K=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.parse=function(e){throw new Error("parse not implemented")},t.makeCurrent=function(){var e;e=new t,B||(B=e)},t.prototype.hasProperty=function(e,t){return t in e},t.prototype.setProperty=function(e,t,n){e[t]=n},t.prototype.getProperty=function(e,t){return e[t]},t.prototype.invoke=function(e,t,n){var i;(i=e)[t].apply(i,n)},t.prototype.logError=function(e){window.console&&(console.error?console.error(e):console.log(e))},t.prototype.log=function(e){window.console&&window.console.log&&window.console.log(e)},t.prototype.logGroup=function(e){window.console&&window.console.group&&window.console.group(e)},t.prototype.logGroupEnd=function(){window.console&&window.console.groupEnd&&window.console.groupEnd()},Object.defineProperty(t.prototype,"attrToPropMap",{get:function(){return q},enumerable:!0,configurable:!0}),t.prototype.contains=function(e,t){return W.call(e,t)},t.prototype.querySelector=function(e,t){return e.querySelector(t)},t.prototype.querySelectorAll=function(e,t){return e.querySelectorAll(t)},t.prototype.on=function(e,t,n){e.addEventListener(t,n,!1)},t.prototype.onAndCancel=function(e,t,n){return e.addEventListener(t,n,!1),function(){e.removeEventListener(t,n,!1)}},t.prototype.dispatchEvent=function(e,t){e.dispatchEvent(t)},t.prototype.createMouseEvent=function(e){var t=this.getDefaultDocument().createEvent("MouseEvent");return t.initEvent(e,!0,!0),t},t.prototype.createEvent=function(e){var t=this.getDefaultDocument().createEvent("Event");return t.initEvent(e,!0,!0),t},t.prototype.preventDefault=function(e){e.preventDefault(),e.returnValue=!1},t.prototype.isPrevented=function(e){return e.defaultPrevented||null!=e.returnValue&&!e.returnValue},t.prototype.getInnerHTML=function(e){return e.innerHTML},t.prototype.getTemplateContent=function(e){return"content"in e&&this.isTemplateElement(e)?e.content:null},t.prototype.getOuterHTML=function(e){return e.outerHTML},t.prototype.nodeName=function(e){return e.nodeName},t.prototype.nodeValue=function(e){return e.nodeValue},t.prototype.type=function(e){return e.type},t.prototype.content=function(e){return this.hasProperty(e,"content")?e.content:e},t.prototype.firstChild=function(e){return e.firstChild},t.prototype.nextSibling=function(e){return e.nextSibling},t.prototype.parentElement=function(e){return e.parentNode},t.prototype.childNodes=function(e){return e.childNodes},t.prototype.childNodesAsList=function(e){for(var t=e.childNodes,n=new Array(t.length),i=0;i0},t.prototype.tagName=function(e){return e.tagName},t.prototype.attributeMap=function(e){for(var t=new Map,n=e.attributes,i=0;i0;s||(s=e[l]=[]);var u=Ie(t)?Zone.root:Zone.current;if(0===s.length)s.push({zone:u,handler:o});else{for(var c=!1,d=0;d-1},t}(pe),Ve=["alt","control","meta","shift"],He={alt:function(e){return e.altKey},control:function(e){return e.ctrlKey},meta:function(e){return e.metaKey},shift:function(e){return e.shiftKey}},Ue=function(e){function t(t){return e.call(this,t)||this}return Object(o.__extends)(t,e),t.prototype.supports=function(e){return null!=t.parseEventName(e)},t.prototype.addEventListener=function(e,n,i){var r=t.parseEventName(n),o=t.eventCallback(r.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(function(){return z().onAndCancel(e,r.domEventName,o)})},t.parseEventName=function(e){var n=e.toLowerCase().split("."),i=n.shift();if(0===n.length||"keydown"!==i&&"keyup"!==i)return null;var r=t._normalizeKey(n.pop()),o="";if(Ve.forEach(function(e){var t=n.indexOf(e);t>-1&&(n.splice(t,1),o+=e+".")}),o+=r,0!=n.length||0===r.length)return null;var l={};return l.domEventName=i,l.fullKey=o,l},t.getEventFullKey=function(e){var t="",n=z().getEventKey(e);return" "===(n=n.toLowerCase())?n="space":"."===n&&(n="dot"),Ve.forEach(function(i){i!=n&&(0,He[i])(e)&&(t+=i+".")}),t+=n},t.eventCallback=function(e,n,i){return function(r){t.getEventFullKey(r)===e&&i.runGuarded(function(){return n(r)})}},t._normalizeKey=function(e){switch(e){case"esc":return"escape";default:return e}},t}(pe),Be=function(){function e(e,t){this.defaultDoc=e,this.DOM=t;var n=this.DOM.createHtmlDocument();if(this.inertBodyElement=n.body,null==this.inertBodyElement){var i=this.DOM.createElement("html",n);this.inertBodyElement=this.DOM.createElement("body",n),this.DOM.appendChild(i,this.inertBodyElement),this.DOM.appendChild(n,i)}this.DOM.setInnerHTML(this.inertBodyElement,''),!this.inertBodyElement.querySelector||this.inertBodyElement.querySelector("svg")?(this.DOM.setInnerHTML(this.inertBodyElement,'

    '),this.getInertBodyElement=this.inertBodyElement.querySelector&&this.inertBodyElement.querySelector("svg img")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return e.prototype.getInertBodyElement_XHR=function(e){e=""+e+"";try{e=encodeURI(e)}catch(e){return null}var t=new XMLHttpRequest;t.responseType="document",t.open("GET","data:text/html;charset=utf-8,"+e,!1),t.send(null);var n=t.response.body;return n.removeChild(n.firstChild),n},e.prototype.getInertBodyElement_DOMParser=function(e){e=""+e+"";try{var t=(new window.DOMParser).parseFromString(e,"text/html").body;return t.removeChild(t.firstChild),t}catch(e){return null}},e.prototype.getInertBodyElement_InertDocument=function(e){var t=this.DOM.createElement("template");return"content"in t?(this.DOM.setInnerHTML(t,e),t):(this.DOM.setInnerHTML(this.inertBodyElement,e),this.defaultDoc.documentMode&&this.stripCustomNsAttrs(this.inertBodyElement),this.inertBodyElement)},e.prototype.stripCustomNsAttrs=function(e){var t=this;this.DOM.attributeMap(e).forEach(function(n,i){"xmlns:ns1"!==i&&0!==i.indexOf("ns1:")||t.DOM.removeAttribute(e,i)});for(var n=0,i=this.DOM.childNodesAsList(e);n")):this.sanitizedSomething=!0},e.prototype.endElement=function(e){var t=this.DOM.nodeName(e).toLowerCase();et.hasOwnProperty(t)&&!$e.hasOwnProperty(t)&&(this.buf.push(""))},e.prototype.chars=function(e){this.buf.push(st(e))},e.prototype.checkClobberedElement=function(e,t){if(t&&this.DOM.contains(e,t))throw new Error("Failed to sanitize html because the element is clobbered: "+this.DOM.getOuterHTML(e));return t},e}(),ot=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,lt=/([^\#-~ |!])/g;function st(e){return e.replace(/&/g,"&").replace(ot,function(e){return"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";"}).replace(lt,function(e){return"&#"+e.charCodeAt(0)+";"}).replace(//g,">")}var at=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:calc|attr))\\([-0-9.%, #a-zA-Z]+\\))$","g"),ut=/^url\(([^)]+)\)$/,ct=function(){},dt=function(e){function t(t){var n=e.call(this)||this;return n._doc=t,n}return Object(o.__extends)(t,e),t.prototype.sanitize=function(e,t){if(null==t)return null;switch(e){case i.SecurityContext.NONE:return t;case i.SecurityContext.HTML:return t instanceof ht?t.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(t,"HTML"),function(e,t){var n=z(),r=null;try{Je=Je||new Be(e,n);var o=t?String(t):"";r=Je.getInertBodyElement(o);var l=5,s=o;do{if(0===l)throw new Error("Failed to sanitize html because the input is unstable");l--,o=s,s=n.getInnerHTML(r),r=Je.getInertBodyElement(o)}while(o!==s);var a=new rt,u=a.sanitizeChildren(n.getTemplateContent(r)||r);return Object(i.isDevMode)()&&a.sanitizedSomething&&n.log("WARNING: sanitizing HTML stripped some content (see http://g.co/ng/security#xss)."),u}finally{if(r)for(var c=n.getTemplateContent(r)||r,d=0,p=n.childNodesAsList(c);d0){var i=e.slice(0,t),r=e.slice(t+1).trim();n.set(i,r)}}),n},e.prototype.append=function(e,t){var n=this.getAll(e);null===n?this.set(e,t):n.push(t)},e.prototype.delete=function(e){var t=e.toLowerCase();this._normalizedNames.delete(t),this._headers.delete(t)},e.prototype.forEach=function(e){var t=this;this._headers.forEach(function(n,i){return e(n,t._normalizedNames.get(i),t._headers)})},e.prototype.get=function(e){var t=this.getAll(e);return null===t?null:t.length>0?t[0]:null},e.prototype.has=function(e){return this._headers.has(e.toLowerCase())},e.prototype.keys=function(){return Array.from(this._normalizedNames.values())},e.prototype.set=function(e,t){Array.isArray(t)?t.length&&this._headers.set(e.toLowerCase(),[t.join(",")]):this._headers.set(e.toLowerCase(),[t]),this.mayBeSetNormalizedName(e)},e.prototype.values=function(){return Array.from(this._headers.values())},e.prototype.toJSON=function(){var e=this,t={};return this._headers.forEach(function(n,i){var r=[];n.forEach(function(e){return r.push.apply(r,e.split(","))}),t[e._normalizedNames.get(i)]=r}),t},e.prototype.getAll=function(e){return this.has(e)&&this._headers.get(e.toLowerCase())||null},e.prototype.entries=function(){throw new Error('"entries" method is not implemented on Headers class')},e.prototype.mayBeSetNormalizedName=function(e){var t=e.toLowerCase();this._normalizedNames.has(t)||this._normalizedNames.set(t,e)},e}(),St=function(){function e(e){void 0===e&&(e={});var t=e.body,n=e.status,i=e.headers,r=e.statusText,o=e.type,l=e.url;this.body=null!=t?t:null,this.status=null!=n?n:null,this.headers=null!=i?i:null,this.statusText=null!=r?r:null,this.type=null!=o?o:null,this.url=null!=l?l:null}return e.prototype.merge=function(t){return new e({body:t&&null!=t.body?t.body:this.body,status:t&&null!=t.status?t.status:this.status,headers:t&&null!=t.headers?t.headers:this.headers,statusText:t&&null!=t.statusText?t.statusText:this.statusText,type:t&&null!=t.type?t.type:this.type,url:t&&null!=t.url?t.url:this.url})},e}(),Et=function(e){function t(){return e.call(this,{status:200,statusText:"Ok",type:Tt.Default,headers:new Ct})||this}return Object(o.__extends)(t,e),t}(St),Ot=function(){};function Dt(e){if("string"!=typeof e)return e;switch(e.toUpperCase()){case"GET":return Mt.Get;case"POST":return Mt.Post;case"PUT":return Mt.Put;case"DELETE":return Mt.Delete;case"OPTIONS":return Mt.Options;case"HEAD":return Mt.Head;case"PATCH":return Mt.Patch}throw new Error('Invalid request method. The method "'+e+'" is not supported.')}var Pt=function(e){return e>=200&&e<300},It=function(){function e(){}return e.prototype.encodeKey=function(e){return jt(e)},e.prototype.encodeValue=function(e){return jt(e)},e}();function jt(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/gi,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%2B/gi,"+").replace(/%3D/gi,"=").replace(/%3F/gi,"?").replace(/%2F/gi,"/")}var Rt=function(){function e(e,t){void 0===e&&(e=""),void 0===t&&(t=new It),this.rawParams=e,this.queryEncoder=t,this.paramsMap=function(e){void 0===e&&(e="");var t=new Map;return e.length>0&&e.split("&").forEach(function(e){var n=e.indexOf("="),i=-1==n?[e,""]:[e.slice(0,n),e.slice(n+1)],r=i[0],o=i[1],l=t.get(r)||[];l.push(o),t.set(r,l)}),t}(e)}return e.prototype.clone=function(){var t=new e("",this.queryEncoder);return t.appendAll(this),t},e.prototype.has=function(e){return this.paramsMap.has(e)},e.prototype.get=function(e){var t=this.paramsMap.get(e);return Array.isArray(t)?t[0]:null},e.prototype.getAll=function(e){return this.paramsMap.get(e)||[]},e.prototype.set=function(e,t){if(void 0!==t&&null!==t){var n=this.paramsMap.get(e)||[];n.length=0,n.push(t),this.paramsMap.set(e,n)}else this.delete(e)},e.prototype.setAll=function(e){var t=this;e.paramsMap.forEach(function(e,n){var i=t.paramsMap.get(n)||[];i.length=0,i.push(e[0]),t.paramsMap.set(n,i)})},e.prototype.append=function(e,t){if(void 0!==t&&null!==t){var n=this.paramsMap.get(e)||[];n.push(t),this.paramsMap.set(e,n)}},e.prototype.appendAll=function(e){var t=this;e.paramsMap.forEach(function(e,n){for(var i=t.paramsMap.get(n)||[],r=0;r=200&&n.status<=299,n.statusText=t.statusText,n.headers=t.headers,n.type=t.type,n.url=t.url,n}return Object(o.__extends)(t,e),t.prototype.toString=function(){return"Response with status: "+this.status+" "+this.statusText+" for URL: "+this.url},t}(At),Nt=/^\)\]\}',?\n/,Ft=function(){function e(e,t,n){var i=this;this.request=e,this.response=new U.a(function(r){var o=t.build();o.open(Mt[e.method].toUpperCase(),e.url),null!=e.withCredentials&&(o.withCredentials=e.withCredentials);var l=function(){var t=1223===o.status?204:o.status,i=null;204!==t&&"string"==typeof(i="undefined"==typeof o.response?o.responseText:o.response)&&(i=i.replace(Nt,"")),0===t&&(t=i?200:0);var l,s=Ct.fromResponseHeaderString(o.getAllResponseHeaders()),a=("responseURL"in(l=o)?l.responseURL:/^X-Request-URL:/m.test(l.getAllResponseHeaders())?l.getResponseHeader("X-Request-URL"):null)||e.url,u=new St({body:i,status:t,headers:s,statusText:o.statusText||"OK",url:a});null!=n&&(u=n.merge(u));var c=new Yt(u);if(c.ok=Pt(t),c.ok)return r.next(c),void r.complete();r.error(c)},s=function(e){var t=new St({body:e,type:Tt.Error,status:o.status,statusText:o.statusText});null!=n&&(t=n.merge(t)),r.error(new Yt(t))};if(i.setDetectedContentType(e,o),null==e.headers&&(e.headers=new Ct),e.headers.has("Accept")||e.headers.append("Accept","application/json, text/plain, */*"),e.headers.forEach(function(e,t){return o.setRequestHeader(t,e.join(","))}),null!=e.responseType&&null!=o.responseType)switch(e.responseType){case kt.ArrayBuffer:o.responseType="arraybuffer";break;case kt.Json:o.responseType="json";break;case kt.Text:o.responseType="text";break;case kt.Blob:o.responseType="blob";break;default:throw new Error("The selected responseType is not supported")}return o.addEventListener("load",l),o.addEventListener("error",s),o.send(i.request.getBody()),function(){o.removeEventListener("load",l),o.removeEventListener("error",s),o.abort()}})}return e.prototype.setDetectedContentType=function(e,t){if(null==e.headers||null==e.headers.get("Content-Type"))switch(e.contentType){case Lt.NONE:break;case Lt.JSON:t.setRequestHeader("content-type","application/json");break;case Lt.FORM:t.setRequestHeader("content-type","application/x-www-form-urlencoded;charset=UTF-8");break;case Lt.TEXT:t.setRequestHeader("content-type","text/plain");break;case Lt.BLOB:var n=e.blob();n.type&&t.setRequestHeader("content-type",n.type)}},e}(),Vt=function(){function e(e,t){void 0===e&&(e="XSRF-TOKEN"),void 0===t&&(t="X-XSRF-TOKEN"),this._cookieName=e,this._headerName=t}return e.prototype.configureRequest=function(e){var t=z().getCookie(this._cookieName);t&&e.headers.set(this._headerName,t)},e}(),Ht=function(){function e(e,t,n){this._browserXHR=e,this._baseResponseOptions=t,this._xsrfStrategy=n}return e.prototype.createConnection=function(e){return this._xsrfStrategy.configureRequest(e),new Ft(e,this._browserXHR,this._baseResponseOptions)},e}(),Ut=function(){function e(e){void 0===e&&(e={});var t=e.method,n=e.headers,i=e.body,r=e.url,o=e.search,l=e.params,s=e.withCredentials,a=e.responseType;this.method=null!=t?Dt(t):null,this.headers=null!=n?n:null,this.body=null!=i?i:null,this.url=null!=r?r:null,this.params=this._mergeSearchParams(l||o),this.withCredentials=null!=s?s:null,this.responseType=null!=a?a:null}return Object.defineProperty(e.prototype,"search",{get:function(){return this.params},set:function(e){this.params=e},enumerable:!0,configurable:!0}),e.prototype.merge=function(t){return new e({method:t&&null!=t.method?t.method:this.method,headers:t&&null!=t.headers?t.headers:new Ct(this.headers),body:t&&null!=t.body?t.body:this.body,url:t&&null!=t.url?t.url:this.url,params:t&&this._mergeSearchParams(t.params||t.search),withCredentials:t&&null!=t.withCredentials?t.withCredentials:this.withCredentials,responseType:t&&null!=t.responseType?t.responseType:this.responseType})},e.prototype._mergeSearchParams=function(e){return e?e instanceof Rt?e.clone():"string"==typeof e?new Rt(e):this._parseParams(e):this.params},e.prototype._parseParams=function(e){var t=this;void 0===e&&(e={});var n=new Rt;return Object.keys(e).forEach(function(i){var r=e[i];Array.isArray(r)?r.forEach(function(e){return t._appendParam(i,e,n)}):t._appendParam(i,r,n)}),n},e.prototype._appendParam=function(e,t,n){"string"!=typeof t&&(t=JSON.stringify(t)),n.append(e,t)},e}(),Bt=function(e){function t(){return e.call(this,{method:Mt.Get,headers:new Ct})||this}return Object(o.__extends)(t,e),t}(Ut),zt=function(e){function t(t){var n=e.call(this)||this,i=t.url;n.url=t.url;var r,o=t.params||t.search;if(o&&(r="object"!=typeof o||o instanceof Rt?o.toString():function(e){var t=new Rt;return Object.keys(e).forEach(function(n){var i=e[n];i&&Array.isArray(i)?i.forEach(function(e){return t.append(n,e.toString())}):t.append(n,i.toString())}),t}(o).toString()).length>0){var l="?";-1!=n.url.indexOf("?")&&(l="&"==n.url[n.url.length-1]?"":"&"),n.url=i+l+r}return n._body=t.body,n.method=Dt(t.method),n.headers=new Ct(t.headers),n.contentType=n.detectContentType(),n.withCredentials=t.withCredentials,n.responseType=t.responseType,n}return Object(o.__extends)(t,e),t.prototype.detectContentType=function(){switch(this.headers.get("content-type")){case"application/json":return Lt.JSON;case"application/x-www-form-urlencoded":return Lt.FORM;case"multipart/form-data":return Lt.FORM_DATA;case"text/plain":case"text/html":return Lt.TEXT;case"application/octet-stream":return this._body instanceof Jt?Lt.ARRAY_BUFFER:Lt.BLOB;default:return this.detectContentTypeFromBody()}},t.prototype.detectContentTypeFromBody=function(){return null==this._body?Lt.NONE:this._body instanceof Rt?Lt.FORM:this._body instanceof Gt?Lt.FORM_DATA:this._body instanceof Zt?Lt.BLOB:this._body instanceof Jt?Lt.ARRAY_BUFFER:this._body&&"object"==typeof this._body?Lt.JSON:Lt.TEXT},t.prototype.getBody=function(){switch(this.contentType){case Lt.JSON:case Lt.FORM:return this.text();case Lt.FORM_DATA:return this._body;case Lt.TEXT:return this.text();case Lt.BLOB:return this.blob();case Lt.ARRAY_BUFFER:return this.arrayBuffer();default:return null}},t}(At),Wt=function(){},qt="object"==typeof window?window:Wt,Gt=qt.FormData||Wt,Zt=qt.Blob||Wt,Jt=qt.ArrayBuffer||Wt;function $t(e,t){return e.createConnection(t).response}function Kt(e,t,n,i){return e.merge(new Ut(t?{method:t.method||n,url:t.url||i,search:t.search,params:t.params,headers:t.headers,body:t.body,withCredentials:t.withCredentials,responseType:t.responseType}:{method:n,url:i}))}var Qt=function(){function e(e,t){this._backend=e,this._defaultOptions=t}return e.prototype.request=function(e,t){var n;if("string"==typeof e)n=$t(this._backend,new zt(Kt(this._defaultOptions,t,Mt.Get,e)));else{if(!(e instanceof zt))throw new Error("First argument must be a url string or Request instance.");n=$t(this._backend,e)}return n},e.prototype.get=function(e,t){return this.request(new zt(Kt(this._defaultOptions,t,Mt.Get,e)))},e.prototype.post=function(e,t,n){return this.request(new zt(Kt(this._defaultOptions.merge(new Ut({body:t})),n,Mt.Post,e)))},e.prototype.put=function(e,t,n){return this.request(new zt(Kt(this._defaultOptions.merge(new Ut({body:t})),n,Mt.Put,e)))},e.prototype.delete=function(e,t){return this.request(new zt(Kt(this._defaultOptions,t,Mt.Delete,e)))},e.prototype.patch=function(e,t,n){return this.request(new zt(Kt(this._defaultOptions.merge(new Ut({body:t})),n,Mt.Patch,e)))},e.prototype.head=function(e,t){return this.request(new zt(Kt(this._defaultOptions,t,Mt.Head,e)))},e.prototype.options=function(e,t){return this.request(new zt(Kt(this._defaultOptions,t,Mt.Options,e)))},e}();function Xt(){return new Vt}function en(e,t){return new Qt(e,t)}var tn=function(){},nn=n("BX3T");function rn(e){return!Object(nn.a)(e)&&e-parseFloat(e)+1>=0}var on=n("AMGY"),ln=function(e){function t(t,n){e.call(this,t,n),this.scheduler=t,this.pending=!1,this.work=n}return Object(o.__extends)(t,e),t.prototype.schedule=function(e,t){if(void 0===t&&(t=0),this.closed)return this;this.state=e,this.pending=!0;var n=this.id,i=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(i,n,t)),this.delay=t,this.id=this.id||this.requestAsyncId(i,this.id,t),this},t.prototype.requestAsyncId=function(e,t,n){return void 0===n&&(n=0),on.a.setInterval(e.flush.bind(e,this),n)},t.prototype.recycleAsyncId=function(e,t,n){if(void 0===n&&(n=0),null!==n&&this.delay===n&&!1===this.pending)return t;on.a.clearInterval(t)},t.prototype.execute=function(e,t){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},t.prototype._execute=function(e,t){var n=!1,i=void 0;try{this.work(e)}catch(e){n=!0,i=!!e&&e||new Error(e)}if(n)return this.unsubscribe(),i},t.prototype._unsubscribe=function(){var e=this.id,t=this.scheduler,n=t.actions,i=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==i&&n.splice(i,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null},t}(function(e){function t(t,n){e.call(this)}return Object(o.__extends)(t,e),t.prototype.schedule=function(e,t){return void 0===t&&(t=0),this},t}(n("VwZZ").a)),sn=new(function(e){function t(){e.apply(this,arguments),this.actions=[],this.active=!1,this.scheduled=void 0}return Object(o.__extends)(t,e),t.prototype.flush=function(e){var t=this.actions;if(this.active)t.push(e);else{var n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}},t}(function(){function e(t,n){void 0===n&&(n=e.now),this.SchedulerAction=t,this.now=n}return e.prototype.schedule=function(e,t,n){return void 0===t&&(t=0),new this.SchedulerAction(this,e).schedule(n,t)},e.now=Date.now?Date.now:function(){return+new Date},e}()))(ln);U.a.interval=function(e){function t(t,n){void 0===t&&(t=0),void 0===n&&(n=sn),e.call(this),this.period=t,this.scheduler=n,(!rn(t)||t<0)&&(this.period=0),n&&"function"==typeof n.schedule||(this.scheduler=sn)}return Object(o.__extends)(t,e),t.create=function(e,n){return void 0===e&&(e=0),void 0===n&&(n=sn),new t(e,n)},t.dispatch=function(e){var t=e.subscriber,n=e.period;t.next(e.index),t.closed||(e.index+=1,this.schedule(e,n))},t.prototype._subscribe=function(e){var n=this.period;e.add(this.scheduler.schedule(t.dispatch,n,{index:0,subscriber:e,period:n}))},t}(U.a).create;var an=n("Veqx");U.a.of=an.a.of;var un=n("Qnch");function cn(e,t,n){return void 0===n&&(n=Number.POSITIVE_INFINITY),Object(un.a)(e,t,n)(this)}U.a.prototype.mergeMap=cn,U.a.prototype.flatMap=cn;var dn=n("g5jc"),pn=function(){function e(e,t){var n=this;this.http=e,this.configService=t,this.initSubject=new dn.a,this.configService.getConfig(function(e){n.config=e,n.baseUrl=n.config.baseUrl,n.brandingAndPortalUrl=n.baseUrl+"/"+n.config.branding+"/"+n.config.portal,n.options=n.getOptionsClient(),n.emitInit()})}return Object.defineProperty(e.prototype,"getBrandingAndPortalUrl",{get:function(){return this.brandingAndPortalUrl},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"getBaseUrl",{get:function(){return this.baseUrl},enumerable:!0,configurable:!0}),e.prototype.waitForInit=function(e){var t=this.initSubject.subscribe(e);return this.emitInit(),t},e.prototype.getInitSubject=function(){return this.initSubject},e.prototype.emitInit=function(){this.config&&this.initSubject.next(this)},e.prototype.getConfig=function(){return this.config},e.prototype.extractData=function(e,t){void 0===t&&(t=null);var n=e.json();return t?n[t]||{}:n||{}},e.prototype.getOptions=function(e){var t=new Ct(e);return new Ut({headers:t})},e.prototype.getOptionsClient=function(e){return void 0===e&&(e={}),e["X-Source"]="jsclient",e["Content-Type"]="application/json;charset=utf-8",e["X-CSRF-Token"]=this.config.csrfToken,this.getOptions(e)},e}(),hn=(n("EN1B"),n("M4fF")),fn=n("+3/4"),mn=n("PIsA"),gn=n("tZ2B"),vn=function(e){function t(t,n){e.call(this),this.sources=t,this.resultSelector=n}return Object(o.__extends)(t,e),t.create=function(){for(var e=[],n=0;ne?{max:{max:e,actual:t.value}}:null}},e.required=function(e){return On(e.value)?{required:!0}:null},e.requiredTrue=function(e){return!0===e.value?null:{required:!0}},e.email=function(e){return Dn.test(e.value)?null:{email:!0}},e.minLength=function(e){return function(t){if(On(t.value))return null;var n=t.value?t.value.length:0;return ne?{maxlength:{requiredLength:e,actualLength:n}}:null}},e.pattern=function(t){return t?("string"==typeof t?(i="","^"!==t.charAt(0)&&(i+="^"),i+=t,"$"!==t.charAt(t.length-1)&&(i+="$"),n=new RegExp(i)):(i=t.toString(),n=t),function(e){if(On(e.value))return null;var t=e.value;return n.test(t)?null:{pattern:{requiredPattern:i,actualValue:t}}}):e.nullValidator;var n,i},e.nullValidator=function(e){return null},e.compose=function(e){if(!e)return null;var t=e.filter(In);return 0==t.length?null:function(e){return Rn(function(e,n){return t.map(function(t){return t(e)})}(e))}},e.composeAsync=function(e){if(!e)return null;var t=e.filter(In);return 0==t.length?null:function(e){var n=function(e,n){return t.map(function(t){return t(e)})}(e).map(jn);return Cn.call(_n(n),Rn)}},e}();function In(e){return null!=e}function jn(e){var t=Object(i["\u0275isPromise"])(e)?Mn(e):e;if(!Object(i["\u0275isObservable"])(t))throw new Error("Expected validator to return Promise or Observable.");return t}function Rn(e){var t=e.reduce(function(e,t){return null!=t?Object(o.__assign)({},e,t):e},{});return 0===Object.keys(t).length?null:t}var An=new i.InjectionToken("NgValueAccessor"),Yn=function(){function e(e,t){this._renderer=e,this._elementRef=t,this.onChange=function(e){},this.onTouched=function(){}}return e.prototype.writeValue=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"checked",e)},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",e)},e}(),Nn=new i.InjectionToken("CompositionEventMode"),Fn=function(){function e(e,t,n){var i;this._renderer=e,this._elementRef=t,this._compositionMode=n,this.onChange=function(e){},this.onTouched=function(){},this._composing=!1,null==this._compositionMode&&(this._compositionMode=(i=z()?z().getUserAgent():"",!/android (\d+)/.test(i.toLowerCase())))}return e.prototype.writeValue=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==e?"":e)},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",e)},e.prototype._handleInput=function(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e)},e.prototype._compositionStart=function(){this._composing=!0},e.prototype._compositionEnd=function(e){this._composing=!1,this._compositionMode&&this.onChange(e)},e}();function Vn(e){return e.validate?function(t){return e.validate(t)}:e}function Hn(e){return e.validate?function(t){return e.validate(t)}:e}var Un=function(){function e(e,t){this._renderer=e,this._elementRef=t,this.onChange=function(e){},this.onTouched=function(){}}return e.prototype.writeValue=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==e?"":e)},e.prototype.registerOnChange=function(e){this.onChange=function(t){e(""==t?null:parseFloat(t))}},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",e)},e}();function Bn(){throw new Error("unimplemented")}var zn=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._parent=null,t.name=null,t.valueAccessor=null,t._rawValidators=[],t._rawAsyncValidators=[],t}return Object(o.__extends)(t,e),Object.defineProperty(t.prototype,"validator",{get:function(){return Bn()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"asyncValidator",{get:function(){return Bn()},enumerable:!0,configurable:!0}),t}(Sn),Wn=function(){function e(){this._accessors=[]}return e.prototype.add=function(e,t){this._accessors.push([e,t])},e.prototype.remove=function(e){for(var t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)},e.prototype.select=function(e){var t=this;this._accessors.forEach(function(n){t._isSameGroup(n,e)&&n[1]!==e&&n[1].fireUncheck(e.value)})},e.prototype._isSameGroup=function(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name},e}(),qn=function(){function e(e,t,n,i){this._renderer=e,this._elementRef=t,this._registry=n,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return e.prototype.ngOnInit=function(){this._control=this._injector.get(zn),this._checkName(),this._registry.add(this._control,this)},e.prototype.ngOnDestroy=function(){this._registry.remove(this)},e.prototype.writeValue=function(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,"checked",this._state)},e.prototype.registerOnChange=function(e){var t=this;this._fn=e,this.onChange=function(){e(t.value),t._registry.select(t)}},e.prototype.fireUncheck=function(e){this.writeValue(e)},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",e)},e.prototype._checkName=function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)},e.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 ')},e}(),Gn=function(){function e(e,t){this._renderer=e,this._elementRef=t,this.onChange=function(e){},this.onTouched=function(){}}return e.prototype.writeValue=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"value",parseFloat(e))},e.prototype.registerOnChange=function(e){this.onChange=function(t){e(""==t?null:parseFloat(t))}},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",e)},e}();function Zn(e,t){return null==e?""+t:(t&&"object"==typeof t&&(t="Object"),(e+": "+t).slice(0,50))}var Jn=function(){function e(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=function(e){},this.onTouched=function(){},this._compareWith=i["\u0275looseIdentical"]}return Object.defineProperty(e.prototype,"compareWith",{set:function(e){if("function"!=typeof e)throw new Error("compareWith must be a function, but received "+JSON.stringify(e));this._compareWith=e},enumerable:!0,configurable:!0}),e.prototype.writeValue=function(e){this.value=e;var t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,"selectedIndex",-1);var n=Zn(t,e);this._renderer.setProperty(this._elementRef.nativeElement,"value",n)},e.prototype.registerOnChange=function(e){var t=this;this.onChange=function(n){t.value=t._getOptionValue(n),e(t.value)}},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",e)},e.prototype._registerOption=function(){return(this._idCounter++).toString()},e.prototype._getOptionId=function(e){for(var t=0,n=Array.from(this._optionMap.keys());t-1)}}else t=function(e,t){e._setSelected(!1)};this._optionMap.forEach(t)},e.prototype.registerOnChange=function(e){var t=this;this.onChange=function(n){var i=[];if(n.hasOwnProperty("selectedOptions"))for(var r=n.selectedOptions,o=0;o1?"path: '"+e.path.join(" -> ")+"'":e.path[0]?"name: '"+e.path+"'":"unspecified name attribute",new Error(t+" "+n)}function li(e){return null!=e?Pn.compose(e.map(Vn)):null}function si(e){return null!=e?Pn.composeAsync(e.map(Hn)):null}function ai(e,t){if(!e.hasOwnProperty("model"))return!1;var n=e.model;return!!n.isFirstChange()||!Object(i["\u0275looseIdentical"])(t,n.currentValue)}var ui=[Yn,Gn,Un,Jn,Qn,qn];function ci(e,t){e._syncPendingControls(),t.forEach(function(e){var t=e.control;"submit"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)})}function di(e,t){if(!t)return null;Array.isArray(t)||oi(e,"Value accessor was not provided as an array for form control with");var n=void 0,i=void 0,r=void 0;return t.forEach(function(t){var o;t.constructor===Fn?n=t:(o=t,ui.some(function(e){return o.constructor===e})?(i&&oi(e,"More than one built-in value accessor matches form control with"),i=t):(r&&oi(e,"More than one custom value accessor matches form control with"),r=t))}),r||i||n||(oi(e,"No valid value accessor for form control with"),null)}function pi(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var hi=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){this._checkParentType(),this.formDirective.addFormGroup(this)},t.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeFormGroup(this)},Object.defineProperty(t.prototype,"control",{get:function(){return this.formDirective.getFormGroup(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"path",{get:function(){return ei(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"validator",{get:function(){return li(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"asyncValidator",{get:function(){return si(this._asyncValidators)},enumerable:!0,configurable:!0}),t.prototype._checkParentType=function(){},t}(En),fi=function(){function e(e){this._cd=e}return Object.defineProperty(e.prototype,"ngClassUntouched",{get:function(){return!!this._cd.control&&this._cd.control.untouched},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngClassTouched",{get:function(){return!!this._cd.control&&this._cd.control.touched},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngClassPristine",{get:function(){return!!this._cd.control&&this._cd.control.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngClassDirty",{get:function(){return!!this._cd.control&&this._cd.control.dirty},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngClassValid",{get:function(){return!!this._cd.control&&this._cd.control.valid},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngClassInvalid",{get:function(){return!!this._cd.control&&this._cd.control.invalid},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngClassPending",{get:function(){return!!this._cd.control&&this._cd.control.pending},enumerable:!0,configurable:!0}),e}(),mi=function(e){function t(t){return e.call(this,t)||this}return Object(o.__extends)(t,e),t}(fi),gi=function(e){function t(t){return e.call(this,t)||this}return Object(o.__extends)(t,e),t}(fi);function vi(e){var t=_i(e)?e.validators:e;return Array.isArray(t)?li(t):t||null}function yi(e,t){var n=_i(t)?t.asyncValidators:e;return Array.isArray(n)?si(n):n||null}function _i(e){return null!=e&&!Array.isArray(e)&&"object"==typeof e}var bi=function(){function e(e,t){this.validator=e,this.asyncValidator=t,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return Object.defineProperty(e.prototype,"parent",{get:function(){return this._parent},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"valid",{get:function(){return"VALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"invalid",{get:function(){return"INVALID"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"pending",{get:function(){return"PENDING"==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"disabled",{get:function(){return"DISABLED"===this.status},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"enabled",{get:function(){return"DISABLED"!==this.status},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"dirty",{get:function(){return!this.pristine},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"untouched",{get:function(){return!this.touched},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"updateOn",{get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"},enumerable:!0,configurable:!0}),e.prototype.setValidators=function(e){this.validator=vi(e)},e.prototype.setAsyncValidators=function(e){this.asyncValidator=yi(e)},e.prototype.clearValidators=function(){this.validator=null},e.prototype.clearAsyncValidators=function(){this.asyncValidator=null},e.prototype.markAsTouched=function(e){void 0===e&&(e={}),this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)},e.prototype.markAsUntouched=function(e){void 0===e&&(e={}),this.touched=!1,this._pendingTouched=!1,this._forEachChild(function(e){e.markAsUntouched({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)},e.prototype.markAsDirty=function(e){void 0===e&&(e={}),this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)},e.prototype.markAsPristine=function(e){void 0===e&&(e={}),this.pristine=!0,this._pendingDirty=!1,this._forEachChild(function(e){e.markAsPristine({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)},e.prototype.markAsPending=function(e){void 0===e&&(e={}),this.status="PENDING",this._parent&&!e.onlySelf&&this._parent.markAsPending(e)},e.prototype.disable=function(e){void 0===e&&(e={}),this.status="DISABLED",this.errors=null,this._forEachChild(function(t){t.disable(Object(o.__assign)({},e,{onlySelf:!0}))}),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(e),this._onDisabledChange.forEach(function(e){return e(!0)})},e.prototype.enable=function(e){void 0===e&&(e={}),this.status="VALID",this._forEachChild(function(t){t.enable(Object(o.__assign)({},e,{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(e),this._onDisabledChange.forEach(function(e){return e(!1)})},e.prototype._updateAncestors=function(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),this._parent._updatePristine(),this._parent._updateTouched())},e.prototype.setParent=function(e){this._parent=e},e.prototype.updateValueAndValidity=function(e){void 0===e&&(e={}),this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),"VALID"!==this.status&&"PENDING"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)},e.prototype._updateTreeValidity=function(e){void 0===e&&(e={emitEvent:!0}),this._forEachChild(function(t){return t._updateTreeValidity(e)}),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})},e.prototype._setInitialStatus=function(){this.status=this._allControlsDisabled()?"DISABLED":"VALID"},e.prototype._runValidator=function(){return this.validator?this.validator(this):null},e.prototype._runAsyncValidator=function(e){var t=this;if(this.asyncValidator){this.status="PENDING";var n=jn(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe(function(n){return t.setErrors(n,{emitEvent:e})})}},e.prototype._cancelExistingSubscription=function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()},e.prototype.setErrors=function(e,t){void 0===t&&(t={}),this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)},e.prototype.get=function(e){return function(e,t,n){return null==t?null:(t instanceof Array||(t=t.split(".")),t instanceof Array&&0===t.length?null:t.reduce(function(e,t){return e instanceof xi?e.controls[t]||null:e instanceof Mi&&e.at(t)||null},e))}(this,e)},e.prototype.getError=function(e,t){var n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null},e.prototype.hasError=function(e,t){return!!this.getError(e,t)},Object.defineProperty(e.prototype,"root",{get:function(){for(var e=this;e._parent;)e=e._parent;return e},enumerable:!0,configurable:!0}),e.prototype._updateControlsErrors=function(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)},e.prototype._initObservables=function(){this.valueChanges=new i.EventEmitter,this.statusChanges=new i.EventEmitter},e.prototype._calculateStatus=function(){return this._allControlsDisabled()?"DISABLED":this.errors?"INVALID":this._anyControlsHaveStatus("PENDING")?"PENDING":this._anyControlsHaveStatus("INVALID")?"INVALID":"VALID"},e.prototype._anyControlsHaveStatus=function(e){return this._anyControls(function(t){return t.status===e})},e.prototype._anyControlsDirty=function(){return this._anyControls(function(e){return e.dirty})},e.prototype._anyControlsTouched=function(){return this._anyControls(function(e){return e.touched})},e.prototype._updatePristine=function(e){void 0===e&&(e={}),this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)},e.prototype._updateTouched=function(e){void 0===e&&(e={}),this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)},e.prototype._isBoxedValue=function(e){return"object"==typeof e&&null!==e&&2===Object.keys(e).length&&"value"in e&&"disabled"in e},e.prototype._registerOnCollectionChange=function(e){this._onCollectionChange=e},e.prototype._setUpdateStrategy=function(e){_i(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)},e}(),wi=function(e){function t(t,n,i){void 0===t&&(t=null);var r=e.call(this,vi(n),yi(i,n))||this;return r._onChange=[],r._applyFormState(t),r._setUpdateStrategy(n),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r._initObservables(),r}return Object(o.__extends)(t,e),t.prototype.setValue=function(e,t){var n=this;void 0===t&&(t={}),this.value=this._pendingValue=e,this._onChange.length&&!1!==t.emitModelToViewChange&&this._onChange.forEach(function(e){return e(n.value,!1!==t.emitViewToModelChange)}),this.updateValueAndValidity(t)},t.prototype.patchValue=function(e,t){void 0===t&&(t={}),this.setValue(e,t)},t.prototype.reset=function(e,t){void 0===e&&(e=null),void 0===t&&(t={}),this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1},t.prototype._updateValue=function(){},t.prototype._anyControls=function(e){return!1},t.prototype._allControlsDisabled=function(){return this.disabled},t.prototype.registerOnChange=function(e){this._onChange.push(e)},t.prototype._clearChangeFns=function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}},t.prototype.registerOnDisabledChange=function(e){this._onDisabledChange.push(e)},t.prototype._forEachChild=function(e){},t.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))},t.prototype._applyFormState=function(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e},t}(bi),xi=function(e){function t(t,n,i){var r=e.call(this,vi(n),yi(i,n))||this;return r.controls=t,r._initObservables(),r._setUpdateStrategy(n),r._setUpControls(),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r}return Object(o.__extends)(t,e),t.prototype.registerControl=function(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)},t.prototype.addControl=function(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()},t.prototype.removeControl=function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(function(){}),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()},t.prototype.setControl=function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(function(){}),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()},t.prototype.contains=function(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled},t.prototype.setValue=function(e,t){var n=this;void 0===t&&(t={}),this._checkAllValuesPresent(e),Object.keys(e).forEach(function(i){n._throwIfControlMissing(i),n.controls[i].setValue(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)},t.prototype.patchValue=function(e,t){var n=this;void 0===t&&(t={}),Object.keys(e).forEach(function(i){n.controls[i]&&n.controls[i].patchValue(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)},t.prototype.reset=function(e,t){void 0===e&&(e={}),void 0===t&&(t={}),this._forEachChild(function(n,i){n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t),this._updatePristine(t),this._updateTouched(t)},t.prototype.getRawValue=function(){return this._reduceChildren({},function(e,t,n){return e[n]=t instanceof wi?t.value:t.getRawValue(),e})},t.prototype._syncPendingControls=function(){var e=this._reduceChildren(!1,function(e,t){return!!t._syncPendingControls()||e});return e&&this.updateValueAndValidity({onlySelf:!0}),e},t.prototype._throwIfControlMissing=function(e){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[e])throw new Error("Cannot find form control with name: "+e+".")},t.prototype._forEachChild=function(e){var t=this;Object.keys(this.controls).forEach(function(n){return e(t.controls[n],n)})},t.prototype._setUpControls=function(){var e=this;this._forEachChild(function(t){t.setParent(e),t._registerOnCollectionChange(e._onCollectionChange)})},t.prototype._updateValue=function(){this.value=this._reduceValue()},t.prototype._anyControls=function(e){var t=this,n=!1;return this._forEachChild(function(i,r){n=n||t.contains(r)&&e(i)}),n},t.prototype._reduceValue=function(){var e=this;return this._reduceChildren({},function(t,n,i){return(n.enabled||e.disabled)&&(t[i]=n.value),t})},t.prototype._reduceChildren=function(e,t){var n=e;return this._forEachChild(function(e,i){n=t(n,e,i)}),n},t.prototype._allControlsDisabled=function(){for(var e=0,t=Object.keys(this.controls);e0||this.disabled},t.prototype._checkAllValuesPresent=function(e){this._forEachChild(function(t,n){if(void 0===e[n])throw new Error("Must supply a value for form control with name: '"+n+"'.")})},t}(bi),Mi=function(e){function t(t,n,i){var r=e.call(this,vi(n),yi(i,n))||this;return r.controls=t,r._initObservables(),r._setUpdateStrategy(n),r._setUpControls(),r.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),r}return Object(o.__extends)(t,e),t.prototype.at=function(e){return this.controls[e]},t.prototype.push=function(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()},t.prototype.insert=function(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()},t.prototype.removeAt=function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(function(){}),this.controls.splice(e,1),this.updateValueAndValidity()},t.prototype.setControl=function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(function(){}),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()},Object.defineProperty(t.prototype,"length",{get:function(){return this.controls.length},enumerable:!0,configurable:!0}),t.prototype.setValue=function(e,t){var n=this;void 0===t&&(t={}),this._checkAllValuesPresent(e),e.forEach(function(e,i){n._throwIfControlMissing(i),n.at(i).setValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)},t.prototype.patchValue=function(e,t){var n=this;void 0===t&&(t={}),e.forEach(function(e,i){n.at(i)&&n.at(i).patchValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)},t.prototype.reset=function(e,t){void 0===e&&(e=[]),void 0===t&&(t={}),this._forEachChild(function(n,i){n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t),this._updatePristine(t),this._updateTouched(t)},t.prototype.getRawValue=function(){return this.controls.map(function(e){return e instanceof wi?e.value:e.getRawValue()})},t.prototype._syncPendingControls=function(){var e=this.controls.reduce(function(e,t){return!!t._syncPendingControls()||e},!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e},t.prototype._throwIfControlMissing=function(e){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(e))throw new Error("Cannot find form control at index "+e)},t.prototype._forEachChild=function(e){this.controls.forEach(function(t,n){e(t,n)})},t.prototype._updateValue=function(){var e=this;this.value=this.controls.filter(function(t){return t.enabled||e.disabled}).map(function(e){return e.value})},t.prototype._anyControls=function(e){return this.controls.some(function(t){return t.enabled&&e(t)})},t.prototype._setUpControls=function(){var e=this;this._forEachChild(function(t){return e._registerControl(t)})},t.prototype._checkAllValuesPresent=function(e){this._forEachChild(function(t,n){if(void 0===e[n])throw new Error("Must supply a value for form control at index: "+n+".")})},t.prototype._allControlsDisabled=function(){for(var e=0,t=this.controls;e0||this.disabled},t.prototype._registerControl=function(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)},t}(bi),Ti=Promise.resolve(null),Li=function(e){function t(t,n){var r=e.call(this)||this;return r.submitted=!1,r._directives=[],r.ngSubmit=new i.EventEmitter,r.form=new xi({},li(t),si(n)),r}return Object(o.__extends)(t,e),t.prototype.ngAfterViewInit=function(){this._setUpdateStrategy()},Object.defineProperty(t.prototype,"formDirective",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"controls",{get:function(){return this.form.controls},enumerable:!0,configurable:!0}),t.prototype.addControl=function(e){var t=this;Ti.then(function(){var n=t._findContainer(e.path);e.control=n.registerControl(e.name,e.control),ti(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),t._directives.push(e)})},t.prototype.getControl=function(e){return this.form.get(e.path)},t.prototype.removeControl=function(e){var t=this;Ti.then(function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name),pi(t._directives,e)})},t.prototype.addFormGroup=function(e){var t=this;Ti.then(function(){var n=t._findContainer(e.path),i=new xi({});ii(i,e),n.registerControl(e.name,i),i.updateValueAndValidity({emitEvent:!1})})},t.prototype.removeFormGroup=function(e){var t=this;Ti.then(function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name)})},t.prototype.getFormGroup=function(e){return this.form.get(e.path)},t.prototype.updateModel=function(e,t){var n=this;Ti.then(function(){n.form.get(e.path).setValue(t)})},t.prototype.setValue=function(e){this.control.setValue(e)},t.prototype.onSubmit=function(e){return this.submitted=!0,ci(this.form,this._directives),this.ngSubmit.emit(e),!1},t.prototype.onReset=function(){this.resetForm()},t.prototype.resetForm=function(e){void 0===e&&(e=void 0),this.form.reset(e),this.submitted=!1},t.prototype._setUpdateStrategy=function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)},t.prototype._findContainer=function(e){return e.pop(),e.length?this.form.get(e):this.form},t}(En),ki='\n

    \n \n
    \n\n In your class:\n\n this.myGroup = new FormGroup({\n firstName: new FormControl()\n });',Ci='\n
    \n
    \n \n
    \n
    \n\n In your class:\n\n this.myGroup = new FormGroup({\n person: new FormGroup({ firstName: new FormControl() })\n });',Si='\n
    \n
    \n \n
    \n
    ',Ei=function(){function e(){}return e.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 '+ki+'\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 ')},e.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 "+Ci+"\n\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\n\n "+Si)},e.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: ')},e.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 "+Ci+"\n\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\n\n "+Si)},e}(),Oi=function(e){function t(t,n,i){var r=e.call(this)||this;return r._parent=t,r._validators=n,r._asyncValidators=i,r}return Object(o.__extends)(t,e),t.prototype._checkParentType=function(){this._parent instanceof t||this._parent instanceof Li||Ei.modelGroupParentException()},t}(hi),Di=Promise.resolve(null),Pi=function(e){function t(t,n,r,o){var l=e.call(this)||this;return l.control=new wi,l._registered=!1,l.update=new i.EventEmitter,l._parent=t,l._rawValidators=n||[],l._rawAsyncValidators=r||[],l.valueAccessor=di(l,o),l}return Object(o.__extends)(t,e),t.prototype.ngOnChanges=function(e){this._checkForErrors(),this._registered||this._setUpControl(),"isDisabled"in e&&this._updateDisabled(e),ai(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)},t.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeControl(this)},Object.defineProperty(t.prototype,"path",{get:function(){return this._parent?ei(this.name,this._parent):[this.name]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"validator",{get:function(){return li(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"asyncValidator",{get:function(){return si(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),t.prototype.viewToModelUpdate=function(e){this.viewModel=e,this.update.emit(e)},t.prototype._setUpControl=function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0},t.prototype._setUpdateStrategy=function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)},t.prototype._isStandalone=function(){return!this._parent||!(!this.options||!this.options.standalone)},t.prototype._setUpStandalone=function(){ti(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})},t.prototype._checkForErrors=function(){this._isStandalone()||this._checkParentType(),this._checkName()},t.prototype._checkParentType=function(){!(this._parent instanceof Oi)&&this._parent instanceof hi?Ei.formGroupNameException():this._parent instanceof Oi||this._parent instanceof Li||Ei.modelParentException()},t.prototype._checkName=function(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||Ei.missingNameException()},t.prototype._updateValue=function(e){var t=this;Di.then(function(){t.control.setValue(e,{emitViewToModelChange:!1})})},t.prototype._updateDisabled=function(e){var t=this,n=e.isDisabled.currentValue,i=""===n||n&&"false"!==n;Di.then(function(){i&&!t.control.disabled?t.control.disable():!i&&t.control.disabled&&t.control.enable()})},t}(zn),Ii=function(){function e(){}return e.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 "+ki)},e.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 '+Ci+"\n\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\n\n "+Si)},e.missingFormException=function(){throw new Error("formGroup expects a FormGroup instance. Please pass one in.\n\n Example:\n\n "+ki)},e.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 "+Ci)},e.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 });')},e.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 ")},e}(),ji=function(e){function t(t,n,r){var o=e.call(this)||this;return o.update=new i.EventEmitter,o._rawValidators=t||[],o._rawAsyncValidators=n||[],o.valueAccessor=di(o,r),o}return Object(o.__extends)(t,e),Object.defineProperty(t.prototype,"isDisabled",{set:function(e){Ii.disabledAttrWarning()},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(e){this._isControlChanged(e)&&(ti(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),ai(e,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)},Object.defineProperty(t.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"validator",{get:function(){return li(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"asyncValidator",{get:function(){return si(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),t.prototype.viewToModelUpdate=function(e){this.viewModel=e,this.update.emit(e)},t.prototype._isControlChanged=function(e){return e.hasOwnProperty("form")},t}(zn),Ri=function(e){function t(t,n){var r=e.call(this)||this;return r._validators=t,r._asyncValidators=n,r.submitted=!1,r.directives=[],r.form=null,r.ngSubmit=new i.EventEmitter,r}return Object(o.__extends)(t,e),t.prototype.ngOnChanges=function(e){this._checkFormPresent(),e.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())},Object.defineProperty(t.prototype,"formDirective",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"control",{get:function(){return this.form},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"path",{get:function(){return[]},enumerable:!0,configurable:!0}),t.prototype.addControl=function(e){var t=this.form.get(e.path);return ti(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t},t.prototype.getControl=function(e){return this.form.get(e.path)},t.prototype.removeControl=function(e){pi(this.directives,e)},t.prototype.addFormGroup=function(e){var t=this.form.get(e.path);ii(t,e),t.updateValueAndValidity({emitEvent:!1})},t.prototype.removeFormGroup=function(e){},t.prototype.getFormGroup=function(e){return this.form.get(e.path)},t.prototype.addFormArray=function(e){var t=this.form.get(e.path);ii(t,e),t.updateValueAndValidity({emitEvent:!1})},t.prototype.removeFormArray=function(e){},t.prototype.getFormArray=function(e){return this.form.get(e.path)},t.prototype.updateModel=function(e,t){this.form.get(e.path).setValue(t)},t.prototype.onSubmit=function(e){return this.submitted=!0,ci(this.form,this.directives),this.ngSubmit.emit(e),!1},t.prototype.onReset=function(){this.resetForm()},t.prototype.resetForm=function(e){void 0===e&&(e=void 0),this.form.reset(e),this.submitted=!1},t.prototype._updateDomValue=function(){var e=this;this.directives.forEach(function(t){var n=e.form.get(t.path);t.control!==n&&(function(e,t){t.valueAccessor.registerOnChange(function(){return ri(t)}),t.valueAccessor.registerOnTouched(function(){return ri(t)}),t._rawValidators.forEach(function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),t._rawAsyncValidators.forEach(function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),e&&e._clearChangeFns()}(t.control,t),n&&ti(n,t),t.control=n)}),this.form._updateTreeValidity({emitEvent:!1})},t.prototype._updateRegistrations=function(){var e=this;this.form._registerOnCollectionChange(function(){return e._updateDomValue()}),this._oldForm&&this._oldForm._registerOnCollectionChange(function(){}),this._oldForm=this.form},t.prototype._updateValidators=function(){var e=li(this._validators);this.form.validator=Pn.compose([this.form.validator,e]);var t=si(this._asyncValidators);this.form.asyncValidator=Pn.composeAsync([this.form.asyncValidator,t])},t.prototype._checkFormPresent=function(){this.form||Ii.missingFormException()},t}(En),Ai=function(e){function t(t,n,i){var r=e.call(this)||this;return r._parent=t,r._validators=n,r._asyncValidators=i,r}return Object(o.__extends)(t,e),t.prototype._checkParentType=function(){Ni(this._parent)&&Ii.groupParentException()},t}(hi),Yi=function(e){function t(t,n,i){var r=e.call(this)||this;return r._parent=t,r._validators=n,r._asyncValidators=i,r}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){this._checkParentType(),this.formDirective.addFormArray(this)},t.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeFormArray(this)},Object.defineProperty(t.prototype,"control",{get:function(){return this.formDirective.getFormArray(this)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"path",{get:function(){return ei(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"validator",{get:function(){return li(this._validators)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"asyncValidator",{get:function(){return si(this._asyncValidators)},enumerable:!0,configurable:!0}),t.prototype._checkParentType=function(){Ni(this._parent)&&Ii.arrayParentException()},t}(En);function Ni(e){return!(e instanceof Ai||e instanceof Ri||e instanceof Yi)}var Fi=function(e){function t(t,n,r,o){var l=e.call(this)||this;return l._added=!1,l.update=new i.EventEmitter,l._parent=t,l._rawValidators=n||[],l._rawAsyncValidators=r||[],l.valueAccessor=di(l,o),l}return Object(o.__extends)(t,e),Object.defineProperty(t.prototype,"isDisabled",{set:function(e){Ii.disabledAttrWarning()},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(e){this._added||this._setUpControl(),ai(e,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))},t.prototype.ngOnDestroy=function(){this.formDirective&&this.formDirective.removeControl(this)},t.prototype.viewToModelUpdate=function(e){this.viewModel=e,this.update.emit(e)},Object.defineProperty(t.prototype,"path",{get:function(){return ei(this.name,this._parent)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"formDirective",{get:function(){return this._parent?this._parent.formDirective:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"validator",{get:function(){return li(this._rawValidators)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"asyncValidator",{get:function(){return si(this._rawAsyncValidators)},enumerable:!0,configurable:!0}),t.prototype._checkParentType=function(){!(this._parent instanceof Ai)&&this._parent instanceof hi?Ii.ngModelGroupException():this._parent instanceof Ai||this._parent instanceof Ri||this._parent instanceof Yi||Ii.controlParentException()},t.prototype._setUpControl=function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0},t}(zn),Vi=function(){function e(){}return e.prototype.group=function(e,t){void 0===t&&(t=null);var n=this._reduceControls(e);return new xi(n,null!=t?t.validator:null,null!=t?t.asyncValidator:null)},e.prototype.control=function(e,t,n){return new wi(e,t,n)},e.prototype.array=function(e,t,n){var i=this,r=e.map(function(e){return i._createControl(e)});return new Mi(r,t,n)},e.prototype._reduceControls=function(e){var t=this,n={};return Object.keys(e).forEach(function(i){n[i]=t._createControl(e[i])}),n},e.prototype._createControl=function(e){return e instanceof wi||e instanceof xi||e instanceof Mi?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)},e}(),Hi=function(){},Ui=function(){},Bi=function(){},zi=function(){},Wi=(n("yipP"),function(){function e(e){this.http=e,this.subjects={},this.subjects.get=new dn.a,this.initConfig()}return e.prototype.getConfig=function(e){var t=this.subjects.get.subscribe(e);return this.emitConfig(),t},e.prototype.emitConfig=function(){this.config&&this.subjects.get.next(this.config)},e.prototype.initConfig=function(){var e=this;this.http.get("/csrfToken").mergeMap(function(t){return e.csrfToken=t.json()._csrf,e.http.get("/dynamic/apiClientConfig?v="+(new Date).getTime())}).subscribe(function(t){e.config=e.extractData(t),e.config.csrfToken=e.csrfToken,console.log("ConfigService, initialized. "),e.emitConfig()})},e.prototype.extractData=function(e,t){void 0===t&&(t=null);var n=e.json();return t?n[t]||{}:n||{}},e}()),qi=function(){function e(e,t){this.translateI18Next=e,this.configService=t,this.subjects={},this.initTranslator()}return e.prototype.initTranslator=function(){var e=this;this.subjects.init=new dn.a;var t=(new Date).getTime();this.translateI18Next.init({debug:!0,returnNull:!1,returnEmptyString:!0,lng:"en",fallbackLng:"en",backend:{loadPath:"/locales/{{lng}}/{{ns}}.json?ts="+t}}).then(function(){console.log("Translator loaded..."),e.translatorReady=!0,e.translatorLoaded()})},e.prototype.translatorLoaded=function(){this.translatorReady&&this.subjects.init.next(this)},e.prototype.isReady=function(e){var t=this.subjects.init.subscribe(e);return this.translatorLoaded(),t},e.prototype.t=function(e){return this.translateI18Next.translate(e)},e}(),Gi=function(){function e(e,t){void 0===e&&(e={}),this.componentReactors=[],this.onValueUpdate=new i.EventEmitter,this.onValueLoaded=new i.EventEmitter,this.injector=t,this.translationService=this.getFromInjector(qi),this.setOptions(e),this.validators=null}return e.prototype.getFromInjector=function(e){return this.injector.get(e)},e.prototype.setOptions=function(e){var t=this;void 0===e&&(e={}),this.value=this.getTranslated(e.value,void 0),this.name=e.name||"",this.id=e.id||"",this.label=this.getTranslated(e.label,""),this.help=this.getTranslated(e.help,void 0),this.required=!!e.required,this.controlType=e.controlType||"",this.cssClasses=e.cssClasses||{},this.groupClasses=e.groupClasses||"",this.groupName=e.groupName||null,this.editMode=!hn.isUndefined(e.editMode)&&e.editMode,this.readOnly=!hn.isUndefined(e.readOnly)&&e.readOnly,this.onChange=e.onChange||null,this.publish=e.publish||null,this.subscribe=e.subscribe||null,this.visible=!!hn.isUndefined(e.visible)||e.visible,this.visibilityCriteria=e.visibilityCriteria,this.requiredIfHasValue=e.requiredIfHasValue||[],this.groupName&&(this.hasGroup=!0),this.options=e,this.hasControl=!0,this.validationMessages={},hn.forOwn(e.validationMessages||{},function(e,n){t.validationMessages[n]=t.getTranslated(e,e)}),this.defaultValue=this.getTranslated(e.defaultValue,void 0),!hn.isUndefined(this.value)&&!hn.isEmpty(this.value)||hn.isUndefined(this.defaultValue)||(this.value=this.defaultValue)},e.prototype.getTranslated=function(e,t){return hn.isEmpty(e)||hn.isUndefined(e)?t:hn.isFunction(e.startsWith)&&e.startsWith("@")&&this.translationService?this.translationService.t(e):e},Object.defineProperty(e.prototype,"isValid",{get:function(){return!(!this.form||!this.form.controls)&&this.form.controls[this.name].valid},enumerable:!0,configurable:!0}),e.prototype.createFormModel=function(e){return void 0===e&&(e=null),e&&(this.value=e),this.required&&(this.validators=Pn.required),this.formModel=new wi(this.value||"",this.validators),this.formModel},e.prototype.getGroup=function(e,t){this.fieldMap=t;var n=null;hn.set(t,this.getFullFieldName()+".field",this);var i=this.createFormModel();if(hn.set(t,this.getFullFieldName()+".control",i),this.hasGroup&&this.groupName){if(e[this.groupName])e[this.groupName].addControl(this.name,i);else{var r={};r[this.name]=i,e[this.groupName]=new xi(r)}n=e[this.groupName]}else this.hasControl&&(e[this.name]=i,n=e[this.name]);return n},e.prototype.triggerValidation=function(){this.formModel&&(this.formModel.markAsTouched(),this.formModel.updateValueAndValidity({onlySelf:!1,emitEvent:!1}))},e.prototype.valueNotNull=function(e){return!(hn.isNull(e)||hn.isArray(e)&&hn.isNull(e[0]))},e.prototype.setupEventHandlers=function(){var e=this,t=this.publish,n=this.subscribe;hn.isEmpty(this.formModel)||hn.isEmpty(t)||hn.forOwn(t,function(t,n){var r=t.modelEventSource,o=r?e.formModel[r]:null;o||(o=e.getEventEmitter(r,"this"))||(e[o]=new i.EventEmitter),o.subscribe(function(i){if(e.valueNotNull(i)){var r=i;hn.isEmpty(t.fields)||(hn.isArray(i)?(r=[],hn.each(i,function(e){if(!hn.isEmpty(e)){var n={};hn.each(t.fields,function(t){hn.forOwn(t,function(t,i){n[i]=hn.get(e,t)})}),r.push(n)}})):(r={},hn.isEmpty(i)||hn.each(t.fields,function(e){hn.forOwn(e,function(e,t){r[t]=hn.get(i,e)})}))),console.log("Emitting data:"),console.log(r),e.emitEvent(n,r,i)}})}),hn.isEmpty(n)||hn.forOwn(n,function(t,n){hn.forOwn(t,function(t,i){e.getEventEmitter(i,n).subscribe(function(n){var r=n;hn.isArray(n)?(r=[],hn.each(n,function(n){var i=n;hn.each(t,function(t){var n=hn.get(e,t.action);if(n){var r=n;if(-1==t.action.indexOf("."))r=n.bind(e);else{var o=t.action.substring(0,t.action.indexOf("."));r=n.bind(e[o])}i=r(i,t)}}),hn.isEmpty(i)||r.push(i)})):hn.each(t,function(t){var n=hn.get(e,t.action);if(n){var i=n;if(-1==t.action.indexOf("."))i=n.bind(e);else{var o=t.action.substring(0,t.action.indexOf("."));i=n.bind(e[o])}r=i(r,t)}}),hn.isUndefined(r)||e.reactEvent(i,r,n)})})})},e.prototype.getEventEmitter=function(e,t){return hn.get("this"==t?this:"form"==t?this.fieldMap._rootComp:this.fieldMap[t].field,e)},e.prototype.emitEvent=function(e,t,n){this[e].emit(t)},e.prototype.reactEvent=function(e,t,n){var i=this;this.value=t,this.formModel&&this.formModel.setValue(t,{onlySelf:!0,emitEvent:!1}),hn.each(this.componentReactors,function(r){r.reactEvent(e,t,n,i)})},e.prototype.setFieldMapEntry=function(e,t){hn.isUndefined(this.name)||hn.isEmpty(this.name)||hn.isNull(this.name)||hn.set(e,this.getFullFieldName()+".instance",t.instance)},e.prototype.getFullFieldName=function(e){return void 0===e&&(e=null),""+(e||this.name)},e.prototype.getControl=function(e,t){return void 0===e&&(e=null),void 0===t&&(t=null),hn.get(t||this.fieldMap,this.getFullFieldName(e)+".control")},e.prototype.setValue=function(e,t){void 0===t&&(t=!0),this.value=e,this.formModel.setValue(e,{onlySelf:!0,emitEvent:t})},e.prototype.toggleVisibility=function(){this.visible=!this.visible},e.prototype.setVisibility=function(e){if(hn.isObject(this.visibilityCriteria)&&"function"==this.visibilityCriteria.type){var t=hn.get(this,this.visibilityCriteria.action);if(t){var n=t;if(-1==this.visibilityCriteria.action.indexOf("."))n=t.bind(this);else{var i=this.visibilityCriteria.action.substring(0,this.visibilityCriteria.action.indexOf("."));n=t.bind(this[i])}this.visible=n(e)}}else this.visible=hn.isEqual(e,this.visibilityCriteria)},e.prototype.replaceValWithConfig=function(e){return hn.forOwn(this.appConfig,function(t,n){e=e.replace(new RegExp("@"+n,"g"),t)}),e},e.prototype.getConfigEntry=function(e,t){return hn.isUndefined(hn.get(this.appConfig,e))?t:hn.get(this.appConfig,e)},e.prototype.publishValueLoaded=function(){this.onValueLoaded.emit(this.value)},e.prototype.setRequiredAndClearValueOnFalse=function(e){this.required=e,e?(this.validators=Pn.required,this.formModel.setValidators(this.validators)):(hn.isFunction(this.validators)&&hn.isEqual(this.validators,Pn.required)&&(this.validators=null),this.formModel.clearValidators(),this.formModel.setValue(null),this.value=null)},e.prototype.setRequired=function(e){this.required=e,e?this.validators=Pn.required:hn.isFunction(this.validators)&&hn.isEqual(this.validators,Pn.required)?this.validators=null:hn.remove(this.validators,function(e){return hn.isEqual(e,Pn.required)}),this.validators?this.formModel.setValidators(this.validators):this.formModel.clearValidators()},e.prototype.setRequiredIfDependenciesHaveValue=function(e){var t=this,n=!1;hn.each(this.requiredIfHasValue,function(e){var i,r=t.fieldMap._rootComp.getFieldValue(e);i=hn.isArrayLike(r)?!hn.isEmpty(r):!hn.isUndefined(r)&&!hn.isNull(r),n=n||i}),this.setRequired(n)},e.prototype.asyncLoadData=function(){return U.a.of(null)},e}(),Zi=n("E9Gi"),Ji=n.n(Zi),$i=function(e){function t(t,n){return e.call(this,t,n)||this}return Object(o.__extends)(t,e),t.prototype.createFormModel=function(e){void 0===e&&(e=null)},t.prototype.getGroup=function(e,t){this.fieldMap=t,hn.set(t,this.getFullFieldName()+".field",this)},t.prototype.reactEvent=function(e,t,n){},t}(Gi),Ki=function(e){function t(t,n){var i=e.call(this,t,n)||this;if(i.selectOptions=[],i.storeValueAndLabel=!1,i.selectOptions=hn.map(t.options||[],function(e){return e.label=i.getTranslated(e.label,e.label),e.value=i.getTranslated(e.value,e.value),e}),t.storeValueAndLabel&&(i.storeValueAndLabel=!0,void 0==t.value)){var r=hn.find(i.selectOptions,function(e){return""==e.value});null!=r&&(i.value=r)}return i}return Object(o.__extends)(t,e),t.prototype.createFormModel=function(){var t=this;if("checkbox"==this.controlType){var n=[];return hn.map(this.selectOptions,function(e){hn.find(t.value,function(t){return t==e.value})&&n.push(new wi(e.value))}),new Mi(n)}return e.prototype.createFormModel.call(this)},t.prototype.nextOption=function(){var e=this;if("radio"==this.controlType){var t=0;hn.find(this.selectOptions,function(n,i){var r=n.value==e.value;return r&&(t=++i),r}),t>=this.selectOptions.length&&(t=0),this.setValue(this.selectOptions[t].value)}return this.value},t}(Gi),Qi=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.controlType="div",i.content=t.content||"",i.active=t.active||!1,i.type=t.type||"",i.isGroup=!0,i.hasControl=hn.isUndefined(i.groupName),hn.isEmpty(i.cssClasses)&&hn.startsWith(i.type,"h")&&(i.cssClasses=[i.type+"-header"]),i}return Object(o.__extends)(t,e),t.prototype.getGroup=function(e,t){return this.fieldMap=t,hn.set(t,this.getFullFieldName()+".field",this),e[this.name]=this.required?new xi({},Pn.required):new xi({}),hn.each(this.fields,function(n){n.getGroup(e,t)}),e[this.name]},t.prototype.createFormModel=function(e){var t=this;void 0===e&&(e=null);var n={};return hn.each(this.fields,function(e){var i=null;t.value&&(i=hn.get(t.value,e.name)),e.value=i,n[e.name]=e.createFormModel(i)}),this.formModel=this.required?new xi(n,Pn.required):new xi(n),this.formModel},t.prototype.setValue=function(e,t){var n=this;void 0===t&&(t=!0),this.value=e,hn.forOwn(e,function(e,i){hn.find(n.fields,function(e){return e.name==i}).setValue(e,t)})},t}(Gi),Xi=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.onTabChange=new i.EventEmitter,r.onAccordionCollapseExpand=new i.EventEmitter,r.expandAccordionsOnOpen=!1,r.allExpanded=!1,r.tabNavContainerClass=t.tabNavContainerClass||"col-md-2",r.tabNavClass=t.tabNavClass||"nav nav-pills nav-stacked",r.tabContentContainerClass=t.tabContentContainerClass||"col-md-10",r.tabContentClass=t.tabContentClass||"tab-content",r.accContainerClass=t.accContainerClass||"col-md-12",r.accClass=t.accClass||"panel panel-default",r.expandAccordionsOnOpen=t.expandAccordionsOnOpen||!1,r}return Object(o.__extends)(t,e),t}(Qi),er=function(e){function t(t,n){return e.call(this,t,n)||this}return Object(o.__extends)(t,e),t}(Qi),tr=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.datePickerOpts=t.datePickerOpts||!1,i.timePickerOpts=t.timePickerOpts||!1,i.hasClearButton=t.hasClearButton||!1,i.valueFormat=t.valueFormat||"YYYY-MM-DD",i.displayFormat=t.displayFormat||"YYYY-MM-DD",i.controlType="datetime",i.value=i.value?i.parseToDate(i.value):i.value,i.adjustStartRange=!hn.isUndefined(t.adjustStartRange)&&t.adjustStartRange,i}return Object(o.__extends)(t,e),t.prototype.formatValue=function(e){return console.log("Formatting value: "+e),e?Ji()(e).local().format(this.valueFormat):e},t.prototype.parseToDate=function(e){return Ji()(e,this.valueFormat).local().toDate()},t.prototype.formatValueForDisplay=function(){var e=window.navigator.language;return this.value?Ji()(this.value).locale(e).format(this.displayFormat):""},t.prototype.reactEvent=function(e,t,n){if(this.adjustStartRange){var i=Ji()(t),r=Ji()(this.formModel.value);r.isValid()&&!i.isAfter(r)||this.formModel.setValue(t);var o=hn.cloneDeep(this.datePickerOpts);o.startDate=t,this.datePickerOpts=o}},t}(Gi),nr=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.label=i.getTranslated(t.label,"Save"),i.closeOnSave=t.closeOnSave||!1,i.redirectLocation=t.redirectLocation||!1,i.cssClasses=t.cssClasses||"btn-primary",i.targetStep=t.targetStep||null,i.additionalData=t.additionalData||null,i.confirmationMessage=t.confirmationMessage?i.getTranslated(t.confirmationMessage,null):null,i.confirmationTitle=t.confirmationTitle?i.getTranslated(t.confirmationTitle,null):null,i.cancelButtonMessage=t.cancelButtonMessage?i.getTranslated(t.cancelButtonMessage,null):null,i.confirmButtonMessage=t.confirmButtonMessage?i.getTranslated(t.confirmButtonMessage,null):null,i.isDelete=t.isDelete,i}return Object(o.__extends)(t,e),t}($i),ir=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.label=i.getTranslated(t.label,"Cancel"),i}return Object(o.__extends)(t,e),t}(Gi),rr=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.tabs=[],i.prevLabel=i.getTranslated(t.prevLabel,"Previous"),i.nextLabel=i.getTranslated(t.nextLabel,"Next"),i.targetTabContainerId=t.targetTabContainerId,i.endDisplayMode="hidden"==t.endDisplayMode?"hidden":"disabled",i}return Object(o.__extends)(t,e),t.prototype.getTabs=function(){var e=this,t=this.getTargetTab(this.fieldMap._rootComp.formDef.fields);t?(hn.each(t.definition.fields,function(t){e.tabs.push(t.definition.id)}),this.currentTab=this.tabs[0]):console.log("Target Container Tab not found: "+this.targetTabContainerId)},t.prototype.getTargetTab=function(e){var t=this;return hn.find(e,function(e){return!(!e.definition||e.definition.id!=t.targetTabContainerId)||(e.definition&&e.definition.fields?t.getTargetTab(e.definition.fields):void 0)})},t.prototype.getCurrentTabIdx=function(){var e=this;return hn.findIndex(this.tabs,function(t){return t==e.currentTab})},t.prototype.getTabId=function(e){var t=this.getCurrentTabIdx()+e;return t>=0&&t=i.formModel.controls.length?i.addElem(e):i.setValueAtElem(t,e)})},t.prototype.removeAllElems=function(){var e=this;hn.each(this.fields,function(t,n){e.removeElem(n)})},t.prototype.reset=function(e,t){if(void 0===e&&(e=null),void 0===t&&(t=null),this.fields[0].setValue(null),this.fields.length>1)for(var n=1;n0&&(i.marginTop="0px",i.vocabField.initialValue=t,i.setupEventHandlers(),i.componentReactors.push(this))},t.prototype.moveUp=function(e,t){var n=t-1;n>=0&&(this.field.swap(t,n),0==n&&(this.field.fields[t].marginTop="",this.field.fields[n].marginTop=this.field.fields[n].baseMarginTop))},t.prototype.moveDown=function(e,t){var n=t+1;nthis.index},e.prototype.hasCompleted=function(){return this.array.length===this.index},e}(),po=function(e){function t(t,n,i){e.call(this,t),this.parent=n,this.observable=i,this.stillUnsubscribed=!0,this.buffer=[],this.isComplete=!1}return Object(o.__extends)(t,e),t.prototype[lo.a]=function(){return this},t.prototype.next=function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}},t.prototype.hasValue=function(){return this.buffer.length>0},t.prototype.hasCompleted=function(){return 0===this.buffer.length&&this.isComplete},t.prototype.notifyComplete=function(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()},t.prototype.notifyNext=function(e,t,n,i,r){this.buffer.push(t),this.parent.checkIterators()},t.prototype.subscribe=function(e,t){return Object(mn.a)(this,this.observable,this,t)},t}(gn.a);U.a.zip=function(){for(var e=[],t=0;t0?U.a.zip.apply(U.a,t):U.a.of(null)},t.prototype.createFormModel=function(e){return void 0===e&&(e=void 0),e&&(this.value=e),this.formModel=new wi(this.value||[]),this.value&&this.setValue(this.value),this.formModel},t.prototype.setValue=function(e){this.formModel.patchValue(e,{emitEvent:!1}),this.formModel.markAsTouched()},t.prototype.setEmptyValue=function(){return this.value=[],this.value},t}(Gi),fo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t}(pr),mo=function(e){function t(t,n,i){var r=e.call(this,t,n)||this;return r.configService=n,r.translator=i,r}return Object(o.__extends)(t,e),t.prototype.getAllDraftPlansCanEdit=function(){var e=this;return this.http.get(this.brandingAndPortalUrl+"/listRecords?recordType=rdmp&state=draft&editOnly=true&start=0&rows="+this.config.maxTransferRowsPerPage+"&ts="+Ji()().unix(),this.options).toPromise().then(function(t){return e.formatDates(e.extractData(t))})},t.prototype.getAllRecordsCanEdit=function(e,t){var n=this,i=this.brandingAndPortalUrl+"/listRecords?recordType="+e+"&editOnly=true&start=0&rows="+this.config.maxTransferRowsPerPage+"&ts="+Ji()().unix();return""!=t&&(i+="&state="+t),this.http.get(i,this.options).toPromise().then(function(e){return n.formatDates(n.extractData(e))})},t.prototype.getActivePlans=function(e){var t=this;return this.http.get(this.brandingAndPortalUrl+"/listRecords?state=active&start="+10*(e-1)+"&rows=10&ts="+Ji()().unix(),this.options).toPromise().then(function(e){return t.formatDates(t.extractData(e))})},t.prototype.getDraftPlans=function(e){var t=this;return this.http.get(this.brandingAndPortalUrl+"/listRecords?recordType=rdmp&state=draft&start="+10*(e-1)+"&rows=10&ts="+Ji()().unix(),this.options).toPromise().then(function(e){return t.formatDates(t.extractData(e))})},t.prototype.getRecords=function(e,t,n,i,r){var o=this;void 0===i&&(i=void 0),void 0===r&&(r=void 0);var l=10*(n-1);return e=hn.isEmpty(e)||hn.isUndefined(e)?"":"recordType="+e,i=hn.isEmpty(i)||hn.isUndefined(i)?"":"packageType="+i,r=hn.isEmpty(r)||hn.isUndefined(r)?"":"&sort="+r,t=hn.isEmpty(t)||hn.isUndefined(t)?"":"&state="+t,this.http.get(this.brandingAndPortalUrl+"/listRecords?"+e+i+t+r+"&start="+l+"&rows=10&ts="+Ji()().unix(),this.options).toPromise().then(function(e){return o.formatDates(o.extractData(e))})},t.prototype.formatDates=function(e){for(var t=e.items,n=0;n0},t}(pr),yo=n("nUok"),_o=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.newLocation={type:"url",location:"",notes:""},i.attachmentText="Add attachment(s)",i.dataTypes=[{label:"URL",value:"url"},{label:"Physical location",value:"physical"},{label:"File path",value:"file"},{label:"Attachment",value:"attachment"}],i.dataTypeLookup={url:"URL",physical:"Physical location",attachment:"Attachment",file:"File path"},i.accessDeniedObjects=[],i.locationAddText=i.getTranslated(t.locationAddText,null),i.editNotesButtonText=i.getTranslated(t.editNotesButtonText,"Edit"),i.editNotesTitle=i.getTranslated(t.editNotesTitle,"Edit Notes"),i.cancelEditNotesButtonText=i.getTranslated(t.cancelEditNotesButtonText,"Cancel"),i.applyEditNotesButtonText=i.getTranslated(t.applyEditNotesButtonText,"Apply"),i.editNotesCssClasses=t.editNotesCssClasses||"form-control",i.typeHeader=i.getTranslated(t.typeHeader,"Type"),i.locationHeader=i.getTranslated(t.locationHeader,"Location"),i.notesHeader=i.getTranslated(t.notesHeader,"Notes"),i.uppyDashboardNote=i.getTranslated(t.uppyDashboardNote,"Maximum upload size: 1 Gb per file"),i.columns=t.columns||[],i.maxFileSize=t.maxFileSize||null,i.maxNumberOfFiles=t.maxNumberOfFiles||null,i.allowedFileTypes=t.allowedFileTypes||null,i.value=t.value||i.setEmptyValue(),i.recordsService=i.getFromInjector(Vs),i}return Object(o.__extends)(t,e),t.prototype.setValue=function(e,t){void 0===t&&(t=!0),this.formModel.setValue(e,{emitEvent:t,emitModelToViewChange:!0}),this.formModel.markAsTouched(),this.formModel.markAsDirty()},t.prototype.setEmptyValue=function(){return this.value=[],this.value},t.prototype.addLocation=function(){this.value.push(this.newLocation),this.setValue(this.value),this.newLocation={type:"url",location:"",notes:""}},t.prototype.appendLocation=function(e){this.value.push(e),this.setValue(this.value,!0)},t.prototype.clearPendingAtt=function(e){hn.each(e,function(e){"attachment"==e.type&&hn.unset(e,"pending")})},t.prototype.removeLocation=function(e){hn.remove(this.value,function(t){return t.type==e.type&&t.name==e.name&&t.location==e.location}),this.setValue(this.value)},t}(Gi),bo=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.uppy=null,t.oid=null,t.editingNotes={notes:"",index:-1},t}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){var e=this.field.fieldMap._rootComp.oid;this.field.editMode&&((hn.isNull(e)||hn.isUndefined(e)||hn.isEmpty(e))&&(this.field.fieldMap._rootComp.getSubscription("recordCreated")||(console.log("Subscribing to record creation..... "+this.field.name),this.field.fieldMap._rootComp.subscribe("recordCreated",this.field.name,this.eventRecordCreate.bind(this)),this.initUppy(e))),this.initUppy(e))},t.prototype.ngAfterViewInit=function(){this.field.editMode&&jQuery(".uppy-Dashboard-input").attr("aria-label",this.field.label)},t.prototype.getDatalocations=function(){return this.field.value},t.prototype.eventRecordCreate=function(e){console.log("Created record triggered: "),console.log(e),this.field.fieldMap[this.field.name].instance.initUppy(e.oid)},t.prototype.tempClearPending=function(){var e=hn.cloneDeep(this.field.fieldMap._rootComp.form.value[this.field.name]);this.field.clearPendingAtt(e),this.field.fieldMap._rootComp.form.controls[this.field.name].setValue(e,{emitEvent:!0})},t.prototype.applyPendingChanges=function(e){e.success?this.field.fieldMap[this.field.name].field.value=this.field.fieldMap._rootComp.form.controls[this.field.name].value:(console.log("Resetting...."),this.field.fieldMap._rootComp.form.controls[this.field.name].setValue(this.field.fieldMap[this.field.name].field.value))},t.prototype.initUppy=function(e){var t=this;if(this.field.fieldMap[this.field.name].instance.oid=e,this.uppy)return console.log("Uppy already created... setting oid to: "+e),void(this.field.fieldMap[this.field.name].instance.uppy.getPlugin("Tus").opts.endpoint=this.field.recordsService.getBrandingAndPortalUrl+"/record/"+e+"/attach");var n=this.field.recordsService.getConfig(),i={debug:!0,autoProceed:!1,restrictions:{maxFileSize:this.field.maxFileSize,maxNumberOfFiles:this.field.maxNumberOfFiles,allowedFileTypes:this.field.allowedFileTypes}},r=this.field.uppyDashboardNote;console.debug("Using Uppy config:"),console.debug(JSON.stringify(i));var o={endpoint:this.field.recordsService.getBrandingAndPortalUrl+"/record/"+e+"/attach",headers:{"X-CSRF-Token":n.csrfToken}};console.debug("Using TUS config:::"),console.debug(JSON.stringify(o)),this.uppy=yo.Core(i),this.uppy.use(yo.Dashboard,{inline:!1,hideProgressAfterFinish:!0,note:r,metaFields:[{id:"notes",name:"Notes",placeholder:"Notes about this file."}]}).use(yo.Tus,o).run(),console.log(this.uppy),this.uppy.on("upload-success",function(e,n,i){console.debug("File info:"),console.debug(e),console.debug("Response:"),console.debug(n),console.debug("Upload URL:"+i);var r=i.split("/"),o=r[r.length-1],l={type:"attachment",pending:!0,location:r.slice(6,r.length).join("/"),notes:e.meta.notes,mimeType:e.type,name:e.meta.name,fileId:o,uploadUrl:i};console.debug("Adding new location:"),console.debug(l),t.field.appendLocation(l)}),this.field.fieldMap._rootComp.subscribe("onBeforeSave",this.field.name,function(e){console.log("Before saving record triggered.. "),t.field.fieldMap[t.field.name].instance.tempClearPending()}),this.field.fieldMap._rootComp.subscribe("recordSaved",this.field.name,function(e){console.log("Saved record triggered.. "),t.field.fieldMap[t.field.name].instance.applyPendingChanges(e)})},t.prototype.isAttachmentsDisabled=function(){return hn.isEmpty(this.oid)?(this.field.attachmentText="Save your record to attach files",!0):(this.field.attachmentText="Add attachment(s)",!1)},t.prototype.getAbsUrl=function(e){return this.field.recordsService.getBrandingAndPortalUrl+"/record/"+e},t.prototype.openModal=function(){this.uppy&&this.uppy.getPlugin("Dashboard")&&this.uppy.getPlugin("Dashboard").openModal()},t.prototype.editNotes=function(e,t){this.editingNotes={notes:e.notes,index:t},jQuery("#"+this.field.name+"_editnotes").modal("show")},t.prototype.hideEditNotes=function(){jQuery("#"+this.field.name+"_editnotes").modal("hide")},t.prototype.saveNotes=function(){jQuery("#"+this.field.name+"_editnotes").modal("hide"),this.field.value[this.editingNotes.index].notes=this.editingNotes.notes},t}(pr),wo=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.newLocation={type:"url",location:"",notes:""},i.dataTypes=[{label:"URL",value:"url"},{label:"Physical location",value:"physical"},{label:"File path",value:"file"},{label:"Attachment",value:"attachment"}],i.dataTypeLookup={url:"URL",physical:"Physical location",attachment:"Attachment",file:"File path"},i.accessDeniedObjects=[],i.columns=t.columns||[],i.editNotesButtonText=i.getTranslated(t.editNotesButtonText,"Edit"),i.editNotesTitle=i.getTranslated(t.editNotesTitle,"Edit Notes"),i.cancelEditNotesButtonText=i.getTranslated(t.cancelEditNotesButtonText,"Cancel"),i.applyEditNotesButtonText=i.getTranslated(t.applyEditNotesButtonText,"Apply"),i.editNotesCssClasses=t.editNotesCssClasses||"form-control",i.typeHeader=i.getTranslated(t.typeHeader,"Type"),i.locationHeader=i.getTranslated(t.locationHeader,"Location"),i.notesHeader=i.getTranslated(t.notesHeader,"Notes"),i.value=t.value||i.setEmptyValue(),i.recordsService=i.getFromInjector(Vs),i}return Object(o.__extends)(t,e),t.prototype.setValue=function(e,t){void 0===t&&(t=!0),this.formModel.setValue(e,{emitEvent:t,emitModelToViewChange:!0}),this.formModel.markAsTouched(),this.formModel.markAsDirty()},t.prototype.setEmptyValue=function(){return this.value=[],this.value},t.prototype.addLocation=function(){this.value.push(this.newLocation),this.setValue(this.value),this.newLocation={type:"url",location:"",notes:""}},t.prototype.appendLocation=function(e){this.value.push(e),this.setValue(this.value,!0)},t.prototype.clearPendingAtt=function(e){hn.each(e,function(e){"attachment"==e.type&&hn.unset(e,"pending")})},t.prototype.populateDataLocation=function(e,t){var n=this;console.log(e),this.recordsService.getRecordMeta(e).then(function(e){n.value=e.dataLocations})},t.prototype.removeLocation=function(e){hn.remove(this.value,function(t){return t.type==e.type&&t.name==e.name&&t.location==e.location}),this.setValue(this.value)},t}(Gi),xo=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.editingNotes={notes:"",index:-1},t}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){},t.prototype.selectAllLocations=function(e){hn.each(this.field.value,function(t){t.selected=e})},t.prototype.getDatalocations=function(){return this.field.value},t.prototype.getAbsUrl=function(e){return this.field.recordsService.getBrandingAndPortalUrl+"/record/"+e},t.prototype.editNotes=function(e,t){this.editingNotes={notes:e.notes,index:t},jQuery("#"+this.field.name+"_editnotes").modal("show")},t.prototype.hideEditNotes=function(){jQuery("#"+this.field.name+"_editnotes").modal("hide")},t.prototype.saveNotes=function(){jQuery("#"+this.field.name+"_editnotes").modal("hide"),this.field.value[this.editingNotes.index].notes=this.editingNotes.notes},t}(pr),Mo=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.initialised=!1,i.importDataString="",i.layerGeoJSON={},i.importFailed=!1,i.layers=[],i.drawnItems=new L.FeatureGroup,i.googleMaps=L.tileLayer("http://{s}.google.com/vt/lyrs=m&x={x}&y={y}&z={z}",{maxZoom:20,subdomains:["mt0","mt1","mt2","mt3"],detectRetina:!0}),i.googleHybrid=L.tileLayer("http://{s}.google.com/vt/lyrs=s,h&x={x}&y={y}&z={z}",{maxZoom:20,subdomains:["mt0","mt1","mt2","mt3"],detectRetina:!0}),i.masterDrawOptions={edit:{featureGroup:i.drawnItems}},i.defaultDrawOptions={position:"topright",edit:{featureGroup:i.drawnItems},draw:{marker:{icon:L.icon({iconSize:[25,41],iconAnchor:[13,41],iconUrl:"http://localhost:1500/default/rdmp/images/leaflet/marker-icon.png",shadowUrl:"http://localhost:1500/default/rdmp/images/leaflet/marker-shadow.png"})},circlemarker:!1,circle:!1}},i.drawOptions=i.defaultDrawOptions,i.masterLeafletOptions={layers:[i.googleMaps,i.drawnItems]},i.defaultLeafletOptions={zoom:4,center:L.latLng([-24.673148,134.074574])},i.leafletOptions=i.defaultLeafletOptions,i.layersControl={baseLayers:{"Google Maps":i.googleMaps,"Google Hybrid":i.googleHybrid}},i.clName="MapField",i.leafletOptions=t.leafletOptions||i.defaultLeafletOptions,i.leafletOptions=hn.merge(i.leafletOptions,i.masterLeafletOptions),i.drawOptions=t.drawOptions||i.drawOptions,i.drawOptions=hn.merge(i.drawOptions,i.masterDrawOptions),i.tabId=t.tabId||null,i.layerGeoJSON=t.value,i.mainTabId=t.mainTabId||null,i}return Object(o.__extends)(t,e),t.prototype.onMapReady=function(e){this.map=e;var t=this;this.registerMapEventHandlers(e),this.setValue(this.layerGeoJSON),null===this.tabId?(e.invalidateSize(),e.fitBounds(this.drawnItems.getBounds())):this.editMode?jQuery('a[data-toggle="tab"]').on("shown.bs.tab",function(n){n.target.href.split("#")[1]==t.tabId&&t.initMap(e,t)}):this.fieldMap._rootComp.getFieldWithId(this.mainTabId,this.fieldMap._rootComp.fields).onAccordionCollapseExpand.subscribe(function(n){1!=n.shown||n.tabId!=t.tabId||t.initialised||(t.initMap(e,t),t.initialised=!0)})},t.prototype.initMap=function(e,t){e.invalidateSize();try{e.fitBounds(this.drawnItems.getBounds())}catch(e){}},t.prototype.registerMapEventHandlers=function(e){var t=this;e.on(L.Draw.Event.CREATED,function(e){return t.layers.push(e.layer),t.layerGeoJSON=L.featureGroup(t.layers).toGeoJSON(),t.setValue(t.layerGeoJSON),!1}),e.on("draw:edited",function(e){var n=t;e.layers.eachLayer(function(e){var t=hn.findIndex(n.layers,function(t){return t._leaflet_id==e._leaflet_id});-1==t?n.layers.push(e):n.layers[t]=e})}),e.on("draw:editstop",function(e){t.layerGeoJSON=L.featureGroup(t.layers).toGeoJSON(),t.setValue(t.layerGeoJSON)}),e.on("draw:deletestop",function(e){t.layerGeoJSON=L.featureGroup(t.layers).toGeoJSON(),t.setValue(t.layerGeoJSON)}),e.on("draw:deleted",function(e){var n=t;e.layers.eachLayer(function(e){hn.remove(n.layers,function(t){return t._leaflet_id==e._leaflet_id})})})},t.prototype.drawLayers=function(){this.drawnItems.clearLayers();var e=L.geoJSON(this.layerGeoJSON);this.layers=[];var t=this;e.eachLayer(function(e){e.addTo(t.drawnItems),t.layers.push(e)})},t.prototype.postInit=function(e){hn.isEmpty(e)||(this.layerGeoJSON=e,this.drawLayers())},t.prototype.createFormModel=function(e){return void 0===e&&(e=void 0),e&&(this.layerGeoJSON=e),this.formModel=new wi(this.layerGeoJSON||{}),this.formModel},t.prototype.setValue=function(e){hn.isEmpty(e)||(this.layerGeoJSON=e,this.drawLayers(),this.formModel.patchValue(this.layerGeoJSON,{emitEvent:!1}),this.formModel.markAsTouched())},t.prototype.setEmptyValue=function(){return this.layerGeoJSON={},this.layerGeoJSON},t.prototype.importData=function(){var e=this;if(this.importDataString.length>0)try{if(0==this.importDataString.indexOf("<")){if(0==(n=omnivore.kml.parse(this.importDataString)).getLayers().length)return this.importFailed=!0,!1;var t=this;n.eachLayer(function(n){n.addTo(t.drawnItems),t.layers.push(n),t.layerGeoJSON=L.featureGroup(t.layers).toGeoJSON(),e.drawLayers(),t.map.fitBounds(t.drawnItems.getBounds())}),this.importDataString="",this.importFailed=!1}else{var n,i=this;(n=L.geoJSON(JSON.parse(this.importDataString))).eachLayer(function(t){t.addTo(i.drawnItems),i.layers.push(t),i.layerGeoJSON=L.featureGroup(i.layers).toGeoJSON(),e.drawLayers(),i.map.fitBounds(i.drawnItems.getBounds())}),this.importDataString="",this.importFailed=!1}this.layerGeoJSON=L.featureGroup(this.layers).toGeoJSON(),this.setValue(this.layerGeoJSON)}catch(e){this.importFailed=!0}return!1},t}(Gi),To=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.ngAfterViewInit=function(){this.field.editMode||this.field.initMap(this.field.map,this.field)},t}(pr),Lo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.clName="GenericGroupComponent",t}(Dr),ko=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.clName="RepeatableGroupComponent",t}(Pr),Co=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.configService=n,i}return Object(o.__extends)(t,e),t.prototype.getBrand=function(){return this.brandingAndPortalUrl},t.prototype.getWorkspaceTypes=function(){var e=this;return this.http.get(this.brandingAndPortalUrl+"/workspaces/types",this.options).toPromise().then(function(t){return e.extractData(t)})},t.prototype.getWorkspaceType=function(e){var t=this;return this.http.get(this.brandingAndPortalUrl+"/workspaces/types/"+e,this.options).toPromise().then(function(e){return t.extractData(e)})},t}(pn),So=function(){function e(e,t){this.componentFactoryResolver=e,this.app=t,this.disabledElements=[]}return Object.defineProperty(e.prototype,"isValid",{get:function(){return!(!this.form||!this.form.controls)&&this.form.controls[this.field.name].valid},enumerable:!0,configurable:!0}),e.prototype.isDisabled=function(){var e=this.field.options.disabledExpression;if(null!=e){var t={};t.imports=this.fieldMap._rootComp;var n=hn.template(e,t),i=jQuery(this.fieldElement.nativeElement.parentElement);return"true"==n()?(this.disabledElements=i.find("*:disabled"),i.find("input").prop("disabled",!0),"disabled"):("disabled"==jQuery(this.fieldElement.nativeElement).prop("disabled")&&(i.find("input").prop("disabled",!1),hn.each(this.disabledElements,function(e){return e.prop("disabled",!0)})),null)}return null},e.prototype.ngOnChanges=function(){if(this.field&&this.componentFactoryResolver){this.fieldAnchor.clear();var e=this.componentFactoryResolver.resolveComponentFactory(this.field.compClass),t=this.fieldAnchor.createComponent(e,void 0,this.app._injector);t.instance.injector=this.app._injector,t.instance.field=this.field,t.instance.form=this.form,t.instance.fieldMap=this.fieldMap,t.instance.parentId=this.parentId,this.fieldMap[this.field.name].instance=t.instance}},e}(),Eo=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.workspaceApps=[],i.workspaceTypeService=i.getFromInjector(Co),i.open=i.getTranslated(t.open,t.open),i.saveFirst=i.getTranslated(t.saveFirst,t.saveFirst),i.rdmp=void 0,i.workspaceApps=hn.map(t.defaultSelection||[],function(e){return e.label=i.getTranslated(e.label,e.label),e.name="",e}),i.appLink=i.workspaceTypeService.getBrand()+"/record/",i.workspaceTypeService.getWorkspaceTypes().then(function(e){if(!e.status)throw new Error("cannot get workspaces");i.workspaceApps=hn.concat(i.workspaceApps,e.workspaceTypes)}).catch(function(e){console.log(e)}),i}return Object(o.__extends)(t,e),t.prototype.init=function(){this.rdmp=this.fieldMap._rootComp.oid||void 0},t.prototype.registerEvents=function(){this.fieldMap._rootComp.recordCreated.subscribe(this.setOid.bind(this)),this.fieldMap._rootComp.recordSaved.subscribe(this.setOid.bind(this))},t.prototype.setOid=function(e){this.rdmp=e.oid},t.prototype.loadWorkspaceDetails=function(e){this.workspaceApp=e?hn.find(this.workspaceApps,function(t){return t.name==e}):null},t.prototype.createFormModel=function(){var t=this;if("checkbox"==this.controlType){var n=[];return hn.map(this.options,function(e){hn.find(t.value,function(t){return t==e.value})&&n.push(new wi(e.value))}),new Mi(n)}return e.prototype.createFormModel.call(this)},t}(Gi),Oo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.getLabel=function(e){var t=hn.find(this.field.options,function(t){return t.value==e});return t?t.label:""},t.clName="WorkspaceSelectorComponent",t}(pr),Do=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){this.field.init(),this.field.registerEvents()},t.prototype.saveAndOpenWorkspace=function(){var e=this;this.fieldMap._rootComp.onSubmit().subscribe(function(t){window.location.href=""+e.field.appLink+e.field.workspaceApp.name+"/edit?rdmp="+e.field.rdmp})},t.clName="WorkspaceSelectorFieldComponent",t}(Oo),Po=function(e){function t(t,n,i){var r=e.call(this,t,n)||this;return r.configService=n,r.translator=i,r}return Object(o.__extends)(t,e),t.prototype.getResourceDetails=function(e,t){var n=this;return this.http.get(this.brandingAndPortalUrl+"/ands/vocab/resourceDetails?uri="+e+"&vocab="+t,this.options).toPromise().then(function(e){return n.extractData(e)})},t}(pn),Io=n("y986"),jo=function(){if("undefined"==typeof localStorage||"undefined"==typeof console||"undefined"==typeof window)return function(){};if(!localStorage||!console||!window)return function(){};var e="background: #222; color: #bada55";function t(){return localStorage["mobx-angular-debug"]}window.mobxAngularDebug=function(t){t?(console.log("%c MobX will now log everything to the console",e),console.log("%c Right-click any element to see its dependency tree",e),localStorage["mobx-angular-debug"]=!0):delete localStorage["mobx-angular-debug"]},Object(Io.i)(function(e){return t()&&function(e,t){!1===n&&"undefined"!=typeof navigator&&-1===navigator.userAgent.indexOf("Chrome")&&(console.warn("The output of the MobX logger is optimized for Chrome"),n=!0);var o,p=!0===e.spyReportStart,v=!0===e.spyReportEnd;if(0===i?(o=!0,p&&!o&&(r=!0)):v&&r&&1===i?(o=!1,r=!1):o=!0!==r,o&&v)a(e.time);else if(o){var y=p?s:u;switch(e.type){case"action":y("%caction '%s' %s","color:dodgerblue",e.name,h("(",g(e.target))),u(e.arguments),d();break;case"transaction":y("%ctransaction '%s' %s","color:gray",e.name,h("(",g(e.target)));break;case"scheduled-reaction":y("%cscheduled async reaction '%s'","color:#10a210",f(e.object));break;case"reaction":y("%creaction '%s'","color:#10a210",f(e.object)),d();break;case"compute":s("%ccomputed '%s' %s","color:#10a210",f(e.object),h("(",g(e.target))),a();break;case"error":y("%cerror: %s","color:tomato",e.message),d(),function(){for(var e=0,t=l;e100?e.substr(0,97)+"...":e:h("(",g(e))}function g(e){if(null===e||void 0===e)return"";if(e&&"object"==typeof e){if(e&&e.$mobx)return e.$mobx.name;if(e.constructor)return e.constructor.name||"object"}return typeof e}return function(e,n,i){n.listen(e.rootNodes[0],"contextmenu",function(){t()&&console.log(Io.d.getDependencyTree(i))})}}(),Ro=function(){function e(e,t,n){this.templateRef=e,this.viewContainer=t,this.renderer=n,this.templateBindings={}}return e.prototype.ngOnInit=function(){this.view=this.viewContainer.createEmbeddedView(this.templateRef),this.dispose&&this.dispose(),this.shouldDetach()&&this.view.detach(),this.autoDetect(this.view),jo(this.view,this.renderer,this.dispose)},e.prototype.shouldDetach=function(){return this.mobxAutorun&&this.mobxAutorun.detach},e.prototype.autoDetect=function(e){var t=e._view.component?e._view.component.constructor.name+".detectChanges()":e._view.parentView.context.constructor.name+".detectChanges()";this.dispose=Object(Io.b)(t,function(){return e.detectChanges()})},e.prototype.ngOnDestroy=function(){this.dispose&&this.dispose()},e}(),Ao=(this&&this.__extends||Object.setPrototypeOf||Array,this&&this.__extends||Object.setPrototypeOf||Array,function(){});function Yo(){for(var e=[],t=0;t0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isCollapsed",{get:function(){return!this.isExpanded},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isLeaf",{get:function(){return!this.hasChildren},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isRoot",{get:function(){return this.parent.data.virtual},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"realParent",{get:function(){return this.isRoot?null:this.parent},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"options",{get:function(){return this.treeModel.options},enumerable:!0,configurable:!0}),e.prototype.fireEvent=function(e){this.treeModel.fireEvent(e)},Object.defineProperty(e.prototype,"displayField",{get:function(){return this.getField("display")},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this.getField("id")},set:function(e){this.setField("id",e)},enumerable:!0,configurable:!0}),e.prototype.getField=function(e){return this.data[this.options[e+"Field"]]},e.prototype.setField=function(e,t){this.data[this.options[e+"Field"]]=t},e.prototype._findAdjacentSibling=function(e,t){void 0===t&&(t=!1);var n=this._getParentsChildren(t),i=n.indexOf(this);return n.length>i+e?n[i+e]:null},e.prototype.findNextSibling=function(e){return void 0===e&&(e=!1),this._findAdjacentSibling(1,e)},e.prototype.findPreviousSibling=function(e){return void 0===e&&(e=!1),this._findAdjacentSibling(-1,e)},e.prototype.getVisibleChildren=function(){return this.visibleChildren},Object.defineProperty(e.prototype,"visibleChildren",{get:function(){return(this.children||[]).filter(function(e){return!e.isHidden})},enumerable:!0,configurable:!0}),e.prototype.getFirstChild=function(e){void 0===e&&(e=!1);var t=e?this.visibleChildren:this.children;return tl()(t||[])},e.prototype.getLastChild=function(e){void 0===e&&(e=!1);var t=e?this.visibleChildren:this.children;return il()(t||[])},e.prototype.findNextNode=function(e,t){return void 0===e&&(e=!0),void 0===t&&(t=!1),e&&this.isExpanded&&this.getFirstChild(t)||this.findNextSibling(t)||this.parent&&this.parent.findNextNode(!1,t)},e.prototype.findPreviousNode=function(e){void 0===e&&(e=!1);var t=this.findPreviousSibling(e);return t?t._getLastOpenDescendant(e):this.realParent},e.prototype._getLastOpenDescendant=function(e){void 0===e&&(e=!1);var t=this.getLastChild(e);return this.isCollapsed||!t?this:t._getLastOpenDescendant(e)},e.prototype._getParentsChildren=function(e){return void 0===e&&(e=!1),this.parent&&(e?this.parent.getVisibleChildren():this.parent.children)||[]},e.prototype.getIndexInParent=function(e){return void 0===e&&(e=!1),this._getParentsChildren(e).indexOf(this)},e.prototype.isDescendantOf=function(e){return this===e||this.parent&&this.parent.isDescendantOf(e)},e.prototype.getNodePadding=function(){return this.options.levelPadding*(this.level-1)+"px"},e.prototype.getClass=function(){return[this.options.nodeClass(this),"tree-node-level-"+this.level].join(" ")},e.prototype.onDrop=function(e){this.mouseAction("drop",e.event,{from:e.element,to:{parent:this,index:0,dropOnNode:!0}})},e.prototype.allowDrag=function(){return this.options.allowDrag(this)},e.prototype.loadNodeChildren=function(){var e=this;return this.options.getChildren?Promise.resolve(this.options.getChildren(this)).then(function(t){t&&(e.setField("children",t),e._initChildren(),e.children.forEach(function(e){e.getField("isExpanded")&&e.hasChildren&&e.expand()}))}).then(function(){e.fireEvent({eventName:Xo.loadNodeChildren,node:e})}):Promise.resolve()},e.prototype.expand=function(){return this.isExpanded||this.toggleExpanded(),this},e.prototype.collapse=function(){return this.isExpanded&&this.toggleExpanded(),this},e.prototype.doForAll=function(e){var t=this;Promise.resolve(e(this)).then(function(){t.children&&t.children.forEach(function(t){return t.doForAll(e)})})},e.prototype.expandAll=function(){this.doForAll(function(e){return e.expand()})},e.prototype.collapseAll=function(){this.doForAll(function(e){return e.collapse()})},e.prototype.ensureVisible=function(){return this.realParent&&(this.realParent.expand(),this.realParent.ensureVisible()),this},e.prototype.toggleExpanded=function(){return this.setIsExpanded(!this.isExpanded),this},e.prototype.setIsExpanded=function(e){return this.hasChildren&&this.treeModel.setExpandedNode(this,e),this},e.prototype.autoLoadChildren=function(){var e=this;this.handler=Object(Io.h)(function(){return e.isExpanded},function(t){!e.children&&e.hasChildren&&t&&e.loadNodeChildren()},{fireImmediately:!0})},e.prototype.dispose=function(){this.children&&this.children.forEach(function(e){return e.dispose()}),this.handler&&this.handler()},e.prototype.setIsActive=function(e,t){return void 0===t&&(t=!1),this.treeModel.setActiveNode(this,e,t),e&&this.focus(this.options.scrollOnActivate),this},e.prototype.setIsSelected=function(e){return this.treeModel.options.useTriState?this.isLeaf?this.treeModel.setSelectedNode(this,e):this.visibleChildren.forEach(function(t){return t.setIsSelected(e)}):this.treeModel.setSelectedNode(this,e),this},e.prototype.toggleSelected=function(){return this.setIsSelected(!this.isSelected),this},e.prototype.toggleActivated=function(e){return void 0===e&&(e=!1),this.setIsActive(!this.isActive,e),this},e.prototype.setActiveAndVisible=function(e){return void 0===e&&(e=!1),this.setIsActive(!0,e).ensureVisible(),setTimeout(this.scrollIntoView.bind(this)),this},e.prototype.scrollIntoView=function(e){void 0===e&&(e=!1),this.treeModel.virtualScroll.scrollIntoView(this,e)},e.prototype.focus=function(e){void 0===e&&(e=!0);var t=this.treeModel.getFocusedNode();return this.treeModel.setFocusedNode(this),e&&this.scrollIntoView(),t&&this.fireEvent({eventName:Xo.blur,node:t}),this.fireEvent({eventName:Xo.focus,node:this}),this},e.prototype.blur=function(){var e=this.treeModel.getFocusedNode();return this.treeModel.setFocusedNode(null),e&&this.fireEvent({eventName:Xo.blur,node:this}),this},e.prototype.setIsHidden=function(e){this.treeModel.setIsHidden(this,e)},e.prototype.hide=function(){this.setIsHidden(!0)},e.prototype.show=function(){this.setIsHidden(!1)},e.prototype.mouseAction=function(e,t,n){void 0===n&&(n=null),this.treeModel.setFocus(!0);var i=this.options.actionMapping.mouse[e];i&&i(this.treeModel,this,t,n)},e.prototype.getSelfHeight=function(){return this.options.nodeHeight(this)},e.prototype._initChildren=function(){var t=this;this.children=this.getField("children").map(function(n,i){return new e(n,t,t.treeModel,i)})},Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isHidden",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isExpanded",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isActive",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isFocused",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isSelected",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isAllSelected",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"isPartiallySelected",null),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Array)],e.prototype,"children",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Number)],e.prototype,"index",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"position",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Number)],e.prototype,"height",void 0),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Number),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"level",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Array),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"path",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"visibleChildren",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setIsSelected",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"_initChildren",null),e}(),ul=n("C2y9"),cl=n.n(ul),dl=n("kbi+"),pl=n.n(dl),hl=n("JDN0"),fl=n.n(hl),ml=n("gGqR"),gl=n.n(ml),vl=function(){function e(){this.options=new Qo,this.eventNames=Object.keys(Xo),this.expandedNodeIds={},this.selectedLeafNodeIds={},this.activeNodeIds={},this.hiddenNodeIds={},this.focusedNodeId=null,this.firstUpdate=!0}return e.prototype.fireEvent=function(e){e.treeModel=this,this.events[e.eventName].emit(e),this.events.event.emit(e)},e.prototype.subscribe=function(e,t){this.events[e].subscribe(t)},e.prototype.getFocusedNode=function(){return this.focusedNode},e.prototype.getActiveNode=function(){return this.activeNodes[0]},e.prototype.getActiveNodes=function(){return this.activeNodes},e.prototype.getVisibleRoots=function(){return this.virtualRoot.visibleChildren},e.prototype.getFirstRoot=function(e){return void 0===e&&(e=!1),tl()(e?this.getVisibleRoots():this.roots)},e.prototype.getLastRoot=function(e){return void 0===e&&(e=!1),il()(e?this.getVisibleRoots():this.roots)},Object.defineProperty(e.prototype,"isFocused",{get:function(){return e.focusedTree===this},enumerable:!0,configurable:!0}),e.prototype.isNodeFocused=function(e){return this.focusedNode===e},e.prototype.isEmptyTree=function(){return this.roots&&0===this.roots.length},Object.defineProperty(e.prototype,"focusedNode",{get:function(){return this.focusedNodeId?this.getNodeById(this.focusedNodeId):null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"expandedNodes",{get:function(){var e=this,t=Object.keys(this.expandedNodeIds).filter(function(t){return e.expandedNodeIds[t]}).map(function(t){return e.getNodeById(t)});return cl()(t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"activeNodes",{get:function(){var e=this,t=Object.keys(this.activeNodeIds).filter(function(t){return e.activeNodeIds[t]}).map(function(t){return e.getNodeById(t)});return cl()(t)},enumerable:!0,configurable:!0}),e.prototype.getNodeByPath=function(e,t){if(void 0===t&&(t=null),!e)return null;if(t=t||this.virtualRoot,0===e.length)return t;if(!t.children)return null;var n=e.shift(),i=pl()(t.children,{id:n});return i?this.getNodeByPath(e,i):null},e.prototype.getNodeById=function(e){var t=e.toString();return this.getNodeBy(function(e){return e.id.toString()===t})},e.prototype.getNodeBy=function(e,t){if(void 0===t&&(t=null),!(t=t||this.virtualRoot).children)return null;var n=pl()(t.children,e);if(n)return n;for(var i=0,r=t.children;in?t.index-1:t.index;o.splice(s,0,l),i.treeModel.update(),t.parent.treeModel!==i.treeModel&&t.parent.treeModel.update(),this.fireEvent({eventName:Xo.moveNode,node:l,to:{parent:t.parent.data,index:s}})}},e.prototype.copyNode=function(e,t){var n=e.getIndexInParent();if(this._canMoveNode(e,n,t)){t.parent.getField("children")||t.parent.setField("children",[]);var i=t.parent.getField("children"),r=this.options.getNodeClone(e);i.splice(t.index,0,r),e.treeModel.update(),t.parent.treeModel!==e.treeModel&&t.parent.treeModel.update(),this.fireEvent({eventName:Xo.copyNode,node:r,to:{parent:t.parent.data,index:t.index}})}},e.prototype.getState=function(){return{expandedNodeIds:this.expandedNodeIds,selectedLeafNodeIds:this.selectedLeafNodeIds,activeNodeIds:this.activeNodeIds,hiddenNodeIds:this.hiddenNodeIds,focusedNodeId:this.focusedNodeId}},e.prototype.setState=function(e){e&&Object.assign(this,{expandedNodeIds:e.expandedNodeIds||{},selectedLeafNodeIds:e.selectedLeafNodeIds||{},activeNodeIds:e.activeNodeIds||{},hiddenNodeIds:e.hiddenNodeIds||{},focusedNodeId:e.focusedNodeId})},e.prototype.subscribeToState=function(e){var t=this;Object(Io.b)(function(){return e(t.getState())})},e.prototype._canMoveNode=function(e,t,n){return(e.parent!==n.parent||t!==n.index)&&!n.parent.isDescendantOf(e)},e.prototype._filterNode=function(e,t,n,i){var r=this,o=n(t);return t.children&&t.children.forEach(function(t){r._filterNode(e,t,n,i)&&(o=!0)}),o||(e[t.id]=!0),i&&o&&t.ensureVisible(),o},e.prototype._calculateExpandedNodes=function(e){var t,n=this;void 0===e&&(e=null),(e=e||this.virtualRoot).data[this.options.isExpandedField]&&(this.expandedNodeIds=Object.assign({},this.expandedNodeIds,((t={})[e.id]=!0,t))),e.children&&e.children.forEach(function(e){return n._calculateExpandedNodes(e)})},e.prototype._setActiveNodeSingle=function(e,t){var n,i=this;this.activeNodes.filter(function(t){return t!==e}).forEach(function(e){i.fireEvent({eventName:Xo.deactivate,node:e}),i.fireEvent({eventName:Xo.nodeDeactivate,node:e})}),this.activeNodeIds=t?((n={})[e.id]=!0,n):{}},e.prototype._setActiveNodeMulti=function(e,t){var n;this.activeNodeIds=Object.assign({},this.activeNodeIds,((n={})[e.id]=t,n))},e.focusedTree=null,Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Array)],e.prototype,"roots",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"expandedNodeIds",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"selectedLeafNodeIds",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"activeNodeIds",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"hiddenNodeIds",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"focusedNodeId",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",al)],e.prototype,"virtualRoot",void 0),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"focusedNode",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"expandedNodes",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"activeNodes",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setData",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"update",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setFocusedNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setFocus",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"doForAll",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"focusNextNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"focusPreviousNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"focusDrillDown",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"focusDrillUp",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setActiveNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setSelectedNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setExpandedNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"expandAll",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"collapseAll",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setIsHidden",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setHiddenNodeIds",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"filterNodes",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"clearFilter",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"moveNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"copyNode",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setState",null),e}(),yl=function(){function e(){this._draggedElement=null}return e.prototype.set=function(e){this._draggedElement=e},e.prototype.get=function(){return this._draggedElement},e.prototype.isDragging=function(){return!!this.get()},e}(),_l=function(){function e(e){var t=this;this.treeModel=e,this.yBlocks=0,this.x=0,this.viewportHeight=null,this.viewport=null,e.virtualScroll=this,this._dispose=[Object(Io.b)(function(){return t.fixScroll()})]}return Object.defineProperty(e.prototype,"y",{get:function(){return 150*this.yBlocks},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"totalHeight",{get:function(){return this.treeModel.virtualRoot?this.treeModel.virtualRoot.height:0},enumerable:!0,configurable:!0}),e.prototype.fireEvent=function(e){this.treeModel.fireEvent(e)},e.prototype.init=function(){var e=this,t=this.recalcPositions.bind(this);t(),this._dispose=this._dispose.concat([Object(Io.h)(function(){return e.treeModel.roots},t),Object(Io.h)(function(){return e.treeModel.expandedNodeIds},t),Object(Io.h)(function(){return e.treeModel.hiddenNodeIds},t)]),this.treeModel.subscribe(Xo.loadNodeChildren,t)},e.prototype.isEnabled=function(){return this.treeModel.options.useVirtualScroll},e.prototype._setYBlocks=function(e){this.yBlocks=e},e.prototype.recalcPositions=function(){this.treeModel.virtualRoot.height=this._getPositionAfter(this.treeModel.getVisibleRoots(),0)},e.prototype._getPositionAfter=function(e,t){var n=this,i=t;return e.forEach(function(e){e.position=i,i=n._getPositionAfterNode(e,i)}),i},e.prototype._getPositionAfterNode=function(e,t){var n=e.getSelfHeight()+t;return e.children&&e.isExpanded&&(n=this._getPositionAfter(e.visibleChildren,n)),e.height=n-t,n},e.prototype.clear=function(){this._dispose.forEach(function(e){return e()})},e.prototype.setViewport=function(e){Object.assign(this,{viewport:e,x:e.scrollLeft,yBlocks:Math.round(e.scrollTop/150),viewportHeight:e.getBoundingClientRect?e.getBoundingClientRect().height:0})},e.prototype.scrollIntoView=function(e,t,n){if(void 0===n&&(n=!0),e.options.scrollContainer){var i=e.options.scrollContainer,r=i.getBoundingClientRect().height,o=i.getBoundingClientRect().top,l=this.viewport.getBoundingClientRect().top+e.position-o;(t||li.scrollTop+r)&&(i.scrollTop=n?l-r/2:l)}else(t||e.positionthis.y+this.viewportHeight)&&this.viewport&&(this.viewport.scrollTop=n?e.position-this.viewportHeight/2:e.position,this._setYBlocks(Math.floor(this.viewport.scrollTop/150)))},e.prototype.getViewportNodes=function(e){var t=this;if(!e)return[];var n=e.filter(function(e){return!e.isHidden});if(!this.isEnabled())return n;if(!this.viewportHeight||!n.length)return[];for(var i=bl(n,function(e){return e.position+500>t.y||e.position+e.height>t.y}),r=bl(n,function(e){return e.position-500>t.y+t.viewportHeight},i),o=[],l=i;l<=r;l++)o.push(n[l]);return o},e.prototype.fixScroll=function(){var e=Math.max(0,this.totalHeight-this.viewportHeight);this.y<0&&this._setYBlocks(0),this.y>e&&this._setYBlocks(e/150)},Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"yBlocks",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"x",void 0),Object(o.__decorate)([Io.g,Object(o.__metadata)("design:type",Object)],e.prototype,"viewportHeight",void 0),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"y",null),Object(o.__decorate)([Io.c,Object(o.__metadata)("design:type",Object),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"totalHeight",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"_setYBlocks",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"recalcPositions",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setViewport",null),Object(o.__decorate)([Io.a,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object,Object,Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"scrollIntoView",null),e}();function bl(e,t,n){void 0===n&&(n=0);for(var i=n,r=e.length-1;i!==r;){var o=Math.floor((i+r)/2);t(e[o])?r=o:i=i===o?r:o}return i}var wl=function(){},xl=n("q+Dy"),Ml=n.n(xl),Tl=n("w9Mt"),Ll=n.n(Tl),kl=function(){function e(e,t,n){var r=this;this.treeModel=e,this.treeDraggedElement=t,this.renderer=n,e.eventNames.forEach(function(e){return r[e]=new i.EventEmitter}),e.subscribeToState(function(e){return r.stateChange.emit(e)})}return Object.defineProperty(e.prototype,"nodes",{set:function(e){},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"options",{set:function(e){},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"focused",{set:function(e){this.treeModel.setFocus(e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"state",{set:function(e){this.treeModel.setState(e)},enumerable:!0,configurable:!0}),e.prototype.onKeydown=function(e){if(this.treeModel.isFocused&&!Ml()(["input","textarea"],document.activeElement.tagName.toLowerCase())){var t=this.treeModel.getFocusedNode();this.treeModel.performKeyAction(t,e)}},e.prototype.onMousedown=function(e){this.renderer.invokeElementMethod(e.target,"closest",["Tree"])||this.treeModel.setFocus(!1)},e.prototype.ngOnChanges=function(e){this.treeModel.setData({options:e.options&&e.options.currentValue,nodes:e.nodes&&e.nodes.currentValue,events:Ll()(this,this.treeModel.eventNames)})},e.prototype.sizeChanged=function(){this.viewportComponent.setViewport()},e}(),Cl=function(){},Sl=function(){},El=function(){function e(){}return e.prototype.onDrop=function(e){this.node.mouseAction("drop",e.event,{from:e.element,to:{parent:this.node,index:this.dropIndex}})},e.prototype.allowDrop=function(e,t){return this.node.options.allowDrop(e,{parent:this.node,index:this.dropIndex},t)},e}(),Ol=function(){},Dl=function(){},Pl=function(){function e(){this._dispose=[]}return Object.defineProperty(e.prototype,"nodes",{get:function(){return this._nodes},set:function(e){this.setNodes(e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"marginTop",{get:function(){var e=this.viewportNodes&&this.viewportNodes.length&&this.viewportNodes[0];return(e?e.position-e.parent.position-e.parent.getSelfHeight():0)+"px"},enumerable:!0,configurable:!0}),e.prototype.setNodes=function(e){this._nodes=e},e.prototype.ngOnInit=function(){var e=this;this.virtualScroll=this.treeModel.virtualScroll,this._dispose=[Object(Io.h)(function(){return e.virtualScroll.getViewportNodes(e.nodes).map(function(e){return e.index})},function(t){e.viewportNodes=t.map(function(t){return e.nodes[t]})},{compareStructural:!0,fireImmediately:!0}),Object(Io.h)(function(){return e.nodes},function(t){e.viewportNodes=e.virtualScroll.getViewportNodes(t)})]},e.prototype.ngOnDestroy=function(){this._dispose.forEach(function(e){return e()})},e.prototype.trackNode=function(e,t){return t.id},Object(o.__decorate)([Fo,Object(o.__metadata)("design:type",Object)],e.prototype,"_nodes",void 0),Object(o.__decorate)([Fo,Object(o.__metadata)("design:type",Array)],e.prototype,"viewportNodes",void 0),Object(o.__decorate)([No,Object(o.__metadata)("design:type",String),Object(o.__metadata)("design:paramtypes",[])],e.prototype,"marginTop",null),Object(o.__decorate)([Yo,Object(o.__metadata)("design:type",Function),Object(o.__metadata)("design:paramtypes",[Object]),Object(o.__metadata)("design:returntype",void 0)],e.prototype,"setNodes",null),e}(),Il=function(){},jl=n("+X65"),Rl=n.n(jl),Al=function(){function e(e,t){var n=this;this.elementRef=e,this.virtualScroll=t,this.setViewport=Rl()(function(){n.virtualScroll.setViewport(n.elementRef.nativeElement)},17)}return e.prototype.ngOnInit=function(){this.virtualScroll.init()},e.prototype.ngAfterViewInit=function(){var e=this;setTimeout(function(){e.setViewport(),e.virtualScroll.fireEvent({eventName:Xo.initialized})})},e.prototype.ngOnDestroy=function(){this.virtualScroll.clear()},e.prototype.getTotalHeight=function(){return this.virtualScroll.isEnabled()&&this.virtualScroll.totalHeight+"px"||"auto"},e.prototype.onScroll=function(){this.setViewport()},e}(),Yl=function(){},Nl=function(){function e(e,t,n,r){this.el=e,this.renderer=t,this.treeDraggedElement=n,this.ngZone=r,this.onDropCallback=new i.EventEmitter,this.onDragOverCallback=new i.EventEmitter,this.onDragLeaveCallback=new i.EventEmitter,this.onDragEnterCallback=new i.EventEmitter,this._allowDrop=function(e,t){return!0},this.dragOverEventHandler=this.onDragOver.bind(this),this.dragEnterEventHandler=this.onDragEnter.bind(this),this.dragLeaveEventHandler=this.onDragLeave.bind(this)}return Object.defineProperty(e.prototype,"treeAllowDrop",{set:function(e){this._allowDrop=e instanceof Function?e:function(t,n){return e}},enumerable:!0,configurable:!0}),e.prototype.allowDrop=function(e){return this._allowDrop(this.treeDraggedElement.get(),e)},e.prototype.ngAfterViewInit=function(){var e=this,t=this.el.nativeElement;this.ngZone.runOutsideAngular(function(){t.addEventListener("dragover",e.dragOverEventHandler),t.addEventListener("dragenter",e.dragEnterEventHandler),t.addEventListener("dragleave",e.dragLeaveEventHandler)})},e.prototype.ngOnDestroy=function(){var e=this.el.nativeElement;e.removeEventListener("dragover",this.dragOverEventHandler),e.removeEventListener("dragenter",this.dragEnterEventHandler),e.removeEventListener("dragleave",this.dragLeaveEventHandler)},e.prototype.onDragOver=function(e){if(!this.allowDrop(e))return this.addDisabledClass();this.onDragOverCallback.emit({event:e,element:this.treeDraggedElement.get()}),e.preventDefault(),this.addClass()},e.prototype.onDragEnter=function(e){this.allowDrop(e)&&this.onDragEnterCallback.emit({event:e,element:this.treeDraggedElement.get()})},e.prototype.onDragLeave=function(e){if(!this.allowDrop(e))return this.removeDisabledClass();this.onDragLeaveCallback.emit({event:e,element:this.treeDraggedElement.get()}),this.removeClass()},e.prototype.onDrop=function(e){this.allowDrop(e)&&(e.preventDefault(),this.onDropCallback.emit({event:e,element:this.treeDraggedElement.get()}),this.removeClass(),this.treeDraggedElement.set(null))},e.prototype.addClass=function(){this.renderer.setElementClass(this.el.nativeElement,"is-dragging-over",!0)},e.prototype.removeClass=function(){this.renderer.setElementClass(this.el.nativeElement,"is-dragging-over",!1)},e.prototype.addDisabledClass=function(){this.renderer.setElementClass(this.el.nativeElement,"is-dragging-over-disabled",!0)},e.prototype.removeDisabledClass=function(){this.renderer.setElementClass(this.el.nativeElement,"is-dragging-over-disabled",!1)},e}(),Fl=function(){function e(e,t,n,i){this.el=e,this.renderer=t,this.treeDraggedElement=n,this.ngZone=i,this.dragEventHandler=this.onDrag.bind(this)}return e.prototype.ngAfterViewInit=function(){var e=this,t=this.el.nativeElement;this.ngZone.runOutsideAngular(function(){t.addEventListener("drag",e.dragEventHandler)})},e.prototype.ngDoCheck=function(){this.renderer.setElementAttribute(this.el.nativeElement,"draggable",this.treeDragEnabled?"true":"false")},e.prototype.ngOnDestroy=function(){this.el.nativeElement.removeEventListener("drag",this.dragEventHandler)},e.prototype.onDragStart=function(e){e.dataTransfer.setData("text",e.target.id),this.treeDraggedElement.set(this.draggedElement),this.draggedElement.mouseAction&&this.draggedElement.mouseAction("dragStart",e)},e.prototype.onDrag=function(e){this.draggedElement.mouseAction&&this.draggedElement.mouseAction("drag",e)},e.prototype.onDragEnd=function(){this.draggedElement.mouseAction&&this.draggedElement.mouseAction("dragEnd"),this.treeDraggedElement.set(null)},e}(),Vl=function(){function e(e,t,n){this.renderer=e,this.templateRef=t,this.viewContainerRef=n}return Object.defineProperty(e.prototype,"isOpen",{set:function(e){e?(this._show(),this.isEnabled&&!1===this._isOpen&&this._animateOpen()):this.isEnabled?this._animateClose():this._hide(),this._isOpen=!!e},enumerable:!0,configurable:!0}),e.prototype._show=function(){this.innerElement||(this.innerElement=this.viewContainerRef.createEmbeddedView(this.templateRef).rootNodes[0])},e.prototype._hide=function(){this.viewContainerRef.clear(),this.innerElement=null},e.prototype._animateOpen=function(){var e=this,t=this.animateSpeed,n=this.animateAcceleration,i=0;this.renderer.setElementStyle(this.innerElement,"max-height","0"),setTimeout(function(){var r=setInterval(function(){if(!e._isOpen||!e.innerElement)return clearInterval(r);var o=Math.round(i+=t);e.renderer.setElementStyle(e.innerElement,"max-height",o+"px");var l=e.innerElement.getBoundingClientRect?e.innerElement.getBoundingClientRect().height:0;t*=n,n*=1.005,l0;){var i=t.shift();n.next(i.buffer)}e.prototype._complete.call(this)},t.prototype._unsubscribe=function(){this.contexts=null},t.prototype.onBufferFull=function(e){this.closeContext(e);var t=e.closeAction;if(t.unsubscribe(),this.remove(t),!this.closed&&this.timespanOnly){e=this.openContext();var n=this.bufferTimeSpan;this.add(e.closeAction=this.scheduler.schedule(Wl,n,{subscriber:this,context:e,bufferTimeSpan:n}))}},t.prototype.openContext=function(){var e=new function(){this.buffer=[]};return this.contexts.push(e),e},t.prototype.closeContext=function(e){this.destination.next(e.buffer);var t=this.contexts;(t?t.indexOf(e):-1)>=0&&t.splice(t.indexOf(e),1)},t}(Tn.a);function Wl(e){var t=e.subscriber,n=e.context;n&&t.closeContext(n),t.closed||(e.context=t.openContext(),e.context.closeAction=this.schedule(e,e.bufferTimeSpan))}function ql(e){var t=e.bufferCreationInterval,n=e.bufferTimeSpan,i=e.subscriber,r=e.scheduler,o=i.openContext();i.closed||(i.add(o.closeAction=r.schedule(Gl,n,{subscriber:i,context:o})),this.schedule(e,t))}function Gl(e){e.subscriber.closeContext(e.context)}U.a.prototype.bufferTime=function(e){var t=arguments.length,n=sn;Object(Ul.a)(arguments[arguments.length-1])&&(n=arguments[arguments.length-1],t--);var i=null;t>=2&&(i=arguments[1]);var r=Number.POSITIVE_INFINITY;return t>=3&&(r=arguments[2]),function(e){var t=arguments.length,n=sn;Object(Ul.a)(arguments[arguments.length-1])&&(n=arguments[arguments.length-1],t--);var i=null;t>=2&&(i=arguments[1]);var r=Number.POSITIVE_INFINITY;return t>=3&&(r=arguments[2]),function(t){return t.lift(new Bl(e,i,r,n))}}(e,i,r,n)(this)};var Zl=function(){function e(e,t){this.predicate=e,this.thisArg=t}return e.prototype.call=function(e,t){return t.subscribe(new Jl(e,this.predicate,this.thisArg))},e}(),Jl=function(e){function t(t,n,i){e.call(this,t),this.predicate=n,this.thisArg=i,this.count=0}return Object(o.__extends)(t,e),t.prototype._next=function(e){var t;try{t=this.predicate.call(this.thisArg,e,this.count++)}catch(e){return void this.destination.error(e)}t&&this.destination.next(e)},t}(Tn.a);U.a.prototype.filter=function(e,t){return function(e,t){return function(n){return n.lift(new Zl(e,t))}}(e,t)(this)};var $l=this&&this.__assign||Object.assign||function(e){for(var t,n=1,i=arguments.length;n0}).subscribe(function(t){e.handleNodeEvent(t)}),this.startTreeInit())}},t.prototype.startTreeInit=function(){var e=this;this.treeInitListener=U.a.interval(1e3).subscribe(function(){hn.isEmpty(e.expandNodeIds)?hn.isEmpty(e.andsTree.treeModel.getVisibleRoots())||e.loadState!=e.STATUS_LOADED?e.loadState==e.STATUS_EXPANDING&&(e.treeInitListener.unsubscribe(),e.loadState=e.STATUS_EXPANDED):(e.loadState=e.STATUS_EXPANDING,e.updateTreeView(e),e.expandNodes()):e.expandNodes()})},t.prototype.onEvent=function(e){switch(e.eventName){case"select":this.field.setSelected(this.getValueFromChildData(e.node),!0);break;case"deselect":this.field.setSelected(this.getValueFromChildData(e.node),!1)}},t.prototype.handleNodeEvent=function(e){var t=e[0];e.length>=2&&(t=e[1]);var n=this.getNodeSelected(t.node.id);switch(t.eventName){case"nodeActivate":this.updateSingleNodeSelectedState(t.node,n=void 0==n);break;case"nodeDeactivate":this.updateSingleNodeSelectedState(t.node,!1)}},t.prototype.updateSingleNodeSelectedState=function(e,t){var n=e.id,i=this.andsTree.treeModel.getState();this.setNodeSelected(i,n,t),this.andsTree.treeModel.setState(i),this.andsTree.treeModel.update(),this.field.setSelected(this.getValueFromChildData(e),t)},t.prototype.onNodeActivate=function(e){this.nodeEventSubject.next(e)},t.prototype.onNodeDeactivate=function(e){this.nodeEventSubject.next(e)},t.prototype.updateTreeView=function(e){var t=this,n=e.andsTree.treeModel.getState();e.expandNodeIds=[],hn.each(e.field.value,function(i){t.setNodeSelected(n,i.notation,!0),hn.each(i.geneaology,function(t){hn.includes(e.expandNodeIds,t)||e.expandNodeIds.push(t)})}),e.andsTree.treeModel.setState(n),e.andsTree.treeModel.update(),e.expandNodeIds=hn.sortBy(e.expandNodeIds,function(e){return hn.isString(e)?e.length:0})},t.prototype.expandNodes=function(){if(!hn.isEmpty(this.expandNodeIds)){var e=this.expandNodeIds[0],t=this.andsTree.treeModel.getNodeById(e);t&&(t.expand(),hn.remove(this.expandNodeIds,function(t){return t==e}))}},t.prototype.collapseNodes=function(){this.andsTree.treeModel.collapseAll()},t.prototype.setNodeSelected=function(e,t,n){n?e.selectedLeafNodeIds[t]=n:hn.unset(e.selectedLeafNodeIds,t)},t.prototype.getNodeSelected=function(e){return this.andsTree.treeModel.getState().selectedLeafNodeIds[e]},t.prototype.clearSelectedNodes=function(){var e=this.andsTree.treeModel.getState();e.selectedLeafNodeIds={},this.andsTree.treeModel.setState(e)},t.prototype.getChildren=function(e){var t=this,n=this,i=new Promise(function(e,i){jQuery(t.elementRef.nativeElement).on("narrow.vocab.ands",function(t,i){return e(n.mapItemsToChildren(i.items))})});return jQuery(this.elementRef.nativeElement).vocab_widget("narrow",{uri:e.data.about}),i},t.prototype.mapItemsToChildren=function(e){return hn.map(e,function(e){return $l({id:e.notation,name:e.notation+" - "+e.label,hasChildren:e.narrower&&e.narrower.length>0},e)})},t.prototype.getValueFromChildData=function(e){var t=e.data,n={name:t.notation+" - "+t.label,label:t.label,notation:t.notation};return this.setParentTree(n,e),n},t.prototype.setParentTree=function(e,t){var n=hn.get(t,"parent.data.notation");hn.isUndefined(n)?hn.isUndefined(e.geneaology)||(e.geneaology=hn.sortBy(e.geneaology)):(hn.isUndefined(e.geneaology)&&(e.geneaology=[]),e.geneaology.push(n),t.parent.parent&&this.setParentTree(e,t.parent))},t.prototype.reactEvent=function(e,t,n,i){this.collapseNodes(),this.clearSelectedNodes(),this.loadState=this.STATUS_LOADED,this.startTreeInit()},t}(pr),Xl=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.showHistoryTable=!1,i.relatedObjects=[],i.accessDeniedObjects=[],i.failedObjects=[],i.columns=t.columns||[],i.startsWith=t.startsWith||"rdmp-pdf",i.recordsService=i.getFromInjector(Vs),i.pdfAttachments=[],i}return Object(o.__extends)(t,e),t.prototype.createFormModel=function(e){return void 0===e&&(e=void 0),e&&(this.value=e),this.formModel=new wi(this.value||[]),this.value&&this.setValue(this.value),this.formModel},t.prototype.setValue=function(e){this.formModel.patchValue(e,{emitEvent:!1}),this.formModel.markAsTouched()},t.prototype.setEmptyValue=function(){return this.value=[],this.value},t}(Gi),es=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){var e=this,t=this.fieldMap._rootComp.oid;if(t){var n=this.field.recordsService.getAttachments(t),i=new RegExp(this.field.startsWith+"-[0-9a-fA-F]{32}-[0-9]+.pdf");n.then(function(t){e.field.latestPdf=null,hn.forEach(t,function(t){i.test(t.label)&&(t.dateUpdated=Ji()(t.dateUpdated).format("LLL"),e.field.pdfAttachments.push(t),(null==e.field.latestPdf||Ji()(e.field.latestPdf.dateUpdated).isBefore(Ji()(t.dateUpdated)))&&(e.field.latestPdf=t))}),e.field.pdfAttachments.sort(function(e,t){return Ji()(e.dateUpdated).isBefore(Ji()(t.dateUpdated))?-1:1})})}},t.prototype.getDownloadUrl=function(e){return this.field.recordsService.getBrandingAndPortalUrl+"/record/"+this.fieldMap._rootComp.oid+"/datastream?datastreamId="+e.label},t}(pr),ts=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.relatedRecordId=t.relatedRecordId||void 0,i.completionRateType=t.completionRateType||"percentage",i.nameLabel=t.nameLabel?i.getTranslated(t.nameLabel,t.nameLabel):"Name",i.statusLabel=t.statusLabel?i.getTranslated(t.statusLabel,t.statusLabel):"Status",i.dateStartedLabel=t.dateStartedLabel?i.getTranslated(t.dateStartedLabel,t.dateStartedLabel):"Date Started",i.dateCompletedLabel=t.dateCompletedLabel?i.getTranslated(t.dateCompletedLabel,t.dateCompletedLabel):"Date Completed",i.startedByLabel=t.startedByLabel?i.getTranslated(t.startedByLabel,t.startedByLabel):"Started By",i.messageLabel=t.messageLabel?i.getTranslated(t.messageLabel,t.messageLabel):"Message",i.completionLabel=t.completionLabel?i.getTranslated(t.completionLabel,t.completionLabel):"Completion",i.lastUpdateLabel=t.lastUpdateLabel?i.getTranslated(t.lastUpdateLabel,t.lastUpdateLabel):"Last Updated",i.dateFormat=t.dateFormat||"L LT",i.listenType=t.listenType||"record",i.taskType=t.taskType||"",i.criteria=t.criteria||{where:{relatedRecordId:"@oid"}},i.RecordsService=i.getFromInjector(Vs),i}return Object(o.__extends)(t,e),t.prototype.getStatusLabel=function(e){return this.getTranslated(this.options.statusLabel+"-"+e,e)},t}($i),ns=function(e){function t(t){var n=e.call(this)||this;return n.changeRef=t,n.locale=window.navigator.language,n}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){var e=this.field.relatedRecordId||this.field.fieldMap._rootComp.oid,t=this;(hn.isNull(e)||hn.isUndefined(e)||hn.isEmpty(e))&&(this.field.fieldMap._rootComp.getSubscription("recordCreated")||(console.log("Subscribing to record creation..... "+this.field.name),this.field.fieldMap._rootComp.subscribe("recordCreated",this.field.name,function(e){t.field.relatedRecordId=e.oid,t.startListen()}))),e&&(this.field.relatedRecordId=this.field.fieldMap._rootComp.oid,this.startListen())},t.prototype.startListen=function(){var e=this;if(!this.isListening&&!hn.isUndefined(this.field.relatedRecordId)&&!hn.isEmpty(this.field.relatedRecordId)){var t=JSON.stringify(this.field.criteria).replace(/@oid/g,this.field.relatedRecordId);this.field.RecordsService.getAsyncProgress(t).then(function(t){hn.each(t,function(t){t.completionRate=t.currentIdx/t.targetIdx,"progress"==e.field.listenType&&e.field.RecordsService.subscribeToAsyncProgress(t.id,function(e,n){console.log("Subscribed to async tasks: "+t.id),console.log(e),console.log(n)})}),"record"==e.field.listenType?e.field.RecordsService.subscribeToAsyncProgress(e.field.relatedRecordId,function(t,n){console.log("Subscribed to async tasks for record: "+e.field.relatedRecordId),console.log(t),console.log(n)}):"taskType"==e.field.listenType&&e.field.RecordsService.subscribeToAsyncProgress(e.field.relatedRecordId+"-"+e.field.taskType,function(t,n){console.log("Subscribed to async tasks for record with taskType: "+e.field.relatedRecordId+"-"+e.field.taskType),console.log(t),console.log(n)}),io.socket.on("start",e.onStart.bind(e)),io.socket.on("stop",e.onStop.bind(e)),io.socket.on("update",e.onUpdate.bind(e)),e.field.progressArr=t,e.isListening=!0})}},t.prototype.onStart=function(e){console.log("Got start event:"),console.log(e),this.field.progressArr?this.field.progressArr.push(e):this.field.progressArr=[e],this.changeRef.detectChanges()},t.prototype.onStop=function(e){console.log("Got stop event:"),console.log(e),this.updateProgress(e)},t.prototype.onUpdate=function(e){console.log("Got update event:"),console.log(e),this.updateProgress(e)},t.prototype.updateProgress=function(e){var t=hn.find(this.field.progressArr,function(t){return t.id==e.id});hn.assign(t,e),this.changeRef.detectChanges()},t.prototype.formatDateForDisplay=function(e){return e?Ji()(e).locale(this.locale).format(this.field.dateFormat):""},t}(pr),is={TextField:{meta:Yr,comp:Vr},TextArea:{meta:Fr,comp:Ur},MarkdownTextArea:{meta:Nr,comp:Br},DateTime:{meta:tr,comp:kr},Container:{meta:Qi,comp:[_r,Lo]},TabOrAccordionContainer:{meta:Xi,comp:gr},ButtonBarContainer:{meta:er,comp:vr},AnchorOrButton:{meta:or,comp:xr},SaveButton:{meta:nr,comp:br},CancelButton:{meta:ir,comp:wr},VocabField:{meta:Zr,comp:Qr,lookupService:"vocabFieldLookupService"},RepeatableContainer:{meta:Or,comp:[jr,Hr,ko]},RepeatableContributor:{meta:Rr,comp:Ar},RepeatableVocab:{meta:Ir,comp:jr},ContributorField:{meta:Xr,comp:eo,lookupService:"vocabFieldLookupService"},HiddenValue:{meta:lr,comp:Lr},WorkflowStepButton:{meta:to,comp:no},ActionButton:{meta:ro,comp:oo},LinkValueComponent:{meta:sr,comp:Tr},SelectionField:{meta:Ki,comp:[mr,fr]},RelatedObjectDataField:{meta:ho,comp:fo,lookupService:"vocabFieldLookupService"},MapField:{meta:Mo,comp:To,lookupService:"vocabFieldLookupService"},ParameterRetriever:{meta:ar,comp:Cr},RecordMetadataRetriever:{meta:zr,comp:Wr},RelatedObjectSelector:{meta:go,comp:vo},DataLocation:{meta:_o,comp:bo},WorkspaceSelectorField:{meta:Eo,comp:[Oo,Do]},PublishDataLocationSelector:{meta:wo,comp:xo},TabNavButton:{meta:rr,comp:Mr},Spacer:{meta:ur,comp:Sr},ANDSVocab:{meta:Kl,comp:Ql},PDFList:{meta:Xl,comp:es},AsynchField:{meta:ts,comp:ns},Toggle:{meta:cr,comp:Er},HtmlRaw:{meta:dr,comp:yr}},rs=function(){function e(){this.selected=new i.EventEmitter,this.highlighted=new i.EventEmitter,this.opened=new i.EventEmitter,this.dataSourceChange=new i.EventEmitter,this._hasHighlighted=!1,this._hasSelected=!1,this._cancelBlur=!1,this._isOpen=!1}return e.prototype.registerList=function(e){this.list=e},e.prototype.registerDropdown=function(e){this.dropdown=e},e.prototype.onHighlighted=function(e){this.highlighted.emit(e),this._hasHighlighted=!!e},e.prototype.onSelected=function(e,t){void 0===t&&(t=!0),this.selected.emit(e),e&&(this._hasSelected=!0),t&&this.clear()},e.prototype.onDataSourceChange=function(){this.hasSelected&&(this.selected.emit(null),this._hasSelected=!1),this.dataSourceChange.emit()},e.prototype.search=function(e){this._hasSelected&&(this.selected.emit(null),this._hasSelected=!1),this.list&&this.list.search(e)},e.prototype.clear=function(){this._hasHighlighted=!1,this.isOpen=!1,this.dropdown&&this.dropdown.clear(),this.list&&this.list.clear()},e.prototype.selectCurrent=function(){this.dropdown&&this.dropdown.selectCurrent()},e.prototype.nextRow=function(){this.dropdown&&this.dropdown.nextRow()},e.prototype.prevRow=function(){this.dropdown&&this.dropdown.prevRow()},e.prototype.hasHighlighted=function(){return this._hasHighlighted},e.prototype.cancelBlur=function(e){this._cancelBlur=e},e.prototype.isCancelBlur=function(){return this._cancelBlur},e.prototype.open=function(){this._isOpen||(this.isOpen=!0,this.list.open())},Object.defineProperty(e.prototype,"isOpen",{get:function(){return this._isOpen},set:function(e){this._isOpen=e,this.opened.emit(this._isOpen),this.list&&this.list.isOpen(e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"autoHighlightIndex",{get:function(){return this._autoHighlightIndex},set:function(e){this._autoHighlightIndex=e,this.dropdown&&this.dropdown.highlightRow(this._autoHighlightIndex)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hasSelected",{get:function(){return this._hasSelected},enumerable:!0,configurable:!0}),e}(),os=function(){function e(e){this.selector=e}return e.prototype.call=function(e,t){return t.subscribe(new ls(e,this.selector,this.caught))},e}(),ls=function(e){function t(t,n,i){e.call(this,t),this.selector=n,this.caught=i}return Object(o.__extends)(t,e),t.prototype.error=function(t){if(!this.isStopped){var n=void 0;try{n=this.selector(t,this.caught)}catch(t){return void e.prototype.error.call(this,t)}this._unsubscribeAndRecycle(),this.add(Object(mn.a)(this,n))}},t}(gn.a);function ss(e){return function(e){return function(t){var n=new os(e),i=t.lift(n);return n.caught=i}}(e)(this)}U.a.prototype.catch=ss,U.a.prototype._catch=ss;var as=524288,us=3,cs=10,ds="Searching...",ps="No results found";function hs(e){return"undefined"==typeof e||null===e}var fs=function(e){function t(){return e.call(this)||this}return Object(o.__extends)(t,e),t.prototype.cancel=function(){},t.prototype.searchFields=function(e){return this._searchFields=e,this},t.prototype.titleField=function(e){return this._titleField=e,this},t.prototype.descriptionField=function(e){return this._descriptionField=e,this},t.prototype.imageField=function(e){return this._imageField=e,this},t.prototype.convertToItem=function(e){var t,n=null,i=null;return"string"!=typeof(t=this._titleField?this.extractTitle(e):e)&&(t=JSON.stringify(t)),this._descriptionField&&(i=this.extractValue(e,this._descriptionField)),this._imageField&&(n=this.extractValue(e,this._imageField)),hs(t)?null:{title:t,description:i,image:n,originalObject:e}},t.prototype.extractMatches=function(e,t){var n=this,i=this._searchFields?this._searchFields.split(","):null;return null!==this._searchFields&&void 0!==this._searchFields&&""!=t?e.filter(function(e){return(i?i.map(function(t){return n.extractValue(e,t)}).filter(function(e){return!!e}):[e]).some(function(e){return e.toString().toLowerCase().indexOf(t.toString().toLowerCase())>=0})}):e},t.prototype.extractTitle=function(e){var t=this;return this._titleField.split(",").map(function(n){return t.extractValue(e,n)}).reduce(function(e,t){return e?e+" "+t:t})},t.prototype.extractValue=function(e,t){var n,i;if(t){n=t.split("."),i=e;for(var r=0;r0)for(t=0;t=0;){var i=this.text.slice(t,t+this.searchStr.length);if(0===t)this.parts.push({isMatch:!0,text:i}),n+=this.searchStr.length;else if(t>0){var r=this.text.slice(n,t);this.parts.push({isMatch:!1,text:r}),this.parts.push({isMatch:!0,text:i}),n+=this.searchStr.length+r.length}t=e.indexOf(this.searchStr.toLowerCase(),n)}n=0?this.rows[t]=e:this.rows.push(e)},e.prototype.unregisterRow=function(e){var t=this.rows.findIndex(function(t){return t.index===e});this.rows.splice(t,1),this.currHighlighted&&e===this.currHighlighted.index&&this.highlightRow(null)},e.prototype.highlightRow=function(e){var t=this.rows.find(function(t){return t.index===e});if(hs(e)||e<0)return this.currHighlighted&&this.currHighlighted.row.setHighlighted(!1),this.currHighlighted=void 0,void this.completer.onHighlighted(null);if(t&&(this.currHighlighted&&this.currHighlighted.row.setHighlighted(!1),this.currHighlighted=t,this.currHighlighted.row.setHighlighted(!0),this.completer.onHighlighted(this.currHighlighted.row.getDataItem()),this.isScrollOn&&this.currHighlighted)){var n=this.dropdownRowTop();if(!n)return;if(n<0)this.dropdownScrollTopTo(n-1);else{var i=this.currHighlighted.row.getNativeElement();this.dropdownHeight()0&&this.onSelected(this.rows[0].row.getDataItem())},e.prototype.nextRow=function(){var e=0;this.currHighlighted&&(e=this.currHighlighted.index+1),this.highlightRow(e)},e.prototype.prevRow=function(){var e=-1;this.currHighlighted&&(e=this.currHighlighted.index-1),this.highlightRow(e)},e.prototype.dropdownScrollTopTo=function(e){this.el.nativeElement.scrollTop=this.el.nativeElement.scrollTop+e},e.prototype.dropdownRowTop=function(){if(this.currHighlighted)return this.currHighlighted.row.getNativeElement().getBoundingClientRect().top-(this.el.nativeElement.getBoundingClientRect().top+parseInt(getComputedStyle(this.el.nativeElement).paddingTop,10))},e.prototype.dropdownHeight=function(){return this.el.nativeElement.getBoundingClientRect().top+parseInt(getComputedStyle(this.el.nativeElement).maxHeight,10)},e.prototype.dropdownRowOffsetHeight=function(e){var t=getComputedStyle(e.parentElement);return e.parentElement.offsetHeight+parseInt(t.marginTop,10)+parseInt(t.marginBottom,10)},e}(),Ls=function(){function e(e,t,n){var r=this;this.completer=e,this.ngModel=t,this.el=n,this.clearSelected=!1,this.clearUnselected=!1,this.overrideSuggested=!1,this.fillHighlighted=!0,this.openOnFocus=!1,this.openOnClick=!1,this.selectOnClick=!1,this.selectOnFocus=!1,this.ngModelChange=new i.EventEmitter,this._searchStr="",this._displayStr="",this.blurTimer=null,this.completer.selected.subscribe(function(e){e&&(r.searchStr=r.clearSelected?"":e.title,r.ngModelChange.emit(r.searchStr))}),this.completer.highlighted.subscribe(function(e){r.fillHighlighted&&(e?(r._displayStr=e.title,r.ngModelChange.emit(e.title)):(r._displayStr=r.searchStr,r.ngModelChange.emit(r.searchStr)))}),this.completer.dataSourceChange.subscribe(function(){r.searchStr="",r.ngModelChange.emit(r.searchStr)}),this.ngModel.valueChanges&&this.ngModel.valueChanges.subscribe(function(e){hs(e)||r._displayStr===e||(r.searchStr!==e&&r.completer.search(e),r.searchStr=e)})}return e.prototype.keyupHandler=function(e){37!==e.keyCode&&39!==e.keyCode&&9!==e.keyCode&&(38===e.keyCode||13===e.keyCode?e.preventDefault():40===e.keyCode?(e.preventDefault(),this.completer.search(this.searchStr)):27===e.keyCode&&this.completer.isOpen&&(this.restoreSearchValue(),this.completer.clear(),e.stopPropagation(),e.preventDefault()))},e.prototype.pasteHandler=function(e){this.completer.open()},e.prototype.keydownHandler=function(e){var t=e.keyCode||e.which;13===t?(this.completer.hasHighlighted()&&e.preventDefault(),this.handleSelection()):40===t?(e.preventDefault(),this.completer.open(),this.completer.nextRow()):38===t?(e.preventDefault(),this.completer.prevRow()):9===t?this.handleSelection():8===t?this.completer.open():27===t?(e.preventDefault(),this.completer.isOpen&&e.stopPropagation()):0===t||16===t||20===t||!(t<=112||t>=123)||e.ctrlKey||e.metaKey||e.altKey||this.completer.open()},e.prototype.onBlur=function(e){var t=this;this.completer.isCancelBlur()?setTimeout(function(){t.el.nativeElement.focus()},0):this.completer.isOpen&&(this.blurTimer=U.a.timer(200).subscribe(function(){return t.doBlur()}))},e.prototype.onfocus=function(){this.blurTimer&&(this.blurTimer.unsubscribe(),this.blurTimer=null),this.selectOnFocus&&this.el.nativeElement.select(),this.openOnFocus&&this.completer.open()},e.prototype.onClick=function(e){this.selectOnClick&&this.el.nativeElement.select(),this.openOnClick&&(this.completer.isOpen?this.completer.clear():this.completer.open())},Object.defineProperty(e.prototype,"searchStr",{get:function(){return this._searchStr},set:function(e){this._searchStr=e,this._displayStr=e},enumerable:!0,configurable:!0}),e.prototype.handleSelection=function(){this.completer.hasHighlighted()?(this._searchStr="",this.completer.selectCurrent()):this.overrideSuggested?this.completer.onSelected({title:this.searchStr,originalObject:null}):(this.clearUnselected&&(this.searchStr="",this.ngModelChange.emit(this.searchStr)),this.completer.clear())},e.prototype.restoreSearchValue=function(){this.fillHighlighted&&this._displayStr!=this.searchStr&&(this._displayStr=this.searchStr,this.ngModelChange.emit(this.searchStr))},e.prototype.doBlur=function(){this.blurTimer&&(this.blurTimer.unsubscribe(),this.blurTimer=null),this.overrideSuggested?this.completer.onSelected({title:this.searchStr,originalObject:null}):this.clearUnselected&&!this.completer.hasSelected?(this.searchStr="",this.ngModelChange.emit(this.searchStr)):this.restoreSearchValue(),this.completer.clear()},e}();function ks(e){return e instanceof Date&&!isNaN(+e)}U.a.timer=function(e){function t(t,n,i){void 0===t&&(t=0),e.call(this),this.period=-1,this.dueTime=0,rn(n)?this.period=Number(n)<1?1:Number(n):Object(Ul.a)(n)&&(i=n),Object(Ul.a)(i)||(i=sn),this.scheduler=i,this.dueTime=ks(t)?+t-this.scheduler.now():t}return Object(o.__extends)(t,e),t.create=function(e,n,i){return void 0===e&&(e=0),new t(e,n,i)},t.dispatch=function(e){var t=e.index,n=e.period,i=e.subscriber;if(i.next(t),!i.closed){if(-1===n)return i.complete();e.index=t+1,this.schedule(e,n)}},t.prototype._subscribe=function(e){return this.scheduler.schedule(t.dispatch,this.dueTime,{index:0,period:this.period,subscriber:e})},t}(U.a).create;var Cs=n("GK6M"),Ss=n("fKB6"),Es=function(){function e(e,t){this.notifier=e,this.source=t}return e.prototype.call=function(e,t){return t.subscribe(new Os(e,this.notifier,this.source))},e}(),Os=function(e){function t(t,n,i){e.call(this,t),this.notifier=n,this.source=i}return Object(o.__extends)(t,e),t.prototype.error=function(t){if(!this.isStopped){var n=this.errors,i=this.retries,r=this.retriesSubscription;if(i)this.errors=null,this.retriesSubscription=null;else{if(n=new dn.a,(i=Object(Cs.a)(this.notifier)(n))===Ss.a)return e.prototype.error.call(this,Ss.a.e);r=Object(mn.a)(this,i)}this._unsubscribeAndRecycle(),this.errors=n,this.retries=i,this.retriesSubscription=r,n.next(t)}},t.prototype._unsubscribe=function(){var e=this.errors,t=this.retriesSubscription;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null},t.prototype.notifyNext=function(e,t,n,i,r){var o=this.errors,l=this.retries,s=this.retriesSubscription;this.errors=null,this.retries=null,this.retriesSubscription=null,this._unsubscribeAndRecycle(),this.errors=o,this.retries=l,this.retriesSubscription=s,this.source.subscribe(this)},t}(gn.a);U.a.prototype.retryWhen=function(e){return function(e){return function(t){return t.lift(new Es(e,t))}}(e)(this)};var Ds=function(){function e(e,t,n){this.nextOrObserver=e,this.error=t,this.complete=n}return e.prototype.call=function(e,t){return t.subscribe(new Ps(e,this.nextOrObserver,this.error,this.complete))},e}(),Ps=function(e){function t(t,n,i,r){e.call(this,t);var o=new Tn.a(n,i,r);o.syncErrorThrowable=!0,this.add(o),this.safeSubscriber=o}return Object(o.__extends)(t,e),t.prototype._next=function(e){var t=this.safeSubscriber;t.next(e),t.syncErrorThrown?this.destination.error(t.syncErrorValue):this.destination.next(e)},t.prototype._error=function(e){var t=this.safeSubscriber;t.error(e),this.destination.error(t.syncErrorThrown?t.syncErrorValue:e)},t.prototype._complete=function(){var e=this.safeSubscriber;e.complete(),e.syncErrorThrown?this.destination.error(e.syncErrorValue):this.destination.complete()},t}(Tn.a);function Is(e,t,n){return function(e,t,n){return function(i){return i.lift(new Ds(e,t,n))}}(e,t,n)(this)}U.a.prototype.do=Is,U.a.prototype._do=Is;var js=function(e,t,n,i){this.results=e,this.searching=t,this.searchInitialized=n,this.isOpen=i},Rs=function(){function e(e,t,n,i){this.completer=e,this.templateRef=t,this.viewContainer=n,this.cd=i,this.ctrListMinSearchLength=us,this.ctrListPause=cs,this.ctrListAutoMatch=!1,this.ctrListAutoHighlight=!1,this.ctrListDisplaySearching=!0,this.term=null,this.searchTimer=null,this.clearTimer=null,this.ctx=new js([],!1,!1,!1),this._initialValue=null,this.viewRef=null}return e.prototype.ngOnInit=function(){this.completer.registerList(this),this.viewRef=this.viewContainer.createEmbeddedView(this.templateRef,new js([],!1,!1,!1))},Object.defineProperty(e.prototype,"dataService",{set:function(e){this._dataService=e,this.dataServiceSubscribe()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"initialValue",{set:function(e){var t=this;this._dataService&&"function"==typeof this._dataService.convertToItem?setTimeout(function(){var n=t._dataService.convertToItem(e);n&&t.completer.onSelected(n,!1)}):this._dataService||(this._initialValue=e)},enumerable:!0,configurable:!0}),e.prototype.search=function(e){var t=this;!hs(e)&&e.length>=this.ctrListMinSearchLength&&this.term!==e?(this.searchTimer&&(this.searchTimer.unsubscribe(),this.searchTimer=null),this.ctx.searching||(this.ctrListDisplaySearching&&(this.ctx.results=[]),this.ctx.searching=!0,this.ctx.searchInitialized=!0,this.refreshTemplate()),this.clearTimer&&this.clearTimer.unsubscribe(),this.searchTimer=U.a.timer(this.ctrListPause).subscribe(function(){t.searchTimerComplete(e)})):!hs(e)&&e.length0){var i="",r="",o="",l="";hn.forEach(e.activeRefiners,function(e){switch(e.type){case"exact":i=(hn.isEmpty(i)?"&exactNames=":i+",")+e.name,r=r+"&exact_"+e.name+"="+e.value;break;case"facet":o=(hn.isEmpty(o)?"&facetNames=":o+",")+e.name,hn.isEmpty(e.activeValue)||(l=l+"&facet_"+e.name+"="+e.activeValue)}}),n=""+i+r+o+l}return this.http.get(this.brandingAndPortalUrl+"/record/search/"+e.recordType+"/?searchStr="+e.basicSearch+n,this.getOptionsClient()).toPromise().then(function(e){return t.extractData(e)})},t.prototype.getType=function(e){var t=this;return this.http.get(this.brandingAndPortalUrl+"/record/type/"+e,this.getOptionsClient()).toPromise().then(function(e){return t.extractData(e)})},t.prototype.getAllTypes=function(){var e=this;return this.http.get(this.brandingAndPortalUrl+"/record/type/",this.getOptionsClient()).toPromise().then(function(t){return e.extractData(t)})},t.prototype.getWorkflowSteps=function(e){var t=this;return this.http.get(this.brandingAndPortalUrl+"/record/wfSteps/"+e,this.getOptionsClient()).toPromise().then(function(e){return t.extractData(e)})},t.prototype.getRecordMeta=function(e){var t=this;return void 0===e&&(e=null),this.http.get(this.brandingAndPortalUrl+"/record/metadata/"+e,this.options).toPromise().then(function(e){return t.extractData(e)})},t.prototype.executeAction=function(e,t){var n=this;return this.http.post(this.brandingAndPortalUrl+"/action/"+e,t,this.options).toPromise().then(function(e){return n.extractData(e)})},t.prototype.getAsyncProgress=function(e){var t=this;return this.http.get(this.brandingAndPortalUrl+"/asynch?fq="+e,this.options).toPromise().then(function(e){return t.extractData(e)})},t.prototype.subscribeToAsyncProgress=function(e,t){void 0===e&&(e=null),io.socket.get(this.brandingAndPortalUrl+"/asynch/subscribe/"+e,t)},t.prototype.delete=function(e){var t=this;return this.http.delete(this.brandingAndPortalUrl+"/record/delete/"+e,this.getOptionsClient()).map(function(e){return t.extractData(e)})},t}(pn),Hs=function(){function e(){this.spinnerElem='',this.isLoading=!0,this.synchLoading()}return e.prototype.initTranslator=function(e){var t=this;this.translationService=e,e.isReady(function(e){t.translatorReady=!0})},e.prototype.translatorLoaded=function(){this.translatorReady=!0,this.checkIfHasLoaded()},e.prototype.checkIfHasLoaded=function(){this.hasLoaded()&&this.setLoading(!1)},e.prototype.hasLoaded=function(){return this.isLoading&&(!this.translationService||this.translatorReady)},e.prototype.setLoading=function(e){void 0===e&&(e=!0),this.isLoading=e,this.synchLoading()},e.prototype.synchLoading=function(){this.isLoading?jQuery("#loading").removeClass("hidden"):jQuery("#loading").addClass("hidden")},e.prototype.getTranslated=function(e,t){return hn.isEmpty(e)||hn.isUndefined(e)?t:this.translationService?this.translationService.t(e):e},e.prototype.waitForInit=function(e,t){var n=hn.map(e,function(e){return e.getInitSubject()}),i={loaded:{},subs:{}};hn.forOwn(e,function(e,r){i.subs[""+r]=e.getInitSubject().subscribe(function(e){return function(r){i.loaded[""+e]=r,hn.keys(i.loaded).length>=n.length&&(i.subs[""+e].unsubscribe(),t())}}(r)),e.emitInit()})},e}(),Us=function(e){function t(){var t=e.call(this,"no elements in sequence");this.name=t.name="EmptyError",this.stack=t.stack,this.message=t.message}return Object(o.__extends)(t,e),t}(Error),Bs=function(){function e(e,t,n,i){this.predicate=e,this.resultSelector=t,this.defaultValue=n,this.source=i}return e.prototype.call=function(e,t){return t.subscribe(new zs(e,this.predicate,this.resultSelector,this.defaultValue,this.source))},e}(),zs=function(e){function t(t,n,i,r,o){e.call(this,t),this.predicate=n,this.resultSelector=i,this.defaultValue=r,this.source=o,this.hasValue=!1,this.index=0,"undefined"!=typeof r&&(this.lastValue=r,this.hasValue=!0)}return Object(o.__extends)(t,e),t.prototype._next=function(e){var t=this.index++;if(this.predicate)this._tryPredicate(e,t);else{if(this.resultSelector)return void this._tryResultSelector(e,t);this.lastValue=e,this.hasValue=!0}},t.prototype._tryPredicate=function(e,t){var n;try{n=this.predicate(e,t,this.source)}catch(e){return void this.destination.error(e)}if(n){if(this.resultSelector)return void this._tryResultSelector(e,t);this.lastValue=e,this.hasValue=!0}},t.prototype._tryResultSelector=function(e,t){var n;try{n=this.resultSelector(e,t)}catch(e){return void this.destination.error(e)}this.lastValue=n,this.hasValue=!0},t.prototype._complete=function(){var e=this.destination;this.hasValue?(e.next(this.lastValue),e.complete()):e.error(new Us)},t}(Tn.a);U.a.prototype.last=function(e,t,n){return function(e,t,n){return function(i){return i.lift(new Bs(e,t,n,i))}}(e,t,n)(this)};var Ws=n("N4j0"),qs=n("cQXm"),Gs=function(e){function t(t,n){if(e.call(this),this.scheduler=n,null==t)throw new Error("iterator cannot be null.");this.iterator=$s(t)}return Object(o.__extends)(t,e),t.create=function(e,n){return new t(e,n)},t.dispatch=function(e){var t=e.index,n=e.iterator,i=e.subscriber;if(e.hasError)i.error(e.error);else{var r=n.next();r.done?i.complete():(i.next(r.value),e.index=t+1,i.closed?"function"==typeof n.return&&n.return():this.schedule(e))}},t.prototype._subscribe=function(e){var n=this.iterator,i=this.scheduler;if(i)return i.schedule(t.dispatch,0,{index:0,iterator:n,subscriber:e});for(;;){var r=n.next();if(r.done){e.complete();break}if(e.next(r.value),e.closed){"function"==typeof n.return&&n.return();break}}},t}(U.a),Zs=function(){function e(e,t,n){void 0===t&&(t=0),void 0===n&&(n=e.length),this.str=e,this.idx=t,this.len=n}return e.prototype[lo.a]=function(){return this},e.prototype.next=function(){return this.idxKs?Ks:r:r}()),this.arr=e,this.idx=t,this.len=n}return e.prototype[lo.a]=function(){return this},e.prototype.next=function(){return this.idx=e.length?i.complete():(i.next(t[n]),e.index=n+1,this.schedule(e)))},t.prototype._subscribe=function(e){var n=this.arrayLike,i=this.scheduler,r=n.length;if(i)return i.schedule(t.dispatch,0,{arrayLike:n,index:0,length:r,subscriber:e});for(var o=0;o0&&n[0].time-i.now()<=0;)n.shift().notification.observe(r);if(n.length>0){var o=Math.max(0,n[0].time-i.now());this.schedule(e,o)}else this.unsubscribe(),t.active=!1},t.prototype._schedule=function(e){this.active=!0,this.add(e.schedule(t.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))},t.prototype.scheduleNotification=function(e){if(!0!==this.errored){var t=this.scheduler,n=new sa(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}},t.prototype._next=function(e){this.scheduleNotification(ea.createNext(e))},t.prototype._error=function(e){this.errored=!0,this.queue=[],this.destination.error(e)},t.prototype._complete=function(){this.scheduleNotification(ea.createComplete())},t}(Tn.a),sa=function(e,t){this.time=e,this.notification=t};U.a.prototype.delay=function(e,t){return void 0===t&&(t=sn),function(e,t){void 0===t&&(t=sn);var n=ks(e)?+e-t.now():Math.abs(e);return function(e){return e.lift(new oa(n,t))}}(e,t)(this)};var aa=this&&this.__awaiter||function(e,t,n,i){return new(n||(n=Promise))(function(r,o){function l(e){try{a(i.next(e))}catch(e){o(e)}}function s(e){try{a(i.throw(e))}catch(e){o(e)}}function a(e){e.done?r(e.value):new n(function(t){t(e.value)}).then(l,s)}a((i=i.apply(e,t||[])).next())})},ua=this&&this.__generator||function(e,t){var n,i,r,o,l={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(o){return function(s){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;l;)try{if(n=1,i&&(r=i[2&o[0]?"return":o[0]?"throw":"next"])&&!(r=r.call(i,o[1])).done)return r;switch(i=0,r&&(o=[0,r.value]),o[0]){case 0:case 1:r=o;break;case 4:return l.label++,{value:o[1],done:!1};case 5:l.label++,i=o[1],o=[0];continue;case 7:o=l.ops.pop(),l.trys.pop();continue;default:if(!(r=(r=l.trys).length>0&&r[r.length-1])&&(6===o[0]||2===o[0])){l=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]0&&r[r.length-1])&&(6===o[0]||2===o[0])){l=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]0&&r[r.length-1])&&(6===o[0]||2===o[0])){l=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]0&&r[r.length-1])&&(6===o[0]||2===o[0])){l=0;continue}if(3===o[0]&&(!r||o[1]>r[0]&&o[1]0)},t}(Gi),La=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(o.__extends)(t,e),t.prototype.ngOnInit=function(){this.field.init(),this.field.registerEvents()},t}(pr),ka=function(e){function t(t,n,i,r,o){var l=e.call(this)||this;return l.RecordsService=n,l.fcs=i,l.LocationService=r,l.translationService=o,l.fields=[],l.loading=!1,l.oid=t.nativeElement.getAttribute("oid"),l.editMode="true"==t.nativeElement.getAttribute("editMode"),l.recordType=t.nativeElement.getAttribute("recordType"),l.rdmp=t.nativeElement.getAttribute("rdmp"),l.fieldMap={_rootComp:l},l.user={},l.initSubs=n.waitForInit(function(e){l.initSubs.unsubscribe(),l.loadForm()}),l}return Object(o.__extends)(t,e),t.prototype.loginUser=function(e){this.user=e},t.prototype.registerEvents=function(){},t.prototype.loadForm=function(){var e=this;this.fcs.addComponentClasses({LabarchivesLoginField:{meta:ha,comp:fa},LabarchivesListField:{meta:ma,comp:ga},LabarchivesLinkField:{meta:ba,comp:wa},LabarchivesCreateField:{meta:Ta,comp:La}}),this.RecordsService.getForm(this.oid,this.recordType,this.editMode).then(function(t){t.subscribe(function(t){e.formDef=t,e.cssClasses=e.editMode?e.formDef.editCssClasses:e.formDef.viewCssClasses,e.loggedIn=!1,t.fieldsMeta&&(e.fields=t.fieldsMeta,e.rebuildForm(),e.watchForChanges(),e.registerEvents(),e.fieldMap.BackToPlan.field.value=e.fieldMap.BackToPlan.field.value+e.rdmp+"?focusTabId=workspaces")})}).catch(function(t){console.log("Error loading form..."),console.log(t),0==t.status&&(e.criticalError=t.message),e.setLoading(!1)})},t.prototype.rebuildForm=function(){this.form=this.fcs.toFormGroup(this.fields,this.fieldMap)},t.prototype.watchForChanges=function(){this.setLoading(!1),this.editMode&&this.form.valueChanges.subscribe(function(e){})},t}(Hs),Ca=n("EFqf");U.a.throw=function(e){function t(t,n){e.call(this),this.error=t,this.scheduler=n}return Object(o.__extends)(t,e),t.create=function(e,n){return new t(e,n)},t.dispatch=function(e){e.subscriber.error(e.error)},t.prototype._subscribe=function(e){var n=this.error,i=this.scheduler;if(e.syncErrorThrowable=!0,i)return i.schedule(t.dispatch,0,{error:n,subscriber:e});e.error(n)},t}(U.a).create;var Sa=function(){function e(e){this.http=e,this._renderer=new Ca.Renderer,this.extendRenderer(),this.setMarkedOptions({})}return e.prototype.getContent=function(e){return this.http.get(e).map(this.extractData).catch(this.handleError)},Object.defineProperty(e.prototype,"renderer",{get:function(){return this._renderer},enumerable:!0,configurable:!0}),e.prototype.extractData=function(e){return e.text()||""},e.prototype.setMarkedOptions=function(e){(e=Object.assign({gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!0,smartypants:!1},e)).renderer=this._renderer,Ca.setOptions(e)},e.prototype.compile=function(e){return Ca(e)},e.prototype.handleError=function(e){var t;if(e instanceof Yt){var n=e.json()||"",i=n.error||JSON.stringify(n);t=e.status+" - "+(e.statusText||"")+" "+i}else t=e.message?e.message:e.toString();return console.error(t),U.a.throw(t)},e.prototype.extendRenderer=function(){this._renderer.listitem=function(e){return/^\s*\[[x ]\]\s*/.test(e)?'
  • '+(e=e.replace(/^\s*\[ \]\s*/,' ').replace(/^\s*\[x\]\s*/,' '))+"
  • ":"
  • "+e+"
  • "}},e}(),Ea=(n("OEdS"),n("nLW9"),n("zUCJ"),n("aIOA"),n("4k0j"),n("+Q++"),n("8eeq"),n("GiG9"),n("TSjD"),n("ZVNe"),n("IcAb"),n("1vRr"),n("GThk"),n("fXP7"),function(){function e(e,t,n){this.mdService=e,this.el=t,this.http=n,this.changeLog=[]}return e.prototype.ngOnInit=function(){},Object.defineProperty(e.prototype,"path",{set:function(e){this._path=e,this.onPathChange()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"data",{set:function(e){this._data=e,this.onDataChange(e)},enumerable:!0,configurable:!0}),e.prototype.onDataChange=function(e){this.el.nativeElement.innerHTML=this.mdService.compile(e),Prism.highlightAll(!1)},e.prototype.ngAfterViewInit=function(){this._path?this.onPathChange():this.processRaw()},e.prototype.processRaw=function(){this._md=this.prepare(this.el.nativeElement.innerHTML),this.el.nativeElement.innerHTML=this.mdService.compile(this._md),Prism.highlightAll(!1)},e.prototype.onPathChange=function(){var e=this;this._ext=this._path&&this._path.split(".").splice(-1).join(),this.mdService.getContent(this._path).subscribe(function(t){e._md="md"!==e._ext?"```"+e._ext+"\n"+t+"\n```":t,e.el.nativeElement.innerHTML=e.mdService.compile(e.prepare(e._md)),Prism.highlightAll(!1)},function(t){return e.handleError})},e.prototype.handleError=function(e){return console.error("An error occurred",e),Promise.reject(e.message||e)},e.prototype.prepare=function(e){var t=this;if(!e)return"";if("md"===this._ext||!this.path){var n=!1;return e.split("\n").map(function(e){return"```"===t.trimLeft(e).substring(0,3)&&(n=!n),n?e:e.trim()}).join("\n")}return e.replace(/\"/g,"'")},e.prototype.trimLeft=function(e){return e.replace(/^\s+|\s+$/g,"")},e}()),Oa=i["\u0275crt"]({encapsulation:0,styles:[".token.operator[_ngcontent-%COMP%], .token.entity[_ngcontent-%COMP%], .token.url[_ngcontent-%COMP%], .language-css[_ngcontent-%COMP%] .token.string[_ngcontent-%COMP%], .style[_ngcontent-%COMP%] .token.string[_ngcontent-%COMP%] {\n background: none;\n }"],data:{}});function Da(e){return i["\u0275vid"](0,[i["\u0275ncd"](null,0)],null,null)}var Pa=i["\u0275ccf"]("markdown,[Markdown]",Ea,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"markdown",[],null,null,null,Da,Oa)),i["\u0275did"](1,4308992,null,0,Ea,[Sa,i.ElementRef,Qt],null,null)],function(e,t){e(t,1,0)},null)},{path:"path",data:"data"},{},["*"]),Ia=function(){function e(e,t){this.componentFactoryResolver=e,this.app=t,this.isEmbedded=!1,this.disabled=!1,this.disabledElements=[]}return Object.defineProperty(e.prototype,"isValid",{get:function(){return!(!this.form||!this.form.controls)&&this.form.controls[this.field.name].valid},enumerable:!0,configurable:!0}),e.prototype.isDisabled=function(){var e=this.field.options.disabledExpression;if(null!=e){var t={imports:{}};hn.forOwn(this.fieldMap._rootComp,function(e,n){t.imports[n]=e}),t.imports.moment=Ji.a;var n=hn.template(e,t),i=jQuery(this.fieldElement.nativeElement.parentElement);return"true"==n()?(this.disabled||(this.disabledElements=i.find("*:disabled"),i.find("input").prop("disabled",!0),i.find("button").filter(function(e,t){return jQuery(t).find("span[class='glyphicon glyphicon-question-sign']").length<=0}).prop("disabled",!0),i.find("textarea").prop("disabled",!0),i.find("select").prop("disabled",!0),this.disabled=!0),"disabled"):(this.disabled&&(i.find("input").prop("disabled",!1),i.find("button").prop("disabled",!1),i.find("textarea").prop("disabled",!1),i.find("select").prop("disabled",!1),hn.each(this.disabledElements,function(e){hn.isFunction(e.prop)&&e.prop("disabled",!0)}),this.disabledElements=[],this.disabled=!1),null)}return null},e.prototype.ngOnChanges=function(){if(this.field&&this.componentFactoryResolver){this.fieldAnchor.clear();var e=this.componentFactoryResolver.resolveComponentFactory(this.field.compClass),t=this.fieldAnchor.createComponent(e,void 0,this.app._injector);t.instance.injector=this.app._injector,t.instance.field=this.field,t.instance.form=this.form,t.instance.fieldMap=this.fieldMap,t.instance.parentId=this.parentId,t.instance.isEmbedded=this.isEmbedded,t.instance.name=this.name,t.instance.index=this.index,this.field.setFieldMapEntry(this.fieldMap,t)}},e}(),ja=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Ra(e){return i["\u0275vid"](0,[i["\u0275qud"](402653184,1,{fieldAnchor:0}),i["\u0275qud"](402653184,2,{fieldElement:0}),(e()(),i["\u0275eld"](2,16777216,[[1,3],[2,0],["field",1]],null,0,"span",[],[[1,"disabled",0]],null,null,null,null))],null,function(e,t){e(t,2,0,t.component.isDisabled())})}var Aa=i["\u0275ccf"]("dmp-field",Ia,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],null,null)],null,null)},{field:"field",form:"form",value:"value",fieldMap:"fieldMap",parentId:"parentId",isEmbedded:"isEmbedded",name:"name",index:"index"},{},[]),Ya=n("E30z"),Na=n("8oH5"),Fa=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Va(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Ha(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function Ua(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,21,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,7,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Va)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ha)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,9,"input",[],[[8,"id",0],[8,"type",0],[8,"readOnly",0],[1,"aria-label",0],[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null],[2,"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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"submit"],[null,"reset"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,13)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,13).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,13)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,13)._compositionEnd(n.target.value)&&r),"submit"===t&&(r=!1!==i["\u0275nov"](e,18).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,18).onReset()&&r),r},null,null)),i["\u0275did"](12,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](13,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](15,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](17,16384,null,0,mi,[zn],null,null),i["\u0275did"](18,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](20,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,n.field.help),e(t,8,0,n.helpShow),e(t,12,0,n.field.cssClasses),e(t,15,0,n.getFormControl()),e(t,18,0,n.form)},function(e,t){var n=t.component;e(t,2,0,n.field.name),e(t,3,0,n.field.label,n.getRequiredLabelStr()),e(t,11,1,[n.field.name,n.field.type,n.field.readOnly,"",i["\u0275nov"](t,17).ngClassUntouched,i["\u0275nov"](t,17).ngClassTouched,i["\u0275nov"](t,17).ngClassPristine,i["\u0275nov"](t,17).ngClassDirty,i["\u0275nov"](t,17).ngClassValid,i["\u0275nov"](t,17).ngClassInvalid,i["\u0275nov"](t,17).ngClassPending,i["\u0275nov"](t,20).ngClassUntouched,i["\u0275nov"](t,20).ngClassTouched,i["\u0275nov"](t,20).ngClassPristine,i["\u0275nov"](t,20).ngClassDirty,i["\u0275nov"](t,20).ngClassValid,i["\u0275nov"](t,20).ngClassInvalid,i["\u0275nov"](t,20).ngClassPending])})}function Ba(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onRemove(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.removeBtnClass)},function(e,t){var n=t.component;e(t,0,0,!n.canRemove),e(t,2,0,n.removeBtnText)})}function za(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,19,"div",[["class","input-group padding-bottom-15"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,6,"input",[],[[8,"id",0],[8,"type",0],[8,"readOnly",0],[1,"aria-labelledby",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,8,"span",[["class","input-group-btn"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ba)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0],[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onRemove(n)&&i),i},null,null)),i["\u0275did"](16,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,6,0,n.getFormControl(n.name,n.index)),e(t,13,0,n.removeBtnText),e(t,16,0,n.removeBtnClass)},function(e,t){var n=t.component;e(t,2,1,[n.field.name,n.field.type,n.field.readOnly,n.name,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending]),e(t,15,0,!n.canRemove,i["\u0275unv"](t,15,1,i["\u0275nov"](t,17).transform("remove-button-label")))})}function Wa(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function qa(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function Ga(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[],[[4,"visibility",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Wa)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,qa)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,6,0,null==n.field.validationMessages?null:n.field.validationMessages.required)},function(e,t){var n=t.component;e(t,0,0,n.getFormControl()&&n.getFormControl().hasError("required")&&n.getFormControl().touched?"inherit":"hidden")})}function Za(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,11,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ua)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,za)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ga)),i["\u0275did"](10,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,4,0,!n.isEmbedded),e(t,7,0,n.isEmbedded),e(t,10,0,n.field.required&&(n.field.label||n.field.validationMessages&&n.field.validationMessages.required))},null)}function Ja(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function $a(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ja)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.label)},function(e,t){e(t,6,0,t.component.field.value)})}function Ka(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Za)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,$a)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode&&n.field.visible),e(t,5,0,!n.field.editMode&&n.field.visible)},null)}var Qa=i["\u0275ccf"]("textfield",Vr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"textfield",[],null,null,null,Ka,Fa)),i["\u0275did"](1,49152,null,0,Vr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded",canRemove:"canRemove",removeBtnText:"removeBtnText",removeBtnClass:"removeBtnClass"},{onRemoveBtnClick:"onRemoveBtnClick"},[]),Xa=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function eu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function tu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function nu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"span",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"textfield",[],null,[[null,"onRemoveBtnClick"]],function(e,t,n){var i=!0;return"onRemoveBtnClick"===t&&(i=!1!==e.component.removeElem(n[0],n[1])&&i),i},Ka,Fa)),i["\u0275did"](5,49152,null,0,Vr,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],index:[3,"index"],name:[4,"name"],isEmbedded:[5,"isEmbedded"],canRemove:[6,"canRemove"],removeBtnText:[7,"removeBtnText"],removeBtnClass:[8,"removeBtnClass"]},{onRemoveBtnClick:"onRemoveBtnClick"}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,t.context.$implicit,n.form,n.fieldMap,t.context.index,n.field.name,!0,n.field.fields.length>1,n.field.removeButtonText,n.field.removeButtonClass)},null)}function iu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function ru(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function ou(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","col-xs-12"]],[[4,"visibility",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,iu)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ru)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,6,0,null==n.field.validationMessages?null:n.field.validationMessages.required)},function(e,t){var n=t.component;e(t,0,0,n.getFormControl()&&n.hasRequiredError()&&n.getFormControl().touched?"inherit":"hidden")})}function lu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.addButtonTextClass)},function(e,t){e(t,2,0,t.component.field.addButtonText)})}function su(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.addButtonClass)},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,2).transform("add-button-label")))})}function au(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,37,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,13,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,10,"div",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"span",[["class","label-font"]],[[8,"id",0]],null,null,null,null)),(e()(),i["\u0275ted"](7,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,eu)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,tu)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,nu)),i["\u0275did"](18,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ou)),i["\u0275did"](23,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,10,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,7,"span",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,lu)),i["\u0275did"](31,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,su)),i["\u0275did"](34,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,9,0,n.field.help),e(t,13,0,n.helpShow),e(t,18,0,n.field.fields),e(t,23,0,n.field.required&&!n.field.delegateErrorHandling&&(n.field.label||n.field.validationMessages&&n.field.validationMessages.required)),e(t,31,0,n.field.addButtonText),e(t,34,0,!n.field.addButtonText)},function(e,t){var n=t.component;e(t,6,0,n.field.name),e(t,7,0,n.field.label,n.getRequiredLabelStr())})}function uu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function cu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"textfield",[],null,null,null,Ka,Fa)),i["\u0275did"](1,49152,null,0,Vr,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function du(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,uu)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,7,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,4,"ul",[["class","key-value-list"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,cu)),i["\u0275did"](10,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,10,0,n.field.fields)},null)}function pu(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,au)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,du)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var hu=i["\u0275ccf"]("repeatable-textfield",Hr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"repeatable-textfield",[],null,null,null,pu,Xa)),i["\u0275did"](1,114688,null,0,Hr,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),fu=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function mu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function gu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,5,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,4,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function vu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,gu)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,7,"textarea",[],[[1,"rows",0],[1,"cols",0],[8,"id",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,7)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,7).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,7)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,7)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](6,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](7,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](9,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](11,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](12,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.helpShow),e(t,6,0,n.field.cssClasses),e(t,9,0,n.getFormControl())},function(e,t){var n=t.component;e(t,5,0,n.field.rows,n.field.cols,n.field.name,i["\u0275nov"](t,11).ngClassUntouched,i["\u0275nov"](t,11).ngClassTouched,i["\u0275nov"](t,11).ngClassPristine,i["\u0275nov"](t,11).ngClassDirty,i["\u0275nov"](t,11).ngClassValid,i["\u0275nov"](t,11).ngClassInvalid,i["\u0275nov"](t,11).ngClassPending),e(t,12,0,n.field.value)})}function yu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[["class","input-group padding-bottom-15"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,7,"textarea",[],[[1,"rows",0],[1,"cols",0],[8,"id",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](9,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,6,0,n.getFormControl(n.name,n.index))},function(e,t){var n=t.component;e(t,2,0,n.field.rows,n.field.cols,n.field.name,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending),e(t,9,0,n.field.value)})}function _u(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function bu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function wu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[],[[4,"visibility",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,_u)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,bu)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,6,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&(null==n.field.validationMessages?null:n.field.validationMessages.required))},function(e,t){var n=t.component;e(t,0,0,n.getFormControl()&&n.getFormControl().hasError("required")&&n.getFormControl().touched?"inherit":"hidden")})}function xu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,23,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](7,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,mu)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,vu)),i["\u0275did"](14,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,yu)),i["\u0275did"](18,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wu)),i["\u0275did"](22,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,2,0,n.form),e(t,9,0,n.field.help),e(t,14,0,!n.field.isEmbedded),e(t,18,0,n.isEmbedded),e(t,22,0,n.field.required)},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,6,0,n.field.name),e(t,7,0,n.field.label,n.getRequiredLabelStr())})}function Mu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Tu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,1,0,t.context.$implicit)})}function Lu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mu)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Tu)),i["\u0275did"](6,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,6,0,n.field.lines)},null)}function ku(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xu)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Lu)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var Cu=i["\u0275ccf"]("text-area",Ur,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"text-area",[],null,null,null,ku,fu)),i["\u0275did"](1,114688,null,0,Ur,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded",canRemove:"canRemove",removeBtnText:"removeBtnText",removeBtnClass:"removeBtnClass"},{onRemoveBtnClick:"onRemoveBtnClick"},[]),Su=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Eu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Ou(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function Du(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["style","font-weight:bold"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Preview"]))],null,null)}function Pu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Iu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function ju(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,33,"div",[["class","form-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,"submit"],[null,"reset"]],function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](6,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Eu)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ou)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,5,"textarea",[["class","form-control"]],[[1,"rows",0],[1,"cols",0],[8,"id",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,16)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,16).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,16)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,16)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.value=n)&&r),r},null,null)),i["\u0275did"](16,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](18,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"],model:[1,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](20,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Du)),i["\u0275did"](23,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,1,"markdown",[],null,null,null,Da,Oa)),i["\u0275did"](26,4308992,null,0,Ea,[Sa,i.ElementRef,Qt],{data:[0,"data"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Pu)),i["\u0275did"](29,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Iu)),i["\u0275did"](32,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.form),e(t,8,0,n.field.help),e(t,13,0,n.helpShow),e(t,18,0,n.getFormControl(),n.field.value),e(t,23,0,n.field.value),e(t,26,0,n.field.value),e(t,29,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,32,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&(null==n.field.validationMessages?null:n.field.validationMessages.required))},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,3).ngClassUntouched,i["\u0275nov"](t,3).ngClassTouched,i["\u0275nov"](t,3).ngClassPristine,i["\u0275nov"](t,3).ngClassDirty,i["\u0275nov"](t,3).ngClassValid,i["\u0275nov"](t,3).ngClassInvalid,i["\u0275nov"](t,3).ngClassPending),e(t,5,0,n.field.name),e(t,6,0,n.field.label,n.getRequiredLabelStr()),e(t,15,0,n.field.rows,n.field.cols,n.field.name,i["\u0275nov"](t,20).ngClassUntouched,i["\u0275nov"](t,20).ngClassTouched,i["\u0275nov"](t,20).ngClassPristine,i["\u0275nov"](t,20).ngClassDirty,i["\u0275nov"](t,20).ngClassValid,i["\u0275nov"](t,20).ngClassInvalid,i["\u0275nov"](t,20).ngClassPending)})}function Ru(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Au(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"markdown",[],null,null,null,Da,Oa)),i["\u0275did"](1,4308992,null,0,Ea,[Sa,i.ElementRef,Qt],{data:[0,"data"]},null)],function(e,t){e(t,1,0,t.component.field.value)},null)}function Yu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ru)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Au)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,6,0,n.field.value)},null)}function Nu(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ju)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Yu)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var Fu=i["\u0275ccf"]("markdown-text-area",Br,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"markdown-text-area",[],null,null,null,Nu,Su)),i["\u0275did"](1,114688,null,0,Br,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded",canRemove:"canRemove",removeBtnText:"removeBtnText",removeBtnClass:"removeBtnClass"},{onRemoveBtnClick:"onRemoveBtnClick"},[]),Vu=(Object(i.forwardRef)(function(){return Vu}),function(){function e(){this.timepickerOptions={},this.datepickerOptions={},this.idDatePicker=Uu("q-datepicker_"),this.idTimePicker=Uu("q-timepicker_"),this.onChange=function(e){},this.onTouched=function(){}}return Object.defineProperty(e.prototype,"tabindexAttr",{get:function(){return void 0===this.tabindex?"-1":void 0},enumerable:!0,configurable:!0}),e.prototype.ngAfterViewInit=function(){this.init()},e.prototype.ngOnDestroy=function(){this.datepicker&&this.datepicker.datepicker("destroy"),this.timepicker&&this.timepicker.timepicker("remove")},e.prototype.ngOnChanges=function(e){e&&(e.datepickerOptions&&this.datepicker&&(this.datepicker.datepicker("destroy"),e.datepickerOptions.currentValue?(this.datepicker=null,this.init()):!1===e.datepickerOptions.currentValue&&this.datepicker.remove()),e.timepickerOptions&&this.timepicker&&(this.timepicker.timepicker("remove"),e.timepickerOptions.currentValue?(this.timepicker=null,this.init()):!1===e.timepickerOptions.currentValue&&this.timepicker.parent().remove()))},e.prototype.writeValue=function(e){var t=this;this.date=e,Bu(this.date)?setTimeout(function(){t.updateModel(t.date)},0):this.clearModels()},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.checkEmptyValue=function(e){""===e.target.value&&(!1===this.timepickerOptions||!1===this.datepickerOptions||""===this.timeModel&&""===this.dateModel)&&this.onChange(void 0)},e.prototype.clearModels=function(){this.onChange(void 0),this.timepicker&&this.timepicker.timepicker("setTime",null),this.updateDatepicker(null)},e.prototype.showTimepicker=function(){this.timepicker.timepicker("showWidget")},e.prototype.showDatepicker=function(){this.datepicker.datepicker("show")},e.prototype.init=function(){var e=this;if(this.datepicker||!1===this.datepickerOptions)!1===this.datepickerOptions&&$("#"+this.idDatePicker).remove();else{var t=jQuery.extend({enableOnReadonly:!this.readonly},this.datepickerOptions);this.datepicker=$("#"+this.idDatePicker).datepicker(t),this.datepicker.on("changeDate",function(t){var n=t.date;Bu(e.date)&&Bu(n)&&(n.setHours(e.date.getHours()),n.setMinutes(e.date.getMinutes()),n.setSeconds(e.date.getSeconds())),e.date=n,e.onChange(n)})}this.timepicker||!1===this.timepickerOptions?!1===this.timepickerOptions&&$("#"+this.idTimePicker).parent().remove():(t=jQuery.extend({defaultTime:!1},this.timepickerOptions),this.timepicker=$("#"+this.idTimePicker).timepicker(t),this.timepicker.on("changeTime.timepicker",function(t){var n=t.time,i=n.meridian,r=n.hours;i&&("PM"===i&&r<12&&(r+=12),"AM"===i&&12===r&&(r-=12),r=parseInt(e.pad(r))),Bu(e.date)||(e.date=new Date,e.updateDatepicker(e.date)),e.date.setHours(r),e.date.setMinutes(t.time.minutes),e.date.setSeconds(t.time.seconds),e.onChange(e.date)})),this.updateModel(this.date)},e.prototype.updateModel=function(e){if(this.updateDatepicker(e),void 0!==this.timepicker&&Bu(e)){var t=e.getHours();this.timepickerOptions.showMeridian&&(t=0===t||12===t?12:t%12);var n=e.getHours()>=12?" PM":" AM",i=this.pad(t)+":"+this.pad(this.date.getMinutes())+":"+this.pad(this.date.getSeconds())+(this.timepickerOptions.showMeridian||void 0===this.timepickerOptions.showMeridian?n:"");this.timepicker.timepicker("setTime",i),this.timeModel=i}},e.prototype.updateDatepicker=function(e){void 0!==this.datepicker&&this.datepicker.datepicker("update",e)},e.prototype.pad=function(e){return e.toString().length<2?"0"+e:e.toString()},e}()),Hu=0;function Uu(e){return e+ ++Hu}function Bu(e){return"[object Date]"===Object.prototype.toString.call(e)}var zu=i["\u0275crt"]({encapsulation:0,styles:[".ng2-datetime[_ngcontent-%COMP%] *[hidden][_ngcontent-%COMP%] { display: none; }"],data:{}});function Wu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"button",[["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.clearModels()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["Clear"]))],null,null)}function qu(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,40,"div",[["class","form-inline ng2-datetime"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,16,"div",[],null,null,null,null,null)),i["\u0275did"](4,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pod"](5,{"form-group":0,"input-group":1,date:2}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,5,"input",[["class","form-control"],["type","text"]],[[8,"id",0],[1,"readonly",0],[1,"required",0],[1,"placeholder",0],[1,"tabindex",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,"blur"],[null,"keyup"],[null,"input"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,8)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,8).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,8)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,8)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.dateModel=n)&&r),"blur"===t&&(r=!1!==o.onTouched()&&r),"keyup"===t&&(r=!1!==o.checkEmptyValue(n)&&r),r},null,null)),i["\u0275did"](8,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](10,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](12,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,4,"div",[["class","input-group-addon"]],[[8,"hidden",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.showDatepicker()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,1,"span",[],null,null,null,null,null)),i["\u0275did"](17,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,16,"div",[],null,null,null,null,null)),i["\u0275did"](22,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pod"](23,{"form-group":0,"input-group":1,"bootstrap-timepicker timepicker":2}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,5,"input",[["class","form-control input-small"],["type","text"]],[[8,"id",0],[1,"readonly",0],[1,"required",0],[1,"placeholder",0],[1,"tabindex",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,"focus"],[null,"blur"],[null,"keyup"],[null,"input"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,26)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,26).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,26)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,26)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.timeModel=n)&&r),"focus"===t&&(r=!1!==o.showTimepicker()&&r),"blur"===t&&(r=!1!==o.onTouched()&&r),"keyup"===t&&(r=!1!==o.checkEmptyValue(n)&&r),r},null,null)),i["\u0275did"](26,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](28,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](30,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](32,0,null,null,4,"span",[["class","input-group-addon"]],[[8,"hidden",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](34,0,null,null,1,"i",[],null,null,null,null,null)),i["\u0275did"](35,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Wu)),i["\u0275did"](40,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,4,0,e(t,5,0,!0,!n.datepickerOptions.hideIcon,!0)),e(t,10,0,n.dateModel),e(t,17,0,n.datepickerOptions.icon||"glyphicon glyphicon-th"),e(t,22,0,e(t,23,0,!0,!n.timepickerOptions.hideIcon,!0)),e(t,28,0,n.timeModel),e(t,35,0,n.timepickerOptions.icon||"glyphicon glyphicon-time"),e(t,40,0,n.hasClearButton)},function(e,t){var n=t.component;e(t,7,1,[i["\u0275inlineInterpolate"](1,"",n.idDatePicker,""),n.readonly,n.required,n.datepickerOptions.placeholder||"Choose date",n.tabindex,i["\u0275nov"](t,12).ngClassUntouched,i["\u0275nov"](t,12).ngClassTouched,i["\u0275nov"](t,12).ngClassPristine,i["\u0275nov"](t,12).ngClassDirty,i["\u0275nov"](t,12).ngClassValid,i["\u0275nov"](t,12).ngClassInvalid,i["\u0275nov"](t,12).ngClassPending]),e(t,14,0,n.datepickerOptions.hideIcon||!1===n.datepickerOptions),e(t,25,1,[i["\u0275inlineInterpolate"](1,"",n.idTimePicker,""),n.readonly,n.required,n.timepickerOptions.placeholder||"Set time",n.tabindex,i["\u0275nov"](t,30).ngClassUntouched,i["\u0275nov"](t,30).ngClassTouched,i["\u0275nov"](t,30).ngClassPristine,i["\u0275nov"](t,30).ngClassDirty,i["\u0275nov"](t,30).ngClassValid,i["\u0275nov"](t,30).ngClassInvalid,i["\u0275nov"](t,30).ngClassPending]),e(t,32,0,n.timepickerOptions.hideIcon||!1)})}var Gu=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Zu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Ju(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function $u(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"option",[],null,null,null,null,null)),i["\u0275did"](1,147456,null,0,$n,[i.ElementRef,i.Renderer2,[2,Jn]],{value:[0,"value"]},null),i["\u0275did"](2,147456,null,0,Xn,[i.ElementRef,i.Renderer2,[8,null]],{value:[0,"value"]},null),(e()(),i["\u0275ted"](3,null,["",""]))],function(e,t){e(t,1,0,t.context.$implicit.value),e(t,2,0,t.context.$implicit.value)},function(e,t){e(t,3,0,t.context.$implicit.label)})}function Ku(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,$u)),i["\u0275did"](2,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,t.component.field.selectOptions)},null)}function Qu(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"option",[],null,null,null,null,null)),i["\u0275did"](1,147456,null,0,$n,[i.ElementRef,i.Renderer2,[2,Jn]],{ngValue:[0,"ngValue"]},null),i["\u0275did"](2,147456,null,0,Xn,[i.ElementRef,i.Renderer2,[8,null]],{ngValue:[0,"ngValue"]},null),(e()(),i["\u0275ted"](3,null,["",""]))],function(e,t){e(t,1,0,t.context.$implicit),e(t,2,0,t.context.$implicit)},function(e,t){e(t,3,0,t.context.$implicit.label)})}function Xu(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Qu)),i["\u0275did"](2,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,t.component.field.selectOptions)},null)}function ec(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function tc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function nc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,36,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](7,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Zu)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ju)),i["\u0275did"](14,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,13,"select",[],[[8,"id",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,"change"],[null,"blur"]],function(e,t,n){var r=!0;return"change"===t&&(r=!1!==i["\u0275nov"](e,18).onChange(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,18).onTouched()&&r),r},null,null)),i["\u0275did"](17,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](18,16384,null,0,Jn,[i.Renderer2,i.ElementRef],{compareWith:[0,"compareWith"]},null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Jn]),i["\u0275did"](20,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](22,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ku)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Xu)),i["\u0275did"](28,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ec)),i["\u0275did"](32,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,tc)),i["\u0275did"](35,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,2,0,n.form),e(t,9,0,n.field.help),e(t,14,0,n.helpShow),e(t,17,0,n.field.cssClasses),e(t,18,0,n.compare),e(t,20,0,n.getFormControl()),e(t,25,0,!n.field.storeValueAndLabel),e(t,28,0,n.field.storeValueAndLabel),e(t,32,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,35,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&(null==n.field.validationMessages?null:n.field.validationMessages.required))},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,6,0,n.field.name),e(t,7,0,n.field.label,n.getRequiredLabelStr()),e(t,16,0,n.field.name,i["\u0275nov"](t,22).ngClassUntouched,i["\u0275nov"](t,22).ngClassTouched,i["\u0275nov"](t,22).ngClassPristine,i["\u0275nov"](t,22).ngClassDirty,i["\u0275nov"](t,22).ngClassValid,i["\u0275nov"](t,22).ngClassInvalid,i["\u0275nov"](t,22).ngClassPending)})}function ic(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function rc(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](2,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,n.getLabel(n.field.value))})}function oc(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](2,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,n.getLabel(n.field.value.value))})}function lc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ic)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,rc)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,oc)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,6,0,!n.field.storeValueAndLabel),e(t,9,0,n.field.storeValueAndLabel&&""!=n.field.value.value)},null)}function sc(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,nc)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,lc)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var ac=i["\u0275ccf"]("dropdownfield",fr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dropdownfield",[],null,null,null,sc,Gu)),i["\u0275did"](1,49152,null,0,fr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),uc=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function cc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function dc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function pc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,6,"input",[["type","radio"]],[[8,"id",0],[1,"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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"],[null,"change"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,1)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,1).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,1)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,1)._compositionEnd(n.target.value)&&r),"change"===t&&(r=!1!==i["\u0275nov"](e,2).onChange()&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,2).onTouched()&&r),r},null,null)),i["\u0275did"](1,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275did"](2,212992,null,0,qn,[i.Renderer2,i.ElementRef,Wn,i.Injector],{name:[0,"name"],value:[1,"value"]},null),i["\u0275prd"](1024,null,An,function(e,t){return[e,t]},[Fn,qn]),i["\u0275did"](4,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](6,16384,null,0,mi,[zn],null,null)],function(e,t){var n=t.component;e(t,2,0,i["\u0275inlineInterpolate"](1,"",n.field.name,""),t.parent.context.$implicit.value),e(t,4,0,n.getFormControl())},function(e,t){var n=t.component;e(t,0,0,n.field.name+"_"+t.parent.context.$implicit.value,n.field.readOnly?"":null,i["\u0275nov"](t,6).ngClassUntouched,i["\u0275nov"](t,6).ngClassTouched,i["\u0275nov"](t,6).ngClassPristine,i["\u0275nov"](t,6).ngClassDirty,i["\u0275nov"](t,6).ngClassValid,i["\u0275nov"](t,6).ngClassInvalid,i["\u0275nov"](t,6).ngClassPending)})}function hc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"input",[],[[8,"type",0],[8,"name",0],[8,"id",0],[8,"value",0],[1,"selected",0],[1,"checked",0],[1,"disabled",0]],[[null,"change"]],function(e,t,n){var i=!0;return"change"===t&&(i=!1!==e.component.onChange(e.parent.context.$implicit,n)&&i),i},null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.controlType,""),i["\u0275inlineInterpolate"](1,"",n.field.name,""),n.field.name+"_"+t.parent.context.$implicit.value,t.parent.context.$implicit.value,n.getControlFromOption(t.parent.context.$implicit),n.getControlFromOption(t.parent.context.$implicit),n.field.readOnly?"":null)})}function fc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,pc)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,hc)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,1,"label",[["class","radio-label"]],[[8,"htmlFor",0]],null,null,null,null)),(e()(),i["\u0275ted"](10,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,4,0,n.isRadio()),e(t,7,0,!n.isRadio())},function(e,t){e(t,9,0,i["\u0275inlineInterpolate"](1,"",t.component.field.name+"_"+t.context.$implicit.value,"")),e(t,10,0,t.context.$implicit.label)})}function mc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function gc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function vc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,29,"div",[["class","form-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,"submit"],[null,"reset"]],function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,cc)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,dc)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,7,"fieldset",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,1,"legend",[],[[8,"hidden",0]],null,null,null,null)),(e()(),i["\u0275eld"](18,0,null,null,0,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,fc)),i["\u0275did"](21,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,mc)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,gc)),i["\u0275did"](28,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.form),e(t,8,0,n.field.help),e(t,13,0,n.helpShow),e(t,21,0,n.field.selectOptions),e(t,25,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,28,0,n.getFormControl().hasError("required")&&n.getFormControl().touched&&(null==n.field.validationMessages?null:n.field.validationMessages.required))},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,3).ngClassUntouched,i["\u0275nov"](t,3).ngClassTouched,i["\u0275nov"](t,3).ngClassPristine,i["\u0275nov"](t,3).ngClassDirty,i["\u0275nov"](t,3).ngClassValid,i["\u0275nov"](t,3).ngClassInvalid,i["\u0275nov"](t,3).ngClassPending),e(t,6,0,n.field.label,n.getRequiredLabelStr()),e(t,17,0,!0)})}function yc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function _c(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,yc)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.label)},function(e,t){var n=t.component;e(t,6,0,n.getLabel(n.field.value))})}function bc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function wc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,1,0,n.getLabel(n.field.value))})}function xc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,1,0,t.component.getLabel(t.context.$implicit))})}function Mc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xc)),i["\u0275did"](3,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.value)},null)}function Tc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,bc)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wc)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mc)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,6,0,!n.isValArray()),e(t,9,0,n.isValArray())},null)}function Lc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,_c)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Tc)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "]))],function(e,t){var n=t.component;e(t,3,0,n.isRadio()),e(t,6,0,!n.isRadio())},null)}function kc(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,vc)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Lc)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode&&n.field.visible),e(t,5,0,!n.field.editMode)},null)}var Cc=i["\u0275ccf"]("selectionfield",mr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"selectionfield",[],null,null,null,kc,uc)),i["\u0275did"](1,49152,null,0,mr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Sc=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Ec(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"li",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pod"](2,{active:0}),(e()(),i["\u0275eld"](3,0,null,null,1,"a",[["data-toggle","tab"],["role","tab"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](4,null,["",""]))],function(e,t){e(t,1,0,e(t,2,0,t.context.$implicit.active))},function(e,t){e(t,3,0,i["\u0275inlineInterpolate"](1,"#",t.context.$implicit.id,"")),e(t,4,0,t.context.$implicit.label)})}function Oc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[["class","form-row"]],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],parentId:[3,"parentId"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap,t.parent.context.$implicit.id)},null)}function Dc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,6,"div",[],[[8,"id",0]],null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pod"](2,{"tab-pane":0,fade:1,active:2,in:3}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Oc)),i["\u0275did"](5,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,1,0,e(t,2,0,!0,!0,1==t.context.$implicit.active,1==t.context.$implicit.active)),e(t,5,0,t.context.$implicit.fields)},function(e,t){e(t,0,0,i["\u0275inlineInterpolate"](1,"",t.context.$implicit.id,""))})}function Pc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,28,"div",[["class","row"],["style","min-height:300px;"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,25,"div",[],null,null,null,null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](6,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,5,"ul",[],null,null,null,null,null)),i["\u0275did"](9,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ec)),i["\u0275did"](12,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,10,"div",[],null,null,null,null,null)),i["\u0275did"](17,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](19,0,null,null,6,"div",[],null,null,null,null,null)),i["\u0275did"](20,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Dc)),i["\u0275did"](24,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,6,0,n.field.tabNavContainerClass),e(t,9,0,n.field.tabNavClass),e(t,12,0,n.field.fields),e(t,17,0,n.field.tabContentContainerClass),e(t,20,0,n.field.tabContentClass),e(t,24,0,n.field.fields)},null)}function Ic(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[["class","form-row"]],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function jc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,23,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,7,"div",[["class","panel-heading"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,4,"span",[["class","panel-title tab-header-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,1,"a",[["data-toggle","collapse"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](8,null,["\n "," ","\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,10,"div",[["class","panel-collapse collapse"]],[[8,"id",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,7,"div",[["class","panel-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,4,"ul",[["class","key-value-list"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ic)),i["\u0275did"](19,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,1,0,t.component.field.accClass),e(t,19,0,t.context.$implicit.fields)},function(e,t){e(t,7,0,i["\u0275inlineInterpolate"](1,"#",t.context.$implicit.id,"")),e(t,8,0,t.context.$implicit.expandedChar,t.context.$implicit.label),e(t,12,0,i["\u0275inlineInterpolate"](1,"",t.context.$implicit.id,""))})}function Rc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,11,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,7,"div",[["class","panel-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"a",[["href","#"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(e.component.expandCollapseAll(),i=!1),i},null,null)),(e()(),i["\u0275ted"](-1,null,["Expand/Collapse all"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,jc)),i["\u0275did"](9,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.field.accContainerClass),e(t,9,0,n.field.fields)},null)}function Ac(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Pc)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rc)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var Yc=i["\u0275ccf"]("tabcontainer",gr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"tabcontainer",[],null,null,null,Ac,Sc)),i["\u0275did"](1,4243456,null,0,gr,[i.ChangeDetectorRef],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Nc=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Fc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[["class","form-row"]],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function Vc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","form-row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"div",[["class","pull-right col-md-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Fc)),i["\u0275did"](5,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,5,0,t.component.field.fields)},null)}function Hc(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vc)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null)],function(e,t){e(t,2,0,t.component.field.editMode)},null)}var Uc=i["\u0275ccf"]("buttonbarcontainer",vr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"buttonbarcontainer",[],null,null,null,Hc,Nc)),i["\u0275did"](1,49152,null,0,vr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Bc=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function zc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[],[[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){e(t,0,0,t.component.field.value)})}function Wc(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,zc)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,t.component.field.visible)},null)}var qc=i["\u0275ccf"]("htmlraw",yr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"htmlraw",[],null,null,null,Wc,Bc)),i["\u0275did"](1,49152,null,0,yr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Gc=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Zc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function Jc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function $c(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function Kc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function Qc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function Xc(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function ed(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"hr",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null)],function(e,t){e(t,1,0,t.component.field.cssClasses)},null)}function td(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function nd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"p",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){e(t,2,0,t.component.field.value)})}function id(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,29,"div",[],null,null,null,null,null)),i["\u0275did"](1,16384,null,0,O,[],{ngSwitch:[0,"ngSwitch"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Zc)),i["\u0275did"](4,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Jc)),i["\u0275did"](7,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,$c)),i["\u0275did"](10,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Kc)),i["\u0275did"](13,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Qc)),i["\u0275did"](16,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Xc)),i["\u0275did"](19,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ed)),i["\u0275did"](22,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,td)),i["\u0275did"](25,278528,null,0,D,[i.ViewContainerRef,i.TemplateRef,O],{ngSwitchCase:[0,"ngSwitchCase"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,nd)),i["\u0275did"](28,16384,null,0,P,[i.ViewContainerRef,i.TemplateRef,O],null,null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,1,0,t.component.field.type),e(t,4,0,"h1"),e(t,7,0,"h2"),e(t,10,0,"h3"),e(t,13,0,"h4"),e(t,16,0,"h5"),e(t,19,0,"h6"),e(t,22,0,"hr"),e(t,25,0,"span")},null)}function rd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,id)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,t.component.field.visible)},null)}var od=i["\u0275ccf"]("text-block",_r,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"text-block",[],null,null,null,rd,Gc)),i["\u0275did"](1,49152,null,0,_r,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),ld=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function sd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,25,"div",[["class","modal fade"],["role","dialog"],["tabindex","-1"]],[[8,"id",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,22,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,19,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,7,"div",[["class","modal-header"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,2,"button",[["aria-label","Close"],["class","close"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275eld"](9,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xd7"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,0,"h4",[["class","modal-title"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,0,"div",[["class","modal-body"]],[[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,5,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](19,0,null,null,0,"button",[["class","btn btn-default"],["data-dismiss","modal"],["type","button"]],[[8,"innerHTML",1]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.hideConfirmDlg()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,0,"button",[["class","btn btn-primary"],["type","button"]],[[8,"innerHTML",1]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.doAction()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.name,"_confirmation")),e(t,12,0,i["\u0275inlineInterpolate"](1,"",n.field.name,"_confirmation_label"),n.field.confirmationTitle),e(t,15,0,n.field.confirmationMessage),e(t,19,0,n.field.cancelButtonMessage),e(t,21,0,n.field.confirmButtonMessage)})}function ad(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,2,"button",[["class","btn"],["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onClick(n)&&i),i},null,null)),i["\u0275did"](2,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sd)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,"btn",n.field.cssClasses),e(t,6,0,n.field.confirmationMessage)},function(e,t){var n=t.component;e(t,1,0,!n.fieldMap._rootComp.needsSave||n.fieldMap._rootComp.isSaving()),e(t,3,0,n.field.label)})}var ud=i["\u0275ccf"]("save-button",br,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"save-button",[],null,null,null,ad,ld)),i["\u0275did"](1,49152,null,0,br,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),cd=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function dd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"button",[["class","btn btn-warning"],["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.fieldMap._rootComp.onCancel()&&i),i},null,null)),(e()(),i["\u0275ted"](2,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,1,0,n.fieldMap._rootComp.isSaving()),e(t,2,0,n.field.label)})}var pd=i["\u0275ccf"]("cancel-button",wr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"cancel-button",[],null,null,null,dd,cd)),i["\u0275did"](1,49152,null,0,wr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),hd=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function fd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[],[[8,"type",0],[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onClick(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.type,""),n.isDisabled()),e(t,2,0,n.field.label)})}function md(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","glyphicon glyphicon-pencil"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"]))],null,null)}function gd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"a",[],[[8,"href",4]],null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275and"](16777216,null,null,1,null,md)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](4,null,["",""]))],function(e,t){var n=t.component;e(t,1,0,n.field.cssClasses),e(t,3,0,n.field.showPencil)},function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.value,"")),e(t,4,0,n.field.label)})}function vd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"a",[],[[8,"href",4],[8,"innerHTML",1]],null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null)],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.value,""),n.field.anchorHtml)})}function yd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,fd)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,gd)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,vd)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,"button"==n.field.controlType),e(t,5,0,"anchor"==n.field.controlType),e(t,8,0,"htmlAnchor"==n.field.controlType)},null)}var _d=i["\u0275ccf"]("anchor-button",xr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"anchor-button",[],null,null,null,yd,hd)),i["\u0275did"](1,49152,null,0,xr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),bd=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function wd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.stepToTab(-1)&&i),i},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](4,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.stepToTab(1)&&i),i},null,null)),i["\u0275did"](7,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](8,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,7,0,n.field.cssClasses)},function(e,t){var n=t.component;e(t,2,0,!n.field.getTabId(-1)),e(t,4,0,n.field.prevLabel),e(t,6,0,!n.field.getTabId(1)),e(t,8,0,n.field.nextLabel)})}function xd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,2,"button",[["type","button"]],[[4,"display",null]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.stepToTab(-1)&&i),i},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](4,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,2,"button",[["type","button"]],[[4,"display",null]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.stepToTab(1)&&i),i},null,null)),i["\u0275did"](7,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](8,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,7,0,n.field.cssClasses)},function(e,t){var n=t.component;e(t,2,0,n.field.getTabId(-1)?"inherit":"none"),e(t,4,0,n.field.prevLabel),e(t,6,0,n.field.getTabId(1)?"inherit":"none"),e(t,8,0,n.field.nextLabel)})}function Md(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wd)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xd)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,"disabled"==n.field.endDisplayMode),e(t,5,0,"hidden"==n.field.endDisplayMode)},null)}var Td=i["\u0275ccf"]("tab-nav-button",Mr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"tab-nav-button",[],null,null,null,Md,bd)),i["\u0275did"](1,4308992,null,0,Mr,[i.ChangeDetectorRef],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Ld=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function kd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Cd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,8,"li",[["class","key-value-pair padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,kd)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,2,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275eld"](6,0,null,null,1,"a",[["target","field.target"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](7,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.label)},function(e,t){var n=t.component;e(t,6,0,i["\u0275inlineInterpolate"](1,"",n.field.value,"")),e(t,7,0,n.field.value)})}function Sd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Cd)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,t.component.isVisible())},null)}var Ed=i["\u0275ccf"]("link-value",Tr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"link-value",[],null,null,null,Sd,Ld)),i["\u0275did"](1,49152,null,0,Tr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Od=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Dd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,11,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,5,"input",[["type","hidden"]],[[8,"name",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,7)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,7).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,7)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,7)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](7,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](9,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](11,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.form),e(t,9,0,n.getFormControl())},function(e,t){var n=t.component;e(t,1,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,6,0,i["\u0275inlineInterpolate"](1,"",n.field.name,""),i["\u0275nov"](t,11).ngClassUntouched,i["\u0275nov"](t,11).ngClassTouched,i["\u0275nov"](t,11).ngClassPristine,i["\u0275nov"](t,11).ngClassDirty,i["\u0275nov"](t,11).ngClassValid,i["\u0275nov"](t,11).ngClassInvalid,i["\u0275nov"](t,11).ngClassPending)})}var Pd=i["\u0275ccf"]("hidden-field",Lr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"hidden-field",[],null,null,null,Dd,Od)),i["\u0275did"](1,49152,null,0,Lr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Id=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function jd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Rd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function Ad(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," is required"]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Yd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function Nd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[],[[4,"visibility",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ad)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Yd)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,!(null!=n.field.validationMessages&&n.field.validationMessages.required)),e(t,6,0,null==n.field.validationMessages?null:n.field.validationMessages.required)},function(e,t){var n=t.component;e(t,0,0,n.getFormControl()&&n.getFormControl().hasError("required")&&n.getFormControl().touched?"inherit":"hidden")})}function Fd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,24,"div",[["class","form-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,"submit"],[null,"reset"]],function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,jd)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rd)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,5,"datetime",[],[[1,"tabindex",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,"blur"]],function(e,t,n){var r=!0;return"blur"===t&&(r=!1!==i["\u0275nov"](e,16).onTouched()&&r),r},qu,zu)),i["\u0275did"](16,4898816,[[1,4],["dateTime",4]],0,Vu,[],{timepickerOptions:[0,"timepickerOptions"],datepickerOptions:[1,"datepickerOptions"],hasClearButton:[2,"hasClearButton"]},null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Vu]),i["\u0275did"](18,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](20,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Nd)),i["\u0275did"](23,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.form),e(t,8,0,n.field.help),e(t,13,0,n.helpShow),e(t,16,0,n.field.timePickerOpts,n.field.datePickerOpts,n.field.hasClearButton),e(t,18,0,n.getFormControl()),e(t,23,0,n.field.required)},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,3).ngClassUntouched,i["\u0275nov"](t,3).ngClassTouched,i["\u0275nov"](t,3).ngClassPristine,i["\u0275nov"](t,3).ngClassDirty,i["\u0275nov"](t,3).ngClassValid,i["\u0275nov"](t,3).ngClassInvalid,i["\u0275nov"](t,3).ngClassPending),e(t,6,0,n.field.label,n.getRequiredLabelStr()),e(t,15,0,i["\u0275nov"](t,16).tabindexAttr,i["\u0275nov"](t,20).ngClassUntouched,i["\u0275nov"](t,20).ngClassTouched,i["\u0275nov"](t,20).ngClassPristine,i["\u0275nov"](t,20).ngClassDirty,i["\u0275nov"](t,20).ngClassValid,i["\u0275nov"](t,20).ngClassInvalid,i["\u0275nov"](t,20).ngClassPending)})}function Vd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Hd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vd)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.label)},function(e,t){e(t,6,0,t.component.field.formatValueForDisplay())})}function Ud(e){return i["\u0275vid"](0,[i["\u0275qud"](671088640,1,{dateTime:0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Fd)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Hd)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.editMode),e(t,6,0,!n.field.editMode)},null)}var Bd=i["\u0275ccf"]("date-time",kr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"date-time",[],null,null,null,Ud,Id)),i["\u0275did"](1,4243456,null,0,kr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),zd=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Wd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}var qd=i["\u0275ccf"]("parameter-retriever",Cr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"parameter-retriever",[],null,null,null,Wd,zd)),i["\u0275did"](1,4243456,null,0,Cr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Gd=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Zd(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"span",[],[[4,"display",null],[4,"width",null],[4,"height",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,1,0,"inline-block",n.field.width,n.field.height)})}var Jd=i["\u0275ccf"]("spacer",Sr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"spacer",[],null,null,null,Zd,Gd)),i["\u0275did"](1,49152,null,0,Sr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),$d=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Kd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Qd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function Xd(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,19,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,5,"input",[["type","checkbox"]],[[8,"name",0],[8,"id",0],[1,"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,"change"],[null,"blur"]],function(e,t,n){var r=!0;return"change"===t&&(r=!1!==i["\u0275nov"](e,6).onChange(n.target.checked)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,6).onTouched()&&r),r},null,null)),i["\u0275did"](6,16384,null,0,Yn,[i.Renderer2,i.ElementRef],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Yn]),i["\u0275did"](8,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](10,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,3,"label",[["class","radio-label"]],[[8,"htmlFor",0]],null,null,null,null)),(e()(),i["\u0275ted"](13,null,[""," "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Kd)),i["\u0275did"](15,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Qd)),i["\u0275did"](18,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.form),e(t,8,0,n.getFormControl()),e(t,15,0,n.field.editMode&&n.field.help),e(t,18,0,n.helpShow)},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,3).ngClassUntouched,i["\u0275nov"](t,3).ngClassTouched,i["\u0275nov"](t,3).ngClassPristine,i["\u0275nov"](t,3).ngClassDirty,i["\u0275nov"](t,3).ngClassValid,i["\u0275nov"](t,3).ngClassInvalid,i["\u0275nov"](t,3).ngClassPending),e(t,5,0,i["\u0275inlineInterpolate"](1,"",n.field.name,""),n.field.name,n.field.editMode?null:"",i["\u0275nov"](t,10).ngClassUntouched,i["\u0275nov"](t,10).ngClassTouched,i["\u0275nov"](t,10).ngClassPristine,i["\u0275nov"](t,10).ngClassDirty,i["\u0275nov"](t,10).ngClassValid,i["\u0275nov"](t,10).ngClassInvalid,i["\u0275nov"](t,10).ngClassPending),e(t,12,0,i["\u0275inlineInterpolate"](1,"",n.field.name,"")),e(t,13,0,n.field.label)})}function ep(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Xd)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,"checkbox"==t.component.field.type)},null)}var tp=i["\u0275ccf"]("toggle",Er,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"toggle",[],null,null,null,ep,$d)),i["\u0275did"](1,49152,null,0,Er,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),np=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function ip(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"span",[["class","completer-list-item"]],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,"completer-list-item",t.context.$implicit.isMatch?t.component.matchClass:null)},function(e,t){e(t,2,0,t.context.$implicit.text)})}function rp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,6,"span",[["class","completer-list-item-holder"]],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),i["\u0275pod"](2,{"completer-title":0,"completer-description":1}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ip)),i["\u0275did"](5,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,"completer-list-item-holder",e(t,2,0,"title"===n.type,"description"===n.type)),e(t,5,0,n.parts)},null)}var op=i["\u0275crt"]({encapsulation:0,styles:['.completer-dropdown[_ngcontent-%COMP%] {\n border-color: #ececec;\n border-width: 1px;\n border-style: solid;\n border-radius: 2px;\n width: 250px;\n padding: 6px;\n cursor: pointer;\n z-index: 9999;\n position: absolute;\n margin-top: -6px;\n background-color: #ffffff;\n }\n\n .completer-row[_ngcontent-%COMP%] {\n padding: 5px;\n color: #000000;\n margin-bottom: 4px;\n clear: both;\n display: inline-block;\n width: 103%;\n }\n\n .completer-selected-row[_ngcontent-%COMP%] {\n background-color: lightblue;\n color: #ffffff;\n }\n\n .completer-description[_ngcontent-%COMP%] {\n font-size: 14px;\n }\n\n .completer-image-default[_ngcontent-%COMP%] {\n width: 16px;\n height: 16px;\n background-image: url("demo/res/img/default.png");\n }\n\n .completer-image-holder[_ngcontent-%COMP%] {\n float: left;\n width: 10%;\n }\n .completer-item-text-image[_ngcontent-%COMP%] {\n float: right;\n width: 90%;\n }'],data:{}});function lp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","completer-searching"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component._textSearching)})}function sp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","completer-no-results"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component._textNoResults)})}function ap(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"img",[["class","completer-image"]],[[8,"src",4]],null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275inlineInterpolate"](1,"",t.parent.parent.context.$implicit.image,""))})}function up(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"div",[["class","completer-image-default"]],null,null,null,null,null))],null,null)}function cp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","completer-image-holder"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ap)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,up)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,""!=t.parent.context.$implicit.image),e(t,6,0,""===t.parent.context.$implicit.image)},null)}function dp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"completer-list-item",[["class","completer-description"]],null,null,null,rp,np)),i["\u0275did"](1,114688,null,0,ws,[],{text:[0,"text"],searchStr:[1,"searchStr"],matchClass:[2,"matchClass"],type:[3,"type"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,t.parent.context.$implicit.description,n.searchStr,n.matchClass,"description")},null)}function pp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,19,"div",[["class","completer-row-wrapper"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,16,"div",[["class","completer-row"]],null,[[null,"click"],[null,"mouseenter"],[null,"mousedown"]],function(e,t,n){var r=!0;return"click"===t&&(r=!1!==i["\u0275nov"](e,3).onClick(n)&&r),"mouseenter"===t&&(r=!1!==i["\u0275nov"](e,3).onMouseEnter(n)&&r),"mousedown"===t&&(r=!1!==i["\u0275nov"](e,3).onMouseDown(n)&&r),r},null,null)),i["\u0275did"](3,147456,null,0,As,[i.ElementRef,i.Renderer,Ts],{ctrRow:[0,"ctrRow"],dataItem:[1,"dataItem"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,cp)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,9,"div",[["class","completer-item-text"]],null,null,null,null,null)),i["\u0275did"](9,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),i["\u0275pod"](10,{"completer-item-text-image":0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,1,"completer-list-item",[["class","completer-title"]],null,null,null,rp,np)),i["\u0275did"](13,114688,null,0,ws,[],{text:[0,"text"],searchStr:[1,"searchStr"],matchClass:[2,"matchClass"],type:[3,"type"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,dp)),i["\u0275did"](16,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,t.context.index,t.context.$implicit),e(t,6,0,t.context.$implicit.image||""===t.context.$implicit.image),e(t,9,0,"completer-item-text",e(t,10,0,t.context.$implicit.image||""===t.context.$implicit.image)),e(t,13,0,t.context.$implicit.title,n.searchStr,n.matchClass,"title"),e(t,16,0,t.context.$implicit.description&&""!=t.context.$implicit.description)},null)}function hp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,11,"div",[["class","completer-dropdown"],["ctrDropdown",""]],null,[[null,"mousedown"]],function(e,t,n){var r=!0;return"mousedown"===t&&(r=!1!==i["\u0275nov"](e,1).onMouseDown(n)&&r),r},null,null)),i["\u0275did"](1,4341760,null,0,Ts,[rs,i.ElementRef],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,lp)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sp)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,pp)),i["\u0275did"](10,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,4,0,t.parent.context.searching&&t.component.displaySearching),e(t,7,0,!(t.parent.context.searching||t.parent.context.results&&0!==(null==t.parent.context.results?null:t.parent.context.results.length))),e(t,10,0,t.parent.context.results)},null)}function fp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","completer-dropdown-holder"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,hp)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,t.context.searchInitialized&&t.context.isOpen&&((null==t.context.results?null:t.context.results.length)>0||n.displayNoResults&&!t.context.searching||t.context.searching&&n.displaySearching))},null)}function mp(e){return i["\u0275vid"](0,[i["\u0275qud"](402653184,1,{completer:0}),i["\u0275qud"](402653184,2,{ctrInput:0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,14,"div",[["class","completer-holder"],["ctrCompleter",""]],null,null,null,null,null)),i["\u0275did"](4,16384,[[1,4]],0,rs,[],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,[[2,0],["ctrInput",1]],null,7,"input",[["autocapitalize","off"],["autocomplete","off"],["autocorrect","off"],["class","completer-input"],["ctrInput",""],["type","search"]],[[1,"id",0],[1,"name",0],[8,"placeholder",0],[1,"maxlength",0],[8,"tabIndex",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,"blur"],[null,"focus"],[null,"keyup"],[null,"keydown"],[null,"click"],[null,"input"],[null,"compositionstart"],[null,"compositionend"],[null,"paste"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,8)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,8).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,8)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,8)._compositionEnd(n.target.value)&&r),"keyup"===t&&(r=!1!==i["\u0275nov"](e,13).keyupHandler(n)&&r),"paste"===t&&(r=!1!==i["\u0275nov"](e,13).pasteHandler(n)&&r),"keydown"===t&&(r=!1!==i["\u0275nov"](e,13).keydownHandler(n)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,13).onBlur(n)&&r),"focus"===t&&(r=!1!==i["\u0275nov"](e,13).onfocus()&&r),"click"===t&&(r=!1!==i["\u0275nov"](e,13).onClick(n)&&r),"ngModelChange"===t&&(r=!1!==(o.searchStr=n)&&r),"ngModelChange"===t&&(r=!1!==o.onChange(n)&&r),"blur"===t&&(r=!1!==o.onBlur()&&r),"focus"===t&&(r=!1!==o.onFocus()&&r),"keyup"===t&&(r=!1!==o.onKeyup(n)&&r),"keydown"===t&&(r=!1!==o.onKeydown(n)&&r),"click"===t&&(r=!1!==o.onClick(n)&&r),r},null,null)),i["\u0275did"](7,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),i["\u0275did"](8,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](10,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{isDisabled:[0,"isDisabled"],model:[1,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](12,16384,null,0,mi,[zn],null,null),i["\u0275did"](13,16384,null,0,Ls,[rs,Pi,i.ElementRef],{clearSelected:[0,"clearSelected"],clearUnselected:[1,"clearUnselected"],overrideSuggested:[2,"overrideSuggested"],fillHighlighted:[3,"fillHighlighted"],openOnFocus:[4,"openOnFocus"],openOnClick:[5,"openOnClick"],selectOnClick:[6,"selectOnClick"],selectOnFocus:[7,"selectOnFocus"]},{ngModelChange:"ngModelChange"}),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,fp)),i["\u0275did"](16,81920,null,0,Rs,[rs,i.TemplateRef,i.ViewContainerRef,i.ChangeDetectorRef],{ctrListMinSearchLength:[0,"ctrListMinSearchLength"],ctrListPause:[1,"ctrListPause"],ctrListAutoMatch:[2,"ctrListAutoMatch"],ctrListAutoHighlight:[3,"ctrListAutoHighlight"],ctrListDisplaySearching:[4,"ctrListDisplaySearching"],dataService:[5,"dataService"],initialValue:[6,"initialValue"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,7,0,"completer-input",n.inputClass),e(t,10,0,n.disableInput,n.searchStr),e(t,13,0,n.clearSelected,n.clearUnselected,n.overrideSuggested,n.fillHighlighted,n.openOnFocus,n.openOnClick,n.selectOnClick,n.selectOnFocus),e(t,16,0,n.minSearchLength,n.pause,n.autoMatch,n.autoHighlight,n.displaySearching,n.dataService,n.initialValue)},function(e,t){var n=t.component;e(t,6,1,[n.inputId.length>0?n.inputId:null,n.inputName,n.placeholder,n.maxChars,n.fieldTabindex,i["\u0275nov"](t,12).ngClassUntouched,i["\u0275nov"](t,12).ngClassTouched,i["\u0275nov"](t,12).ngClassPristine,i["\u0275nov"](t,12).ngClassDirty,i["\u0275nov"](t,12).ngClassValid,i["\u0275nov"](t,12).ngClassInvalid,i["\u0275nov"](t,12).ngClassPending])})}var gp=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function vp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function yp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,vp)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.help)},function(e,t){var n=t.component;e(t,0,0,n.field.name),e(t,1,0,n.field.label,n.getRequiredLabelStr())})}function _p(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help),e(t,1,0,n.field.help)})}function bp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function wp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,yp)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,_p)),i["\u0275did"](10,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,6,"ng2-completer",[],[[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,"keyup"],[null,"ngModelChange"],[null,"selected"]],function(e,t,n){var i=!0,r=e.component;return"keyup"===t&&(i=!1!==r.onKeyup(n)&&i),"ngModelChange"===t&&(i=!1!==(r.field.searchStr=n)&&i),"selected"===t&&(i=!1!==r.onSelect(n)&&i),i},mp,op)),i["\u0275did"](13,12697600,[[1,4],["ngCompleter",4]],0,bs,[ys,i.ChangeDetectorRef],{inputId:[0,"inputId"],minSearchLength:[1,"minSearchLength"],clearUnselected:[2,"clearUnselected"],placeholder:[3,"placeholder"],disableInput:[4,"disableInput"],inputClass:[5,"inputClass"],initialValue:[6,"initialValue"],datasource:[7,"datasource"]},{selected:"selected",keyup:"keyup"}),i["\u0275prd"](1024,null,An,function(e){return[e]},[bs]),i["\u0275did"](15,671744,null,0,Pi,[[2,En],[8,null],[8,null],[2,An]],{model:[0,"model"],options:[1,"options"]},{update:"ngModelChange"}),i["\u0275pod"](16,{standalone:0}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](18,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,bp)),i["\u0275did"](21,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,2,0,n.form),e(t,7,0,n.field.label),e(t,10,0,n.helpShow),e(t,13,0,n.field.name,0,n.getClearUnselected(),n.field.placeHolder,n.disableInput,"form-control",n.field.initialValue,n.field.dataService),e(t,15,0,n.field.searchStr,e(t,16,0,!0)),e(t,21,0,n.hasRequiredError())},function(e,t){e(t,0,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,12,0,i["\u0275nov"](t,18).ngClassUntouched,i["\u0275nov"](t,18).ngClassTouched,i["\u0275nov"](t,18).ngClassPristine,i["\u0275nov"](t,18).ngClassDirty,i["\u0275nov"](t,18).ngClassValid,i["\u0275nov"](t,18).ngClassInvalid,i["\u0275nov"](t,18).ngClassPending)})}function xp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help),e(t,1,0,n.field.help)})}function Mp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onRemove(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.removeBtnClass)},function(e,t){var n=t.component;e(t,0,0,!n.canRemove),e(t,2,0,n.removeBtnText)})}function Tp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","col-xs-12 text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function Lp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,38,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,25,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xp)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,9,"div",[["class","col-xs-11 padding-remove"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,6,"ng2-completer",[],[[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,"keyup"],[null,"ngModelChange"],[null,"selected"]],function(e,t,n){var i=!0,r=e.component;return"keyup"===t&&(i=!1!==r.onKeyup(n)&&i),"ngModelChange"===t&&(i=!1!==(r.field.searchStr=n)&&i),"selected"===t&&(i=!1!==r.onSelect(n)&&i),i},mp,op)),i["\u0275did"](14,12697600,[[1,4],["ngCompleter",4]],0,bs,[ys,i.ChangeDetectorRef],{inputId:[0,"inputId"],minSearchLength:[1,"minSearchLength"],clearUnselected:[2,"clearUnselected"],placeholder:[3,"placeholder"],disableInput:[4,"disableInput"],inputClass:[5,"inputClass"],initialValue:[6,"initialValue"],datasource:[7,"datasource"]},{selected:"selected",keyup:"keyup"}),i["\u0275prd"](1024,null,An,function(e){return[e]},[bs]),i["\u0275did"](16,671744,null,0,Pi,[[2,En],[8,null],[8,null],[2,An]],{model:[0,"model"],options:[1,"options"]},{update:"ngModelChange"}),i["\u0275pod"](17,{standalone:0}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](19,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,8,"div",[["class","col-xs-1 padding-remove"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mp)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](27,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0],[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onRemove(n)&&i),i},null,null)),i["\u0275did"](28,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](33,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Tp)),i["\u0275did"](36,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,2,0,n.form),e(t,9,0,n.helpShow),e(t,14,0,n.name,0,n.getClearUnselected(),n.field.placeHolder,n.disableInput,"form-control",n.field.initialValue,n.field.dataService),e(t,16,0,n.field.searchStr,e(t,17,0,!0)),e(t,25,0,n.removeBtnText),e(t,28,0,n.removeBtnClass),e(t,36,0,n.hasRequiredError())},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,13,0,i["\u0275nov"](t,19).ngClassUntouched,i["\u0275nov"](t,19).ngClassTouched,i["\u0275nov"](t,19).ngClassPristine,i["\u0275nov"](t,19).ngClassDirty,i["\u0275nov"](t,19).ngClassValid,i["\u0275nov"](t,19).ngClassInvalid,i["\u0275nov"](t,19).ngClassPending),e(t,27,0,!n.canRemove,i["\u0275unv"](t,27,1,i["\u0275nov"](t,29).transform("remove-button-label")))})}function kp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Cp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,kp)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.label)},function(e,t){e(t,6,0,t.component.getTitle())})}function Sp(e){return i["\u0275vid"](0,[i["\u0275qud"](671088640,1,{ngCompleter:0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wp)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Lp)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Cp)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.editMode&&!n.isEmbedded),e(t,6,0,n.field.editMode&&n.isEmbedded),e(t,9,0,!n.field.editMode)},null)}var Ep=i["\u0275ccf"]("rb-vocab",Qr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-vocab",[],null,null,null,Sp,gp)),i["\u0275did"](1,114688,null,0,Qr,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded",canRemove:"canRemove",removeBtnText:"removeBtnText",removeBtnClass:"removeBtnClass",disableEditAfterSelect:"disableEditAfterSelect"},{onRemoveBtnClick:"onRemoveBtnClick"},[]),Op=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Dp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Pp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,7,"div",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Dp)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,7,0,t.component.field.help)},function(e,t){var n=t.component;e(t,5,0,n.field.label,n.getRequiredLabelStr())})}function Ip(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","col-xs-12 help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function jp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ip)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.helpShow)},null)}function Rp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.nameColHdr)})}function Ap(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.text_full_name)})}function Yp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,5,"input",[["class","form-control"],["formControlName","text_full_name"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ap)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass("text_full_name",!0)),e(t,6,0,"text_full_name"),e(t,11,0,n.field.formModel.controls.text_full_name.touched&&n.field.formModel.controls.text_full_name.hasError("required"))},function(e,t){e(t,3,0,t.component.field.nameColHdr,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending)})}function Np(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.familyNameHdr)})}function Fp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],[[1,"aria-label",0]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,n.field.familyNameHdr),e(t,1,0,n.field.validationMessages.required.family_name)})}function Vp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,5,"input",[["class","form-control"],["formControlName","family_name"],["type","text"]],[[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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Fp)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass("family_name")),e(t,6,0,"family_name"),e(t,11,0,n.field.formModel.controls.family_name.touched&&n.field.formModel.controls.family_name.hasError("required"))},function(e,t){e(t,3,0,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending)})}function Hp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.givenNameHdr)})}function Up(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],[[1,"aria-label",0]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,n.field.givenNameHdr),e(t,1,0,n.field.validationMessages.required.given_name)})}function Bp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,5,"input",[["class","form-control"],["formControlName","given_name"],["type","text"]],[[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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Up)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass("given_name")),e(t,6,0,"given_name"),e(t,11,0,n.field.formModel.controls.given_name.touched&&n.field.formModel.controls.given_name.hasError("required"))},function(e,t){e(t,3,0,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending)})}function zp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.invalid.email)})}function Wp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.email)})}function qp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,68,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,65,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,62,"span",[["class","col-xs-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rp)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Yp)),i["\u0275did"](12,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Np)),i["\u0275did"](16,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vp)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Hp)),i["\u0275did"](22,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Bp)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](27,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](29,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](30,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](33,0,null,null,15,"div",[],null,null,null,null,null)),i["\u0275did"](34,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](36,0,null,null,5,"input",[["class","form-control"],["formControlName","email"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,37)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,37).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,37)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,37)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](37,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](39,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](41,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,zp)),i["\u0275did"](44,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Wp)),i["\u0275did"](47,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](50,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](52,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](53,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](56,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](57,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](59,0,null,null,5,"input",[["class","form-control"],["formControlName","orcid"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,60)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,60).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,60)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,60)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](60,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](62,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](64,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,9,0,!n.field.splitNames),e(t,12,0,!n.field.splitNames),e(t,16,0,n.field.splitNames),e(t,19,0,n.field.splitNames),e(t,22,0,n.field.splitNames),e(t,25,0,n.field.splitNames),e(t,34,0,n.getGroupClass("email",!n.field.splitNames)),e(t,39,0,"email"),e(t,44,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("email")),e(t,47,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("required")),e(t,57,0,n.getGroupClass("orcid",!n.field.splitNames)),e(t,62,0,"orcid")},function(e,t){var n=t.component;e(t,30,0,n.field.emailColHdr),e(t,36,0,n.field.emailColHdr,i["\u0275nov"](t,41).ngClassUntouched,i["\u0275nov"](t,41).ngClassTouched,i["\u0275nov"](t,41).ngClassPristine,i["\u0275nov"](t,41).ngClassDirty,i["\u0275nov"](t,41).ngClassValid,i["\u0275nov"](t,41).ngClassInvalid,i["\u0275nov"](t,41).ngClassPending),e(t,53,0,n.field.orcidColHdr),e(t,59,0,n.field.orcidColHdr,i["\u0275nov"](t,64).ngClassUntouched,i["\u0275nov"](t,64).ngClassTouched,i["\u0275nov"](t,64).ngClassPristine,i["\u0275nov"](t,64).ngClassDirty,i["\u0275nov"](t,64).ngClassValid,i["\u0275nov"](t,64).ngClassInvalid,i["\u0275nov"](t,64).ngClassPending)})}function Gp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.nameColHdr)})}function Zp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.text_full_name)})}function Jp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,5,"input",[["class","form-control"],["formControlName","text_full_name"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Zp)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass("text_full_name",!0)),e(t,6,0,"text_full_name"),e(t,11,0,n.field.formModel.controls.text_full_name.touched&&n.field.formModel.controls.text_full_name.hasError("required"))},function(e,t){e(t,3,0,t.component.field.nameColHdr,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending)})}function $p(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.familyNameHdr)})}function Kp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.family_name)})}function Qp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,5,"input",[["class","form-control"],["formControlName","family_name"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Kp)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass("family_name")),e(t,6,0,"family_name"),e(t,11,0,n.field.formModel.controls.family_name.touched&&n.field.formModel.controls.family_name.hasError("required"))},function(e,t){e(t,3,0,t.component.field.familyNameHdr,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending)})}function Xp(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.givenNameHdr)})}function eh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.given_name)})}function th(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,"div",[],null,null,null,null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,5,"input",[["class","form-control"],["formControlName","given_name"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,4)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,4)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](6,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,eh)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass("given_name")),e(t,6,0,"given_name"),e(t,11,0,n.field.formModel.controls.given_name.touched&&n.field.formModel.controls.given_name.hasError("required"))},function(e,t){e(t,3,0,t.component.field.givenNameHdr,i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending)})}function nh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.invalid.email)})}function ih(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.email)})}function rh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,62,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Gp)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Jp)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,$p)),i["\u0275did"](12,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Qp)),i["\u0275did"](15,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Xp)),i["\u0275did"](18,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,th)),i["\u0275did"](21,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](26,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](29,0,null,null,15,"div",[],null,null,null,null,null)),i["\u0275did"](30,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](32,0,null,null,5,"input",[["class","form-control"],["formControlName","email"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,33)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,33).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,33)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,33)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](33,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](35,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](37,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,nh)),i["\u0275did"](40,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ih)),i["\u0275did"](43,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](46,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](48,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](49,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](52,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](53,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](55,0,null,null,5,"input",[["class","form-control"],["formControlName","orcid"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,56)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,56).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,56)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,56)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](56,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](58,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](60,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,!n.field.splitNames),e(t,8,0,!n.field.splitNames),e(t,12,0,n.field.splitNames),e(t,15,0,n.field.splitNames),e(t,18,0,n.field.splitNames),e(t,21,0,n.field.splitNames),e(t,30,0,n.getGroupClass("email",!n.field.splitNames)),e(t,35,0,"email"),e(t,40,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("email")),e(t,43,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("required")),e(t,53,0,n.getGroupClass("orcid",!n.field.splitNames)),e(t,58,0,"orcid")},function(e,t){var n=t.component;e(t,26,0,n.field.emailColHdr),e(t,32,0,n.field.emailColHdr,i["\u0275nov"](t,37).ngClassUntouched,i["\u0275nov"](t,37).ngClassTouched,i["\u0275nov"](t,37).ngClassPristine,i["\u0275nov"](t,37).ngClassDirty,i["\u0275nov"](t,37).ngClassValid,i["\u0275nov"](t,37).ngClassInvalid,i["\u0275nov"](t,37).ngClassPending),e(t,49,0,n.field.orcidColHdr),e(t,55,0,n.field.orcidColHdr,i["\u0275nov"](t,60).ngClassUntouched,i["\u0275nov"](t,60).ngClassTouched,i["\u0275nov"](t,60).ngClassPristine,i["\u0275nov"](t,60).ngClassDirty,i["\u0275nov"](t,60).ngClassValid,i["\u0275nov"](t,60).ngClassInvalid,i["\u0275nov"](t,60).ngClassPending)})}function oh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,12,null,null,null,null,function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,qp)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,rh)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "]))],function(e,t){var n=t.component;e(t,1,0,n.field.formModel),e(t,8,0,!n.isEmbedded),e(t,11,0,n.isEmbedded)},null)}function lh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.text_full_name)})}function sh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.invalid.email)})}function ah(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.email)})}function uh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,65,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,62,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,59,"span",[["class","col-xs-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](10,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](14,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,2,"ng2-completer",[],null,[[null,"blur"],[null,"keydown"],[null,"selected"]],function(e,t,n){var i=!0,r=e.component;return"blur"===t&&(i=!1!==r.onBlur()&&i),"keydown"===t&&(i=!1!==r.onKeydown(n)&&i),"selected"===t&&(i=!1!==r.onSelect(n)&&i),i},mp,op)),i["\u0275prd"](5120,null,An,function(e){return[e]},[bs]),i["\u0275did"](18,12697600,[[1,4],["ngCompleter",4]],0,bs,[ys,i.ChangeDetectorRef],{minSearchLength:[0,"minSearchLength"],overrideSuggested:[1,"overrideSuggested"],clearUnselected:[2,"clearUnselected"],placeholder:[3,"placeholder"],inputClass:[4,"inputClass"],initialValue:[5,"initialValue"],datasource:[6,"datasource"]},{selected:"selected",blurEvent:"blur",keydown:"keydown"}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,lh)),i["\u0275did"](21,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](24,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](27,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](30,0,null,null,15,"div",[],null,null,null,null,null)),i["\u0275did"](31,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](33,0,null,null,5,"input",[["class","form-control"],["formControlName","email"],["type","text"]],[[8,"readOnly",0],[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,34)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,34).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,34)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,34)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](34,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](36,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](38,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sh)),i["\u0275did"](41,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ah)),i["\u0275did"](44,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](47,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](49,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](50,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](53,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](54,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](56,0,null,null,5,"input",[["class","form-control"],["formControlName","orcid"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,57)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,57).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,57)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,57)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](57,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](59,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](61,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,14,0,n.getGroupClass("text_full_name",!0)),e(t,18,0,0,!n.field.forceLookupOnly,n.field.forceLookupOnly,n.field.vocabField.placeHolder,"form-control",n.field.vocabField.initialValue,n.field.vocabField.dataService),e(t,21,0,n.field.formModel.controls.text_full_name.hasError("required")),e(t,31,0,n.getGroupClass("email",!0)),e(t,36,0,"email"),e(t,41,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("email")),e(t,44,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("required")),e(t,54,0,n.getGroupClass("orcid",!0)),e(t,59,0,"orcid")},function(e,t){var n=t.component;e(t,10,0,n.field.nameColHdr),e(t,27,0,n.field.emailColHdr),e(t,33,0,n.field.forceLookupOnly,n.field.emailColHdr,i["\u0275nov"](t,38).ngClassUntouched,i["\u0275nov"](t,38).ngClassTouched,i["\u0275nov"](t,38).ngClassPristine,i["\u0275nov"](t,38).ngClassDirty,i["\u0275nov"](t,38).ngClassValid,i["\u0275nov"](t,38).ngClassInvalid,i["\u0275nov"](t,38).ngClassPending),e(t,50,0,n.field.orcidColHdr),e(t,56,0,n.field.orcidColHdr,i["\u0275nov"](t,61).ngClassUntouched,i["\u0275nov"](t,61).ngClassTouched,i["\u0275nov"](t,61).ngClassPristine,i["\u0275nov"](t,61).ngClassDirty,i["\u0275nov"](t,61).ngClassValid,i["\u0275nov"](t,61).ngClassInvalid,i["\u0275nov"](t,61).ngClassPending)})}function ch(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.text_full_name)})}function dh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.invalid.email)})}function ph(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required.email)})}function hh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,59,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](10,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,2,"ng2-completer",[],null,[[null,"blur"],[null,"keydown"],[null,"selected"]],function(e,t,n){var i=!0,r=e.component;return"blur"===t&&(i=!1!==r.onBlur()&&i),"keydown"===t&&(i=!1!==r.onKeydown(n)&&i),"selected"===t&&(i=!1!==r.onSelect(n)&&i),i},mp,op)),i["\u0275prd"](5120,null,An,function(e){return[e]},[bs]),i["\u0275did"](14,12697600,[[1,4],["ngCompleter",4]],0,bs,[ys,i.ChangeDetectorRef],{minSearchLength:[0,"minSearchLength"],overrideSuggested:[1,"overrideSuggested"],clearUnselected:[2,"clearUnselected"],placeholder:[3,"placeholder"],inputClass:[4,"inputClass"],initialValue:[5,"initialValue"],datasource:[6,"datasource"]},{selected:"selected",blurEvent:"blur",keydown:"keydown"}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ch)),i["\u0275did"](17,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](23,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,15,"div",[],null,null,null,null,null)),i["\u0275did"](27,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](29,0,null,null,5,"input",[["class","form-control"],["formControlName","email"],["type","text"]],[[8,"readOnly",0],[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,30)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,30).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,30)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,30)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](30,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](32,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](34,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,dh)),i["\u0275did"](37,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ph)),i["\u0275did"](40,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](43,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](45,0,null,null,1,"span",[["class","text-right"]],null,null,null,null,null)),(e()(),i["\u0275ted"](46,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](49,0,null,null,9,"div",[],null,null,null,null,null)),i["\u0275did"](50,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](52,0,null,null,5,"input",[["class","form-control"],["formControlName","orcid"],["type","text"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,53)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,53).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,53)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,53)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](53,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](55,671744,null,0,Fi,[[3,En],[8,null],[8,null],[2,An]],{name:[0,"name"]},null),i["\u0275prd"](2048,null,zn,null,[Fi]),i["\u0275did"](57,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,10,0,n.getGroupClass("text_full_name",!0)),e(t,14,0,0,!n.field.forceLookupOnly,n.field.forceLookupOnly,n.field.vocabField.placeHolder,"form-control",n.field.vocabField.initialValue,n.field.vocabField.dataService),e(t,17,0,n.field.formModel.controls.text_full_name.hasError("required")),e(t,27,0,n.getGroupClass("email",!0)),e(t,32,0,"email"),e(t,37,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("email")),e(t,40,0,n.field.formModel.controls.email.touched&&n.field.formModel.controls.email.hasError("required")),e(t,50,0,n.getGroupClass("orcid",!0)),e(t,55,0,"orcid")},function(e,t){var n=t.component;e(t,6,0,n.field.nameColHdr),e(t,23,0,n.field.emailColHdr),e(t,29,0,n.field.forceLookupOnly,n.field.emailColHdr,i["\u0275nov"](t,34).ngClassUntouched,i["\u0275nov"](t,34).ngClassTouched,i["\u0275nov"](t,34).ngClassPristine,i["\u0275nov"](t,34).ngClassDirty,i["\u0275nov"](t,34).ngClassValid,i["\u0275nov"](t,34).ngClassInvalid,i["\u0275nov"](t,34).ngClassPending),e(t,46,0,n.field.orcidColHdr),e(t,52,0,n.field.orcidColHdr,i["\u0275nov"](t,57).ngClassUntouched,i["\u0275nov"](t,57).ngClassTouched,i["\u0275nov"](t,57).ngClassPristine,i["\u0275nov"](t,57).ngClassDirty,i["\u0275nov"](t,57).ngClassValid,i["\u0275nov"](t,57).ngClassInvalid,i["\u0275nov"](t,57).ngClassPending)})}function fh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,null,null,null,null,function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,uh)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,hh)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.field.formModel),e(t,6,0,!n.isEmbedded),e(t,9,0,n.isEmbedded)},null)}function mh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,17,"div",[["class","padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Pp)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,jp)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,8,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,oh)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,fh)),i["\u0275did"](15,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,3,0,n.field.label&&n.field.showHeader),e(t,6,0,n.field.showHeader),e(t,11,0,n.field.freeText),e(t,15,0,!n.field.freeText)},null)}function gh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","col-xs-12 key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["\n ","\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.component.field.label)})}function vh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,16,"div",[["class","row view-contributor"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"div",[["class","col-xs-3 label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,2,"div",[],[[1,"class",0]],null,null,null,null)),(e()(),i["\u0275eld"](6,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](7,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,2,"div",[],[[1,"class",0]],null,null,null,null)),(e()(),i["\u0275eld"](10,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](11,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,2,"div",[],[[1,"class",0]],null,null,null,null)),(e()(),i["\u0275eld"](14,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](15,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,3,0,n.field.nameColHdr),e(t,5,0,n.field.showRole?"col-xs-3":"col-xs-4"),e(t,7,0,n.field.emailColHdr),e(t,9,0,n.field.showRole?"col-xs-3":"hidden"),e(t,11,0,n.field.roleColHdr),e(t,13,0,n.field.showRole?"col-xs-3":"col-xs-4"),e(t,15,0,n.field.orcidColHdr)})}function yh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,25,"div",[["class","view-contributor"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,gh)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,vh)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,13,"div",[["class","row view-contributor"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,1,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](14,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,1,"div",[],[[1,"class",0]],null,null,null,null)),(e()(),i["\u0275ted"](17,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](19,0,null,null,1,"div",[],[[1,"class",0]],null,null,null,null)),(e()(),i["\u0275ted"](20,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,1,"div",[],[[1,"class",0]],null,null,null,null)),(e()(),i["\u0275ted"](23,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,5,0,n.field.label),e(t,9,0,n.field.showHeader)},function(e,t){var n=t.component;e(t,14,0,n.field.value.text_full_name),e(t,16,0,n.field.showRole?"col-xs-3":"col-xs-4"),e(t,17,0,n.field.value.email),e(t,19,0,n.field.showRole?"col-xs-3":"hidden"),e(t,20,0,n.field.value.role),e(t,22,0,n.field.showRole?"col-xs-3":"col-xs-4"),e(t,23,0,n.field.value.orcid)})}function _h(e){return i["\u0275vid"](0,[i["\u0275qud"](671088640,1,{ngCompleter:0}),(e()(),i["\u0275and"](16777216,null,null,1,null,mh)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,yh)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var bh=i["\u0275ccf"]("rb-contributor",eo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-contributor",[],null,null,null,_h,Op)),i["\u0275did"](1,4308992,null,0,eo,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),wh=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function xh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Mh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function Th(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"span",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"rb-vocab",[],null,[[null,"onRemoveBtnClick"]],function(e,t,n){var i=!0;return"onRemoveBtnClick"===t&&(i=!1!==e.component.removeElem(n[0],n[1])&&i),i},Sp,gp)),i["\u0275did"](5,114688,null,0,Qr,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],index:[3,"index"],name:[4,"name"],isEmbedded:[5,"isEmbedded"],canRemove:[6,"canRemove"],removeBtnText:[7,"removeBtnText"],removeBtnClass:[8,"removeBtnClass"]},{onRemoveBtnClick:"onRemoveBtnClick"}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,t.context.$implicit,n.form,n.fieldMap,t.context.index,n.field.name,!0,n.field.fields.length>1,n.field.removeButtonText,n.field.removeButtonClass)},null)}function Lh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.addButtonTextClass)},function(e,t){e(t,2,0,t.component.field.addButtonText)})}function kh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.addButtonClass)},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,2).transform("add-button-label")))})}function Ch(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,34,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,13,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,10,"div",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](7,null,["","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xh)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mh)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Th)),i["\u0275did"](18,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,13,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,1,"span",[["class","col-xs-11"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,7,"span",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Lh)),i["\u0275did"](28,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,kh)),i["\u0275did"](31,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,9,0,n.field.help),e(t,13,0,n.helpShow),e(t,18,0,n.field.fields),e(t,28,0,n.field.addButtonText),e(t,31,0,!n.field.addButtonText)},function(e,t){var n=t.component;e(t,6,0,n.field.name),e(t,7,0,n.field.label)})}function Sh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Eh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-vocab",[],null,null,null,Sp,gp)),i["\u0275did"](1,114688,null,0,Qr,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function Oh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Sh)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,7,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,4,"ul",[["class","key-value-list"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Eh)),i["\u0275did"](10,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,10,0,n.field.fields)},null)}function Dh(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ch)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Oh)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var Ph=i["\u0275ccf"]("repeatable-vocab",jr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"repeatable-vocab",[],null,null,null,Dh,wh)),i["\u0275did"](1,49152,null,0,jr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Ih=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function jh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Rh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,7,"div",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,jh)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,7,0,t.component.field.fields[0].help)},function(e,t){var n=t.component;e(t,5,0,n.field.fields[0].label,n.getRequiredLabelStr())})}function Ah(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["class","col-xs-12 help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.fields[0].help)})}function Yh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.moveUp(n,e.parent.context.index)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,278528,null,0,I,[i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngStyle:[0,"ngStyle"]},null),i["\u0275pod"](3,{"margin-top":0}),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.moveUpButtonClass),e(t,2,0,e(t,3,0,t.parent.context.$implicit.marginTop))},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,4).transform("move-up-button")))})}function Nh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.moveDown(n,e.parent.context.index)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,278528,null,0,I,[i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngStyle:[0,"ngStyle"]},null),i["\u0275pod"](3,{"margin-top":0}),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.moveDownButtonClass),e(t,2,0,e(t,3,0,t.parent.context.$implicit.marginTop))},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,4).transform("move-down-button")))})}function Fh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"button",[["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.removeElem(n,e.parent.context.index)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,278528,null,0,I,[i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngStyle:[0,"ngStyle"]},null),i["\u0275pod"](3,{"margin-top":0}),(e()(),i["\u0275ted"](4,null,["",""]))],function(e,t){e(t,1,0,t.component.field.removeButtonTextClass),e(t,2,0,e(t,3,0,t.parent.context.$implicit.marginTop))},function(e,t){e(t,4,0,t.component.field.removeButtonText)})}function Vh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.removeElem(n,e.parent.context.index)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,278528,null,0,I,[i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngStyle:[0,"ngStyle"]},null),i["\u0275pod"](3,{"margin-top":0}),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.removeButtonClass),e(t,2,0,e(t,3,0,t.parent.context.$implicit.marginTop))},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,4).transform("remove-button-label")))})}function Hh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"span",[["class","col-xs-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"rb-contributor",[],null,null,null,_h,Op)),i["\u0275did"](5,4308992,null,0,eo,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],isEmbedded:[3,"isEmbedded"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,13,"span",[["class","col-xs-2"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Yh)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Nh)),i["\u0275did"](14,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Fh)),i["\u0275did"](17,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vh)),i["\u0275did"](20,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,t.context.$implicit,n.form,n.fieldMap,!0),e(t,11,0,n.field.fields.length>1&&n.field.canSort),e(t,14,0,n.field.fields.length>1&&n.field.canSort),e(t,17,0,n.field.fields.length>1&&n.field.removeButtonText),e(t,20,0,n.field.fields.length>1&&!n.field.removeButtonText)},null)}function Uh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.addButtonTextClass)},function(e,t){e(t,2,0,t.component.field.addButtonText)})}function Bh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.addButtonClass)},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,2).transform("add-button-label")))})}function zh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rh)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ah)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Hh)),i["\u0275did"](9,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,10,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,7,"span",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Uh)),i["\u0275did"](16,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Bh)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.fields[0].label),e(t,6,0,n.helpShow),e(t,9,0,n.field.fields),e(t,16,0,n.field.addButtonText),e(t,19,0,!n.field.addButtonText)},null)}function Wh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,5,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,2,"div",[["class","col-xs-12 key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275eld"](3,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](4,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,4,0,t.component.field.fields[0].label)})}function qh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,"div",[["class","row view-contributor"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,1,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](9,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,1,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](12,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.context.$implicit.value.text_full_name),e(t,6,0,t.context.$implicit.value.email),e(t,9,0,t.context.$implicit.value.role),e(t,12,0,t.context.$implicit.value.orcid)})}function Gh(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,25,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,22,"div",[["class","view-contributor"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Wh)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,13,"div",[["class","row view-contributor"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,1,"div",[["class","col-xs-3 label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](10,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,1,"div",[["class","col-xs-3 label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](13,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,1,"div",[["class","col-xs-3 label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](16,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](18,0,null,null,1,"div",[["class","col-xs-3 label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](19,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,qh)),i["\u0275did"](23,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,n.field.fields[0].label),e(t,23,0,n.field.fields)},function(e,t){var n=t.component;e(t,10,0,n.field.fields[0].nameColHdr),e(t,13,0,n.field.fields[0].emailColHdr),e(t,16,0,n.field.fields[0].roleColHdr),e(t,19,0,n.field.fields[0].orcidColHdr)})}function Zh(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,zh)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Gh)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var Jh=i["\u0275ccf"]("repeatable-contributor",Ar,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"repeatable-contributor",[],null,null,null,Zh,Ih)),i["\u0275did"](1,114688,null,0,Ar,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),$h=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Kh(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,2,"button",[],[[8,"type",0],[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.gotoTargetStep(n)&&i),i},null,null)),i["\u0275did"](2,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,t.component.field.cssClasses)},function(e,t){var n=t.component;e(t,1,0,i["\u0275inlineInterpolate"](1,"",n.field.type,""),n.isDisabled()),e(t,3,0,n.field.label)})}var Qh=i["\u0275ccf"]("workflowstep-button",no,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"workflowstep-button",[],null,null,null,Kh,$h)),i["\u0275did"](1,49152,null,0,no,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Xh=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function ef(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Record published to CKAN at "])),(e()(),i["\u0275eld"](2,0,null,null,1,"a",[["target","_blank"]],[[1,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""]))],null,function(e,t){var n=t.component;e(t,2,0,n.field.value),e(t,3,0,n.field.value)})}function tf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[],[[8,"type",0],[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.executeAction(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.cssClasses)},function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.type,""),n.isDisabled()),e(t,2,0,n.field.label)})}function nf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Submitting to CKAN"]))],null,null)}function rf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,5,"div",[],null,null,null,null,null)),(e()(),i["\u0275and"](16777216,null,null,1,null,tf)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275and"](16777216,null,null,1,null,nf)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,!n.field.submitting),e(t,4,0,n.field.submitting)},null)}function of(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,20,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ef)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,rf)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,11,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,9).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,9).onReset()&&r),r},null,null)),i["\u0275did"](9,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](11,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,5,"input",[["type","hidden"]],[[8,"id",0],[8,"name",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,14)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,14).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,14)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,14)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](14,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](16,540672,null,0,ji,[[8,null],[8,null],[2,An]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,zn,null,[ji]),i["\u0275did"](18,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.value),e(t,6,0,!n.field.value),e(t,9,0,n.form),e(t,16,0,n.getFormControl())},function(e,t){var n=t.component;e(t,8,0,i["\u0275nov"](t,11).ngClassUntouched,i["\u0275nov"](t,11).ngClassTouched,i["\u0275nov"](t,11).ngClassPristine,i["\u0275nov"](t,11).ngClassDirty,i["\u0275nov"](t,11).ngClassValid,i["\u0275nov"](t,11).ngClassInvalid,i["\u0275nov"](t,11).ngClassPending),e(t,13,0,n.field.name,i["\u0275inlineInterpolate"](1,"",n.field.name,""),i["\u0275nov"](t,18).ngClassUntouched,i["\u0275nov"](t,18).ngClassTouched,i["\u0275nov"](t,18).ngClassPristine,i["\u0275nov"](t,18).ngClassDirty,i["\u0275nov"](t,18).ngClassValid,i["\u0275nov"](t,18).ngClassInvalid,i["\u0275nov"](t,18).ngClassPending)})}function lf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Record published to CKAN at "])),(e()(),i["\u0275eld"](2,0,null,null,1,"a",[["target","_blank"]],[[1,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""]))],null,function(e,t){var n=t.component;e(t,2,0,n.field.value),e(t,3,0,n.field.value)})}function sf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Record not yet published"]))],null,null)}function af(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,lf)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sf)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.value),e(t,6,0,!n.field.value)},null)}function uf(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,of)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,af)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var cf=i["\u0275ccf"]("action-button",oo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"action-button",[],null,null,null,uf,Xh)),i["\u0275did"](1,49152,null,0,oo,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),df=function(){function e(){var e;this.generateTemplateString=(e={},function(t){var n=e[t];if(!n){var i=t.replace(/\$\{([\s]*[^;\s\{]+[\s]*)\}/g,function(e,t){return"${map."+t.trim()+"}"}).replace(/(\$\{(?!map\.)[^}]+\})/g,"");n=Function("map","return `"+i+"`")}return n})}return e.prototype.transform=function(e,t){return null!=t?this.generateTemplateString(e)(t):e},e}(),pf=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function hf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.parent.context.$implicit.label)})}function ff(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,null,null,null,null,null,null,null)),(e()(),i["\u0275and"](16777216,null,null,1,null,hf)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275and"](0,null,null,0))],function(e,t){e(t,2,0,0!=t.context.$implicit.show)},null)}function mf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[],null,null,null,null,null))],null,null)}function gf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[],null,null,null,null,null))],null,null)}function vf(e){return i["\u0275vid"](0,[(e()(),i["\u0275and"](0,null,null,0))],null,null)}function yf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"a",[],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""])),i["\u0275ppd"](2,2)],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](3,"/",n.branding,"/",n.portal,"/",t.parent.parent.context.$implicit.link.pattern,"")),e(t,1,0,i["\u0275unv"](t,1,0,e(t,2,0,i["\u0275nov"](t.parent.parent.parent.parent,0),t.parent.parent.context.$implicit.link.pattern,t.parent.parent.parent.context.$implicit)))})}function _f(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"a",[["rel","noopener noreferrer"],["target","_blank"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,0,0,i["\u0275inlineInterpolate"](1,"",t.parent.parent.parent.context.$implicit[t.parent.parent.context.$implicit.property],"")),e(t,1,0,t.parent.parent.parent.context.$implicit[t.parent.parent.context.$implicit.property])})}function bf(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](0,null,["",""]))],null,function(e,t){e(t,0,0,t.parent.parent.parent.context.$implicit[t.parent.parent.context.$implicit.property])})}function wf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,15,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,mf)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"],ngIfThen:[1,"ngIfThen"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,gf)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"],ngIfThen:[1,"ngIfThen"],ngIfElse:[2,"ngIfElse"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["multivalue",2]],null,0,null,vf)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["relative",2]],null,0,null,yf)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["absolute",2]],null,0,null,_f)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["noProcessing",2]],null,0,null,bf)),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,"relative"===t.parent.context.$implicit.link,i["\u0275nov"](t,10)),e(t,6,0,"absolute"===t.parent.context.$implicit.link,i["\u0275nov"](t,12),i["\u0275nov"](t,14))},null)}function xf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wf)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,0!=t.context.$implicit.show)},null)}function Mf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xf)),i["\u0275did"](3,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.columns)},null)}function Tf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["There were "," records that failed to load"]))],null,function(e,t){e(t,1,0,t.component.field.failedObjects.length)})}function Lf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["There were "," records that you do not have access to"]))],null,function(e,t){e(t,1,0,t.component.field.accessDeniedObjects.length)})}function kf(e){return i["\u0275vid"](0,[i["\u0275pid"](0,df,[]),(e()(),i["\u0275eld"](1,0,null,null,28,"div",[["class","padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](3,0,null,null,25,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,16,"table",[["class","table"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,7,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,4,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ff)),i["\u0275did"](12,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mf)),i["\u0275did"](19,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Tf)),i["\u0275did"](24,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Lf)),i["\u0275did"](27,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,12,0,n.field.columns),e(t,19,0,n.field.relatedObjects),e(t,24,0,n.field.failedObjects.length>0),e(t,27,0,n.field.accessDeniedObjects.length>0)},null)}var Cf=i["\u0275ccf"]("rb-relatedobjectdata",fo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-relatedobjectdata",[],null,null,null,kf,pf)),i["\u0275did"](1,49152,null,0,fo,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Sf=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Ef(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Of(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help),e(t,1,0,n.field.help)})}function Df(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"label",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ef)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Of)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,n.field.help),e(t,9,0,n.helpShow)},function(e,t){var n=t.component;e(t,3,0,n.field.label,n.getRequiredLabelStr())})}function Pf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],name:[3,"name"],index:[4,"index"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap,n.name,n.index)},null)}function If(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onRemove(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.removeBtnClass)},function(e,t){var n=t.component;e(t,0,0,!n.canRemove),e(t,2,0,n.removeBtnText)})}function jf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,27,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,24,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,4).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,4).onReset()&&r),r},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](4,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](6,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,17,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,4,"div",[["class","col-xs-11"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Pf)),i["\u0275did"](13,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,8,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,If)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,2,"button",[["type","button"]],[[8,"disabled",0],[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.onRemove(n)&&i),i},null,null)),i["\u0275did"](22,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,4,0,n.form),e(t,13,0,n.field.fields),e(t,19,0,n.removeBtnText),e(t,22,0,n.removeBtnClass)},function(e,t){var n=t.component;e(t,2,0,i["\u0275nov"](t,6).ngClassUntouched,i["\u0275nov"](t,6).ngClassTouched,i["\u0275nov"](t,6).ngClassPristine,i["\u0275nov"](t,6).ngClassDirty,i["\u0275nov"](t,6).ngClassValid,i["\u0275nov"](t,6).ngClassInvalid,i["\u0275nov"](t,6).ngClassPending),e(t,21,0,!n.canRemove,i["\u0275unv"](t,21,1,i["\u0275nov"](t,23).transform("remove-button-label")))})}function Rf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function Af(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,11,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,8,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,4).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,4).onReset()&&r),r},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](4,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](6,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rf)),i["\u0275did"](9,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,4,0,n.form),e(t,9,0,n.field.fields)},function(e,t){e(t,2,0,i["\u0275nov"](t,6).ngClassUntouched,i["\u0275nov"](t,6).ngClassTouched,i["\u0275nov"](t,6).ngClassPristine,i["\u0275nov"](t,6).ngClassDirty,i["\u0275nov"](t,6).ngClassValid,i["\u0275nov"](t,6).ngClassInvalid,i["\u0275nov"](t,6).ngClassPending)})}function Yf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Df)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,jf)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Af)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,6,0,n.isEmbedded),e(t,9,0,!n.isEmbedded)},null)}function Nf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"dmp-field",[],null,null,null,Ra,ja)),i["\u0275did"](1,573440,null,0,Ia,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function Ff(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,11,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,8,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,4).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,4).onReset()&&r),r},null,null)),i["\u0275did"](3,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](4,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](6,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Nf)),i["\u0275did"](9,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.cssClasses),e(t,4,0,n.form),e(t,9,0,n.field.fields)},function(e,t){e(t,2,0,i["\u0275nov"](t,6).ngClassUntouched,i["\u0275nov"](t,6).ngClassTouched,i["\u0275nov"](t,6).ngClassPristine,i["\u0275nov"](t,6).ngClassDirty,i["\u0275nov"](t,6).ngClassValid,i["\u0275nov"](t,6).ngClassInvalid,i["\u0275nov"](t,6).ngClassPending)})}function Vf(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Yf)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ff)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var Hf=i["\u0275ccf"]("generic-group-field",Lo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"generic-group-field",[],null,null,null,Vf,Sf)),i["\u0275did"](1,49152,null,0,Lo,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded",canRemove:"canRemove",removeBtnText:"removeBtnText",removeBtnClass:"removeBtnClass"},{onRemoveBtnClick:"onRemoveBtnClick"},[]),Uf=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Bf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function zf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help),e(t,1,0,n.field.help)})}function Wf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Bf)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,zf)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,n.field.help),e(t,9,0,n.helpShow)},function(e,t){var n=t.component;e(t,3,0,n.field.label,n.getRequiredLabelStr())})}function qf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,16,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,7,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,4,"span",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,1,"generic-group-field",[],null,[[null,"onRemoveBtnClick"]],function(e,t,n){var i=!0;return"onRemoveBtnClick"===t&&(i=!1!==e.component.removeElem(n[0],n[1])&&i),i},Vf,Sf)),i["\u0275did"](7,49152,null,0,Lo,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],index:[3,"index"],name:[4,"name"],isEmbedded:[5,"isEmbedded"],canRemove:[6,"canRemove"],removeBtnText:[7,"removeBtnText"],removeBtnClass:[8,"removeBtnClass"]},{onRemoveBtnClick:"onRemoveBtnClick"}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,1,"span",[["class","col-xs-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,7,0,t.context.$implicit,n.form,n.fieldMap,t.context.index,n.field.name,!0,n.field.fields.length>1,n.field.removeButtonText,n.field.removeButtonClass)},null)}function Gf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](2,null,["",""]))],function(e,t){e(t,1,0,t.component.field.addButtonTextClass)},function(e,t){e(t,2,0,t.component.field.addButtonText)})}function Zf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.addElem(n)&&i),i},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],function(e,t){e(t,1,0,t.component.field.addButtonClass)},function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,2).transform("add-button-label")))})}function Jf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Wf)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,qf)),i["\u0275did"](6,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,13,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,1,"span",[["class","col-xs-11"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,7,"span",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Gf)),i["\u0275did"](16,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Zf)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,6,0,n.field.fields),e(t,16,0,n.field.addButtonText),e(t,19,0,!n.field.addButtonText)},null)}function $f(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Kf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"generic-group-field",[],null,null,null,Vf,Sf)),i["\u0275did"](1,49152,null,0,Lo,[],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"],index:[3,"index"],name:[4,"name"]},null)],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap,t.context.index,n.field.name)},null)}function Qf(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,"li",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,$f)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,7,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,4,"ul",[["class","key-value-list"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Kf)),i["\u0275did"](10,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,10,0,n.field.fields)},null)}function Xf(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Jf)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Qf)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.field.editMode),e(t,5,0,!n.field.editMode)},null)}var em=i["\u0275ccf"]("repeatable-group",ko,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"repeatable-group",[],null,null,null,Xf,Uf)),i["\u0275did"](1,49152,null,0,ko,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),tm=n("nrd6"),nm=function(){function e(e){this.DEFAULT_ZOOM=1,this.DEFAULT_CENTER=Object(tm.latLng)(38.907192,-77.036871),this.DEFAULT_FPZ_OPTIONS={},this.fitBoundsOptions=this.DEFAULT_FPZ_OPTIONS,this.panOptions=this.DEFAULT_FPZ_OPTIONS,this.zoomOptions=this.DEFAULT_FPZ_OPTIONS,this.zoomPanOptions=this.DEFAULT_FPZ_OPTIONS,this.options={},this.mapReady=new i.EventEmitter,this.element=e}return e.prototype.ngOnInit=function(){this.map=Object(tm.map)(this.element.nativeElement,this.options),null!=this.center&&null!=this.zoom&&this.setView(this.center,this.zoom),null!=this.fitBounds&&this.setFitBounds(this.fitBounds),this.doResize(),this.mapReady.emit(this.map)},e.prototype.ngOnChanges=function(e){e.zoom&&e.center&&null!=this.zoom&&null!=this.center?this.setView(e.center.currentValue,e.zoom.currentValue):e.zoom?this.setZoom(e.zoom.currentValue):e.center&&this.setCenter(e.center.currentValue),e.fitBounds&&this.setFitBounds(e.fitBounds.currentValue)},e.prototype.getMap=function(){return this.map},e.prototype.onResize=function(){this.delayResize()},e.prototype.doResize=function(){this.map.invalidateSize({})},e.prototype.delayResize=function(){null!=this.resizeTimer&&clearTimeout(this.resizeTimer),this.resizeTimer=setTimeout(this.doResize.bind(this),200)},e.prototype.setView=function(e,t){this.map&&null!=e&&null!=t&&this.map.setView(e,t,this.zoomPanOptions)},e.prototype.setZoom=function(e){this.map&&null!=e&&this.map.setZoom(e,this.zoomOptions)},e.prototype.setCenter=function(e){this.map&&null!=e&&this.map.panTo(e,this.panOptions)},e.prototype.setFitBounds=function(e){this.map&&null!=e&&this.map.fitBounds(e,this.fitBoundsOptions)},e}(),im=function(){function e(e){this.leafletDirective=e}return e.prototype.init=function(){},e.prototype.getMap=function(){return this.leafletDirective.getMap()},e}(),rm=function(){function e(){this.layersRemoved=0,this.layersChanged=0,this.layersAdded=0}return e.prototype.changed=function(){return!(0===this.layersRemoved&&0===this.layersChanged&&0===this.layersAdded)},e}(),om=function(){function e(){}return e.prototype.getLayersControl=function(){return this.layersControl},e.prototype.init=function(e,t){return this.layersControl=tm.control.layers(e.baseLayers||{},e.overlays||{},t),this.layersControl},e.prototype.applyBaseLayerChanges=function(e){var t=new rm;return null!=this.layersControl&&(t=this.applyChanges(e,this.layersControl.addBaseLayer)),t},e.prototype.applyOverlayChanges=function(e){var t=new rm;return null!=this.layersControl&&(t=this.applyChanges(e,this.layersControl.addOverlay)),t},e.prototype.applyChanges=function(e,t){var n=this,i=new rm;return null!=e&&(e.forEachChangedItem(function(e){n.layersControl.removeLayer(e.previousValue),t.call(n.layersControl,e.currentValue,e.key),i.layersChanged++}),e.forEachRemovedItem(function(e){n.layersControl.removeLayer(e.previousValue),i.layersRemoved++}),e.forEachAddedItem(function(e){t.call(n.layersControl,e.currentValue,e.key),i.layersAdded++})),i},e}(),lm=function(){function e(e,t){this.differs=t,this.leafletDirective=new im(e),this.controlLayers=new om,this.baseLayersDiffer=this.differs.find({}).create(),this.overlaysDiffer=this.differs.find({}).create()}return Object.defineProperty(e.prototype,"layersControlConfig",{get:function(){return this.layersControlConfigValue},set:function(e){null==e&&(e=new function(){this.baseLayers={},this.overlays={}}),null==e.baseLayers&&(e.baseLayers={}),null==e.overlays&&(e.overlays={}),this.layersControlConfigValue=e,this.updateLayers()},enumerable:!0,configurable:!0}),e.prototype.ngOnInit=function(){this.leafletDirective.init(),this.controlLayers.init({},this.layersControlOptions).addTo(this.leafletDirective.getMap()),this.updateLayers()},e.prototype.ngOnDestroy=function(){this.layersControlConfig={baseLayers:{},overlays:{}},this.controlLayers.getLayersControl().remove()},e.prototype.ngDoCheck=function(){this.updateLayers()},e.prototype.updateLayers=function(){var e=this.leafletDirective.getMap(),t=this.controlLayers.getLayersControl();if(null!=e&&null!=t){if(null!=this.baseLayersDiffer&&null!=this.layersControlConfigValue.baseLayers){var n=this.baseLayersDiffer.diff(this.layersControlConfigValue.baseLayers);this.controlLayers.applyBaseLayerChanges(n)}null!=this.overlaysDiffer&&null!=this.layersControlConfigValue.overlays&&(n=this.overlaysDiffer.diff(this.layersControlConfigValue.overlays),this.controlLayers.applyOverlayChanges(n))}},e}(),sm=(n("GMVP"),function(){function e(){}return e.forRoot=function(){return{ngModule:e,providers:[]}},e}()),am=function(){function e(e){this.drawOptions=null,this.leafletDirective=new im(e)}return e.prototype.ngOnInit=function(){var e=this;this.leafletDirective.init(),this.drawOptions=this.initializeDrawOptions(this.drawOptions),this.drawControl=new tm.Control.Draw(this.drawOptions),this.featureGroup=this.drawOptions.edit.featureGroup,this.leafletDirective.getMap().addControl(this.drawControl),this.leafletDirective.getMap().on(tm.Draw.Event.CREATED,function(t){e.featureGroup.addLayer(t.layer)})},e.prototype.ngOnDestroy=function(){this.leafletDirective.getMap().removeControl(this.drawControl)},e.prototype.ngOnChanges=function(e){},e.prototype.initializeDrawOptions=function(e){return null==e&&(e={edit:null}),null==e.edit&&(e.edit={featureGroup:null}),null==e.edit.featureGroup&&(e.edit.featureGroup=tm.featureGroup(),this.leafletDirective.getMap().addLayer(e.edit.featureGroup)),e},e}(),um=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function cm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function dm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function pm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Entered text is not a valid KML or GeoJSON"]))],null,null)}function hm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,42,"div",[["class","form-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,"submit"],[null,"reset"]],function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,1).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,1).onReset()&&r),r},null,null)),i["\u0275did"](1,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](3,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](6,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,cm)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,dm)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](15,0,null,null,4,"div",[["leaflet",""],["leafletDraw",""],["style","height: 450px;"]],null,[[null,"leafletMapReady"],["window","resize"]],function(e,t,n){var r=!0,o=e.component;return"window:resize"===t&&(r=!1!==i["\u0275nov"](e,16).onResize()&&r),"leafletMapReady"===t&&(r=!1!==o.field.onMapReady(n)&&r),r},null,null)),i["\u0275did"](16,606208,null,0,nm,[i.ElementRef],{options:[0,"options"]},{mapReady:"leafletMapReady"}),i["\u0275did"](17,475136,null,0,lm,[nm,i.KeyValueDiffers],{layersControlConfig:[0,"layersControlConfig"]},null),i["\u0275did"](18,737280,null,0,am,[nm],{drawOptions:[0,"drawOptions"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,20,"div",[["class","padding-top-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,10,"div",[],null,null,null,null,null)),(e()(),i["\u0275eld"](24,0,null,null,1,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Enter KML or GeoJSON"])),(e()(),i["\u0275eld"](26,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275eld"](27,0,null,null,6,"textarea",[["class","form-control"],["rows","5"]],[[8,"id",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,28)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,28).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,28)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,28)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.importDataString=n)&&r),r},null,null)),i["\u0275did"](28,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](30,671744,null,0,Pi,[[2,En],[8,null],[8,null],[2,An]],{model:[0,"model"],options:[1,"options"]},{update:"ngModelChange"}),i["\u0275pod"](31,{standalone:0}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](33,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](35,0,null,null,5,"div",[["class","padding-top-10"]],null,null,null,null,null)),(e()(),i["\u0275eld"](36,0,null,null,1,"a",[["class","btn btn-info"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.importData()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["Import"])),(e()(),i["\u0275ted"](-1,null,[" "])),(e()(),i["\u0275and"](16777216,null,null,1,null,pm)),i["\u0275did"](40,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,1,0,n.form),e(t,8,0,n.field.help),e(t,13,0,n.helpShow),e(t,16,0,n.field.leafletOptions),e(t,17,0,n.field.layersControl),e(t,18,0,n.field.drawOptions),e(t,30,0,n.field.importDataString,e(t,31,0,!0)),e(t,40,0,n.field.importFailed)},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,3).ngClassUntouched,i["\u0275nov"](t,3).ngClassTouched,i["\u0275nov"](t,3).ngClassPristine,i["\u0275nov"](t,3).ngClassDirty,i["\u0275nov"](t,3).ngClassValid,i["\u0275nov"](t,3).ngClassInvalid,i["\u0275nov"](t,3).ngClassPending),e(t,5,0,n.field.name),e(t,6,0,n.field.label,n.getRequiredLabelStr()),e(t,24,0,n.field.name),e(t,27,0,n.field.name,i["\u0275nov"](t,33).ngClassUntouched,i["\u0275nov"](t,33).ngClassTouched,i["\u0275nov"](t,33).ngClassPristine,i["\u0275nov"](t,33).ngClassDirty,i["\u0275nov"](t,33).ngClassValid,i["\u0275nov"](t,33).ngClassInvalid,i["\u0275nov"](t,33).ngClassPending)})}function fm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,6,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,3,"div",[["leaflet",""],["style","height: 450px;"]],null,[[null,"leafletMapReady"],["window","resize"]],function(e,t,n){var r=!0,o=e.component;return"window:resize"===t&&(r=!1!==i["\u0275nov"](e,3).onResize()&&r),"leafletMapReady"===t&&(r=!1!==o.field.onMapReady(n)&&r),r},null,null)),i["\u0275did"](3,606208,null,0,nm,[i.ElementRef],{options:[0,"options"]},{mapReady:"leafletMapReady"}),i["\u0275did"](4,475136,null,0,lm,[nm,i.KeyValueDiffers],{layersControlConfig:[0,"layersControlConfig"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,3,0,n.field.leafletOptions),e(t,4,0,n.field.layersControl)},null)}function mm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"div",[["class","padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,hm)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,fm)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,3,0,n.field.editMode),e(t,7,0,!n.field.editMode)},null)}var gm=i["\u0275ccf"]("rb-mapdata",To,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-mapdata",[],null,null,null,mm,um)),i["\u0275did"](1,4243456,null,0,To,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),vm=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function ym(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}var _m=i["\u0275ccf"]("record-metadata-retriever",Wr,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"record-metadata-retriever",[],null,null,null,ym,vm)),i["\u0275did"](1,49152,null,0,Wr,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),bm=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function wm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function xm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wm)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","value"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){e(t,3,0,t.component.field.label)},function(e,t){e(t,6,0,t.component.field.value.title)})}function Mm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Tm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function Lm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,5,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n "," "])),(e()(),i["\u0275eld"](2,0,null,null,2,"button",[["class","btn btn-info"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.resetSelector()&&i),i},null,null)),(e()(),i["\u0275ted"](3,null,["",""])),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,1,0,t.component.field.value.title),e(t,3,0,i["\u0275unv"](t,3,0,i["\u0275nov"](t,4).transform("change-text")))})}function km(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"tr",[],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.recordSelectedEmit(e.context.$implicit,n)&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.context.$implicit.title)})}function Cm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,19,"div",[["class","table-responsive"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,16,"table",[["class","table table-bordered table-striped table-hover"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,7,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](9,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,km)),i["\u0275did"](16,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,16,0,t.component.field.filteredPlans)},function(e,t){e(t,9,0,t.component.field.columnTitle)})}function Sm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,26,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,17,"div",[["class","input-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,2,"span",[["class","input-group-addon"],["id","name-addon"]],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["",""])),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,5,"input",[["aria-describedby","name-addon"],["class","form-control"],["placeholder","Name"],["type","text"]],[[1,"aria-label",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,"keyup"],[null,"ngModelChange"],[null,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,9)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,9).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,9)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,9)._compositionEnd(n.target.value)&&r),"keyup"===t&&(r=!1!==o.field.onFilterChange()&&r),"ngModelChange"===t&&(r=!1!==(o.field.searchFilterName=n)&&r),r},null,null)),i["\u0275did"](9,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](11,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](13,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,3,"span",[["class","input-group-btn"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.resetFilter()&&i),i},null,null)),(e()(),i["\u0275eld"](16,0,null,null,2,"button",[["class","btn btn-primary"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](17,null,["",""])),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,1,"div",[],null,null,null,null,null)),(e()(),i["\u0275eld"](22,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Cm)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,11,0,n.field.searchFilterName),e(t,25,0,n.hasFilteredResults())},function(e,t){var n=t.component;e(t,5,0,i["\u0275unv"](t,5,0,i["\u0275nov"](t,6).transform("search-by-name"))),e(t,8,0,n.field.label,i["\u0275nov"](t,13).ngClassUntouched,i["\u0275nov"](t,13).ngClassTouched,i["\u0275nov"](t,13).ngClassPristine,i["\u0275nov"](t,13).ngClassDirty,i["\u0275nov"](t,13).ngClassValid,i["\u0275nov"](t,13).ngClassInvalid,i["\u0275nov"](t,13).ngClassPending),e(t,17,0,i["\u0275unv"](t,17,0,i["\u0275nov"](t,18).transform("transfer-ownership-reset")))})}function Em(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,20,"div",[["class","panel panel-primary"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,17,"div",[["class","panel-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mm)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Tm)),i["\u0275did"](12,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Lm)),i["\u0275did"](15,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Sm)),i["\u0275did"](18,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,7,0,n.field.help),e(t,12,0,n.helpShow),e(t,15,0,n.field.value.oid),e(t,18,0,!n.field.value.oid)},function(e,t){var n=t.component;e(t,5,0,n.field.label,n.getRequiredLabelStr())})}function Om(e){return i["\u0275vid"](0,[(e()(),i["\u0275and"](16777216,null,null,1,null,xm)),i["\u0275did"](1,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,Em)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,1,0,n.field.value.oid&&!n.field.editMode),e(t,4,0,n.field.editMode)},null)}var Dm=i["\u0275ccf"]("rb-RelatedObjectSelector",vo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-RelatedObjectSelector",[],null,null,null,Om,bm)),i["\u0275did"](1,49152,null,0,vo,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Pm=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Im(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"th",[["width","5%"]],null,null,null,null,null)),(e()(),i["\u0275eld"](1,0,null,null,1,"span",[],[[8,"hidden",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Action"]))],null,function(e,t){e(t,1,0,!0)})}function jm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,1,0,t.parent.context.$implicit.location)})}function Rm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,1,0,t.parent.parent.context.$implicit.name)})}function Am(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"a",[["target","_blank"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,0,0,i["\u0275inlineInterpolate"](1,"",t.component.getAbsUrl(t.parent.parent.context.$implicit.location),"")),e(t,1,0,t.parent.parent.context.$implicit.name)})}function Ym(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rm)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Am)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.parent.context.$implicit.pending),e(t,6,0,!t.parent.context.$implicit.pending)},null)}function Nm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"button",[["class","btn btn-primary pull-right"],["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.editNotes(e.parent.context.$implicit,e.parent.context.index)&&i),i},null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.editNotesButtonText)})}function Fm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"a",[["class","fa fa-minus-circle btn text-20 btn-danger"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.removeLocation(e.parent.context.$implicit)&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}function Vm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,7,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,jm)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ym)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,4,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](15,null,["\n ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Nm)),i["\u0275did"](17,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Fm)),i["\u0275did"](21,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,8,0,t.context.$implicit&&"attachment"!=t.context.$implicit.type),e(t,11,0,"attachment"==t.context.$implicit.type),e(t,17,0,n.field.editMode),e(t,21,0,n.field.editMode)},function(e,t){e(t,3,0,t.component.field.dataTypeLookup[t.context.$implicit.type]),e(t,15,0,t.context.$implicit.notes)})}function Hm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,28,"div",[["class","table-responsive"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,25,"table",[["class","table table-bordered table-striped table-hover"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,16,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,13,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,1,"th",[["width","15%"]],null,null,null,null,null)),(e()(),i["\u0275ted"](9,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,1,"th",[["width","40%"]],null,null,null,null,null)),(e()(),i["\u0275ted"](12,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,1,"th",[["width","40%"]],null,null,null,null,null)),(e()(),i["\u0275ted"](15,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Im)),i["\u0275did"](18,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vm)),i["\u0275did"](25,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,18,0,n.field.editMode),e(t,25,0,n.getDatalocations())},function(e,t){var n=t.component;e(t,9,0,n.field.typeHeader),e(t,12,0,n.field.locationHeader),e(t,15,0,n.field.notesHeader)})}function Um(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.notesHeader)})}function Bm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function zm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,25,"div",[["class","row padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,4,"div",[["class","col-xs-4"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](11,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,4,"div",[["class","col-xs-4"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Um)),i["\u0275did"](17,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,4,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Bm)),i["\u0275did"](23,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,17,0,"attachment"!=n.field.newLocation.type),e(t,23,0,n.field.help)},function(e,t){var n=t.component;e(t,5,0,n.field.typeHeader),e(t,11,0,n.field.locationHeader)})}function Wm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function qm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"option",[],null,null,null,null,null)),i["\u0275did"](1,147456,null,0,$n,[i.ElementRef,i.Renderer2,[2,Jn]],{value:[0,"value"]},null),i["\u0275did"](2,147456,null,0,Xn,[i.ElementRef,i.Renderer2,[8,null]],{value:[0,"value"]},null),(e()(),i["\u0275ted"](3,null,["",""]))],function(e,t){e(t,1,0,t.context.$implicit.value),e(t,2,0,t.context.$implicit.value)},function(e,t){e(t,3,0,t.context.$implicit.label)})}function Gm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,5,"input",[["class","form-control"],["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,1)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,1).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,1)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,1)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.newLocation.location=n)&&r),r},null,null)),i["\u0275did"](1,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](3,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](5,16384,null,0,mi,[zn],null,null)],function(e,t){e(t,3,0,t.component.field.newLocation.location)},function(e,t){e(t,0,0,t.component.field.locationHeader,i["\u0275nov"](t,5).ngClassUntouched,i["\u0275nov"](t,5).ngClassTouched,i["\u0275nov"](t,5).ngClassPristine,i["\u0275nov"](t,5).ngClassDirty,i["\u0275nov"](t,5).ngClassValid,i["\u0275nov"](t,5).ngClassInvalid,i["\u0275nov"](t,5).ngClassPending)})}function Zm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,5,"input",[["class","form-control"],["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,1)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,1).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,1)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,1)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.newLocation.notes=n)&&r),r},null,null)),i["\u0275did"](1,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](3,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](5,16384,null,0,mi,[zn],null,null)],function(e,t){e(t,3,0,t.component.field.newLocation.notes)},function(e,t){e(t,0,0,t.component.field.notesHeader,i["\u0275nov"](t,5).ngClassUntouched,i["\u0275nov"](t,5).ngClassTouched,i["\u0275nov"](t,5).ngClassPristine,i["\u0275nov"](t,5).ngClassDirty,i["\u0275nov"](t,5).ngClassValid,i["\u0275nov"](t,5).ngClassInvalid,i["\u0275nov"](t,5).ngClassPending)})}function Jm(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"a",[["class","fa fa-plus-circle btn text-20 pull-right btn-success"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.addLocation()&&i),i},null,null))],null,null)}function $m(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"button",[["class","btn btn-success"],["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.addLocation()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["Enter"]))],null,null)}function Km(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,76,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,12,"div",[["class","col-xs-3"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,9,"select",[["class","form-control"]],[[8,"id",0],[1,"aria-label",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,"change"],[null,"blur"]],function(e,t,n){var r=!0,o=e.component;return"change"===t&&(r=!1!==i["\u0275nov"](e,5).onChange(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,5).onTouched()&&r),"ngModelChange"===t&&(r=!1!==(o.field.newLocation.type=n)&&r),r},null,null)),i["\u0275did"](5,16384,null,0,Jn,[i.Renderer2,i.ElementRef],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Jn]),i["\u0275did"](7,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](9,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,qm)),i["\u0275did"](12,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](16,0,null,null,7,"div",[["class","col-xs-4"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Gm)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,1,"a",[["class","btn btn-info UppyModalOpenerBtn"]],[[2,"disabled",null],[4,"display",null]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.openModal()&&i),i},null,null)),(e()(),i["\u0275ted"](22,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,4,"div",[["class","col-xs-4"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Zm)),i["\u0275did"](28,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](31,0,null,null,7,"div",[["class","col-xs-1"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Jm)),i["\u0275did"](34,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,$m)),i["\u0275did"](37,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](41,0,null,null,34,"div",[["class","modal fade"],["role","dialog"],["tabindex","-1"]],[[8,"id",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](43,0,null,null,31,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](45,0,null,null,28,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](47,0,null,null,7,"div",[["class","modal-header"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](49,0,null,null,2,"button",[["aria-label","Close"],["class","close"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275eld"](50,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xd7"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](53,0,null,null,0,"span",[["class","modal-title"]],[[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](56,0,null,null,9,"div",[["class","modal-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](58,0,null,null,6,"input",[["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,60)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,60).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,60)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,60)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.editingNotes.notes=n)&&r),r},null,null)),i["\u0275did"](59,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](60,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](62,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](64,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](67,0,null,null,5,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](69,0,null,null,0,"button",[["class","btn btn-default"],["data-dismiss","modal"],["type","button"]],[[8,"innerHTML",1]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.hideEditNotes()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](71,0,null,null,0,"button",[["class","btn btn-primary"],["type","button"]],[[8,"innerHTML",1]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.saveNotes()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,7,0,n.field.newLocation.type),e(t,12,0,n.field.dataTypes),e(t,19,0,"attachment"!=n.field.newLocation.type),e(t,28,0,"attachment"!=n.field.newLocation.type),e(t,34,0,"attachment"!=n.field.newLocation.type&&!n.field.locationAddText),e(t,37,0,"attachment"!=n.field.newLocation.type&&n.field.locationAddText),e(t,59,0,n.field.editNotesCssClasses),e(t,62,0,n.editingNotes.notes)},function(e,t){var n=t.component;e(t,4,0,n.field.newLocation.type,n.field.typeHeader,i["\u0275nov"](t,9).ngClassUntouched,i["\u0275nov"](t,9).ngClassTouched,i["\u0275nov"](t,9).ngClassPristine,i["\u0275nov"](t,9).ngClassDirty,i["\u0275nov"](t,9).ngClassValid,i["\u0275nov"](t,9).ngClassInvalid,i["\u0275nov"](t,9).ngClassPending),e(t,21,0,n.isAttachmentsDisabled(),"attachment"==n.field.newLocation.type?"inherit":"none"),e(t,22,0,n.field.attachmentText),e(t,41,0,i["\u0275inlineInterpolate"](1,"",n.field.name,"_editnotes")),e(t,53,0,n.field.editNotesTitle),e(t,58,0,n.field.notesHeader,i["\u0275nov"](t,64).ngClassUntouched,i["\u0275nov"](t,64).ngClassTouched,i["\u0275nov"](t,64).ngClassPristine,i["\u0275nov"](t,64).ngClassDirty,i["\u0275nov"](t,64).ngClassValid,i["\u0275nov"](t,64).ngClassInvalid,i["\u0275nov"](t,64).ngClassPending),e(t,69,0,n.field.cancelEditNotesButtonText),e(t,71,0,n.field.applyEditNotesButtonText)})}function Qm(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275eld"](1,0,null,null,0,"link",[["href","/node_modules/uppy/dist/uppy.min.css"],["rel","stylesheet"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275eld"](3,0,null,null,20,"div",[["class","padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["\n "," ","\n "])),(e()(),i["\u0275eld"](7,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,13,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Hm)),i["\u0275did"](12,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,zm)),i["\u0275did"](15,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Wm)),i["\u0275did"](18,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Km)),i["\u0275did"](21,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,12,0,n.getDatalocations()&&n.getDatalocations().length>0),e(t,15,0,n.field.editMode),e(t,18,0,n.helpShow),e(t,21,0,n.field.editMode)},function(e,t){var n=t.component;e(t,6,0,n.field.label,n.getRequiredLabelStr())})}var Xm=i["\u0275ccf"]("data-location-selector",bo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"data-location-selector",[],null,null,null,Qm,Pm)),i["\u0275did"](1,4308992,null,0,bo,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),eg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function tg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function ng(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"input",[["type","checkbox"]],[[1,"aria-label",0]],[[null,"change"]],function(e,t,n){var i=!0;return"change"===t&&(i=!1!==e.component.selectAllLocations(n.target.checked)&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next])],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("select-all-items")))})}function ig(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,1,0,t.parent.context.$implicit.location)})}function rg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,1,0,t.parent.parent.context.$implicit.name)})}function og(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"a",[["target","_blank"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ","\n "]))],null,function(e,t){e(t,0,0,i["\u0275inlineInterpolate"](1,"",t.component.getAbsUrl(t.parent.parent.context.$implicit.location),"")),e(t,1,0,t.parent.parent.context.$implicit.name)})}function lg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,rg)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,og)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.parent.context.$implicit.pending),e(t,6,0,!t.parent.context.$implicit.pending)},null)}function sg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"button",[["class","btn btn-primary pull-right"],["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.editNotes(e.parent.context.$implicit,e.parent.context.index)&&i),i},null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.editNotesButtonText)})}function ag(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,28,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,7,"td",[],null,null,null,null,null)),(e()(),i["\u0275eld"](3,0,null,null,6,"input",[["type","checkbox"]],[[1,"disabled",0],[1,"aria-label",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,"change"],[null,"blur"]],function(e,t,n){var r=!0;return"change"===t&&(r=!1!==i["\u0275nov"](e,4).onChange(n.target.checked)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,4).onTouched()&&r),"ngModelChange"===t&&(r=!1!==(e.context.$implicit.selected=n)&&r),r},null,null)),i["\u0275did"](4,16384,null,0,Yn,[i.Renderer2,i.ElementRef],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Yn]),i["\u0275did"](6,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](8,16384,null,0,mi,[zn],null,null),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](12,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,7,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ig)),i["\u0275did"](17,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,lg)),i["\u0275did"](20,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,4,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](24,null,["\n ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sg)),i["\u0275did"](26,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n\n "]))],function(e,t){var n=t.component;e(t,6,0,t.context.$implicit.selected),e(t,17,0,t.context.$implicit&&"attachment"!=t.context.$implicit.type),e(t,20,0,"attachment"==t.context.$implicit.type),e(t,26,0,n.field.editMode)},function(e,t){var n=t.component;e(t,3,0,n.field.editMode?null:"",i["\u0275unv"](t,3,1,i["\u0275nov"](t,9).transform("select-item")),i["\u0275nov"](t,8).ngClassUntouched,i["\u0275nov"](t,8).ngClassTouched,i["\u0275nov"](t,8).ngClassPristine,i["\u0275nov"](t,8).ngClassDirty,i["\u0275nov"](t,8).ngClassValid,i["\u0275nov"](t,8).ngClassInvalid,i["\u0275nov"](t,8).ngClassPending),e(t,12,0,n.field.dataTypeLookup[t.context.$implicit.type]),e(t,24,0,t.context.$implicit.notes)})}function ug(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,45,"div",[["class","padding-bottom-10"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,tg)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,35,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,31,"div",[["class","table-responsive"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,28,"table",[["class","table table-bordered table-striped table-hover"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,19,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,16,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](19,0,null,null,4,"th",[["width","5%"]],null,null,null,null,null)),(e()(),i["\u0275and"](16777216,null,null,1,null,ng)),i["\u0275did"](21,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275eld"](22,0,null,null,1,"span",[],[[8,"hidden",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Select"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,1,"th",[["width","15%"]],null,null,null,null,null)),(e()(),i["\u0275ted"](26,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,1,"th",[["width","40%"]],null,null,null,null,null)),(e()(),i["\u0275ted"](29,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](31,0,null,null,1,"th",[["width","40%"]],null,null,null,null,null)),(e()(),i["\u0275ted"](32,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](36,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ag)),i["\u0275did"](39,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,5,0,n.field.help),e(t,21,0,n.field.editMode),e(t,39,0,n.getDatalocations())},function(e,t){var n=t.component;e(t,3,0,n.field.label,n.getRequiredLabelStr()),e(t,22,0,!0),e(t,26,0,n.field.typeHeader),e(t,29,0,n.field.locationHeader),e(t,32,0,n.field.notesHeader)})}function cg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,34,"div",[["class","modal fade"],["role","dialog"],["tabindex","-1"]],[[8,"id",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,31,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,28,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,7,"div",[["class","modal-header"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,2,"button",[["aria-label","Close"],["class","close"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275eld"](9,0,null,null,1,"span",[["aria-hidden","true"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xd7"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,0,"span",[["class","modal-title"]],[[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,9,"div",[["class","modal-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,6,"input",[["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,19)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,19).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,19)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,19)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.editingNotes.notes=n)&&r),r},null,null)),i["\u0275did"](18,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](19,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](21,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{model:[0,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](23,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,5,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,0,"button",[["class","btn btn-default"],["data-dismiss","modal"],["type","button"]],[[8,"innerHTML",1]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.hideEditNotes()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](30,0,null,null,0,"button",[["class","btn btn-primary"],["type","button"]],[[8,"innerHTML",1]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.saveNotes()&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,18,0,n.field.editNotesCssClasses),e(t,21,0,n.editingNotes.notes)},function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.name,"_editnotes")),e(t,12,0,n.field.editNotesTitle),e(t,17,0,n.field.notesHeader,i["\u0275nov"](t,23).ngClassUntouched,i["\u0275nov"](t,23).ngClassTouched,i["\u0275nov"](t,23).ngClassPristine,i["\u0275nov"](t,23).ngClassDirty,i["\u0275nov"](t,23).ngClassValid,i["\u0275nov"](t,23).ngClassInvalid,i["\u0275nov"](t,23).ngClassPending),e(t,28,0,n.field.cancelEditNotesButtonText),e(t,30,0,n.field.applyEditNotesButtonText)})}function dg(e){return i["\u0275vid"](0,[(e()(),i["\u0275and"](16777216,null,null,1,null,ug)),i["\u0275did"](1,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,cg)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,1,0,n.field.visible),e(t,5,0,n.field.editMode)},null)}var pg=i["\u0275ccf"]("publish-data-location-selector",xo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"publish-data-location-selector",[],null,null,null,dg,eg)),i["\u0275did"](1,114688,null,0,xo,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),hg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function fg(e){return i["\u0275vid"](0,[],null,null)}var mg=i["\u0275ccf"]("workspace-selector-parent",Oo,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"workspace-selector-parent",[],null,null,null,fg,hg)),i["\u0275did"](1,49152,null,0,Oo,[],null,null)],null,null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),gg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function vg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function yg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help)})}function _g(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"option",[],[[8,"selected",0]],null,null,null,null)),i["\u0275did"](1,147456,null,0,$n,[i.ElementRef,i.Renderer2,[8,null]],{ngValue:[0,"ngValue"],value:[1,"value"]},null),i["\u0275did"](2,147456,null,0,Xn,[i.ElementRef,i.Renderer2,[8,null]],{ngValue:[0,"ngValue"],value:[1,"value"]},null),(e()(),i["\u0275ted"](3,null,["","\n "]))],function(e,t){e(t,1,0,t.context.$implicit,t.context.$implicit.name),e(t,2,0,t.context.$implicit,t.context.$implicit.name)},function(e,t){e(t,0,0,0==t.context.index),e(t,3,0,t.context.$implicit.label)})}function bg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"button",[["class","btn btn-primary"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.saveAndOpenWorkspace()&&i),i},null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,3,0,n.field.workspaceApp.description),e(t,6,0,n.field.open)})}function wg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"p",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"strong",[],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,5,0,t.component.field.saveFirst)})}function xg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,31,"div",[["class","panel panel-default"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,5,"div",[["class","panel-heading"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,2,"h4",[["class","panel-title"]],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["",""])),i["\u0275ppd"](6,1),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,21,"div",[["class","panel-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,18,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,10,"div",[["class","col-md-8 col-sm-8 col-xs-8 col-lg-8"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,1,"h5",[],null,null,null,null,null)),(e()(),i["\u0275ted"](16,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,bg)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wg)),i["\u0275did"](22,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](25,0,null,null,3,"div",[["class","col-md-4 col-sm-4 col-xs-4 col-lg-4"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](27,0,null,null,0,"img",[],[[8,"src",4],[8,"alt",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,19,0,n.field.rdmp),e(t,22,0,!n.field.rdmp)},function(e,t){var n=t.component;e(t,5,0,i["\u0275unv"](t,5,0,e(t,6,0,i["\u0275nov"](t.parent.parent,0),n.field.workspaceApp.name))),e(t,16,0,n.field.workspaceApp.subtitle),e(t,27,0,i["\u0275inlineInterpolate"](1,"",n.field.workspaceApp.logo,""),i["\u0275inlineInterpolate"](1,"",n.field.workspaceApp.name,""))})}function Mg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,33,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"label",[],[[1,"for",0]],null,null,null,null)),(e()(),i["\u0275ted"](7,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,vg)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,yg)),i["\u0275did"](15,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,5,"select",[],[[8,"id",0]],[[null,"change"]],function(e,t,n){var i=!0;return"change"===t&&(i=!1!==e.component.field.loadWorkspaceDetails(n.target.value)&&i),i},null,null)),i["\u0275did"](18,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,_g)),i["\u0275did"](21,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](24,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275eld"](25,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275eld"](26,0,null,null,0,"br",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xg)),i["\u0275did"](31,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,2,0,n.form),e(t,9,0,n.field.help),e(t,15,0,n.helpShow),e(t,18,0,n.field.cssClasses),e(t,21,0,n.field.workspaceApps),e(t,31,0,n.field.workspaceApp)},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,6,0,n.field.name),e(t,7,0,n.field.label,n.getRequiredLabelStr()),e(t,17,0,n.field.name)})}function Tg(e){return i["\u0275vid"](0,[i["\u0275pid"](0,N,[]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mg)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.editMode)},null)}var Lg=i["\u0275ccf"]("workspace-selector",Do,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"workspace-selector",[],null,null,null,Tg,gg)),i["\u0275did"](1,114688,null,0,Do,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),kg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Cg(e){return i["\u0275vid"](0,[i["\u0275qud"](402653184,1,{fieldAnchor:0}),i["\u0275qud"](402653184,2,{fieldElement:0}),(e()(),i["\u0275eld"](2,16777216,[[1,3],[2,0],["field",1]],null,0,"span",[],[[1,"disabled",0]],null,null,null,null))],null,function(e,t){e(t,2,0,t.component.isDisabled())})}var Sg=i["\u0275ccf"]("ws-field",So,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"ws-field",[],null,null,null,Cg,kg)),i["\u0275did"](1,573440,null,0,So,[i.ComponentFactoryResolver,i.ApplicationRef],null,null)],null,null)},{field:"field",form:"form",value:"value",fieldMap:"fieldMap",parentId:"parentId"},{},[]),Eg=function(){},Og=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Dg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"input",[["class","tree-node-checkbox"],["type","checkbox"]],[[1,"aria-label",0],[8,"checked",0],[8,"indeterminate",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.node.mouseAction("checkboxClick",n)&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,n.ariaLabel,n.node.isSelected,n.node.isPartiallySelected)})}function Pg(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,Dg)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var Ig=i["\u0275ccf"]("rb-tree-node-checkbox",Eg,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-tree-node-checkbox",[],null,null,null,Pg,Og)),i["\u0275did"](1,49152,null,0,Eg,[],null,null)],null,null)},{node:"node",ariaLabel:"ariaLabel"},{},[]),jg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Rg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"span",[["class","toggle-children-wrapper"]],[[2,"toggle-children-wrapper-expanded",null],[2,"toggle-children-wrapper-collapsed",null]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.node.mouseAction("expanderClick",n)&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["class","toggle-children"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,0,0,n.node.isExpanded,n.node.isCollapsed)})}function Ag(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","toggle-children-placeholder"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}function Yg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Rg)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ag)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.node.hasChildren),e(t,6,0,!n.node.hasChildren)},null)}function Ng(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,Yg)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var Fg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Vg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.node.displayField)})}function Hg(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vg)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,16777216,null,null,3,null,null,null,null,null,null,null)),i["\u0275did"](5,540672,null,0,j,[i.ViewContainerRef],{ngTemplateOutletContext:[0,"ngTemplateOutletContext"],ngTemplateOutlet:[1,"ngTemplateOutlet"]},null),i["\u0275pod"](6,{$implicit:0,node:1,index:2}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,!n.template),e(t,5,0,e(t,6,0,n.node,n.node,n.index),n.template)},null)}var Ug=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Bg(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,2,"div",[["class","node-drop-slot"]],null,[[null,"treeDrop"],[null,"drop"]],function(e,t,n){var r=!0,o=e.component;return"drop"===t&&(r=!1!==i["\u0275nov"](e,2).onDrop(n)&&r),"treeDrop"===t&&(r=!1!==o.onDrop(n)&&r),r},null,null)),i["\u0275did"](2,4341760,null,0,Nl,[i.ElementRef,i.Renderer,yl,i.NgZone],{treeAllowDrop:[0,"treeAllowDrop"]},{onDropCallback:"treeDrop"}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.allowDrop.bind(n))},null)}var zg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Wg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"input",[["class","tree-node-checkbox"],["type","checkbox"]],[[8,"checked",0],[8,"indeterminate",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.node.mouseAction("checkboxClick",n)&&i),i},null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,n.node.isSelected,n.node.isPartiallySelected)})}function qg(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,Wg)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var Gg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Zg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"tree-node-checkbox",[],null,null,null,qg,zg)),i["\u0275did"](1,49152,null,0,Yl,[],{node:[0,"node"]},null)],function(e,t){e(t,1,0,t.component.node)},null)}function Jg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,16,"div",[["class","node-wrapper"]],[[4,"padding-left",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Zg)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"tree-node-expander",[],null,null,null,Ng,jg)),i["\u0275did"](6,49152,null,0,Ol,[],{node:[0,"node"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,7,"div",[["class","node-content-wrapper"]],[[2,"node-content-wrapper-active",null],[2,"node-content-wrapper-focused",null]],[[null,"click"],[null,"dblclick"],[null,"contextmenu"],[null,"treeDrop"],[null,"treeDropDragOver"],[null,"treeDropDragLeave"],[null,"treeDropDragEnter"],[null,"drop"],[null,"dragstart"],[null,"dragend"]],function(e,t,n){var r=!0,o=e.component;return"drop"===t&&(r=!1!==i["\u0275nov"](e,9).onDrop(n)&&r),"dragstart"===t&&(r=!1!==i["\u0275nov"](e,10).onDragStart(n)&&r),"dragend"===t&&(r=!1!==i["\u0275nov"](e,10).onDragEnd()&&r),"click"===t&&(r=!1!==o.node.mouseAction("click",n)&&r),"dblclick"===t&&(r=!1!==o.node.mouseAction("dblClick",n)&&r),"contextmenu"===t&&(r=!1!==o.node.mouseAction("contextMenu",n)&&r),"treeDrop"===t&&(r=!1!==o.node.onDrop(n)&&r),"treeDropDragOver"===t&&(r=!1!==o.node.mouseAction("dragOver",n)&&r),"treeDropDragLeave"===t&&(r=!1!==o.node.mouseAction("dragLeave",n)&&r),"treeDropDragEnter"===t&&(r=!1!==o.node.mouseAction("dragEnter",n)&&r),r},null,null)),i["\u0275did"](9,4341760,null,0,Nl,[i.ElementRef,i.Renderer,yl,i.NgZone],{treeAllowDrop:[0,"treeAllowDrop"]},{onDropCallback:"treeDrop",onDragOverCallback:"treeDropDragOver",onDragLeaveCallback:"treeDropDragLeave",onDragEnterCallback:"treeDropDragEnter"}),i["\u0275did"](10,4603904,null,0,Fl,[i.ElementRef,i.Renderer,yl,i.NgZone],{draggedElement:[0,"draggedElement"],treeDragEnabled:[1,"treeDragEnabled"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](12,0,null,null,2,"tree-node-content",[],null,null,null,Hg,Fg)),i["\u0275did"](13,49152,null,0,Sl,[],{node:[0,"node"],index:[1,"index"],template:[2,"template"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.node.options.useCheckbox),e(t,6,0,n.node),e(t,9,0,n.node.allowDrop),e(t,10,0,n.node,n.node.allowDrag()),e(t,13,0,n.node,n.index,n.templates.treeNodeTemplate)},function(e,t){var n=t.component;e(t,0,0,n.node.getNodePadding()),e(t,8,0,n.node.isActive,n.node.isFocused)})}function $g(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Jg)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,16777216,null,null,3,null,null,null,null,null,null,null)),i["\u0275did"](5,540672,null,0,j,[i.ViewContainerRef],{ngTemplateOutletContext:[0,"ngTemplateOutletContext"],ngTemplateOutlet:[1,"ngTemplateOutlet"]},null),i["\u0275pod"](6,{$implicit:0,node:1,index:2,templates:3}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,!n.templates.treeNodeWrapperTemplate),e(t,5,0,e(t,6,0,n.node,n.node,n.index,n.templates),n.templates.treeNodeWrapperTemplate)},null)}var Kg=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Qg(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["loading..."]))],null,null)}function Xg(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Qg)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,16777216,null,null,3,null,null,null,null,null,null,null)),i["\u0275did"](5,540672,null,0,j,[i.ViewContainerRef],{ngTemplateOutletContext:[0,"ngTemplateOutletContext"],ngTemplateOutlet:[1,"ngTemplateOutlet"]},null),i["\u0275pod"](6,{$implicit:0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,!n.template),e(t,5,0,e(t,6,0,n.node),n.template)},null)}var ev=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function tv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"tree-node-collection",[],null,null,null,fv,dv)),i["\u0275did"](1,245760,null,0,Pl,[],{nodes:[0,"nodes"],treeModel:[1,"treeModel"],templates:[2,"templates"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.node.children,n.node.treeModel,n.templates)},null)}function nv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"tree-loading-component",[["class","tree-node-loading"]],[[4,"padding-left",null]],null,null,Xg,Kg)),i["\u0275did"](1,49152,null,0,wl,[],{template:[0,"template"],node:[1,"node"]},null)],function(e,t){var n=t.component;e(t,1,0,n.templates.loadingTemplate,n.node)},function(e,t){e(t,0,0,t.component.node.getNodePadding())})}function iv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[],[[2,"tree-children",null],[2,"tree-children-no-padding",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,tv)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,nv)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.node.children),e(t,6,0,!n.node.children)},function(e,t){e(t,0,0,!0,t.component.node.options.levelPadding)})}function rv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,iv)),i["\u0275did"](3,16384,null,0,Vl,[i.Renderer,i.TemplateRef,i.ViewContainerRef],{animateSpeed:[0,"animateSpeed"],animateAcceleration:[1,"animateAcceleration"],isEnabled:[2,"isEnabled"],isOpen:[3,"isOpen"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,n.node.options.animateSpeed,n.node.options.animateAcceleration,n.node.options.animateExpand,n.node.isExpanded)},null)}function ov(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,rv)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var lv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function sv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"tree-node-drop-slot",[],null,null,null,Bg,Ug)),i["\u0275did"](1,49152,null,0,El,[],{node:[0,"node"],dropIndex:[1,"dropIndex"]},null)],function(e,t){var n=t.component;e(t,1,0,n.node.parent,n.node.index)},null)}function av(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,13,"div",[],[[8,"className",0],[2,"tree-node",null],[2,"tree-node-expanded",null],[2,"tree-node-collapsed",null],[2,"tree-node-leaf",null],[2,"tree-node-active",null],[2,"tree-node-focused",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sv)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"tree-node-wrapper",[],null,null,null,$g,Gg)),i["\u0275did"](6,49152,null,0,Il,[],{node:[0,"node"],index:[1,"index"],templates:[2,"templates"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](8,0,null,null,1,"tree-node-children",[],null,null,null,ov,ev)),i["\u0275did"](9,49152,null,0,Dl,[],{node:[0,"node"],templates:[1,"templates"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,1,"tree-node-drop-slot",[],null,null,null,Bg,Ug)),i["\u0275did"](12,49152,null,0,El,[],{node:[0,"node"],dropIndex:[1,"dropIndex"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,0===n.index),e(t,6,0,n.node,n.index,n.templates),e(t,9,0,n.node,n.templates),e(t,12,0,n.node.parent,n.node.index+1)},function(e,t){var n=t.component;e(t,0,0,n.node.getClass(),!0,n.node.isExpanded&&n.node.hasChildren,n.node.isCollapsed&&n.node.hasChildren,n.node.isLeaf,n.node.isActive,n.node.isFocused)})}function uv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,av)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,16777216,null,null,3,null,null,null,null,null,null,null)),i["\u0275did"](6,540672,null,0,j,[i.ViewContainerRef],{ngTemplateOutletContext:[0,"ngTemplateOutletContext"],ngTemplateOutlet:[1,"ngTemplateOutlet"]},null),i["\u0275pod"](7,{$implicit:0,node:1,index:2,templates:3}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,!n.templates.treeNodeFullTemplate),e(t,6,0,e(t,7,0,n.node,n.node,n.index,n.templates),n.templates.treeNodeFullTemplate)},null)}function cv(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,uv)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0})],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var dv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function pv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"tree-node",[],null,null,null,cv,lv)),i["\u0275did"](1,49152,null,0,Cl,[],{node:[0,"node"],index:[1,"index"],templates:[2,"templates"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,1,0,t.context.$implicit,t.context.index,t.component.templates)},null)}function hv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,4,"div",[],[[4,"margin-top",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,pv)),i["\u0275did"](5,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"],ngForTrackBy:[1,"ngForTrackBy"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,5,0,n.viewportNodes,n.trackNode)},function(e,t){e(t,2,0,t.component.marginTop)})}function fv(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,hv)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var mv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function gv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,6,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,3,"div",[],[[4,"height",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),i["\u0275ncd"](null,0),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,t.component.getTotalHeight())})}function vv(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,2,null,gv)),i["\u0275did"](2,212992,null,0,Ro,[i.TemplateRef,i.ViewContainerRef,i.Renderer],{mobxAutorun:[0,"mobxAutorun"]},null),i["\u0275pod"](3,{dontDetach:0}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,e(t,3,0,!0))},null)}var yv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function _v(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"tree-node-collection",[],null,null,null,fv,dv)),i["\u0275did"](1,245760,null,0,Pl,[],{nodes:[0,"nodes"],treeModel:[1,"treeModel"],templates:[2,"templates"]},null),i["\u0275pod"](2,{loadingTemplate:0,treeNodeTemplate:1,treeNodeWrapperTemplate:2,treeNodeFullTemplate:3}),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,n.treeModel.roots,n.treeModel,e(t,2,0,n.loadingTemplate,n.treeNodeTemplate,n.treeNodeWrapperTemplate,n.treeNodeFullTemplate))},null)}function bv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"tree-node-drop-slot",[["class","empty-tree-drop-slot"]],null,null,null,Bg,Ug)),i["\u0275did"](1,49152,null,0,El,[],{node:[0,"node"],dropIndex:[1,"dropIndex"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,1,0,t.component.treeModel.virtualRoot,0)},null)}function wv(e){return i["\u0275vid"](0,[i["\u0275qud"](402653184,1,{viewportComponent:0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,12,"tree-viewport",[],null,[[null,"scroll"]],function(e,t,n){var r=!0;return"scroll"===t&&(r=!1!==i["\u0275nov"](e,4).onScroll(n)&&r),r},vv,mv)),i["\u0275prd"](512,null,_l,_l,[vl]),i["\u0275did"](4,4440064,[[1,4],["viewport",4]],0,Al,[i.ElementRef,_l],null,null),(e()(),i["\u0275ted"](-1,0,["\n "])),(e()(),i["\u0275eld"](6,0,null,0,7,"div",[["class","angular-tree-component"]],[[2,"node-dragging",null],[2,"angular-tree-component-rtl",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,_v)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,bv)),i["\u0275did"](12,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,0,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,4,0),e(t,9,0,n.treeModel.roots),e(t,12,0,n.treeModel.isEmptyTree())},function(e,t){var n=t.component;e(t,6,0,n.treeDraggedElement.isDragging(),n.treeModel.options.rtl)})}var xv=i["\u0275crt"]({encapsulation:0,styles:["span.node-name[_ngcontent-%COMP%] { font-size: 300%; }"],data:{}});function Mv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","key"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.label)})}function Tv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"li",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," - ",""]))],null,function(e,t){e(t,1,0,t.context.$implicit.notation,t.context.$implicit.label)})}function Lv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,10,"div",[["class","key-value-pair"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Mv)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,4,"ul",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Tv)),i["\u0275did"](8,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,3,0,n.field.label),e(t,8,0,n.field.value)},null)}function kv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"button",[["class","btn btn-default"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.toggleHelp()&&i),i},null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275eld"](2,0,null,null,0,"span",[["aria-hidden","true"],["class","glyphicon glyphicon-question-sign"]],null,null,null,null,null))],null,function(e,t){e(t,0,0,i["\u0275unv"](t,0,0,i["\u0275nov"](t,1).transform("help")))})}function Cv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[["class","help-block"]],[[8,"id",0],[8,"innerHTML",1]],null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"","helpBlock_"+n.field.name,""),n.field.help),e(t,1,0,n.field.help)})}function Sv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-tree-node-checkbox",[],null,null,null,Pg,Og)),i["\u0275did"](1,49152,null,0,Eg,[],{node:[0,"node"],ariaLabel:[1,"ariaLabel"]},null)],function(e,t){e(t,1,0,t.parent.context.$implicit,t.parent.context.$implicit.data.name)},null)}function Ev(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,15,"div",[["class","node-wrapper"]],[[4,"padding-left",null]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,1,"tree-node-expander",[],null,null,null,Ng,jg)),i["\u0275did"](4,49152,null,0,Ol,[],{node:[0,"node"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Sv)),i["\u0275did"](7,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,6,"div",[["class","node-content-wrapper"]],[[2,"node-content-wrapper-active",null],[2,"node-content-wrapper-focused",null]],[[null,"click"],[null,"dblclick"],[null,"contextmenu"],[null,"treeDrop"],[null,"drop"],[null,"dragstart"],[null,"dragend"]],function(e,t,n){var r=!0;return"drop"===t&&(r=!1!==i["\u0275nov"](e,10).onDrop(n)&&r),"dragstart"===t&&(r=!1!==i["\u0275nov"](e,11).onDragStart(n)&&r),"dragend"===t&&(r=!1!==i["\u0275nov"](e,11).onDragEnd()&&r),"click"===t&&(r=!1!==e.context.$implicit.mouseAction("click",n)&&r),"dblclick"===t&&(r=!1!==e.context.$implicit.mouseAction("dblClick",n)&&r),"contextmenu"===t&&(r=!1!==e.context.$implicit.mouseAction("contextMenu",n)&&r),"treeDrop"===t&&(r=!1!==e.context.$implicit.onDrop(n)&&r),r},null,null)),i["\u0275did"](10,4341760,null,0,Nl,[i.ElementRef,i.Renderer,yl,i.NgZone],{treeAllowDrop:[0,"treeAllowDrop"]},{onDropCallback:"treeDrop"}),i["\u0275did"](11,4603904,null,0,Fl,[i.ElementRef,i.Renderer,yl,i.NgZone],{draggedElement:[0,"draggedElement"],treeDragEnabled:[1,"treeDragEnabled"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n "])),(e()(),i["\u0275eld"](13,0,null,null,1,"tree-node-content",[],null,null,null,Hg,Fg)),i["\u0275did"](14,49152,null,0,Sl,[],{node:[0,"node"],index:[1,"index"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,4,0,t.context.$implicit),e(t,7,0,t.context.$implicit.options.useCheckbox),e(t,10,0,t.context.$implicit.allowDrop),e(t,11,0,t.context.$implicit,t.context.$implicit.allowDrag()),e(t,14,0,t.context.$implicit,t.context.index)},function(e,t){e(t,1,0,t.context.$implicit.getNodePadding()),e(t,9,0,t.context.$implicit.isActive,t.context.$implicit.isFocused)})}function Ov(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,"tree-root",[["class","reverse"],["id","andsTree"]],null,[[null,"nodeActivate"],[null,"nodeDeactivate"],[null,"event"],["body","keydown"],["body","mousedown"]],function(e,t,n){var r=!0,o=e.component;return"body:keydown"===t&&(r=!1!==i["\u0275nov"](e,2).onKeydown(n)&&r),"body:mousedown"===t&&(r=!1!==i["\u0275nov"](e,2).onMousedown(n)&&r),"nodeActivate"===t&&(r=!1!==o.onNodeActivate(n)&&r),"nodeDeactivate"===t&&(r=!1!==o.onNodeDeactivate(n)&&r),"event"===t&&(r=!1!==o.onEvent(n)&&r),r},wv,yv)),i["\u0275prd"](131584,null,vl,vl,[]),i["\u0275did"](2,573440,[[1,4],["andsTree",4]],4,kl,[vl,yl,i.Renderer],{nodes:[0,"nodes"],options:[1,"options"]},{nodeActivate:"nodeActivate",nodeDeactivate:"nodeDeactivate",event:"event"}),i["\u0275qud"](335544320,2,{loadingTemplate:0}),i["\u0275qud"](335544320,3,{treeNodeTemplate:0}),i["\u0275qud"](335544320,4,{treeNodeWrapperTemplate:0}),i["\u0275qud"](335544320,5,{treeNodeFullTemplate:0}),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[[4,2],["treeNodeWrapperTemplate",2]],null,0,null,Ev)),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,2,0,n.treeData,n.options)},null)}function Dv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","text-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.validationMessages.required)})}function Pv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,20,"div",[],[[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(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,2).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,2).onReset()&&r),r},null,null)),i["\u0275did"](1,278528,null,0,x,[i.IterableDiffers,i.KeyValueDiffers,i.ElementRef,i.Renderer2],{ngClass:[0,"ngClass"]},null),i["\u0275did"](2,540672,null,0,Ri,[[8,null],[8,null]],{form:[0,"form"]},null),i["\u0275prd"](2048,null,En,null,[Ri]),i["\u0275did"](4,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,4,"span",[["class","label-font"]],null,null,null,null,null)),(e()(),i["\u0275ted"](7,null,["\n "," ","\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,kv)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Cv)),i["\u0275did"](13,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ov)),i["\u0275did"](16,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Dv)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,1,0,n.getGroupClass()),e(t,2,0,n.form),e(t,9,0,n.field.help),e(t,13,0,n.helpShow),e(t,16,0,n.field.editMode),e(t,19,0,n.hasRequiredError())},function(e,t){var n=t.component;e(t,0,0,i["\u0275nov"](t,4).ngClassUntouched,i["\u0275nov"](t,4).ngClassTouched,i["\u0275nov"](t,4).ngClassPristine,i["\u0275nov"](t,4).ngClassDirty,i["\u0275nov"](t,4).ngClassValid,i["\u0275nov"](t,4).ngClassInvalid,i["\u0275nov"](t,4).ngClassPending),e(t,7,0,n.field.label,n.getRequiredLabelStr())})}function Iv(e){return i["\u0275vid"](0,[i["\u0275qud"](671088640,1,{andsTree:0}),(e()(),i["\u0275and"](16777216,null,null,1,null,Lv)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,Pv)),i["\u0275did"](5,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,2,0,!n.field.editMode),e(t,5,0,n.field.editMode)},null)}var jv=i["\u0275ccf"]("ands-vocab-selector",Ql,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"ands-vocab-selector",[],null,null,null,Iv,xv)),i["\u0275did"](1,4308992,null,0,Ql,[i.ElementRef],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Rv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Av(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,25,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n\n\n"])),(e()(),i["\u0275eld"](3,0,null,null,21,"div",[["class","btn-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,3,"a",[["class","btn btn-danger"],["target","_blank"],["type","button"]],[[1,"href",4]],null,null,null,null)),(e()(),i["\u0275eld"](6,0,null,null,1,"i",[["class","fa fa-file-pdf-o"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,[" Download a PDF of this plan"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,6,"button",[["class","btn btn-danger dropdown-toggle"],["data-toggle","dropdown"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,0,"span",[["class","caret"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,1,"span",[["class","sr-only"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Toggle Dropdown"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](18,0,null,null,5,"ul",[["class","dropdown-menu"],["role","menu"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,2,"li",[],null,null,null,null,null)),(e()(),i["\u0275eld"](21,0,null,null,1,"a",[["data-target","#pdfHistoryModal"],["data-toggle","modal"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Download a previous version"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"]))],null,function(e,t){var n=t.component;e(t,5,0,n.getDownloadUrl(n.field.latestPdf)+"&fileName=rdmp.pdf")})}function Yv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,3,"td",[],null,null,null,null,null)),(e()(),i["\u0275eld"](6,0,null,null,2,"a",[["target","_blank"]],[[1,"href",4]],null,null,null,null)),(e()(),i["\u0275eld"](7,0,null,null,0,"i",[["class","fa fa-file-pdf-o"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,[" Download"])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,3,0,t.context.$implicit.dateUpdated),e(t,6,0,n.getDownloadUrl(t.context.$implicit))})}function Nv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,44,"span",[["class","print-hidden"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,Av)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n\n"])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275eld"](6,0,null,null,37,"div",[["aria-hidden","true"],["class","modal fade"],["id","pdfHistoryModal"],["role","dialog"],["tabindex","-1"]],[[1,"aria-label",0]],null,null,null,null)),i["\u0275pid"](0,Ya.TranslatePipe,[Na.TranslateI18Next]),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,33,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,30,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,21,"div",[["class","modal-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,18,"table",[["class","table"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,9,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](19,0,null,null,6,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Date created"])),(e()(),i["\u0275eld"](23,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Download"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Yv)),i["\u0275did"](31,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](36,0,null,null,4,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](38,0,null,null,1,"button",[["class","btn btn-default"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Close"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,3,0,n.field.pdfAttachments.length>0),e(t,31,0,n.field.pdfAttachments)},function(e,t){e(t,6,0,i["\u0275unv"](t,6,0,i["\u0275nov"](t,7).transform("pdf-history-modal-label")))})}var Fv=i["\u0275ccf"]("rb-pdf-list",es,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"rb-pdf-list",[],null,null,null,Nv,Rv)),i["\u0275did"](1,114688,null,0,es,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Vv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Hv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""])),i["\u0275ppd"](2,3)],null,function(e,t){var n=t.component;e(t,1,0,i["\u0275unv"](t,1,0,e(t,2,0,i["\u0275nov"](t.parent.parent.parent,0),t.parent.context.$implicit.completionRate,"1.0-0",n.locale)))})}function Uv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,25,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Hv)),i["\u0275did"](9,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](12,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](15,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](18,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](21,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,1,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](24,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,9,0,"percentage"==t.component.field.completionRateType)},function(e,t){var n=t.component;e(t,3,0,t.context.$implicit.name),e(t,6,0,n.field.getStatusLabel(t.context.$implicit.status)),e(t,12,0,t.context.$implicit.message),e(t,15,0,n.formatDateForDisplay(t.context.$implicit.date_started)),e(t,18,0,t.context.$implicit.started_by),e(t,21,0,n.formatDateForDisplay(t.context.$implicit.updatedAt)),e(t,24,0,n.formatDateForDisplay(t.context.$implicit.date_completed))})}function Bv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,46,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"h4",[],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,[" "," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,37,"table",[["class","table table-striped"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,28,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,25,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](15,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](18,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](20,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](21,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](24,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](27,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](29,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](30,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](32,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](33,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](35,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](36,null,[""," "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](40,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Uv)),i["\u0275did"](43,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){e(t,43,0,t.component.field.progressArr)},function(e,t){var n=t.component;e(t,6,0,n.field.label),e(t,15,0,n.field.nameLabel),e(t,18,0,n.field.statusLabel),e(t,21,0,n.field.completionLabel),e(t,24,0,n.field.messageLabel),e(t,27,0,n.field.dateStartedLabel),e(t,30,0,n.field.startedByLabel),e(t,33,0,n.field.lastUpdateLabel),e(t,36,0,n.field.dateCompletedLabel)})}function zv(e){return i["\u0275vid"](0,[i["\u0275pid"](0,F,[i.LOCALE_ID]),(e()(),i["\u0275and"](16777216,null,null,1,null,Bv)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){e(t,2,0,t.component.isListening)},null)}var Wv=i["\u0275ccf"]("asynch-component",ns,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"asynch-component",[],null,null,null,zv,Vv)),i["\u0275did"](1,114688,null,0,ns,[i.ChangeDetectorRef],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),qv=i["\u0275crt"]({encapsulation:0,styles:[[""]],data:{}});function Gv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,2,"ws-field",[["class","form-row"]],null,null,null,Cg,kg)),i["\u0275did"](1,573440,null,0,So,[i.ComponentFactoryResolver,i.ApplicationRef],{field:[0,"field"],form:[1,"form"],fieldMap:[2,"fieldMap"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,1,0,t.context.$implicit,n.form,n.fieldMap)},null)}function Zv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,9,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"div",[["class","col-xs-2"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,4,"div",[["class","col-xs-8"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Gv)),i["\u0275did"](7,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){e(t,7,0,t.component.fields)},null)}function Jv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,23,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"div",[["class","col-xs-2"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,16,"div",[["class","col-xs-8"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,13,"div",[["class","panel panel-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,4,"div",[["class","panel-heading"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,1,"h3",[["class","panel-title"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Error"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,4,"div",[["class","panel-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,1,"code",[],null,null,null,null,null)),(e()(),i["\u0275ted"](17,null,["\n ","\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,0,"div",[["class","col-xs-2"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n"]))],null,function(e,t){e(t,17,0,t.component.criticalError)})}function $v(e){return i["\u0275vid"](0,[(e()(),i["\u0275and"](16777216,null,null,1,null,Zv)),i["\u0275did"](1,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"])),(e()(),i["\u0275and"](16777216,null,null,1,null,Jv)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n"]))],function(e,t){var n=t.component;e(t,1,0,!n.criticalError),e(t,4,0,n.criticalError)},null)}var Kv=i["\u0275ccf"]("labarchives-form",ka,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"labarchives-form",[],null,null,null,$v,qv)),i["\u0275prd"](512,null,s,d,[l,[2,a]]),i["\u0275prd"](512,null,u,u,[s]),i["\u0275did"](3,49152,null,0,ka,[i.ElementRef,Vs,ra,u,qi],null,null)],null,null)},{oid:"oid",editMode:"editMode",recordType:"recordType"},{},[]),Qv=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Xv(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,3,0,t.context.$implicit.label)})}function ey(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"a",[["rel","noopener noreferrer"],["target","_blank"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,i["\u0275inlineInterpolate"](1,"",t.parent.parent.parent.context.$implicit[t.parent.parent.context.$implicit.property],"")),e(t,3,0,t.parent.parent.parent.context.$implicit[t.parent.parent.context.$implicit.property])})}function ty(e){return i["\u0275vid"](0,[(e()(),i["\u0275and"](0,null,null,0))],null,null)}function ny(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.parent.parent.parent.context.$implicit[t.parent.parent.context.$implicit.property])})}function iy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,8,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ey)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"],ngIfElse:[1,"ngIfElse"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["multivalue",2]],null,0,null,ty)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["noProcessing",2]],null,0,null,ny)),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.parent.context.$implicit.link,i["\u0275nov"](t,7))},null)}function ry(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,null,null,null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,iy)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,0!=t.context.$implicit.show)},null)}function oy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,6,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,3,"button",[["class","btn btn-info btn-block"],["disabled",""],["type","button"]],[[8,"name",0]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"span",[],null,null,null,null,null)),(e()(),i["\u0275eld"](5,0,null,null,0,"i",[["class","fa fa-spinner fa-spin"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,t.parent.context.$implicit["@id"])})}function ly(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"button",[["class","btn btn-success btn-block"],["disabled",""],["type","button"]],[[8,"name",0]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,t.parent.context.$implicit["@id"]),e(t,3,0,n.field.linkedLabel)})}function sy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"button",[["class","btn btn-info btn-block"],["disabled",""],["type","button"]],[[8,"name",0]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,t.parent.context.$implicit["@id"]),e(t,3,0,n.field.linkedAnotherLabel)})}function ay(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"button",[["class","btn btn-info btn-block"],["type","button"]],[[8,"name",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.linkWorkspace(e.parent.context.$implicit)&&i),i},null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,t.parent.context.$implicit["@id"]),e(t,3,0,n.field.linkLabel)})}function uy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,4,"span",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"button",[["class","btn btn-warning btn-block"],["disabled",""],["type","button"]],[[8,"name",0]],null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){var n=t.component;e(t,2,0,t.parent.context.$implicit["@id"]),e(t,3,0,n.field.linkProblem)})}function cy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ry)),i["\u0275did"](3,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,16,"td",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,oy)),i["\u0275did"](8,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ly)),i["\u0275did"](11,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,sy)),i["\u0275did"](14,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ay)),i["\u0275did"](17,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,uy)),i["\u0275did"](20,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,3,0,t.component.field.columns),e(t,8,0,!t.context.$implicit.linkedState),e(t,11,0,"linked"===t.context.$implicit.linkedState),e(t,14,0,"another"===t.context.$implicit.linkedState),e(t,17,0,"link"===t.context.$implicit.linkedState),e(t,20,0,"problem"===t.context.$implicit.linkedState)},null)}function dy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,3,"div",[["class",""]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,0,"img",[["class","center-block"],["src","/images/loading.svg"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}function py(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["There were "," records that failed to\n load"]))],null,function(e,t){e(t,1,0,t.component.field.failedObjects.length)})}function hy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["There were "," records\n that\n you do not have access to"]))],null,function(e,t){e(t,1,0,t.component.field.accessDeniedObjects.length)})}function fy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,46,"div",[["class","col-lg-12"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,34,"div",[["class",""]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,19,"table",[["class","table"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,10,"thead",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,7,"tr",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Xv)),i["\u0275did"](11,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,1,"th",[],null,null,null,null,null)),(e()(),i["\u0275ted"](14,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](18,0,null,null,4,"tbody",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,cy)),i["\u0275did"](21,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,dy)),i["\u0275did"](26,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,7,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,py)),i["\u0275did"](31,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,hy)),i["\u0275did"](34,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](38,0,null,null,4,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](40,0,null,null,1,"button",[["class","btn btn-primary"],["type","button"]],null,[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.createWorkspace()&&i),i},null,null)),(e()(),i["\u0275ted"](41,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](44,0,null,null,1,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,11,0,n.field.columns),e(t,21,0,n.field.workspaces),e(t,26,0,n.field.loading),e(t,31,0,n.field.failedObjects.length>0),e(t,34,0,n.field.accessDeniedObjects.length>0)},function(e,t){var n=t.component;e(t,14,0,n.field.rdmpLinkLabel),e(t,41,0,n.field.createNotebookLabel)})}function my(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,fy)),i["\u0275did"](4,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,4,0,t.component.field.workspaces)},null)}var gy=i["\u0275ccf"]("ws-labarchiveslist",ga,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"ws-labarchiveslist",[],null,null,null,my,Qv)),i["\u0275did"](1,1163264,null,0,ga,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),vy=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function yy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"div",[["class","alert alert-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.errorMessage)})}function _y(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,60,"div",[["class","col-md-6"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,57,"form",[["novalidate",""]],[[2,"ng-untouched",null],[2,"ng-touched",null],[2,"ng-pristine",null],[2,"ng-dirty",null],[2,"ng-valid",null],[2,"ng-invalid",null],[2,"ng-pending",null]],[[null,"submit"],[null,"reset"]],function(e,t,n){var r=!0;return"submit"===t&&(r=!1!==i["\u0275nov"](e,4).onSubmit(n)&&r),"reset"===t&&(r=!1!==i["\u0275nov"](e,4).onReset()&&r),r},null,null)),i["\u0275did"](3,16384,null,0,Hi,[],null,null),i["\u0275did"](4,4210688,[["form",4]],0,Li,[[8,null],[8,null]],null,null),i["\u0275prd"](2048,null,En,null,[Li]),i["\u0275did"](6,16384,null,0,gi,[En],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,11,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,1,"label",[],null,null,null,null,null)),(e()(),i["\u0275ted"](11,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,5,"input",[["class","form-control"],["name","userEmail"],["ngModel",""],["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,14)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,14).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,14)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,14)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.userEmail=n)&&r),r},null,null)),i["\u0275did"](14,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](16,671744,null,0,Pi,[[2,En],[8,null],[8,null],[2,An]],{name:[0,"name"],model:[1,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](18,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,11,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,1,"label",[],null,null,null,null,null)),(e()(),i["\u0275ted"](24,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,5,"input",[["class","form-control"],["name","password"],["ngModel",""],["type","password"]],[[1,"aria-label",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,"input"],[null,"blur"],[null,"compositionstart"],[null,"compositionend"]],function(e,t,n){var r=!0;return"input"===t&&(r=!1!==i["\u0275nov"](e,27)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,27).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,27)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,27)._compositionEnd(n.target.value)&&r),r},null,null)),i["\u0275did"](27,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](29,671744,null,0,Pi,[[2,En],[8,null],[8,null],[2,An]],{name:[0,"name"],model:[1,"model"]},null),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](31,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](34,0,null,null,12,"div",[["class","form-row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](36,0,null,null,9,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](38,0,null,null,1,"button",[["class","btn btn-primary"],["type","submit"]],[[8,"disabled",0]],[[null,"click"]],function(e,t,n){var r=!0;return"click"===t&&(r=!1!==e.component.field.login(i["\u0275nov"](e,4).value)&&r),r},null,null)),(e()(),i["\u0275ted"](39,null,["\n ","\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](48,0,null,null,4,"div",[["class","form-row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,yy)),i["\u0275did"](51,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](54,0,null,null,4,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](56,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,16,0,"userEmail",n.field.userEmail),e(t,29,0,"password",""),e(t,51,0,n.field.errorMessage)},function(e,t){var n=t.component;e(t,2,0,i["\u0275nov"](t,6).ngClassUntouched,i["\u0275nov"](t,6).ngClassTouched,i["\u0275nov"](t,6).ngClassPristine,i["\u0275nov"](t,6).ngClassDirty,i["\u0275nov"](t,6).ngClassValid,i["\u0275nov"](t,6).ngClassInvalid,i["\u0275nov"](t,6).ngClassPending),e(t,11,0,n.field.usernameLabel),e(t,13,0,i["\u0275inlineInterpolate"](1,"",n.field.usernameLabel,""),i["\u0275nov"](t,18).ngClassUntouched,i["\u0275nov"](t,18).ngClassTouched,i["\u0275nov"](t,18).ngClassPristine,i["\u0275nov"](t,18).ngClassDirty,i["\u0275nov"](t,18).ngClassValid,i["\u0275nov"](t,18).ngClassInvalid,i["\u0275nov"](t,18).ngClassPending),e(t,24,0,n.field.passwordLabel),e(t,26,0,i["\u0275inlineInterpolate"](1,"",n.field.passwordLabel,""),i["\u0275nov"](t,31).ngClassUntouched,i["\u0275nov"](t,31).ngClassTouched,i["\u0275nov"](t,31).ngClassPristine,i["\u0275nov"](t,31).ngClassDirty,i["\u0275nov"](t,31).ngClassValid,i["\u0275nov"](t,31).ngClassInvalid,i["\u0275nov"](t,31).ngClassPending),e(t,38,0,!n.field.valid),e(t,39,0,n.field.loginLabel)})}function by(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"li",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.context.$implicit)})}function wy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,22,"div",[["class","col-md-6"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,19,"div",[["class","form-row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](5,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,2,"p",[],null,null,null,null,null)),(e()(),i["\u0275eld"](8,0,null,null,1,"a",[["rel","noopener noreferrer"],["target","_blank"]],[[8,"href",4]],null,null,null,null)),(e()(),i["\u0275ted"](9,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](11,0,null,null,4,"ul",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,by)),i["\u0275did"](14,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](17,0,null,null,3,"div",[["class","form-row col-md-6"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](19,0,null,null,0,"img",[["style","padding: 4px; border: dotted 1px #ccc;"]],[[8,"alt",0],[8,"src",4]],null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,14,0,t.component.field.helpLoginLabelList)},function(e,t){var n=t.component;e(t,5,0,n.field.helpLoginLabel),e(t,8,0,i["\u0275inlineInterpolate"](1,"",n.field.location,"")),e(t,9,0,n.field.location),e(t,19,0,i["\u0275inlineInterpolate"](1,"",n.field.loginHelpImageAlt,""),n.field.loginHelpImage)})}function xy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,7,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,_y)),i["\u0275did"](3,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,wy)),i["\u0275did"](6,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,3,0,!n.field.loggedIn),e(t,6,0,!n.field.loggedIn)},null)}function My(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,xy)),i["\u0275did"](2,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](4,0,null,null,4,"div",[["class","row"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](6,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\xa0"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,25,"div",[["class","modal fade"],["id","institutionModal"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](12,0,null,null,22,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](14,0,null,null,19,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](16,0,null,null,4,"div",[["class","modal-header"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](18,0,null,null,1,"h4",[["class","modal-title"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Login via UTS"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,4,"div",[["class","modal-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](24,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Login not available please use Key method"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](28,0,null,null,4,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](30,0,null,null,1,"button",[["class","btn btn-secondary"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](31,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){e(t,2,0,!t.component.field.loading)},function(e,t){e(t,31,0,t.component.field.closeLabel)})}var Ty=i["\u0275ccf"]("ws-labarchiveslogin",fa,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"ws-labarchiveslogin",[],null,null,null,My,vy)),i["\u0275did"](1,114688,null,0,fa,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Ly=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function ky(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,[""," :\n ",""]))],null,function(e,t){e(t,1,0,t.context.$implicit.label,t.component.field.currentWorkspace[t.context.$implicit.name])})}function Cy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"h5",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.processingLabel)})}function Sy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["","\xa0"]))],null,function(e,t){e(t,1,0,t.component.field.processingMessage)})}function Ey(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[["class","alert alert-success"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.component.field.processingSuccess)})}function Oy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"p",[["class","alert alert-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["\n ",""]))],null,function(e,t){e(t,1,0,t.component.field.processingFail)})}function Dy(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,0,"i",[["class","fa fa-check-circle"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}function Py(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,0,"i",[["class","fa fa-spinner fa-spin"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,null)}function Iy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[],null,null,null,null,null))],null,null)}function jy(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"button",[["class","btn btn-secondary"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](2,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,t.component.field.closeLabel)})}function Ry(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"button",[["class","btn btn-secondary disabled"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](2,null,["","\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,t.component.field.closeLabel)})}function Ay(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,48,"div",[["class","modal fade"],["data-keyboard","false"],["id","linkModal"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,45,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,42,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,4,"div",[["class","modal-header"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,1,"h4",[["class","modal-title"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Link Workspace"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,23,"div",[["class","modal-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](15,0,null,null,1,"h5",[],null,null,null,null,null)),(e()(),i["\u0275ted"](16,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,ky)),i["\u0275did"](19,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Cy)),i["\u0275did"](22,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Sy)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Ey)),i["\u0275did"](28,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Oy)),i["\u0275did"](31,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["isDone",2]],null,0,null,Dy)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["isSpinning",2]],null,0,null,Py)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](38,0,null,null,8,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Iy)),i["\u0275did"](41,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"],ngIfThen:[1,"ngIfThen"],ngIfElse:[2,"ngIfElse"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["finishProcessing",2]],null,0,null,jy)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["waitForProcessing",2]],null,0,null,Ry)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,19,0,n.field.workspaceDefinition),e(t,22,0,n.field.processing),e(t,25,0,n.field.processing),e(t,28,0,n.field.checks.linkCreated),e(t,31,0,"done"===n.field.processingStatus&&n.field.processingFail),e(t,41,0,n.field.processing,i["\u0275nov"](t,45),i["\u0275nov"](t,43))},function(e,t){e(t,16,0,t.component.field.workspaceDetailsTitle)})}var Yy=i["\u0275ccf"]("ws-labarchiveslink",wa,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"ws-labarchiveslink",[],null,null,null,Ay,Ly)),i["\u0275did"](1,114688,null,0,wa,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Ny=i["\u0275crt"]({encapsulation:2,styles:[],data:{}});function Fy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"button",[["class","form-control btn btn-block btn-primary"],["type","button"]],[[1,"aria-label",0]],[[null,"click"]],function(e,t,n){var i=!0;return"click"===t&&(i=!1!==e.component.field.createNotebook()&&i),i},null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){var n=t.component;e(t,0,0,i["\u0275inlineInterpolate"](1,"",n.field.createNotebookLabel,"")),e(t,1,0,n.field.createNotebookLabel)})}function Vy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"li",[["class","list-group-item"]],null,null,null,null,null)),(e()(),i["\u0275ted"](1,null,["",""]))],null,function(e,t){e(t,1,0,t.context.$implicit)})}function Hy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,57,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](2,0,null,null,1,"h5",[],null,null,null,null,null)),(e()(),i["\u0275ted"](3,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,1,"p",[],null,null,null,null,null)),(e()(),i["\u0275ted"](6,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](8,0,null,null,11,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](10,0,null,null,1,"label",[],null,null,null,null,null)),(e()(),i["\u0275ted"](11,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,5,"input",[["class","form-control"],["name","notebookName"],["ngModel",""],["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,14)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,14).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,14)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,14)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.notebookName=n)&&r),r},null,null)),i["\u0275did"](14,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](16,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{name:[0,"name"],model:[1,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](18,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](21,0,null,null,11,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](23,0,null,null,1,"label",[],null,null,null,null,null)),(e()(),i["\u0275ted"](24,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](26,0,null,null,5,"input",[["class","form-control"],["disabled","true"],["name","supervisorLabel"],["ngModel",""],["type","text"]],[[1,"aria-label",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"]],function(e,t,n){var r=!0,o=e.component;return"input"===t&&(r=!1!==i["\u0275nov"](e,27)._handleInput(n.target.value)&&r),"blur"===t&&(r=!1!==i["\u0275nov"](e,27).onTouched()&&r),"compositionstart"===t&&(r=!1!==i["\u0275nov"](e,27)._compositionStart()&&r),"compositionend"===t&&(r=!1!==i["\u0275nov"](e,27)._compositionEnd(n.target.value)&&r),"ngModelChange"===t&&(r=!1!==(o.field.supervisorEmail=n)&&r),r},null,null)),i["\u0275did"](27,16384,null,0,Fn,[i.Renderer2,i.ElementRef,[2,Nn]],null,null),i["\u0275prd"](1024,null,An,function(e){return[e]},[Fn]),i["\u0275did"](29,671744,null,0,Pi,[[8,null],[8,null],[8,null],[2,An]],{name:[0,"name"],isDisabled:[1,"isDisabled"],model:[2,"model"]},{update:"ngModelChange"}),i["\u0275prd"](2048,null,zn,null,[Pi]),i["\u0275did"](31,16384,null,0,mi,[zn],null,null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](34,0,null,null,4,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Fy)),i["\u0275did"](37,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](40,0,null,null,4,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](42,0,null,null,1,"div",[],null,null,null,null,null)),(e()(),i["\u0275ted"](43,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](46,0,null,null,10,"div",[["class","form-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](48,0,null,null,7,"div",[["class","alert-danger"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](50,0,null,null,4,"ul",[["class","list-group"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Vy)),i["\u0275did"](53,802816,null,0,T,[i.ViewContainerRef,i.TemplateRef,i.IterableDiffers],{ngForOf:[0,"ngForOf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,16,0,"notebookName",n.field.notebookName),e(t,29,0,"supervisorLabel","true",n.field.supervisorEmail),e(t,37,0,i["\u0275nov"](t.parent,29)),e(t,53,0,n.field.errorMessages)},function(e,t){var n=t.component;e(t,3,0,n.field.createNotebookHelp),e(t,6,0,n.field.createNotebookHelp2),e(t,11,0,n.field.notebookLabel),e(t,13,0,i["\u0275inlineInterpolate"](1,"",n.field.notebookName,""),i["\u0275nov"](t,18).ngClassUntouched,i["\u0275nov"](t,18).ngClassTouched,i["\u0275nov"](t,18).ngClassPristine,i["\u0275nov"](t,18).ngClassDirty,i["\u0275nov"](t,18).ngClassValid,i["\u0275nov"](t,18).ngClassInvalid,i["\u0275nov"](t,18).ngClassPending),e(t,24,0,n.field.supervisorLabel),e(t,26,0,i["\u0275inlineInterpolate"](1,"",n.field.supervisorEmail,""),i["\u0275nov"](t,31).ngClassUntouched,i["\u0275nov"](t,31).ngClassTouched,i["\u0275nov"](t,31).ngClassPristine,i["\u0275nov"](t,31).ngClassDirty,i["\u0275nov"](t,31).ngClassValid,i["\u0275nov"](t,31).ngClassInvalid,i["\u0275nov"](t,31).ngClassPending),e(t,43,0,n.field.processingStatus)})}function Uy(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"div",[],null,null,null,null,null))],null,null)}function By(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,0,"span",[],null,null,null,null,null))],null,null)}function zy(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"button",[["class","btn btn-secondary"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](2,null,["",""])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,t.component.field.closeLabel)})}function Wy(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,1,"button",[["class","btn btn-secondary disabled"],["data-dismiss","modal"],["type","button"]],null,null,null,null,null)),(e()(),i["\u0275ted"](2,null,["","\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],null,function(e,t){e(t,2,0,t.component.field.closeLabel)})}function qy(e){return i["\u0275vid"](0,[(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](1,0,null,null,32,"div",[["class","modal fade"],["data-keyboard","false"],["id","createModal"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](3,0,null,null,29,"div",[["class","modal-dialog"],["role","document"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](5,0,null,null,26,"div",[["class","modal-content"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](7,0,null,null,4,"div",[["class","modal-header"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](9,0,null,null,1,"h4",[["class","modal-title"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["Create Workspace"])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](13,0,null,null,7,"div",[["class","modal-body"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Hy)),i["\u0275did"](16,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,Uy)),i["\u0275did"](19,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275eld"](22,0,null,null,8,"div",[["class","modal-footer"]],null,null,null,null,null)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](16777216,null,null,1,null,By)),i["\u0275did"](25,16384,null,0,C,[i.ViewContainerRef,i.TemplateRef],{ngIf:[0,"ngIf"],ngIfThen:[1,"ngIfThen"],ngIfElse:[2,"ngIfElse"]},null),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["finishProcessing",2]],null,0,null,zy)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275and"](0,[["waitForProcessing",2]],null,0,null,Wy)),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "])),(e()(),i["\u0275ted"](-1,null,["\n "]))],function(e,t){var n=t.component;e(t,16,0,n.field.processingStart),e(t,19,0,n.field.processingFinished),e(t,25,0,n.field.processing,i["\u0275nov"](t,29),i["\u0275nov"](t,27))},null)}var Gy=i["\u0275ccf"]("ws-labarchivescreate",La,function(e){return i["\u0275vid"](0,[(e()(),i["\u0275eld"](0,0,null,null,1,"ws-labarchivescreate",[],null,null,null,qy,Ny)),i["\u0275did"](1,114688,null,0,La,[],null,null)],function(e,t){e(t,1,0)},null)},{field:"field",form:"form",fieldMap:"fieldMap",index:"index",name:"name",isEmbedded:"isEmbedded"},{},[]),Zy=n("Mk9J"),Jy=function(){},$y=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.configService=n,i}return Object(o.__extends)(t,e),t.prototype.getInfo=function(){var e=this;return this.http.get(this.baseUrl+"/user/info").toPromise().then(function(t){return e.extractData(t,"user")})},t.prototype.loginLocal=function(e,t){return console.log("Loggin in locally using brand: "+this.config.branding+", portal: "+this.config.portal),this.http.post(this.baseUrl+"/user/login_local",{username:e,password:t,branding:this.config.branding,portal:this.config.portal},this.getOptionsClient()).toPromise().then(this.extractData)},t.prototype.getUsers=function(){var e=this;return this.http.get(this.brandingAndPortalUrl+"/admin/users/get",this.options).toPromise().then(function(t){return e.extractData(t)})},t.prototype.updateUserDetails=function(e,t){var n=this;return this.http.post(this.brandingAndPortalUrl+"/admin/users/update",{userid:e,details:t},this.options).toPromise().then(function(e){return n.extractData(e)})},t.prototype.addLocalUser=function(e,t){var n=this;return this.http.post(this.brandingAndPortalUrl+"/admin/users/newUser",{username:e,details:t},this.options).toPromise().then(function(e){return n.extractData(e)})},t.prototype.genKey=function(e){var t=this;return this.http.post(this.brandingAndPortalUrl+"/admin/users/genKey",{userid:e},this.options).toPromise().then(function(e){return t.extractData(e)})},t.prototype.revokeKey=function(e){var t=this;return this.http.post(this.brandingAndPortalUrl+"/admin/users/revokeKey",{userid:e},this.options).toPromise().then(function(e){return t.extractData(e)})},t.prototype.updateUserProfile=function(e){var t=this;return this.http.post(this.brandingAndPortalUrl+"/user/update",{details:e},this.options).toPromise().then(function(e){return t.extractData(e)})},t.prototype.genUserKey=function(){var e=this;return this.http.post(this.brandingAndPortalUrl+"/user/genKey",{},this.options).toPromise().then(function(t){return e.extractData(t)})},t.prototype.revokeUserKey=function(){var e=this;return this.http.post(this.brandingAndPortalUrl+"/user/revokeKey",{},this.options).toPromise().then(function(t){return e.extractData(t)})},t}(pn),Ky=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.configService=n,i}return Object(o.__extends)(t,e),t.prototype.getBrandRoles=function(){var e=this;return this.http.get(this.brandingAndPortalUrl+"/admin/roles/get",this.options).toPromise().then(function(t){return e.extractData(t)})},t.prototype.updateUserRoles=function(e,t){var n=this;return this.http.post(this.brandingAndPortalUrl+"/admin/roles/user",{userid:e,roles:t},this.options).toPromise().then(function(e){return n.extractData(e)})},t}(pn),Qy=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.configService=n,i}return Object(o.__extends)(t,e),t.prototype.sendNotification=function(e,t,n,i,r){void 0===n&&(n={}),void 0===i&&(i=null),void 0===r&&(r=null);var o={to:e,template:t,data:n};return i&&(o.subject=i),r&&(o.from=r),this.http.post(this.brandingAndPortalUrl+"/api/sendNotification",o,this.getOptionsClient()).toPromise().then(this.extractData)},t}(pn),Xy=function(){},e_=n("ci15"),t_=function(){function e(){}return e.forRoot=function(){return{ngModule:e,providers:[]}},e}(),n_=function(){function e(){}return e.forRoot=function(){return{ngModule:e,providers:[Jy]}},e}(),i_=function(){},r_=i["\u0275cmf"](r,[ka],function(e){return i["\u0275mod"]([i["\u0275mpd"](512,i.ComponentFactoryResolver,i["\u0275CodegenComponentFactoryResolver"],[[8,[Pa,Aa,Qa,ac,Yc,Uc,od,Fu,Cu,Bd,_d,ud,pd,Ep,Ph,bh,Jh,qc,Pd,Qh,cf,Ed,Cc,hu,Cf,Hf,em,gm,qd,_m,Dm,Xm,pg,Lg,Td,Jd,Sg,mg,jv,Fv,Wv,tp,Ig,Kv,gy,Ty,Yy,Gy]],[3,i.ComponentFactoryResolver],i.NgModuleRef]),i["\u0275mpd"](5120,i.LOCALE_ID,i["\u0275q"],[[3,i.LOCALE_ID]]),i["\u0275mpd"](4608,b,w,[i.LOCALE_ID,[2,_]]),i["\u0275mpd"](4608,i.Compiler,i.Compiler,[]),i["\u0275mpd"](5120,i.APP_ID,i["\u0275i"],[]),i["\u0275mpd"](5120,i.IterableDiffers,i["\u0275n"],[]),i["\u0275mpd"](5120,i.KeyValueDiffers,i["\u0275o"],[]),i["\u0275mpd"](4608,ct,dt,[H]),i["\u0275mpd"](6144,i.Sanitizer,null,[ct]),i["\u0275mpd"](4608,Ye,Ne,[]),i["\u0275mpd"](5120,ce,function(e,t,n,i,r){return[new Re(e,t),new Ue(n),new Fe(i,r)]},[H,i.NgZone,H,H,Ye]),i["\u0275mpd"](4608,de,de,[ce,i.NgZone]),i["\u0275mpd"](135680,fe,fe,[H]),i["\u0275mpd"](4608,we,we,[de,fe]),i["\u0275mpd"](6144,i.RendererFactory2,null,[we]),i["\u0275mpd"](6144,he,null,[fe]),i["\u0275mpd"](4608,i.Testability,i.Testability,[i.NgZone]),i["\u0275mpd"](4608,ne,ne,[H]),i["\u0275mpd"](4608,le,le,[H]),i["\u0275mpd"](4608,Vi,Vi,[]),i["\u0275mpd"](4608,Wn,Wn,[]),i["\u0275mpd"](4608,xt,xt,[]),i["\u0275mpd"](4608,St,Et,[]),i["\u0275mpd"](5120,Ot,Xt,[]),i["\u0275mpd"](4608,Ht,Ht,[xt,St,Ot]),i["\u0275mpd"](4608,Ut,Bt,[]),i["\u0275mpd"](5120,Qt,en,[Ht,Ut]),i["\u0275mpd"](5120,gs,xs,[]),i["\u0275mpd"](5120,vs,Ms,[Qt]),i["\u0275mpd"](4608,ys,ys,[gs,vs]),i["\u0275mpd"](4608,Zy.TranslateI18NextLanguagesSupport,Zy.TranslateI18NextLanguagesSupport,[i.LOCALE_ID]),i["\u0275mpd"](4608,Na.TranslateI18Next,Na.TranslateI18Next,[Zy.TranslateI18NextLanguagesSupport]),i["\u0275mpd"](4608,Sa,Sa,[Qt]),i["\u0275mpd"](4608,yl,yl,[]),i["\u0275mpd"](4608,Jy,Jy,[]),i["\u0275mpd"](4608,Wi,Wi,[Qt]),i["\u0275mpd"](4608,qi,qi,[Na.TranslateI18Next,Wi]),i["\u0275mpd"](4608,Ns,Ns,[]),i["\u0275mpd"](4608,Kr,Kr,[Qt,Wi]),i["\u0275mpd"](4608,Fs,Fs,[Qt,Kr,ys,Wi,qi,Ns,i.ApplicationRef]),i["\u0275mpd"](4608,ra,ra,[ys,Wi,qi,Ns,Fs,i.ApplicationRef]),i["\u0275mpd"](4608,Vs,Vs,[Qt,Fs,Wi,i.ApplicationRef]),i["\u0275mpd"](4608,$y,$y,[Qt,Wi]),i["\u0275mpd"](4608,mo,mo,[Qt,Wi,qi]),i["\u0275mpd"](4608,Ky,Ky,[Qt,Wi]),i["\u0275mpd"](4608,Qy,Qy,[Qt,Wi]),i["\u0275mpd"](4608,Co,Co,[Qt,Wi]),i["\u0275mpd"](4608,Po,Po,[Qt,Wi,qi]),i["\u0275mpd"](4608,ca,ca,[Qt,Wi]),i["\u0275mpd"](512,V,V,[]),i["\u0275mpd"](1024,i.ErrorHandler,bt,[]),i["\u0275mpd"](1024,i.APP_INITIALIZER,function(e){return[(t=e,se("probe",ue),se("coreTokens",Object(o.__assign)({},ae,(t||[]).reduce(function(e,t){return e[t.name]=t.token,e},{}))),function(){return ue})];var t},[[2,i.NgProbeToken]]),i["\u0275mpd"](512,i.ApplicationInitStatus,i.ApplicationInitStatus,[[2,i.APP_INITIALIZER]]),i["\u0275mpd"](131584,i.ApplicationRef,i.ApplicationRef,[i.NgZone,i["\u0275Console"],i.Injector,i.ErrorHandler,i.ComponentFactoryResolver,i.ApplicationInitStatus]),i["\u0275mpd"](512,i.ApplicationModule,i.ApplicationModule,[i.ApplicationRef]),i["\u0275mpd"](512,wt,wt,[[3,wt]]),i["\u0275mpd"](512,Ui,Ui,[]),i["\u0275mpd"](512,zi,zi,[]),i["\u0275mpd"](512,Bi,Bi,[]),i["\u0275mpd"](512,Xy,Xy,[]),i["\u0275mpd"](512,tn,tn,[]),i["\u0275mpd"](512,Ys,Ys,[]),i["\u0275mpd"](512,e_.TranslateI18NextModule,e_.TranslateI18NextModule,[]),i["\u0275mpd"](512,sm,sm,[]),i["\u0275mpd"](512,t_,t_,[]),i["\u0275mpd"](512,n_,n_,[]),i["\u0275mpd"](512,Ao,Ao,[]),i["\u0275mpd"](512,Hl,Hl,[]),i["\u0275mpd"](512,i_,i_,[]),i["\u0275mpd"](512,r,r,[])])});Object(i.enableProdMode)(),_t().bootstrapModuleFactory(r_).catch(function(e){return console.log(e)})},x4CE:function(e,t,n){var i=Object.assign||function(e){for(var t=1;t4096&&(n=4096,i=Math.round(n/t)),i>4096&&(i=4096,n=Math.round(t*i)),e.width>n){var r=document.createElement("canvas");r.width=n,r.height=i,r.getContext("2d").drawImage(e,0,0,n,i),e.src="about:blank",e.width=1,e.height=1,e=r}return e},t.prototype.resizeImage=function(e,t,n){e=this.protect(e);var i=Math.ceil(Math.log2(e.width/t));i<1&&(i=1);for(var r=t*Math.pow(2,i-1),o=n*Math.pow(2,i-1);i--;){var l=document.createElement("canvas");l.width=r,l.height=o,l.getContext("2d").drawImage(e,0,0,r,o),e=l,r=Math.round(r/2),o=Math.round(o/2)}return e},t.prototype.canvasToBlob=function(e,t,n){return e.toBlob?new r(function(i){e.toBlob(i,t,n)}):r.resolve().then(function(){return l.dataURItoBlob(e.toDataURL(t,n),{})})},t.prototype.getProportionalHeight=function(e,t){return Math.round(t/(e.width/e.height))},t.prototype.setPreviewURL=function(e,t){var n,r=this.uppy.state.files;this.uppy.setState({files:i({},r,(n={},n[e]=i({},r[e],{preview:t}),n))})},t.prototype.addToQueue=function(e){this.queue.push(e),!1===this.queueProcessing&&this.processQueue()},t.prototype.processQueue=function(){var e=this;if(this.queueProcessing=!0,this.queue.length>0){var t=this.queue.shift();return this.requestThumbnail(t).catch(function(e){}).then(function(){return e.processQueue()})}this.queueProcessing=!1},t.prototype.requestThumbnail=function(e){var t=this;return l.isPreviewSupported(e.type)&&!e.isRemote?this.createThumbnail(e,this.opts.thumbnailWidth).then(function(n){t.setPreviewURL(e.id,n)}).catch(function(e){console.warn(e.stack||e.message)}):r.resolve()},t.prototype.install=function(){this.uppy.on("file-added",this.addToQueue)},t.prototype.uninstall=function(){this.uppy.off("file-added",this.addToQueue)},t}(o)},x4eB:function(e,t,n){"use strict";var i=function(){function e(e,t){for(var n=0;ne._offsetBeforeRetry&&(e._retryAttempt=0);var n=!0;if("undefined"!=typeof window&&"navigator"in window&&!1===window.navigator.onLine&&(n=!1),e._retryAttemptthis._size)&&(i=this._size),t.send(this._source.slice(n,i)),this._emitProgress(this._offset,this._size)}}}]),e}();function m(e,t){return e>=t&&e0?this.startWindowEvery:this.windowSize,n=this.destination,i=this.windowSize,r=this.windows,l=r.length,s=0;s=0&&a%t==0&&!this.closed&&r.shift().complete(),++this.count%t==0&&!this.closed){var u=new o.Subject;r.push(u),n.next(u)}},t.prototype._error=function(e){var t=this.windows;if(t)for(;t.length>0&&!this.closed;)t.shift().error(e);this.destination.error(e)},t.prototype._complete=function(){var e=this.windows;if(e)for(;e.length>0&&!this.closed;)e.shift().complete();this.destination.complete()},t.prototype._unsubscribe=function(){this.count=0,this.windows=null},t}(r.Subscriber)},xOQQ:function(e,t,n){"use strict";var i=n("rCTf"),r=n("U9ky");i.Observable.prototype.pluck=r.pluck},xYP1:function(e,t,n){"use strict";var i=n("A3ES");t.sequenceEqual=function(e,t){return i.sequenceEqual(e,t)(this)}},xazO:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("jBEF");t.repeat=function(e){return void 0===e&&(e=-1),function(t){return 0===e?new o.EmptyObservable:t.lift(new l(e<0?-1:e-1,t))}};var l=function(){function e(e,t){this.count=e,this.source=t}return e.prototype.call=function(e,t){return t.subscribe(new s(e,this.count,this.source))},e}(),s=function(e){function t(t,n,i){e.call(this,t),this.count=n,this.source=i}return i(t,e),t.prototype.complete=function(){if(!this.isStopped){var t=this.source,n=this.count;if(0===n)return e.prototype.complete.call(this);n>-1&&(this.count=n-1),t.subscribe(this._unsubscribeAndRecycle())}},t}(r.Subscriber)},"xne+":function(e,t,n){!function(e){"use strict";var t="vas\xe1rnap h\xe9tf\u0151n kedden szerd\xe1n cs\xfct\xf6rt\xf6k\xf6n p\xe9nteken szombaton".split(" ");function n(e,t,n,i){var r=e;switch(n){case"s":return i||t?"n\xe9h\xe1ny m\xe1sodperc":"n\xe9h\xe1ny m\xe1sodperce";case"ss":return r+(i||t)?" m\xe1sodperc":" m\xe1sodperce";case"m":return"egy"+(i||t?" perc":" perce");case"mm":return r+(i||t?" perc":" perce");case"h":return"egy"+(i||t?" \xf3ra":" \xf3r\xe1ja");case"hh":return r+(i||t?" \xf3ra":" \xf3r\xe1ja");case"d":return"egy"+(i||t?" nap":" napja");case"dd":return r+(i||t?" nap":" napja");case"M":return"egy"+(i||t?" h\xf3nap":" h\xf3napja");case"MM":return r+(i||t?" h\xf3nap":" h\xf3napja");case"y":return"egy"+(i||t?" \xe9v":" \xe9ve");case"yy":return r+(i||t?" \xe9v":" \xe9ve")}return""}function i(e){return(e?"":"[m\xfalt] ")+"["+t[this.day()]+"] LT[-kor]"}e.defineLocale("hu",{months:"janu\xe1r_febru\xe1r_m\xe1rcius_\xe1prilis_m\xe1jus_j\xfanius_j\xfalius_augusztus_szeptember_okt\xf3ber_november_december".split("_"),monthsShort:"jan_feb_m\xe1rc_\xe1pr_m\xe1j_j\xfan_j\xfal_aug_szept_okt_nov_dec".split("_"),weekdays:"vas\xe1rnap_h\xe9tf\u0151_kedd_szerda_cs\xfct\xf6rt\xf6k_p\xe9ntek_szombat".split("_"),weekdaysShort:"vas_h\xe9t_kedd_sze_cs\xfct_p\xe9n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return i.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return i.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s m\xfalva",past:"%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n("PJh5"))},xond:function(e,t,n){var i=n("FCuZ"),r=n("09Qt"),o=n("t8rQ");e.exports=function(e){return i(e,o,r)}},"xx+E":function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("B00U"),o=n("+3eL"),l=n("WhVc"),s=n("wAkD"),a=n("CURp");t.bufferWhen=function(e){return function(t){return t.lift(new u(e))}};var u=function(){function e(e){this.closingSelector=e}return e.prototype.call=function(e,t){return t.subscribe(new c(e,this.closingSelector))},e}(),c=function(e){function t(t,n){e.call(this,t),this.closingSelector=n,this.subscribing=!1,this.openBuffer()}return i(t,e),t.prototype._next=function(e){this.buffer.push(e)},t.prototype._complete=function(){var t=this.buffer;t&&this.destination.next(t),e.prototype._complete.call(this)},t.prototype._unsubscribe=function(){this.buffer=null,this.subscribing=!1},t.prototype.notifyNext=function(e,t,n,i,r){this.openBuffer()},t.prototype.notifyComplete=function(){this.subscribing?this.complete():this.openBuffer()},t.prototype.openBuffer=function(){var e=this.closingSubscription;e&&(this.remove(e),e.unsubscribe()),this.buffer&&this.destination.next(this.buffer),this.buffer=[];var t=o.tryCatch(this.closingSelector)();t===l.errorObject?this.error(l.errorObject.e):(e=new r.Subscription,this.closingSubscription=e,this.add(e),this.subscribing=!0,e.add(a.subscribeToResult(this,t)),this.subscribing=!1)},t}(s.OuterSubscriber)},y3IE:function(e,t,n){"use strict";var i=n("rCTf"),r=n("vrkH");i.Observable.prototype.retry=r.retry},y4xv:function(e,t,n){"use strict";var i=n("9omE");t.pluck=function(){for(var e=[],t=0;t0}function u(e,t){var n=e.interceptors||(e.interceptors=[]);return n.push(t),Xe(function(){var e=n.indexOf(t);-1!==e&&n.splice(e,1)})}function c(e,t){var n=Gt();try{var i=e.interceptors;if(i)for(var r=0,o=i.length;r0}function p(e,t){var n=e.changeListeners||(e.changeListeners=[]);return n.push(t),Xe(function(){var e=n.indexOf(t);-1!==e&&n.splice(e,1)})}function h(e,t){var n=Gt(),i=e.changeListeners;if(i){for(var r=0,o=(i=i.slice()).length;r=this.length,value:tt){for(var n=new Array(e-t),i=0;i0&&e+t+1>k&&I(e+t+1)},e.prototype.spliceWithArray=function(e,t,n){var i=this;Bt(this.atom);var r=this.values.length;if(void 0===e?e=0:e>r?e=r:e<0&&(e=Math.max(0,r+e)),t=1===arguments.length?r-e:void 0===t||null===t?0:Math.max(0,Math.min(t,r-e)),void 0===n&&(n=[]),a(this)){var o=c(this,{object:this.array,type:"splice",index:e,removedCount:t,added:n});if(!o)return qe;t=o.removedCount,n=o.added}n=n.map(function(e){return i.enhancer(e,void 0)}),this.updateArrayLength(r,n.length-t);var l=this.spliceItemsIntoValues(e,t,n);return 0===t&&0===n.length||this.notifyArraySplice(e,n,l),this.dehanceValues(l)},e.prototype.spliceItemsIntoValues=function(e,t,n){if(n.length<1e4)return(i=this.values).splice.apply(i,[e,t].concat(n));var i,r=this.values.slice(e,e+t);return this.values=this.values.slice(0,e).concat(n,this.values.slice(e+t)),r},e.prototype.notifyArrayChildUpdate=function(e,t,n){var i=!this.owned&&f(),r=d(this),o=r||i?{object:this.array,type:"update",index:e,newValue:t,oldValue:n}:null;i&&g(o),this.atom.reportChanged(),r&&h(this,o),i&&y()},e.prototype.notifyArraySplice=function(e,t,n){var i=!this.owned&&f(),r=d(this),o=r||i?{object:this.array,type:"splice",index:e,removed:n,added:t,removedCount:n.length,addedCount:t.length}:null;i&&g(o),this.atom.reportChanged(),r&&h(this,o),i&&y()},e}(),E=function(e){function t(t,n,i,r){void 0===i&&(i="ObservableArray@"+Ze()),void 0===r&&(r=!1);var o=e.call(this)||this,l=new S(i,n,o,r);return ut(o,"$mobx",l),t&&t.length&&o.spliceWithArray(0,0,t),L&&Object.defineProperty(l.array,"0",O),o}return r(t,e),t.prototype.intercept=function(e){return this.$mobx.intercept(e)},t.prototype.observe=function(e,t){return void 0===t&&(t=!1),this.$mobx.observe(e,t)},t.prototype.clear=function(){return this.splice(0)},t.prototype.concat=function(){for(var e=[],t=0;t-1&&(this.splice(t,1),!0)},t.prototype.move=function(e,t){function n(e){if(e<0)throw new Error("[mobx.array] Index out of bounds: "+e+" is negative");var t=this.$mobx.values.length;if(e>=t)throw new Error("[mobx.array] Index out of bounds: "+e+" is not smaller than "+t)}if(n.call(this,e),n.call(this,t),e!==t){var i,r=this.$mobx.values;i=e0,"actions should have valid names, got: '"+e+"'");var n=function(){return U(e,t,this,arguments)};return n.originalFn=t,n.isMobxAction=!0,n}function U(e,t,n,i){var r=function(e,t,n,i){var r=f()&&!!e,o=0;if(r){o=Date.now();var l=i&&i.length||0,s=new Array(l);if(l>0)for(var a=0;a",n))},function(e){return this[e]},function(){$e(!1,V("m001"))},!1,!0),$=W(function(e,t,n){ee(e,t,n)},function(e){return this[e]},function(){$e(!1,V("m001"))},!1,!1),K=function(e,t,n,i){return 1===arguments.length&&"function"==typeof e?H(e.name||"",e):2===arguments.length&&"function"==typeof t?H(e,t):1===arguments.length&&"string"==typeof e?Q(e):Q(t).apply(null,arguments)};function Q(e){return function(t,n,i){if(i&&"function"==typeof i.value)return i.value=H(e,i.value),i.enumerable=!1,i.configurable=!0,i;if(void 0!==i&&void 0!==i.get)throw new Error("[mobx] action is not expected to be used with getters");return J(e).apply(this,arguments)}}function X(e){return"function"==typeof e&&!0===e.isMobxAction}function ee(e,t,n){var i=function(){return U(t,n,e,arguments)};i.isMobxAction=!0,at(e,t,i)}K.bound=function(e,t,n){if("function"==typeof e){var i=H("",e);return i.autoBind=!0,i}return $.apply(null,arguments)};var te=Object.prototype.toString;function ne(e,t){return function e(t,n,i,r){if(t===n)return 0!==t||1/t==1/n;if(null==t||null==n)return!1;if(t!=t)return n!=n;var o=typeof t;return("function"===o||"object"===o||"object"==typeof n)&&function(t,n,i,r){t=ie(t),n=ie(n);var o=te.call(t);if(o!==te.call(n))return!1;switch(o){case"[object RegExp]":case"[object String]":return""+t==""+n;case"[object Number]":return+t!=+t?+n!=+n:0==+t?1/+t==1/n:+t==+n;case"[object Date]":case"[object Boolean]":return+t==+n;case"[object Symbol]":return"undefined"!=typeof Symbol&&Symbol.valueOf.call(t)===Symbol.valueOf.call(n)}var l="[object Array]"===o;if(!l){if("object"!=typeof t||"object"!=typeof n)return!1;var s=t.constructor,a=n.constructor;if(s!==a&&!("function"==typeof s&&s instanceof s&&"function"==typeof a&&a instanceof a)&&"constructor"in t&&"constructor"in n)return!1}i=i||[],r=r||[];for(var u=i.length;u--;)if(i[u]===t)return r[u]===n;if(i.push(t),r.push(n),l){if((u=t.length)!==n.length)return!1;for(;u--;)if(!e(t[u],n[u],i,r))return!1}else{var c,d=Object.keys(t);if(u=d.length,Object.keys(n).length!==u)return!1;for(;u--;)if(!re(n,c=d[u])||!e(t[c],n[c],i,r))return!1}return i.pop(),r.pop(),!0}(t,n,i,r)}(e,t)}function ie(e){return R(e)?e.peek():We(e)?e.entries():ht(e)?function(e){for(var t=[];;){var n=e.next();if(n.done)break;t.push(n.value)}return t}(e.entries()):e}function re(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function oe(e,t){return e===t}var le={identity:oe,structural:function(e,t){return ne(e,t)},default:function(e,t){return function(e,t){return"number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t)}(e,t)||oe(e,t)}};function se(e,t,n){var i,r,o;"string"==typeof e?(i=e,r=t,o=n):(i=e.name||"Autorun@"+Ze(),r=e,o=t),$e("function"==typeof r,V("m004")),$e(!1===X(r),V("m005")),o&&(r=r.bind(o));var l=new Qt(i,function(){this.track(s)});function s(){r(l)}return l.schedule(),l.getDisposer()}function ae(e,t,n){var i;arguments.length>3&&Je(V("m007")),Re(e)&&Je(V("m008")),(i="object"==typeof n?n:{}).name=i.name||e.name||t.name||"Reaction@"+Ze(),i.fireImmediately=!0===n||!0===i.fireImmediately,i.delay=i.delay||0,i.compareStructural=i.compareStructural||i.struct||!1,t=K(i.name,i.context?t.bind(i.context):t),i.context&&(e=e.bind(i.context));var r,o=!0,l=!1,s=i.equals?i.equals:i.compareStructural||i.struct?le.structural:le.default,a=new Qt(i.name,function(){o||i.delay<1?u():l||(l=!0,setTimeout(function(){l=!1,u()},i.delay))});function u(){if(!a.isDisposed){var n=!1;a.track(function(){var t=e(a);n=o||!s(r,t),r=t}),o&&i.fireImmediately&&t(r,a),o||!0!==n||t(r,a),o&&(o=!1)}}return a.schedule(),a.getDisposer()}var ue=function(){function e(e,t,n,i,r){this.derivation=e,this.scope=t,this.equals=n,this.dependenciesState=Yt.NOT_TRACKING,this.observing=[],this.newObserving=null,this.isPendingUnobservation=!1,this.observers=[],this.observersIndexes={},this.diffValue=0,this.runId=0,this.lastAccessedBy=0,this.lowestObserverState=Yt.UP_TO_DATE,this.unboundDepsCount=0,this.__mapid="#"+Ze(),this.value=new Ft(null),this.isComputing=!1,this.isRunningSetter=!1,this.isTracing=Nt.NONE,this.name=i||"ComputedValue@"+Ze(),r&&(this.setter=H(i+"-setter",r))}return e.prototype.onBecomeStale=function(){!function(e){if(e.lowestObserverState===Yt.UP_TO_DATE){e.lowestObserverState=Yt.POSSIBLY_STALE;for(var t=e.observers,n=t.length;n--;){var i=t[n];i.dependenciesState===Yt.UP_TO_DATE&&(i.dependenciesState=Yt.POSSIBLY_STALE,i.isTracing!==Nt.NONE&&At(i,e),i.onBecomeStale())}}}(this)},e.prototype.onBecomeUnobserved=function(){Wt(this),this.value=void 0},e.prototype.get=function(){$e(!this.isComputing,"Cycle detected in computation "+this.name,this.derivation),0===yt.inBatch?(It(),Ht(this)&&(this.isTracing!==Nt.NONE&&console.log("[mobx.trace] '"+this.name+"' is being read outside a reactive context and doing a full recompute"),this.value=this.computeValue(!1)),jt()):(Rt(this),Ht(this)&&this.trackAndCompute()&&function(e){if(e.lowestObserverState!==Yt.STALE){e.lowestObserverState=Yt.STALE;for(var t=e.observers,n=t.length;n--;){var i=t[n];i.dependenciesState===Yt.POSSIBLY_STALE?i.dependenciesState=Yt.STALE:i.dependenciesState===Yt.UP_TO_DATE&&(e.lowestObserverState=Yt.UP_TO_DATE)}}}(this));var e=this.value;if(Vt(e))throw e.cause;return e},e.prototype.peek=function(){var e=this.computeValue(!1);if(Vt(e))throw e.cause;return e},e.prototype.set=function(e){if(this.setter){$e(!this.isRunningSetter,"The setter of computed value '"+this.name+"' is trying to update itself. Did you intend to update an _observable_ value, instead of the computed property?"),this.isRunningSetter=!0;try{this.setter.call(this.scope,e)}finally{this.isRunningSetter=!1}}else $e(!1,"[ComputedValue '"+this.name+"'] It is not possible to assign a new value to a computed value.")},e.prototype.trackAndCompute=function(){f()&&m({object:this.scope,type:"compute",fn:this.derivation});var e=this.value,t=this.dependenciesState===Yt.NOT_TRACKING,n=this.value=this.computeValue(!0);return t||Vt(e)||Vt(n)||!this.equals(e,n)},e.prototype.computeValue=function(e){var t;if(this.isComputing=!0,yt.computationDepth++,e)t=zt(this,this.derivation,this.scope);else try{t=this.derivation.call(this.scope)}catch(e){t=new Ft(e)}return yt.computationDepth--,this.isComputing=!1,t},e.prototype.observe=function(e,t){var n=this,i=!0,r=void 0;return se(function(){var o=n.get();if(!i||t){var l=Gt();e({type:"update",object:n,newValue:o,oldValue:r}),Zt(l)}i=!1,r=o})},e.prototype.toJSON=function(){return this.get()},e.prototype.toString=function(){return this.name+"["+this.derivation.toString()+"]"},e.prototype.valueOf=function(){return mt(this.get())},e.prototype.whyRun=function(){var e=Boolean(yt.trackingDerivation),t=tt(this.isComputing?this.newObserving:this.observing).map(function(e){return e.name}),n=tt(Et(this).map(function(e){return e.name}));return"\nWhyRun? computation '"+this.name+"':\n * Running because: "+(e?"[active] the value of this computation is needed by a reaction":this.isComputing?"[get] The value of this computed was requested outside a reaction":"[idle] not running at the moment")+"\n"+(this.dependenciesState===Yt.NOT_TRACKING?V("m032"):" * This computation will re-run if any of the following observables changes:\n "+nt(t)+"\n "+(this.isComputing&&e?" (... or any observable accessed during the remainder of the current run)":"")+"\n "+V("m038")+"\n\n * If the outcome of this computation changes, the following observers will be re-run:\n "+nt(n)+"\n")},e}();ue.prototype[ft()]=ue.prototype.valueOf;var ce=pt("ComputedValue",ue),de=function(){function e(e,t){this.target=e,this.name=t,this.values={},this.changeListeners=null,this.interceptors=null}return e.prototype.observe=function(e,t){return $e(!0!==t,"`observe` doesn't support the fire immediately property for observable objects."),p(this,e)},e.prototype.intercept=function(e){return u(this,e)},e}();function pe(e,t){if(we(e)&&e.hasOwnProperty("$mobx"))return e.$mobx;$e(Object.isExtensible(e),V("m035")),rt(e)||(t=(e.constructor.name||"ObservableObject")+"@"+Ze()),t||(t="ObservableObject@"+Ze());var n=new de(e,t);return ut(e,"$mobx",n),n}function he(e,t,n,i){if(e.values[t]&&!ce(e.values[t]))return $e("value"in n,"The property "+t+" in "+e.name+" is already observable, cannot redefine it as computed property"),void(e.target[t]=n.value);if("value"in n)if(Re(n.value)){var r=n.value;fe(e,t,r.initialValue,r.enhancer)}else X(n.value)&&!0===n.value.autoBind?ee(e.target,t,n.value.originalFn):ce(n.value)?function(e,t,n){n.name=e.name+"."+t,n.scope||(n.scope=e.target),e.values[t]=n,Object.defineProperty(e.target,t,ye(t))}(e,t,n.value):fe(e,t,n.value,i);else me(e,t,n.get,n.set,le.default,!0)}function fe(e,t,n,i){if(dt(e.target,t),a(e)){var r=c(e,{object:e.target,name:t,type:"add",newValue:n});if(!r)return;n=r.newValue}n=(e.values[t]=new Y(n,i,e.name+"."+t,!1)).value,Object.defineProperty(e.target,t,function(e){return ge[e]||(ge[e]={configurable:!0,enumerable:!0,get:function(){return this.$mobx.values[e].get()},set:function(t){_e(this,e,t)}})}(t)),function(e,t,n,i){var r=d(e),o=f(),l=r||o?{type:"add",object:t,name:n,newValue:i}:null;o&&g(l),r&&h(e,l),o&&y()}(e,e.target,t,n)}function me(e,t,n,i,r,o){o&&dt(e.target,t),e.values[t]=new ue(n,e.target,r,e.name+"."+t,i),o&&Object.defineProperty(e.target,t,ye(t))}var ge={},ve={};function ye(e){return ve[e]||(ve[e]={configurable:!0,enumerable:!1,get:function(){return this.$mobx.values[e].get()},set:function(t){return this.$mobx.values[e].set(t)}})}function _e(e,t,n){var i=e.$mobx,r=i.values[t];if(a(i)){if(!(s=c(i,{type:"update",object:e,name:t,newValue:n})))return;n=s.newValue}if((n=r.prepareNewValue(n))!==A){var o=d(i),l=f(),s=o||l?{type:"update",object:e,oldValue:r.value,name:t,newValue:n}:null;l&&g(s),r.setNewValue(n),o&&h(i,s),l&&y()}}var be=pt("ObservableObjectAdministration",de);function we(e){return!!it(e)&&(G(e),be(e.$mobx))}function xe(e,t){if(null===e||void 0===e)return!1;if(void 0!==t){if(R(e)||We(e))throw new Error(V("m019"));if(we(e)){var n=e.$mobx;return n.values&&!!n.values[t]}return!1}return we(e)||!!e.$mobx||s(e)||on(e)||ce(e)}function Me(e){return $e(!!e,":("),W(function(t,n,i,r,o){dt(t,n),$e(!o||!o.get,V("m022")),fe(pe(t,void 0),n,i,e)},function(e){var t=this.$mobx.values[e];if(void 0!==t)return t.get()},function(e,t){_e(this,e,t)},!0,!1)}function Te(e){for(var t=[],n=1;n=2,V("m014")),$e("object"==typeof e,V("m015")),$e(!We(e),V("m016")),n.forEach(function(e){$e("object"==typeof e,V("m017")),$e(!xe(e),V("m018"))});for(var i=pe(e),r={},o=n.length-1;o>=0;o--){var l=n[o];for(var s in l)if(!0!==r[s]&&st(l,s)){if(r[s]=!0,e===l&&!ct(e,s))continue;he(i,s,Object.getOwnPropertyDescriptor(l,s),t)}}return e}var Ce=Me(Ye),Se=Me(Ne),Ee=Me(Fe),Oe=Me(Ve),De=Me(He),Pe={box:function(e,t){return arguments.length>2&&je("box"),new Y(e,Ye,t)},shallowBox:function(e,t){return arguments.length>2&&je("shallowBox"),new Y(e,Fe,t)},array:function(e,t){return arguments.length>2&&je("array"),new E(e,Ye,t)},shallowArray:function(e,t){return arguments.length>2&&je("shallowArray"),new E(e,Fe,t)},map:function(e,t){return arguments.length>2&&je("map"),new ze(e,Ye,t)},shallowMap:function(e,t){return arguments.length>2&&je("shallowMap"),new ze(e,Fe,t)},object:function(e,t){arguments.length>2&&je("object");var n={};return pe(n,t),Te(n,e),n},shallowObject:function(e,t){arguments.length>2&&je("shallowObject");var n={};return pe(n,t),Le(n,e),n},ref:function(){return arguments.length<2?Ae(Fe,arguments[0]):Ee.apply(null,arguments)},shallow:function(){return arguments.length<2?Ae(Ne,arguments[0]):Se.apply(null,arguments)},deep:function(){return arguments.length<2?Ae(Ye,arguments[0]):Ce.apply(null,arguments)},struct:function(){return arguments.length<2?Ae(Ve,arguments[0]):Oe.apply(null,arguments)}},Ie=function(e){if(void 0===e&&(e=void 0),"string"==typeof arguments[1])return Ce.apply(null,arguments);if($e(arguments.length<=1,V("m021")),$e(!Re(e),V("m020")),xe(e))return e;var t=Ye(e,0,void 0);return t!==e?t:Ie.box(e)};function je(e){Je("Expected one or two arguments to observable."+e+". Did you accidentally try to use observable."+e+" as decorator?")}function Re(e){return"object"==typeof e&&null!==e&&!0===e.isMobxModifierDescriptor}function Ae(e,t){return $e(!Re(t),"Modifiers cannot be nested"),{isMobxModifierDescriptor:!0,initialValue:t,enhancer:e}}function Ye(e,t,n){return Re(e)&&Je("You tried to assign a modifier wrapped value to a collection, please define modifiers when creating the collection, not when modifying it"),xe(e)?e:Array.isArray(e)?Ie.array(e,n):rt(e)?Ie.object(e,n):ht(e)?Ie.map(e,n):e}function Ne(e,t,n){return Re(e)&&Je("You tried to assign a modifier wrapped value to a collection, please define modifiers when creating the collection, not when modifying it"),void 0===e||null===e?e:we(e)||R(e)||We(e)?e:Array.isArray(e)?Ie.shallowArray(e,n):rt(e)?Ie.shallowObject(e,n):ht(e)?Ie.shallowMap(e,n):Je("The shallow modifier / decorator can only used in combination with arrays, objects and maps")}function Fe(e){return e}function Ve(e,t,n){if(ne(e,t))return t;if(xe(e))return e;if(Array.isArray(e))return new E(e,Ve,n);if(ht(e))return new ze(e,Ve,n);if(rt(e)){var i={};return pe(i,n),ke(i,Ve,[e]),i}return e}function He(e,t,n){return ne(e,t)?t:e}function Ue(e,t){void 0===t&&(t=void 0),It();try{return e.apply(t)}finally{jt()}}Object.keys(Pe).forEach(function(e){return Ie[e]=Pe[e]}),Ie.deep.struct=Ie.struct,Ie.ref.struct=function(){return arguments.length<2?Ae(He,arguments[0]):De.apply(null,arguments)};var Be={},ze=function(){function e(e,t,n){void 0===t&&(t=Ye),void 0===n&&(n="ObservableMap@"+Ze()),this.enhancer=t,this.name=n,this.$mobx=Be,this._data=Object.create(null),this._hasMap=Object.create(null),this._keys=new E(void 0,Fe,this.name+".keys()",!0),this.interceptors=null,this.changeListeners=null,this.dehancer=void 0,this.merge(e)}return e.prototype._has=function(e){return"undefined"!=typeof this._data[e]},e.prototype.has=function(e){return!!this.isValidKey(e)&&(this._hasMap[e=""+e]?this._hasMap[e].get():this._updateHasMapEntry(e,!1).get())},e.prototype.set=function(e,t){this.assertValidKey(e);var n=this._has(e=""+e);if(a(this)){var i=c(this,{type:n?"update":"add",object:this,newValue:t,name:e});if(!i)return this;t=i.newValue}return n?this._updateValue(e,t):this._addValue(e,t),this},e.prototype.delete=function(e){var t=this;if(this.assertValidKey(e),e=""+e,a(this)&&!(r=c(this,{type:"delete",object:this,name:e})))return!1;if(this._has(e)){var n=f(),i=d(this),r=i||n?{type:"delete",object:this,oldValue:this._data[e].value,name:e}:null;return n&&g(r),Ue(function(){t._keys.remove(e),t._updateHasMapEntry(e,!1),t._data[e].setNewValue(void 0),t._data[e]=void 0}),i&&h(this,r),n&&y(),!0}return!1},e.prototype._updateHasMapEntry=function(e,t){var n=this._hasMap[e];return n?n.setNewValue(t):n=this._hasMap[e]=new Y(t,Fe,this.name+"."+e+"?",!1),n},e.prototype._updateValue=function(e,t){var n=this._data[e];if((t=n.prepareNewValue(t))!==A){var i=f(),r=d(this),o=r||i?{type:"update",object:this,oldValue:n.value,name:e,newValue:t}:null;i&&g(o),n.setNewValue(t),r&&h(this,o),i&&y()}},e.prototype._addValue=function(e,t){var n=this;Ue(function(){var i=n._data[e]=new Y(t,n.enhancer,n.name+"."+e,!1);t=i.value,n._updateHasMapEntry(e,!0),n._keys.push(e)});var i=f(),r=d(this),o=r||i?{type:"add",object:this,name:e,newValue:t}:null;i&&g(o),r&&h(this,o),i&&y()},e.prototype.get=function(e){return this.has(e=""+e)?this.dehanceValue(this._data[e].get()):this.dehanceValue(void 0)},e.prototype.dehanceValue=function(e){return void 0!==this.dehancer?this.dehancer(e):e},e.prototype.keys=function(){return w(this._keys.slice())},e.prototype.values=function(){return w(this._keys.map(this.get,this))},e.prototype.entries=function(){var e=this;return w(this._keys.map(function(t){return[t,e.get(t)]}))},e.prototype.forEach=function(e,t){var n=this;this.keys().forEach(function(i){return e.call(t,n.get(i),i,n)})},e.prototype.merge=function(e){var t=this;return We(e)&&(e=e.toJS()),Ue(function(){rt(e)?Object.keys(e).forEach(function(n){return t.set(n,e[n])}):Array.isArray(e)?e.forEach(function(e){return t.set(e[0],e[1])}):ht(e)?e.forEach(function(e,n){return t.set(n,e)}):null!==e&&void 0!==e&&Je("Cannot initialize map from "+e)}),this},e.prototype.clear=function(){var e=this;Ue(function(){qt(function(){e.keys().forEach(e.delete,e)})})},e.prototype.replace=function(e){var t=this;return Ue(function(){var n,i=rt(n=e)?Object.keys(n):Array.isArray(n)?n.map(function(e){return e[0]}):ht(n)?Array.from(n.keys()):We(n)?n.keys():Je("Cannot get keys from "+n);t.keys().filter(function(e){return-1===i.indexOf(e)}).forEach(function(e){return t.delete(e)}),t.merge(e)}),this},Object.defineProperty(e.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),e.prototype.toJS=function(){var e=this,t={};return this.keys().forEach(function(n){return t[n]=e.get(n)}),t},e.prototype.toJSON=function(){return this.toJS()},e.prototype.isValidKey=function(e){return null!==e&&void 0!==e&&("string"==typeof e||"number"==typeof e||"boolean"==typeof e)},e.prototype.assertValidKey=function(e){if(!this.isValidKey(e))throw new Error("[mobx.map] Invalid key: '"+e+"', only strings, numbers and booleans are accepted as key in observable maps.")},e.prototype.toString=function(){var e=this;return this.name+"[{ "+this.keys().map(function(t){return t+": "+e.get(t)}).join(", ")+" }]"},e.prototype.observe=function(e,t){return $e(!0!==t,V("m033")),p(this,e)},e.prototype.intercept=function(e){return u(this,e)},e}();x(ze.prototype,function(){return this.entries()});var We=pt("ObservableMap",ze),qe=[];function Ge(){return"undefined"!=typeof window?window:e}function Ze(){return++yt.mobxGuid}function Je(e,t){throw $e(!1,e,t),"X"}function $e(e,t,n){if(!e)throw new Error("[mobx] Invariant failed: "+t+(n?" in '"+n+"'":""))}Object.freeze(qe);var Ke=[];function Qe(e){return-1===Ke.indexOf(e)&&(Ke.push(e),console.error("[mobx] Deprecated: "+e),!0)}function Xe(e){var t=!1;return function(){if(!t)return t=!0,e.apply(this,arguments)}}var et=function(){};function tt(e){var t=[];return e.forEach(function(e){-1===t.indexOf(e)&&t.push(e)}),t}function nt(e,t,n){return void 0===t&&(t=100),void 0===n&&(n=" - "),e?e.slice(0,t).join(n)+(e.length>t?" (... and "+(e.length-t)+"more)":""):""}function it(e){return null!==e&&"object"==typeof e}function rt(e){if(null===e||"object"!=typeof e)return!1;var t=Object.getPrototypeOf(e);return t===Object.prototype||null===t}function ot(){for(var e=arguments[0],t=1,n=arguments.length;t0&&(t.dependencies=tt(e.observing).map(Ct)),t}function St(e){var t,n={name:e.name};return(t=e).observers&&t.observers.length>0&&(n.observers=Et(e).map(St)),n}function Et(e){return e.observers}function Ot(e,t){var n=e.observers.length;n&&(e.observersIndexes[t.__mapid]=n),e.observers[n]=t,e.lowestObserverState>t.dependenciesState&&(e.lowestObserverState=t.dependenciesState)}function Dt(e,t){if(1===e.observers.length)e.observers.length=0,Pt(e);else{var n=e.observers,i=e.observersIndexes,r=n.pop();if(r!==t){var o=i[t.__mapid]||0;o?i[r.__mapid]=o:delete i[r.__mapid],n[o]=r}delete i[t.__mapid]}}function Pt(e){e.isPendingUnobservation||(e.isPendingUnobservation=!0,yt.pendingUnobservations.push(e))}function It(){yt.inBatch++}function jt(){if(0==--yt.inBatch){nn();for(var e=yt.pendingUnobservations,t=0;t=1e3?n.push("(and many more)"):(n.push(""+new Array(i).join("\t")+t.name),t.dependencies&&t.dependencies.forEach(function(t){return e(t,n,i+1)}))}(kt(e),n,1),new Function("debugger;\n/*\nTracing '"+e.name+"'\n\nYou are entering this break point because derivation '"+e.name+"' is being traced and '"+t.name+"' is now forcing it to update.\nJust follow the stacktrace you should now see in the devtools to see precisely what piece of your code is causing this update\nThe stackframe you are looking for is at least ~6-8 stack-frames up.\n\n"+(e instanceof ue?e.derivation.toString():"")+"\n\nThe dependencies for this derivation are:\n\n"+n.join("\n")+"\n*/\n ")()}}xt.__mobxInstanceCount?(xt.__mobxInstanceCount++,setTimeout(function(){_t||bt||wt||(wt=!0,console.warn("[mobx] Warning: there are multiple mobx instances active. This might lead to unexpected results. See https://github.com/mobxjs/mobx/issues/1082 for details."))},1)):xt.__mobxInstanceCount=1;var Yt=function(e){return e[e.NOT_TRACKING=-1]="NOT_TRACKING",e[e.UP_TO_DATE=0]="UP_TO_DATE",e[e.POSSIBLY_STALE=1]="POSSIBLY_STALE",e[e.STALE=2]="STALE",e}({}),Nt=function(e){return e[e.NONE=0]="NONE",e[e.LOG=1]="LOG",e[e.BREAK=2]="BREAK",e}({}),Ft=function(e){this.cause=e};function Vt(e){return e instanceof Ft}function Ht(e){switch(e.dependenciesState){case Yt.UP_TO_DATE:return!1;case Yt.NOT_TRACKING:case Yt.STALE:return!0;case Yt.POSSIBLY_STALE:for(var t=Gt(),n=e.observing,i=n.length,r=0;r0;yt.computationDepth>0&&t&&Je(V("m031")+e.name),!yt.allowStateChanges&&t&&Je(V(yt.strictMode?"m030a":"m030b")+e.name)}function zt(e,t,n){Jt(e),e.newObserving=new Array(e.observing.length+100),e.unboundDepsCount=0,e.runId=++yt.runId;var i,r=yt.trackingDerivation;yt.trackingDerivation=e;try{i=t.call(n)}catch(e){i=new Ft(e)}return yt.trackingDerivation=r,function(e){for(var t=e.observing,n=e.observing=e.newObserving,i=Yt.UP_TO_DATE,r=0,o=e.unboundDepsCount,l=0;li&&(i=s.dependenciesState);for(n.length=r,e.newObserving=null,o=t.length;o--;)0===(s=t[o]).diffValue&&Dt(s,e),s.diffValue=0;for(;r--;){var s;1===(s=n[r]).diffValue&&(s.diffValue=0,Ot(s,e))}i!==Yt.UP_TO_DATE&&(e.dependenciesState=i,e.onBecomeStale())}(e),i}function Wt(e){var t=e.observing;e.observing=[];for(var n=t.length;n--;)Dt(t[n],e);e.dependenciesState=Yt.NOT_TRACKING}function qt(e){var t=Gt(),n=e();return Zt(t),n}function Gt(){var e=yt.trackingDerivation;return yt.trackingDerivation=null,e}function Zt(e){yt.trackingDerivation=e}function Jt(e){if(e.dependenciesState!==Yt.UP_TO_DATE){e.dependenciesState=Yt.UP_TO_DATE;for(var t=e.observing,n=t.length;n--;)t[n].lowestObserverState=Yt.UP_TO_DATE}}function $t(e){return console.log(e),e}function Kt(e){switch(e.length){case 0:return yt.trackingDerivation;case 1:return Mt(e[0]);case 2:return Mt(e[0],e[1])}}var Qt=function(){function e(e,t){void 0===e&&(e="Reaction@"+Ze()),this.name=e,this.onInvalidate=t,this.observing=[],this.newObserving=[],this.dependenciesState=Yt.NOT_TRACKING,this.diffValue=0,this.runId=0,this.unboundDepsCount=0,this.__mapid="#"+Ze(),this.isDisposed=!1,this._isScheduled=!1,this._isTrackPending=!1,this._isRunning=!1,this.isTracing=Nt.NONE}return e.prototype.onBecomeStale=function(){this.schedule()},e.prototype.schedule=function(){this._isScheduled||(this._isScheduled=!0,yt.pendingReactions.push(this),nn())},e.prototype.isScheduled=function(){return this._isScheduled},e.prototype.runReaction=function(){this.isDisposed||(It(),this._isScheduled=!1,Ht(this)&&(this._isTrackPending=!0,this.onInvalidate(),this._isTrackPending&&f()&&m({object:this,type:"scheduled-reaction"})),jt())},e.prototype.track=function(e){It();var t,n=f();n&&(t=Date.now(),g({object:this,type:"reaction",fn:e})),this._isRunning=!0;var i=zt(this,e,void 0);this._isRunning=!1,this._isTrackPending=!1,this.isDisposed&&Wt(this),Vt(i)&&this.reportExceptionInDerivation(i.cause),n&&y({time:Date.now()-t}),jt()},e.prototype.reportExceptionInDerivation=function(e){var t=this;if(this.errorHandler)this.errorHandler(e,this);else{var n="[mobx] Encountered an uncaught exception that was thrown by a reaction or observer component, in: '"+this,i=V("m037");console.error(n||i,e),f()&&m({type:"error",message:n,error:e,object:this}),yt.globalReactionErrorHandlers.forEach(function(n){return n(e,t)})}},e.prototype.dispose=function(){this.isDisposed||(this.isDisposed=!0,this._isRunning||(It(),Wt(this),jt()))},e.prototype.getDisposer=function(){var e=this.dispose.bind(this);return e.$mobx=this,e.onError=Xt,e},e.prototype.toString=function(){return"Reaction["+this.name+"]"},e.prototype.whyRun=function(){var e=tt(this._isRunning?this.newObserving:this.observing).map(function(e){return e.name});return"\nWhyRun? reaction '"+this.name+"':\n * Status: ["+(this.isDisposed?"stopped":this._isRunning?"running":this.isScheduled()?"scheduled":"idle")+"]\n * This reaction will re-run if any of the following observables changes:\n "+nt(e)+"\n "+(this._isRunning?" (... or any observable accessed during the remainder of the current run)":"")+"\n\t"+V("m038")+"\n"},e.prototype.trace=function(e){void 0===e&&(e=!1),function(){for(var e=[],t=0;t0||yt.isRunningReactions||tn(rn)}function rn(){yt.isRunningReactions=!0;for(var e=yt.pendingReactions,t=0;e.length>0;){++t===en&&(console.error("Reaction doesn't converge to a stable state after "+en+" iterations. Probably there is a cycle in the reactive function: "+e[0]),e.splice(0));for(var n=e.splice(0),i=0,r=n.length;i=0&&yt.globalReactionErrorHandlers.splice(t,1)}},reserveArrayBuffer:I,resetGlobalState:function(){yt.resetId++;var e=new vt;for(var t in e)-1===gt.indexOf(t)&&(yt[t]=e[t]);yt.allowStateChanges=!yt.strictMode},isolateGlobalState:function(){bt=!0,Ge().__mobxInstanceCount--},shareGlobalState:function(){Qe("Using `shareGlobalState` is not recommended, use peer dependencies instead. See https://github.com/mobxjs/mobx/issues/1082 for details."),_t=!0;var e=Ge(),t=yt;if(e.__mobservableTrackingStack||e.__mobservableViewStack)throw new Error("[mobx] An incompatible version of mobservable is already loaded.");if(e.__mobxGlobal&&e.__mobxGlobal.version!==t.version)throw new Error("[mobx] An incompatible version of mobx is already loaded.");e.__mobxGlobal?yt=e.__mobxGlobal:e.__mobxGlobal=t},spyReport:m,spyReportEnd:y,spyReportStart:g,setReactionScheduler:function(e){var t=tn;tn=function(n){return e(function(){return t(n)})}}},dn={Reaction:Qt,untracked:qt,Atom:l,BaseAtom:o,useStrict:function(e){$e(null===yt.trackingDerivation,V("m028")),yt.strictMode=e,yt.allowStateChanges=!e},isStrictModeEnabled:function(){return yt.strictMode},spy:_,comparer:le,asReference:function(e){return Qe("asReference is deprecated, use observable.ref instead"),Ie.ref(e)},asFlat:function(e){return Qe("asFlat is deprecated, use observable.shallow instead"),Ie.shallow(e)},asStructure:function(e){return Qe("asStructure is deprecated. Use observable.struct, computed.struct or reaction options instead."),Ie.struct(e)},asMap:function(e){return Qe("asMap is deprecated, use observable.map or observable.shallowMap instead"),Ie.map(e||{})},isModifierDescriptor:Re,isObservableObject:we,isBoxedObservable:N,isObservableArray:R,ObservableMap:ze,isObservableMap:We,map:function(e){return Qe("`mobx.map` is deprecated, use `new ObservableMap` or `mobx.observable.map` instead"),Ie.map(e)},transaction:Ue,observable:Ie,computed:un,isObservable:xe,isComputed:function(e,t){if(null===e||void 0===e)return!1;if(void 0!==t){if(!1===we(e))return!1;if(!e.$mobx.values[t])return!1;var n=Mt(e,t);return ce(n)}return ce(e)},extendObservable:Te,extendShallowObservable:Le,observe:function(e,t,n,i){return"function"==typeof n?function(e,n,i,r){return Tt(e,t).observe(i,r)}(e,0,n,i):function(e,t,n){return Tt(e).observe(t,n)}(e,t,n)},intercept:function(e,t,n){return"function"==typeof n?function(e,n,i){return Tt(e,t).intercept(i)}(e,0,n):function(e,t){return Tt(e).intercept(t)}(e,t)},autorun:se,autorunAsync:function(e,t,n,i){var r,o,l,s;"string"==typeof e?(r=e,o=t,l=n,s=i):(r=e.name||"AutorunAsync@"+Ze(),o=e,l=t,s=n),$e(!1===X(o),V("m006")),void 0===l&&(l=1),s&&(o=o.bind(s));var a=!1,u=new Qt(r,function(){a||(a=!0,setTimeout(function(){a=!1,u.isDisposed||u.track(c)},l))});function c(){o(u)}return u.schedule(),u.getDisposer()},when:function(e,t,n,i){var r,o,l,s;return"string"==typeof e?(r=e,o=t,l=n,s=i):(r="When@"+Ze(),o=e,l=t,s=n),se(r,function(e){if(o.call(s)){e.dispose();var t=Gt();l.call(s),Zt(t)}})},reaction:ae,action:K,isAction:X,runInAction:function(e,t,n){var i="string"==typeof e?e:e.name||"",r="function"==typeof e?e:t,o="function"==typeof e?t:n;return $e("function"==typeof r,V("m002")),$e(0===r.length,V("m003")),$e("string"==typeof i&&i.length>0,"actions should have valid names, got: '"+i+"'"),U(i,r,o,void 0)},expr:function(e,t){return Ut()||console.warn(V("m013")),un(e,{context:t}).get()},toJS:function e(t,n,i){function r(e){return n&&i.push([t,e]),e}if(void 0===n&&(n=!0),void 0===i&&(i=[]),xe(t)){if(n&&null===i&&(i=[]),n&&null!==t&&"object"==typeof t)for(var o=0,l=i.length;o1))return null;var n=function(e,n){n=i({offset:0},n);for(var r=0;r=0){var l=o+3,s=function(e){return Array.from(e).every(function(e,t){return r[l+t]===e.charCodeAt(0)})};if(s("matroska"))return{ext:"mkv",mime:"video/x-matroska"};if(s("webm"))return{ext:"webm",mime:"video/webm"}}}return n([0,0,0,20,102,116,121,112,113,116,32,32])||n([102,114,101,101],{offset:4})||n([102,116,121,112,113,116,32,32],{offset:4})||n([109,100,97,116],{offset:4})||n([119,105,100,101],{offset:4})?{ext:"mov",mime:"video/quicktime"}:n([82,73,70,70])&&n([65,86,73],{offset:8})?{ext:"avi",mime:"video/x-msvideo"}:n([48,38,178,117,142,102,207,17,166,217])?{ext:"wmv",mime:"video/x-ms-wmv"}:n([0,0,1,186])?{ext:"mpg",mime:"video/mpeg"}:n([73,68,51])||n([255,251])?{ext:"mp3",mime:"audio/mpeg"}:n([102,116,121,112,77,52,65],{offset:4})||n([77,52,65,32])?{ext:"m4a",mime:"audio/m4a"}:n([79,112,117,115,72,101,97,100],{offset:28})?{ext:"opus",mime:"audio/opus"}:n([79,103,103,83])?{ext:"ogg",mime:"audio/ogg"}:n([102,76,97,67])?{ext:"flac",mime:"audio/x-flac"}:n([82,73,70,70])&&n([87,65,86,69],{offset:8})?{ext:"wav",mime:"audio/x-wav"}:n([35,33,65,77,82,10])?{ext:"amr",mime:"audio/amr"}:n([37,80,68,70])?{ext:"pdf",mime:"application/pdf"}:n([77,90])?{ext:"exe",mime:"application/x-msdownload"}:67!==t[0]&&70!==t[0]||!n([87,83],{offset:1})?n([123,92,114,116,102])?{ext:"rtf",mime:"application/rtf"}:n([0,97,115,109])?{ext:"wasm",mime:"application/wasm"}:n([119,79,70,70])&&(n([0,1,0,0],{offset:4})||n([79,84,84,79],{offset:4}))?{ext:"woff",mime:"font/woff"}:n([119,79,70,50])&&(n([0,1,0,0],{offset:4})||n([79,84,84,79],{offset:4}))?{ext:"woff2",mime:"font/woff2"}:n([76,80],{offset:34})&&(n([0,0,1],{offset:8})||n([1,0,2],{offset:8})||n([2,0,2],{offset:8}))?{ext:"eot",mime:"application/octet-stream"}:n([0,1,0,0,0])?{ext:"ttf",mime:"font/ttf"}:n([79,84,84,79,0])?{ext:"otf",mime:"font/otf"}:n([0,0,1,0])?{ext:"ico",mime:"image/x-icon"}:n([70,76,86,1])?{ext:"flv",mime:"video/x-flv"}:n([37,33])?{ext:"ps",mime:"application/postscript"}:n([253,55,122,88,90,0])?{ext:"xz",mime:"application/x-xz"}:n([83,81,76,105])?{ext:"sqlite",mime:"application/x-sqlite3"}:n([78,69,83,26])?{ext:"nes",mime:"application/x-nintendo-nes-rom"}:n([67,114,50,52])?{ext:"crx",mime:"application/x-google-chrome-extension"}:n([77,83,67,70])||n([73,83,99,40])?{ext:"cab",mime:"application/vnd.ms-cab-compressed"}:n([33,60,97,114,99,104,62,10,100,101,98,105,97,110,45,98,105,110,97,114,121])?{ext:"deb",mime:"application/x-deb"}:n([33,60,97,114,99,104,62])?{ext:"ar",mime:"application/x-unix-archive"}:n([237,171,238,219])?{ext:"rpm",mime:"application/x-rpm"}:n([31,160])||n([31,157])?{ext:"Z",mime:"application/x-compress"}:n([76,90,73,80])?{ext:"lz",mime:"application/x-lzip"}:n([208,207,17,224,161,177,26,225])?{ext:"msi",mime:"application/x-msi"}:n([6,14,43,52,2,5,1,1,13,1,2,1,1,2])?{ext:"mxf",mime:"application/mxf"}:n([71],{offset:4})&&(n([71],{offset:192})||n([71],{offset:196}))?{ext:"mts",mime:"video/mp2t"}:n([66,76,69,78,68,69,82])?{ext:"blend",mime:"application/x-blender"}:n([66,80,71,251])?{ext:"bpg",mime:"image/bpg"}:null:{ext:"swf",mime:"application/x-shockwave-flash"}}},yK6r:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("CGGv"),l=n("IsV2");t.throttleTime=function(e,t,n){return void 0===t&&(t=o.async),void 0===n&&(n=l.defaultThrottleConfig),function(i){return i.lift(new s(e,t,n.leading,n.trailing))}};var s=function(){function e(e,t,n,i){this.duration=e,this.scheduler=t,this.leading=n,this.trailing=i}return e.prototype.call=function(e,t){return t.subscribe(new a(e,this.duration,this.scheduler,this.leading,this.trailing))},e}(),a=function(e){function t(t,n,i,r,o){e.call(this,t),this.duration=n,this.scheduler=i,this.leading=r,this.trailing=o,this._hasTrailingValue=!1,this._trailingValue=null}return i(t,e),t.prototype._next=function(e){this.throttled?this.trailing&&(this._trailingValue=e,this._hasTrailingValue=!0):(this.add(this.throttled=this.scheduler.schedule(u,this.duration,{subscriber:this})),this.leading&&this.destination.next(e))},t.prototype.clearThrottle=function(){var e=this.throttled;e&&(this.trailing&&this._hasTrailingValue&&(this.destination.next(this._trailingValue),this._trailingValue=null,this._hasTrailingValue=!1),e.unsubscribe(),this.remove(e),this.throttled=null)},t}(r.Subscriber);function u(e){e.subscriber.clearThrottle()}},yRTJ:function(e,t,n){!function(e){"use strict";e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_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|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){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}})}(n("PJh5"))},yZjU:function(e,t,n){"use strict";var i=n("ashs");t.windowToggle=function(e,t){return i.windowToggle(e,t)(this)}},yaFn:function(e,t){e.exports=function(e){if("number"!=typeof e||isNaN(e))throw new TypeError("Expected a number, got "+typeof e);var t=e<0,n=["B","KB","MB","GB","TB","PB","EB","ZB","YB"];if(t&&(e=-e),e<1)return(t?"-":"")+e+" B";var i=Math.min(Math.floor(Math.log(e)/Math.log(1e3)),n.length-1);e=Number(e/Math.pow(1e3,i));var r=n[i];return e>=10||e%1==0?(t?"-":"")+e.toFixed(0)+" "+r:(t?"-":"")+e.toFixed(1)+" "+r}},ygD2:function(e,t,n){"use strict";var i=n("TToO").__extends,r=n("mmVS"),o=n("YOd+");t.ignoreElements=function(){return function(e){return e.lift(new l)}};var l=function(){function e(){}return e.prototype.call=function(e,t){return t.subscribe(new s(e))},e}(),s=function(e){function t(){e.apply(this,arguments)}return i(t,e),t.prototype._next=function(e){o.noop()},t}(r.Subscriber)},yipP:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}(n("UiQ2"))},yrou:function(e,t,n){"use strict";t.empty={closed:!0,next:function(e){},error:function(e){throw e},complete:function(){}}},z3hR:function(e,t,n){!function(e){"use strict";function t(e,t,n,i){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return t?r[n][0]:r[n][1]}function n(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 n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(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 n(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e},past:function(e){return n(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}})}(n("PJh5"))},z3uG:function(e,t,n){"use strict";function i(e,t){this.text=e=e||"",this.hasWild=~e.indexOf("*"),this.separator=t,this.parts=e.split(t)}i.prototype.match=function(e){var t,n,i=!0,r=this.parts,o=r.length;if("string"==typeof e||e instanceof String)if(this.hasWild||this.text==e){for(n=(e||"").split(this.separator),t=0;i&&t{1,2}=?|->|:{1,2}|={1,2}|\^|~|%|&{1,2}|\|\|?|\?|\*|\/|\b(?:and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/}),Prism.languages.insertBefore("cpp","keyword",{"class-name":{pattern:/(class\s+)\w+/i,lookbehind:!0}}),Prism.languages.insertBefore("cpp","string",{"raw-string":{pattern:/R"([^()\\ ]{0,16})\([\s\S]*?\)\1"/,alias:"string",greedy:!0}})},zpVT:function(e,t,n){var i=n("duB3"),r=n("POb3"),o=n("YeCl");e.exports=function(e,t){var n=this.__data__;if(n instanceof i){var l=n.__data__;if(!r||l.length<199)return l.push([e,t]),this.size=++n.size,this;n=this.__data__=new o(l)}return n.set(e,t),this.size=n.size,this}},zqJT:function(e,t){var n=[].slice;e.exports=function(e,t){if("string"==typeof t&&(t=e[t]),"function"!=typeof t)throw new Error("bind() requires a function");var i=n.call(arguments,2);return function(){return t.apply(e,i.concat(n.call(arguments)))}}},zyXL:function(e,t,n){"use strict";var i=n("Qt4r");t.generate=i.GenerateObservable.create}},[0]); \ No newline at end of file diff --git a/angular/labarchives/dist/polyfills.bundle.js b/angular/labarchives/dist/polyfills.bundle.js deleted file mode 100644 index 792adfe..0000000 --- a/angular/labarchives/dist/polyfills.bundle.js +++ /dev/null @@ -1 +0,0 @@ -webpackJsonp([1],{"+CM9":function(t,e,n){"use strict";var r=n("Ds5P"),o=n("ot5s")(!1),i=[].indexOf,a=!!i&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n("NNrz")(i)),"Array",{indexOf:function(t){return a?i.apply(this,arguments)||0:o(this,t,arguments[1])}})},"+yjc":function(t,e,n){var r=n("UKM+");n("3i66")("isSealed",function(t){return function(e){return!r(e)||!!t&&t(e)}})},"/Ife":function(t,e,n){n("gYYG"),n("1A13"),n("fx22"),n("dSUw"),t.exports=n("7gX0").Set},"/whu":function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"0Rih":function(t,e,n){"use strict";var r=n("OzIq"),o=n("Ds5P"),i=n("R3AP"),a=n("A16L"),u=n("1aA0"),c=n("vmSO"),s=n("9GpA"),f=n("UKM+"),l=n("zgIt"),p=n("qkyc"),h=n("yYvK"),v=n("kic5");t.exports=function(t,e,n,d,g,y){var m=r[t],b=m,k=g?"set":"add",w=b&&b.prototype,_={},S=function(t){var e=w[t];i(w,t,"delete"==t?function(t){return!(y&&!f(t))&&e.call(this,0===t?0:t)}:"has"==t?function(t){return!(y&&!f(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return y&&!f(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if("function"==typeof b&&(y||w.forEach&&!l(function(){(new b).entries().next()}))){var P=new b,D=P[k](y?{}:-0,1)!=P,O=l(function(){P.has(1)}),x=p(function(t){new b(t)}),T=!y&&l(function(){for(var t=new b,e=5;e--;)t[k](e,e);return!t.has(-0)});x||((b=e(function(e,n){s(e,b,t);var r=v(new m,e,b);return void 0!=n&&c(n,g,r[k],r),r})).prototype=w,w.constructor=b),(O||T)&&(S("delete"),S("has"),g&&S("get")),(T||D)&&S(k),y&&w.clear&&delete w.clear}else b=d.getConstructor(e,t,g,k),a(b.prototype,n),u.NEED=!0;return h(b,t),_[t]=b,o(o.G+o.W+o.F*(b!=m),_),y||d.setStrong(b,t,g),b}},"0pGU":function(t,e,n){"use strict";var r=n("DIVP");t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},"1A13":function(t,e,n){"use strict";var r=n("49qz")(!0);n("uc2A")(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=r(e,n),this._i+=t.length,{value:t,done:!1})})},"1ETD":function(t,e,n){var r=n("kkCw")("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[r]=!1,!"/./"[t](e)}catch(t){}}return!0}},"1aA0":function(t,e,n){var r=n("ulTY")("meta"),o=n("UKM+"),i=n("WBcL"),a=n("lDLk").f,u=0,c=Object.isExtensible||function(){return!0},s=!n("zgIt")(function(){return c(Object.preventExtensions({}))}),f=function(t){a(t,r,{value:{i:"O"+ ++u,w:{}}})},l=t.exports={KEY:r,NEED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,r)){if(!c(t))return"F";if(!e)return"E";f(t)}return t[r].i},getWeak:function(t,e){if(!i(t,r)){if(!c(t))return!0;if(!e)return!1;f(t)}return t[r].w},onFreeze:function(t){return s&&l.NEED&&c(t)&&!i(t,r)&&f(t),t}}},"1ip3":function(t,e,n){var r=n("Ds5P");r(r.S,"Math",{log10:function(t){return Math.log(t)/Math.LN10}})},2:function(t,e,n){t.exports=n("XS25")},"2p1q":function(t,e,n){var r=n("lDLk"),o=n("fU25");t.exports=n("bUqO")?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},"2tFN":function(t,e,n){n("CVR+"),n("vmSu"),n("4ZU1"),n("yx1U"),n("X7aK"),n("SPtU"),n("A52B"),n("PuTd"),n("dm+7"),n("JG34"),n("Rw4K"),n("9mGU"),n("bUY0"),n("mTp7"),t.exports=n("7gX0").Reflect},"3QrE":function(t,e,n){var r=n("Ds5P");r(r.P,"Function",{bind:n("ZtwE")})},"3g/S":function(t,e,n){var r=n("OzIq"),o=n("7gX0"),i=n("V3l/"),a=n("M8WE"),u=n("lDLk").f;t.exports=function(t){var e=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==t.charAt(0)||t in e||u(e,t,{value:a.f(t)})}},"3i66":function(t,e,n){var r=n("Ds5P"),o=n("7gX0"),i=n("zgIt");t.exports=function(t,e){var n=(o.Object||{})[t]||Object[t],a={};a[t]=e(n),r(r.S+r.F*i(function(){n(1)}),"Object",a)}},"3q4u":function(t,e,n){var r=n("wCso"),o=n("DIVP"),i=r.key,a=r.map,u=r.store;r.exp({deleteMetadata:function(t,e){var n=arguments.length<3?void 0:i(arguments[2]),r=a(o(e),n,!1);if(void 0===r||!r.delete(t))return!1;if(r.size)return!0;var c=u.get(e);return c.delete(n),!!c.size||u.delete(e)}})},"45Dp":function(t,e,n){n("A0n/"),n("i68Q"),n("QzLV"),n("Hhm4"),n("C+4B"),n("W4Z6"),n("tJwI"),n("eC2H"),n("VTn2"),n("W/IU"),n("Y5ex"),n("WpPb"),n("+yjc"),n("gPva"),n("n12u"),n("nRs1"),n("jrHM"),n("gYYG"),t.exports=n("7gX0").Object},"49qz":function(t,e,n){var r=n("oeih"),o=n("/whu");t.exports=function(t){return function(e,n){var i,a,u=String(o(e)),c=r(n),s=u.length;return c<0||c>=s?t?"":void 0:(i=u.charCodeAt(c))<55296||i>56319||c+1===s||(a=u.charCodeAt(c+1))<56320||a>57343?t?u.charAt(c):i:t?u.slice(c,c+2):a-56320+(i-55296<<10)+65536}}},"4IZP":function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},"4Q0w":function(t,e,n){var r=n("kkCw")("toPrimitive"),o=Date.prototype;r in o||n("2p1q")(o,r,n("jB26"))},"4RlI":function(t,e,n){"use strict";n("y325")("blink",function(t){return function(){return t(this,"blink","","")}})},"4ZU1":function(t,e,n){var r=n("lDLk"),o=n("Ds5P"),i=n("DIVP"),a=n("s4j0");o(o.S+o.F*n("zgIt")(function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(t,e,n){i(t),e=a(e,!0),i(n);try{return r.f(t,e,n),!0}catch(t){return!1}}})},"594w":function(t,e,n){n("lnZN"),n("FaZr"),n("pd+2"),n("MfeA"),n("VjuZ"),n("qwQ3"),n("mJx5"),t.exports=n("7gX0").RegExp},"5iw+":function(t,e,n){"use strict";n("y325")("strike",function(t){return function(){return t(this,"strike","","")}})},"7Jvp":function(t,e,n){var r=n("Ds5P"),o=Math.asinh;r(r.S+r.F*!(o&&1/o(0)>0),"Math",{asinh:function t(e){return isFinite(e=+e)&&0!=e?e<0?-t(-e):Math.log(e+Math.sqrt(e*e+1)):e}})},"7N90":function(t,e,n){n("gYYG"),n("1A13"),n("fx22"),n("MsuQ"),t.exports=n("7gX0").Map},"7gX0":function(t,e){var n=t.exports={version:"2.4.0"};"number"==typeof __e&&(__e=n)},"7ylX":function(t,e,n){var r=n("DIVP"),o=n("twxM"),i=n("QKXm"),a=n("mZON")("IE_PROTO"),u=function(){},c=function(){var t,e=n("jhxf")("iframe"),r=i.length;for(e.style.display="none",n("d075").appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("